
Originally Posted by
ebudmada
Thanks !
it is working !
is it possible to start multiple parrallel download?
Thanks
Of course, as many as you want!
Remember that, with this method, wget will download by using only one connection per file.
I've experimented another download utility called "aria2c" that supports multiple connections for the same file just by using the following syntax:
Code:
aria2c -x NUMBER_OF_CHUNKS --load-cookies=PATH_TO_LYNX_COOKIES --file-allocation=none "DOWNLOAD_URL"
an example:
Code:
aria2c -x 4 --load-cookies=/media/sdh1/home/shutaroz/lynx_cookies --file-allocation=none "http://www.filesonic.com/file/1844556571"
will download the file with 4 concurrent connections allowing blazing fast speed!
Give it a try!
Shu