Installation
KairOS Red endpoint agent is available for Linux, macOS, and Windows. Choose your platform below for detailed installation instructions.
System Requirements
| Platform | Architecture | Minimum Version |
|---|---|---|
| Linux | x86_64, aarch64 | Kernel 5.10+ |
| macOS | x86_64, arm64 | 13.0+ (Ventura) |
| Windows | x86_64 | 10 22H2+ / 11 |
Linux Installation
Debian / Ubuntu (apt)
# Add the KairOS Red APT repository curl -fsSL https://apt.kairosnetwork.red/gpg.key | sudo gpg --dearmor -o /usr/share/keyrings/kairos.gpg echo "deb [signed-by=/usr/share/keyrings/kairos.gpg] https://apt.kairosnetwork.red stable main" | sudo tee /etc/apt/sources.list.d/kairos.list # Update and install sudo apt update sudo apt install kairos-endpoint # Verify installation kairos --versionFedora / RHEL / Rocky Linux (rpm)
# Add the KairOS Red RPM repository sudo dnf config-manager --add-repo https://rpm.kairosnetwork.red/kairos.repo # Install the endpoint sudo dnf install kairos-endpoint # Verify installation kairos --versionopenSUSE (zypper)
# Add the KairOS Red repository sudo zypper addrepo https://rpm.kairosnetwork.red/kairos.repo # Install sudo zypper install kairos-endpointGeneric Linux (static binary)
# Download the latest release curl -fsSL https://releases.kairosnetwork.red/latest/kairos-endpoint-linux-amd64.tar.gz -o /tmp/kairos.tar.gz # Extract and install sudo tar -xzf /tmp/kairos.tar.gz -C /usr/local/bin/ sudo chmod +x /usr/local/bin/kairos # Verify kairos --versionmacOS Installation
Homebrew (recommended)
# Tap the KairOS Red Homebrew repository brew tap kairos-red/homebrew-tap # Install the endpoint brew install kairos-endpoint # Verify installation kairos --versionManual .pkg Installer
# Download the package curl -fsSL https://pkg.kairosnetwork.red/kairos-endpoint.pkg -o /tmp/kairos-endpoint.pkg # Install sudo installer -pkg /tmp/kairos-endpoint.pkg -target / # Verify kairos --versionWindows Installation
MSI Installer (Graphical)
- Download the MSI installer from kairos-endpoint-latest.msi
- Double-click the MSI file to start the installer
- Follow the installation wizard
- Launch KairOS Red from the Start Menu
Silent Installation (Command Line)
# Download the MSI curl -fsSL https://msi.kairosnetwork.red/kairos-endpoint-latest.msi -o kairos-endpoint.msi # Install silently msiexec /i kairos-endpoint.msi /quiet /norestartChocolatey
choco install kairos-endpointwinget
winget install KairOS.EndpointPost-Installation Verification
After installation, verify the endpoint agent is working:
# Check the daemon status kairos status # View the version and build info kairos --version # Check system requirements kairos doctorUninstalling
Linux (apt)
sudo apt remove kairos-endpointLinux (rpm)
sudo dnf remove kairos-endpointmacOS (Homebrew)
brew uninstall kairos-endpointWindows
msiexec /x kairos-endpoint.msi /quietNext Steps
- Getting Started Guide — enroll your device and make your first connection
- Configuration Guide — CLI options, config files, and environment variables