在Linux系统上安装FileZilla插件通常有以下几种方法:
sudo apt update
sudo apt install filezilla
filezilla
启动。访问FileZilla官方下载页面,下载适用于Linux的安装包(例如 FileZilla_3.65.0_x86_64-linux-gnu.tar.bz2
)。
解压下载的压缩包:
tar zxvf FileZilla_3.65.0_x86_64-linux-gnu.tar.bz2
cd FileZilla_3.65.0_x86_64-linux-gnu
sudo ./filezilla
/usr/share/applications/filezilla.desktop
文件,添加以下内容:[Desktop Entry]
Encoding UTF-8
Name FileZilla
Comment Ftp Client
Exec /home/yourusername/FileZilla_3.65.0_x86_64-linux-gnu/bin/filezilla
Icon /home/yourusername/FileZilla_3.65.0_x86_64-linux-gnu/share/pixmaps/filezilla.png
Terminal false
Type Application
Categories Application ; Network ; StartupNotify
sudo apt install flatpak # Debian/Ubuntu
sudo dnf install flatpak # Fedora
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub org.filezillaproject.Filezilla
flatpak run org.filezillaproject.Filezilla
命令启动。sudo apt build-dep filezilla # Debian/Ubuntu
sudo dnf builddep filezilla # Fedora
wget https://download.filezilla-project.org/client/FileZilla_3.66.4_src.tar.bz2
tar -xvjf FileZilla_3.66.4_src.tar.bz2
cd filezilla-3.66.4
mkdir build
cd build
cmake ..
make
sudo make install
filezilla