【Adnroid】adb remount 提示:Operation not permitted

 push apk到system/app,提示: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


原文出处:http://xiamidatou-gmail-com.iteye.com/blog/1685007

你可能感兴趣的:(Android)