-
Notifications
You must be signed in to change notification settings - Fork 0
Install Linux
Daniel Nylander edited this page Aug 9, 2026
·
5 revisions
Updated for v1.1.99. Linux packages are built and checked by GitHub Actions.
Download the latest release from GitHub Releases:
| Format | File | Notes |
|---|---|---|
| Debian/Ubuntu | opencaptive_X.Y.Z_amd64.deb |
apt-compatible |
| Fedora/RHEL | opencaptive-X.Y.Z.x86_64.rpm |
dnf-compatible |
| AppImage | opencaptive-x86_64.AppImage |
Any distro, no install needed |
| Tarball | opencaptive-linux-x86_64.tar.gz |
Manual placement |
sudo dpkg -i opencaptive_1.1.99_amd64.deb
sudo apt-get install -f # resolve dependencies if neededsudo dnf install opencaptive-1.1.99.x86_64.rpmNo installation required. Make it executable and run:
chmod +x opencaptive-x86_64.AppImage
./opencaptive-x86_64.AppImageOptional: move it to your PATH:
mv opencaptive-x86_64.AppImage ~/.local/bin/opencaptivetar xzf opencaptive-linux-x86_64.tar.gz
cd opencaptive-linux-x86_64
./opencaptivePlace your original game files in ~/.opencaptive/:
~/.opencaptive/
CAPTIVE.ZIP # or individual files
LIBERATION.ISO # or ADF/raw files
Files are identified by SHA-256 content hash, not filename. ZIP archives, ADF disk images, and ISO tracks are scanned automatically. Press D on the main menu to run the data scanner.
Requires CMake 3.20+, clang, SDL3, SDL3_ttf, zlib, and Ninja.
sudo apt install cmake ninja-build libsdl3-dev libsdl3-ttf-dev zlib1g-dev
cmake -S . -B build -DCMAKE_C_COMPILER=cc -G Ninja
ninja -C build