samba搭建与配置说明
1. 环境检查
getenforce 检查selinux
service iptables stop
2.安装samba
yum -y install samba
3.配置samba
/etc/samba/smb.conf 配置文件
/etc/init.d/smb 启动和关闭的文件
service smb start
chkconfig smb on
4.修改smb.conf
[global] //设置samba服务整体环境
workgroup = WORKGROUP //设置工作组名称
server string = Samba Server Version %v //服务器说明
[share] //共享目录的名称,在windows
comment = share /media/data //注释说明
path = /media/data //共享目录的路径
public = yes //是yes/否no公开共享,若为否则进行身份验证(只有当security = share 时此项才起作用)
writeable = yes //是yes/否no不以只读方式共享当与read only发生冲突时,无视read only
browseable = yes //是yes/否no在浏览资源中显示共享目录,若为否则必须指定共享路径才能存取
guest ok = yes //是yes/否no公开共享,若为否则进行身份验证(只有当security = share 时此项才起作用)
[share]
comment = share /media/data
path = /media/data
public = yes
writeable = yes
browseable = yes
将media的权限设置成777
service smb start
5.设置共享账户
smbpasswd -a user1
输入两次秘码
windows 下的访问
\\192.168.10.206
有几个只需要注意的问题:
1,防火墙要关闭, # service iptables stop
2,selinux要设置成disabled,路径是/etc/sysconfig/selinux
3,注意共享目录的权限设置
4,要设置成不需要用户名密码直接访问,需要修改配置文件,将security设置成security = share。
使用smbpasswd添加共享用户的常用方法:
smbpasswd -a 添加用户(被添加用户必须是系统用户)
smbpasswd -d 冻结用户 (这个用户不能用了)
smbpasswd -e 恢复用户 (将冻结的用户解冻)
smbpasswd -n 将用户密码设置为空
smbpasswd -x 删除用户