<meta charset="utf-8">
1、安装samba所需依赖包
[root@server ~]# yum -y install samba samba-common samba-client samba-swat
2、设置开机启动
[root@server ~]# chkconfig --level 35 smb on
3、将137 138 139 445 端口加入防火墙规则
4、创建组及用户
[root@server /]# groupadd share //创建组
[root@server /]# useradd -g share share01 //创建用户并添加到组
[root@server /]# usermod -a -G share share01//将用户添加到多个组
[root@server /]# pdbedit -a -u share01 //创建用户密码
[root@server /]# mkdir /share
[root@server /]# chmod 777 /share
5、编辑配置文件
[root@server ~]# cp /etc/samba/smb.conf /etc/samba/smb.conf.bak
[root@server ~]# vi /etc/samba/smb.conf
[share]
comment = Public Stuff
path = /share
public = yes
writable = yes
printable = no
write list = share01
6、重启smb
[root@server /] service smb restart
[root@server /] service nmb restart
此时samba服务器就搭建好了,接下来 在windows端输入IP进行访问
如果是windows10系统的话,可能会遇到无法访问的情况,请启用SMB1.0