0

I am trying to mount system as r\w and every app couldn't do it including root explorer and link2sd. I am using Xperia z2 android v4.4.4 and I the device is rooted and I have restarted the phone.

I get the following eeors when trying to do this:

mount -o mount,rw rootfs / mount: operation not permitted

xavier_fakerat
  • 10,065
  • 6
  • 41
  • 101
RL.AdmiralX
  • 109
  • 1
  • 2

1 Answers1

1

This is how you remount root as read-write:

 mount -o remount,rw /

If you want to remount the system partition as read-write:

mount -o remount,rw /system
xavier_fakerat
  • 10,065
  • 6
  • 41
  • 101