Trying to set up a Samba share where the members of the development group have full access to files in the share (regardless of the owner):
[global]
workgroup = PREMPROVSOL
server string = %h server (Samba, Ubuntu)
interfaces = 127.0.0.0/8 10.0.10.0/24
bind interfaces only = yes
log file = /var/log/samba/log.%m
max log size = 1000
logging = file
panic action = /usr/share/samba/panic-action %d
server role = standalone server
obey pam restrictions = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
pam password change = yes
map to guest = bad user
unix charset = UTF-8
dos charset = CP932
[Development]
path= /server/Development/
writeable = yes
create mask = 0777
force create mode = 0777
directory mask = 0777
force directory mode = 0777
security mask = 0777
force security mode = 0777
guest ok = no
valid users = @development
Interestingly enough, the Windows 10 machine that accesses the share has more permissions than the Linux Mint machine logged in with the same credentials. For example:
Windows 10:
Create Folder FolderA in the share then create folder FolderA1 inside FolderA. No issues.
Linux Mint:
Create Folder FolderA in the share (Lock shows on folder). Unable to create anything inside FolderA
fstab entry on the Linux Mint box:
//10.0.10.240/Development /mnt/Development cifs nobrl,_netdev,vers=1.0,noserverino,iocharset=utf8,credentials=/home/spsimmons/.smbcred 0 0
Is there a setting somewhere I am missing? Thanks!
EDIT
From the Win10 Machine, I create FolderA and it has the following permissions:
drwxrwsr-x+ 3 1001 1004 0 Jul 10 12:39 FolderA
FolderA1 inside of FolderA permissions:
drwxrwsr-x+ 2 1001 1004 0 Jul 10 12:39 FolderA1
1004 is the GID of the group.
Created a folder from the Win10 machine that the Linux machine cannot create in.
Created a folder from the Linux machine that the Win10 machine CAN create in.
I'm not using fuse but I did add the file_mode=0777,dir_mode=0777 parameters to my mount line. Still no dice.