在Ubuntu上使用FileZilla进行FTP上传
一 安装与启动
sudo apt update
sudo apt install filezilla
二 连接FTP服务器
三 执行上传
四 常见问题与防火墙
sudo ufw allow 21/tcp
sudo ufw allow 22/tcp # 如使用SFTP
五 附 SFTP快速配置(更安全的替代方案)
sudo apt install openssh-server
sudo systemctl start ssh
sudo systemctl enable ssh