Nvidia on Ubuntu: Difference between revisions

From Freephile Wiki
wip
 
use Subpages template
 
(38 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Because I wanted to run a local [[Artificial Intelligence]] platform called [[Ollama]], I wanted to ensure that my GPU was fully utilized in the system since GPUs are the particular type of hardware best suited for these [[Vector database|Vector]] calculations. And, I have a 'decent' GPU - [[PC Build 2024#Video Card (GPU)|Nvidia GeForce RTX 4060]] (the best you could get at the time). In trying to install the latest Nvidia driver, I set off on a week's long journey of learning, frustration and perseverance discovering the inner workings of Ubuntu 24.04, Xorg, the Linux kernel and kernel modules, DRM, Secure Boot, initramfs and more.  
Because I wanted to run a local [[Artificial Intelligence]] platform called [[Ollama]], I wanted to ensure that my GPU was fully utilized in the system since GPUs are the particular type of hardware best suited for these [[Vector database|Vector]] calculations<ref>https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#the-benefits-of-using-gpus</ref>. And, I have a 'decent' GPU - [[PC Build 2024#Video Card (GPU)|Nvidia GeForce RTX 4060]] (the best you could get when I built the system in 2024). In trying to install the latest Nvidia driver, I set off on a week-long journey of learning, frustration and perseverance discovering the inner workings of Ubuntu 24.04, Xorg, the Linux kernel and kernel modules, DRM, Secure Boot, initramfs and more.  


I still do not have the Nvidia driver loaded - even after 40+ reboots and attempts. Instead I'm using the Nouveau driver but at least I have a working system and I believe now that I've finally figured out what needs to be done to disable Nouveau and install Nvidia - a project that I might tackle shortly. I'm just documenting the things that I encountered in this journey so that I can pick it back up at the right time.
I still do not have the Nvidia driver loaded - even after 40+ reboots and attempts. Instead I'm using the Nouveau driver but at least I have a working system and I believe now that I've finally figured out what needs to be done to disable Nouveau and install Nvidia - a project that I am approaching with greater scrutiny now. I'm documenting the things that I encounter in this journey.
 
Why not just continue to use [https://nouveau.freedesktop.org/index.html Nouveau], a project of the [https://www.freedesktop.org/wiki/ freedesktop] community? I mean "if it ain't broke, don't fix it" - right? In principle, I'd very much like to use nouveau. I'm not even sure that any alternative is "better" in any way - especially since ''I am not a gamer''<ref>I'm not opposed in any way, I just don't have the time to add another hobby. This is a clarifying statement for my use-case, and therefore, requirements.</ref>. My use case is to get the best performance from local LLMs. As I become familiar with the methods to switch video drivers reliably, I intend to run benchmarks and explore the benefits of one configuration vs another.
 
== Status ==
As of 2025-07-03, I'm still not running with an NVIDIA driver. According to [https://www.reddit.com/r/Ubuntu/comments/1li7wg7/how_do_i_install_nvidiadriver575_correctly/ a Reddit thread] just days ago, it's always been rather messy getting the right system together. I should "upgrade your system either to Ubuntu 25.04 for Wayland experience and no working suspend to RAM, or to 24.04 if you need suspend to RAM, but are Ok with using X11 instead of Wayland."
 
Since I'm on 24.04, and I've tried using X11 instead of Wayland without success, I plan to ensure my home directory is on its own partition and reinstall the OS to 25.04
 
== Opposite ==
To go the opposite route, purging all proprietary drivers and installing the open source Nouveau driver, you pretty much just <code>sudo apt install xserver-xorg-video-nouveau</code> You might find seemingly good content/tutorials by linuxconfig, but I'm intentionally not linking to their site or YouTube videos because their content is plausible, but sketchy - IOW, it is Artificial Intelligence '''[[wp:AI slop|slop]]'''. <ref>linuxconfig.org/how-to-install-nvidia-drivers-on-ubuntu-24-04 describes how to get Nvidia drivers working on Ubuntu 24, but curiously refers to deprecated commands like 'ubuntu drivers autoinstall'. They have a whole section where they talk about downloading 'drivers' from Nvidia - but the '.run' files are '''not''' drivers at all, they are installers. And they instruct you to use 'telinit' to switch runlevels when the concept of SysV runlevels is obsolete (and thus so is the command). Granted the telinit command will be transparently translated into systemd unit activation requests, but old, deprecated "howto" is "how '''NOT''' to".</ref>
 
== About this System ==
In your desktop environment, you can access 'System Settings' -> '[[About this System]]' ([https://docs.kde.org/stable5/en/kinfocenter/kinfocenter/index.html KInfoCenter]) to display basic info about your Software and Hardware environment including the 'graphics processor'. Mine says '''NV197''' - which is the codename given to the card by the Nouveau project<ref>https://nouveau.freedesktop.org/CodeNames.html</ref>. You can click on 'Show More Information' which reveals a multi-tab dialog for OpenCL, OpenGL, Vulkan, Window Manager and X-Server with extensive Graphics info.
 
Or, you can also get details from a variety of CLI commands like glxinfo, lspci etc.
 
<code>glxinfo | grep -E "OpenGL version|OpenGL renderer"</code>
 
'''OpenGL renderer''' string: NV197
 
'''OpenGL version''' string: 4.3 (Compatibility Profile) Mesa 24.2.8-1ubuntu1~24.04.1
 
If you are on a TTY (without a display), <code>lspci</code> shows the same info
 
<code>lspci | grep VGA</code>
 
01:00.0 '''VGA''' compatible controller: NVIDIA Corporation AD107 [GeForce RTX 4060] (rev a1)
 
After the installation of Nvidia drivers fails, you won't have a functioning GPU, since you will no longer have the nouveau driver available either, and so the output of the same glxinfo command will show that "llvmpipe" is the renderer.
 
'''OpenGL renderer''' string: llvmpipe (LLVM 19.1.1, 256 bits)
 
'''OpenGL version''' string: 4.5 (Compatibility Profile) Mesa 24.2.8-1ubuntu1~24.04.1
 
[https://docs.mesa3d.org/drivers/llvmpipe.html LLVMpipe] is a software rasterizer within the Mesa 3D graphics library that utilizes the LLVM compiler infrastructure to perform rendering entirely on the CPU. It acts as a software fallback when a dedicated GPU or its drivers are unavailable or malfunctioning, allowing OpenGL applications to run without hardware acceleration. Essentially, LLVMpipe takes over the rendering process when the GPU can't or shouldn't be used.
 
If dpkg shows xserver-xorg-video-'''nouveau is installed''', then you can switch to it from e.g. "Driver Manager" in Settings. 
 
Synaptic will allow you to view drivers, but you won't be able to switch from that interface (you'll get an error message about a lock file).
 
Although switching drivers from the system settings interface appears to complete without error, I'm not sure how well it works - if at all.
 
I was getting a broken desktop (single monitor, no good results from things like nvidia-smi) after installing Nvidia drivers, and so I tried switching to nouveau - and it somehow eventually worked.  <pre>
apt-get remove -y --purge '^libnvidia-.*' && apt-get remove -y --purge '^nvidia-*' && apt-get remove -y --purge '*575*' && apt -y autoremove
apt -y autoclean
shutdown -r now
(recovery mode)
vim /etc/default/grub
update-grub
</pre>After doing a couple of reboots changing the boot 'modeline' and 'nosplash' options from a recovery console or the TTY, I didn't seem to get anywhere. But when I issued a 'startX' command, and the system booted into the GNOME desktop instead of KDE (?!!??), then I had dual monitors again. Amazingly nvidia-smi returned results, but glxinfo says now that I'm using onboard graphics from the CPU (not the GPU) but it doesn't say LLVMpipe
 
'''OpenGL renderer''' string: Mesa Intel(R) Graphics ('''RPL-S''') 
 
'''OpenGL version''' string: 4.6 (Compatibility Profile) Mesa 24.2.8-1ubuntu1~24.04.1<pre>
sudo lsmod|grep -i nvidia
nvidia_uvm          2158592  4
nvidia_drm            139264  5
nvidia_modeset      1736704  6 nvidia_drm
nvidia              11550720  81 nvidia_uvm,nvidia_modeset
ecc                    45056  2 ecdh_generic,nvidia
video                  77824  3 xe,i915,nvidia_modeset
</pre>Grub right now is 'normal'  <pre>
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
</pre>The NVIDIA persistence daemon is running <pre>
systemctl list-units --type service --all | grep nvidia
  nvidia-persistenced.service                          loaded    active    running      NVIDIA Persistence Daemon
</pre>[[DKMS|dkms]] shows that kernel modules are installed for two kernels<pre>
dkms status
nvidia/575.57.08, 6.8.0-60-generic, x86_64: installed (Original modules exist)
nvidia/575.57.08, 6.8.0-62-generic, x86_64: installed (Original modules exist)
</pre>
 
== GUI is stuck ==
[[File:Proprietary Drivers selection in Software Sources GUI.png|thumb|Unable to select a proprietary driver in "Software Sources"]]
In theory, the GUI (see image) allows you to effortlessly choose and switch between multiple drivers. There are even YouTube videos that show how it's supposed to work<ref>I do not want to link to AI-generated content that creates a worse Internet, but this is what I'm refering to www.youtube.com/watch?v=pmGfi1ldBqc The bot doesn't respond to questions, so is my experience different because I have Secure Boot enabled? Is my experience different because something changed in the OS between Ubuntu 20 and Ubuntu 24?</ref>. In practice, at least on my system, installing a second driver is not possible from a Graphical desktop environment.
 
If you go into the Graphical User Interface (GUI) for "System Settings" and then "Hardware -> Driver Manager" it would appear to allow you to simply choose to use a proprietary driver from Nvidia. But all the choices are disabled (grayed out). Every attempt I made to "install an Nvidia driver" - whether through a graphical package manager like Synaptic, or the CLI using apt or dpkg, would just result in a "non-working" graphics system where I didn't even have dual monitor support.


== X.org ==
== X.org ==


Here is the [[Xorg.log]] file from my first boot into a clean system having no Nvidia drivers.


== Nouveau ==
The XServer is loading the nouveau driver package '''xserver-xorg-video-nouveau'''.
From the package description:
<blockquote>
This driver for the X.Org X server (see xserver-xorg for a further description) provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards.
This package provides 2D support including EXA acceleration, Xv and RandR.  3D functionality is provided by the libgl1-mesa-dri package.
This package is built from the FreeDesktop.org xf86-video-nouveau driver.
</blockquote>
=== Inspection ===
<tt>'''[[Packages|dpkg]]'''</tt> can show us what packages are installed with 'nouveau' in the name.
<code>dpkg -l | grep -i nouveau</code>
<poem style="font-family:monospace;">
ii  libdrm-nouveau2:amd64         2.4.122-1~ubuntu0.24.04.1    amd64    Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  xserver-xorg-video-nouveau    1:1.0.17-2build1             amd64    X.Org X server -- Nouveau display driver
</poem>
And, <tt>'''lsmod'''</tt> can show us what kernel modules are loaded with 'nouveau' in the name.
<code>lsmod | grep nouveau</code>
<poem style="font-family:monospace;">
nouveau              3096576  68
drm_gpuvm              45056  2 xe,nouveau
drm_exec               12288  3 drm_gpuvm,xe,nouveau
gpu_sched              61440  2 xe,nouveau
drm_ttm_helper         12288  2 xe,nouveau
ttm                   110592  4 drm_ttm_helper,xe,i915,nouveau
drm_display_helper    237568  3 xe,i915,nouveau
mxm_wmi                12288  1 nouveau
i2c_algo_bit           16384  3 xe,i915,nouveau
video                  77824  3 xe,i915,nouveau
wmi                    28672  4 video,wmi_bmof,mxm_wmi,nouveau
</poem>
<tt>'''modinfo'''</tt> tells us details about the kernel module, including the dependencies.
[[{{PAGENAMEE}}/modinfo|modinfo (command)]]
What files does the nouveau driver install?
<code>dpkg -L xserver-xorg-video-nouveau</code>
<pre>
<pre>
[    19.041] (--) Log file renamed from "/var/log/Xorg.pid-3147.log" to "/var/log/Xorg.0.log"
/.
[    19.042]
/usr
X.Org X Server 1.21.1.11
/usr/lib
X Protocol Version 11, Revision 0
/usr/lib/xorg
[    19.042] Current Operating System: Linux gdisc 6.8.0-62-generic #65-Ubuntu SMP PREEMPT_DYNAMIC Mon May 19 17:15:03 UTC 2025 x86_64
/usr/lib/xorg/modules
[    19.042] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.8.0-62-generic root=UUID=c8ea6a6c-b39e-4621-9f53-0834937b2e52 ro quiet splash vt.handoff=7
/usr/lib/xorg/modules/drivers
[    19.042] xorg-server 2:21.1.12-1ubuntu1.4 (For technical support please see http://www.ubuntu.com/support)
/usr/lib/xorg/modules/drivers/nouveau_drv.so
[    19.042] Current version of pixman: 0.42.2
/usr/share
[    19.042]    Before reporting problems, check http://wiki.x.org
/usr/share/bug
        to make sure that you have the latest version.
/usr/share/bug/xserver-xorg-video-nouveau
[    19.042] Markers: (--) probed, (**) from config file, (==) default setting,
/usr/share/doc
        (++) from command line, (!!) notice, (II) informational,
/usr/share/doc/xserver-xorg-video-nouveau
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
/usr/share/doc/xserver-xorg-video-nouveau/README.Debian
[    19.042] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jun 25 19:59:02 2025
/usr/share/doc/xserver-xorg-video-nouveau/changelog.Debian.gz
[    19.043] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
/usr/share/doc/xserver-xorg-video-nouveau/copyright
[    19.044] (==) No Layout section.  Using the first Screen section.
/usr/share/man
[    19.044] (==) No screen section available. Using defaults.
/usr/share/man/man4
[    19.044] (**) |-->Screen "Default Screen Section" (0)
/usr/share/man/man4/nouveau.4.gz
[    19.044] (**) |  |-->Monitor "<default monitor>"
/usr/share/bug/xserver-xorg-video-nouveau/script
[    19.046] (==) No monitor specified for screen "Default Screen Section".
</pre>
        Using a default monitor configuration.
[    19.046] (**) Allowing byte-swapped clients
[    19.046] (==) Automatically adding devices
[    19.046] (==) Automatically enabling devices
[    19.046] (==) Automatically adding GPU devices
[    19.046] (==) Automatically binding GPU devices
[    19.046] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    19.046] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    19.046]    Entry deleted from font path.
[    19.046] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    19.046]    Entry deleted from font path.
[    19.046] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    19.046]    Entry deleted from font path.
[    19.047] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    19.047]    Entry deleted from font path.
[    19.047] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    19.047]    Entry deleted from font path.
[    19.047] (==) FontPath set to:
        /usr/share/fonts/X11/misc,
        /usr/share/fonts/X11/Type1,
        built-ins
[    19.047] (==) ModulePath set to "/usr/lib/xorg/modules"
[    19.047] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[    19.047] (II) Loader magic: 0x607ab4890020
[    19.047] (II) Module ABI versions:
[    19.047]    X.Org ANSI C Emulation: 0.4
[    19.047]    X.Org Video Driver: 25.2
[    19.047]    X.Org XInput driver : 24.4
[    19.047]    X.Org Server Extension : 10.0
[    19.048] (++) using VT number 2


[    19.048] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
== NVidia ==
[    19.050] (II) xfree86: Adding drm device (/dev/dri/card2)
Documentation for installing NVidia drivers is at https://docs.nvidia.com/datacenter/tesla/driver-installation-guide/
[    19.050] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card2
 
[   19.054] (II) xfree86: Adding drm device (/dev/dri/card1)
The installation guide for the v570 of the driver (46 chapters) is at https://download.nvidia.com/XFree86/Linux-x86_64/570.153.02/README/  
[    19.054] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card1
 
[    19.058] (--) PCI: (0@0:2:0) 8086:a780:1462:7e07 rev 4, Mem @ 0x6203000000/16777216, 0x4000000000/268435456, I/O @ 0x00005000/64
I've read the whole thing.  
[    19.058] (--) PCI:*(1@0:0:0) 10de:2882:1458:4107 rev 161, Mem @ 0x81000000/16777216, 0x6000000000/8589934592, 0x6200000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
 
[    19.059] (II) LoadModule: "glx"
=== Replacing Nouveau ===
[    19.059] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
See [https://download.nvidia.com/XFree86/Linux-x86_64/570.153.02/README/commonproblems.html#nouveau NVIDIA driver 570.153.02 README common problems #nouveau] where it says basically
[    19.068] (II) Module glx: vendor="X.Org Foundation"
 
[    19.068]    compiled for 1.21.1.11, module version = 1.0.0
# denylist it
[    19.068]    ABI class: X.Org Server Extension, version 10.0
# modify your initramfs
[    19.567] (==) Matched modesetting as autoconfigured driver 0
# modify Xorg to not load nouveau
[   19.567] (==) Matched fbdev as autoconfigured driver 1
 
[   19.567] (==) Matched vesa as autoconfigured driver 2
We explore these in more detail below.
[    19.567] (==) Assigned the driver to the xf86ConfigLayout
 
[   19.567] (II) LoadModule: "modesetting"
Over at StackExchange, a user asked [https://unix.stackexchange.com/questions/352828/how-to-switch-nvidia-driver-from-nouveau-to-nvidia-proprietary how to switch graphics driver from nouveau to nvidia] and succeeded in part by '''modifying the boot parameters in grub''' to deny nouveau. Note that the boot parameters were used only during the process to stop using one driver and install the other driver. It is not a configuration that would allow you to have two different boot menu entries in GRUB in order to use two graphics modes.
[    19.568] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
 
[    19.573] (II) Module modesetting: vendor="X.Org Foundation"
Over in the Manjaro Linux forums, a user asked a similar question: [https://forum.manjaro.org/t/how-do-i-switch-between-nvidia-and-nouveau-drivers-on-boot/92044 How do I switch between Nvidia and Nouveau drivers on boot?] They tried using
[    19.573]    compiled for 1.21.1.11, module version = 1.21.1
 
[    19.573]    Module class: X.Org Video Driver
<code>modprobe.blacklist=nvidia systemd.setenv=GPUMOD=nouveau rd.driver.blacklist=nvidia nouveau.modeset=1 nvidia.modeset=0</code>
[    19.573]    ABI class: X.Org Video Driver, version 25.2
 
[    19.573] (II) LoadModule: "fbdev"
But ultimately had to install the OS twice on different disk partitions in order to choose to boot one system or the other depending on what graphics driver they needed to use.
[    19.573] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
 
[    19.578] (II) Module fbdev: vendor="X.Org Foundation"
=== Denylist ===
[    19.578]    compiled for 1.21.1.11, module version = 0.5.0
I tried denylisting the nouveau driver and preventing it from doing modesetting by creating [[disable-nouveau.conf]] however I was unsuccessful in installing Nvidia drivers even with that in place, and performing operations from a recovery console.
[    19.578]    Module class: X.Org Video Driver
 
[    19.578]    ABI class: X.Org Video Driver, version 25.2
I've looked at the initramfs and don't see where it is loading nouveau. Although I do see where the temporary '''[[disable-nouveau.conf]]''' file I created is read in.
[    19.578] (II) LoadModule: "vesa"
 
[    19.578] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
=== Modify Initial Ram Disk ===
[    19.583] (II) Module vesa: vendor="X.Org Foundation"
The initial ram disk is a gzipped [[wp:Cpio|CPIO]] archive
[    19.583]    compiled for 1.21.1.7, module version = 2.6.0
 
[    19.583]    Module class: X.Org Video Driver
<code>file /boot/initrd.img-6.8.0-62-generic </code>
[    19.583]    ABI class: X.Org Video Driver, version 25.2
 
[    19.583] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
<pre>
[    19.583] (II) FBDEV: driver for framebuffer: fbdev
/boot/initrd.img-6.8.0-62-generic: ASCII cpio archive (SVR4 with no CRC)
[    19.583] (II) VESA: driver for VESA chipsets: vesa
[    19.583] xf86EnableIO: failed to enable I/O ports 0000-03ff (Operation not permitted)
[    19.587] (II) modeset(0): using drv /dev/dri/card2
[    19.587] (WW) Falling back to old probe method for fbdev
[    19.587] (II) Loading sub module "fbdevhw"
[    19.587] (II) LoadModule: "fbdevhw"
[    19.587] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    19.590] (II) Module fbdevhw: vendor="X.Org Foundation"
[    19.590]    compiled for 1.21.1.11, module version = 0.0.2
[    19.590]    ABI class: X.Org Video Driver, version 25.2
[    19.591] (II) modeset(G0): using drv /dev/dri/card1
[    19.593] (II) modeset(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[    19.593] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    19.593] (==) modeset(0): RGB weight 888
[    19.593] (==) modeset(0): Default visual is TrueColor
[    19.593] (II) Loading sub module "glamoregl"
[    19.593] (II) LoadModule: "glamoregl"
[    19.593] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    20.584] (II) Module glamoregl: vendor="X.Org Foundation"
[    20.584]    compiled for 1.21.1.11, module version = 1.0.1
[    20.584]    ABI class: X.Org ANSI C Emulation, version 0.4
[    20.774] (II) modeset(0): glamor X acceleration enabled on NV197
[    20.774] (II) modeset(0): glamor initialized
[    20.774] (==) modeset(0): VariableRefresh: disabled
[    20.774] (==) modeset(0): AsyncFlipSecondaries: disabled
[    20.776] (II) modeset(0): Output HDMI-5 has no monitor section
[    20.777] (II) modeset(0): Output DP-3 has no monitor section
[    20.778] (II) modeset(0): Output HDMI-6 has no monitor section
[    20.779] (II) modeset(0): Output DP-4 has no monitor section
[    20.781] (II) modeset(0): EDID for output HDMI-5
[    20.781] (II) modeset(0): Manufacturer: SAM  Model: 71a2  Serial#: 1129862962
[    20.781] (II) modeset(0): Year: 2021  Week: 53
[    20.781] (II) modeset(0): EDID Version: 1.3
[    20.781] (II) modeset(0): Digital Display Input
[    20.781] (II) modeset(0): Max Image Size [cm]: horiz.: 60  vert.: 34
[    20.781] (II) modeset(0): Gamma: 2.20
[    20.781] (II) modeset(0): DPMS capabilities: Off
[    20.781] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[    20.781] (II) modeset(0): First detailed timing is preferred mode
[    20.781] (II) modeset(0): redX: 0.680 redY: 0.320  greenX: 0.255 greenY: 0.680
[    20.781] (II) modeset(0): blueX: 0.150 blueY: 0.060  whiteX: 0.313 whiteY: 0.329
[    20.781] (II) modeset(0): Supported established timings:
[    20.781] (II) modeset(0): 720x400@70Hz
[    20.781] (II) modeset(0): 640x480@60Hz
[    20.781] (II) modeset(0): 640x480@67Hz
[    20.781] (II) modeset(0): 640x480@72Hz
[    20.781] (II) modeset(0): 640x480@75Hz
[    20.781] (II) modeset(0): 800x600@56Hz
[    20.781] (II) modeset(0): 800x600@60Hz
[    20.781] (II) modeset(0): 800x600@72Hz
[    20.781] (II) modeset(0): 800x600@75Hz
[    20.781] (II) modeset(0): 832x624@75Hz
[    20.781] (II) modeset(0): 1024x768@60Hz
[    20.781] (II) modeset(0): 1024x768@70Hz
[    20.781] (II) modeset(0): 1024x768@75Hz
[    20.781] (II) modeset(0): 1280x1024@75Hz
[    20.781] (II) modeset(0): 1152x864@75Hz
[    20.781] (II) modeset(0): Manufacturer's mask: 0
[    20.781] (II) modeset(0): Supported standard timings:
[    20.781] (II) modeset(0): #0: hsize: 1152  vsize 864  refresh: 75  vid: 20337
[    20.781] (II) modeset(0): #1: hsize: 1280  vsize 800  refresh: 60  vid: 129
[    20.781] (II) modeset(0): #2: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    20.781] (II) modeset(0): #3: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    20.781] (II) modeset(0): #4: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    20.781] (II) modeset(0): #5: hsize: 1600  vsize 900  refresh: 60  vid: 49321
[    20.781] (II) modeset(0): #6: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    20.781] (II) modeset(0): Supported detailed timing:
[    20.781] (II) modeset(0): clock: 297.0 MHz  Image Size:  597 x 336 mm
[    20.781] (II) modeset(0): h_active: 3840  h_sync: 4016  h_sync_end 4104 h_blank_end 4400 h_border: 0
[    20.781] (II) modeset(0): v_active: 2160  v_sync: 2168  v_sync_end 2178 v_blanking: 2250 v_border: 0
[    20.781] (II) modeset(0): Ranges: V min: 30 V max: 75 Hz, H min: 30 H max: 90 kHz, PixClock max 305 MHz
[    20.781] (II) modeset(0): Monitor name: LS27A800U
[    20.781] (II) modeset(0): Serial No: H4ZRC00821
[    20.781] (II) modeset(0): Supported detailed timing:
[    20.781] (II) modeset(0): clock: 148.5 MHz  Image Size:  597 x 336 mm
[    20.781] (II) modeset(0): h_active: 1920  h_sync: 2008  h_sync_end 2052 h_blank_end 2200 h_border: 0
[    20.781] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    20.781] (II) modeset(0): Supported detailed timing:
[    20.781] (II) modeset(0): clock: 148.5 MHz  Image Size:  597 x 336 mm
[    20.781] (II) modeset(0): h_active: 1920  h_sync: 2448  h_sync_end 2492 h_blank_end 2640 h_border: 0
[    20.781] (II) modeset(0): v_active: 1080  v_sync: 1084  v_sync_end 1089 v_blanking: 1125 v_border: 0
[    20.781] (II) modeset(0): Supported detailed timing:
[    20.781] (II) modeset(0): clock: 241.5 MHz  Image Size:  597 x 336 mm
[    20.781] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    20.781] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[    20.781] (II) modeset(0): Number of EDID sections to follow: 1
[    20.781] (II) modeset(0): EDID (in hex):
[    20.781] (II) modeset(0):  00ffffffffffff004c2da27132575843
[    20.781] (II) modeset(0):  351f0103803c22782a0495ae5241ae26
[    20.781] (II) modeset(0):  0f5054bfef80714f810081c081809500
[    20.781] (II) modeset(0):  a9c0b300010104740030f2705a80b058
[    20.781] (II) modeset(0):  8a0055502100001e000000fd001e4b1e
[    20.781] (II) modeset(0):  5a1e000a202020202020000000fc004c
[    20.781] (II) modeset(0):  53323741383030550a202020000000ff
[    20.781] (II) modeset(0):  0048345a524330303832310a2020014d
[    20.781] (II) modeset(0):  020320f0475f120313041f1023090707
[    20.781] (II) modeset(0):  830100006b030c001000b83c20002001
[    20.782] (II) modeset(0):  023a801871382d40582c450055502100
[    20.782] (II) modeset(0):  001e023a80d072382d40102c45805550
[    20.782] (II) modeset(0):  2100001e565e00a0a0a0295030203500
[    20.782] (II) modeset(0):  55502100001a00000000000000000000
[    20.782] (II) modeset(0):  00000000000000000000000000000000
[    20.782] (II) modeset(0):  000000000000000000000000000000dc
[    20.782] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    20.782] (II) modeset(0): Printing probed modes for output HDMI-5
[    20.782] (II) modeset(0): Modeline "3840x2160"x30.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    20.782] (II) modeset(0): Modeline "3840x2160"x30.0  296.70  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.4 kHz e)
[    20.782] (II) modeset(0): Modeline "3200x1800"x30.0  186.68  3200 3248 3280 3360  1800 1803 1808 1852 +hsync -vsync (55.6 kHz d)
[    20.782] (II) modeset(0): Modeline "2880x1620"x30.0  151.94  2880 2928 2960 3040  1620 1623 1628 1666 +hsync -vsync (50.0 kHz d)
[    20.782] (II) modeset(0): Modeline "2560x1600"x30.0  134.31  2560 2608 2640 2720  1600 1603 1609 1646 +hsync -vsync (49.4 kHz d)
[    20.782] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    20.782] (II) modeset(0): Modeline "2560x1440"x30.0  120.85  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (44.4 kHz d)
[    20.782] (II) modeset(0): Modeline "2048x1536"x30.0  133.48  2048 2200 2424 2800  1536 1537 1540 1589 -hsync +vsync (47.7 kHz d)
[    20.782] (II) modeset(0): Modeline "1920x1440"x30.0  117.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (45.0 kHz d)
[    20.782] (II) modeset(0): Modeline "1856x1392"x30.0  109.13  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (43.2 kHz d)
[    20.782] (II) modeset(0): Modeline "1792x1344"x30.0  102.38  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (41.8 kHz d)
[    20.782] (II) modeset(0): Modeline "2048x1152"x30.0  78.49  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (35.5 kHz d)
[    20.782] (II) modeset(0): Modeline "1920x1200"x30.0  77.06  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (37.0 kHz d)
[    20.782] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    20.782] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    20.782] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    20.782] (II) modeset(0): Modeline "1920x1080"x30.0  69.33  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (33.3 kHz d)
[    20.782] (II) modeset(0): Modeline "1600x1200"x30.0  81.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (37.5 kHz d)
[    20.782] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    20.782] (II) modeset(0): Modeline "1680x1050"x30.0  59.62  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (32.4 kHz d)
[    20.782] (II) modeset(0): Modeline "1400x1050"x30.0  61.02  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (32.5 kHz d)
[    20.782] (II) modeset(0): Modeline "1600x900"x60.0  108.00  1600 1624 1704 1800  900 901 904 1000 +hsync +vsync (60.0 kHz e)
[    20.782] (II) modeset(0): Modeline "1600x900"x30.0  48.89  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (27.8 kHz d)
[    20.782] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    20.782] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    20.782] (II) modeset(0): Modeline "1280x1024"x30.0  53.98  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (32.0 kHz d)
[    20.782] (II) modeset(0): Modeline "1440x900"x59.9  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    20.782] (II) modeset(0): Modeline "1400x900"x30.0  43.34  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (27.8 kHz d)
[    20.782] (II) modeset(0): Modeline "1280x960"x30.0  54.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (30.0 kHz d)
[    20.782] (II) modeset(0): Modeline "1440x810"x30.0  75.97  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (50.0 kHz d)
[    20.782] (II) modeset(0): Modeline "1368x768"x30.0  36.21  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (23.7 kHz d)
[    20.782] (II) modeset(0): Modeline "1280x800"x59.9  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    20.782] (II) modeset(0): Modeline "1280x800"x30.0  35.55  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (24.7 kHz d)
[    20.782] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    20.782] (II) modeset(0): Modeline "1152x864"x30.0  43.20  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (27.0 kHz d)
[    20.782] (II) modeset(0): Modeline "1280x720"x60.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    20.782] (II) modeset(0): Modeline "1280x720"x50.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    20.782] (II) modeset(0): Modeline "1280x720"x59.9  74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    20.782] (II) modeset(0): Modeline "1280x720"x30.0  32.01  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (22.2 kHz d)
[    20.782] (II) modeset(0): Modeline "1024x768"x75.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    20.782] (II) modeset(0): Modeline "1024x768"x70.1  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    20.782] (II) modeset(0): Modeline "1024x768"x60.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    20.782] (II) modeset(0): Modeline "1024x768"x30.0  32.50  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (24.2 kHz d)
[    20.782] (II) modeset(0): Modeline "960x720"x30.0  58.50  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (45.0 kHz d)
[    20.782] (II) modeset(0): Modeline "928x696"x30.0  54.53  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (43.1 kHz d)
[    20.782] (II) modeset(0): Modeline "896x672"x30.0  51.19  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (41.8 kHz d)
[    20.782] (II) modeset(0): Modeline "1024x576"x30.0  21.06  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (17.8 kHz d)
[    20.782] (II) modeset(0): Modeline "960x600"x30.0  38.50  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (37.0 kHz d)
[    20.782] (II) modeset(0): Modeline "832x624"x74.6  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    20.782] (II) modeset(0): Modeline "832x624"x30.0  23.05  832 864 928 1152  624 625 628 667 -hsync -vsync (20.0 kHz d)
[    20.782] (II) modeset(0): Modeline "960x540"x30.0  18.68  960 1008 1040 1120  540 543 548 556 +hsync -vsync (16.7 kHz d)
[    20.782] (II) modeset(0): Modeline "800x600"x72.2  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    20.782] (II) modeset(0): Modeline "800x600"x75.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    20.782] (II) modeset(0): Modeline "800x600"x60.3  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    20.783] (II) modeset(0): Modeline "800x600"x56.2  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    20.783] (II) modeset(0): Modeline "800x600"x30.0  19.20  800 824 896 1024  600 601 603 625 +hsync +vsync (18.8 kHz d)
[    20.783] (II) modeset(0): Modeline "840x525"x30.0  29.81  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (32.4 kHz d)
[    20.783] (II) modeset(0): Modeline "864x486"x30.0  15.36  864 912 944 1024  486 489 494 500 +hsync -vsync (15.0 kHz d)
[    20.783] (II) modeset(0): Modeline "720x576"x50.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    20.783] (II) modeset(0): Modeline "700x525"x30.0  30.51  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (32.5 kHz d)
[    20.783] (II) modeset(0): Modeline "800x450"x30.0  24.45  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (27.8 kHz d)
[    20.783] (II) modeset(0): Modeline "720x480"x60.0  27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    20.783] (II) modeset(0): Modeline "720x480"x59.9  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    20.783] (II) modeset(0): Modeline "640x512"x30.0  26.99  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (32.0 kHz d)
[    20.783] (II) modeset(0): Modeline "700x450"x30.0  21.67  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (27.8 kHz d)
[    20.783] (II) modeset(0): Modeline "640x480"x75.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    20.783] (II) modeset(0): Modeline "640x480"x72.8  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    20.783] (II) modeset(0): Modeline "640x480"x66.7  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    20.783] (II) modeset(0): Modeline "640x480"x60.0  25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    20.783] (II) modeset(0): Modeline "640x480"x59.9  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    20.783] (II) modeset(0): Modeline "640x480"x30.0  12.60  640 656 752 800  480 490 492 525 -hsync -vsync (15.8 kHz d)
[    20.783] (II) modeset(0): Modeline "720x405"x30.0  11.06  720 768 800 880  405 408 413 419 +hsync -vsync (12.6 kHz d)
[    20.783] (II) modeset(0): Modeline "720x400"x70.1  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    20.783] (II) modeset(0): Modeline "684x384"x30.0  18.11  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (23.7 kHz d)
[    20.783] (II) modeset(0): Modeline "576x432"x30.0  21.60  576 608 672 800  432 432 434 450 doublescan +hsync +vsync (27.0 kHz d)
[    20.783] (II) modeset(0): Modeline "640x360"x30.0    8.98  640 688 720 800  360 363 368 374 +hsync -vsync (11.2 kHz d)
[    20.783] (II) modeset(0): Modeline "512x384"x30.0  16.25  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (24.2 kHz d)
[    20.783] (II) modeset(0): Modeline "512x288"x30.0  10.51  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (17.8 kHz d)
[    20.783] (II) modeset(0): Modeline "416x312"x30.0  11.51  416 432 464 576  312 312 314 333 doublescan -hsync -vsync (20.0 kHz d)
[    20.783] (II) modeset(0): Modeline "480x270"x30.0    9.34  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (16.7 kHz d)
[    20.783] (II) modeset(0): Modeline "400x300"x30.0    9.58  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (18.7 kHz d)
[    20.783] (II) modeset(0): Modeline "432x243"x30.0    7.68  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (15.0 kHz d)
[    20.783] (II) modeset(0): Modeline "320x240"x30.0    6.29  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (15.7 kHz d)
[    20.783] (II) modeset(0): Modeline "360x202"x30.0    5.52  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (12.5 kHz d)
[    20.783] (II) modeset(0): Modeline "320x180"x30.0    4.49  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (11.2 kHz d)
[    20.783] (II) modeset(0): EDID for output DP-3
[    20.785] (II) modeset(0): EDID for output HDMI-6
[    20.785] (II) modeset(0): Manufacturer: VSC  Model: 7137  Serial#: 16843009
[    20.785] (II) modeset(0): Year: 2020  Week: 38
[    20.785] (II) modeset(0): EDID Version: 1.3
[    20.785] (II) modeset(0): Digital Display Input
[    20.785] (II) modeset(0): Max Image Size [cm]: horiz.: 61  vert.: 36
[    20.785] (II) modeset(0): Gamma: 2.20
[    20.785] (II) modeset(0): DPMS capabilities: Off
[    20.785] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[    20.785] (II) modeset(0): Default color space is primary color space
[    20.785] (II) modeset(0): First detailed timing is preferred mode
[    20.785] (II) modeset(0): redX: 0.685 redY: 0.310  greenX: 0.260 greenY: 0.685
[    20.785] (II) modeset(0): blueX: 0.150 blueY: 0.060  whiteX: 0.313 whiteY: 0.329
[    20.785] (II) modeset(0): Supported established timings:
[    20.785] (II) modeset(0): 720x400@70Hz
[    20.785] (II) modeset(0): 640x480@60Hz
[    20.785] (II) modeset(0): 640x480@67Hz
[    20.785] (II) modeset(0): 640x480@72Hz
[    20.785] (II) modeset(0): 640x480@75Hz
[    20.785] (II) modeset(0): 800x600@56Hz
[    20.785] (II) modeset(0): 800x600@60Hz
[    20.785] (II) modeset(0): 800x600@72Hz
[    20.785] (II) modeset(0): 800x600@75Hz
[    20.785] (II) modeset(0): 832x624@75Hz
[    20.785] (II) modeset(0): 1024x768@60Hz
[    20.785] (II) modeset(0): 1024x768@70Hz
[    20.785] (II) modeset(0): 1024x768@75Hz
[    20.785] (II) modeset(0): 1280x1024@75Hz
[    20.785] (II) modeset(0): 1152x864@75Hz
[    20.785] (II) modeset(0): Manufacturer's mask: 0
[    20.785] (II) modeset(0): Supported standard timings:
[    20.785] (II) modeset(0): #0: hsize: 1920  vsize 1080  refresh: 60  vid: 49361
[    20.785] (II) modeset(0): #1: hsize: 1680  vsize 1050  refresh: 60  vid: 179
[    20.785] (II) modeset(0): #2: hsize: 1600  vsize 1200  refresh: 60  vid: 16553
[    20.785] (II) modeset(0): #3: hsize: 1440  vsize 900  refresh: 60  vid: 149
[    20.785] (II) modeset(0): #4: hsize: 1400  vsize 1050  refresh: 60  vid: 16528
[    20.785] (II) modeset(0): #5: hsize: 1280  vsize 1024  refresh: 60  vid: 32897
[    20.785] (II) modeset(0): #6: hsize: 1280  vsize 960  refresh: 60  vid: 16513
[    20.785] (II) modeset(0): #7: hsize: 1280  vsize 720  refresh: 60  vid: 49281
[    20.785] (II) modeset(0): Supported detailed timing:
[    20.785] (II) modeset(0): clock: 594.0 MHz  Image Size:  608 x 355 mm
[    20.785] (II) modeset(0): h_active: 3840  h_sync: 4016  h_sync_end 4104 h_blank_end 4400 h_border: 0
[    20.785] (II) modeset(0): v_active: 2160  v_sync: 2168  v_sync_end 2178 v_blanking: 2250 v_border: 0
[    20.785] (II) modeset(0): Serial No: VLJ203840113
[    20.785] (II) modeset(0): Ranges: V min: 40 V max: 60 Hz, H min: 15 H max: 160 kHz, PixClock max 605 MHz
[    20.785] (II) modeset(0): Monitor name: VX2776-4K-mhd
[    20.785] (II) modeset(0): Supported detailed timing:
[    20.785] (II) modeset(0): clock: 533.2 MHz  Image Size:  608 x 355 mm
[    20.785] (II) modeset(0): h_active: 3840  h_sync: 3888  h_sync_end 3920 h_blank_end 4000 h_border: 0
[    20.785] (II) modeset(0): v_active: 2160  v_sync: 2163  v_sync_end 2168 v_blanking: 2222 v_border: 0
[    20.785] (II) modeset(0): Supported detailed timing:
[    20.785] (II) modeset(0): clock: 241.5 MHz  Image Size:  608 x 355 mm
[    20.785] (II) modeset(0): h_active: 2560  h_sync: 2608  h_sync_end 2640 h_blank_end 2720 h_border: 0
[    20.785] (II) modeset(0): v_active: 1440  v_sync: 1443  v_sync_end 1448 v_blanking: 1481 v_border: 0
[    20.785] (II) modeset(0): Number of EDID sections to follow: 1
[    20.785] (II) modeset(0): EDID (in hex):
[    20.785] (II) modeset(0):  00ffffffffffff005a63377101010101
[    20.785] (II) modeset(0):  261e0103803d24782e5995af4f42af26
[    20.785] (II) modeset(0):  0f5054bfef80d1c0b300a94095009040
[    20.785] (II) modeset(0):  8180814081c008e80030f2705a80b058
[    20.785] (II) modeset(0):  8a0060632100001a000000ff00564c4a
[    20.785] (II) modeset(0):  3230333834303131330a000000fd0028
[    20.785] (II) modeset(0):  3c0fa03c000a202020202020000000fc
[    20.785] (II) modeset(0):  005658323737362d344b2d6d68640105
[    20.785] (II) modeset(0):  020348f155010304050710121314161f
[    20.785] (II) modeset(0):  2021223f405d5e5f606123097f078300
[    20.785] (II) modeset(0):  00006d030c0010003878200060010203
[    20.785] (II) modeset(0):  67d85dc401788803e305e301e40f0000
[    20.785] (II) modeset(0):  18e60607016060454dd000a0f0703e80
[    20.785] (II) modeset(0):  3020350060632100001a565e00a0a0a0
[    20.785] (II) modeset(0):  29503020350060632100001e00000000
[    20.785] (II) modeset(0):  00000000000000000000000000000001
[    20.786] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    20.786] (II) modeset(0): Printing probed modes for output HDMI-6
[    20.786] (II) modeset(0): Modeline "3840x2160"x60.0  594.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync -vsync (135.0 kHz eP)
[    20.786] (II) modeset(0): Modeline "3840x2160"x60.0  594.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (135.0 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x50.0  594.00  3840 4896 4984 5280  2160 2168 2178 2250 +hsync +vsync (112.5 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x59.9  593.41  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (134.9 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x60.0  533.28  3840 3888 3920 4000  2160 2163 2168 2222 +hsync -vsync (133.3 kHz d)
[    20.786] (II) modeset(0): Modeline "3840x2160"x60.0  533.25  3840 3888 3920 4000  2160 2163 2168 2222 +hsync -vsync (133.3 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x30.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x25.0  297.00  3840 4896 4984 5280  2160 2168 2178 2250 +hsync +vsync (56.2 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x24.0  297.00  3840 5116 5204 5500  2160 2168 2178 2250 +hsync +vsync (54.0 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x30.0  296.70  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.4 kHz e)
[    20.786] (II) modeset(0): Modeline "3840x2160"x24.0  296.70  3840 5116 5204 5500  2160 2168 2178 2250 +hsync +vsync (53.9 kHz e)
[    20.786] (II) modeset(0): Modeline "3200x1800"x60.0  373.36  3200 3248 3280 3360  1800 1803 1808 1852 +hsync -vsync (111.1 kHz d)
[    20.786] (II) modeset(0): Modeline "2880x1620"x60.0  303.88  2880 2928 2960 3040  1620 1623 1628 1666 +hsync -vsync (100.0 kHz d)
[    20.786] (II) modeset(0): Modeline "2560x1600"x60.0  268.63  2560 2608 2640 2720  1600 1603 1609 1646 +hsync -vsync (98.8 kHz d)
[    20.786] (II) modeset(0): Modeline "2560x1440"x60.0  241.70  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.9 kHz d)
[    20.786] (II) modeset(0): Modeline "2560x1440"x60.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync +vsync (88.8 kHz e)
[    20.786] (II) modeset(0): Modeline "2048x1536"x60.0  266.95  2048 2200 2424 2800  1536 1537 1540 1589 -hsync +vsync (95.3 kHz d)
[    20.786] (II) modeset(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz d)
[    20.786] (II) modeset(0): Modeline "1856x1392"x60.0  218.27  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.3 kHz d)
[    20.786] (II) modeset(0): Modeline "1792x1344"x60.0  204.75  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.6 kHz d)
[    20.786] (II) modeset(0): Modeline "2048x1152"x60.0  156.99  2048 2096 2128 2208  1152 1155 1160 1185 +hsync -vsync (71.1 kHz d)
[    20.786] (II) modeset(0): Modeline "1920x1200"x60.0  154.13  1920 1968 2000 2080  1200 1203 1209 1235 +hsync -vsync (74.1 kHz d)
[    20.786] (II) modeset(0): Modeline "1920x1080"x120.0  297.00  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (135.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x100.0  297.00  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (112.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x119.9  296.70  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (134.9 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 -hsync -vsync (67.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x60.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x50.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x59.9  148.35  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x60.0  138.65  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.7 kHz d)
[    20.786] (II) modeset(0): Modeline "1920x1080"x30.0  74.25  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.8 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x25.0  74.25  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (28.1 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x24.0  74.25  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x30.0  74.18  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (33.7 kHz e)
[    20.786] (II) modeset(0): Modeline "1920x1080"x24.0  74.18  1920 2558 2602 2750  1080 1084 1089 1125 +hsync +vsync (27.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1680x1050"x60.0  119.23  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.8 kHz d)
[    20.786] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    20.786] (II) modeset(0): Modeline "1400x1050"x60.0  122.05  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    20.786] (II) modeset(0): Modeline "1400x1050"x59.9  101.00  1400 1448 1480 1560  1050 1053 1057 1080 +hsync -vsync (64.7 kHz e)
[    20.786] (II) modeset(0): Modeline "1600x900"x60.0  97.78  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.6 kHz d)
[    20.786] (II) modeset(0): Modeline "1280x1024"x75.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1280x1024"x60.0  107.96  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    20.786] (II) modeset(0): Modeline "1440x900"x59.9  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1400x900"x60.0  86.67  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.6 kHz d)
[    20.786] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1440x810"x60.0  151.94  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (100.0 kHz d)
[    20.786] (II) modeset(0): Modeline "1368x768"x60.0  72.43  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.4 kHz d)
[    20.786] (II) modeset(0): Modeline "1280x800"x60.0  71.11  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.4 kHz d)
[    20.786] (II) modeset(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1152x864"x60.0  86.40  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (54.0 kHz d)
[    20.786] (II) modeset(0): Modeline "1280x720"x60.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1280x720"x50.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1280x720"x59.9  74.18  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1280x720"x60.0  64.02  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.5 kHz d)
[    20.786] (II) modeset(0): Modeline "1024x768"x75.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    20.786] (II) modeset(0): Modeline "1024x768"x70.1  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    20.786] (II) modeset(0): Modeline "1024x768"x60.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    20.786] (II) modeset(0): Modeline "1024x768"x60.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    20.786] (II) modeset(0): Modeline "1024x768i"x60.0  30.98  1024 1032 1208 1264  768 768 776 817 interlace +hsync +vsync (24.5 kHz d)
[    20.786] (II) modeset(0): Modeline "960x720"x60.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    20.786] (II) modeset(0): Modeline "928x696"x60.0  109.06  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.3 kHz d)
[    20.786] (II) modeset(0): Modeline "896x672"x60.0  102.38  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.6 kHz d)
[    20.786] (II) modeset(0): Modeline "1024x576"x60.0  42.13  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.6 kHz d)
[    20.786] (II) modeset(0): Modeline "960x600"x60.0  77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    20.786] (II) modeset(0): Modeline "832x624"x74.6  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    20.786] (II) modeset(0): Modeline "832x624"x60.0  46.10  832 864 928 1152  624 625 628 667 -hsync -vsync (40.0 kHz d)
[    20.786] (II) modeset(0): Modeline "960x540"x60.0  37.36  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.4 kHz d)
[    20.786] (II) modeset(0): Modeline "800x600"x72.2  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    20.786] (II) modeset(0): Modeline "800x600"x75.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    20.786] (II) modeset(0): Modeline "800x600"x60.3  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    20.786] (II) modeset(0): Modeline "800x600"x60.0  38.40  800 824 896 1024  600 601 603 625 +hsync +vsync (37.5 kHz d)
[    20.786] (II) modeset(0): Modeline "800x600"x56.2  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    20.786] (II) modeset(0): Modeline "840x525"x60.0  59.62  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.8 kHz d)
[    20.786] (II) modeset(0): Modeline "864x486"x60.0  30.72  864 912 944 1024  486 489 494 500 +hsync -vsync (30.0 kHz d)
[    20.786] (II) modeset(0): Modeline "720x576"x50.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    20.786] (II) modeset(0): Modeline "700x525"x60.0  61.02  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    20.786] (II) modeset(0): Modeline "800x450"x60.0  48.89  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.6 kHz d)
[    20.786] (II) modeset(0): Modeline "720x480"x60.0  27.03  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    20.786] (II) modeset(0): Modeline "720x480"x59.9  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    20.786] (II) modeset(0): Modeline "640x512"x60.0  53.98  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    20.786] (II) modeset(0): Modeline "700x450"x60.0  43.34  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.6 kHz d)
[    20.786] (II) modeset(0): Modeline "640x480"x75.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    20.787] (II) modeset(0): Modeline "640x480"x72.8  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    20.787] (II) modeset(0): Modeline "640x480"x66.7  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    20.787] (II) modeset(0): Modeline "640x480"x60.0  25.20  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    20.787] (II) modeset(0): Modeline "640x480"x59.9  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    20.787] (II) modeset(0): Modeline "720x405"x60.0  22.12  720 768 800 880  405 408 413 419 +hsync -vsync (25.1 kHz d)
[    20.787] (II) modeset(0): Modeline "720x400"x70.1  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    20.787] (II) modeset(0): Modeline "720x400"x60.0  25.05  720 756 828 936  400 401 404 446 -hsync +vsync (26.8 kHz d)
[    20.787] (II) modeset(0): Modeline "684x384"x60.0  36.21  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.4 kHz d)
[    20.787] (II) modeset(0): Modeline "640x400"x60.0  22.21  640 672 736 832  400 401 404 445 -hsync +vsync (26.7 kHz d)
[    20.787] (II) modeset(0): Modeline "576x432"x60.0  43.20  576 608 672 800  432 432 434 450 doublescan +hsync +vsync (54.0 kHz d)
[    20.787] (II) modeset(0): Modeline "640x360"x60.0  17.95  640 688 720 800  360 363 368 374 +hsync -vsync (22.4 kHz d)
[    20.787] (II) modeset(0): Modeline "640x350"x60.0  22.21  640 672 736 832  350 382 385 445 +hsync -vsync (26.7 kHz d)
[    20.787] (II) modeset(0): Modeline "512x384"x60.0  32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    20.787] (II) modeset(0): Modeline "512x384i"x60.0  15.47  512 516 604 632  384 384 388 408 interlace doublescan +hsync +vsync (24.5 kHz d)
[    20.787] (II) modeset(0): Modeline "512x288"x60.0  21.03  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    20.787] (II) modeset(0): Modeline "416x312"x60.0  23.02  416 432 464 576  312 312 314 333 doublescan -hsync -vsync (40.0 kHz d)
[    20.787] (II) modeset(0): Modeline "480x270"x60.0  18.68  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.4 kHz d)
[    20.787] (II) modeset(0): Modeline "400x300"x60.0  19.17  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (37.4 kHz d)
[    20.787] (II) modeset(0): Modeline "432x243"x60.0  15.36  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (30.0 kHz d)
[    20.787] (II) modeset(0): Modeline "320x240"x60.0  12.58  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.4 kHz d)
[    20.787] (II) modeset(0): Modeline "360x202"x60.0  11.04  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (25.1 kHz d)
[    20.787] (II) modeset(0): Modeline "360x200"x60.0  12.52  360 378 414 468  200 200 202 223 doublescan -hsync +vsync (26.8 kHz d)
[    20.787] (II) modeset(0): Modeline "320x200"x60.0  11.08  320 336 368 416  200 200 202 222 doublescan -hsync +vsync (26.6 kHz d)
[    20.787] (II) modeset(0): Modeline "320x180"x60.0    8.98  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.4 kHz d)
[    20.787] (II) modeset(0): Modeline "320x175"x60.0  11.08  320 336 368 416  175 191 192 222 doublescan +hsync -vsync (26.6 kHz d)
[    20.787] (II) modeset(0): EDID for output DP-4
[    20.787] (II) modeset(0): Output HDMI-5 connected
[    20.787] (II) modeset(0): Output DP-3 disconnected
[    20.787] (II) modeset(0): Output HDMI-6 connected
[    20.787] (II) modeset(0): Output DP-4 disconnected
[    20.787] (II) modeset(0): Using spanning desktop for initial modes
[    20.787] (II) modeset(0): Output HDMI-5 using initial mode 3840x2160 +0+0
[    20.787] (II) modeset(0): Output HDMI-6 using initial mode 3840x2160 +3840+0
[    20.787] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    20.787] (==) modeset(0): DPI set to (96, 96)
[    20.787] (II) Loading sub module "fb"
[    20.787] (II) LoadModule: "fb"
[    20.787] (II) Module "fb" already built-in
[    20.788] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[    20.788] (==) modeset(G0): RGB weight 888
[    20.788] (==) modeset(G0): Default visual is TrueColor
[    20.788] (II) Loading sub module "glamoregl"
[    20.788] (II) LoadModule: "glamoregl"
[    20.788] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    20.788] (II) Module glamoregl: vendor="X.Org Foundation"
[    20.788]    compiled for 1.21.1.11, module version = 1.0.1
[    20.788]    ABI class: X.Org ANSI C Emulation, version 0.4
[    20.869] (II) modeset(G0): glamor X acceleration enabled on Mesa Intel(R) Graphics (RPL-S)
[    20.869] (II) modeset(G0): glamor initialized
[    20.886] (II) modeset(G0): Output HDMI-1-1 has no monitor section
[    20.886] (II) modeset(G0): Output HDMI-1-2 has no monitor section
[    20.887] (II) modeset(G0): Output DP-1-1 has no monitor section
[    20.887] (II) modeset(G0): Output HDMI-1-3 has no monitor section
[    20.887] (II) modeset(G0): Output DP-1-2 has no monitor section
[    20.887] (II) modeset(G0): Output HDMI-1-4 has no monitor section
[    20.889] (II) modeset(G0): EDID for output HDMI-1-1
[    20.889] (II) modeset(G0): EDID for output HDMI-1-2
[    20.889] (II) modeset(G0): EDID for output DP-1-1
[    20.889] (II) modeset(G0): EDID for output HDMI-1-3
[    20.889] (II) modeset(G0): EDID for output DP-1-2
[    20.889] (II) modeset(G0): EDID for output HDMI-1-4
[    20.889] (==) modeset(G0): Using gamma correction (1.0, 1.0, 1.0)
[    20.889] (==) modeset(G0): DPI set to (96, 96)
[    20.889] (II) Loading sub module "fb"
[    20.889] (II) LoadModule: "fb"
[    20.889] (II) Module "fb" already built-in
[    20.889] (II) UnloadModule: "fbdev"
[    20.889] (II) Unloading fbdev
[    20.889] (II) UnloadSubModule: "fbdevhw"
[    20.889] (II) Unloading fbdevhw
[    20.889] (II) UnloadModule: "vesa"
[    20.889] (II) Unloading vesa
[    20.967] (==) modeset(0): Backing store enabled
[    20.968] (==) modeset(0): Silken mouse enabled
[    21.007] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    21.007] (==) modeset(0): DPMS enabled
[    21.007] (II) modeset(0): [DRI2] Setup complete
[    21.007] (II) modeset(0): [DRI2]  DRI driver: nouveau
[    21.007] (II) modeset(0): [DRI2]  VDPAU driver: nouveau
[    21.016] (==) modeset(G0): Backing store enabled
[    21.016] (==) modeset(G0): Silken mouse enabled
[    21.017] (II) modeset(G0): Initializing kms color map for depth 24, 8 bpc.
[    21.017] (==) modeset(G0): DPMS enabled
[    21.017] (II) modeset(G0): [DRI2] Setup complete
[    21.017] (II) modeset(G0): [DRI2]  DRI driver: iris
[    21.017] (II) modeset(G0): [DRI2]  VDPAU driver: va_gl
[    21.017] (II) modeset(G0): Disable reverse prime offload mode for i915.
[    21.017] (II) Initializing extension Generic Event Extension
[    21.017] (II) Initializing extension SHAPE
[    21.017] (II) Initializing extension MIT-SHM
[    21.017] (II) Initializing extension XInputExtension
[    21.019] (II) Initializing extension XTEST
[    21.019] (II) Initializing extension BIG-REQUESTS
[    21.019] (II) Initializing extension SYNC
[    21.019] (II) Initializing extension XKEYBOARD
[    21.019] (II) Initializing extension XC-MISC
[    21.019] (II) Initializing extension SECURITY
[    21.019] (II) Initializing extension XFIXES
[    21.019] (II) Initializing extension RENDER
[    21.019] (II) Initializing extension RANDR
[    21.019] (II) Initializing extension COMPOSITE
[    21.019] (II) Initializing extension DAMAGE
[    21.019] (II) Initializing extension MIT-SCREEN-SAVER
[    21.019] (II) Initializing extension DOUBLE-BUFFER
[    21.019] (II) Initializing extension RECORD
[    21.019] (II) Initializing extension DPMS
[    21.019] (II) Initializing extension Present
[    21.019] (II) Initializing extension DRI3
[    21.019] (II) Initializing extension X-Resource
[    21.019] (II) Initializing extension XVideo
[    21.019] (II) Initializing extension XVideo-MotionCompensation
[    21.019] (II) Initializing extension SELinux
[    21.019] (II) SELinux: Disabled on system
[    21.019] (II) Initializing extension GLX
[    21.032] (II) AIGLX: Loaded and initialized nouveau
[    21.032] (II) GLX: Initialized DRI2 GL provider for screen 0
[    21.032] (II) Initializing extension XFree86-VidModeExtension
[    21.032] (II) Initializing extension XFree86-DGA
[    21.032] (II) Initializing extension XFree86-DRI
[    21.032] (II) Initializing extension DRI2
[    21.035] (II) modeset(G0): Damage tracking initialized
[    21.035] (II) modeset(0): Damage tracking initialized
[    21.035] (II) modeset(0): Setting screen physical size to 2032 x 571
[    21.200] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    21.200] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    21.200] (II) LoadModule: "libinput"
[    21.201] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    21.221] (II) Module libinput: vendor="X.Org Foundation"
[    21.221]    compiled for 1.21.1.11, module version = 1.4.0
[    21.221]    Module class: X.Org XInput Driver
[    21.221]    ABI class: X.Org XInput driver, version 24.4
[    21.221] (II) Using input driver 'libinput' for 'Power Button'
[    21.221] (**) Power Button: always reports core events
[    21.221] (**) Option "Device" "/dev/input/event2"
[    21.301] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    21.301] (II) event2  - Power Button: device is a keyboard
[    21.301] (II) event2  - Power Button: device removed
[    21.310] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    21.310] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    21.310] (**) Option "xkb_model" "pc105"
[    21.310] (**) Option "xkb_layout" "us"
[    21.311] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    21.311] (II) event2  - Power Button: device is a keyboard
[    21.312] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    21.312] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    21.312] (II) Using input driver 'libinput' for 'Video Bus'
[    21.312] (**) Video Bus: always reports core events
[    21.312] (**) Option "Device" "/dev/input/event3"
[    21.313] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    21.313] (II) event3  - Video Bus: device is a keyboard
[    21.313] (II) event3  - Video Bus: device removed
[    21.325] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3/event3"
[    21.325] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    21.325] (**) Option "xkb_model" "pc105"
[    21.325] (**) Option "xkb_layout" "us"
[    21.326] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    21.326] (II) event3  - Video Bus: device is a keyboard
[    21.327] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    21.327] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    21.327] (II) Using input driver 'libinput' for 'Power Button'
[    21.327] (**) Power Button: always reports core events
[    21.327] (**) Option "Device" "/dev/input/event1"
[    21.328] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    21.328] (II) event1  - Power Button: device is a keyboard
[    21.329] (II) event1  - Power Button: device removed
[    21.336] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[    21.336] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[    21.336] (**) Option "xkb_model" "pc105"
[    21.336] (**) Option "xkb_layout" "us"
[    21.337] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    21.337] (II) event1  - Power Button: device is a keyboard
[    21.338] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[    21.338] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    21.338] (II) Using input driver 'libinput' for 'Sleep Button'
[    21.338] (**) Sleep Button: always reports core events
[    21.338] (**) Option "Device" "/dev/input/event0"
[    21.339] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    21.339] (II) event0  - Sleep Button: device is a keyboard
[    21.339] (II) event0  - Sleep Button: device removed
[    21.345] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[    21.345] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    21.345] (**) Option "xkb_model" "pc105"
[    21.345] (**) Option "xkb_layout" "us"
[    21.346] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    21.346] (II) event0  - Sleep Button: device is a keyboard
[    21.347] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event4)
[    21.347] (II) No input driver specified, ignoring this device.
[    21.347] (II) This device may have been added with another device file.
[    21.348] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event5)
[    21.348] (II) No input driver specified, ignoring this device.
[    21.348] (II) This device may have been added with another device file.
[    21.348] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event6)
[    21.348] (II) No input driver specified, ignoring this device.
[    21.348] (II) This device may have been added with another device file.
[    21.349] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event7)
[    21.349] (II) No input driver specified, ignoring this device.
[    21.349] (II) This device may have been added with another device file.
[    21.351] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro (/dev/input/event13)
[    21.351] (**) ROCCAT ROCCAT Vulcan Pro: Applying InputClass "libinput keyboard catchall"
[    21.351] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro'
[    21.351] (**) ROCCAT ROCCAT Vulcan Pro: always reports core events
[    21.351] (**) Option "Device" "/dev/input/event13"
[    21.352] (II) event13 - ROCCAT ROCCAT Vulcan Pro: is tagged by udev as: Keyboard
[    21.353] (II) event13 - ROCCAT ROCCAT Vulcan Pro: device is a keyboard
[    21.353] (II) event13 - ROCCAT ROCCAT Vulcan Pro: device removed
[    21.361] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/0003:1E7D:30F7.0003/input/input13/event13"
[    21.361] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Vulcan Pro" (type: KEYBOARD, id 10)
[    21.361] (**) Option "xkb_model" "pc105"
[    21.361] (**) Option "xkb_layout" "us"
[    21.363] (II) event13 - ROCCAT ROCCAT Vulcan Pro: is tagged by udev as: Keyboard
[    21.363] (II) event13 - ROCCAT ROCCAT Vulcan Pro: device is a keyboard
[    21.364] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro Mouse (/dev/input/event14)
[    21.364] (**) ROCCAT ROCCAT Vulcan Pro Mouse: Applying InputClass "libinput pointer catchall"
[    21.364] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro Mouse'
[    21.364] (**) ROCCAT ROCCAT Vulcan Pro Mouse: always reports core events
[    21.364] (**) Option "Device" "/dev/input/event14"
[    21.366] (II) event14 - ROCCAT ROCCAT Vulcan Pro Mouse: is tagged by udev as: Mouse
[    21.366] (II) event14 - ROCCAT ROCCAT Vulcan Pro Mouse: device is a pointer
[    21.367] (II) event14 - ROCCAT ROCCAT Vulcan Pro Mouse: device removed
[    21.386] (II) libinput: ROCCAT ROCCAT Vulcan Pro Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    21.386] (II) libinput: ROCCAT ROCCAT Vulcan Pro Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    21.386] (II) libinput: ROCCAT ROCCAT Vulcan Pro Mouse: Step value 0 was provided, libinput Fallback acceleration function is used.
[    21.386] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:1E7D:30F7.0004/input/input14/event14"
[    21.386] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Vulcan Pro Mouse" (type: MOUSE, id 11)
[    21.386] (**) Option "AccelerationScheme" "none"
[    21.386] (**) ROCCAT ROCCAT Vulcan Pro Mouse: (accel) selected scheme none/0
[    21.386] (**) ROCCAT ROCCAT Vulcan Pro Mouse: (accel) acceleration factor: 2.000
[    21.386] (**) ROCCAT ROCCAT Vulcan Pro Mouse: (accel) acceleration threshold: 4
[    21.388] (II) event14 - ROCCAT ROCCAT Vulcan Pro Mouse: is tagged by udev as: Mouse
[    21.388] (II) event14 - ROCCAT ROCCAT Vulcan Pro Mouse: device is a pointer
[    21.389] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro Mouse (/dev/input/mouse0)
[    21.389] (II) No input driver specified, ignoring this device.
[    21.389] (II) This device may have been added with another device file.
[    21.390] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro System Control (/dev/input/event15)
[    21.390] (**) ROCCAT ROCCAT Vulcan Pro System Control: Applying InputClass "libinput keyboard catchall"
[    21.390] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro System Control'
[    21.390] (**) ROCCAT ROCCAT Vulcan Pro System Control: always reports core events
[    21.390] (**) Option "Device" "/dev/input/event15"
[    21.392] (II) event15 - ROCCAT ROCCAT Vulcan Pro System Control: is tagged by udev as: Keyboard
[    21.392] (II) event15 - ROCCAT ROCCAT Vulcan Pro System Control: device is a keyboard
[    21.393] (II) event15 - ROCCAT ROCCAT Vulcan Pro System Control: device removed
[    21.405] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:1E7D:30F7.0004/input/input15/event15"
[    21.405] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Vulcan Pro System Control" (type: KEYBOARD, id 12)
[    21.405] (**) Option "xkb_model" "pc105"
[    21.405] (**) Option "xkb_layout" "us"
[    21.407] (II) event15 - ROCCAT ROCCAT Vulcan Pro System Control: is tagged by udev as: Keyboard
[    21.407] (II) event15 - ROCCAT ROCCAT Vulcan Pro System Control: device is a keyboard
[    21.409] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro Consumer Control (/dev/input/event16)
[    21.409] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: Applying InputClass "libinput keyboard catchall"
[    21.409] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro Consumer Control'
[    21.409] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: always reports core events
[    21.409] (**) Option "Device" "/dev/input/event16"
[    21.411] (II) event16 - ROCCAT ROCCAT Vulcan Pro Consumer Control: is tagged by udev as: Keyboard
[    21.411] (II) event16 - ROCCAT ROCCAT Vulcan Pro Consumer Control: device is a keyboard
[    21.411] (II) event16 - ROCCAT ROCCAT Vulcan Pro Consumer Control: device removed
[    21.420] (II) libinput: ROCCAT ROCCAT Vulcan Pro Consumer Control: needs a virtual subdevice
[    21.420] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:1E7D:30F7.0004/input/input16/event16"
[    21.420] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Vulcan Pro Consumer Control" (type: MOUSE, id 13)
[    21.420] (**) Option "AccelerationScheme" "none"
[    21.420] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: (accel) selected scheme none/0
[    21.420] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: (accel) acceleration factor: 2.000
[    21.420] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: (accel) acceleration threshold: 4
[    21.422] (II) event16 - ROCCAT ROCCAT Vulcan Pro Consumer Control: is tagged by udev as: Keyboard
[    21.422] (II) event16 - ROCCAT ROCCAT Vulcan Pro Consumer Control: device is a keyboard
[    21.423] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro (/dev/input/event17)
[    21.423] (II) No input driver specified, ignoring this device.
[    21.423] (II) This device may have been added with another device file.
[    21.424] (II) config/udev: Adding input device ROCCAT ROCCAT Vulcan Pro (/dev/input/event18)
[    21.424] (**) ROCCAT ROCCAT Vulcan Pro: Applying InputClass "libinput keyboard catchall"
[    21.424] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro'
[    21.424] (**) ROCCAT ROCCAT Vulcan Pro: always reports core events
[    21.424] (**) Option "Device" "/dev/input/event18"
[    21.426] (II) event18 - ROCCAT ROCCAT Vulcan Pro: is tagged by udev as: Keyboard
[    21.426] (II) event18 - ROCCAT ROCCAT Vulcan Pro: device is a keyboard
[    21.427] (II) event18 - ROCCAT ROCCAT Vulcan Pro: device removed
[    21.435] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.2/0003:1E7D:30F7.0005/input/input18/event18"
[    21.435] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Vulcan Pro" (type: KEYBOARD, id 14)
[    21.435] (**) Option "xkb_model" "pc105"
[    21.435] (**) Option "xkb_layout" "us"
[    21.437] (II) event18 - ROCCAT ROCCAT Vulcan Pro: is tagged by udev as: Keyboard
[    21.437] (II) event18 - ROCCAT ROCCAT Vulcan Pro: device is a keyboard
[    21.438] (II) config/udev: Adding input device ROCCAT ROCCAT Burst Pro Air Dongle (/dev/input/event19)
[    21.438] (**) ROCCAT ROCCAT Burst Pro Air Dongle: Applying InputClass "libinput pointer catchall"
[    21.438] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Burst Pro Air Dongle'
[    21.438] (**) ROCCAT ROCCAT Burst Pro Air Dongle: always reports core events
[    21.438] (**) Option "Device" "/dev/input/event19"
[    21.493] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: is tagged by udev as: Mouse
[    21.493] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: device is a pointer
[    21.493] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: device removed
[    21.513] (II) libinput: ROCCAT ROCCAT Burst Pro Air Dongle: Step value 0 was provided, libinput Fallback acceleration function is used.
[    21.513] (II) libinput: ROCCAT ROCCAT Burst Pro Air Dongle: Step value 0 was provided, libinput Fallback acceleration function is used.
[    21.513] (II) libinput: ROCCAT ROCCAT Burst Pro Air Dongle: Step value 0 was provided, libinput Fallback acceleration function is used.
[    21.513] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.0/0003:1E7D:2CA6.0007/input/input19/event19"
[    21.513] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Burst Pro Air Dongle" (type: MOUSE, id 15)
[    21.513] (**) Option "AccelerationScheme" "none"
[    21.513] (**) ROCCAT ROCCAT Burst Pro Air Dongle: (accel) selected scheme none/0
[    21.513] (**) ROCCAT ROCCAT Burst Pro Air Dongle: (accel) acceleration factor: 2.000
[    21.513] (**) ROCCAT ROCCAT Burst Pro Air Dongle: (accel) acceleration threshold: 4
[    21.567] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: is tagged by udev as: Mouse
[    21.567] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: device is a pointer
[    21.568] (II) config/udev: Adding input device ROCCAT ROCCAT Burst Pro Air Dongle (/dev/input/mouse1)
[    21.568] (II) No input driver specified, ignoring this device.
[    21.568] (II) This device may have been added with another device file.
[    21.570] (II) config/udev: Adding input device ROCCAT ROCCAT Burst Pro Air Dongle (/dev/input/event20)
[    21.570] (**) ROCCAT ROCCAT Burst Pro Air Dongle: Applying InputClass "libinput keyboard catchall"
[    21.570] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Burst Pro Air Dongle'
[    21.570] (**) ROCCAT ROCCAT Burst Pro Air Dongle: always reports core events
[    21.570] (**) Option "Device" "/dev/input/event20"
[    21.572] (II) event20 - ROCCAT ROCCAT Burst Pro Air Dongle: is tagged by udev as: Keyboard
[    21.572] (II) event20 - ROCCAT ROCCAT Burst Pro Air Dongle: device is a keyboard
[    21.572] (II) event20 - ROCCAT ROCCAT Burst Pro Air Dongle: device removed
[    21.593] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.1/0003:1E7D:2CA6.0008/input/input20/event20"
[    21.593] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Burst Pro Air Dongle" (type: KEYBOARD, id 16)
[    21.593] (**) Option "xkb_model" "pc105"
[    21.593] (**) Option "xkb_layout" "us"
[    21.595] (II) event20 - ROCCAT ROCCAT Burst Pro Air Dongle: is tagged by udev as: Keyboard
[    21.595] (II) event20 - ROCCAT ROCCAT Burst Pro Air Dongle: device is a keyboard
[    21.597] (II) config/udev: Adding input device ROCCAT ROCCAT Burst Pro Air Dongle System Control (/dev/input/event21)
[    21.597] (**) ROCCAT ROCCAT Burst Pro Air Dongle System Control: Applying InputClass "libinput keyboard catchall"
[    21.597] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Burst Pro Air Dongle System Control'
[    21.597] (**) ROCCAT ROCCAT Burst Pro Air Dongle System Control: always reports core events
[    21.597] (**) Option "Device" "/dev/input/event21"
[    21.599] (II) event21 - ROCCAT ROCCAT Burst Pro Air Dongle System Control: is tagged by udev as: Keyboard
[    21.600] (II) event21 - ROCCAT ROCCAT Burst Pro Air Dongle System Control: device is a keyboard
[    21.600] (II) event21 - ROCCAT ROCCAT Burst Pro Air Dongle System Control: device removed
[    21.612] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.2/0003:1E7D:2CA6.0009/input/input21/event21"
[    21.612] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Burst Pro Air Dongle System Control" (type: KEYBOARD, id 17)
[    21.612] (**) Option "xkb_model" "pc105"
[    21.612] (**) Option "xkb_layout" "us"
[    21.614] (II) event21 - ROCCAT ROCCAT Burst Pro Air Dongle System Control: is tagged by udev as: Keyboard
[    21.614] (II) event21 - ROCCAT ROCCAT Burst Pro Air Dongle System Control: device is a keyboard
[    21.616] (II) config/udev: Adding input device ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control (/dev/input/event22)
[    21.616] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: Applying InputClass "libinput keyboard catchall"
[    21.616] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control'
[    21.616] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: always reports core events
[    21.616] (**) Option "Device" "/dev/input/event22"
[    21.618] (II) event22 - ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: is tagged by udev as: Keyboard
[    21.618] (II) event22 - ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: device is a keyboard
[    21.619] (II) event22 - ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: device removed
[    21.627] (II) libinput: ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: needs a virtual subdevice
[    21.627] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.2/0003:1E7D:2CA6.0009/input/input22/event22"
[    21.627] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control" (type: MOUSE, id 18)
[    21.627] (**) Option "AccelerationScheme" "none"
[    21.627] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: (accel) selected scheme none/0
[    21.627] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: (accel) acceleration factor: 2.000
[    21.627] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: (accel) acceleration threshold: 4
[    21.629] (II) event22 - ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: is tagged by udev as: Keyboard
[    21.629] (II) event22 - ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: device is a keyboard
[    21.631] (II) config/udev: Adding input device ROCCAT ROCCAT Burst Pro Air Dongle (/dev/input/event23)
[    21.631] (II) No input driver specified, ignoring this device.
[    21.631] (II) This device may have been added with another device file.
[    21.632] (II) config/udev: Adding input device MSI MYSTIC LIGHT  (/dev/input/event12)
[    21.632] (II) No input driver specified, ignoring this device.
[    21.632] (II) This device may have been added with another device file.
[    21.632] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event10)
[    21.632] (II) No input driver specified, ignoring this device.
[    21.632] (II) This device may have been added with another device file.
[    21.633] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event11)
[    21.633] (II) No input driver specified, ignoring this device.
[    21.633] (II) This device may have been added with another device file.
[    21.633] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event8)
[    21.633] (II) No input driver specified, ignoring this device.
[    21.633] (II) This device may have been added with another device file.
[    21.634] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event9)
[    21.634] (II) No input driver specified, ignoring this device.
[    21.634] (II) This device may have been added with another device file.
[    21.640] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: Applying InputClass "libinput keyboard catchall"
[    21.640] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro Consumer Control'
[    21.640] (**) ROCCAT ROCCAT Vulcan Pro Consumer Control: always reports core events
[    21.640] (**) Option "Device" "/dev/input/event16"
[    21.640] (II) libinput: ROCCAT ROCCAT Vulcan Pro Consumer Control: is a virtual subdevice
[    21.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.1/0003:1E7D:30F7.0004/input/input16/event16"
[    21.640] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Vulcan Pro Consumer Control" (type: KEYBOARD, id 19)
[    21.640] (**) Option "xkb_model" "pc105"
[    21.640] (**) Option "xkb_layout" "us"
[    21.640] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: Applying InputClass "libinput keyboard catchall"
[    21.640] (II) Using input driver 'libinput' for 'ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control'
[    21.640] (**) ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: always reports core events
[    21.640] (**) Option "Device" "/dev/input/event22"
[    21.640] (II) libinput: ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: is a virtual subdevice
[    21.640] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-12/1-12.1/1-12.1:1.2/0003:1E7D:2CA6.0009/input/input22/event22"
[    21.640] (II) XINPUT: Adding extended input device "ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control" (type: KEYBOARD, id 20)
[    21.640] (**) Option "xkb_model" "pc105"
[    21.640] (**) Option "xkb_layout" "us"
[    21.832] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    21.832] (II) modeset(0): Using EDID range info for horizontal sync
[    21.832] (II) modeset(0): Using EDID range info for vertical refresh
[    21.832] (II) modeset(0): Printing DDC gathered Modelines:
[    21.832] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    21.832] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    21.832] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    21.832] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    21.832] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    21.832] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    21.832] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    21.832] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    21.832] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    21.832] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    21.832] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    21.832] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    21.832] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    21.832] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    21.832] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    21.832] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    21.832] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    21.832] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    21.832] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    21.832] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    21.832] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    21.832] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    21.833] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    21.836] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    21.838] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    21.838] (II) modeset(0): Using hsync ranges from config file
[    21.838] (II) modeset(0): Using vrefresh ranges from config file
[    21.838] (II) modeset(0): Printing DDC gathered Modelines:
[    21.838] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    21.838] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    21.838] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    21.838] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    21.838] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    21.838] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    21.838] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    21.838] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    21.838] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    21.838] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    21.838] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    21.838] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    21.838] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    21.838] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    21.838] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    21.838] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    21.838] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    21.838] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    21.838] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    21.838] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    21.838] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    21.838] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    21.839] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    21.842] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    21.846] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    21.846] (II) modeset(0): Using hsync ranges from config file
[    21.846] (II) modeset(0): Using vrefresh ranges from config file
[    21.846] (II) modeset(0): Printing DDC gathered Modelines:
[    21.846] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    21.846] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    21.846] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    21.846] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    21.846] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    21.846] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    21.846] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    21.846] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    21.846] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    21.846] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    21.846] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    21.846] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    21.846] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    21.846] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    21.846] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    21.846] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    21.846] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    21.846] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    21.846] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    21.846] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    21.846] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    21.846] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    21.846] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    21.848] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    21.869] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    21.869] (II) modeset(0): Using hsync ranges from config file
[    21.869] (II) modeset(0): Using vrefresh ranges from config file
[    21.869] (II) modeset(0): Printing DDC gathered Modelines:
[    21.869] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    21.869] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    21.869] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    21.869] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    21.869] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    21.869] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    21.869] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    21.869] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    21.869] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    21.869] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    21.869] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    21.869] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    21.869] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    21.869] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    21.869] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    21.869] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    21.869] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    21.869] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    21.869] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    21.869] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    21.869] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    21.869] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    21.870] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    21.872] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    21.874] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    21.874] (II) modeset(0): Using hsync ranges from config file
[    21.874] (II) modeset(0): Using vrefresh ranges from config file
[    21.874] (II) modeset(0): Printing DDC gathered Modelines:
[    21.874] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    21.874] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    21.874] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    21.874] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    21.874] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    21.874] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    21.874] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    21.874] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    21.874] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    21.874] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    21.874] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    21.874] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    21.874] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    21.874] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    21.874] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    21.874] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    21.874] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    21.874] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    21.874] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    21.874] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    21.874] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    21.874] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    21.875] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    21.877] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    21.879] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    21.879] (II) modeset(0): Using hsync ranges from config file
[    21.879] (II) modeset(0): Using vrefresh ranges from config file
[    21.879] (II) modeset(0): Printing DDC gathered Modelines:
[    21.879] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    21.879] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    21.879] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    21.879] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    21.879] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    21.879] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    21.879] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    21.879] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    21.879] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    21.879] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    21.879] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    21.879] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    21.879] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    21.879] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    21.879] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    21.879] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    21.879] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    21.879] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    21.879] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    21.879] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    21.879] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    21.879] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    21.880] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    21.881] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    24.940] (II) modeset(0): Disabling kernel dirty updates, not required.
[    35.832] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    35.832] (II) modeset(0): Using hsync ranges from config file
[    35.832] (II) modeset(0): Using vrefresh ranges from config file
[    35.832] (II) modeset(0): Printing DDC gathered Modelines:
[    35.832] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    35.832] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    35.832] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    35.832] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    35.832] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    35.832] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    35.832] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    35.832] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    35.832] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    35.832] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    35.832] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    35.832] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    35.832] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    35.832] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    35.832] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    35.832] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    35.832] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    35.832] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    35.832] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    35.832] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    35.832] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    35.832] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    35.832] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    35.834] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    35.835] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    35.835] (II) modeset(0): Using hsync ranges from config file
[    35.835] (II) modeset(0): Using vrefresh ranges from config file
[    35.835] (II) modeset(0): Printing DDC gathered Modelines:
[    35.835] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    35.835] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    35.835] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    35.835] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    35.835] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    35.835] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    35.835] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    35.835] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    35.835] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    35.835] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    35.835] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    35.835] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    35.835] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    35.835] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    35.835] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    35.835] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    35.835] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    35.835] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    35.835] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    35.835] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    35.835] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    35.835] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    35.835] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    35.837] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    36.265] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    36.265] (II) modeset(0): Using hsync ranges from config file
[    36.265] (II) modeset(0): Using vrefresh ranges from config file
[    36.265] (II) modeset(0): Printing DDC gathered Modelines:
[    36.265] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    36.265] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    36.265] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    36.265] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    36.265] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    36.265] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    36.265] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    36.265] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    36.266] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    36.266] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    36.266] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    36.266] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    36.266] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    36.266] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    36.266] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    36.266] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    36.266] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    36.266] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    36.266] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    36.266] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    36.266] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    36.266] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    36.266] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    36.266] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    36.266] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    36.266] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    36.266] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    36.266] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    36.266] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    36.268] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[    36.269] (II) modeset(0): EDID vendor "SAM", prod id 29090
[    36.269] (II) modeset(0): Using hsync ranges from config file
[    36.269] (II) modeset(0): Using vrefresh ranges from config file
[    36.269] (II) modeset(0): Printing DDC gathered Modelines:
[    36.269] (II) modeset(0): Modeline "3840x2160"x0.0  297.00  3840 4016 4104 4400  2160 2168 2178 2250 +hsync +vsync (67.5 kHz eP)
[    36.269] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2008 2052 2200  1080 1084 1089 1125 +hsync +vsync (67.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1920x1080"x0.0  148.50  1920 2448 2492 2640  1080 1084 1089 1125 +hsync +vsync (56.2 kHz e)
[    36.269] (II) modeset(0): Modeline "2560x1440"x0.0  241.50  2560 2608 2640 2720  1440 1443 1448 1481 +hsync -vsync (88.8 kHz e)
[    36.269] (II) modeset(0): Modeline "720x576"x0.0  27.00  720 732 796 864  576 581 586 625 -hsync -vsync (31.2 kHz e)
[    36.269] (II) modeset(0): Modeline "720x480"x0.0  27.00  720 736 798 858  480 489 495 525 -hsync -vsync (31.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1720 1760 1980  720 725 730 750 +hsync +vsync (37.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1280x720"x0.0  74.25  1280 1390 1430 1650  720 725 730 750 +hsync +vsync (45.0 kHz e)
[    36.269] (II) modeset(0): Modeline "800x600"x0.0  40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    36.269] (II) modeset(0): Modeline "800x600"x0.0  36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz e)
[    36.269] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 656 720 840  480 481 484 500 -hsync -vsync (37.5 kHz e)
[    36.269] (II) modeset(0): Modeline "640x480"x0.0  31.50  640 664 704 832  480 489 492 520 -hsync -vsync (37.9 kHz e)
[    36.269] (II) modeset(0): Modeline "640x480"x0.0  30.24  640 704 768 864  480 483 486 525 -hsync -vsync (35.0 kHz e)
[    36.269] (II) modeset(0): Modeline "640x480"x0.0  25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz e)
[    36.269] (II) modeset(0): Modeline "720x400"x0.0  28.32  720 738 846 900  400 412 414 449 -hsync +vsync (31.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1280x1024"x0.0  135.00  1280 1296 1440 1688  1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
[    36.269] (II) modeset(0): Modeline "1024x768"x0.0  78.75  1024 1040 1136 1312  768 769 772 800 +hsync +vsync (60.0 kHz e)
[    36.269] (II) modeset(0): Modeline "1024x768"x0.0  75.00  1024 1048 1184 1328  768 771 777 806 -hsync -vsync (56.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1024x768"x0.0  65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    36.269] (II) modeset(0): Modeline "832x624"x0.0  57.28  832 864 928 1152  624 625 628 667 -hsync -vsync (49.7 kHz e)
[    36.269] (II) modeset(0): Modeline "800x600"x0.0  49.50  800 816 896 1056  600 601 604 625 +hsync +vsync (46.9 kHz e)
[    36.269] (II) modeset(0): Modeline "800x600"x0.0  50.00  800 856 976 1040  600 637 643 666 +hsync +vsync (48.1 kHz e)
[    36.269] (II) modeset(0): Modeline "1152x864"x0.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1280x800"x0.0  71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz e)
[    36.269] (II) modeset(0): Modeline "1280x1024"x0.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    36.269] (II) modeset(0): Modeline "1440x900"x0.0  88.75  1440 1488 1520 1600  900 903 909 926 +hsync -vsync (55.5 kHz e)
[    36.269] (II) modeset(0): Modeline "1600x900"x60.0  119.00  1600 1696 1864 2128  900 901 904 932 -hsync +vsync (55.9 kHz e)
[    36.269] (II) modeset(0): Modeline "1680x1050"x0.0  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
[    36.269] (--) modeset(0): HDMI max TMDS frequency 300000KHz
[    36.271] (--) modeset(0): HDMI max TMDS frequency 600000KHz
[  119.249] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 30ms, your system is too slow
[  120.282] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[  123.415] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 28ms, your system is too slow
[  123.549] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[  125.282] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 21ms, your system is too slow
[  125.282] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[  1094.520] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: SYN_DROPPED event - some input events have been lost.
[ 45055.598] (II) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: SYN_DROPPED event - some input events have been lost.
[ 45056.031] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[ 45056.598] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[ 46066.464] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[ 46392.228] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[ 46392.528] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 31ms, your system is too slow
[ 46392.528] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
[ 48964.933] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 29ms, your system is too slow
[ 48965.999] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 27ms, your system is too slow
[ 48967.633] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 28ms, your system is too slow
[ 48969.099] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 29ms, your system is too slow
[ 49069.300] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 29ms, your system is too slow
[ 49069.300] (EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: WARNING: log rate limit exceeded (5 msgs per 60min). Discarding future messages.
</pre>
</pre>


=== Follow-up ===
But how do you examine it? with <code>[[lsiniramfs]]</code>
# Why are there so many events for the keyboard and mouse? They seem to be detected over and over again.
 
# Are (Roccat) drivers being used, or just generic?
There are quite a lot of files that get named in it. So, pipe it through a pager like <code>less</code>
# What is the error about?
 
<pre>
=== X.org.conf ===
(II) event22 - ROCCAT ROCCAT Burst Pro Air Dongle Consumer Control: is tagged by udev as: Keyboard
I've looked at Xorg but I'm not sure how / if it is responsible for requiring nouveau - but I can clearly see that the package is installed.
<syntaxhighlight lang="text">
dpkg -l | grep -E "xorg|xserver"
ii  python3-xkit                                            0.5.0ubuntu6                                  all          library for the manipulation of xorg.conf files (Python 3)
ii  x11-xserver-utils                                        7.7+10build2                                  amd64        X server utilities
ii  xorg                                                    1:7.7+23ubuntu3                              amd64        X.Org X Window System
ii  xorg-docs-core                                          1:1.7.1-1.2                                  all          Core documentation for the X.org X Window System
ii  xorg-sgml-doctools                                      1:1.11-1.1                                    all          Common tools for building X.Org SGML documentation
ii  xserver-common                                          2:21.1.12-1ubuntu1.4                          all          common files used by various X servers
ii  xserver-xephyr                                          2:21.1.12-1ubuntu1.4                          amd64        nested X server
ii  xserver-xorg                                            1:7.7+23ubuntu3                              amd64        X.Org X server
ii  xserver-xorg-core                                        2:21.1.12-1ubuntu1.4                          amd64        Xorg X server - core server
ii  xserver-xorg-input-all                                  1:7.7+23ubuntu3                              amd64        X.Org X server -- input driver metapackage
ii  xserver-xorg-input-libinput                              1.4.0-1ubuntu24.04.1                          amd64        X.Org X server -- libinput input driver
ii  xserver-xorg-input-wacom                                1:1.2.0-1ubuntu2                              amd64        X.Org X server -- Wacom input driver
ii  xserver-xorg-legacy                                      2:21.1.12-1ubuntu1.4                          amd64        setuid root Xorg server wrapper
ii  xserver-xorg-video-all                                  1:7.7+23ubuntu3                              amd64        X.Org X server -- output driver metapackage
ii  xserver-xorg-video-amdgpu                                23.0.0-1build1                                amd64        X.Org X server -- AMDGPU display driver
ii  xserver-xorg-video-ati                                  1:22.0.0-1build1                              amd64        X.Org X server -- AMD/ATI display driver wrapper
ii  xserver-xorg-video-fbdev                                1:0.5.0-2build2                              amd64        X.Org X server -- fbdev display driver
ii  xserver-xorg-video-intel                                2:2.99.917+git20210115-1build1                amd64        X.Org X server -- Intel i8xx, i9xx display driver
ii  xserver-xorg-video-nouveau                              1:1.0.17-2build1                              amd64        X.Org X server -- Nouveau display driver
ii  xserver-xorg-video-qxl                                  0.1.6-1build1                                amd64        X.Org X server -- QXL display driver
ii  xserver-xorg-video-radeon                                1:22.0.0-1build1                              amd64        X.Org X server -- AMD/ATI Radeon display driver
ii  xserver-xorg-video-vesa                                  1:2.6.0-1                                    amd64        X.Org X server -- VESA display driver
ii  xserver-xorg-video-vmware                                1:13.4.0-1build1                              amd64        X.Org X server -- VMware display driver
 
</syntaxhighlight>
 
=== Module Signing ===
On systems with Secure Boot enabled (mine), you most likely need to sign the module. See [https://download.nvidia.com/XFree86/Linux-x86_64/570.153.02/README/installdriver.html#modulesigning Signing NVIDIA Kernel Module]. However, I didn't get an explicit message that signing was a problem; and I did see that the installation process signs the module with a generated key. I assume that the MOK process hooks into the trust system somehow.
 
When troubleshooting keeps turning up mysteries, you have to check your assumptions.<syntaxhighlight lang="text">
sudo modprobe nvidia
modprobe: ERROR: could not insert 'nvidia': Key was rejected by service
</syntaxhighlight>See [[Nvidia on Ubuntu/Kernel modules|Kernel modules]]
 
== Tools and Troubleshooting ==
Ubuntu wants you to use the '[[Nvidia on Ubuntu/ubuntu-drivers|ubuntu-drivers]]' tool<ref>https://documentation.ubuntu.com/server/how-to/graphics/install-nvidia-drivers/</ref>.
 
NVIDIA seems to just settled on a new mechanism<ref>https://docs.nvidia.com/datacenter/tesla/driver-installation-guide/</ref> rather than downloading the (former?) .run installers:  <code>wget <nowiki>https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb</nowiki> dpkg -i cuda-keyring_1.1-1_all.deb apt update</code> <code>apt install nvidia-open</code>
 
NVIDIA distributes a script called <code>nvidia-bug-report.sh</code> that you can and should run<ref>https://forums.developer.nvidia.com/t/if-you-have-a-problem-please-read-this-first/27131
 
</ref> to collect detailed information about any problems.
 
== Interesting Notes ==
Usually, when you have 'sudo' or root privileges you can do '''more'''. One exception is the X-Server. Root access to the server may be restricted. In that case,
 
<code>glxinfo</code>


and
will give
Error: unable to open display
A regular user will have no problem running <code>glxinfo</code>.


Using input driver 'libinput' for 'ROCCAT ROCCAT Vulcan Pro Consumer Control'
=== Different Desktop Environments ===
As a regular user, my DE is KDE Plasma (using Kubuntu) rather than the GNOME default of Ubuntu


and
{{Subpages|}}


(EE) event19 - ROCCAT ROCCAT Burst Pro Air Dongle: client bug: event processing lagging behind by 29ms, your system is too slow
{{References}}
</pre>

Latest revision as of 22:21, 15 September 2025

Because I wanted to run a local Artificial Intelligence platform called Ollama, I wanted to ensure that my GPU was fully utilized in the system since GPUs are the particular type of hardware best suited for these Vector calculations[1]. And, I have a 'decent' GPU - Nvidia GeForce RTX 4060 (the best you could get when I built the system in 2024). In trying to install the latest Nvidia driver, I set off on a week-long journey of learning, frustration and perseverance discovering the inner workings of Ubuntu 24.04, Xorg, the Linux kernel and kernel modules, DRM, Secure Boot, initramfs and more.

I still do not have the Nvidia driver loaded - even after 40+ reboots and attempts. Instead I'm using the Nouveau driver but at least I have a working system and I believe now that I've finally figured out what needs to be done to disable Nouveau and install Nvidia - a project that I am approaching with greater scrutiny now. I'm documenting the things that I encounter in this journey.

Why not just continue to use Nouveau, a project of the freedesktop community? I mean "if it ain't broke, don't fix it" - right? In principle, I'd very much like to use nouveau. I'm not even sure that any alternative is "better" in any way - especially since I am not a gamer[2]. My use case is to get the best performance from local LLMs. As I become familiar with the methods to switch video drivers reliably, I intend to run benchmarks and explore the benefits of one configuration vs another.

Status[edit]

As of 2025-07-03, I'm still not running with an NVIDIA driver. According to a Reddit thread just days ago, it's always been rather messy getting the right system together. I should "upgrade your system either to Ubuntu 25.04 for Wayland experience and no working suspend to RAM, or to 24.04 if you need suspend to RAM, but are Ok with using X11 instead of Wayland."

Since I'm on 24.04, and I've tried using X11 instead of Wayland without success, I plan to ensure my home directory is on its own partition and reinstall the OS to 25.04

Opposite[edit]

To go the opposite route, purging all proprietary drivers and installing the open source Nouveau driver, you pretty much just sudo apt install xserver-xorg-video-nouveau You might find seemingly good content/tutorials by linuxconfig, but I'm intentionally not linking to their site or YouTube videos because their content is plausible, but sketchy - IOW, it is Artificial Intelligence slop. [3]

About this System[edit]

In your desktop environment, you can access 'System Settings' -> 'About this System' (KInfoCenter) to display basic info about your Software and Hardware environment including the 'graphics processor'. Mine says NV197 - which is the codename given to the card by the Nouveau project[4]. You can click on 'Show More Information' which reveals a multi-tab dialog for OpenCL, OpenGL, Vulkan, Window Manager and X-Server with extensive Graphics info.

Or, you can also get details from a variety of CLI commands like glxinfo, lspci etc.

glxinfo | grep -E "OpenGL version|OpenGL renderer"

OpenGL renderer string: NV197

OpenGL version string: 4.3 (Compatibility Profile) Mesa 24.2.8-1ubuntu1~24.04.1

If you are on a TTY (without a display), lspci shows the same info

lspci | grep VGA

01:00.0 VGA compatible controller: NVIDIA Corporation AD107 [GeForce RTX 4060] (rev a1)

After the installation of Nvidia drivers fails, you won't have a functioning GPU, since you will no longer have the nouveau driver available either, and so the output of the same glxinfo command will show that "llvmpipe" is the renderer.

OpenGL renderer string: llvmpipe (LLVM 19.1.1, 256 bits)

OpenGL version string: 4.5 (Compatibility Profile) Mesa 24.2.8-1ubuntu1~24.04.1

LLVMpipe is a software rasterizer within the Mesa 3D graphics library that utilizes the LLVM compiler infrastructure to perform rendering entirely on the CPU. It acts as a software fallback when a dedicated GPU or its drivers are unavailable or malfunctioning, allowing OpenGL applications to run without hardware acceleration. Essentially, LLVMpipe takes over the rendering process when the GPU can't or shouldn't be used.

If dpkg shows xserver-xorg-video-nouveau is installed, then you can switch to it from e.g. "Driver Manager" in Settings.

Synaptic will allow you to view drivers, but you won't be able to switch from that interface (you'll get an error message about a lock file).

Although switching drivers from the system settings interface appears to complete without error, I'm not sure how well it works - if at all.

I was getting a broken desktop (single monitor, no good results from things like nvidia-smi) after installing Nvidia drivers, and so I tried switching to nouveau - and it somehow eventually worked.

apt-get remove -y --purge '^libnvidia-.*' && apt-get remove -y --purge '^nvidia-*' && apt-get remove -y --purge '*575*' && apt -y autoremove
apt -y autoclean
shutdown -r now
(recovery mode)
vim /etc/default/grub
update-grub

After doing a couple of reboots changing the boot 'modeline' and 'nosplash' options from a recovery console or the TTY, I didn't seem to get anywhere. But when I issued a 'startX' command, and the system booted into the GNOME desktop instead of KDE (?!!??), then I had dual monitors again. Amazingly nvidia-smi returned results, but glxinfo says now that I'm using onboard graphics from the CPU (not the GPU) but it doesn't say LLVMpipe

OpenGL renderer string: Mesa Intel(R) Graphics (RPL-S)

OpenGL version string: 4.6 (Compatibility Profile) Mesa 24.2.8-1ubuntu1~24.04.1

sudo lsmod|grep -i nvidia
nvidia_uvm           2158592  4
nvidia_drm            139264  5
nvidia_modeset       1736704  6 nvidia_drm
nvidia              11550720  81 nvidia_uvm,nvidia_modeset
ecc                    45056  2 ecdh_generic,nvidia
video                  77824  3 xe,i915,nvidia_modeset

Grub right now is 'normal'

GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"

The NVIDIA persistence daemon is running

systemctl list-units --type service --all | grep nvidia

 nvidia-persistenced.service                           loaded    active     running      NVIDIA Persistence Daemon

dkms shows that kernel modules are installed for two kernels

dkms status nvidia/575.57.08, 6.8.0-60-generic, x86_64: installed (Original modules exist) nvidia/575.57.08, 6.8.0-62-generic, x86_64: installed (Original modules exist)

GUI is stuck[edit]

Unable to select a proprietary driver in "Software Sources"

In theory, the GUI (see image) allows you to effortlessly choose and switch between multiple drivers. There are even YouTube videos that show how it's supposed to work[5]. In practice, at least on my system, installing a second driver is not possible from a Graphical desktop environment.

If you go into the Graphical User Interface (GUI) for "System Settings" and then "Hardware -> Driver Manager" it would appear to allow you to simply choose to use a proprietary driver from Nvidia. But all the choices are disabled (grayed out). Every attempt I made to "install an Nvidia driver" - whether through a graphical package manager like Synaptic, or the CLI using apt or dpkg, would just result in a "non-working" graphics system where I didn't even have dual monitor support.

X.org[edit]

Here is the Xorg.log file from my first boot into a clean system having no Nvidia drivers.

Nouveau[edit]

The XServer is loading the nouveau driver package xserver-xorg-video-nouveau.

From the package description:

This driver for the X.Org X server (see xserver-xorg for a further description) provides support for NVIDIA Riva, TNT, GeForce, and Quadro cards.

This package provides 2D support including EXA acceleration, Xv and RandR. 3D functionality is provided by the libgl1-mesa-dri package.

This package is built from the FreeDesktop.org xf86-video-nouveau driver.

Inspection[edit]

dpkg can show us what packages are installed with 'nouveau' in the name.

dpkg -l | grep -i nouveau

ii  libdrm-nouveau2:amd64         2.4.122-1~ubuntu0.24.04.1    amd64    Userspace interface to nouveau-specific kernel DRM services -- runtime
ii  xserver-xorg-video-nouveau    1:1.0.17-2build1             amd64    X.Org X server -- Nouveau display driver


And, lsmod can show us what kernel modules are loaded with 'nouveau' in the name.

lsmod | grep nouveau

nouveau              3096576  68
drm_gpuvm              45056  2 xe,nouveau
drm_exec               12288  3 drm_gpuvm,xe,nouveau
gpu_sched              61440  2 xe,nouveau
drm_ttm_helper         12288  2 xe,nouveau
ttm                   110592  4 drm_ttm_helper,xe,i915,nouveau
drm_display_helper    237568  3 xe,i915,nouveau
mxm_wmi                12288  1 nouveau
i2c_algo_bit           16384  3 xe,i915,nouveau
video                  77824  3 xe,i915,nouveau
wmi                    28672  4 video,wmi_bmof,mxm_wmi,nouveau


modinfo tells us details about the kernel module, including the dependencies.

modinfo (command)


What files does the nouveau driver install? dpkg -L xserver-xorg-video-nouveau

/.
/usr
/usr/lib
/usr/lib/xorg
/usr/lib/xorg/modules
/usr/lib/xorg/modules/drivers
/usr/lib/xorg/modules/drivers/nouveau_drv.so
/usr/share
/usr/share/bug
/usr/share/bug/xserver-xorg-video-nouveau
/usr/share/doc
/usr/share/doc/xserver-xorg-video-nouveau
/usr/share/doc/xserver-xorg-video-nouveau/README.Debian
/usr/share/doc/xserver-xorg-video-nouveau/changelog.Debian.gz
/usr/share/doc/xserver-xorg-video-nouveau/copyright
/usr/share/man
/usr/share/man/man4
/usr/share/man/man4/nouveau.4.gz
/usr/share/bug/xserver-xorg-video-nouveau/script

NVidia[edit]

Documentation for installing NVidia drivers is at https://docs.nvidia.com/datacenter/tesla/driver-installation-guide/

The installation guide for the v570 of the driver (46 chapters) is at https://download.nvidia.com/XFree86/Linux-x86_64/570.153.02/README/

I've read the whole thing.

Replacing Nouveau[edit]

See NVIDIA driver 570.153.02 README common problems #nouveau where it says basically

  1. denylist it
  2. modify your initramfs
  3. modify Xorg to not load nouveau

We explore these in more detail below.

Over at StackExchange, a user asked how to switch graphics driver from nouveau to nvidia and succeeded in part by modifying the boot parameters in grub to deny nouveau. Note that the boot parameters were used only during the process to stop using one driver and install the other driver. It is not a configuration that would allow you to have two different boot menu entries in GRUB in order to use two graphics modes.

Over in the Manjaro Linux forums, a user asked a similar question: How do I switch between Nvidia and Nouveau drivers on boot? They tried using

modprobe.blacklist=nvidia systemd.setenv=GPUMOD=nouveau rd.driver.blacklist=nvidia nouveau.modeset=1 nvidia.modeset=0

But ultimately had to install the OS twice on different disk partitions in order to choose to boot one system or the other depending on what graphics driver they needed to use.

Denylist[edit]

I tried denylisting the nouveau driver and preventing it from doing modesetting by creating disable-nouveau.conf however I was unsuccessful in installing Nvidia drivers even with that in place, and performing operations from a recovery console.

I've looked at the initramfs and don't see where it is loading nouveau. Although I do see where the temporary disable-nouveau.conf file I created is read in.

Modify Initial Ram Disk[edit]

The initial ram disk is a gzipped CPIO archive

file /boot/initrd.img-6.8.0-62-generic

/boot/initrd.img-6.8.0-62-generic: ASCII cpio archive (SVR4 with no CRC)

But how do you examine it? with lsiniramfs

There are quite a lot of files that get named in it. So, pipe it through a pager like less

X.org.conf[edit]

I've looked at Xorg but I'm not sure how / if it is responsible for requiring nouveau - but I can clearly see that the package is installed.

dpkg -l | grep -E "xorg|xserver"
ii  python3-xkit                                             0.5.0ubuntu6                                  all          library for the manipulation of xorg.conf files (Python 3)
ii  x11-xserver-utils                                        7.7+10build2                                  amd64        X server utilities
ii  xorg                                                     1:7.7+23ubuntu3                               amd64        X.Org X Window System
ii  xorg-docs-core                                           1:1.7.1-1.2                                   all          Core documentation for the X.org X Window System
ii  xorg-sgml-doctools                                       1:1.11-1.1                                    all          Common tools for building X.Org SGML documentation
ii  xserver-common                                           2:21.1.12-1ubuntu1.4                          all          common files used by various X servers
ii  xserver-xephyr                                           2:21.1.12-1ubuntu1.4                          amd64        nested X server
ii  xserver-xorg                                             1:7.7+23ubuntu3                               amd64        X.Org X server
ii  xserver-xorg-core                                        2:21.1.12-1ubuntu1.4                          amd64        Xorg X server - core server
ii  xserver-xorg-input-all                                   1:7.7+23ubuntu3                               amd64        X.Org X server -- input driver metapackage
ii  xserver-xorg-input-libinput                              1.4.0-1ubuntu24.04.1                          amd64        X.Org X server -- libinput input driver
ii  xserver-xorg-input-wacom                                 1:1.2.0-1ubuntu2                              amd64        X.Org X server -- Wacom input driver
ii  xserver-xorg-legacy                                      2:21.1.12-1ubuntu1.4                          amd64        setuid root Xorg server wrapper
ii  xserver-xorg-video-all                                   1:7.7+23ubuntu3                               amd64        X.Org X server -- output driver metapackage
ii  xserver-xorg-video-amdgpu                                23.0.0-1build1                                amd64        X.Org X server -- AMDGPU display driver
ii  xserver-xorg-video-ati                                   1:22.0.0-1build1                              amd64        X.Org X server -- AMD/ATI display driver wrapper
ii  xserver-xorg-video-fbdev                                 1:0.5.0-2build2                               amd64        X.Org X server -- fbdev display driver
ii  xserver-xorg-video-intel                                 2:2.99.917+git20210115-1build1                amd64        X.Org X server -- Intel i8xx, i9xx display driver
ii  xserver-xorg-video-nouveau                               1:1.0.17-2build1                              amd64        X.Org X server -- Nouveau display driver
ii  xserver-xorg-video-qxl                                   0.1.6-1build1                                 amd64        X.Org X server -- QXL display driver
ii  xserver-xorg-video-radeon                                1:22.0.0-1build1                              amd64        X.Org X server -- AMD/ATI Radeon display driver
ii  xserver-xorg-video-vesa                                  1:2.6.0-1                                     amd64        X.Org X server -- VESA display driver
ii  xserver-xorg-video-vmware                                1:13.4.0-1build1                              amd64        X.Org X server -- VMware display driver

Module Signing[edit]

On systems with Secure Boot enabled (mine), you most likely need to sign the module. See Signing NVIDIA Kernel Module. However, I didn't get an explicit message that signing was a problem; and I did see that the installation process signs the module with a generated key. I assume that the MOK process hooks into the trust system somehow.

When troubleshooting keeps turning up mysteries, you have to check your assumptions.

sudo modprobe nvidia
modprobe: ERROR: could not insert 'nvidia': Key was rejected by service

See Kernel modules

Tools and Troubleshooting[edit]

Ubuntu wants you to use the 'ubuntu-drivers' tool[6].

NVIDIA seems to just settled on a new mechanism[7] rather than downloading the (former?) .run installers: wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb dpkg -i cuda-keyring_1.1-1_all.deb apt update apt install nvidia-open

NVIDIA distributes a script called nvidia-bug-report.sh that you can and should run[8] to collect detailed information about any problems.

Interesting Notes[edit]

Usually, when you have 'sudo' or root privileges you can do more. One exception is the X-Server. Root access to the server may be restricted. In that case,

glxinfo

will give

Error: unable to open display

A regular user will have no problem running glxinfo.

Different Desktop Environments[edit]

As a regular user, my DE is KDE Plasma (using Kubuntu) rather than the GNOME default of Ubuntu


Subpages[edit]


References[edit]

  1. https://docs.nvidia.com/cuda/cuda-c-programming-guide/index.html#the-benefits-of-using-gpus
  2. I'm not opposed in any way, I just don't have the time to add another hobby. This is a clarifying statement for my use-case, and therefore, requirements.
  3. linuxconfig.org/how-to-install-nvidia-drivers-on-ubuntu-24-04 describes how to get Nvidia drivers working on Ubuntu 24, but curiously refers to deprecated commands like 'ubuntu drivers autoinstall'. They have a whole section where they talk about downloading 'drivers' from Nvidia - but the '.run' files are not drivers at all, they are installers. And they instruct you to use 'telinit' to switch runlevels when the concept of SysV runlevels is obsolete (and thus so is the command). Granted the telinit command will be transparently translated into systemd unit activation requests, but old, deprecated "howto" is "how NOT to".
  4. https://nouveau.freedesktop.org/CodeNames.html
  5. I do not want to link to AI-generated content that creates a worse Internet, but this is what I'm refering to www.youtube.com/watch?v=pmGfi1ldBqc The bot doesn't respond to questions, so is my experience different because I have Secure Boot enabled? Is my experience different because something changed in the OS between Ubuntu 20 and Ubuntu 24?
  6. https://documentation.ubuntu.com/server/how-to/graphics/install-nvidia-drivers/
  7. https://docs.nvidia.com/datacenter/tesla/driver-installation-guide/
  8. https://forums.developer.nvidia.com/t/if-you-have-a-problem-please-read-this-first/27131