adb remount 出错 remount of /system failed: Read-only file system

出错信息:

adb root 没有问题,但执行 adb remount 时出现以下错误:

remount of /system failed: Read-only file system
remount failed

解决办法:

执行如下命令
1. adb root
2. adb disable-verity
3. adb reboot

开机后再执行:
adb root
adb remount
就可以对system分区进行读写了

猜你喜欢

转载自blog.csdn.net/u010784887/article/details/79386324