0%

Ubuntu配置SMB服务

安装samba

sudo apt-get install samba

添加用户

添加 smb 服务的用户名密码

sudo smbpasswd -a xyz

配置

编辑/etc/samba/smb.conf文件,在最后加上如下内容

1
2
3
4
5
6
7
[xyz]
comment = xyz's Home
path = /home/Doucument
browseable = yes
read only = no
guest ok = no
create mask = 0600

重启服务

sudo /etc/init.d/samba restart

欢迎关注我的其它发布渠道