1、关闭防火墙
service iptables stop
关闭SELinux
setenforce 0
2、安装 Samba
yum install -y samba samba-calient
3、创建用户
useradd test
samba身份认证
pdbedit -a test
4、设置密码:
passwd testuser
4、启动samba 服务
添加开机启动 chkconfig smb on
立即启动 service smb start
5、测试一下
打开我的电脑 \ip地址
会提醒登录
拖文件进入test
在终端查看是否成功 ls /home/test
6、创建自定义的文件共享
mkdir -p /var/www/html
修改权限
chmod -R 777 /var/www/html
7、修改samba配置文件
vi /etc/samba/smb.conf
底部
找到
[printers]
comment = All Printers
path = /var/spool/samba
browseable = no
guest ok = no
writable = no
printable = yes
复制
[html]
path = /var/www/html
browseable = yes
p testublic = no
ritable = yes
保存:wq
8、重启服务
service smb restart
再次连接测试即可