ubuntu 配置 samba 服务

前端之家收集整理的这篇文章主要介绍了ubuntu 配置 samba 服务前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

安装

subo apt-get install samba

修改 /etc/samba/smb.conf的配置

这里要注意,用root的权限,要不然,你是没有办法保存的

vim smb.conf
#======================= Global Settings =======================
[global]
## Browsing/Identification ###
# Change this to the workgroup/NT-domain name your Samba server will part of
   workgroup = WORKGROUP
   security = user

在最后加下

[username]
   comment = All Printers
   browseable = yes
   path = /home/username/work
   read only = no
   valid users = @username

添加samba 用户 username

smbpasswd -a username

激活samba 用户 username

smbpasswd -e username

重启 samba 服务

systemctl restart smbd.service nmbd.service

好了,看一下ip 就可以连了

原文链接:https://www.f2er.com/ubuntu/352083.html

猜你在找的Ubuntu相关文章