标签: android adb
adb remount之前是否应始终adb push运行? adb remount实际上做了什么?
adb remount
adb push
答案 0 :(得分:33)
adb remount将/system分区置于可写模式。默认情况下,/system只能读取。 它只能在root设备上完成。
/system
必须在推送/system分区上的文件之前完成。
adb remount对应于:
adb shell mount -o rw,remount,rw /system