How to remount /system to rw

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to remount /system to rw

10,300 Views
pingyuchen
Contributor II

Hello,

I am using imx8mq in android8.1.  Now I want to remount /system to rw. I use the following command

1|evk_8mq:/dev/block # mount -o rw,remount /system    

but the result is:                        
mount: '/system' not in /proc/mounts

Who can tell me how to do to remount /system?

Thanks!

Labels (1)
0 Kudos
3 Replies

10,098 Views
vinothkumars
Senior Contributor IV

Hi pingyuchen‌,

Follow this step,

1, adb shell
2, reboot bootloader
3, fastboot oem unlock
Reboot the devices,
4, adb root
5, adb disable-verity
6, adb root
7, adb reboot
8, adb remount
9, adb push <Path where your file is located> /system/app/
Wait until finish
10, adb reboot

Thanks & Regards,

VinothS,

Regards,
Vinothkumar Sekar
0 Kudos

10,098 Views
pingyuchen
Contributor II

Hi VinothS,

Thank you very much. Now I can remount it.

0 Kudos

10,098 Views
b36401
NXP Employee
NXP Employee

Alternatively you can set both device and mountpoint to the command:

# mount -o rw,remount /path/to/the/partition /system

0 Kudos