I recently rooted my Droid X and everything seems to be working perfectly. I made some changes to build.prop and when I do adb push build.prop /system/ I get the following error: failed to copy 'c:\build.prop' to '/system//build.prop': Read-only file system.

Also tried a few other various mount commands I found when googling, but have had no help.

Any ideas would be appreciated. Thanks!

link|improve this question

1  
have you tried adb remount, what do you get? – silverfox May 19 '11 at 23:48
Android is Google's software stack ... For non-developer questions, see android.stackexchange.com – Selvin Dec 16 '11 at 14:42
You do realize this question is from 7 months ago? – steveo225 Dec 16 '11 at 16:49
feedback

4 Answers

up vote 11 down vote accepted

Got this off an Android forum where I asked the same question. Hope this helps somebody else.

On a terminal emulator on the phone:

mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

Then on the cmd prompt, do the adb push

link|improve this answer
That is what psneuter does ;) – bacchus May 20 '11 at 0:21
Ah. I ended up turning that into a script for future uses. I may have to look into that app again. – steveo225 May 20 '11 at 1:11
Works perfectly. I signed in with SSHDroid from my desktop, ran this as su and was then able to edit my bootanimation.zip and hosts files. (Rooted device obviously). Thank you. – stevenmc Mar 12 at 15:17
feedback
adb remount

works for me and seems to be the simplest solution.

link|improve this answer
feedback

I think the safest way is remounting the /system as read-write, using:

mount -o remount,rw /system

and when done, remount it as read-only:

mount -o remount,ro /system
link|improve this answer
Welcome to SO! Your answer is technically useful, but essentially a duplicate of curtlee2002's prior answer. This might have been better as a comment on his answer saying "I agree it is safest to switch back to read-only after monkeying around in read-write mode." We have millions of questions, so there will always be another question where you are the first to come with a great solution or a fresh perspective! – Jonathan VM Dec 21 '11 at 20:09
I found this answer much easier to follow/understand than the accepted answer. – Ascension Systems Mar 3 at 4:22
feedback

Not all phones and versions of android have things mounted the same.
Limiting option when remounting would be best.

Simply change ro to rw and add the remount option

# mount -o rw,remount /system

Once you are done making changes, you should remount with the original readonly.

# mount -o ro,remount /system
link|improve this answer
+1 for including the switch back to readonly – Jonathan VM Dec 21 '11 at 20:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.