服务器之家:专注于服务器技术及软件下载分享
分类导航

Linux|Centos|Ubuntu|系统进程|Fedora|注册表|Bios|Solaris|Windows7|Windows10|Windows11|windows server|

服务器之家 - 服务器系统 - Linux - Ubuntu 16.04 使用 apt-fast 提高效率

Ubuntu 16.04 使用 apt-fast 提高效率

2023-10-13 20:50未知服务器之家 Linux

导读 使用 apt-fast封装器,通过多个连接同时下载一个包来加速 apt-get/apt 和 aptitude,进而使得自己的工作效率得到提升。 如何加速在 Ubuntu16.04 或者 14.04 LTS 上从多个仓库中下载包的 apt-get 或者 apt?你需要使用到 apt-fast 这个 shell 封装

导读 使用 apt-fast 封装器,通过多个连接同时下载一个包来加速 apt-get/apt 和 aptitude ,进而使得自己的工作效率得到提升。

如何加速在 Ubuntu 16.04 或者 14.04 LTS 上从多个仓库中下载包的 apt-get 或者 apt ?你需要使用到 apt-fast 这个 shell 封装器,它会通过多个连接同时下载一个包来加速 apt-get/apt 和 aptitude 命令并且所有的包都会同时下载,另外它使用 aria2c 作为默认的下载加速器。

安装 apt-fast 工具

在 Ubuntu Linux 14.04 或者之后的版本尝试下面的命令:

$sudoadd-apt-repositoryppa:saiarcot895/myppa

Ubuntu 16.04 使用 apt-fast 提高效率

更新你的仓库:

$sudoapt-getupdate

或者

$sudoaptupdate

Ubuntu 16.04 使用 apt-fast 提高效率

安装 apt-fast:

$sudoapt-get-yinstallapt-fast

或者

$sudoapt-yinstallapt-fast
Readingpackagelists...Done
Buildingdependencytree
Readingstateinformation...Done
Thefollowingadditionalpackageswillbeinstalled:
aria2libc-ares2libssh2-1
Suggestedpackages:
aptitude
ThefollowingNEWpackageswillbeinstalled:
apt-fastaria2libc-ares2libssh2-1
0upgraded,4newlyinstalled,0toremoveand0notupgraded.
Needtoget1,282kBofarchives.
Afterthisoperation,4,786kBofadditionaldiskspacewillbeused.
Doyouwanttocontinue?[Y/n]y
Get:1[70.3kB]
Get:2~137+git7b72bb7-0ubuntu1~ppa3~xenial1[34.4kB]
Get:3[33.9kB]
Get:4[1,143kB]
54%[4aria2486kB/1,143kB42%]20.4kB/s32s
配置 apt-fast

你将会得到下面的提示(必须输入一个5到16的数值):

Ubuntu 16.04 使用 apt-fast 提高效率

并且

Ubuntu 16.04 使用 apt-fast 提高效率

你也可以直接编辑设置:

$sudovi/etc/apt-fast.conf

请注意这个工具并不是给慢速网络连接的,它是给快速网络连接的。如果你的网速慢,那么你将无法从这个工具中得到好处。

该怎么使用 apt-fast 命令?

语法是:

$apt-fastcommand
$apt-fast[options]command

使用 apt-fast 取回新的包列表:

$sudoapt-fastupdate

使用 apt-fast 执行升级:

$sudoapt-fastupgrade

执行发行版升级(发布或者强制内核升级),输入:

$sudoapt-fastdist-upgrade

安装新的包

$sudoapt-fastinstallpkg
比如要安装nginx,输入:
$sudoapt-fastinstallnginx

Ubuntu 16.04 使用 apt-fast 提高效率

删除包:

$sudoapt-fastremovepkg
$sudoapt-fastremovenginx

删除包和它的配置文件:

$sudoapt-fastpurgepkg
$sudoapt-fastpurgenginx

删除所有未使用的包:

$sudoapt-fastautoremove

下载源码包:

$sudoapt-fastsourcepkgNameHere

清理下载的文件:

$sudoapt-fastclean

清理旧的下载文件:

$sudoapt-fastautoclean

验证没有破坏的依赖:

$sudoapt-fastcheck

下载二进制包到当前目录:

$sudoapt-fastdownloadpkgNameHere
$sudoapt-fastdownloadnginx
[#7bee0c0B/0BCN:1DL:0B]
07/2615:35:42[NOTICE]Verificationfinishedsuccessfully.file=/home/vivek/nginx_1.10.0-0ubuntu0.16.04.2_all.deb
07/2615:35:42[NOTICE]Downloadcomplete:/home/vivek/nginx_1.10.0-0ubuntu0.16.04.2_all.deb
DownloadResults:
gid|stat|avgspeed|path/URI
======+====+===========+=======================================================
7bee0c|OK|n/a|/home/vivek/nginx_1.10.0-0ubuntu0.16.04.2_all.deb
StatusLegend:
(OK):downloadcompleted.

下载并显示指定包的 changelog:

$sudoapt-fastchangelogpkgNameHere
$sudoapt-fastchangelognginx

原文来自:


延伸 · 阅读

精彩推荐