Install
Download the binary that matches the guest or host machine. The current release is v0.4.10.
Windows
Use these when the other person is joining from a Windows machine.
| Machine | Download |
|---|---|
| Most Intel or AMD PCs | controli-windows-amd64.exe |
| Older 32-bit PCs | controli-windows-386.exe |
| Windows on ARM64 | controli-windows-arm64.exe |
| Older Windows ARM devices | controli-windows-arm.exe |
macOS
Use these for Apple machines. Apple Silicon means M1, M2, M3, or newer.
| Machine | Download |
|---|---|
| Apple Silicon | controli-darwin-arm64 |
| Intel Mac | controli-darwin-amd64 |
Linux and Ubuntu
Use these for Ubuntu, Debian, Fedora, servers, boards, and other Linux systems.
| Machine | Download |
|---|---|
| Most Intel or AMD desktops and servers | controli-linux-amd64 |
| Older 32-bit Intel or AMD systems | controli-linux-386 |
| ARM64 servers and boards | controli-linux-arm64 |
| ARMv7 boards | controli-linux-armv7 |
| ARMv6 boards | controli-linux-armv6 |
| PowerPC 64 little-endian servers | controli-linux-ppc64le |
| RISC-V 64 systems | controli-linux-riscv64 |
| IBM Z or LinuxONE | controli-linux-s390x |
Quick Download
Windows, most PCs:
powershell
Invoke-WebRequest -Uri "https://github.com/rgcsekaraa/controli/releases/latest/download/controli-windows-amd64.exe" -OutFile "$env:USERPROFILE\Downloads\controli.exe"
& "$env:USERPROFILE\Downloads\controli.exe" join 1234567Windows release binaries are currently unsigned. If Device Guard or App Control blocks the file on a managed Windows machine, the organization's policy must allow the release hash or Controli must ship a trusted signed binary.
macOS, Apple Silicon:
bash
curl -L -o controli https://github.com/rgcsekaraa/controli/releases/latest/download/controli-darwin-arm64
chmod +x controli
./controli join 1234567Linux or Ubuntu, most PCs and servers:
bash
curl -L -o controli https://github.com/rgcsekaraa/controli/releases/latest/download/controli-linux-amd64
chmod +x controli
./controli join 1234567After downloading on Unix systems, mark the file executable with chmod +x.
One-command install
macOS and Linux:
bash
curl -fsSL https://raw.githubusercontent.com/rgcsekaraa/controli/main/scripts/install.sh | shWindows:
powershell
iwr https://raw.githubusercontent.com/rgcsekaraa/controli/main/scripts/install.ps1 -UseB | iexUpdate later:
bash
controli update