sudo apt update && sudo apt upgrade
sudo apt install filezilla
验证安装:sudo dpkg -l | grep filezilla
。filezilla
启动。wget https://dl3.cdn.filezilla-project.org/server/FileZilla_Server_1.7.3_x86_64-linux-gnu.deb
sudo dpkg -i FileZilla_Server_1.7.3_x86_64-linux.deb
sudo systemctl start filezilla-server
sudo ufw allow 21/tcp # 开放FTP端口(默认21)
通过FileZilla Server Interface
管理用户、共享文件夹及被动模式设置。ufw
开放FTP端口:sudo ufw allow 21/tcp
sudo ufw reload
```。
以上步骤参考自[1,2,3,4,5,6,7,8,9,10,11]。