Originally Posted by Back up 15 and punt
Does anybody out there know if you can move the Applications Folder to a different disk? I tried this under Panther and it didn't work. Is there a way to make this work under Tiger?
Sure, you can do it, with a Symbolic Link.
Put your Applications folder on a different disk (say, AppsDisk), and then, from terminal, do something like this:
sudo ln -s /Volumes/AppsDisk/Applications /Applications
Then, for all intents and purposes, the OS is convinced that Applications *is* on the local disk.
You have been able to do this since, oh I dunno, Rhapsody or NeXTStep. It's UNIX.
Note, you may wish to double check that I got the ln comand in the right order (and that's lowercase LN, btw), which means create a link. The -s flag makes it a symbolic link.