View Single Post
  #2 (permalink)  
Old 02-22-2004, 12:12 PM
nelgin nelgin is offline
Junior Member
0 posts this year. needs some grease!
New user, who has not interacted much yet.
 
Join Date: Feb 2004
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Nominated 0 Times in 0 Posts
TOTW/F/M Award(s): 0
Default Re: What is Symlinking?

Quote:
Originally Posted by OdeN
I ran the symlink script and it just gave me errors, so i skipped the step and it seems to run fine. However i was just wondering what it is actually for.
In its simpliest terms...symbolic links (or symlinks) is a way of making the same file available by another name or by making the same file available in another directory (or both).

For example, you might have a file buried in a system bath such as

/usr/local/etc/httpd/conf/vhosts/Vhosts.conf

But you could make a symlink to a file in your home directory

ln -s /usr/local/etc/httpd/conf/vhosts/Vhosts.conf vh.conf

So, I can edit vh.conf and it'll make the changes in the proper Vhosts.conf.
Reply With Quote