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.

Required fields*

11
  • 25
    One problem you may run into with hardlinks is if somebody decides to do something to one of their music files that you've hard-linked they could inadvertently be affecting other people's access to their music. Commented Oct 13, 2010 at 2:48
  • 4
    another problem is that two different files containing "Some Really Great Tune", even if taken from the same source with the same encoder will very likely not be bit-for-bit identical. Commented Oct 13, 2010 at 2:57
  • 4
    better sollution might be to have a public music folder... Commented Oct 13, 2010 at 7:08
  • 4
    related: superuser.com/questions/140819/ways-to-deduplicate-files Commented Mar 16, 2011 at 23:59
  • 3
    @tante: Using symlinks solves no problem. When a user "deletes" a file, the number of links to it gets decremented, when the count reaches zero, the files gets really deleted, that's all. So deletion is no problem with hardlinked files, the only problem is a user trying to edit the file (unprobable indeed) or to overwrite it (quite possible if logged in). Commented Mar 14, 2012 at 3:56