Skip to content

Instantly share code, notes, and snippets.

@svzdvd
Created April 2, 2018 13:13
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svzdvd/d2763bf6b49640cebeaa7d811cf61c79 to your computer and use it in GitHub Desktop.
Save svzdvd/d2763bf6b49640cebeaa7d811cf61c79 to your computer and use it in GitHub Desktop.
Reset OSX Time Machine Permissions
# Remove no-change attributes
sudo chflags nouchg ~/dir-to-fix
# Recursively clear all entended attributes
sudo xattr -rc ~/dir-to-fix
# Recursively reset to rational owner
sudo chown -R username:staff ~/dir-to-fix
# Recursively remove an ACL
chmod -R -N ~/dir-to-fix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment