1、安装Samba服务
sudo apt-get install samba samba-common
2、配置需要共享的目录(/home/share_dir为要共享的目录)
sudo chmod -R 777 /home/share_dir
3、修改配置文件
sudo gedit /etc/samba/smb.conf
在文件未尾添上以下内容
[samba_share]
comment = samba share between windows and linux
path = /home/samba_share
writable = yes
read = yes
[samba_share] 为共享目录对外显示的名字
4、添加samba用户(user为用户名)
sudo smbpasswd -a user
注:添加samba用户,用于其他人或设备认证,这里添加的用户需要在系统账号中存在,否则添加失败
5、重启samba服务
sudo service smbd restart
sudo service nmbd restart