Aria2
aria2 is a lightweight multi-protocol & multi-source command-line download utility. It supports HTTP/HTTPS, FTP, BitTorrent and Metalink. aria2 can be manipulated via built-in JSON-RPC and XML-RPC interfaces.
Usage Examples
Command-line scares you off? No, aria2 is really easy to use!!
- Download from WEB
-
$ aria2c
http://example.org/mylinux.iso
- Download from 2 sources
-
$ aria2c
http://a/f.iso
ftp://b/f.iso
- Download using 2 connections per host
-
$ aria2c -x2
http://a/f.iso
- BitTorrent
-
$ aria2c
http://example.org/mylinux.torrent
- BitTorrent Magnet URI
-
$ aria2c '
magnet:?xt=urn:btih:248D0A1CD08284299DE78D5C1ED359BB46717D8C
'
- Metalink
-
$ aria2c
http://example.org/mylinux.metalink
- Download URIs found in text file
-
$ aria2c -i uris.txt
다운로드 속도 제한
다운로드 속도를 제한하려면 --max-download-limit
옵션을 사용할 수 있습니다.
분할 다운로드
aria2는 파일을 여러 부분으로 나누어 병렬로 다운로드할 수 있습니다. 다음 예제에서는 파일을 4개의 부분으로 나누어 다운로드합니다.