Cannot mount as read/write, Please help - Droid Eris Q&A, Help & Troubleshooting

Trying to push files from adb to my phone but it wont let me because its a read only system.
I've done adb shell mount -o rw,remount /dev/block/mtdblock3 /system but it does not work, I'm running windows 7 could this be a problem?

Make sure that USB Debugging is enabled on the phone.
Settings...Applications...Development

C:\Users\Jake\Desktop\android-sdk-windows\tools>adb shell mount -o rw,remount /d
ev/block/mtdblock3 /system
mount: mounting /dev/block/mtdblock3 on /system failed: Invalid argument
C:\Users\Jake\Desktop\android-sdk-windows\tools>

It is enabled.

Are you in recovery mode when you're trying this? Or booted regularly?
If you're in recovery mode you'd mount it like this:
mount -o rw /dev/block/mtdblock3 /system

Jboxen said:
C:\Users\Jake\Desktop\android-sdk-windows\tools>adb shell mount -o rw,remount /d
ev/block/mtdblock3 /system
mount: mounting /dev/block/mtdblock3 on /system failed: Invalid argument
C:\Users\Jake\Desktop\android-sdk-windows\tools>
Click to expand...
Click to collapse
follow my tutorial for ADB set-up. http://forum.xda-developers.com/showthread.php?p=6054534#post6054534
I noticed you dont have SDK in C:/ root....

or a simple command like this should mount it as read/write:
adb remount
its what i have been doing and seems to do the same thing with less commands, unless someone can point out the difference for me.

Otherwise, try
mount -o rw,remount /dev/block/mtd3 /system
That should do it. The /dev/block/mtdblock3 is only required in recovery.

ECLIPS3 said:
or a simple command like this should mount it as read/write:
adb remount
its what i have been doing and seems to do the same thing with less commands, unless someone can point out the difference for me.
Click to expand...
Click to collapse
I would also like to know the difference between the two commands:
adb remount
and
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system

DeezNotes said:
I would also like to know the difference between the two commands:
adb remount
and
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
Click to expand...
Click to collapse
i believe they both do the same thing. just one uses the same characters

Android22 said:
follow my tutorial for ADB set-up. http://forum.xda-developers.com/showthread.php?p=6054534#post6054534
I noticed you dont have SDK in C:/ root....
Click to expand...
Click to collapse
having the SDK in C:\ root is not a necessity. People do it because it is easy to do it that way.

Related

CDMA Customize Boot Screens

Ok guys I know some one has the answer I am trying to change the Boot Screens that come up when you boot up the phone I have found the file they are located in but cant figure out how to replace the .gif files. Thanxz
num1rbffan said:
Ok guys I know some one has the answer I am trying to change the Boot Screens that come up when you boot up the phone I have found the file they are located in but cant figure out how to replace the .gif files. Thanxz
Click to expand...
Click to collapse
just overwrite them with adb push? create an update file for the recovery image? copy to sdcard then with adb or ssh shell move them to the destination?
i have the a file saved as boot.gif which should replace the first boot screen but I guess I just cant figure out the write commands. I am at a loss. Any help is appreciated cuz I have tried
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system/media/bootscreen
and that errors out
and tryed
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
cd /system/media/bootscreen
and it will not let me cd into the bootscreen folder it will only let me get to the media folder.
num1rbffan said:
i have the a file saved as boot.gif which should replace the first boot screen but I guess I just cant figure out the write commands. I am at a loss. Any help is appreciated cuz I have tried
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system/media/bootscreen
and that errors out
and tryed
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
cd /system/media/bootscreen
and it will not let me cd into the bootscreen folder it will only let me get to the media folder.
Click to expand...
Click to collapse
Very strange...no errors after the
Code:
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system
right?
Also, does bootscreen shot up if you do
Code:
cd /system/media
ls
?

Cannot mount with ADB

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

Removing Bloat Help

Ok so the Rezound has the bootloader unlocked and rooted with 1click method.
Root Explorer, and Root Checker verify.
Going into adb I am trying to adb rm /system/app/".apk"
It doesnt work.
I tried adb remount and it is not letting me and says operation not permitted.
If I type in adb shell I get the $, then type in su and get #
Titanium Backup. More than worth the money. You can freeze, remove, and backup anything/everything.
Sent from my ADR6425LVW using xda premium
Code:
adb shell
su
busybox mount -o rw,remount -t / rootfs
rm /system/app/NameOfApp.apk
busybox mount -o ro,remount -t / rootfs
adb shell
$ su
su
# busybox mount -o rw,remount -t yaffs2 /rootfs
busybox mount -o rw,remount -t yaffs2 /rootfs
mount: can't find /rootfs in /proc/mounts
# rm /system/app/com.mobitv.client.nfl2010.apk
rm /system/app/com.mobitv.client.nfl2010.apk
rm failed for /system/app/com.mobitv.client.nfl2010.apk, Read-only file system
Try ROM Toolbox. You can find it free in Market.
Code:
busybox mount -o rw,remount -t yaffs2 /dev/block/mmcblk029p /system
This Will Mount The System As "read/write" And Switch It To "ro" To Go Back To "read-only"
Xtreme Outcast said:
Code:
busybox mount -o rw,remount -t yaffs2 /dev/block/mmcblk029p /system
This Will Mount The System As "read/write" And Switch It To "ro" To Go Back To "read-only"
Click to expand...
Click to collapse
I would suggest to drop the extra bits that someone could mis-type and shorten this to
"busybox mount -o remount,rw /system"
It's worked for me and takes a little chance out of the equation. Just my opinion take it for what it's worth.
I Was In A Rush Yesterday That I Typed In The Wrong Code And Just Realized It Now When He Said It Didn't Work. It's All Fixed Thanks For The Suggestions Always Appreciated On My Posts Or Threads.

Curious: order of mount options making a difference, trying to remount /system r/w

Hey,
for years I've been remounting /system read-write with the following call from a root shell:
Code:
mount -o remount,rw /system
With Android 7.1.2 and specifically the SuperMan ROM on my SGS7 edge, this no longer works:
Code:
mount -o remount,rw /system
mount: '/dev/block/platform/155a0000.ufs/by-name/SYSTEM'->'/system': Device or resource busy
A bit of searching on the web revealed that the following, however, does work:
Code:
mount -o rw,remount /system
Can someone figure out why the order would matter?
I find this especially curious because e.g. the Synapse app seems to use remount,rw as well, at least I see the same error when trying to use it to remount the `/system` partition.
Thanks for any insights!

mount: can't find /system in /proc/mounts

Hello,
im new here and i rooted my OP 5t and it still works. But when i want to make another app to an System app i always get this Error : "mount: can't find /system in /proc/mounts".
I tried it with Link2SD or Terminal Emulator but nothing works.
Can somebody maybe help me with this problem ?
@N3xus97
Try
Code:
adb shell "mount -o rw,remount /system"
jwoegerbauer said:
@N3xus97
Try
Code:
adb shell "mount -o rw,remount /system"
Click to expand...
Click to collapse
I already did this but it doesn't work for me.
But there is a password on the TWRP is it possible that this cause the error ?
@N3xus97
Don't know because I'm not using TWRP.
BTW: /system isn't a mount point.

Categories

Resources