AKARUPERT wrote:
I've been trying to do some file maintenance (moving, cut, paste, new folders, etc.) in my Documents folder and every time I move a file I have to "Authenticate" and type in my password.
I get it that the file folders are locked and that for some reason my computer doesn't recognize that it's me, the user, doing the moving.
How do I reset or turn off the whole permissions/authenticate process for the entire Document folder all at once. It's really cumbersome to have to keep typing in the password each time.
did you by chance try to tinker permissions on this folder, perhaps, by using "apply to enclosed items" button? that would account for what you are seeing. in any case, run the following terminal (copy and paste, please)
sudo chown -R `id -un`:`id -gn` ~
chmod -RN ~/Documents/*
you'll have to enter your admin password (which you won't see). that's normal.
this will make you the owner of everything in your home directory as you should be and get rid of any hidden ACLs that may be messing up your Documents folder.