Download Muti Metroo
Download the latest Muti Metroo binary for your platform. All binaries are self-contained and require no additional dependencies.
By downloading these binaries, you agree to the Terms of Service. The source code is available under the MIT License.
Binaries are provided for convenience; building from source is recommended for review and customization. See the GitHub repository for build instructions.
- macOS
- Linux
- Windows
Apple Silicon (M-series)
Intel
Installation
# Download for your architecture (example: Apple Silicon)
curl -L -o muti-metroo https://download.mutimetroo.com/darwin-arm64/muti-metroo
# Make executable and install
chmod +x muti-metroo
sudo mv muti-metroo /usr/local/bin/
# Verify installation
muti-metroo --version
On first run, macOS may show a security warning because the binary is not signed with a Developer ID certificate. To allow it:
- Right-click the binary and select "Open", or
- Go to System Preferences > Security & Privacy and click "Allow Anyway"
x86_64 (amd64)
ARM64 (aarch64)
Installation
# Download for your architecture (example: amd64)
curl -L -o muti-metroo https://download.mutimetroo.com/linux-amd64/muti-metroo
# Make executable and install
chmod +x muti-metroo
sudo mv muti-metroo /usr/local/bin/
# Verify installation
muti-metroo --version
x86_64 (amd64)
ARM64
No native ARM64 DLL is provided. ARM64 Windows users can run the x64 DLL via the emulation layer. See DLL Mode for instructions.
The DLL variant runs via rundll32.exe without a console window. Use .exe for normal operation; use .dll for background execution scenarios. See DLL Mode for details.
Installation
# Download for your architecture (example: amd64)
curl.exe -L -o muti-metroo.exe https://download.mutimetroo.com/windows-amd64/muti-metroo.exe
# Move to Program Files (run as Administrator)
mkdir "C:\Program Files\muti-metroo" -ErrorAction SilentlyContinue
move muti-metroo.exe "C:\Program Files\muti-metroo\"
# Add to PATH (run as Administrator, or add manually via System Properties)
$path = [Environment]::GetEnvironmentVariable("Path", "Machine")
[Environment]::SetEnvironmentVariable("Path", "$path;C:\Program Files\muti-metroo", "Machine")
# Verify installation (restart terminal first)
muti-metroo.exe --version
Verify Your Download
Verify your download with SHA256 checksums:
- Linux / macOS
- Windows
# Download checksums
curl -L -o checksums.txt https://download.mutimetroo.com/muti-metroo/checksums.txt
# Verify (example for linux-amd64)
sha256sum -c checksums.txt --ignore-missing
# Get the expected hash from checksums.txt (example: .exe)
$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" }
# For DLL verification, use muti-metroo-windows-amd64.dll instead
User Manual (PDF)
A comprehensive PDF manual is available for offline use and printing:
The user manual covers installation, configuration, features, and deployment in a single document.
Metroo Manager
A web dashboard for managing and monitoring your Muti Metroo mesh network. See the full Metroo Manager guide for details.
- macOS
- Linux
- Windows
Previous Versions
Previous releases are available on the GitHub Releases page.
Next Steps
After installation, follow the Quick Start Guide to set up your first Muti Metroo agent.