3.5 KiB
title | date | lastmod | description | featured | draft | toc | usePageBundles | thumbnail | codeLineNumbers | series | tags | comment | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Tailscale on VMware Photon OS | 2022-12-14T10:21:12-06:00 | 2022-12-15T10:21:12-06:00 | How to manually install Tailscale on VMware's Photon OS - or any other systemd-based platform without official Tailscale packages. | false | false | false | true | Tailscale-AppIcon.png | false | Tips |
|
true |
You might remember that I'm a pretty big fan of Tailscale, which makes it easy to connect your various devices together in a secure tailnet, or private network. Tailscale is super simple to set up on most platforms, but you'll need to install it manually if there isn't a prebuilt package for your system.
Here's a condensed list of the steps that I took to manually install Tailscale on VMware's Photon OS, though the same (or similar) steps should also work on just about any other systemd
-based system.
- Visit https://pkgs.tailscale.com/stable/#static to see the latest stable version for your system architecture, and copy the URL. For instance, I'll be using
https://pkgs.tailscale.com/stable/tailscale_1.34.1_arm64.tgz
. - Download and extract it to the system:
wget https://pkgs.tailscale.com/stable/tailscale_1.34.1_arm64.tgz # [tl! .cmd:2]
tar xvf tailscale_1.34.1_arm64.tgz
cd tailscale_1.34.1_arm64/
- Install the binaries and service files:
sudo install -m 755 tailscale /usr/bin/ # [tl! .cmd:4]
sudo install -m 755 tailscaled /usr/sbin/
sudo install -m 644 systemd/tailscaled.defaults /etc/default/tailscaled
sudo install -m 644 systemd/tailscaled.service /usr/lib/systemd/system/
- Start the service:
sudo systemctl enable tailscaled # [tl! .cmd:1]
sudo systemctl start tailscaled
From that point, just sudo tailscale up
like normal.
{{% notice note "Updating Tailscale" %}} Since Tailscale was installed outside of any package manager, it won't get updated automatically. When new versions are released you'll need to update it manually. To do that:
- Download and extract the new version.
- Install the
tailscale
andtailscaled
binaries as described above (no need to install the service files again). - Restart the service with
sudo systemctl restart tailscaled
. {{% /notice %}}