How to Install Aria2 1.18.3 - A Download Manager in Linux - Duration: 2:52. How to install Internet Download Manager on Linux Mint - Duration: 8:20. Amine Tech 44,887 views.
I used to download the large files with wget
because I can simplyresume the download tasks with -c
option. This option will checkthe size of the output file, and download the rest of the file from the server.I can even restart the download task with a different URI. This featureis not available in many sophisticated download managers.
- Aria2 Download Manager through Entware TeHashX. 18 Comments Aria2 is a file sharing program. When you run a torrent, its data will be made available to others by means of upload.
- Aria2 is a file downloader just like wget. But much better for my need because aria2 being able to remotely controlled using JSON-RPC and XML-RPC interfaces. Bellow are some abstracts about aria2.
- Aria2 Download Manager Remote Downloader And Accelerator free download - Download Accelerator Plus, Internet Download Accelerator, Internet Download Manager,.
Recently, I came across Aria2, which is a command line download managerwhich supports lots of protocols, including HTTP, FTP, BitTorrents, and etc.Similar to wget
, I can resume the download tasks without problems! Andthere are several features which are not available in wget
:
- Multiple tasks and scheduling
- Split the download task and download the file in parallel
- Web UI
- ... and etc
In this post, I would like to give a brief introduction to Aria2.
Installation
Before we can start our discussion, we have to install Aria2 first.
To install Aria2 on Ubuntu (or Debian), run the following command:
Besides, check the file permission of your .netrc
file. It should be600, i.e. only the owner can read or write the file. You can change thefile permission with following command:
Download Files with Aria2
Aria2 is similar to wget
command line tool. We can simply downloadthe files with aria2c
command:
For example, to download the Debian 7.8 minimal CD image:
We can specify the output file name with -o
option:
To resume a download task, we can specify the -c
option:
If we wish to download a file parallelly, we can try the -x
option:
Run Aria2 as a Daemon
If we wish to use Aria2 as a download manager, we should run Aria2 as adaemon.
To start the Aria2 daemon:
By default, Aria2 will perform 5 tasks at the same time, to change thenumber of concurrent download tasks, we can specify the -j
option:
For example, to download the files sequentially:
After starting the Aria2 daemon, click here for the Aria2 Web UI. You canadd/remove the download tasks in the Aria2 Web UI.
Control Daemon with aria2rpc
Aria2 provides a command line tool, aria2rpc
, to control the daemon.However, it is not installed by default.
To obtain aria2rpc
, run the following command:
Aria 2 Download Manager Download
After these steps, move aria2rpc
to your $PATH
, so that wecan run aria2rpc
directly.
Now, we can add a download task with:
After adding a download task, an ID will be printed. We can remove a taskwith:
You may find more usages with:
aria2 is a lightweight multi-protocol & multi-source command-linedownload utility. It supports HTTP/HTTPS, FTP, SFTP,BitTorrent and Metalink. aria2 can be manipulated via built-inJSON-RPC and XML-RPC interfaces.
Download
Download version 1.35.0.There you can download source distribution and binaries for OS X, Windows and Android.
The legacy releases earlier than 1.19.1 are availablehere.
Features
Multi-Connection Download.aria2 can download a filefrom multiple sources/protocols and tries to utilize yourmaximum download bandwidth. Really speeds up your downloadexperience.
Lightweight.aria2 doesn’t require much memory and CPU time. When disk cache isoff, the physical memory usage is typically 4MiB (normalHTTP/FTP downloads) to 9MiB (BitTorrent downloads). CPU usage inBitTorrent with download speed of 2.8MiB/sec is around 6%.
Fully Featured BitTorrent Client.All features you want in BitTorrent client are available: DHT,PEX, Encryption, Magnet URI, Web-Seeding, Selective Downloads,Local Peer Discovery and UDP tracker.
Metalink Enabled.aria2 supports The Metalink Download Description Format(aka Metalink v4),Metalink version 3 andMetalink/HTTP.Metalink offers the file verification, HTTP/FTP/SFTP/BitTorrent integrationand the various configurations for language, location, OS, etc.
Remote Control.aria2 supports RPC interface to control the aria2 process.The supported interfaces are JSON-RPC (over HTTP and WebSocket)and XML-RPC.
Usage Examples
Command-line scares you off? No, aria2 is really easy to use!!
Download from WEB:
Download from 2 sources:
Download using 2 connections per host:
BitTorrent:
BitTorrent Magnet URI:
Metalink:
Download URIs found in text file:
Aria 2 Download Manager Pro
Related Projects
- apt-metalink: Faster package downloads for Debian/Ubuntu
- powerpill: Pacman wrapper for parallel and segmented downloads.
- python3-aria2jsonrpc: A wrapper class around Aria2’s JSON RPC interface.
- aria2.js: JavaScript (browsers and Node.js) library and cli for aria2 RPC
UI Frontends
- webui-aria2: Web browser interface for aria2 (2012 GSOC project)
- uGet: the Linux Download Manager
License
This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe Free Software Foundation; either version 2 of the License, or (atyour option) any later version.