When I try to do something like:
chmod -R ug+rw files
On a folder with existing content I get:
chmod: Unable to change file mode on [fill in the blank]: Operation not permitted.
It’s on a site on my own computer (which I am the admin of).
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Do
sudo chmod -R ug+rw files. You have to be the owner of all of the files to change the permissions, unless you’re operating with root privileges.