Install Tailscale on LibreELEC
- SSH Into LibreElec
- cd into the
/storage
directory and download the latest release of tailscale from the URL that corresponds with your CPU architecture https://pkgs.tailscale.com/stable/#static
cd /storage && wget https://pkgs.tailscale.com/stable/tailscale_1.84.0_arm64.tgz
- Extract the file (optionally remove the tar to save space and keep the directory cleaner)
1tar xzvf ailscale_1.84.0_arm64.tgz \
2rm tailscale_1.84.0_arm64.tgz # optional
- Create a file called
autostart.sh
in the/storage/.config
directory and make it executable.
1nano /storage/.config/autostart.sh && chmod +x /storage/.config/autostart.sh
Add the following contents:
1(
2cd /storage/tailscale_1.84.0_arm64 &&
3./tailscaled --state=tailscaled.state
4) &