码迷,mamicode.com
首页 > 系统相关 > 详细

[Linux]Linux下samba创建共享文件

时间:2019-07-14 20:16:15      阅读:181      评论:0      收藏:0      [点我收藏+]

标签: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

  • 在[global] 下修改security = user为security = share
  • 在最下面添加共享文件设置如下

[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

 

[Linux]Linux下samba创建共享文件

标签:share   art   director   权限   lin   inux   home   linux   tar   

原文地址:https://www.cnblogs.com/TonyZhao/p/11185266.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!