APRStac is a single binary with no dependencies. Download, run, and open your browser.
Debian, Ubuntu, Fedora, and other x64 distributions.
Once running, open http://localhost:14501 in your browser to access the interface.
Download, make executable, and run.
# Linux / Raspberry Pi
chmod +x aprstac-server
./aprstac-server
# Windows
aprstac-server.exe
Install with dpkg. Includes a systemd service.
sudo dpkg -i aprstac_0.1.0_amd64.deb
sudo systemctl enable --now aprstac
Make executable and run. No installation needed.
chmod +x APRStac-x86_64.AppImage
./APRStac-x86_64.AppImage
Each binary is signed by ModernHam. Download the signing certificate and the .sig file for your platform, then verify with OpenSSL. You should see Verified OK if the binary has not been tampered with.
# 1. Download the signing certificate
curl -O https://aprstac.com/downloads/signing-cert.pem
# 2. Download the signature for your platform
curl -O https://aprstac.com/downloads/aprstac-server.sig # Linux x64
curl -O https://aprstac.com/downloads/aprstac-server.exe.sig # Windows
curl -O https://aprstac.com/downloads/aprstac-server-arm64.sig # ARM64 (Raspberry Pi)
curl -O https://aprstac.com/downloads/APRStac-x86_64.AppImage.sig # AppImage
curl -O https://aprstac.com/downloads/aprstac_0.1.0_amd64.deb.sig # .deb (amd64)
curl -O https://aprstac.com/downloads/aprstac_0.1.0_arm64.deb.sig # .deb (arm64)
# 3. Verify (replace filenames to match your platform)
openssl dgst -sha256 \
-verify <(openssl x509 -in signing-cert.pem -pubkey -noout) \
-signature aprstac-server.sig \
aprstac-server