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.1.0
Direct Downloads
| Platform | Architecture | Download |
|---|---|---|
| Linux | x86_64 (AMD/Intel) | servos-linux-x86_64 |
| Linux | aarch64 (ARM64) | servos-linux-aarch64 |
Checksums: SHA256SUMS
CLI (Command Line Interface)
The servos CLI allows you to manage your infrastructure and services directly from your terminal. See the CLI Reference for usage details.
Direct Downloads
| Platform | Architecture | Download |
|---|---|---|
| Linux | x86_64 (AMD/Intel) | servos-cli-linux-x86_64 |
| Linux | aarch64 (ARM64) | servos-cli-linux-aarch64 |
| macOS | Apple Silicon (M1/M2/M3) | servos-cli-darwin-aarch64 |
| macOS | Intel | servos-cli-darwin-x86_64 |
| Windows | x64 (.exe) | servos-cli-windows-x86_64.exe |
Version Pinning
To download a specific version, replace latest with the version tag:
# Server binary
curl -L https://cdn.drmhse.com/servos/v0.1.0/servos-linux-x86_64 -o servos
# CLI
curl -L https://cdn.drmhse.com/servos/v0.1.0/servos-cli-darwin-aarch64 -o servos-cli
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
git clone https://github.com/drmhse/ServOS.git
cd ServOS
# Build Flutter web and server binaries
npm run build:all
Release Notes
See GitHub Releases for detailed release notes and changelogs.