Linux

Samba 組不工作

  • May 10, 2010

我正在嘗試讓 samba 與團體合作。我正在使用 CentOS。

#sswords = yes
lanman auth = no
null passwords = no
hosts allow = 129.130.155.
netbios name = a server
server string = base PHP server
[team$]
path= /var/www
writable = yes
valid users = @team
force group = @team

我在 linux 中創建了一些使用者,並將它們添加到一個名為 team 的組中

groupadd -a -g 使用者名。

我嘗試登錄並獲得了 NT_STATUS_NO_SUCH_GROUP。如果我註釋掉配置中的最後兩行,它可以工作,但我希望擁有組所有權,並且更喜歡能夠將使用者添加到 Linux 中的組並使其與 samba 一起使用。

將最後一行更改為

force group = team

您正在嘗試使用組本身(組的成員)的內容來強制組,而不是強制組名。

引用自:https://serverfault.com/questions/138887