centos7 搭建 samba,win10访问centos7共享的文件路径
- 首先安装samba相关的服务
yum install -y samba*
- 配置samba的配置文件
cp /etc/samba/smb.conf /etc/samba/smb.conf.bak vim /etc/samba/smb.conf //修改配置文件smb.conf的内容为下述内容 [global] log file = /var/log/samba/log.%m max log size = 50 security = user map to guest = Bad User [sambadir] path=/home/ readonly=yes browseable=yes writable = yes guest ok=yes
- 配置系统文件打开数目上限(因为后续会通过samba文件打开大量文件,所以需要修改此参数)
vim /etc/security/limits.conf //文件末尾需要添加如下内容 * soft nofile 65535 * hard nofile 65535 //修改该文件后,需要reboot,这里暂不reboot,后面关闭防火墙后也需要reboot
- 关闭防火墙
vim /etc/selinux/config #永久关闭selinux set SELINUX=disabled #SELINUX=enforcing改为SELINUX=disabled //关闭firewall systemctl stop firewalld systemctl disable firewalld //这里需要reboot才能生效
- reboot
- 启动SAMBA
systemctl restart smb #重启 systemctl enable smb #修改为开机启动 systemctl status smb #查看状态
- 在window文件浏览器里输入\your samba server ip
- win10 下开启网络发现。
https://jingyan.baidu.com/article/c275f6ba3ef050e33d756702.html - win10下可能无法访问共享文件夹解决
//管理员权限进入cmd //开启SMBv1 sc.exe config lanmanworkstation depend= bowser/mrxsmb10/mrxsmb20/nsi sc.exe config mrxsmb10 start= auto
//关闭SMBv2 and SMBv3 sc.exe config lanmanworkstation depend= bowser/mrxsmb10/nsi sc.exe config mrxsmb20 start= disabled (需要重启win10)
- 完毕
原文地址:http://blog.51cto.com/qiaopeng688/2102994
时间: 2024-10-07 01:00:37