adb出现read only file system和permission denied问题的解决办法
时间:2014-08-25 16:42:14
收藏:0
阅读:583
在使用adb push...或者chmod ...时出现read only file system问题
解决办法:
>adb shell
$su
#mount -o remount rw /system (我是要push到/system/app/)
#exit
$exit
>adb push...又有Permission denied问题
>adb shell
$su
#chmod 777 /system/app
#exit
$exit
>adb push...成功
原文:http://www.cnblogs.com/blogqian/p/3935096.html
评论(0)