Issue
Should adb remount always be run before adb push? What does adb remount actually do?
Solution
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
Answered By - LaurentY
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.