Skip to content Skip to main navigation Skip to footer

Ubuntu 16.04系统下使用apt-fast取代apt-get来加速apt

本文将会讲述如何在Ubuntu 16.04 LTS 系统里安装并使用apt-fast 来取代apt-get 工具加速apt 下载并安装软件包。
Apt-fast会通过axel的多线程连接来下载软件包,这样会比ap-get 下载速度提高很多。

1# 为了使用PPA 个人软件包集,需要先安装software-properties-common包

执行下面的命令:

$ sudo apt-get install software-properties-common

命令输出如下:

正在读取软件包列表... 完成
 正在分析软件包的依赖关系树
 正在读取状态信息... 完成
 software-properties-common 已经是最新版 (0.96.20.7)。
 下列软件包是自动安装的并且现在不需要了:
 gyp javascript-common libjs-inherits libjs-jquery libjs-node-uuid libjs-underscore libssl-dev libssl-doc libuv1-dev python-pkg-resources zlib1g-dev
 使用'sudo apt autoremove'来卸载它(它们)。
 升级了 0 个软件包,新安装了 0 个软件包,要卸载 0 个软件包,有 3 个软件包未被升级。

2# 安装apt-fast 工具

在ubunt 11.04到13.10 版本上,执行下面的命令:

$ sudo apt-get install axel aria2
 $ sudo apt-add-repository ppa:apt-fast/stable
 $ sudo apt-get update
 $ sudo apt-get install apt-fast

对于ubuntu 14.04 到16.04 版本上,执行下面的命令:

sudo add-apt-repository ppa:saiarcot895/myppa
 sudo apt-get update
 sudo apt-get -y install apt-fast

3# 使用apt-fast 安装软件包

$ sudo apt-fast install 软件包名

例如:

$ sudo apt-fast install vim

4# 使用apt-fast 删除软件包

$ sudo apt-fast remove 软件包
 $ sudo apt-fast remove vim

使用apt-fast 下载源码包

$ sudo apt-fast source 软件包名

使用apt-fast 下载二进制软件包

$ sudo apt-fast download 软件报名
 $ sudo apt-fast download firefox

更多关于apt-fast的信息可以访问其官方网站:https://github.com/ilikenwf/apt-fast/