yum install samba samba-client samba-swat
/etc/init.d/smb start/stop/restart
service smb status
chkconfig --level 35 smb on
1)关闭防火墙: #sevice iptables stop
2)修改 /etc/samba/smb.conf,具体配置网上有,我的如下:
security = share ---- 这个要用上,share表示安全最低级别,其次是user,最高是server
[共享目录名]
path = /home/用户名/共享目录名
;read only = no -----这个需要在前面用分号注释掉
writeable = yes
browseable = yes
public = yes
guest ok = yes
3)selinux作怪
修改/etc/sysconfig/selinux 把enforcing改成disabled;然后命令行setenforce 0;
或者使用selinux强制策略:chcon -R -t samba_share_t /home/suyang/"Fedora Samba"
4)修改目录权限 #chmod 777 /home/wind ; #chmod 777 /home/wind/smbShare; 特别是前面一个做为上层目录权限也需要修改!!!!
5)重启samba服务 #service smb restart 或者 /etc/rc.d/init.d/smb restart
接着关闭防火墙SElinux,这种关闭重启Linux后又会开启
[root@localhost heijunma]#service iptables stop
[root@localhost heijunma]#setenforce 0
但是输入Linux端heijunma的账户密码却登陆失败
原因是因为Linux的用户密码和samba的用户密码并不是一码子事,只是samba的用户必须是Linux的用户,因此需要将heijunma这个账户添加到samba的用户数据库,执行如下命令:[root@localhost heijunma]#smbpasswd -a heijunma
New SMB password:
Retype new SMB password:
Added user heijunma.
设置heijunma在samba中的密码后,即可添加heijunma账户到samba成功,
此时重新映射网络硬盘即可成功(注意:输入samba的密码登陆)