I want to modify a file under /system. The problem is that is read-only, and even with root I cannot set it as read-write.
I've tried the following:
- Root Explorer (the automatic button)
- A one click app (https://play.google.com/store/apps/details?id=com.blogspot.superthomaslab.mountsystemrorw)
- The following commands, on Terminal Emulator:
su
and after thatmount -o rw,remount /system
. Along with that some variants (specifiying-t
, using-rw
,mount -o rw,remount /system /system
)
Some useful informations:
- The device is a Redmi 3
- Using android 5.1.1, on MIUI 6.4.7 (china developer version)
- I have root access, and enabled it for the apps mentioned above
- Bootloader is unlocked
- No SD card
- Output of
mount | grep system
:/dev/block/dm-0 /system ext4 ro,seclabel,relatime,discard,data=ordered 0 0
I would like to manage the /system folder directly from the phone. I'm pretty hopeless, I've tried googling 2 hours for a working solution. Thanks in advance.