- Go to the the Tailscale Linux Download Website and select 'Other' as the distro.
- Enable SSH on the NAS, and SSH into the admin account
- Do
su
and type in the admin password - Download the stable release for 'arm' not arm64 in the admin home directory
- Unpack the archive with
tar xvf tailscale_VERSION_ARCH.tgz
tailscale -> /usr/bin
tailscaled -> /usr/sbin
systemd/tailscaled.service -> /etc/systemd/system
chmod +x /usr/bin/tailscale
chmod +x /usr/sbin/tailscaled
- Remove lines 4 & 5 (the
Wants=
line andAfter=
line) - Remove line 8 (the
EnvironmentFile=
line) - Remove everything after
tailscaled.sock
on the line starting withExecStart=
The file should look like this
systemctl start tailscaled
tailscale up
systemctl enable tailscaled
Tell me if anything is broken or doesn't work.
Thanks for the instructions. I want to install Tailscale on my ReadyNAS NV+ v2 but I'm not able to start the service.
I get this message "bash: systemctl: command not found"
root@nas-v2:~# systemctl start tailscaled
bash: systemctl: command not found
Thanks