eccerr0r wrote:I don't think the functionality exists because of the fact that mode bits can be changed on a per-file basis unlike msdos filesystems, which doesn't have the capability...
Makes sense
eccerr0r wrote:
What specifically are you trying to do? Is this a hotplug disk?
Are you trying to use this as a workgroup disk?
The disk is a normal hard drive. I'm indeed trying to share a directory and all sub-dirs/files between several users on the same PC. No need for network access. All files under this directory should have read/write access to all users belonging to a given group. I would like this by default so users would not have to manually change perimisisons each time they create a file.
eccerr0r wrote:
You could try just chmod -R to fix all the permissions, set the setgid bit to prevent further group write issues, make sure all the group owners are correct, and make sure everyone's .profile contains the correct umask default...
I don't really like this option. If I'm not mistaken, forcing the umask in everyone's profile will change the default permissions for every file newly created. I just want to limit this behavior to a filesystem.
eccerr0r wrote:
Another possibility is to go beyond ugo and use the newer ACL system?
I'll give a look to ACL
eccerr0r wrote:
You don't want to change the permissions on the /dev/sdXX device file, that should only be readable/writeable by root.
Good point, I have reverted back the changes, this was just for testing.