Centos7.3搭建samba服務器,和windows共享文件
centos7.3的ip爲192.168.11.129
1,安裝samba服務
[root@localhost ~]# yum -y install samba*
linux
2,建立共享目錄並修改權限並編輯配置文件
[root@localhost ~]# mkdir -p /home/study
[root@localhost ~]# chmod u+x /home/study/
修改selinux限制
[root@localhost samba]# setsebool -P samba_export_all_rw=on
配置文件/etc//samba/smb.conf,習慣性對 配置文件 進行備份
[root@localhost samba]# cp smb.conf smb_back.conf
編輯配置文件
[root@localhost samba]# vim smb.conf
[study]
path = /study
browseable = yes
guest ok = no
writable = yes
vim
3,配置samba登陸賬號
[root@localhost ~]# smbpasswd -a study
4,配置防火牆
[root@localhost ~]# firewall-cmd --permanent --add-service=samba
[root@localhost ~]# firewall-cmd –reload
5,設置samba服務重啓並自啓動
[root@localhost ~]# systemctl restart smb nmb
[root@localhost ~]# systemctl enable smb nmb
6,在windows測試
windows
配置成功centos