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::
- Gain superuser root acess:
- Check how the /system partition was mounted, which you be as read-only (ro):
- Remount the partiton in read-write mode (rw):
- Finally check if it was mounted in read-write mode (rw):
# su
# mount | grep system /dev/block/mtdblock3 on /system type yaffs2 (ro,relatime)
# mount -o rw,remount /system
# 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

Planeta Linux
#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 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