remount of the / superblock failed: Permission denied remount failed

今天adb时遇到了这个问题,之前就遇到过一次,在这里记录一下。
执行adb remount 时遇到的错误:

$ adb root
restarting adbd as root
$ adb remount
remount of the / superblock failed: Permission denied
remount failed

解决办法:

$ adb root
$ adb disable-verity
$ adb reboot
$ adb root
$ adb remount
点赞