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.

2
  • I see, thanks. I just want to prevent anybody from deleting the symbolic link. From what I understand then I cannot change the permission of this link without the help the administrator, correct? Commented May 6, 2011 at 19:48
  • 4
    Not even with the administrator's help. File deletion depends on the permissions of the containing directory, not on those of the file. (rm specifically checks the file for read-only unless you pass -f, because one usually doesn't intend a read-only file to be deleted, but unlink() doesn't care. Try it from Perl or Python sometime.) Commented May 6, 2011 at 19:52