Tim,
symbolic links (symlinks) are created by the "ln" command. To create a symbolic link to a file, use the following command at the shell (root) prompt:
ln -s where is the original file and is the new name that the file will be referenced by.
For more information, see the man pages (man ln). Depending on what you are trying to do, the permissions on the original file may have to be modified because the permissions on the link are really those of the original file, a lthough a directory listing of the link may show you different permissions.
Peter