I'm trying to change permissions of a file that my user does not directly own, but my user is in a group that does have ownership of the file.
Here are the current permissions of the file. I am logged in as user_a
-rwxrwx---. 1 user_b mygroup 145 Sep 28 15:53 /filepath I run the command chmod +x /filepath and I am met with the error:
chmod: changing permissions of '/filepath': Operation not permitted We have several users working on our linux computer, and we've all been added to mygroup. How can I make it so that we can change rwx permissions of each others files without using sudo?