Downloads
Download ServOS for your platform
Downloads
Download the latest version of ServOS for your platform.
Server Binary (Linux)
For headless server installations, use the one-line installer:
curl -fsSL https://cdn.drmhse.com/servos/install.sh | bash
Or pin to a specific version:
curl -fsSL https://cdn.drmhse.com/servos/install.sh | bash -s -- --version v0.0.6
Direct Downloads
| Platform | Architecture | Download |
|---|---|---|
| Linux | x86_64 (AMD/Intel) | servos-linux-x86_64 |
| Linux | aarch64 (ARM64) | servos-linux-aarch64 |
Checksums: SHA256SUMS
CLI (Linux)
| Architecture | Download |
|---|---|
| x86_64 (AMD/Intel) | servos-cli-linux-x86_64 |
| aarch64 (ARM64) | servos-cli-linux-aarch64 |
macOS and Windows CLI binaries are not currently published. See the CLI reference for source-build instructions.
Version Pinning
To download a specific version, replace latest with the version tag:
# Server binary
curl -L https://cdn.drmhse.com/servos/v0.0.6/servos-linux-x86_64 -o servos
Verifying Downloads
All downloads include SHA256 checksums for verification:
# Download the binary and checksum
curl -L https://cdn.drmhse.com/servos/latest/servos-linux-x86_64 -o servos
curl -L https://cdn.drmhse.com/servos/latest/SHA256SUMS -o SHA256SUMS
# Verify
grep servos-linux-x86_64 SHA256SUMS | sha256sum -c -
Build from Source
See the Getting Started guide for building from source.
Quick Build
# From an authorized ServOS source checkout
# Build Flutter web and server binaries
npm run build:all
Release Notes
See the repository’s CHANGELOG.md for release notes.