728x90

Mount a filesystem read-write

Very often when you want to write files to a particular partition on ADP1, you will get a "Permission Denied" if the partition is mounted read-only.
To get around this, you need to mount the partition read-write. Typically this is done with /system partition

$ adb shell
$ su
# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

주의 사항

젤리빈 이후 버전에서는 파일시스템이 ext4로 변경되어 위와 같은 방법이 되지 않습니다.

nexus7 기준으로 다음과 같은 방법으로 가능합니다.

$ adb shell  
$ su  
# mount -o remount rw /system
728x90
복사했습니다!