Android adb shell操作时出现“ XXX ... Read-only file system”解决办法

手机连接PC后

adb shell

su

rm -r /system/app/Launcher2.apk

提示:rm failed for /system/app/Launcher2.apk, Read-only file system


解决方法:

mount -o remount rw  /system

也就是将/system分区重新挂载为可读写分区

如果操作完后想恢复为只读,命令如下: mount -o ro,remount /system

网上也有方法:mount -o rw,remount -t ext3 /dev/block/mmcblk1p21 /system  本人还没试验过

你可能感兴趣的:(android,shell,adb,挂载)