adb remount 失败:remount failed: Operation not permitted

来源:互联网 发布:php curl模拟ajax请求 编辑:程序博客网 时间:2024/04/30 06:37

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

# su# mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system# chmod 777 /system# exit

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

0 0