android 手机 remount failed: Operation not permitted

两盒软妹~` 提交于 2020-03-02 06:48:56

remount failed: Operation not permitted

1. 确定是否正确连接手机了

adb devices

2. 进入shell

adb shell

3. shell中输入命令(命令最前面的#号不用输入)

# su

# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

# chmod 777 /system

# exit

4. 然后你就有系统目录的读写权限了,例如你就可以使用adb push 把文件push到系统目录中去了,或者删除系统文件。


如果没有su权限,请先自行root。

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!