关于adb remount 失败:remount failed: Operation not permitted

来源:互联网 发布:淘宝描述店铺怎么写 编辑:程序博客网 时间:2024/04/30 05:01

文章来源:http://blog.sina.com.cn/s/blog_974a222401015g24.html


当要删掉系统自带的某款应用的apk,在终端命令 adb remount 之后,命令终端显示remount failed: Operation not permitted。adb remount 失败。解决方法:

1、adb shell

2、su //切换到根用户

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

4、chmod 777 /system 

5、cd system

6、chomd 777 app

7、cd app

8、chmod 777 XXX.apk  //XXX就是你要删除的系统里的应用名。

9、 exit

10、 rm XXX.apk     //这样你就可以删除你想要删除的apk了。

原创粉丝点击