Linux FAQ: How do I create a symbolic link in Linux?
Answer: To create a symbolic link in Linux, just use the Linux ln command, like this:
ln -s OriginalFile NewSymbolicFile
As you can see from my filenames, when using the Linux ln command, you specify the name of the file you're linking to first, and then supply the name of the link second.