Abu Sufian
Abu Sufian

Reputation: 151

Android 11 - ROOT : mount /system fails with not found in /proc/system

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

Answers (2)

Esmaeeil Moradi
Esmaeeil Moradi

Reputation: 89

Exit adb shell, then:

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

Upvotes: 4

Abu Sufian
Abu Sufian

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

Related Questions