linux - Aria2 max-connection not working -
i installed aria2 (1.18.1) in ubuntu. problem can not increase download connection.
aria2c -x 10 http://mirror.sg.leaseweb.net/speedtest/100mb.bin [#fe34b4 2.1mib/95mib(2%) cn:4 dl:233kib eta:6m49s]
by default download 4 connection not 10 (as given). try sites, default 4 connection carried out while downloading
solved:-
there multiple options influence behavior:
--split -s maximum number of concurrent splits (connections) per download. defaults 5, unless changed it, max 5 connections single download no matter -x.
--min-split-size -k split should initiated when split bigger this. defaults 20m, meaning when download 100m file, time download split data retrieved means less less 100mb remaining, meaning 4 splits (5 splits create splits less 20mb).
there have it. please check out manual more information on various options.
$ aria2c -k 1m -s 10 -x 10 http://mirror.sg.leaseweb.net/speedtest/100mb.bin [#1325f1 7.4mib/95mib(7%) cn:10 dl:1.2mib eta:1m8s]
Comments
Post a Comment