Selfhosted
A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.
Rules:
-
Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.
-
No spam posting.
-
Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.
-
Don't duplicate the full text of your blog or github here. Just post the link for folks to click.
-
Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).
-
No trolling.
Resources:
- selfh.st Newsletter and index of selfhosted software and apps
- awesome-selfhosted software
- awesome-sysadmin resources
- Self-Hosted Podcast from Jupiter Broadcasting
Any issues on the community? Report it using the report flag.
Questions? DM the mods!
view the rest of the comments
Tailscale client definitely needs to be installed and logged in on the destination device (Steam Deck in this case). Is it possible that you are typing "Sudo" instead of "sudo" in the command after opening Konsole? Linux commands are case-sensitive.
I'm not knowledgeable about the steam deck, but it is also possible that sudo is not installed by default, in which case you will have to install it. sudo is a command that allows you to run other commands as root (basically admin).
I found this article that might help: https://pimylifeup.com/steam-deck-sudo-password/
Actually, watching the video it looks like they first enter:
then enter:
If you don't have the directory
Documents/deck-tailscale/
, then you will have to go back a step and find out where GitHub Desktop is storing the local files.I ran it from the local folder, literaly clicked on tailscale.sh and clicked run in konsole. still says it doesn't exist when I'm fucking looking at it.
Running it from a file explorer may not work due to permissions.
This probably is the issue, when you download a script or binary from the internet it doesn't have execution permission, you would have to right click on folder to open in terminal (that way don't have to cd to it), and check permissions with
ls -la
if it doesn't have permission, change it withchmod
You have to setup a sudo password originally to install things in desktop mode but that has been done, sudo is not the issue. literally copy and pasted from this article https://github.com/tailscale-dev/deck-tailscale. It fails on step 2 claiming the directory does not exist.
use
ls
command, as in the video, to list the contents of a directory, then usecd
to change directory based on what you see. You can usecd ..
to navigate to the parent directory of your current location if needed.Also make note of the Local path shown when cloning the repository in the previous step to help find it. When you see "tailscale.sh" as one of the items after typing
ls
, then you will know you are in the right place.