adb出现read only file system和permission denied问题的解决办法

时间:2014-08-25 16:42:14   收藏:0   阅读:287

在使用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...成功

评论(0)
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!