Download JC3 applications for your platform. All binaries are signed and include SHA-256 checksums for integrity verification.
Point your Android camera at the QR code to download the JC3 MESH APK directly to your device. Ensure "Install from unknown sources" is enabled in your device settings.
Verify integrity:
# On Linux/macOS: sha256sum chaz-mesh-v2.0.2.apk # On Windows (PowerShell): Get-FileHash chaz-mesh-v2.0.2.apk -Algorithm SHA256
JC3-COP-Setup-1.0.0.exe.C:\Program Files\JC3 COP\.CHAZ-Mesh-2.0.3-portable.exe.The portable version stores all settings in the same directory as the executable. Ideal for USB drives and air-gapped environments.
The JC3 daemon (jc3d) runs on mesh nodes to handle routing, telemetry, and relay communication. On first run, generates TLS certs and an API token in ~/.jc3/. REST API at https://127.0.0.1:9443/api/v1. Single static Go 1.22 binary — no dependencies.
# Download wget https://jcan.us/downloads/jc3d-linux-amd64 # Verify checksum wget https://jcan.us/downloads/SHA256SUMS.txt sha256sum -c SHA256SUMS.txt --ignore-missing # Install chmod +x jc3d-linux-amd64 sudo mv jc3d-linux-amd64 /usr/local/bin/jc3d # Run jc3d --config /etc/jc3/config.yaml
The JC3 relay bridges mesh networks across the internet, provides the REST API, WebSocket feeds, and the COP dashboard. Supports TAK, SIGMA, and SIP bridge integrations. Single static Go 1.22 binary — no dependencies. Recommended deployment: Ubuntu 22.04+ with systemd.
# Download wget https://jcan.us/downloads/jc3-relay-linux-amd64 # Verify checksum wget https://jcan.us/downloads/SHA256SUMS.txt sha256sum -c SHA256SUMS.txt --ignore-missing # Install chmod +x jc3-relay-linux-amd64 sudo mv jc3-relay-linux-amd64 /usr/local/bin/jc3-relay # Configure sudo mkdir -p /opt/jc3 sudo nano /opt/jc3/config.yaml # Run jc3-relay --config /opt/jc3/config.yaml
jc3-relay-windows-amd64.exe.C:\Program Files\JC3\).jc3-relay-windows-amd64.exe --config config.yamlPrevious CHAZ-branded releases. These are superseded by the JC3 builds above but remain available for backward compatibility.
Always verify downloaded files against the official checksums before installation.
# Linux / macOS — verify all downloaded files at once: sha256sum -c SHA256SUMS.txt --ignore-missing # Or verify a single file: sha256sum jc3d-linux-amd64 # Windows (PowerShell): Get-FileHash .\jc3d-windows-amd64.exe -Algorithm SHA256