By Default, Ubuntu uses apt-get to install packages and updates. Apt-get is a good tool but you can get much faster download speeds using Apt-Fast when downloading and updating your Ubuntu box.

Apt-Fast is a script created by Matt Parnell that allows for up to 26x faster downloads. So how does it work? It is a script which uses Axel, a command line application which accelerates HTTP/FTP downloads. Well, the magic behind this is simple; it opens multiple connections to the server or multiple servers to download from. So basically it works like torrent client, downloading different pieces of the same file from different places simultaneously. Thus, reducing/eliminating the effect of server being overloaded.

To get Apt-Fast on your system, download the file “apt-fast.sh” from the link at the bottom. Once downloaded, open a terminal window to continue from there. Start by navigating to the file’s directory and rename it using this easy command:

mv apt-fast.sh apt-fast

Now you need to move the file to “/usr/bin” to make it executable. Do so by using:

mv apt-fast /usr/bin/

One last command to add execution permission to the file:

chmod +x apt-fast

And we are done. Apt-fast is now installed and ready to run. For all future installing and updating operations substitute “apt-get” with “apt-fast” in the command line. For example:

apt-get install chromium

Will be:

apt-fast install chromium

And:

apt-get update

Will be:

apt-fast update

Enjoy your supercharged downloading speeds and don’t forget to come back for more interesting Ubuntu stuff.


Download apt-fast [via Mattparnell]