In this editorial, we take a look at a great and powerful utility called apt-fast
that you can use to speed up downloading packages by APT or Aptitude.
apt-fast is an open-source shell script wrapper for the popular APT and Aptitude package managing tools that helps to speed the downloading of packages on Debian systems.
It’s main function is to remarkably speed up the downloading of packages by apt-get or aptitude by downloading packages in parallel, with numerous connections per package.
Read some of the following articles, that discusses about APT and Aptitude along with their usage with examples:
- What’s Difference Between APT and Aptitude
- 25 Useful Commands of apt-get for Package Management
- 15 Useful APT Commands for Package Management
- Learn Package Management with Aptitude in Ubuntu
Requirement for running apt-fast utility, is to have aria2c or axel download managers.
- How to Install Aria2 Command-Line Download Manager
- How to Install Axel to Speed Up FTP/HTTP Downloads
How to Install apt-fast on Ubuntu 16.04-14.04 and Linux Mint 18/17.x
Firstly add the the PPA for apt-fast package as follows and then update your system.
$ sudo add-apt-repository ppa:saiarcot895/myppa $ sudo apt-get update
Thereafter, run the command below to install apt-fast tool:
$ sudo apt-get -y install apt-fast
During the apt-fast installation process, you will be prompted to perform some package configuration as follows.
In the screen below, you can set the number of connections allowed, remember, you can also configure it later in the apt-fast configuration file using the _MAXNUM
directive.

Next, you can also choose to suppress the apt-fast confirmation message every time you want to install a package. But leaving the default value is okay, therefore, choose <No>
and hit Enter to advance.

How to Use apt-fast?
After successfully installing apt-fast, simply use it the same way you run apt
or aptitude
commands.
The apt-fast configuration file is: /etc/apt-fast.conf
, you can further increase your download speeds by adding multiple mirrors and distribute load, make sure to add nearest mirrors.
Official mirror lists for Debian and Ubuntu/Linux Mint:
You can add them to whitespace and comma separated mirrors in the configuration file as follows:
For Debian
MIRRORS=( 'http://ftp.debian.org/debian, http://ftp2.de.debian.org/debian, http://ftp.de.debian.org/debian, ftp://ftp.uni-kl.de/debian' )
For Ubuntu/Linux Mint
MIRRORS=( 'http://archive.ubuntu.com/ubuntu, http://de.archive.ubuntu.com/ubuntu, http://ftp.halifax.rwth-aachen.de/ubuntu, http://ftp.uni-kl.de/pub/linux/ubuntu, http://mirror.informatik.uni-mannheim.de/pub/linux/distributions/ubuntu/' )
Important: To use mirrors in /etc/apt/sources.list or /etc/apt/sources.list.d/, you also need to add them to /etc/apt-fast.conf as well.
$ sudo vi /etc/apt-fast.conf

You also view the man page for apt-fast and apt-fast.conf as follows:
$ man apt-fast $ man apt-fast.conf
Let us dive into how apt-fast works by installing git
package as follows:
$ sudo apt-fast install git
You will be asked to confirm whether to download package or not, enter Yes/Y
to continue. The image below shows apt-fast working – downloading git
package using several connections.

After downloading the git
package, you will again be asked to install it by entering Yes/Y
and press Enter to proceed with the installation process.
Some important apt-fast commands:
$ sudo apt-fast update $ sudo apt-fast upgrade OR $ sudo apt-fast dist-update
In case a downloading process stops or breaks, run the command below:
$ sudo apt-fast clean
For more information, visit the apt-fast Github repository.
Conclusion
Here, we reviewed a powerful shell-script front-end for apt and aptitude that helps you to boost download speeds while installing packages on your Debian-based systems such as Ubuntu, Linux Mint and many more.
What is you experience with apt-fast? Do you think it works well for you? Then give us your thoughts plus any other questions you would like to ask, via the feedback form below.
sudo apt-fast dist-upGRADE not UPDATE
I discovered this wrapper about a year ago. Any time I install Linux, I then install this. It should be put into the mainline repos. It is a must have.
@Joe
Yes, i absolutely agree with you, this is a great front-end for apt/apt-get/aptitude for Debian systems. Its efficient and reliable as well, including it in mainline repos would be so useful.
Thanks a lot for very helpful and detailed article, I Just want to know something . See, in windows IDM i can use multithreaded downloading and set threads upto 32 max, so each file to be downloaded gets divided into 32 parts and every thread downloads its part simultaneously.
I want to use apt-fast for the same purpose, can you please guide me, how can i configure concurrent downloading threads or segments in apt-fast configurations ?? is it Max Number Of Connections or something else.
Sorry for my poor communication skills hope you understand what i want to know and help me, thanks a lot again
Regards
@Junaid
Yes, it is the Max Number of Connections
apt-fast uses more than one connection to download a single package, which i suppose is similar to the multithreaded downloading. Therefore, you need to set the Max Number of Connections to achieve something similar.
It cut my update time significantly. Running Mint 17.2 (Mate). Thanks.
@Larry H
Good to know that it worked well for you, thanks for getting back to us.
thank you, I am use Ubuntu 16.04
@Allan
Welcome, above all, thanks for your feedback.