Can a directory belong to more than one group?
(On windows it seems possible - but when I do an ls - it looks like there is only one group available.)
Can a directory belong to more than one group?
(On windows it seems possible - but when I do an ls - it looks like there is only one group available.)
If your filesystem supports posix acl extensions, then yes you can have more than one group. Most normal unix/linux tools and programs wont show you more than the default user:group:other stuff.
Use
getfacl <file/dir>
to get current acl settings andsetfacl
to set them.See
man mount
for mount optionsSee
man getfacl
andman setfacl
for acl examples and options.