Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

3
  • 1
    But what's a practical use-case for this? Commented Dec 11, 2011 at 15:10
  • 1
    One use, same as a "short cut" Another use, having multiple versions of an application on a system allows one to install, test new version, specifying app by full path, while symlink in bin points to production. After testing is complete change symlink to new version, leave old version in place for any users that have version dependent code. Think of perl, python, etc. Commented Dec 11, 2011 at 16:16
  • 1
    practical use-case for hard links. At present on my filesystem I found a large number of hardlinks in /usr/share/zoneinfo Think of all the named files representing timezones, which are all identical to EST. We save filesystem space by not having redundant copies and allow for easier package management without having the management overhead of symlinks install/delete as packages are installed/deleted. Even if one is removed the original data is preserved. Sorry I didn't have time for a more pedantic explanation. Commented Dec 11, 2011 at 16:30