如何使用多个连接以apt-fast在Ubuntu Linux 16.04 LTS服务器上加速apt-get
时间:2020-01-09 10:39:45 来源:igfitidea点击:
如何在Ubuntu Linux 16.04或14.04 LTS服务器或Ubuntu 17.04桌面系统上加快apt-get或apt命令从多个存储库下载软件包的速度?
如何在Debian Linux服务器上使用apt-fast命令?
您需要使用apt-fast shell脚本包装器。
它应通过下载每个软件包具有多个连接的软件包来加快apt-get命令/apt命令和aptitude命令的速度。
所有软件包均同时并行下载。
它使用aria2c作为默认下载加速器。
安装PPA的常用软件属性
您需要安装以下软件包才能在Ubuntu服务器上使用PPA:
$ sudo apt-get install software-properties-common
安装apt-fast工具
在Ubuntu Linux 14.04和更高版本上执行以下命令:
$ sudo add-apt-repository ppa:saiarcot895/myppa
更新您的仓库:
$ sudo apt-get update
或者
$ sudo apt update
安装apt-fast shell包装器:
$ sudo apt-get -y install apt-fast
或者
$ sudo apt -y install apt-fast
输出示例:
Reading package lists... Done Building dependency tree Reading state information... Done The following additional packages will be installed: aria2 libc-ares2 libssh2-1 Suggested packages: aptitude The following NEW packages will be installed: apt-fast aria2 libc-ares2 libssh2-1 0 upgraded, 4 newly installed, 0 to remove and 0 not upgraded. Need to get 1,282 kB of archives. After this operation, 4,786 kB of additional disk space will be used. Do you want to continue? [Y/n] y Get:1 http://01.archive.ubuntu.com/ubuntu xenial/universe amd64 libssh2-1 amd64 1.5.0-2 [70.3 kB] Get:2 http://ppa.launchpad.net/saiarcot895/myppa/ubuntu xenial/main amd64 apt-fast all 1.8.3~137+git7b72bb7-0ubuntu1~ppa3~xenial1 [34.4 kB] Get:3 http://01.archive.ubuntu.com/ubuntu xenial/main amd64 libc-ares2 amd64 1.10.0-3 [33.9 kB] Get:4 http://01.archive.ubuntu.com/ubuntu xenial/universe amd64 aria2 amd64 1.19.0-1build1 [1,143 kB] 54% [4 aria2 486 kB/1,143 kB 42%] 20.4 kB/s 32s
配置apt-fast
系统将提示您设置最大连接数(必须输入5到16之间的值)
您也可以直接编辑设置:
$ sudo vi /etc/apt-fast.conf
请注意,此工具不适用于慢速网络连接;它用于快速的网络连接。
如果您与Internet的连接速度较慢,则不会从此工具中受益。
关于Ubuntu Linux 17.04 Zesty和Debian Linux的说明
执行以下命令以在Ubuntu 17.04或基于Debian Linux的系统上安装相同的命令:
$ cd /tmp $ wget https://git.io/vokNn $ more vokNn $ sudo bash vokNn
如何使用apt-fast命令?
语法为:
apt-fast command apt-fast [options] command
使用apt-fast检索软件包的新列表
sudo apt-fast update
使用apt-fast执行升级
sudo apt-fast upgrade
要执行发行版升级(发布或强制内核升级),请执行:
$ sudo apt-fast dist-upgrade
安装新软件包
语法为:
sudo apt-fast install pkg
例如,安装nginx软件包,执行:
$ sudo apt-fast install nginx
删除软件包
$ sudo apt-fast remove pkg $ sudo apt-fast remove nginx
也要删除软件包及其配置文件
$ sudo apt-fast purge pkg $ sudo apt-fast purge nginx
要自动删除所有未使用的软件包,请执行:
$ sudo apt-fast autoremove
下载源档案
$ sudo apt-fast source pkgNameHere
删除下载的存档文件
$ sudo apt-fast clean
删除旧的下载存档文件
$ sudo apt-fast autoclean
验证没有损坏的依赖项
$ sudo apt-fast check
将二进制包下载到当前目录
$ sudo apt-fast download pkgNameHere $ sudo apt-fast download nginx
输出示例:
[#7bee0c 0B/0B CN:1 DL:0B] 07/26 15:35:42 [NOTICE] Verification finished successfully. file=/home/Hyman/nginx_1.10.0-0ubuntu0.16.04.2_all.deb 07/26 15:35:42 [NOTICE] Download complete: /home/Hyman/nginx_1.10.0-0ubuntu0.16.04.2_all.deb Download Results: gid |stat|avg speed |path/URI ======+====+===========+======================================================= 7bee0c|OK | n/a|/home/Hyman/nginx_1.10.0-0ubuntu0.16.04.2_all.deb Status Legend: (OK):download completed.
下载并显示给定软件包的变更日志
$ sudo apt-fast changelog pkgNameHere $ sudo apt-fast changelog nginx