Linux / UNIX advantage of creating soft links instead of copy a file

by on June 6, 2007 · 0 comments· last updated at June 6, 2007

Q. What is the main advantage of creating soft / hard links to a file instead of copies of the file?

A. To make links between files you use ln command. To copy a file you use cp command. The main advantage is access permission. If you want to change the permissions for a a file called foo, you only have to do it on the original. With copies you have to find all of the copies and change permission on each of the copies.

Other advantages :

[a] Create a shortcut for example /webroot/home/httpd can be soft linked at /home/httpd

[b] Ease of management

[c] Save disk space etc

Please note that the link will show permissions of lrwxrwxrwx but that is for the link itself and not the access to the file.



You should follow me on twitter here or grab rss feed to keep track of new changes.

Featured Articles:

{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <kbd> <blockquote> <pre> <a href="" title="">

Tagged as:

Previous Faq:

Next Faq: