Centos下samba服务快速搭建
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Centos下samba服务快速搭建相关的知识,希望对你有一定的参考价值。
准备工作:
先排除系统安全机制干扰,关闭iptables、selinux
service iptables stop
setenforce 0
++++++++++++++++++++++++++++++++++++
1、安装samba(CentOS Linux):
yum install samba system-config-samba samba-client samba-common
2、创建系统用户账号
/usr/sbin/groupadd www
/usr/sbin/useradd -g www www
3、创建samba配置文件
mv -f /etc/samba/smb.conf /etc/samba/smb.conf.bak
vi /etc/samba/smb.conf
4、为samba用户www设立一个密码:
smbpasswd -a www
5、启动samba:
/sbin/service smb start
以上是关于Centos下samba服务快速搭建的主要内容,如果未能解决你的问题,请参考以下文章