adb root

adb remount

 

 

当要删掉系统自带的某款应用的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了。

相关文章:

  • 2021-09-09
  • 2021-12-03
  • 2022-12-23
  • 2022-03-07
  • 2022-12-23
  • 2021-06-26
猜你喜欢
  • 2021-07-13
  • 2022-12-23
  • 2021-04-07
  • 2021-05-30
  • 2021-09-08
  • 2021-11-18
  • 2021-11-17
相关资源
相似解决方案