From 37e8ba25e10fd9a32635b53b57d8a0975c188ed3 Mon Sep 17 00:00:00 2001 From: Animesh Shukla Date: Thu, 26 Sep 2024 07:39:38 +0530 Subject: [PATCH 1/2] docs(installation): add installation instructions for Arch based linux distributions --- INSTALLATION.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/INSTALLATION.md b/INSTALLATION.md index 5673a691..da7e4188 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -85,3 +85,32 @@ sudo yum localinstall ./apidash-.rpm ``` Launch API Dash via `apidash` command or by clicking on the API Dash app icon. + +### Arch-based Linux Distributions (Manjaro, Arch Linux, etc.) + +Download the `.deb` file from the [latest release](https://github.com/foss42/apidash/releases/latest) corresponding to you CPU architecture (x64/amd64 or arm64). + +First we have to convert the .deb file to .tar.xz file using the following commands. + +1. Install debtap using the following command. + ``` + yay -S debtap + ``` + +2. Initialize `debtap` using the following command. + ``` + sudo debtap -u + ``` + +3. Convert the .deb file to .tar.xz file using the following command. + ``` + sudo debtap /path/to/apidash-.deb + ``` +4. Once converted, install the resulting .tar.xz file using the following command. + ``` + sudo pacman -U apidash-.tar.xz + ``` + +Note: Replace `/path/to/apidash-.deb` with the path to the downloaded .deb file. + +Launch API Dash via `apidash` command or by clicking on the API Dash app icon. \ No newline at end of file From bb962ede07919c8c385cc4b0e23f4153c2198014 Mon Sep 17 00:00:00 2001 From: Ashita Prasad Date: Thu, 26 Sep 2024 14:02:41 +0530 Subject: [PATCH 2/2] Update INSTALLATION.md --- INSTALLATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/INSTALLATION.md b/INSTALLATION.md index da7e4188..3081ef2e 100644 --- a/INSTALLATION.md +++ b/INSTALLATION.md @@ -88,7 +88,7 @@ Launch API Dash via `apidash` command or by clicking on the API Dash app icon. ### Arch-based Linux Distributions (Manjaro, Arch Linux, etc.) -Download the `.deb` file from the [latest release](https://github.com/foss42/apidash/releases/latest) corresponding to you CPU architecture (x64/amd64 or arm64). +Download the `.deb` file from the [latest release](https://github.com/foss42/apidash/releases/latest) corresponding to your CPU architecture (x86_64/amd64 or arm64/aarch64). First we have to convert the .deb file to .tar.xz file using the following commands. @@ -113,4 +113,4 @@ First we have to convert the .deb file to .tar.xz file using the following comma Note: Replace `/path/to/apidash-.deb` with the path to the downloaded .deb file. -Launch API Dash via `apidash` command or by clicking on the API Dash app icon. \ No newline at end of file +Launch API Dash via `apidash` command or by clicking on the API Dash app icon.