标签:samba
服务端:
安装samba服务及客户端服务
yum install -y samba samba-client
配置Samba配置文件:
vim /etc/samba/smb.conf
变更内容为:
workgroup = WORKGROUP
security = share
尾部增加:
[guolianzichan]
comment = share all 验证方式
path = /tmp/guolian 共享目录
browseable = yes 是否可浏览
public = yes 是否为公共账号
writable = no 是否可写
保存退出后:启动服务/etc/init.d/smb start
客户端:
安装客户端服务
yum install -y samba-client
访问方式:
smbclient //10.100.10.34/guolianzichan
也可以挂载:
mount -t cifs //10.100.10.34/guolianzichan /opt/ (需先安装cifs-utils工具)
以上操作无需输入密码即可共享访问
以上操作需输入密码才可共享访问
服务端:
vim /etc/samba/smb.conf
更改内容:
security = user
添加内容:
[yanghao]
comment = share for users
path = /tmp/guolian
browseable = yes
public = no
writable = yes
创建账号:useradd smbyang
生成samba账号及密码:pdbedit -a smbyang
重启samba服务:/etc/init.d/smb restart
客户端:
方式1:smbclient -Usmbyang //10.100.10.34/yanghao
方式2:mount -t cifs -o username=smbyang,password=www.123.com //10.100.10.34/yanghao /opt/
本文出自 “百闻世界” 博客,请务必保留此出处http://anson12315.blog.51cto.com/2441584/1914621
标签:samba
原文地址:http://anson12315.blog.51cto.com/2441584/1914621