A minimal shell script to install Tailscale on mobile Linux distributions based on Debian Trixie.
Supported systems:
| OS | Base | Package manager |
|---|---|---|
| Mobian | Debian Trixie | apt |
| Droidian | Debian Trixie | apt |
| SirrOS | Debian Trixie | apt |
Basic install:
sh install.shPin a specific version:
TAILSCALE_VERSION=1.88.4 sh install.shUse the unstable track:
TRACK=unstable sh install.shThe script requires root privileges. It will automatically use sudo or doas if available, or run directly as root.
- Reads
/etc/os-releaseto identify the distro. - Adds the Tailscale GPG keyring to
/usr/share/keyrings/. - Adds the Tailscale apt repository to
/etc/apt/sources.list.d/. - Installs
tailscaleandtailscale-archive-keyringvia apt.
Start and authenticate your device:
sudo tailscale upThen check your connection:
tailscale statusBased on the official Tailscale install script, licensed under BSD-3-Clause.