在Linux系统上使用FileZilla进行端口设置,可以分为安装FileZilla客户端和配置FileZilla服务器两个部分。以下是详细的步骤指南:
sudo apt update
sudo apt install filezilla
sudo apt install filezilla-locales
。wget FileZilla_3.50.0_x86_64-linux-gnu.tar.bz2
tar zxvf FileZilla_3.50.0_x86_64-linux-gnu.tar.bz2
cd FileZilla3/bin
./filezilla
(可选)/usr/share/applications/filezilla.desktop
文件,添加以下内容并保存:[Desktop Entry]
Encoding UTF-8
Name FileZilla
Comment Ftp Client
Exec /home/your-username/FileZilla/bin/filezilla
Icon /home/your-username/FileZilla/share/pixmaps/filezilla.png
Terminal false
Type Application
Categories Network;Application; StartupNotify
sudo apt install vsftpd
sudo nano /etc/vsftpd.conf
#
):local_enable=YES
write_enable=YES
sudo systemctl restart vsftpd
确保你的防火墙允许FTP流量。如果你使用的是 ufw
,可以这样配置:
sudo ufw allow 21/tcp
sudo ufw allow 50000:50100/tcp
sudo ufw reload
通过以上步骤,你应该能够在Linux系统上成功设置并运行FileZilla FTP站点。请确保您拥有正确的FTP服务器地址、用户名和密码。