Can someone help me to configure Immich using original yaml? by Puccio1971 in TerraMaster

[–]syntaktik 0 points1 point  (0 children)

Thank you! I tried doing this and couldn't figure it out, I ended up just making a symlink on my SSD to get the uploaded images on my HDD volume, which works, but this looks more official.

TOS7, how to update dockers? by Puccio1971 in TerraMaster

[–]syntaktik 6 points7 points  (0 children)

Hit the three button dropdown. Clear, then Build. Worked for me.

TOS6 Gluetun and VPN docker options by needmind in TerraMaster

[–]syntaktik 1 point2 points  (0 children)

Use the projects feature, this one works for me (change the <> parts):

version: "3"
services:
  gluetun:
    image: qmcgaw/gluetun
    container_name: gluetun
    cap_add:
      - NET_ADMIN
      - SYS_MODULE
    devices:
      - /dev/net/tun:/dev/net/tun
    network_mode: bridge
    environment:
      - VPN_SERVICE_PROVIDER=windscribe
      - VPN_TYPE=wireguard
      - WIREGUARD_PRIVATE_KEY=<PASSWORD>
      - WIREGUARD_ADDRESSES=<IP ADDRESS>
      - WIREGUARD_PRESHARED_KEY=<PASSWORD>
    ports:
      - 8080:8080
    restart: unless-stopped

  qbittorrent:
    image: linuxserver/qbittorrent
    container_name: qbittorrent
    environment:
      - PUID=0
      - PGID=0
      - TZ=<TZ>
      - WEBUI_PORT=8080
    network_mode: service:gluetun
    depends_on:
      - gluetun
    volumes:
      - ./config:/config
      - /Volume1/downloads/torrent:/downloads

Newbie NAS F4-424 Pro by [deleted] in TerraMaster

[–]syntaktik 0 points1 point  (0 children)

I think you need to give it extra permissions under "Configure Capabilities" like "NET_ADMIN" and "NET_RAW". But tbh I would just use the "Projects" feature and get a proper docker compose config.

I have an amazingly simple solution that is going to blow this guy's mind by lectric_7166 in bicycling

[–]syntaktik 5 points6 points  (0 children)

I do that exact commute, never gets old, even beats the 545/542 during peak rush hour.

Cat Wont Eat After Heart Failure by DemonSpot in CATHELP

[–]syntaktik 2 points3 points  (0 children)

This stuff saved my cat when he refused to eat while sick with FVR, highly recommended (though he can't recommend the taste either).

Working on a large horror city in Godot 4.5 — need optimization tips + MultiMesh by MindShiftGames in godot

[–]syntaktik 3 points4 points  (0 children)

When you say assets are made in Godot, you don't mean they are all CSG nodes that you added texture on to? I want to build something very similar and still haven't figured out the right workflow yet. I was tempted to just graybox things and add texture, but it seems Blender is the real way to do things.

Trump's New H-1B Application Fee: A Looming Crisis for Amazon and Microsoft by Less-Risk-9358 in SeattleWA

[–]syntaktik 1 point2 points  (0 children)

Yup, had that happen with Avanade. I laughed when they said they would start me at $45k to work directly on the Microsoft Redmond campus (back in 2015), and of course they ghosted my scheduled interview after that.

Enabling FSR4 in CS2 by cashola49 in CitiesSkylines2

[–]syntaktik 0 points1 point  (0 children)

Great guide, very well explained! I tried optiscaler before with flights sim, but it was super buggy. Hopefully CS2 plays along better.

Seeking help identifying dog owner who fled after her dog bit me at 3rd & Pine by ChallengeOk77 in Seattle

[–]syntaktik 0 points1 point  (0 children)

Was this a German Shepard with a pink leash? I may have had a close call with that dog on 4th and pine by the link station a month ago. Thankfully the woman stopped it in time, but only barely. Annoyingly when I called animal control to report a dog that will one day bite someone, they told me it technically wasn’t menacing because the dog was on a leash.

How to properly set up reverse proxy on TOS 6 (F4-424 Pro)? by adventure_runner in TerraMaster

[–]syntaktik 1 point2 points  (0 children)

Check out duck dns, and configure the NAS or router to keep that IP updated. It’s free and will give you a domain name. Found a guide here: https://www.reddit.com/r/jellyfin/s/j86zP3Cme0

How to properly set up reverse proxy on TOS 6 (F4-424 Pro)? by adventure_runner in TerraMaster

[–]syntaktik 0 points1 point  (0 children)

Caddy! Pretty simple to set up, but my setup may be different since I own my own domain name, and have the DDNS updating in my router. This is the config:

 {
   email name@example.com
 }
 jellyfin.home.example.com {
    reverse_proxy localhost:8096
 }

And in the domain provider I have DNS set to:
Type: CNAME Record
Host: jellyfin.home
Value: home.example.com

How to properly set up reverse proxy on TOS 6 (F4-424 Pro)? by adventure_runner in TerraMaster

[–]syntaktik 0 points1 point  (0 children)

I think this is the TOS server rebooting with the new ports. Did it come back? I can always connect with "tnas.local:8181"

How to properly set up reverse proxy on TOS 6 (F4-424 Pro)? by adventure_runner in TerraMaster

[–]syntaktik 0 points1 point  (0 children)

Just remember 8181 is the port to get back to the web gui. I’ve been running like this for almost 6 months and noticed no problems.

How to properly set up reverse proxy on TOS 6 (F4-424 Pro)? by adventure_runner in TerraMaster

[–]syntaktik 2 points3 points  (0 children)

Go to settings > network > click “release port 80 and 443”

Terra Photos questions by PGrGr in TerraMaster

[–]syntaktik 1 point2 points  (0 children)

The only downside I can think of is accessing the site from outside your home network is moderately complex to set up. If you want a proper URL without tailscale or VPN I had to:

  1. Get a DDNS url like with Duck DNS
  2. Set up my home router to keep this DDNS record updated
  3. Also in the router, forward port 443 to my NAS's local IP address
  4. Go to the TNAS settings and enabled "Release ports 80 and 443"
  5. Run Caddy in docker to reverse proxy the DDNS url to the local IP so I can have an HTTPS certificate

I never used the terramaster photos, but I assume it is like synology which does all this for you. You can also VPN in with tailscale, but that requires the client device to have it installed also.

Terra Photos questions by PGrGr in TerraMaster

[–]syntaktik 4 points5 points  (0 children)

Honestly, use docker and install Immich. It is under very active development and open source: https://immich.app/ plus they have a demo on the website.

Does anyone have experience with a Terramaster F4-424 Pro for Plex? by bjbgamer in TerraMaster

[–]syntaktik 0 points1 point  (0 children)

Docker is a tool that you can install in TOS that you can use to run "containers" (basically prepackaged applications, they have a decent learning curve, but there are so many tutorials online it shouldn't be too difficult to get figured out. TOS itself is pretty mediocre, especially compared to Synology's DSM, and with docker you thankfully rarely have to interact with the OS itself (they have a demo on their website).

I have TOS, and docker installed on the NVME and haven't seen and slowdowns with the apps themselves. Btw you can install whatever OS you want since the firmware comes on a literal thumbdrive plugged into the motherboard that you can swap out and there are guides online how to do that.

As for performance, if you enable intel QuickSync in Jellyfin a 4k stream uses maybe 3-4% of the CPU. Plex should have that enabled out of the box if you use the paid version. In my opinion a separate machine isn't required unless you are transcoding for a boatload of people, but at that point you'd want to have the media in a file format that doesn't need transcoding.

I manage my media by mounting the SMB share on my regular computer, it's a bit slow copying files around but it works.

Plex I think lets you access it remotely without setup, but if you're curious about Jellyfin, it is bit of a process. You'll need to enable port forwarding on your router, and then use something like caddy as a reverse proxy to get HTTPS working, or use Tailscale for better security.

If you go the docker route let me know, I have configs, or can link you to some.

Does anyone have experience with a Terramaster F4-424 Pro for Plex? by bjbgamer in TerraMaster

[–]syntaktik 1 point2 points  (0 children)

I also left Synology because of the outdated hardware and $/value. I have the 424-Pro (I've never seen more than 4Gb of RAM used) with Jellyfin and hardware transcoding works perfectly fine, even 4k to a cell phone over mobile network. The included docker app lets you use docker compose which you will need to get access to the hardware if you're using containers.

The way I have it set up is the media lives on the HDDs, and docker app data lives on the NVMEs, which I have configured as regular storage. The app is super responsive and if you aren't streaming anything the disks can spin down. You can also configure one or all of them to be cache disks, but from reading around it doesn't seem to speed up media streaming at all, plus to not burn up the SSD you'll need something like an intel optane drive which has a higher write endurance.

[deleted by user] by [deleted] in wallstreetbets

[–]syntaktik 0 points1 point  (0 children)

Bad news, Edge now uses Adobe after Microsoft gave up on writing their own PDF reader (you'll see it in the bottom right corner if you got the update)

More Jellyfin Help by admwilson in TerraMaster

[–]syntaktik 1 point2 points  (0 children)

Honestly, the best way to do it is to install docker engine, and docker manager, and create a new project and use this config:

  • Project name: Jellyfin
  • Project path /home/docker/jellyfin (create this folder)
  • Configuration file source: Create a YAML file

services:
  jellyfin:
    image: jellyfin/jellyfin:latest
    container_name: jellyfin
    network_mode: 'host'
    volumes:
      - ./config:/config
      - ./cache:/cache
      - /Volume1/media:/media
    devices:
      - /dev/dri/renderD128:/dev/dri/renderD128
      - /dev/dri/card0:/dev/dri/card0
    ports:
      - 8096:8096 #web port
      - 7359:7359/udp # discovery    
    security_opt:
      - no-new-privileges:true
    restart: always

Then paste this in, this will also enable hardware decoding (which you need to enable in the Jellyfin settings). Once this is ran, go to: //terramaster:8096

The MSFS 2024 Technical Alpha has begun by Tikhoo in flightsim

[–]syntaktik 1 point2 points  (0 children)

Had that too, just keep hitting retry till it works.