加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
samba安装.txt 938 Bytes
一键复制 编辑 原始数据 按行查看 历史
hc 提交于 2019-02-22 18:03 . vagrant
setenforce 0
systemctl stop firewalld.service
#停止防火墙
systemctl disable firewalld
#关闭防火墙服务 重启不启动
sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
yum -y install samba
mv /etc/samba/smb.conf /etc/samba/smb.conf.origin
gx="/etc/samba/smb.conf"
touch $gx
cat >> $gx <<EOF
[global]
workgroup = WORKGROUP
server string = Ted Samba Server %v
netbios name = TedSamba
security = user
map to guest = Bad User
passdb backend = tdbsam
[gxyl]
comment = project development directory
path = /home/gxyl
browseable = yes
public = yes
writeable = yes
create mask = 0644
directory mask = 0755
force user = web
force group = root
EOF
chmod -R 777 /home/gxyl
chmod +x /etc/init.d/smb
systemctl start smb
#服务启动成功
#加入服务
chkconfig --add smb
#开机启动
chkconfig smb on
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化