Install Tailscale on LibreELEC
- SSH Into LibreElec
- cd into the /storagedirectory 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.shin the/storage/.configdirectory and make it executable.
1nano /storage/.config/autostart.sh && chmod +x /storage/.config/autostart.shAdd the following contents:
1(
2cd /storage/tailscale_1.84.0_arm64 &&
3./tailscaled --state=tailscaled.state
4) &