Skip to main content

Download Muti Metroo

Current Version: v1.0.4

Download the latest Muti Metroo binary for your platform. All binaries are self-contained and require no additional dependencies.

macOS

Apple Silicon (M1/M2/M3)

Download the installer package for the easiest installation experience:

Or download the standalone binary:

Intel

macOS Installation

Using the installer (recommended):

  1. Download the .pkg file for your architecture
  2. Double-click to run the installer
  3. Follow the installation prompts
  4. The binary will be installed to /usr/local/bin/muti-metroo

Using the standalone binary:

# Download and install
curl -L -o muti-metroo https://muti-metroo.postalsys.ee/downloads/latest/muti-metroo-darwin-arm64
chmod +x muti-metroo
sudo mv muti-metroo /usr/local/bin/

# Verify installation
muti-metroo --version

Linux

x86_64 (amd64)

ARM64 (aarch64)

Linux Installation

# Download for your architecture (example: amd64)
curl -L -o muti-metroo https://muti-metroo.postalsys.ee/downloads/latest/muti-metroo-linux-amd64

# Make executable and install
chmod +x muti-metroo
sudo mv muti-metroo /usr/local/bin/

# Verify installation
muti-metroo --version

Windows

x86_64 (amd64)

ARM64

Windows Installation

  1. Download the .exe file for your architecture
  2. Move the file to a directory in your PATH (e.g., C:\Program Files\muti-metroo\)
  3. Open Command Prompt or PowerShell and verify:
muti-metroo.exe --version

Checksums

Verify your download with SHA256 checksums:

To verify on Linux/macOS:

# Download checksums
curl -L -o checksums.txt https://muti-metroo.postalsys.ee/downloads/latest/checksums.txt

# Verify (example for linux-amd64)
sha256sum -c checksums.txt --ignore-missing

To verify on Windows (PowerShell):

# Get the expected hash from checksums.txt
$expected = (Get-Content checksums.txt | Select-String "muti-metroo-windows-amd64.exe").ToString().Split()[0]

# Calculate actual hash
$actual = (Get-FileHash muti-metroo-windows-amd64.exe -Algorithm SHA256).Hash.ToLower()

# Compare
if ($expected -eq $actual) { "OK" } else { "MISMATCH" }

Previous Versions

Previous releases are available at:

Next Steps

After installation, follow the Quick Start Guide to set up your first Muti Metroo agent.