标签:share art director 权限 lin inux home linux tar
1. 安装samba服务
sudo apt-get install samba
2. 创建需要共享的目录/ home/usr/share
在目录/home/xxxx/share xxx为用户名
mkdir share
修改该目录权限
chmod 777 share
4、设置配置文件smb.conf(默认:/etc/samba/smb.conf)
vi /etc/samba/smb.conf
[share] #此处是模块名称,名字随便起
comment = blog.whsir.com #注释
path = /usr/share #指定目录
browseable = yes
guest ok = yes #是否可浏览,是否可被所有用户看到
writable = yes #是否可写(全局可写)
create mask = 0644 #新建文件权限644
directory mask = 0755 #新建目录权限755
5、重启samba /etc/init.d/samba restart
6、在windows上访问\\<ip>\share
标签:share art director 权限 lin inux home linux tar
原文地址:https://www.cnblogs.com/TonyZhao/p/11185266.html