Skip to content

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.

MachineDownload
Most Intel or AMD PCscontroli-windows-amd64.exe
Older 32-bit PCscontroli-windows-386.exe
Windows on ARM64controli-windows-arm64.exe
Older Windows ARM devicescontroli-windows-arm.exe

macOS

Use these for Apple machines. Apple Silicon means M1, M2, M3, or newer.

MachineDownload
Apple Siliconcontroli-darwin-arm64
Intel Maccontroli-darwin-amd64

Linux and Ubuntu

Use these for Ubuntu, Debian, Fedora, servers, boards, and other Linux systems.

MachineDownload
Most Intel or AMD desktops and serverscontroli-linux-amd64
Older 32-bit Intel or AMD systemscontroli-linux-386
ARM64 servers and boardscontroli-linux-arm64
ARMv7 boardscontroli-linux-armv7
ARMv6 boardscontroli-linux-armv6
PowerPC 64 little-endian serverscontroli-linux-ppc64le
RISC-V 64 systemscontroli-linux-riscv64
IBM Z or LinuxONEcontroli-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 1234567

Windows 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 1234567

Linux 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 1234567

After 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 | sh

Windows:

powershell
iwr https://raw.githubusercontent.com/rgcsekaraa/controli/main/scripts/install.ps1 -UseB | iex

Update later:

bash
controli update

Released under the MIT license.