If I am not the file' owner or root, can I use chmod to change the file permission?

Assume I have group/write access to the file, e.g. 775

link|improve this question

25% accept rate
feedback

2 Answers

up vote 10 down vote accepted

In a nutshell: No, you can't do that. Just for the plain reason that you could "steal" another user's file (related source):

Of course, only the owner of a file may use chmod to alter a file's permissions

There was another question on SO dealing with this here. The trick is to let chmod check if you're in the same group or have enough permissions in order to change that file's ownership and then run it as root.

link|improve this answer
feedback

Basic answer is no, unless you have specific rights through the group you and the file is in.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.