1.安装:
yum install -y samba samba-client
2.配置说明:
配置文件: /etc/samba/smb.conf
在 “smb.conf ” 文件中存在三个特殊的配置段:
[ global ] :全局设置:这部分配置项的内容对整个Samba服务器都有效。
[ homes ] :用户宿主目录的共享设置:删掉没用
[ printers ]:打印机共享设置:删掉没用
Smb.conf文件中常见的配置项及含义说明:
常见全局配置项的含义
workgroup:所在工作组名称;
server string:服务器描述信息;
security:安全级别,可用值如下:User(本服务器验证连接)、server(指定另一台服务器验证)、ads(由Windows域控制器验证);
log file:日志文件位置,“%m” 变量表示客户机地址;
passwd backend:设置共享账户文件的类型;
comment:对共享目录的注释、说明信息;
path:共享目录在服务器中对应的实际路径;
browseable:该共享目录在“网上邻居”中是否可见;
guest ok:是否允许所有人访问,等效于“public” ;
writable:是否可写,与 read only 的作用相反;
免密码只读:
map to guest = Bad User
guest ok = yes
3. smb.conf 具体配置:
[global] workgroup = WORKGROUP security = user passdb backend = tdbsam printing = cups printcap name = cups load printers = yes cups options = raw [技术中心] comment = technology path = /smb/bss create mask = 0664 directory mask = 0775 public = yes #writable = yes read only = yes valid users=user1 user2 write list=root [public] comment = share path = /snail/public create mask = 0664 directory mask = 0775 public = yes writable = yes read only = no
##################################
samba配置检查:
testparm
4. 创建samba用户:
必须先建立系统用户,才能建立samaba用户
常用命令:
pdbedit -a username
pdbedit -x username
pdbedit -L //列出Samba用户列表
pdbedit -Lv //列出Samba用户详细信息
5.防火墙开放samba端口
firewall-cmd --permanent --zone=public --add-service=samba
firewall-cmd --reload
或:
firewall-cmd --zone=public --add-port=139/tcp --permanent
firewall-cmd --zone=public --add-port=445/tcp --permanent
firewall-cmd --zone=public --add-port=137/udp --permanent
firewall-cmd --zone=public --add-port=138/udp --permanent
firewall-cmd --reload
6. 远程访问:
windows: \\ip
linux: smbclient //IP/共享名 -U 用户名