where all human users have r/w permission for all files and sub-directories under this path.
Can I achieve this buy just setting the permissions correctly or do I need to do something else?
thanks for any advice that leads to an elegant solution to this.
Peter
Setting the sticky bit might be a good idea as well (For directories, it prevents unprivileged users from removing or renaming a file in the directory unless they own the file or the directory, so users cannt deleted each onther files, see ‘man chmod’ for details):
If the group ‘users’ is not what you want to use use can use ACLs and set fine the priviledges for each user (some might have r/w, some read-only access, etc…), see ‘man setfacl’ (esp. the examples at the end).
Note: ACLs must be enabled on the filesystem, see ‘acl’ option in the mount options.