Reputation: 151
My OS is PixysOS - Android 11 When I do
mount -o rw,remount /system
It fails saying -
mount: '/system' not in /proc/mounts
But usually it worked. I've also tested in android 9
Upvotes: 6
Views: 23492
Reputation: 89
Exit adb shell, then:
$ adb root
$ adb disable-verity
$ adb remount
$ adb shell
$ mount -o rw,remount /
Upvotes: 4
Reputation: 151
Found a solution here: https://stackoverflow.com/a/62653020/14797617
Looks like I've to mount the root (/) directory.
mount -o rw,remount /
Upvotes: 4