赞
踩
本文主要通过配置samba,达到共享linux文件夹到windows下无密码访问的目的:
首先要做的是要在linux和samba下创建同名账户,这样才能达到共享的目的:
1、在linux下创建普通用户share,然后修改密码
useradd -m share
passwd share
2、创建共享目录
mkdir -p /home/share/common
3、创建samba用户share
smbpasswd -a share
4、保证在/home/share下所有文件夹的所有者为share
chown -R share:users /home/share
5、配置samba
vim /etc/samba/smb.conf
设置访问权限为share:
security = share
passdb backend = tdbsamare
在最后添加新的用户访问列表:
[share]
path = /home/share/common
comment = share to all users without passwd
writable = yes
browseable = yes
6、重启samba服务:
service smb restart
7、通过\\IP\share文件夹即可访问共享的目录
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。