Skip to content

Instantly share code, notes, and snippets.

View nning's full-sized avatar
🐿️

henning mueller nning

🐿️
View GitHub Profile
@nning
nning / README.md
Last active April 19, 2024 21:43
Install tailscale on Steam Deck without root

Install Tailscale on Steam Deck without root

Make sure you have a password set for deck, because the install script will need sudo to suid root the tailscaled binary.

  • Create folder tailscale in home directory of deck user mkdir -p ~/tailscale
  • Make install script executable chmod +x ~/tailscale/tailscale-install-user.sh
  • Run install script ./tailscale/tailscale-install-user.sh
#!/usr/bin/env ruby
#
# ./move.rb <source_dir> <target_dir>
#
# Renames files in target_dir according to source_dir
require 'fileutils'
dir1 = File.expand_path(ARGV[0])
dir2 = File.expand_path(ARGV[1])