Last active
October 4, 2020 19:09
-
-
Save ssaadh/2f664b8c5c80d7660e9a819bd9cb3ca7 to your computer and use it in GitHub Desktop.
Zoomers -- Try to force create local user's Keychains folder
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
# Open Terminal.app up. Enter these commands in there. | |
# For sudo commands, enter your current mac user admin password and press enter. No text will show up as you enter it. | |
# Verify there's nothing that comes up. It should say "No such file or directory" both times | |
ls -la ~/Library/Keychains | |
sudo ls -la ~/Library/Keychains | |
# Try to force create the folder and give it usual permissions | |
sudo mkdir ~/Library/Keychains | |
sudo chown -R `whoami`:staff ~/Library/Keychains | |
# Note for later: this should be 700 or 710, no? Whatever for now. | |
chmod 711 ~/Library/Keychains | |
# At this point, restarting probably makes sense. Then opening Terminal.app again | |
# Do the first ls -la commanda gain to make sure the Keychains folder is still there | |
# Open Keychain Access.app and try to reset keychain again via Preferences |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment