Ubuntu 与Windows 之间搭建共享文件夹

工作中经常需要搭建Linux环境用于测试以及其他开发需求,办公电脑通常是Windows 系统,为便于让文件在两个系统之间传输,可以采取共享文件的方式实现;

1、安装samba 服务;

sudo apt update
**  sudo apt install samba**

2、创建共享文件夹:

mkdir /path/shared-folder
**  sudo chown nobody:nogroup /path/tshared-folder**
**  sudo chmod 0775 /path/shared-folder**

【注】上述路径的path以及folder名字,可自行选定;

3、配置samba共享配置,配置samba 配置文件:

sudo gedit /etc/samba/smb.conf

打开samba 配置文件后,在配置文件中添加以下配置:

[SharedFolder]
**    path = /path/to/shared-folder**
**    browseable = yes**
**    read only = no**
**    writable = yes**
**    guest ok = yes**

4、重启samba服务以应用配置:

sudo systemctl restart smbd

5、若有防火墙运行,允许samba运行:

sudo ufw allow samba

6、在Ubuntu中输入ifconfig ,查看ip 地址, 在Windows 网络共享目录中输入该ip,可访问共享文件夹了;