adb remount 失败remount failed: Operation not permitted

来源:互联网 发布:mac 文本格式转换器 编辑:程序博客网 时间:2024/04/30 07:45
小米烧写好系统后,想往system/app下push一个apk,提示remount failed: Operation not permitted。

解决方案如下:

 

1. 进入shell

  adb shell


2. shell下输入命令

shell@android:/ $ su
shell@android:/ # mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
shell@android:/ # chmod 777 /system
shell@android:/ # cd system
shell@android:/system # chmod 777 app
shell@android:/system # cd app
shell@android:/system/app # exit

shell@android:/ $ exit


解决方案2:

adb root

adb remount

原创粉丝点击