Skip to content

Instantly share code, notes, and snippets.

@imneonizer
Last active April 11, 2023 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imneonizer/95f10aba1533b97b5dbe1298a5e8d699 to your computer and use it in GitHub Desktop.
Save imneonizer/95f10aba1533b97b5dbe1298a5e8d699 to your computer and use it in GitHub Desktop.

Install aria2c:

sudo apt install aria2 -y

Use below command to utilize full bandwidth:

aria2c --file-allocation=none -c -x 10 -s 10 -d "mydir" URL --check-certificate=false

-c allows continuation of download if it gets interrupted, -x 10 and -s 10 allow up to 10 connections per server, and -d "mydir" outputs file to directory mydir.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment