Wednesday, February 20, 2008

Free up iPhone disk space for third party application

Run these in iPhone in order to move the font folder to second disk, you can free about 100M for third party applications

/bin/cp -R -p /System/Library/Fonts /private/var/Fonts
/bin/rm -rf /System/Library/Fonts
/bin/ln -s /private/var/Fonts /System/Library/Fonts


Run these in iPhone in order to move the built-in Ringtones folder to second disk.

/bin/cp -R -p /Library/Ringtones /private/var/Ringtones
/bin/rm -rf /Library/Ringtones
/bin/ln -s /private/var/Ringtones /Library/Ringtones


Run these in iPhone in order to move the built-in Wallpaper folder to second disk.

/bin/cp -R -p /Library/Wallpaper /private/var/Wallpaper
/bin/rm -rf /Library/Wallpaper
/bin/ln -s /private/var/Wallpaper /Library/Wallpaper

1 comment:

LearnWebDev said...

If you are on a mac, you could easily launch terminal, type ssh root@IPHONE.IP and press return.
enter your password, which is alpine by default.
Then copy each command and paste then press return.

Youre done!