I’m excited to try out HEVC transcoding, but after a few restarts and waiting overnight I’m not seeing the setting. I’m running an i7-10710U CPU with Ubuntu LTS (24.04.1, kernel 6.8.0-51 as of this writing). The only GPU listing I see in Plex is “auto” so I’m not sure if that means the card is seen or not.
Before I pull my hair out, I’m wondering if my system is even set up properly. Is there some way to verify that everything needed is in place? I see lots of information about NVIDIA cards, Docker setups, etc., but I’m just using an Intel NUC with Plex installed directly.
Is this in a docker or lxc? You have no GPUs in /dev/dri. lshw -c display to make sure the iGPU is seen and claimed by the OS.
Also id plex and make sure it is part of video group.
# If you change this file, run 'update-grub' afterwards to update
# /boot/grub/grub.cfg.
# For full documentation of the options in this file, see:
# info -f grub -n 'Simple configuration'
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=hidden
GRUB_TIMEOUT=0
GRUB_DISTRIBUTOR=`( . /etc/os-release; echo ${NAME:-Ubuntu} ) 2>/dev/null || echo Ubuntu`
GRUB_CMDLINE_LINUX_DEFAULT="quiet nosplash nomodeset"
GRUB_CMDLINE_LINUX=""
# If your computer has multiple operating systems installed, then you
# probably want to run os-prober. However, if your computer is a host
# for guest OSes installed via LVM or raw disk devices, running
# os-prober can cause damage to those guest OSes as it mounts
# filesystems to look for things.
#GRUB_DISABLE_OS_PROBER=false
# Uncomment to enable BadRAM filtering, modify to suit your needs
# This works with Linux (no patch required) and with any kernel that obtains
# the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...)
#GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef"
# Uncomment to disable graphical terminal
#GRUB_TERMINAL=console
# The resolution used on graphical terminal
# note that you can use only modes which your graphic card supports via VBE
# you can see them in real GRUB with the command `vbeinfo'
#GRUB_GFXMODE=640x480
# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
#GRUB_DISABLE_LINUX_UUID=true
# Uncomment to disable generation of recovery mode menu entries
#GRUB_DISABLE_RECOVERY="true"
# Uncomment to get a beep at grub start
#GRUB_INIT_TUNE="480 440 1"
From the provided information, it appears that your system is running in a fallback mode with a basic resolution of 800x600. This suggests that the nomodeset parameter is preventing the kernel from initializing the full graphics driver. The nomodeset kernel option disables the kernel’s mode-setting feature, which often limits the graphical capabilities and prevents the system from loading the proper graphics driver.