I rooted my Sony Xperia E3 (D2203) a while ago using Kingroot, which worked flawlessly.
Before rooting my device, /system could be accessed, which is how root was installed in the first place.
However after rebooting the phone, I now cannot mount /system as rw, as the kernel mounts it as Read-Only and gives me a Operation not permitted error whenever I try to remount it as rw. Apparently the kernel on Sony devices detects root and mounts /system as Read-Only.
I cannot flash a new recovery as the bootloader is permanently locked.
What can I do to mount /system at startup as rw, or mount /system when the device is online?
A non-destructive method would be great.
Here is the command I'm using to try and mount /system:
mount -o remount,rw /system
Yes, the terminal is in root mode.
mount -o remount,rw /system– Oct 17 '15 at 12:05mount -o rw,remount /proc /systemcould work. Would this work? – Oct 17 '15 at 12:08/procwere mounted r/o, many processes would fail (so it's obviously mounted r/w already). So no difference to your previous approach. I rather assume there's some SE_Linux safeguard actively preventing the command – but as I've never played with that, I cannot give any hints on how to deal with that. – Izzy Oct 17 '15 at 12:26