Is there any good multi-connection multi-part file downloading tools on Linux? wget
is great but can only make 1 connection for 1 file. Sometimes, it is too slow on some networks.
Linux上是否有任何好的多连接多部分文件下载工具 ? wget
很棒,但只能为1个文件建立1个连接。 有时,在某些网络上它太慢了。
I use aria2
which supportsmMulti-connection download.
我使用支持aria2
-connection下载的aria2
。
aria2 can download a file from multiple sources/protocols and tries to utilize your maximum download bandwidth. Really speeds up your download experience.
aria2可以从多个来源/协议下载文件,并尝试利用最大下载带宽。 真正加快了您的下载体验。
Try this command:
试试这个命令 :
aria2c -m 10 -s 10 -x 10
-d /path/to/dir/ -o file.name http://example.com/file.name
or
要么
aria2c -m 10 -s 10 -x 10
http://example.com/file.name
翻译自: https://www.systutorials.com/multi-connection-multi-part-file-downloading-tools-on-linux/