Ubuntu – What download managers are available for Ubuntu

download-managersoftware-recommendation

This question exists as it fills a specific criterion. While you are encouraged to help maintain its answers, please understand that "big list" questions are not generally allowed on Ask Ubuntu and will likely be closed per the FAQ. More information on the software-recommendation tag.

What download managers are available for Ubuntu? Can you provide the link as well?

Best Answer

I would recommend the wget command line utility which is absolutely awesome!

wget is a GNU free software package that is used for retrieving files over the web. If you have got it installed, then all you have to do is to get the download link and use wget to download it.

In order to get the download link, right click on whichever download you want in the firefox download manager. There will be an option ‘copy download link’. Click on it.

Then open a terminal and go to whichever folder you want the file downloaded to. Assuming it is in the Desktop, type the following command at the prompt:

$ wget <paste your download link here>

Now even if it gets stuck in the middle, you can resume from wherever it was interrupted by giving the option -c to wget. That is, the command will be like

$ wget -c <paste your download link here>

And there it continues beautifully.

Related Question