码迷,mamicode.com
首页 > Web开发 > 详细

Raspberry Pi 安装samba服务

时间:2016-04-28 09:24:00      阅读:324      评论:0      收藏:0      [点我收藏+]

标签:

文章转载自此博文

1. sudo apt-get install samba

如果出现错误提示,则需要先执行sudo apt-get update,再重新执行sudo apt-get install samba

安装完成后,这里只是安装了samba服务,一些基本工具还没有安装,所以还需要安装samba支撑工具:

sudo apt-get install samba-common-bin

(注意:这一步非常重要,这个要是不安装会导致像smbpasswd这样的工具没有被安装,后面就无法增加samba用户了)



2. 配置/etc/samba/smb.conf

sudo vi /etc/samba/smb.conf

修改[homes]段为如下:

[homes]

   comment = Home Directories

   browseable = yes

# By default, the home directories are exported read-only. Change the

# next parameter to ‘no‘ if you want to be able to write to them.

   read only = no

# File creation mask is set to 0700 for security reasons. If you want to

# create files with group=rw permissions, set next parameter to 0775.

   create mask = 0755

# Directory creation mask is set to 0700 for security reasons. If you want to

# create dirs. with group=rw permissions, set next parameter to 0775.

   directory mask = 0755



3. 增加samba用户:

sudo smbpasswd -a pi

输入两次密码,建议与系统保持一致。



4. 重启samba服务:

sudo service samba restart



5. 验证修改:

在windows下访问\\192.168.0.19\pi

输入用户名pi及密码,成功登录samba!

Raspberry Pi 安装samba服务

标签:

原文地址:http://www.cnblogs.com/einstein-2014731/p/5441288.html

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