android系统路径只读挂载无效解决

来源:互联网 发布:js中的format函数 编辑:程序博客网 时间:2024/06/03 10:53

错误:

mv: /system/lib/libcap-ng.so: Read-only file system

环境:

  • 已root

    whoami
    root

  • 挂载无效

解决方式


  • 查看SELinux

getenforce
  • 返回 Enforcing
  • 关闭SELinux
    setenforce 0
  • 挂载
    mount -o rw,remount /system
  • 重新打开
    setenforce 1
  • 参考

    http://stackoverflow.com/questions/28009716/how-can-i-remount-my-android-system-as-read-write-in-a-bash-script-using-adb

    0 0
    原创粉丝点击