如何通过命令行在 Linux 18.04 上安装 Filezilla,请帮忙。
sudo sh -c 'echo "deb http://archive.getdeb.net/ubuntu xenial-getdeb apps" >> /etc/apt/sources.list.d/getdeb.list'
wget -q -O - http://archive.getdeb.net/getdeb-archive.key | sudo apt-key add -
sudo apt update
sudo apt install filezilla
运行 sudo apt-get update 时出现此错误
Hit:8 https://download.sublimetext.com apt/stable/ InRelease
Err:3 http://www.getdeb.net/ubuntu yakkety-getdeb InRelease
403 Forbidden [IP: 143.95.32.90 80]
Err:9 http://ppa.launchpad.net/adabbas/1stppa/ubuntu bionic Release
404 Not Found [IP: 91.189.95.83 80]
E: Failed to fetch http://archive.getdeb.net/ubuntu/dists/yakkety-getdeb/InRelease 403 Forbidden [IP: 143.95.32.90 80]
E: The repository 'http://ppa.launchpad.net/n-muench/programs-ppa/ubuntu bionic Release' does not have a Release file.
W: Target Translations (apps/i18n/Translation-en) is configured multiple times in /etc/apt/sources.list.d/getdeb.list:1 and /etc/apt/sources.list.d/getdeb.list:2
答案1
FileZilla 默认情况下未安装,要在 Ubuntu 18.04 上安装 FileZilla,请打开终端并执行:
sudo apt-get update
sudo apt-get install filezilla
使用 FileZilla 连接到 FTP 服务器
要连接到 FTP 服务器,请打开 FileZilla FTP 客户端并在主机字段中输入 FTP 服务器的域名或 IP 地址。提供 FTP 用户名和密码以及 FTP 端口(如果您的服务器使用默认 FTP 端口 21,则可以将端口留空),然后单击快速连接按钮。
答案2
我建议从 Ubuntu 18.04.1 LTS 中的存储库“universe”进行全新安装。您可能必须删除所有带有“xenial”、“yakkety”或任何其他先前版本气味的内容,以保持 18.04 别名“bionic”清洁。
在已安装的系统中,“universe”已经处于活动状态,但在标准 Ubuntu 的实时或持续实时系统中,您必须运行
sudo add-apt-repository universe
然后您就可以安装filezilla
许多其他程序包
sudo apt update
sudo apt install filezilla
我现在测试了(在持久实时的 Ubuntu 18.04.1 LTS 中),它可以工作。我得到了一个可用的版本filezilla
。