#cd /etc/yum.repos.d
#vim source.repo
[source]
name=sentos7-samba4
baseurl=file:///mnt
enabled=1
gpgcheck=0
#umount /dev/cdrom
#mount /dev/cdrom /mnt
#df
#yum --enablerepo=source install samba -y
#systemctl enable smb
#systemctl enable nmb
#systemctl smb nmb
#systemctl is-active nmb smb 查看这两个端口是否启动
#netstat -anlpt |grep smb 查看监听端口 139,445
#netstat -anlpu |grep nmb 查看监听端口 137,138
#firewall-cmd --permanent --add-service=samba
#firewall-cmd --reload
#cd /etc/samba
#ls 可以看到lmhost ,smb.conf ,smb.conf.example
#mkdir /common
#useradd zhangsan
#smbpasswd -a zhangsan --→ New SWB password :设置密码

#pdbedit -L 查看张三用户信息
#vim /etc/samba/smb.conf 修改配置文件为里面添加内容
[common]
comment = ziliao
path = /common
allow hosts = 192.168.200.0/24
#user = zhangsan
#writable = yes
#testparm --→ 语法检测

#ll -d /common/
#chmod -R 775 /common/ 添加权限
#ll -d /common/
#echo 123456 > /common/test.txt 准备测试文件
#systemctl restart smb
#systemctl restart nmb

control userpasswords2 --→ windows去操作内容
\ 192.168.200.152 \ common
#smbclient -L //192.168.200.152 -U (linux 客户端)
#yum -y install samba-client
当访问失败情况下进行以下操作
#iptables -F
#setenforce 0 宽松模式