View Single Post
Old October 24th, 2009, 12:55 AM   #7 (permalink)
kam187
Senior Member
 
kam187's Avatar
 
Join Date: Aug 2009
Location: UK
Posts: 1,320
 
Device(s): Nexus One
Thanks: 3
Thanked 46 Times in 28 Posts
Default

ok so here's a quick script file to delete loads of unused stuff like diagnostics. Thanks Pegasus21

It deletes the HTC keyboard (not the default one that's used in galaxo or galaxoHero which is a skinned android one).

It deletes Java and ext4 support. You can edit what it deletes if you want to keep them.

It deletes galaxoapps, which lets face it is pretty useless after the first install

It deletes NPS processes because we'll never update this ROM using NPS.

It removes QuickDroid because it wastes CPU indexing. Install it from market again, or edit the file if u like it.

It deletes the debuggerd process, if you use the SDK you might want to keep that. (adb will always work tho)

To use, download the zip and put it into the same directory as adb. Then open a command prompt:

# mount read/write
adb remount

# upload the script
adb push clearapps.sh /system/clearapps.sh

# Open a shell
adb shell

# make the script executable
chmod +x /system/clearapps.sh

# run the script
/system/clearapps.sh

# reboot
reboot

----

Then after you have rebooted, use taskkiller to kill any left over processes and you can check your ram with:

sync ; echo 3 > /proc/sys/vm/drop_caches ; cat /proc/meminfo ; free
Attached Files
File Type: zip clearapps.zip (660 Bytes, 205 views)
kam187 is offline  
Last edited by kam187; October 24th, 2009 at 01:16 AM.
Reply With Quote