使用filezilla在树莓派和PC间传输文件的步骤

1.PC端安装Filezilla
https://filezilla-project.org/

2.安装vsftpd服务器
sudo apt-get install vsftpd

3.启动ftp服务
sudo service vsftpd start

4.编辑vsftdp的配置文件
sudo vim /etc/vsftpd.conf

在vsftpd.conf写入:
anonymous_enable=NO
local_enable=YES
write_enable=YES

5.sudo reboot

6.有个坑:FileZilla:不安全的服务器,不支持 FTP over TLS。

Filezilla→文件→站点管理器→new site→更改加密方式→问题解决使用filezilla在树莓派和PC间传输文件的步骤