Download
Download Ferrum Edge v0.9.0
Pre-built binaries for all major platforms. Single static binary — no runtime dependencies.
Binaries
Platform Downloads
| Platform | Architecture | Format | Size (approx.) | Download |
|---|---|---|---|---|
| 🐧 Linux | x86_64 (Intel/AMD) | Binary (musl static) | ~18 MB | Download |
| 🐧 Linux | ARM64 (Graviton, RPi) | Binary (musl static) | ~17 MB | Download |
| macOS | x86_64 (Intel) | Binary | ~20 MB | Download |
| macOS | ARM64 (Apple Silicon) | Binary | ~19 MB | Download |
| 💎 Windows | x86_64 | Binary (.exe) | ~22 MB | Download |
All download links point to
GitHub Releases.
Checksums (SHA256) are available in the release notes for binary verification.
Containers
Container Images
🐳
GitHub Container Registry
Recommended
bash
docker pull ghcr.io/ferrum-edge/ferrum-edge:latest
docker pull ghcr.io/ferrum-edge/ferrum-edge:0.9.0
Build It Yourself
From Source
Build from source to include custom plugins or to compile for a specific target. Requires Rust 1.85+ and protoc.
bash
# Requirements: Rust 1.85+, protoc
git clone https://github.com/ferrum-edge/ferrum-edge.git
cd ferrum-edge
cargo build --release
# Binary at: ./target/release/ferrum-edge
./target/release/ferrum-edge --version
Security
Verify Your Download
Verify the SHA256 checksum of your downloaded binary against the checksums published in the GitHub release notes.
bash — Linux / macOS
# Download the checksum file
curl -LO https://github.com/ferrum-edge/ferrum-edge/releases/latest/download/SHA256SUMS
# Verify (Linux)
sha256sum --check SHA256SUMS
# Verify (macOS)
shasum -a 256 -c SHA256SUMS