Android文件系统读写挂载

在Android O系统中, /system 目录是只读的,要挂载成读写的方法如下:

adb root
adb disable-verity
adb reboot
adb remount
adb shell
mount -o rw,remount /system

参考

Last updated