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*

3
  • 5
    Tip: you should have tested this in a snapshotted VM, then reverted to the snapshot. Commented Jul 18, 2016 at 23:49
  • 1
    How is chmod -R ugo+rwx / different than chmod -R 777 / ? Commented Jun 22, 2022 at 21:43
  • 1
    @h0r53, chmod -R ugo+rwx adds rwx to a file where 777 explicitly sets equal it to rwx,. As a result, with ugo+rwx sticky bits are not cleared where with 777 sticky bits are cleared. A truly identical command would be chmod ugo=rwx Commented Oct 2, 2023 at 22:06