Ubuntu 安装最新版 FileZilla Client

软件应用 浏览 3 评论 0

Ubuntu 通过 apt install 的版本不是最新的,需要安装最新版本只能官方下载。

下载最新版本

官方网站:https://filezilla-project.org/download.php 下载最新 64 位版本 FileZilla_x.xx.x_x86_64-linux-gnu.tar.xz

软件安装运行

sudo tar -xJf FileZilla_3.70.5_x86_64-linux-gnu.tar.xz -C /opt  # 解压到 opt
/opt/FileZilla3/bin/filezilla                                   # 运行软件
sudo ln -s /opt/FileZilla3/bin/filezilla /usr/local/bin/filezilla  # 全局命令(终端直接打 filezilla)

桌面快捷图标

sudo nano /usr/share/applications/filezilla.desktop

复制 Ctrl+O → 回车保存 → Ctrl+X 退出

[Desktop Entry]
Name=FileZilla
Comment=FTP/SFTP Client
Exec=/opt/FileZilla3/bin/filezilla
Icon=/opt/FileZilla3/share/icons/hicolor/48x48/apps/filezilla.png
Terminal=false
Type=Application
Categories=Network;

加权限

sudo chmod +x /usr/share/applications/filezilla.desktop

更新

sudo update-desktop-database

删除软件

sudo rm -rf /opt/FileZilla3
sudo rm /usr/local/bin/filezilla
sudo rm /usr/share/applications/filezilla.desktop
0
分享

评论

还没有评论,快来抢沙发吧!