- smb 服务器的安装操作:
sudo apt-get install samba
- 安装完成后对 smb 配置文件进行配置,如下:
vi /etc/samba/smb.conf
在配置文件最后添加代码:
[ald]
comment = smb
path = /home/ald/smb
browseable = yes
writable = yes
read only = no
guest ok = yes
- 重启 smb 服务器
sudo service smbd restart
sudo service nmbd restart
网友评论