
04-29-2008, 07:43 AM
|
|
What's Jailbreak?
|
|
Join Date: Feb 2008
Device + Firmware: iPhone 3G (3.01), iPod Touch 1st gen (1.1.1)
Operating System: Mac OS X 10.4.11, RedHat 5, freeBSD, Win XP
Location: The foot hils of my mind
Posts: 21
Thanks: 0
Thanked 1 Time in 1 Post
|
|
|
|
there seems to be a program out there called boss tool, but because I use unix alot I would do it like this.
If you have the ssh server installed (im pretty sure you would) then you can login remotely from your pc and be presented with a terminal from your ipod in which you type.
NOTE that some small typos could render your iPod unusable and needing a restore so do this at your own risk.
cp -r /Applications /var/root/media/Applications.backup
this copies the applications folder to your music partition (home partition which is mounted under /var)
now we delete the original folder
rm -rf /Applications
now we check to see if we still have the backup
ls /var/root/Applications.backup
if you see a folder list with all your applications then everything is so far good.
now we name the folder properly
mv /var/root/Media/Applications.backup /var/root/Media/Applications
now we make a link (a link is the unix equivalent of shortcut) back to where the Applications folder should be.
ln -s /var/root/Media/Applications /Applications
now to test to see if it works
ls /Applications
if you see a folder list with all your applications then everything has worked, reboot and now the system will install and run all your Applications from your music partition which should be 15gb rather than the 300mb system root partition.
|
|