Created
December 16, 2018 13:01
-
-
Save ArneAnka/56ce9657190fee72051dbf1012871726 to your computer and use it in GitHub Desktop.
How to repair broken permission
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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