我尝试在我的 Ubuntu 12.10 中安装 apt-fast 但是显示以下错误:
the following packages have unmet dependencies
apt-fast : depends: aria2 but is not going to install
build essential : depends : g++(>=4.4.4.3) but is not going to be installed
depends: dpkg-dev (>=1.13.5) but is not going to be installed"
请帮助我,因为这些错误随处可见 - 无论我想安装什么。
答案1
只需在终端中执行以下操作即可安装 Apt-fast。
sudo add-apt-repository ppa:apt-fast/stable
sudo apt-get update
sudo apt-get install apt-fast
之后,会弹出一个提示,要求您在 apt-get 和 aptitude 之间进行选择。再次弹出另一个提示,要求您在 Axel 和 Aria2c(下载管理器)之间进行选择。选择您喜欢的,就大功告成了。
现在,只需将命令中的 apt-get 替换为 apt-fast。示例如下:
sudo apt-fast install chromium-browser
sudo apt-fast upgrade
完成。享受增加的 apt-get 下载速度。
这应该可以工作,因为它是稳定版本,您能否发布您在终端中输入的内容?
答案2
http://www.iasptk.com/ubuntu-ppa/17226-ubuntu-1204-lts-apt-fast-a-shellscript-wrapper-for-apt-get
apt-fast 是 apt-get 的 shellscript 包装器,它可以通过并行下载软件包(每个软件包有多个连接)来大幅缩短 apt 下载时间。它使用 axel 或 aria2c 作为下载管理器。
一旦您设置了 apt-fast,您就可以像 apt-get 一样使用它。
sudo apt-fast update sudo apt-fast dist-upgrade or sudo apt-fast upgrade sudo apt-fast install packagename
在 Ubuntu 中安装并设置 apt-fast
打开一个终端(Ctrl+Alt+T)窗口并执行以下命令:
sudo add-apt-repository ppa:apt-fast/stable sudo apt-get update sudo apt-get install apt-fast axel
安装后,配置 apt-fast 使用 axel 作为下载管理器:编辑配置文件:
sudo gedit /etc/apt-fast.conf
删除“_DOWNLOADER”行前面的#并保存文件
# axel: _DOWNLOADER='cat /tmp/apt-fast.list | xargs -l1 axel -n ${_MAXNUM} -a' # axel
现在,运行此命令,然后你可以将 apt-fast 用作 apt-get
sudo apt-fast update