aria2c:即使有多个连接,下载速度也很慢

wik*_*iki 4 aria2

版本:aria2-1.19.3-win-64bit-build1

我有一个文件的 url (80mb),使用其他下载工具,我可以有多达 32 个同时连接到服务器,并以 2mb/s 的速度下载文件,但使用 aria2c,它的速度始终低于 100kb/s。怎么了?我还应该使用其他开关吗?

我正在使用什么:

aria2c -x10 http://abc.exe
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

Ale*_*nov 7

从你的截图来看,它使用了4段来下载。

您可以使用选项增加段数-s

如果您想使用 16 个同时连接进行下载,请尝试

aria2c -s16 -x16 http://abc.exe
Run Code Online (Sandbox Code Playgroud)

  • 现在 -x 的上限应该为 16 (2认同)
  • `-s16 -x16` 对我来说非常有用 (2认同)