Greetings. I’m one of those guys that “came here from Lunduke” btw.
I’ve been busy reinstalling my systems with OpenMandriva and ran into a critical roadblock with tailscale when installing via their script (something about a “GPG signature verification error”). I’m lazy and don’t have time to figure it out (and didn’t find any tailscale topics in the OMAlx forums) so I just installed tailscale from their static binaries. Here’s how I did it in Rome (I’m guessing it should also work in Rock).
- Grab the static binaries from the tailscale website:
https://pkgs.tailscale.com/stable/#static
(I downloaded amd64) - Unpack with tar xvf tailscale_VERSION_ARCH.tgz
- CD into the unpacked folder. Inside the folder you will find 2 binaries and a systemd sub-folder. You will need to manually copy these files into your OpenManrdiva filesystem (with sudo):
a) Copy the binaries tailscale and tailscaled to /usr/bin
b) CD into the systemd folder. Rename “tailscaled.defaults” to “tailscaled” and then copy it to /etc/default
c) Copy tailscaled.service to /etc/systemd/system - Configure systemd to run tailscale automatically. Run the following commands in order (enter password when prompted):
a) systemctl daemon-reload
b) systemctl enable tailscaled.service (…enables the tailscaled service)
c) systemctl is-enabled tailscaled.service (…checks to see that the service is enabled)
d) systemctl start tailscaled.service (…starts the tailscaled service)
e) systemctl status tailscaled.service (…confirms if the service is active and running) - If you didn’t see any errors and the tailscaled service is running and active, you can then proceed to bring tailscale up:
sudo tailscale up - Follow the standard tailscale procedure to approve your node
That’s it!
BONUS: manage your tailscale with the Trayscale gui
- Go to Flathub and and install Trayscale
- Before running Trayscale, run the following command from a terminal (it only needs to be done once):
sudo tailscale set --operator=$USER - Open Trayscale. It should bring up a window GUI and also put an icon in the task tray.
- Optional: make Trayscale auto-start whenever you logon to your OpenMandriva system by adding it to System Settings–>Autostart
I hope this helps someone who may be struggling with tailscale like I was.
OK, back to replacing more of my systems with OpenMandriva. Cheers!