Wednesday, May 16, 2012

Read only file system on Android device ?



I think the safest way is remounting the /system as read-write, using:
mount -o remount,rw /system

and when done, remount it as read-only:
mount -o remount,ro /system

OR

adb remount

No comments:

Post a Comment