Download

v0.1.0

APRStac is a single binary with no dependencies. Download, run, and open your browser.

Windows
x86_64

Windows 10 and later. Serial ports via COM interface.

Executable (.exe)
Linux x64
x86_64

Debian, Ubuntu, Fedora, and other x64 distributions.

Executable .deb Package AppImage
ARM64 (Raspberry Pi)
aarch64

Raspberry Pi 4, Pi 5, and other ARM64 boards.

Executable .deb Package

Once running, open http://localhost:14501 in your browser to access the interface.

Quick Start

Executable

Download, make executable, and run.

# Linux / Raspberry Pi
chmod +x aprstac-server
./aprstac-server

# Windows
aprstac-server.exe

.deb Package

Install with dpkg. Includes a systemd service.

sudo dpkg -i aprstac_0.1.0_amd64.deb
sudo systemctl enable --now aprstac

AppImage

Make executable and run. No installation needed.

chmod +x APRStac-x86_64.AppImage
./APRStac-x86_64.AppImage

Verify Your Download

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