Symbolic Link For Games In Mac

Sam and mac games. World of WarcraftAnother title from Blizzard that has made it to the list is the much acclaimed World of Warcraft. The game, which boasts of one of the largest virtual open worlds ever created, is probably one of the most addictive games I’ve ever played.

I am a Mac/unix lover in a Windows world. So, while I have my Macs able to authenticate against a Windows 2000 Active Directory system, I still run into some squirrelly problems from time to time. The latest was trying to get OpenOffice to open documents on a user's Windows server share, and wanting to store the user's email on the server. To make life easier for the user, I decided to add an alias/link from her desktop to a folder in her Windows share. The problem was, OpenOffice does not understand MacOS links. To solve the problem, I went to the Terminal window, used df

Create symbolic links in the Finder via AppleScript. You can use symbolic links. Macworld is your best source for all things Apple. We give you the scoop on what's new, what's best and how.

Symbolic Link For Games In Mac to find the correct path to her network directory and used ln -s to create the link. For example, starting with the df output (trimmed for display width): I know that the directory I want is /Volumes -> users -> someusername -> sourcedirectory, so the

Symbolic Link For Games In Mac Download

ln command I used was: This puts a link named importantdirectory-shortcut on the user's desktop that takes them to /Volumes -> users -> someusersname -> importantdirectory. OpenOffice, understands and follows this link.

Hard Link Vs Symbolic Link

This works well because /Volumes -> users -> someusername is always mounted from the server, because OS X understand the directives from Active Directory to mount network drives when someone logs in. I extended this use of links to the user's Mail.app support directory under the user's Library folder, too.
I set up the user with her mail account. Then I quit Mail.app. I then went to /Users -> someusername -> Library. In that directory is a folder named Mail. I used the Finder to drag and drop a copy to her Windows share at /Volumes -> users -> someusername. I renamed the ~someusername -> Library -> Mail directory to 'save.Mail' for safekeeping, and then, once again, made a symbolic link using: This now puts a link in the Library folder to the network folder. Voila, if her Mac craps out for some reason, all her email is still saved on the network and available from another Mac, in an emergency. The added benefit is that the server gets backed up every evening.

Symbolic Link For Games In Mac 10

I am thinking about moving her complete /Users -> someusername -> Library directory to the server. What would be really cool if someone who is more familiar with login hooks could help me do this automatically for all users who log in.
[robg adds: An earlier hint (the comments, in particular) has further discussion on the differences between symbolic links and aliases..]