Skip to content

Instantly share code, notes, and snippets.

@ArneAnka
Created December 16, 2018 13:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ArneAnka/56ce9657190fee72051dbf1012871726 to your computer and use it in GitHub Desktop.
Save ArneAnka/56ce9657190fee72051dbf1012871726 to your computer and use it in GitHub Desktop.
How to repair broken permission
https://serverfault.com/a/35079
```
find /home/user -type d -print0 | xargs -0 chmod 0775
find /home/user -type f -print0 | xargs -0 chmod 0664
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment