博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux上的多连接多部分文件下载工具
阅读量:2518 次
发布时间:2019-05-11

本文共 709 字,大约阅读时间需要 2 分钟。

Is there any good multi-connection multi-part file downloading on ? wget is great but can only make 1 connection for 1 file. Sometimes, it is too slow on some networks.

上是否有任何好的多连接多部分文件下载 ? wget很棒,但只能为1个文件建立1个连接。 有时,在某些网络上它太慢了。

I use which supportsmMulti-connection download.

我使用支持 -connection下载的 。

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 :

试试这个 :

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
Answered by Eric Z Ma.
埃里克·马(Eric Z Ma)回答。

翻译自:

转载地址:http://mplwd.baihongyu.com/

你可能感兴趣的文章
Centos命令和Shell脚本问题集合
查看>>
LeetCode 234. Palindrome Linked List
查看>>
编译HBase1.0.0-cdh5.4.2版本
查看>>
结构体指针
查看>>
迭代器
查看>>
(转)HTTP协议详解
查看>>
Food HDU - 4292 (结点容量 拆点) Dinic
查看>>
Ubuntu安装Sun JDK及如何设置默认java JDK
查看>>
[经典算法] 排列组合-N元素集合的M元素子集
查看>>
Codeforces 279D The Minimum Number of Variables 状压dp
查看>>
打分排序系统漫谈2 - 点赞量?点赞率?! 置信区间!
查看>>
TCP中间件_java_server
查看>>
NS2队列管理机制(转载)
查看>>
valgrind检测linux程序内存泄露
查看>>
改变服务器sshd 的22的端口
查看>>
C++下遍历文件夹
查看>>
23种设计模式
查看>>
GridView 多行列表展示,item宽度设置无效的原因
查看>>
用户态监控网络接口up、down事件
查看>>
【Java学习笔记之七】java函数的语法规则总结
查看>>