Reputation: 5716
Should adb remount
always be run before adb push
? What does adb remount
actually do?
Upvotes: 42
Views: 39903
Reputation: 7653
adb remount
put /system
partition in writable mode. By default /system
is only readable.
It could only be done on rooted device.
It must be done before pushing file on /system
partition.
adb remount
corresponding to:
adb shell mount -o rw,remount,rw /system
Upvotes: 85