Remount /system partition in RW mode on Android


OI File Manager

If you need to delete a system app forr any reason, and such a app doesn’t appear listed on Applications or in the market, you can follow the next steps from a terminal in the device or use adb shell::

  1. Gain superuser root acess:
  2. # su
  3. Check how the /system partition was mounted, which you be as read-only (ro):
  4. # mount | grep system
    /dev/block/mtdblock3 on /system type yaffs2 (ro,relatime)
  5. Remount the partiton in read-write mode (rw):
  6. # mount -o rw,remount /system
  7. Finally check if it was mounted in read-write mode (rw):
  8. # mount | grep system
    /dev/block/mtdblock3 on /system type yaffs2 (rw,relatime)

Now you can delete apps from the /system/data folder using a program such as  OI File Manager.

Reference: Mount a filesystem read-write

  1. #1 by Luis Gallardo on 03/01/2012 - 12:40 am

    @GregO yes, on Samsung Galaxy Tab you must out the device (/dev/stl5) and the mounting point /system. If you put just one of them it wont’ work. Thanks for the advice. Cheers!

  2. #2 by GregO on 03/01/2012 - 12:22 am

    Thanks! One thing I had to change to get it to work on my Galaxy Tab 7 running 2.3.4, though. The mount command needed is mount -t rfs -o remount,rw /dev/stl5 /system

(will not be published)