Can anyone give me the command to mount /system/app as rw I screwed up something in there and can't seem to figure out how to mount it correctly so I can fix it via ADB
***Edit****
I was able to figure it out. The command was:
mount -o remount,rw /system
Related
Hello all,
I am trying to push a file to my system, however I do not seem to be able to mount my system partition.
When I try to execute the following command, I always get the error "Operation not permitted" :
Code:
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
My phone is rooted and my USB debugging is on !!
Anyone no what could cause this. It has always worked when I was still on 1.6 (rooted) and now it doesn't allow me access.
When I use Rootexplorer, I have R/W access, so root works.
Anyone has any tips or advise ?
Try...
adb shell
su
mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
Tried that, and get permission denied
Should have added, make sure your screens on on the phone and allow SuperUser access when you type su.
never mind, one sec
Hi,
I have just installed wolfs 2.3 with hotfix and am having trouble with adb commands
I have tried pushing files to /data/data and I get this error
Code:
failed to copy 'name of file here' to 'path here' : Permission denied
However, if i boot into recovery and manually mount data it works.
My question is
what is the code to mount the data partition from adb?
I know
Code:
adb remount
mounts the system partition but i need the data partition mounted.
I have never ran into this before, all my adb commands worked whilst the phone was turned on...
any help please.
More issues
Code:
adb remount
does not work....permission denied
Also, using apk manager I cannot push sytem files to /system/app
This is quite irritating
The correct command is:
Code:
mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
Code:
adb shell
su
mount -o remount rw /system
works for me.
Hello everyone, my issue is when i try this, it works:
Code:
mount -o remount,rw /dev/block/stl6 /system
But, when i try this, it doesn't work:
Code:
mount -o remount,rw /dev/block/stl6 /system/media
So my question is if i want to set "rw" for only /system/media(not for other folders in the system folder) without using root explorer, how do i do that?
Any help would be appreciated.
Thanks
The read/write permissions here are set for mount points, not properties of individual folders so you can't set it that way.
Is there some kind of trick to mounting system as rw so adaway can modify the hosts file. I have cm10 on here ATM
Did you try something like 'adb shell mount -o remount,rw /' ?
HTH
I just installed Android Q and was trying to mount the filesystem as RW in Android Terminal.
When I run:
su
mount -o remount,rw /system
I get an error that says '/dev/block/sda33' is read-only
I tried an app from the Play Store called "Mount /system RO/RW" but it didn't make a difference
I was just wondering if there is a solution yet for this?
Same issue, have not been able to rectify it.