Is it possible to accelerate downloads in Synaptic Manager?

In Terminal that is possible by using apt-fast (using Axel).

But is it possible to put to work Axel and apt-fast in Synaptic Manager?

I found this suggestion, but I would not attempt it without the assistance from Ask Ubuntu :)


The method in the forum thread (tricking Synaptic by renaming apt-fast to apt-get and vice versa) will not work with Ubuntu, because our Synaptic does not use apt-get. I've verified this by quickly looking at the source code, and also by moving /usr/bin/apt-get elsewhere -- Synaptic still works fine. Synaptic does reuse bits of code from apt-get, and it does use the actual dpkg binaries to perform installation, configuration, etc., but it does not use the apt-get binary.

Alternatives

  • I would first recommend trying to find a fast, "networkically"-close mirror to try to max out speed. Please see the command-line method in this answer for a very reliable way to do so.

  • The second is to mark packages to install in Synaptic and then generate a download script from the File menu. This is a bash script with multiple wget -c entries, one for each deb file. Simply use sed -i -e 's/wget -c/axel/g' scriptname to use axel instead, run the script in an empty directory, and then do sudo dpkg -i *.deb.


Personally, I would do what LnxSlck said in his comment, set up a VM with Ubuntu and test there. That would allow you to test without any real issue. If it breaks, don't do it. If it works, you can be semi-safe in the idea that it will work correctly without any true incident.

I tend to do this with every "test" i do with Ubuntu, so its a good practice if you dont want to explode your installation by accident.