Replies: 5 comments 14 replies
-
Typically, device files related to Direct Rendering Infrastructure (DRI), such as
|
Beta Was this translation helpful? Give feedback.
-
If I'm not mistaken, the correct file permissions for |
Beta Was this translation helpful? Give feedback.
-
In summary, the problem doesn't lie with the script itself, but rather with the incorrect group assignment, which prompted you to make permission changes. I recommend utilizing the "render" group and setting file permissions to 660. |
Beta Was this translation helpful? Give feedback.
-
Not sure if I'm configured correctly. Proxmox is installed on a mini pc with an N100 CPU. Looks like the pve node group is set to Render but the LXC containers for Jellyfin & Plex are set to ssl-cert. Main pve node:
LXC containers using your scripts for both Jellyfin/Plex:
|
Beta Was this translation helpful? Give feedback.
-
Need testers #2523 (comment) |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Please add this command to your jellyfin install script:
chmod 666 /dev/dri/renderD128
Problem:
Hardware Transcoding via Intel VAAPI does not work.
Solution:
I changed
crw-rw---- 1 root sgx 226, 128 Sep 21 17:43 /dev/dri/renderD128
with
chmod 666 /dev/dri/renderD128
inside the lxc container
to
crw-rw-rw- 1 root sgx 226, 128 Sep 21 17:43 /dev/dri/renderD128
now it works fine.
Beta Was this translation helpful? Give feedback.
All reactions