shanshanx@shanshanx:~$ adb root
adbd is already running as rootshanshanx@shanshanx:~$ adb remount
dm_verity is enabled on the system partition.
Use "adb disable-verity" to disable verity.
If you do no...
首先挂载system
mount -o remount rw /system
但是出现了错误,mount: '/system' not in /proc/mounts,这个时候可以尝试挂在/
mount -o rw,remount /
但是不要忘记将状态重置为" ro"。
mount -o ro,remount /
...