IDA Pro 9.1 Installation on Arch Linux Effortlessly
Step-by-step guide to installing IDA Pro 9.1 on Arch Linux with a fully automated PKGBUILD. No manual installer downloads required. Compatible with yay and other AUR helpers.
Introduction
IDA Pro 9.1.250226 is a crucial tool for reverse engineering, but installing it on Arch Linux used to be a hassle. The ida-pro
package on the AUR required you to manually download the installer and place it next to the PKGBUILD
file, making it impossible to use AUR helpers like yay
for a fully automated install.
This guide introduces a new, automated way to install IDA Pro on Arch Linux using an updated PKGBUILD that fetches the installer for you.
Prerequisites
- Arch Linux system
- Basic knowledge of using the terminal
- git and base-devel packages installed
How to Install
- Clone the repository:
1 2
git clone https://gitlab.com/fr0stb1rd/aur-ida-pro.git cd aur-ida-pro
- Build and install the package:
1
makepkg -sicf
This command will automatically download the installer, build the package, and install IDA Pro on your system. No manual file moving required!
Installer Checksums
If you want to verify the integrity of the ida-pro_91_x64linux.run
installer, here are the hash values:
1
2
3
4
5
6
7
8
9
[fr0stb1rd@archlinux ida-pro]$ md5sum ida-pro_91_x64linux.run
d451b9c4565b8a2819e78055a8afec97 ida-pro_91_x64linux.run
[fr0stb1rd@archlinux ida-pro]$ sha256sum ida-pro_91_x64linux.run
8ff08022be3a0ef693a9e3ea01010d1356b26cfdcbbe7fdd68d01b3c9700f9e2 ida-pro_91_x64linux.run
[fr0stb1rd@archlinux ida-pro]$ sha1sum ida-pro_91_x64linux.run
44b04da5e27a37aaec976ae180d7818fe1a09f55 ida-pro_91_x64linux.run
[fr0stb1rd@archlinux ida-pro]$ sha512sum ida-pro_91_x64linux.run
e83078413f38b3536c43a66d8fcd2dbe19ad101473093b30572ac7f4d16fa7eacf1773a402b2c4411882ff6a09bfc6978b348d772ae26aef29afd01beee80cfe ida-pro_91_x64linux.run
[fr0stb1rd@archlinux ida-pro]$