本文以deepin linux系统为例,说明把apt命令换成apt-fast命令能达到极速下载目的,可以突破了单线带宽限制。
前言 众所周知,某些国内apt源的速度十分不佳,更不用说国外的源了,为了解决这一问题,找到了apt-fast这一多线程下载利器,apt-fast将aria2与apt(apt-get、aptitude)结合,先是多线程请求deb,再用apt进行安装,可以从原本的100+kb/s加速到了700-800kb/s。参考使用apt命令:更新包索引/升级包/安装包/删除包/列表包/搜索包/包信息。 以上是基本介绍,以下是链接: Github地址:https://github.com/ilikenwf/apt-fast 下载直链(ustc mirror): https://launchpad.proxy.ustclug.org/apt-fast/stable/ubuntu/pool/main/a/apt-fast/apt-fast_1.9.9-1~ubuntu18.04.1_all.deb https://launchpad.proxy.ustclug.org/apt-fast/stable/ubuntu/pool/main/a/apt-fast/apt-fast_1.9.9-1~ubuntu20.04.1_all.deb 安装大概需要命令行安装(sudo dpkg -i xxx.deb),有4个配置的问题,第一个是问取代哪个(apt、apt-get、aptitude),我选的是apt,后面三个就直接回车了,更多配置可见Github项目页面。
相关安装说明 1、以下是安装apt-fast的PPA sudo add-apt-repository ppa:apt-fast/stable sudo apt-get update sudo apt-get -y install apt-fast 2、Debian及其衍生产品的安装说明 一些发行版,例如PCLinuxOS,在其存储库中包含apt-fast,但是,如果未像Debian或Kali Linux中那样包含PPA,则可以通过创建新文件/etc/apt/sources.list.d/apt-fast.list来手动添加PPA: deb http://ppa.launchpad.net/apt-fast/stable/ubuntu bionic main deb-src http://ppa.launchpad.net/apt-fast/stable/ubuntu bionic main 要安装apt-fast,请以root身份执行以下命令: apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A2166B8DE8BDC3367D1901C11EE2FF37CA8DA16B apt-get update apt-get install apt-fast 请注意,PPA版本bionic可能需要更新为新的Ubuntu LTS代号,以保持最新。 3、无交互安装 要在不进行交互的情况下安装apt-fast,请在将软件包源添加到sources.list后以root用户身份执行以下命令: DEBIAN_FRONTEND=noninteractive apt-get install -y apt-fast 要更新特定的配置值,请使用debconf命令行界面作为root用户,例如: echo debconf apt-fast/maxdownloads string 16 | debconf-set-selections echo debconf apt-fast/dlflag boolean true | debconf-set-selections echo debconf apt-fast/aptmanager string apt-get | debconf-set-selections
使用方法:将apt命令换成apt-fast既可 示例如下: 例如: `sudo apt install deepin-wine5` 转换成-> `sudo apt-fast install deepin-wine5` `sudo apt upgrade` 转换成-> `sudo apt-fast upgrade`
附:星火商店源apt-fast下载加速配置 先参考:在Deepin 20系统中下载及安装星火应用商店的方法。 请先确认你用的是https源: ``` sudo tee -a /etc/apt-fast.conf <<< "MIRRORS=('https://sucdn.jerrywang.top/','https://sucdn1.jerrywang.top/','https://sucdn2.jerrywang.top/','https://sucdn3.jerrywang.top/','https://sucdn4.jerrywang.top/','https://sucdn5.jerrywang.top/','https://dcstore.spark-app.store/')" ``` 注:用apt-fast抓取星火商店的软件包链接真的很好用。
相关主题 |