I have a folder named docs, how do I add rwx permissions for group devs to docs?

I tried:

chmod -R g+rwx docs

but I don't know where to specify that it's the devs group I want to grant permissions for.

link|improve this question
feedback

migrated from stackoverflow.com Apr 29 '10 at 0:09

This question came from our site for professional and enthusiast programmers.

5 Answers

What you did is right but first you may have to change the group to "devs" with the chgrp or chown command. Note that in unixland a file only has one group.

link|improve this answer
1  
A file/folder only has one group unless you have ACLs turned on. – Chris S Apr 29 '10 at 0:10
feedback

You're probably looking for chown or chgrp

link|improve this answer
1  
chown [user]:[group] [file] or chgrp [group] [file] – Chris S Apr 29 '10 at 0:10
feedback

You can specify the group of the file using the chgrp command.

link|improve this answer
feedback

First thing to do is:

chown -R <user>:devs docs

then:

chmod -R 070 docs

That will give rwx to the group of docs and no permissions to the rest, if you want the owner to have the same permissions then do:

chmod -R 770 docs
link|improve this answer
feedback

You probably have umask set to 0022. Do:

umask 0002
chmod -R g+rwx
umask 0022

That should work

link|improve this answer
umask affects file creation. You don't need to change it in order to be able to chmod a file. – Dennis Williamson Apr 29 '10 at 7:30
feedback

Your Answer

 
or
required, but never shown

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