在Linux系統下配置FileZilla可以分為兩個主要步驟:安裝FileZilla客戶端和配置FileZilla Server。以下是詳細的步驟指南:
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 vi /etc/vsftpd.conf
local_enable=YES
和 write_enable=YES
前面的 #
,保存并退出:sudo systemctl restart vsftpd
請注意,以上步驟可能會隨著FileZilla版本的更新而有所變化,建議參考FileZilla官方網站的最新文檔進行配置。