在使用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...成功
时间: 2024-10-16 05:19:47