为梦而战
全部博文(185)
分类: LINUX
2015-02-13 10:18:12
修改
1、关闭防火墙
# /etc/init.d/iptables stop
# /etc/init.d/ip6tables stop
2、禁用selinux
# vi /etc/selinux/config
SELINUX=disabled
3、# vi /etc/samba/smb.conf
添加
[home]
comment = *
path = /home
writeable = yes
; browseable = yes
guest ok = yes
修改
security = share
4、修改/home的访问权限
chmod -R 777 /home
5、service smb restart
通常上述5个步骤已经可以成功搭建samba,如果还是不行,执行下面操作
6、chkconfig --levels 2345 smb off
chkconfig --levels 2345 smb on
chkconfig --levels 2345 iptables on
chkconfig --levels 2345 ip6tables on
reboot