tux7350

joined 1 year ago
[โ€“] tux7350@lemmy.world 2 points 3 days ago (1 children)

I'm sorry, I'm either not that person or don't get the reference

[โ€“] tux7350@lemmy.world 3 points 3 days ago

Running Plex in a docker container will be your best bet. After installing docker you can run a docker compose file that has your /config folder mapped to a separate location. Here is a sample compose file from the linuxserver.io group, which I highly recommend.

***
services:
  plex:
    image: lscr.io/linuxserver/plex:latest
    container_name: plex
    network_mode: host
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
      - VERSION=docker
      - PLEX_CLAIM= #optional
    volumes:
      - /path/to/plex/library:/config
      - /path/to/tvseries:/tv
      - /path/to/movies:/movies
    restart: unless-stopped

Pay special attention to the section marked "volumes" you'll see the first line is a mapping for the plex config from the host to inside the container. The left side of the ":" is the path as the host sees it, the right side is from inside the container. You can use this compose file in each installation of linux to share your config and watch history as plex will always find it in the /config folder. That's the beauty of containerization!

That being said I wouldn't run two containers at the same time. That could have unintended consequences as each may try to write to the same file at the same time. As long as only one instance of plex is using the config at a time you'll be alright. You can find more info about the compose file here!

If you have any questions, feel free to ask! ๐Ÿ˜

[โ€“] tux7350@lemmy.world 10 points 5 days ago (4 children)

Hey.... do yourself a favor and get a CX-3 flight computer. They're allowed on the written. Don't worry, you can thank me later ๐Ÿ˜œ

[โ€“] tux7350@lemmy.world 3 points 2 weeks ago (1 children)

Can you tell me more?

[โ€“] tux7350@lemmy.world 2 points 2 weeks ago (1 children)

It's really not that hard to use a local account. When it askes for a Microsoft account just hit SHIFT+F10 then type in the command "oobe\bypassnro" and the pc will reboot. Now just don't let the computer connect to internet, and when it askes for internet hit "I don't have an internet connection" and then it will let you continue with a local account.

....I admit though... as I typed that out its pretty annoying lol Not hard, but like... just annoying.

[โ€“] tux7350@lemmy.world 3 points 2 weeks ago (2 children)

Which switch emulator do you use? I'm pretty savy with Linux and run it on my desktop but haven't really taken the dive to set any of them up. Metroid has been calling my name lately and I'm thinking it's now or never. Got any suggestions?

[โ€“] tux7350@lemmy.world 2 points 2 weeks ago

35k for a base Kia? Hell naw, I bought a fully loaded 2024 hyundai elentra hybrid for 34k out the door. Base Kia K4 is 22k plus tax title and reg. That's like almost a third less than what I paid lol

[โ€“] tux7350@lemmy.world 9 points 3 weeks ago

"I award you no points, and may God have mercy on your soul"

https://youtu.be/yptXkLglKkA

[โ€“] tux7350@lemmy.world 3 points 1 month ago (1 children)

It shouldn't mess with your current routing but if you're running other VPNs you may run into issues.

After you join the machines to the tailnet, each machine gets a new IP address ( only visible to other machines in the tailnet), by default it's a 100.x.y.z you can check the tailnet for the device IP.

Now you can keep the port closed on your router and it will still be accessible over the usual lan ip and port. But when you want to access remotely, turn on tailscale and connect using the tailnet IP.

Another cool thing you can do with this setup is turn your home server into an exit node. By default it will only route things that are in the tailnet (100.x.y.z subnet). But if you turn your home server into an exit node you can funnel all your traffic back through the exit node. Instant free VPN back home!

[โ€“] tux7350@lemmy.world 2 points 1 month ago (3 children)
[โ€“] tux7350@lemmy.world 5 points 1 month ago (5 children)

Unencrypted HTTP can mean that anyone can see your traffic as it passes through their network. Your ISP will see that traffic. If you're streaming pirated music and you're in a country that cares about those things, might not go very well. From a security stand point though, you still wouldn't want to trust the authentication on the open port. A vulnerability may exist that you don't know about. It's always better to keep them closed and add another layer or two between your home computer and the public.

Tailscale let's you tunnel into your home network without opening any ports, and it encrypts the traffic. Much safer way of doing it.

view more: next โ€บ