When using certain applications, group members cannot save to a CIFS share; they get a permissions error.
This happens on volumes that don't have ACLs enabled. The solution is to either enable ACLs or to disable the ACLs in /etc/smb.conf. Follow the steps below to disable the ACL support for the shares in question.
- Open /etc/smb.conf in a text editor. The file is owned by root so you need to either use sudo or log in as root.
- Find the section for the relevant share. For example, if the share is named "Share", there will be a section named "[Share]" in the file.
- Look for the line in the share section containing "vfs objects = darwin_acls".
- Remove "darwin_acls" from the line so it looks like this:
vfs objects =
- Save the file.
- Stop and Start the CIFS server.