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

Ubuntu 16.04 samba 配置

时间:2017-09-30 11:35:55      阅读:213      评论:0      收藏:0      [点我收藏+]

标签:目录   linux中   inux   share   linu   samba   dir   其他   cto   

1.首先在Ubuntu系统安装samba服务:

  sudo apt-get insall samba

2.创建共享目录:

  我一般直接把我的home目录整个共享。路径/home/xyp/;

  当然也可以新建其他目录。

3.修改samba配置文件:

  首先保存已有的配置文件:

    sudo cp /etc/samba/smb.conf /etc/samba/smb.conf.bak

  修改配置文件:

    在配置文件的末尾添加如下内容:

    [xyp]
      comment = Share Folder require password
      browseable = yes
      path = /home/xyp
      create mask = 0666
      directory mask = 0777
      valid users = xyp
      public = yes
      writable = yes
      available = yes

4.创建samba账户

  sudo touch /etc/samba/smbpasswd

  sudo smbpasswd -a xyp

  然后会要求你输入samba帐户的密码

5.重启samba服务器

  sudo /etc/init.d/samba restart

6.测试

  smbclient -L //localhost/xyp

7.windows映射磁盘

  计算机 -> 映射网络驱动器 -> \\server_ip\xyp -> 输入密码

  注意在windows的\\与linux中/的不同。

 

Ubuntu 16.04 samba 配置

标签:目录   linux中   inux   share   linu   samba   dir   其他   cto   

原文地址:http://www.cnblogs.com/hei-da-mi/p/7613756.html

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