Android OS Forum banner

Cyanogen System Mount

1385 Views 1 Reply 1 Participant Last post by  berto1014
Can anyone tell me how to mount the system as read/write, I tried adb shell sysrw but it didn't work. I need to push a camera app into the system directory. So all I need to know is how to mount the system as read/write and back to read only.

Thanks in advance.
1 - 2 of 2 Posts
Ok, did a little research... For those of you that don't know here is the remount commands

On your device open Terminal Emulator.
type: su
press enter, # will appear
type: mount -o rw,remount /system
mount -o ro,remount /system
*note* the command with rw stands for "read/write", and ro for "read-only"

Then from adb, you can type: adb push [apk location without brackets] /system/app

You would use any push commands while the system is mounted read/write.

Source:
http://wiki.cyanogenmod.com/wiki/Barebones
See less See more
1 - 2 of 2 Posts
This is an older thread, you may not receive a response, and could be reviving an old thread. Please consider creating a new thread.
Top