博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos7安装Samba 共享文件夹
阅读量:6639 次
发布时间:2019-06-25

本文共 896 字,大约阅读时间需要 2 分钟。

  hot3.png

###  yum install -y samba samba-client samba-common### 备份cp /etc/samba/smb.conf /etc/samba/smb.conf_bak### 配置vi /etc/samba/smb.conf [global]workgroup = WORKGROUPserver string = Samba Server %vnetbios name = centossecurity = usermap to guest = bad userdns proxy = no#============================ Share Definitions ============================== [Anonymous]path = /samba/anonymousbrowsable =yeswritable = yesguest ok = yesread only = no :wq#保存并退出### 设置开机启动 并 启动mkdir -p /samba/anonymoussystemctl enable smb.servicesystemctl enable nmb.servicesystemctl restart smb.servicesystemctl restart nmb.service### 添加防火墙 -A INPUT -p udp -m tcp --dport 137 -j ACCEPT -A INPUT -p udp -m tcp --dport 138 -j ACCEPT -A INPUT -p tcp -m tcp --dport 139 -j ACCEPT -A INPUT -p tcp -m tcp --dport 445 -j ACCEPT ### 或者firewall-cmd --permanent --zone=public --add-service=samba

转载于:https://my.oschina.net/Kxvz/blog/636454

你可能感兴趣的文章
退市35年后,牛仔裤品牌李维斯要重新IPO了
查看>>
POST 与 GET
查看>>
python处理滑块验证的轨迹计算问题
查看>>
Python与家国天下
查看>>
美检方不予起诉刘强东,性侵案正式结案
查看>>
Redis有哪些开发设计规范值得我们注意的!
查看>>
共话AIoT与“智能+”,“AI赋能 智联万物——开发者沙龙·无锡站”圆满落幕
查看>>
python设计模式(十):享元模式
查看>>
使用 Promwww9992019comI8I2222IIIIetheus 监控 Ceph
查看>>
[Leetcode] Lowest Common Ancestor of a Binary Tree 最小公共祖先
查看>>
WinRAR 曝出代码执行漏洞,该升级了
查看>>
前程无忧爬虫源码及分析(一)
查看>>
中国用户体验设计究竟有多强
查看>>
去除WPF中3D图形的锯齿
查看>>
Mozilla Firefox 67.0 Beta 8 (Quantum) 发布
查看>>
Tomcat启动、关闭、重启脚本
查看>>
Docker Windows Server 应用迁移计划上线,让您轻松处理旧版应用程序!
查看>>
Jenkins 2.169 发布,可扩展的持续集成引擎
查看>>
Django template过滤器
查看>>
WPF查找父元素子元素
查看>>