Windows users: Remotio requires WSL (Windows Subsystem for Linux).
Open WSL terminal (not PowerShell/CMD) and run the install script there.
Quick Install (Recommended)
One command to download and install:
curl -sSL https://cc.remotio.me/dist/install.sh | bash
Manual Download
Requirement: tmux must be installed.
# Install tmux first
# Ubuntu/Debian: sudo apt install tmux
# Fedora/RHEL: sudo dnf install tmux
# Arch: sudo pacman -S tmux
# macOS: brew install tmux
Then download the bridge:
# Linux x64
curl -sSL https://cc.remotio.me/dist/remotio-linux-amd64 -o remotio
# Linux ARM64
curl -sSL https://cc.remotio.me/dist/remotio-linux-arm64 -o remotio
# macOS Intel
curl -sSL https://cc.remotio.me/dist/remotio-darwin-amd64 -o remotio
# macOS Apple Silicon
curl -sSL https://cc.remotio.me/dist/remotio-darwin-arm64 -o remotio
# Then make executable and move to PATH
chmod +x remotio
sudo mv remotio /usr/local/bin/
Connect
1. Get your token
Go to Dashboard and create a machine to get your token.
2. Start the bridge
remotio connect YOUR_TOKEN
3. Run in background (optional)
# Using tmux
tmux new -d -s remotio 'remotio connect YOUR_TOKEN'
# Or using nohup
nohup remotio connect YOUR_TOKEN &