标签 samba 下的文章

samba 共享的文件,被修改后,会被增加执行位。 要保留原来的属性,只需要修改 /etc/samba/smb.conf

[global]
......
      map archive = no

参考: https://stackoverflow.com/questions/20958888/preserving-file-permissions-for-samba-shares-when-file-is-edited https://en.wikipedia.org/wiki/Archive_bit https://www.linuxquestions.org/questions/linux-server-73/samba-adds-execute-flag-to-all-new-files-783263/ https://www.samba.org/samba/docs/using_samba/ch08.html

准备搞一台 PC 作为 NAS, 开启 SAMBA 作为文件服务器。考虑多个手机自动备份到不同的文件夹,可以通过盒子进行播放,还要密码防护。 所以在配置文件里面 valid users 这里把 手机和盒子都添加进去,然后 放到一个用户组里面, 相应的文件夹对于用户组 开 rwx 权限,便于手机同步写入。

参考 Samba Share Password Refused https://social.technet.microsoft.com/Forums/windows/en-US/8249ad4c-69aa-41ba-8863-8ecd7a7a4d27/samba-share-password-refused

新版的 samba 默认不使用 NTLM V1了。有两种办法,一种是 只使用 NTLM V2,还有一种使用 NTLM V1 使用NTLM V2的时候,可以在 windows 里面, secpol.msc 打开本地安全策略,LAN 管理器,选择只使用 NTLM V2,拒绝LM, NTLM。samba 服务器端开启 client NTLMv2 auth = yes 使用NTLM V1的时候,需要选择 如果已协商,使用。。。, 但是在 samba 服务器端需要开启 ntlm auth = yes。