ARX

Installation

Install ARX.

ARX gives you a local-first control layer for Minecraft operations — start/stop and monitor your server, manage players and backups, and run Gemma via Ollama from one dashboard + CLI. Install it if you want reliable day-to-day server ops without cloud lock-in.

Official installer endpoints are live on arxmc.studio. View GitHub Releases →

1. INSTALL
curl -fsSL https://arxmc.studio/install.sh | bash

Installs ARX, Ollama, and pulls gemma4:e2b automatically.

After Installation

1. START
arx start
2. STATUS
arx status
3. HELP
arx help

Release Verification

Verify your install.

1. DOWNLOAD RELEASE ARTIFACTS
curl -fsSL https://arxmc.studio/checksums.txt -o checksums.txt
curl -fsSL https://arxmc.studio/install.sh -o install.sh
curl -fsSL https://arxmc.studio/install.ps1 -o install.ps1
curl -fsSL https://arxmc.studio/arx-runtime.zip -o arx-runtime.zip
2. VERIFY (LINUX/MACOS)
sha256sum -c checksums.txt
3. VERIFY (WINDOWS)
Get-FileHash .\install.sh -Algorithm SHA256
Get-FileHash .\install.ps1 -Algorithm SHA256
Get-FileHash .\arx-runtime.zip -Algorithm SHA256
Get-Content .\checksums.txt
Full Verification Guide

Quick Troubleshooting

Command not found after install

Restart your terminal or run source ~/.bashrc

Ollama fails to start

Ensure port 11434 is free and run ollama serve

Permission denied on Linux

Run the install script with sudo

Windows Defender blocks script

Run PowerShell as Administrator with execution policy bypass

Full Troubleshooting Guide →