29
Slow downloading on corporate proxies? Try aria2!
This is for if you have troubles downloading large files while on a company network, or want to download files faster using Linux or Mac.
1). Download
aria2
brew install aria2
https://aria2.github.io/

2).
cd
to your downloads directory.3). Run the following command:
aria2c --file-allocation=none -c -x 10 -s 10 $URL
4). Replace $URL with the download URL of the file you are trying to pull.
aria2c
:
The download was much quicker due to multi-threaded downloads! 😄
Credit to Aria2 for an awesome downloading tool!
Credit to hmj6jmh on StackOverflow for the solution they posted to "How to make wget faster or multithreading?" which helped me solve my frustration downloading while on corporate networks.
29