workgroup = WORKGROUP # 设置工作组名称,通常为 WORKGROUP server string = %h server # 设置服务器描述 netbios name = nas-server # 设置服务器 NetBIOS 名称 security = user # 设置安全模式为用户认证 map to guest = bad user # 拒绝匿名用户访问
[shared] # 设置共享名称 path = /mnt/nas # 设置共享目录路径 valid users = user1,user2 # 设置允许访问的用户列表 read only = no # 允许读写访问 browseable = yes # 允许在网络中浏览 guest ok = no # 禁止匿名访问 force user = root # 用 root 身份操作 create mask = 0777 # 创建文件的权限 directory mask = 0777 # 创建目录的权限
#======================= Global Settings =======================
[global]
## Browsing/Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of workgroup = zgxmt
# server string is the equivalent of the NT Description field server string = %h server (Samba, Ubuntu)
netbios name = nas
security = user
map to guest = bad user
log file = /var/log/samba/log.%m
# Cap the size of the individual log files (in KiB). max log size = 1000
# We want Samba to only log to /var/log/samba/log.{smbd,nmbd}. # Append syslog@1 if you want important messages to be sent to syslog too. logging = file
# Do something sensible when Samba crashes: mail the admin a backtrace panic action = /usr/share/samba/panic-action %d
server role = standalone server
obey pam restrictions = yes
# This boolean parameter controls whether Samba attempts to sync the Unix # password with the SMB password when the encrypted SMB password in the # passdb is changed. unix password sync = yes
# For Unix password sync to work on a Debian GNU/Linux system, the following # parameters must be set (thanks to Ian Kahan <<kahan@informatik.tu-muenchen.de> for # sending the correct chat script for the passwd program in Debian Sarge). passwd program = /usr/bin/passwd %u passwd chat = *Enter\snew\s*\spassword:* %n\n *Retype\snew\s*\spassword:* %n\n *password\supdated\ssuccessfully* .
# This boolean controls whether PAM will be used for password changes # when requested by an SMB client instead of the program listed in # 'passwd program'. The default is 'no'. pam password change = yes
# This option controls how unsuccessful authentication attempts are mapped # to anonymous connections map to guest = bad user
[printers] comment = All Printers browseable = no path = /var/tmp printable = yes guest ok = no read only = no create mask = 0700
# Windows clients look for this share name as a source of downloadable # printer drivers [print$] comment = Printer Drivers path = /var/lib/samba/printers browseable = yes read only = no guest ok = no # Uncomment to allow remote administration of Windows print drivers. # You may need to replace 'lpadmin' with the name of the group your # admin users are members of. # Please note that you also need to set appropriate Unix permissions # to the drivers directory for these users to have write rights in it ; write list = root, @lpadmin
[shared]
path = /home/nas
valid users = nas,root
# 设置允许访问的用户列表 read only = no # 允许读写访问 browseable = yes # 允许在网络中浏览 guest ok = no # 禁止匿名访问 force user = root # 用 root 身份操作 create mask = 0777 # 创建文件的权限 directory mask = 0777 # 创建目录的权限
samba 用户创建
1 2 3 4
sudo useradd -m -s /bin/bash nas sudo passwd nas sudo smbpasswd -a nas sudo pdbedit -L # 验证用户
# 检查必要工具 declare -A REQUIRED_TOOLS=( ["parted"]="分区工具" ["mkfs.ext4"]="格式化工具" ["mergerfs"]="存储合并工具" ) for tool in "${!REQUIRED_TOOLS[@]}"; do if ! command -v $tool &> /dev/null; then echo "错误:缺少依赖 ${REQUIRED_TOOLS[$tool]} ($tool)" exit 1 fi done