分类: Android平台
2015-04-01 21:05:04
手机连接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 本人还没试验过