I am trying to set up a Samba share with a Windows computer from CentOS6. This is my current samba config:
[global]
restrict anonymous = no
domain master = no
preferred master = no
workgroup = workgroup
ldap ssl = no
server signing = auto
wins support = no
[test]
path = /home/test
browseable = yes
writable = yes
guest ok = no
create mask = 0777
directory mask = 0777
I can access the directory specified on my Windows computer, but access is denied if I try to create a folder or save a file into it. I have tried this config with many different folders (not just /home/test) with them all having the same result. The directories all belong to the same user that I log into as on the Windows computer and that user also has full privileges of the directory recursively (chmod and chown have been used at times), and so I don't understand why the access is denied.
Thanks.