- 安装samba
yum install samba
- 创建系统用户,设置无法登录shell
groupadd user216 -g 6000
useradd user216 -u 6000 -g 6000 -s /bin/false -d /dev/null
不创建相应对应系统用户,添加samba用户时,会提示
Failed to add entry for user
- 配置
vim /etc/samba/smb.conf
# 加入以下内容
[share]
comment = share for users
path = /home/backups
browseable = yes
writable = yes
public = no
- 创建目录并配置权限
mkdir /home/backups
chown -R user216:user216 /home/backups
chmod u+rwx,g+rwx,o-rwx /home/backups
- 添加共享文件夹的用户
smbpasswd -a user216
- 关闭防火墙或者开放445、139端口
systemctl stop firewalld
systemctl disable firewalld
或者
firewall-cmd --zone=public --add-port=139/tcp --permanent
firewall-cmd --zone=public --add-port=445/tcp --permanent
systemctl restart firewalld
- 开启samba服务
systemctl start smb
- 在windows上打开共享文件夹,即可使用
win+r或者在文件夹上输入部署了samba服务的ip地址
例如:
\\ip\share