View Single Post
  #810 (permalink)  
Old 12-26-2011, 02:53 PM
mbellot's Avatar
mbellot
PPCGeeks Regular
Offline
 
Join Date: Jul 2010
Posts: 156
Reputation: 135
mbellot is keeping up the good workmbellot is keeping up the good work
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Re: [TESTING] - NAND OMGB (1.2.3)

Quote:
Originally Posted by boggsie View Post
Thanks a bunch!

Now to figure out how to copy ... root explorer can't seem to modify the target folders.
You need to remount the /system directory as read/write.

From your favorite command line (adb shell, terminal emulator, etc) type in the following:

Code:
mount -o remount,rw /system
Easiest way (IMHO) is to put the files (unzipped) on the sdcard.

From there you can use adb shell or terminal emulator to move them to the proper places and apply proper permisions.

When you're all done, be sure to remount the /system partition as read only.

Code:
mount -o remount,ro /system
Reply With Quote