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
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!