I understand the differences between symbolic and hard links, but I've never understood why choose one or the other.
feedback
|
|
This has been discussed in some detail on ServerFault. | |||
|
feedback
|
|
symlinks can cross file systems, hard links can't. If you delete the original file, the hardlink still keeps it alive, a symlink doesn't. | |||
|
feedback
|
|
Ronald says, a hard link can have different permissions in two places. This is not right. Both places share the same inode. Permissions are bound to the inode, not the filename. So hardlinks in two places have exactly the same permissions, access times, ... | |||
|
feedback
|
|
A hard link essentially means the file lives in two places, it can have different permissions, you can delete it in on place but not the other. A soft link is just a pointer to the real thing. A hard link is two (or more) directory entries pointing at the same file. A soft link is a directory entry pointing at another directory entry. | |||
|
feedback
|