Possible Duplicate:
What is different symbolic link with hard link after unlik?
Symbolic links vs Hard links
I'm a new user to Ubuntu. And I do install some software. I see many tutorials uses symbolic link to a directory. Like this :
ln -s
Are there any advantages of using this way? Or it is the way it should be done?
1Source:Read Seas
Symbolic links can do 2 things:
Link to files across file systems (since that it's an indirect link)
Link to directories
Symbolic links are done using the
ln
command with the-s
option.