当我尝试使用 nautilus-share pulgin 添加 usersahre 时,
'net usershare' returned error 255: net usershare add: cannot convert name "Everyone" to a SID. The transport connection is now disconnected..
我的 smbd.conf 内容出现以下错误:
[global]
workgroup = WORKGROUP
dns proxy = no
log file = /var/log/samba/%m.log
max log size = 1000
server min protocol = SMB2_02
server max protocol = SMB3
server role = standalone server
passdb backend = tdbsam
obey pam restrictions = yes
unix password sync = yes
passwd program = /usr/bin/passwd %u
passwd chat = *New*UNIX*password* %n\n *ReType*new*UNIX*password* %n\n *passwd:*all*authentication*tokens*updated*successfully*
pam password change = yes
map to guest = Bad Password
usershare allow guests = yes
name resolve order = lmhosts bcast host wins
security = user
guest account = guest
guest ok = yes
usershare path = /var/lib/samba/usershares
usershare max shares = 100
usershare owner only = false
force create mode = 0070
force directory mode = 0070
load printers = no
printing = bsd
printcap name = /dev/null
disable spoolss = yes
show add printer wizard = no
[homes]
comment = Home Directories
browseable = no
read only = yes
create mask = 0700
directory mask = 0700
valid users = %S
[printers]
comment = All Printers
browseable = no
path = /var/spool/samba
printable = yes
guest ok = no
read only = yes
create mask = 0700
[print$]
comment = Printer Drivers
path = /var/lib/samba/printers
browseable = yes
read only = yes
guest ok = no
我还检查了我的用户是否在 sambashare 组中,并且目录 /var/lib/samba/usershares 具有以下属性
drwxrwxrwx 2 root sambashare 4096 فبر 5 19:11 usershares
对这个问题有什么建议吗?
答案1
我从一堆 vbox linux 和 unix 来宾连接到 Windows 主机,并在升级到 Windows 11 之前在来宾上共享来自主机的文件,没有出现任何问题。我必须在 Windows 11 上打开 smb1 才能再次在 unix 上工作。我认为它仍然可以在 Linux 机器上运行。
我一直在尝试通过 samba 将 Solaris 和 OpenBSD 来宾连接到主机,但在 xsession-errors 中收到“net usershare”错误 255。
我看到扩展错误表明它无法将用户映射到 SID。
如果我是你,我可能会尝试的第一个更改是将“遵守 pam 限制”改回“否”。看来 pam 无法应对 lmauth 挑战。
如果这不起作用,请查看“ntlm auth = yes”。
答案2
我在尝试连接到 samba 共享时遇到了同样的错误消息。就我而言,问题在于我之前曾尝试将 samba 连接转发到其他主机,而 netcat 仍在侦听端口 445,而不是本应在那里的本地 samba。看来 smb 客户端首先在端口 139 上成功连接到 nmbd 以查找共享/名称,然后连接到端口 445 但在那里找不到 samba,或者是错误的 samba(不确定连接转发是否实际上在该端口上工作)时间)。
所以这完全是我自己的错。这可能不适用于OP,但以防万一有人做了类似的事情,这是我的答案来提醒您!