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

原文网址:http://blog.csdn.net/whu_zhangmin/article/details/25364349

手机连接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  本人还没试验过

posted on 2015-05-14 16:58  wi100sh  阅读(1088)  评论(0编辑  收藏  举报

导航