Kekin

joined 2 years ago
[–] [email protected] 3 points 1 month ago

I can speak from my experience with an Apple TV, the application "Infuse" works amazing with a jellyfin server. Though the application is essentially $1 month subscription, but works across all your apple devices, if you have any. I think it's worth it.

Additionally, the official app for Android TV worked pretty well when I last tried it on an Nvidia Shield

[–] [email protected] 2 points 6 months ago

Well when I was a teenager I liked pvp games. Now I don't. I assume when they're adults some of them will feel the same, probably

[–] [email protected] 4 points 7 months ago (2 children)

Not really through Caddy but for my setup I have it so the ssh port for Forgejo is only accessible through tailscale. So for push/pulling updated my ssh config file to something like

Host git.mysite.com HostName tailscaleMachineName User git Port 1234

Then doing git pull [email protected]:user/project.git works just fine as long as I am connected to tailscale

Otherwise you could open the port for Forgejo's ssh so that you can access it without any vpn

[–] [email protected] 6 points 10 months ago

For this same dumb reason I wanted to play Forza Motorsport 7 on PC and couldn't buy it.

And somehow you can still get NFS games that are at least 10 years old I think

[–] [email protected] 1 points 10 months ago* (last edited 10 months ago)

The one example I can think of is the Remnant games, at least for Remnant 2 on release it was cheaper on Epic Store than on Steam, by like 10 USD if I recall correctly

[–] [email protected] 2 points 10 months ago

I tried it out for a while and I think a new feature? is that you can control de brightness of the monitor through Plasma. Cool for one monitor but I have 2 and one is brighter than the other at a given brightness %, so it got a bit annoying. I didn't look further into it but when 6.1 is released on Fedora I will probably need to.

Additionally the SDR colors when HDR is turned on looked better overall. Better than Windows was able to do even. Awesome stuff

[–] [email protected] 21 points 11 months ago

mfers raised the yearly price from 80 USD to 100 this year, and then they sent me an email that next year it'll be 120! a 50% increase in two years, insane.

[–] [email protected] 15 points 11 months ago (5 children)

I use Photoprism, mainly because it seems stable so far, and it's good enough for my needs

[–] [email protected] 1 points 11 months ago (1 children)

May be related to this: https://github.com/jellyfin/jellyfin/issues/11380

I know my setup with intel integrated gpu worked prior to the release pf 10.9. Now I can't get transcoding to work. In the comments they suggest the kernel version has something to do with it but for me it didn't fix it. I'll have to troubleshoot further today

Meanwhile transcoding works fine in Plex, so I feel it may be something specific to jellyfin

[–] [email protected] 7 points 11 months ago (3 children)

I can speak at least for rootless podman, I spent some hours on it and different ways I tried all ended in permission issues.

I gave up on trying to do it properly and just set the permissions of the /dev/dri device to 666, so that my podman container can use the gpu for transcoding.

Part of the issue with the container images that I tried is that they create a new user with whatever uid:gid I pass to the container, and so even if my nonroot user is part of the render group, the new user inside the container is not and so it can't write to the /dev/dri/renderD128 (gpu), and so transcode wouldn't work.

That's where I left the troubleshooting at cause it was being a headache

[–] [email protected] 4 points 1 year ago

I haven't tried the account linking process yet but I wanted first to log in to PSN through their website and I can't, not even from different devices.

Anyone else having a similar issue?

 

I've been trying to get hardware acceleration working on rootless containers of Plex and Jellyfin and I can't get it to work the proper way.

My current workaround is having my device /dev/dri/renderD128 with permissions set to 666, but I feel like that really isn't an ideal setup.

Some things I've done:

-Currently I'm running my containers with my user with ID 1000.

-My user is part of the render group, which is the group assigned to:

    /dev/dri/renderD128

-I'm passing the device to the containers as such:

  --device /dev/dri:/dev/dri

-In my plex container for example, I'm passing the IDs to use as such:

   -e PUID=1000 and -e PGID=1000

-I tried the option "--group-add keep-groups" and I see the groups in the container but I believe they're assigned to the root user in the container, and from my understanding, the plex and jellyfin images I've tried I think they create a user inside with the IDs I pass, in this case 1000, and so this new user doesn't get assigned my groups on the host. I'm using the LinuxServer.io images currently but I saw the official plex image creates a user named "plex". The LinuxServer.Io images create a user named "abc".

-Out of curiosity on the host I changed the group of /dev/dri/renderD128 to my user's group 1000, but that didn't work either

-I tried with the --privileged option too but that didn't seem to work either, at least running podman as my user.

-I haven't tried running podman as root for these containers, and I wonder how that compares security-wise vs having my /dev/dri/renderD128 with permissions set to 666

For some context, I've been transitioning from Docker to Podman rootless over the past 5 days maybe. I've learned a couple of things but this one has been quite a headache.

Any tips or hints would be appreciated. Thanks!

view more: next ›