Raspberry Pi3 ~ 安装samba服务

时间:2023-03-08 19:59:12

文章转载自此博文

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!