67
19
I want to create a shared directory when a number of users (all belong to say mygroup) can create and edit files. I would like all files in this directory and subdirectory to belong to mygroup
I have changed existing files to have group mygroup using chgrp
, but new files still get created belong to the user's primary group. Is there a way of ensuring new files belong to the group without repeatedly running chgrp.
@LukePH's answer below is crucial to not being confused when this fails silently: use sudo – Rhubarb – 2018-01-18T14:44:28.417
@daaxix: To make sure that new subdirectories have the same permissions, use ACLs as described here: https://unix.stackexchange.com/a/12847/10030
– talljosh – 2020-02-06T04:04:03.5671Thanks. The reference is useful. describes the umask command that is part of the picture – justintime – 2011-05-02T17:43:23.667
5What about creating a subdirectory in the initial directory which also belongs to the group of the parent directory? Is this possible? – daaxix – 2013-03-11T22:27:22.117