即使群组成员也无法写入Samba共享

[global] workgroup = WORKGROUP server string = %h Samba Server wins support = no dns proxy = no map to guest = bad user load printers = no printing = bsd printcap name = /dev/null disable spoolss = yes show add printer wizard = no hosts allow = 172.16. 127. 10. disable netbios = yes deadtime = 30 invalid users = root security = user inherit owner = yes inherit permissions = yes create mask = 0664 directory mask = 2775 force create mode = 0664 force directory mode = 2775 socket options = IPTOS_LOWDELAY TCP_NODELAY IPTOS_THROUGHPUT strict locking = no use sendfile = yes aio read size = 2048 aio write size = 2048 [data] comment = Data path = /mnt/data valid users = archie write list = @storusers writable = yes 

权限脚本:

 #!/bin/sh echo "chmod mnt.." find /mnt/ -type d -exec chmod 2775 {} +; find /mnt/ -type f -exec chmod 0664 {} +; echo "chown data.." chown archie:storusers /mnt/data; chown -R http:storusers /mnt/data/www; 

在服务器上,它作为archiestorusers一部分),我可以写入/mnt/data/www ,但是当我把它作为Samba共享挂载时,我无法做到这一点。