我正在尝试设置 NASUbuntu 桌面 16.04,有人可以帮忙吗?是否可以使用桌面代替服务器我相信这是可能的
答案1
只需安装 samba 即可开始使用
sudo apt-get update
sudo apt-get install samba
然后你需要相应地编辑 conf 文件/etc/samba/smb.conf
这应该是非常基本的配置:
# Global parameters
[global]
workgroup = HOME
netbios name = SAMBA
server string = Samba Server %v
map to guest = Bad User
log file = /var/log/samba/log.%m
max log size = 50
security = User
# My share
[share]
# Path to your share
path = /home/user/samba
browsable = yes
guest ok = yes
read only = no
create mask = 0755