'What does 'adb remount' do? When is it useful?
Should adb remount always be run before adb push? What does adb remount actually do?
Solution 1:[1]
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
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 |
