-
Notifications
You must be signed in to change notification settings - Fork 495
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Allow axel as a download agent #156
base: master
Are you sure you want to change the base?
Conversation
I've seen a few people request axel before, but I don't really see the benefit. All files are downloaded sequentially as they're needed, and that's just the nature of ievms, so the axel parallelism won't help anything. Additionally, curl is so ubiquitous it's nearly guaranteed to be installed already, reducing the dependency burden on the user. Am I missing something though? I appreciate the feedback regardless. |
The main advantage of axel is that it creates multiple connections to the
|
But the modern.IE servers do not support |
Perhaps there is some other way axel accelerates the download. I'm no On 06/21/2013 08:18 PM, Greg Thornton wrote:
|
#162 is also dependent on the server supporting range requests, and comments there imply that the modern.IE server has been updated and now does support them. Parallel downloading can provide a large speed increase to people with high latency connections. Another option to provide parallel downloading would be to download the different VMs in parallel. This wouldn't require range requests on the server, but would be limited to people who wanted to install more than one VM. |
Thanks for the heads up - I'll reassess the resume capabilities soon. |
can we at least set up our own CDN / mirror that supports ranges and resumes since MS doesn't seem to care about this feature? downloading these files is very very painful :( |
Fixes #108. Allows using
axel
as a download agent, when this is available. The download agent can still be forced when needed.