aria2-static-builds/README.md

86 lines
3.9 KiB
Markdown
Raw Normal View History

2021-04-02 21:21:12 +02:00
aria2 static builds for GNU/Linux & Windows.
============================================
2015-10-05 20:22:13 +02:00
2023-12-23 18:16:44 +01:00
### aria2 1.37.0 builds (with OpenSSL):
2015-10-05 20:22:13 +02:00
2021-04-02 21:21:12 +02:00
* **`GNU/Linux downloads:`**
2023-12-23 18:16:44 +01:00
* [aria2-1.37.0-linux-gnu-32bit-build1.tar.bz2](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (Generic Linux x86)
* [aria2-1.37.0-linux-gnu-64bit-build1.tar.bz2](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (Generic Linux x86_64)
* [aria2-1.37.0-linux-gnu-arm-rbpi-build1.tar.bz2](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (Generic Linux ARM32)
* [aria2-1.37.0-linux-gnu-32bit-build1.deb](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (Debian/Ubuntu x86)
* [aria2-1.37.0-linux-gnu-64bit-build1.deb](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (Debian/Ubuntu x86_64)
* [aria2-1.37.0-linux-gnu-arm-rbpi-build1.deb](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (Debian/Ubuntu ARM32)
* [aria2-1.37.0-linux-gnu-32bit-build1.rpm](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (RedHat/Fedora x86)
* [aria2-1.37.0-linux-gnu-64bit-build1.rpm](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR) (RedHat/Fedora x86_64)
2015-10-05 20:22:13 +02:00
2021-04-02 21:21:12 +02:00
* **`Windows downloads:`**
2024-01-17 09:14:35 +01:00
* [aria2-1.37.0-win-32bit-build1.7z](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR)
* [aria2-1.37.0-win-64bit-build1.7z](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR)
2016-10-16 12:09:48 +02:00
2021-04-02 21:21:12 +02:00
* **`CA-Certificates:`**
2023-12-23 18:16:44 +01:00
* [ca-certificates.crt](https://drive.proton.me/urls/QKY2M7X7TC#b6YBf4Tl5QiR)
2015-10-05 20:22:13 +02:00
2021-04-02 21:21:12 +02:00
* **`Source code:`**
2023-12-23 18:16:44 +01:00
* [aria2-1.37.0.tar.bz2](https://github.com/tatsuhiro-t/aria2/releases/download/release-1.37.0/aria2-1.37.0.tar.bz2)
* [aria2-1.37.0.tar.gz](https://github.com/tatsuhiro-t/aria2/releases/download/release-1.37.0/aria2-1.37.0.tar.gz)
* [aria2-1.37.0.tar.xz](https://github.com/tatsuhiro-t/aria2/releases/download/release-1.37.0/aria2-1.37.0.tar.xz)
2015-10-05 20:22:13 +02:00
2021-04-02 21:21:12 +02:00
_Note: The error with `bcrypt.dll` library on `Windows XP` has been fixed._
2021-08-28 13:00:02 +02:00
_Info: In this version, the Windows builds include manifest for Windows 10 (Contributed by [eladkarako](https://github.com/eladkarako))_
2015-10-05 20:22:13 +02:00
### How to install:
* **GNU/Linux instructions:**
2021-04-02 21:21:12 +02:00
* Open the terminal and type the following commands:
2021-04-02 21:23:04 +02:00
2021-04-02 21:30:39 +02:00
```shell
2023-12-23 18:16:44 +01:00
$ tar jxvf aria2-1.37.0-linux-gnu-[arch]-build1.tar.bz2
$ cd aria2-1.37.0-linux-gnu-[arch]-build1
2021-04-02 21:30:39 +02:00
$ sudo make install
````
2021-04-02 21:21:12 +02:00
* **Windows instructions:**
2015-10-05 20:22:13 +02:00
* Unzip the package with [7-zip](http://www.7-zip.org/) or [Winrar](http://www.rarlab.com/).
* Copy the files to a folder. For example: `C:\Program Files\aria2`
2021-04-02 21:21:12 +02:00
* Add the folder to [PATH](https://www.google.es/search?q=add+folder+to+PATH+on+Windows) variable.
2015-10-05 20:22:13 +02:00
### CA Certificates on Windows (HTTPS):
To perform downloads using **HTTPS**, is necessary the ca-certificates. For default, Linux binaries read the certificates from **/etc/ssl/certs/ca-certificates.crt**, but with Windows binaries are necessary define the path of certificates.
You can define the path of the certificates permanently using `aria2.conf` located on `C:\Users\<user>\.aria2\`. If you use Windows XP, the file is located on `C:\Documents and settings\<user>\.aria2\`. For example, you just have to add the following line:
2021-04-02 21:21:12 +02:00
```shell
ca-certificate=C:\Program Files\aria2\certs\ca-certificates.crt
```
2015-10-05 20:22:13 +02:00
If you prefer load the certificates manually, you can use the following command:
2021-04-02 21:21:12 +02:00
```shell
C:\PATH\> aria2c --ca-certificate=<PATH-TO-CERTIFICATE> <URL>
```
2015-10-05 20:22:13 +02:00
Also, is possible disable the use of certificates with the following command:
2021-04-02 21:21:12 +02:00
```shell
C:\PATH\> aria2c --check-certificate=false <URL>
```
2015-10-05 20:22:13 +02:00
### Used external libraries:
* http://www.zlib.net/
2023-12-23 18:16:44 +01:00
* https://libexpat.github.io/
* https://c-ares.org/
2015-10-05 20:22:13 +02:00
* http://www.sqlite.org/
* http://www.openssl.org/
* http://www.libssh2.org/
### External links:
* [aria2 homepage](https://aria2.github.io/)
* [aria2 documentation](https://aria2.github.io/manual/en/html/)
* [aria2 source code (Github)](https://github.com/aria2/aria2)