创建samba服务器的步骤
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建samba服务器的步骤相关的知识,希望对你有一定的参考价值。
搭建samba服务器步骤:
0》 首先执行这两条命令:
iptables -F
setenforce 0
1》 yum inatall samba -y
# rpm -qa|grep samba
2》 vim /etc/samba/smb.conf 在文件的最后增加:
[company]
comment=share file
path=/company
public=yes
writable=yes
;write list=+staff
Security=share 表示其他用户可以任意访问
Security=user 此时需设置:
#useradd 用户名
#smbpasswd -a 用户名 #usermod -a /sbin/nologin 用户名
然后重启服务:#service smb restart
3》 service smb restart
以上是关于创建samba服务器的步骤的主要内容,如果未能解决你的问题,请参考以下文章