The OS is CentOS 6.2, JSS 8.52 running fine on it.
Here's what I've got so far:
$yum install samba
$sudo useradd -d /home/casperadmin casperadmin -s /bin/false -N
$sudo useradd -d /home/casperinstall casperinstall -s /bin/false -N
$sudo passwd casperadmin
$sudo passwd casperinstall
$sudo smbpasswd -a casperadmin
$sudo smbpasswd -a casperinstall
$sudo mkdir /srv/samba/CasperShare
$sudo chown casperadmin /srv/samba/CasperShare
$ls -al /srv/samba/
drwxr-xr-x. 2 casperadmin root 4096 Jun 19 08:15 CasperShare
Contents of /etc/samba/smb.conf file:
[global] workgroup = MYGROUP security = user passdb backend = tdbsam
[CasperShare] comment = CasperShare path = /srv/samba/CasperShare browseable = yes guest ok = no read only = no create mask = 0755 read list = casperinstall write list = casperadmin
Result:
Both casperadmin and casperinstall can mount and read from the share, but casperadmin cannot write to it. When mounting CasperShare from my Mac using the casperadmin and attempting to copy a file to it, I first get a Mac authentication window, then the error "Items can't be copied to "CasperShare" because you don't have permission to read them."
Thanks all for any help/suggestions. Much appreciated. :)
