PDA

View Full Version : Linux Best Download manager for Ubuntu



soldier83
11-07-2008, 11:42 PM
Hi, guys . I want to know ur opinion on best download manager for ubuntu. i have tried some. but none of them are what I am looking for. Any suggestions ? thanks

ninefold
11-09-2008, 12:14 AM
Do you mean just for common net downloads? Try gwget. It's the only one I have ever used but don't use one anymore really.

Try searching the Ubuntu forums for recommendations to.

soldier83
11-10-2008, 09:29 AM
Thanks for replying. I am looking for IDM like download manager . I don't know if there is any for that kind of functions. I have tried Wget before. I find firefox down loader better than Wget.

rippinitup4fun
11-11-2008, 09:22 PM
If you are talking about a manager for downloading from sites like rapidshare, megauplaod, etc... Then jdownloader is good.

http://jdownloader.org/home

20legend
01-17-2009, 12:09 PM
Thanks for replying. I am looking for IDM like download manager . I don't know if there is any for that kind of functions. I have tried Wget before. I find firefox down loader better than Wget.

lol i use idm too in windows and linux like you

cow800
02-12-2009, 04:27 PM
http://www.downthemall.net/ is good. it comes as an add on for firefox.

soldier83
03-10-2009, 03:09 AM
http://www.downthemall.net/ is good. it comes as an add on for firefox.

Thanks for replying but for now I am going to stick with built in Firefox downloader. No download manager is close enough to IDM.

walkman79
03-10-2009, 03:28 AM
http://www.downthemall.net/ is good. it comes as an add on for firefox.


Yeah, I use DTA a lot. It's one of the best add ons for firefox indeed.

sparcode
03-23-2009, 02:52 PM
I use "axel" download accelerator.
Axel tries to accelerate downloads by using multiple connections (possibly to multiple servers) for one download. Because of its size, it might be very useful on bootdisks or other small systems as a wget replacement.
_http://freshmeat.net/projects/axel/

Maybe not so good for "manager" but realy good for speed.
axel is a command line, but you can use "zenity" to make simple gui, like this:

#!/bin/sh
url=`zenity --title="Axel GUI" --text="Enter url" --entry`
user=`zenity --title="Axel GUI" --text="Enter username" --entry`
pass=`zenity --title="Axel GUI" --text="Enter password" --entry`
axel --num-connections=8 http://"$user":"$pass"@"$url"