原文网址: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  本人还没试验过

相关文章:

  • 2022-12-23
  • 2021-11-19
  • 2021-12-15
  • 2021-12-15
  • 2021-11-24
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-06-01
  • 2021-09-03
  • 2021-05-30
  • 2022-02-11
  • 2021-10-02
相关资源
相似解决方案