Samba是Linux中提供文件/文件夹共享服务的软件,类似windows中的共享。
一、安装配置
1、安装
yum install samba -y
2、打开端口
firewall-cmd --permanent --add-port=137/udp firewall-cmd --permanent --add-port=138/udp firewall-cmd --permanent --add-port=139/tcp firewall-cmd --permanent --add-port=445/tcp firewall-cmd --reload
3、修改配置文件
vi /etc/samba/smb.conf
不用登录,直接访问目录,在
security = user passdb backend = tdbsam后面添加:
map to guest = bad user
不显示打印机,将
load printers = yes改为:
load printers = no
添加共享目录,在文件最后面加上:
[软件] path = /data/software public = yes writable = no browseable = yes [完全共享] path = /data/share public = yes writable = yes browseable = yes
4、修改权限
chmod 777 /data/share -R
二、常用操作
1、设置开机启动
systemctl enable smb
2、启动/停止/重启防火墙
systemctl start/stop/restart smb
© 2016-2024 清风的个人笔记