Results 1 to 3 of 3
hey so im a new to linux i know basics and i am curious how i can run multiple wgets at once... every time i start 1 and then try ...
- 11-29-2011 #1Just Joined!
- Join Date
- Nov 2011
- Posts
- 1
Wgetting
hey so im a new to linux i know basics and i am curious how i can run multiple wgets at once... every time i start 1 and then try to start another it just cancels the first one..
thanks
- 11-29-2011 #2
Hello and Welcome!
wget isn't capable of opening multiple connections at the same time, but there are two options that I can think of that might help.
First would be to use a program like aria2. Similar to a BitTorrent client.
I also came across this: wget download with multiple connection simultaneously - Stack OverflowJay
New users, read this first.
New Member FAQ
Registered Linux User #463940
I do not respond to Private Messages asking for Linux help. Please, keep it on the public boards.
- 11-30-2011 #3Just Joined!
- Join Date
- Jul 2008
- Posts
- 81
Puts the wget process in the background, with log output going to a file wget-log.Code:wget -b
You can start another wget in the background, and its log output will go to wget-log.1
And so on.
Log output can be read with a command like
When you get tired of reading one log process, you can do ctrl-C followed byCode:tail -f wget-log
I don't usually run more than 3 wget processes at a time, because it tends to saturate my download capability.Code:tail -f wget-log.1


Reply With Quote
