Skip to content

Installation

Martin Olivier edited this page May 13, 2024 · 18 revisions

From releases

Pre-built releases for Debian, RedHat, and ArchLinux based distributions are available here.

Support for x86_64 and aarch64 architectures is available.

To download and install airgorah from pre-built releases, you will just need to use the following command:

Debian (Ubuntu, Kali, ParrotOS, PopOS, Linux Mint)

wget https://github.com/martin-olivier/airgorah/releases/download/v0.7.3/airgorah_0.7.3_`arch`.deb && \
sudo apt update && \
sudo apt install ./airgorah_0.7.3_`arch`.deb

RedHat (Fedora, CentOS, Oracle Linux)

wget https://github.com/martin-olivier/airgorah/releases/download/v0.7.3/airgorah_0.7.3_`arch`.rpm && \
sudo dnf update && \
sudo dnf install ./airgorah_0.7.3_`arch`.rpm

ArchLinux (Manjaro, EndeavourOS, Artix Linux)

wget https://github.com/martin-olivier/airgorah/releases/download/v0.7.3/airgorah_0.7.3_`arch`.pkg.tar.zst && \
sudo pacman -Syu && \
sudo pacman -U ./airgorah_0.7.3_`arch`.pkg.tar.zst

From source

To build the project, you will just need to have docker installed and running.

1. Clone the repository

git clone https://github.com/martin-olivier/airgorah.git && cd airgorah

2. Build docker image

docker build . -t airgorah_builder

3. Run docker image

docker run --rm -v $PWD:/workspace airgorah_builder

After this step, you will be able to see the installation packages in your current directory:

├── airgorah_x86_64.deb
├── airgorah_x86_64.pkg.tar.zst
└── airgorah_x86_64.rpm

The raw binary is located at target/release/airgorah

4. Install Airgorah

Debian (Ubuntu, Kali, ParrotOS, PopOS, Linux Mint)

sudo apt update && sudo apt install ./airgorah_`arch`.deb

RedHat (Fedora, CentOS, Oracle Linux)

sudo dnf update && sudo dnf install ./airgorah_`arch`.rpm

ArchLinux (Manjaro, EndeavourOS, Artix Linux)

sudo pacman -Syu && sudo pacman -U ./airgorah_`arch`.pkg.tar.zst