要在Ubuntu上更新FileZilla到最新版本,您可以按照以下步骤操作:
Ctrl+Alt+T
打开)。software-properties-common
包,这个包包含添加PPA的功能:sudo apt-get install software-properties-common
sudo add-apt-repository ppa:n-muench/programs-ppa
sudo apt-get update
sudo apt-get install filezilla
如果您想要安装特定版本的FileZilla,可以指定版本号,例如:sudo apt-get install filezilla=3.6.0-2
.tar.bz2
安装包。.tar.bz2
文件:tar -xvjf FileZilla-x.x.x-linux-x86_64.tar.bz2
将x.x.x
替换为实际下载的版本号。filezilla
的文件夹,您可以将其重命名为filezilla-bin
或任何您喜欢的名称。/opt
:sudo mv filezilla-bin /opt/filezilla
filezilla.desktop
的文件,放置在~/.local/share/applications/
目录下:nano ~/.local/share/applications/filezilla.desktop
将以下内容粘贴到文件中:[Desktop Entry]
Name=FileZilla
Comment=FTP Client
Exec=/opt/filezilla/filezilla
Icon=/opt/filezilla/icons/filezilla.png
Terminal=false
Type=Application
Categories=Network;FileTransfer;
保存并退出编辑器。filezilla.desktop
文件赋予执行权限:chmod +x ~/.local/share/applications/filezilla.desktop
请注意,下载和安装来自非官方源的软件可能存在安全风险,请确保来源的可靠性。如果使用官方PPA,则风险较低。