Subway
Subway

Reputation: 5716

What does 'adb remount' do? When is it useful?

Should adb remount always be run before adb push? What does adb remount actually do?

Upvotes: 42

Views: 39903

Answers (1)

LaurentY
LaurentY

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

Related Questions