Skip to content
DocsInstallationOffline / air-gapped install

Offline install from a provided binary

For air-gapped boxes, arm64 servers, or anywhere the install host can't reach the download endpoint, install from a binary file you've been given instead of downloading it.

1. Copy the binary to the server

You'll receive two files: the linux-pro binary and the install.sh installer. Copy both onto the target server, for example with scp:

from your machine
scp ./linux-pro ./install.sh user@your-server:~/

2. Install it

Point the installer at the binary with --binary. It sets up the same systemd service as the one-line installer — no internet access required.

on the server
sudo ./install.sh --binary ./linux-pro
Tip
All the same parameters apply — e.g. add --port 9000 to choose the port, or set LINUXPRO_TLS=off if you front it with your own reverse proxy.