You are not logged in.

#1 2021-09-09 10:28:12

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Ever since Kernel 5.13 came out, I get a blank screen after booting up.
System is alive, but its not rendering anything onscreen

I tried downgrading to many versions - either nvidia-dkms fails to compile or the same problem persists

Finally I went back to much older versions to get it to work:

$ pacman -Q | grep -E '(nvidia|^linux )'
linux 5.12.9.arch1-1
nvidia 465.24.02-5
nvidia-dkms 465.24.02-2
nvidia-settings 465.24.02-1
nvidia-utils 465.24.02-2

Here is the Video card details - Its a Dell Precision 7710 Mobile workstation

$ lspci | grep VGA
01:00.0 VGA compatible controller: NVIDIA Corporation GM204GLM [Quadro M5000M / M5000 SE] (rev a1)

Optimus is not enabled, and I have disabled the secondary onboard Intel Graphics adapter 

Kernel command-line:

initrd=\intel-ucode.img initrd=\initramfs-linux.img root="LABEL=BTRAID" resume="/dev/nvme1n1p1" rw quiet fbcon=nodefer add_efi_memmap audit=0 acpi_backlight=vendor usb_storage.quirks=0bc2:ab28:u video.only_lcd=0  net.ifnames=0  ipv6.disable=1 libahci.ignore_sss=1  systemd.unified_cgroup_hierarchy=true  systemd.show_status=0

Thanks in advance

Offline

#2 2021-09-09 11:40:07

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

I get a blank screen after booting up.

When and how? Do you get more output if you remove

quiet fbcon=nodefer

What if you add

nomodeset

?
What if you raise the debug level, https://wiki.archlinux.org/title/Genera … bug_output ?

Does the lts kernel work w/ the 470xx driver?

Online

#3 2021-09-09 12:00:57

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

If I remove "quiet" - I see the kernel successfully boot, then I see some messages that are printed in a script I run in .xinitrc
Usually at this point it would switch to the final graphics mode and the mouse pointer would appear, but instead it goes completely blank

I will try nomodeset and also get the X.org and dmesg log to investigate further.

I can try the LTS kernel too

Offline

#4 2021-09-09 12:54:51

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

X11 won't start w/ "nomodeset" but at least you know that it's the display server and the multi-user.target isn't affected.
I'd try to simplify the X11 session (…; exec xterm)

Also maybe psot your xinitrc for inspection.

Online

#5 2021-09-09 13:10:25

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

It has to be the X server and nvidia, because it works OK as soon as I downgrade the driver and the kernel (new kernel and old driver doesn't compile in DKMS)

I have checked if its merely going to 0 brightness on startup (I once had this issue), but it doesnt seem so
Unless the command below in the .xinitrc is somehow messing it up so the brightness keys dont work anymore.

Here is my .xinitrc

#!/bin/sh
#
# ~/.xinitrc
#
# Executed by startx (run your window manager from here)

if [ -d /etc/X11/xinit/xinitrc.d ]; then
  for f in /etc/X11/xinit/xinitrc.d/*; do
    [ -x "$f" ] && . "$f"
  done
  unset f
fi

[[ -f ~/.Xresources ]] && xrdb -merge -I$HOME ~/.Xresources

export __GL_MaxFramesAllowed=1
xrandr --setprovideroutputsource modesetting NVIDIA-0
xrandr --auto
xrandr --dpi 264
xbindkeys &
sudo xbacklight -set 1 &

export PLASMA_USE_QT_SCALING=1
export GDK_SCALE=2
export GDK_DPI_SCALE=0.5
export QT_AUTO_SCREEN_SCALE_FACTOR=0
export QT_SCREEN_SCALE_FACTORS=2

exec startplasma-x11 &> /dev/null

Offline

#6 2021-09-09 13:21:48

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

It has to be the X server

No.
Could be nvidia ./. the compositor (kwin, shift+alt+f12 to toggle)
Could be the forked xbacklight call (remove the & and the sudo should™ not be required)
Could be the reverse prime (since the IGP is disabled, remove that)
Could be __GL_MaxFramesAllowed - esp. along the compositor.

Online

#7 2021-09-09 13:28:16

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Thanks

I'll try a basic .xinitrc and see later today, when I'm done with work and see how it goes

Offline

#8 2021-09-09 18:27:24

Ammako
Member
Registered: 2021-07-16
Posts: 267

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

I'm pretty sure you're not supposed to use both nvidia and nvidia-dkms at once

nvidia package gets updated alongside linux kernel and automatically provides the correct kernel module for the respective kernel version. dkms is never involved. same with nvidia-lts package, except for linux-lts kernel.

nvidia-dkms package is for linux-zen, linux-hardened, or any other custom kernel, and requires dkms to dynamically rebuild the kernel module every time you update your kernel.

https://wiki.archlinux.org/title/NVIDIA#Installation wrote:
  • For GeForce 630-900, 10-20, and Quadro/Tesla/Tegra K-series cards and newer [NVE0, NV110 and newer family cards from around 2010 and later], install the nvidia package (for use with the linux kernel) or nvidia-lts (for use with the linux-lts kernel) package.

Any chance there could be a conflict due to using both at once?

Last edited by Ammako (2021-09-09 18:29:39)

Offline

#9 2021-09-10 09:41:03

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

seth wrote:

It has to be the X server

No.
Could be nvidia ./. the compositor (kwin, shift+alt+f12 to toggle)
Could be the forked xbacklight call (remove the & and the sudo should™ not be required)
Could be the reverse prime (since the IGP is disabled, remove that)
Could be __GL_MaxFramesAllowed - esp. along the compositor.


So here are the things I tried

First I took a backup of the whole system on a different partition and made a bootloader entry
Then I booted into it and upgraded to the latest kernel and nvidia versions
Edited .xinitrc to remove everything except the default stuff
Rebooted and got the same issue
Rebooted with all kernel options removed - same issue
Rebooted with nomodeset - system hung (as opposed to screen being blank)
Rebooted after removing all the custom settings from xorg.conf - same issue
Rebooted after deleting xorg.conf to allow nvidia to configure itself - still same issue

I forgot to copy the XOrg log elsewhere so the one with the error got borked after I fixed and rebooted - I'll retry and post results

Is there an easy way to have a completely independent install side by side?
My install is the same since 2013, and has been moved across 3 laptops and 5 hard disks without reinstalling

Currently my /boot is on the EFI partition so if I change the kernel on my backup, it will affect the main install.
I guess I should make copies of the working kernel and initramfs and make a boot entry for that

Offline

#10 2021-09-10 09:42:04

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Ammako wrote:

I'm pretty sure you're not supposed to use both nvidia and nvidia-dkms at once

nvidia package gets updated alongside linux kernel and automatically provides the correct kernel module for the respective kernel version. dkms is never involved. same with nvidia-lts package, except for linux-lts kernel.

nvidia-dkms package is for linux-zen, linux-hardened, or any other custom kernel, and requires dkms to dynamically rebuild the kernel module every time you update your kernel.

https://wiki.archlinux.org/title/NVIDIA#Installation wrote:
  • For GeForce 630-900, 10-20, and Quadro/Tesla/Tegra K-series cards and newer [NVE0, NV110 and newer family cards from around 2010 and later], install the nvidia package (for use with the linux kernel) or nvidia-lts (for use with the linux-lts kernel) package.

Any chance there could be a conflict due to using both at once?

I can try this

Offline

#11 2021-09-10 10:57:41

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Here is the failing Xorg log

[     4.469] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[     4.469] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[     4.469] Build Operating System: Linux Archlinux
[     4.469] Current Operating System: Linux archaic 5.13.13-arch1-1 #1 SMP PREEMPT Thu, 26 Aug 2021 19:14:36 +0000 x86_64
[     4.469] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root="LABEL=BAK" rw 
[     4.469] Build Date: 04 August 2021  08:13:54AM
[     4.469]  
[     4.469] Current version of pixman: 0.40.0
[     4.469] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.469] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.469] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep 10 16:03:15 2021
[     4.471] (==) Using config file: "/etc/X11/xorg.conf"
[     4.471] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.471] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.471] (==) ServerLayout "Layout0"
[     4.471] (**) |-->Screen "Screen0" (0)
[     4.471] (**) |   |-->Monitor "Monitor0"
[     4.472] (**) |   |-->Device "Device0"
[     4.472] (**) |   |-->GPUDevice "nvidia"
[     4.472] (**) |-->Input Device "Keyboard0"
[     4.472] (**) |-->Input Device "Mouse0"
[     4.472] (==) Automatically adding devices
[     4.472] (==) Automatically enabling devices
[     4.472] (==) Automatically adding GPU devices
[     4.472] (==) Automatically binding GPU devices
[     4.472] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.473] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     4.473] 	Entry deleted from font path.
[     4.476] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     4.476] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.476] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[     4.476] (WW) Disabling Keyboard0
[     4.476] (WW) Disabling Mouse0
[     4.476] (II) Module ABI versions:
[     4.476] 	X.Org ANSI C Emulation: 0.4
[     4.476] 	X.Org Video Driver: 24.1
[     4.476] 	X.Org XInput driver : 24.1
[     4.476] 	X.Org Server Extension : 10.0
[     4.477] (++) using VT number 1

[     4.478] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[     4.479] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.479] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[     4.481] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.481] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.481] (**) OutputClass "nvidia" setting /dev/dri/card0 as PrimaryGPU
[     4.482] (--) PCI:*(1@0:0:0) 10de:13f8:1028:16da rev 161, Mem @ 0xdb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[     4.482] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.482] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[     4.482] (II) LoadModule: "modesetting"
[     4.485] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.490] (II) Module modesetting: vendor="X.Org Foundation"
[     4.490] 	compiled for 1.20.13, module version = 1.20.13
[     4.490] 	Module class: X.Org Video Driver
[     4.490] 	ABI class: X.Org Video Driver, version 24.1
[     4.490] (II) LoadModule: "glx"
[     4.490] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.501] (II) Module glx: vendor="X.Org Foundation"
[     4.501] 	compiled for 1.20.13, module version = 1.0.0
[     4.501] 	ABI class: X.Org Server Extension, version 10.0
[     4.501] (II) LoadModule: "nvidia"
[     4.501] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     4.517] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.517] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.517] 	Module class: X.Org Video Driver
[     4.517] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.517] (II) NVIDIA dlloader X Driver  470.63.01  Tue Aug  3 20:37:27 UTC 2021
[     4.517] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.518] (WW) Falling back to old probe method for modesetting
[     4.518] (II) systemd-logind: releasing fd for 226:0
[     4.518] (II) Loading sub module "fb"
[     4.518] (II) LoadModule: "fb"
[     4.519] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.522] (II) Module fb: vendor="X.Org Foundation"
[     4.522] 	compiled for 1.20.13, module version = 1.0.0
[     4.522] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.522] (II) Loading sub module "wfb"
[     4.522] (II) LoadModule: "wfb"
[     4.522] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.524] (II) Module wfb: vendor="X.Org Foundation"
[     4.524] 	compiled for 1.20.13, module version = 1.0.0
[     4.524] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.525] (II) Loading sub module "ramdac"
[     4.525] (II) LoadModule: "ramdac"
[     4.525] (II) Module "ramdac" already built-in
[     4.527] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[     4.527] (==) NVIDIA(0): RGB weight 888
[     4.527] (==) NVIDIA(0): Default visual is TrueColor
[     4.527] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.528] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     4.528] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     4.528] (**) NVIDIA(0): Option "HWcursor" "true"
[     4.528] (**) NVIDIA(0): Option "TripleBuffer" "off"
[     4.528] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     4.528] (**) NVIDIA(0): Option "MetaModes" "nvidia-auto-select +0+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}"
[     4.528] (**) NVIDIA(0): Enabling 2D acceleration
[     4.528] (II) Loading sub module "glxserver_nvidia"
[     4.528] (II) LoadModule: "glxserver_nvidia"
[     4.528] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     4.650] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     4.650] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.650] 	Module class: X.Org Server Extension
[     4.650] (II) NVIDIA GLX Module  470.63.01  Tue Aug  3 20:35:52 UTC 2021
[     4.650] (II) NVIDIA: The X server supports PRIME Render Offload.
[     5.414] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     5.414] (--) NVIDIA(0):     CRT-0
[     5.414] (--) NVIDIA(0):     DFP-0
[     5.414] (--) NVIDIA(0):     DFP-1
[     5.414] (--) NVIDIA(0):     DFP-2 (boot)
[     5.414] (--) NVIDIA(0):     DFP-3
[     5.414] (--) NVIDIA(0):     DFP-4
[     5.414] (--) NVIDIA(0):     DFP-5
[     5.414] (--) NVIDIA(0):     DFP-6
[     5.414] (II) NVIDIA(0): NVIDIA GPU Quadro M5000M (GM204GL-A) at PCI:1:0:0 (GPU-0)
[     5.414] (--) NVIDIA(0): Memory: 8388608 kBytes
[     5.414] (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
[     5.414] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     5.415] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     5.415] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     5.415] (--) NVIDIA(GPU-0): 
[     5.415] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     5.415] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     5.415] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     5.415] (--) NVIDIA(GPU-0): 
[     5.415] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     5.415] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     5.415] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     5.415] (--) NVIDIA(GPU-0): 
[     5.415] (--) NVIDIA(GPU-0): DFP-2: disconnected
[     5.415] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[     5.415] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[     5.415] (--) NVIDIA(GPU-0): 
[     5.415] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     5.415] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     5.415] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     5.416] (--) NVIDIA(GPU-0): 
[     5.416] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     5.416] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     5.416] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     5.416] (--) NVIDIA(GPU-0): 
[     5.416] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     5.416] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     5.416] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     5.416] (--) NVIDIA(GPU-0): 
[     5.416] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     5.416] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     5.416] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     5.416] (--) NVIDIA(GPU-0): 
[     5.416] (WW) NVIDIA(0): No valid modes for
[     5.416] (WW) NVIDIA(0):     "nvidia-auto-select+0+0{ForceCompositionPipeline=On,ForceFullCompositionPipeline=On}";
[     5.416] (WW) NVIDIA(0):     removing.
[     5.416] (WW) NVIDIA(0): 
[     5.416] (WW) NVIDIA(0): Unable to validate any modes; falling back to the default mode
[     5.416] (WW) NVIDIA(0):     "nvidia-auto-select".
[     5.416] (WW) NVIDIA(0): 
[     5.416] (--) NVIDIA(0): No enabled display devices found; starting anyway because
[     5.416] (--) NVIDIA(0):     AllowEmptyInitialConfiguration is enabled
[     5.416] (II) NVIDIA(0): Validated MetaModes:
[     5.416] (II) NVIDIA(0):     "NULL"
[     5.416] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[     5.416] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[     5.416] (**) NVIDIA(0): DPI set to (43, 57); computed from "DisplaySize" Monitor
[     5.416] (**) NVIDIA(0):     section option
[     5.416] (II) UnloadModule: "modesetting"
[     5.416] (II) Unloading modesetting
[     5.416] (II) NVIDIA: Reserving 6144.00 MB of virtual memory for indirect memory
[     5.416] (II) NVIDIA:     access.
[     5.419] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     5.419] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     5.419] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     5.419] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     5.419] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     5.419] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     5.419] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     5.419] (II) NVIDIA(0):     Config Options in the README.
[     5.437] (II) NVIDIA(0): Setting mode "NULL"
[     5.673] (==) NVIDIA(0): Disabling shared memory pixmaps
[     5.673] (==) NVIDIA(0): Backing store enabled
[     5.673] (==) NVIDIA(0): Silken mouse disabled
[     5.673] (==) NVIDIA(0): DPMS enabled
[     5.673] (WW) NVIDIA(0): Option "PrimaryGPU" is not used
[     5.673] (II) Loading sub module "dri2"
[     5.673] (II) LoadModule: "dri2"
[     5.673] (II) Module "dri2" already built-in
[     5.673] (II) NVIDIA(0): [DRI2] Setup complete
[     5.673] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     5.673] (II) Initializing extension Generic Event Extension
[     5.673] (II) Initializing extension SHAPE
[     5.673] (II) Initializing extension MIT-SHM
[     5.673] (II) Initializing extension XInputExtension
[     5.673] (II) Initializing extension XTEST
[     5.673] (II) Initializing extension BIG-REQUESTS
[     5.673] (II) Initializing extension SYNC
[     5.673] (II) Initializing extension XKEYBOARD
[     5.673] (II) Initializing extension XC-MISC
[     5.673] (II) Initializing extension SECURITY
[     5.674] (II) Initializing extension XFIXES
[     5.674] (II) Initializing extension RENDER
[     5.674] (II) Initializing extension RANDR
[     5.674] (II) Initializing extension COMPOSITE
[     5.674] (II) Initializing extension DAMAGE
[     5.674] (II) Initializing extension MIT-SCREEN-SAVER
[     5.674] (II) Initializing extension DOUBLE-BUFFER
[     5.674] (II) Initializing extension RECORD
[     5.674] (II) Initializing extension DPMS
[     5.674] (II) Initializing extension Present
[     5.674] (II) Initializing extension DRI3
[     5.674] (II) Initializing extension X-Resource
[     5.674] (II) Initializing extension XVideo
[     5.674] (II) Initializing extension XVideo-MotionCompensation
[     5.674] (II) Initializing extension GLX
[     5.674] (II) Initializing extension GLX
[     5.674] (II) Indirect GLX disabled.
[     5.674] (II) GLX: Another vendor is already registered for screen 0
[     5.674] (II) Initializing extension XFree86-VidModeExtension
[     5.674] (II) Initializing extension XFree86-DGA
[     5.674] (II) Initializing extension XFree86-DRI
[     5.674] (II) Initializing extension DRI2
[     5.674] (II) Initializing extension NV-GLX
[     5.674] (II) Initializing extension NV-CONTROL
[     5.794] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     5.794] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.794] (II) LoadModule: "libinput"
[     5.794] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     5.798] (II) Module libinput: vendor="X.Org Foundation"
[     5.798] 	compiled for 1.20.11, module version = 1.1.0
[     5.798] 	Module class: X.Org XInput Driver
[     5.798] 	ABI class: X.Org XInput driver, version 24.1
[     5.798] (II) Using input driver 'libinput' for 'Power Button'
[     5.799] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 33 paused 0
[     5.799] (**) Power Button: always reports core events
[     5.799] (**) Option "Device" "/dev/input/event3"
[     5.799] (**) Option "_source" "server/udev"
[     5.804] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.804] (II) event3  - Power Button: device is a keyboard
[     5.804] (II) event3  - Power Button: device removed
[     5.804] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     5.804] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     5.805] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.805] (II) event3  - Power Button: device is a keyboard
[     5.805] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
[     5.805] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.805] (II) Using input driver 'libinput' for 'Video Bus'
[     5.806] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 36 paused 0
[     5.806] (**) Video Bus: always reports core events
[     5.806] (**) Option "Device" "/dev/input/event10"
[     5.806] (**) Option "_source" "server/udev"
[     5.807] (II) event10 - Video Bus: is tagged by udev as: Keyboard
[     5.807] (II) event10 - Video Bus: device is a keyboard
[     5.807] (II) event10 - Video Bus: device removed
[     5.807] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input10/event10"
[     5.807] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.808] (II) event10 - Video Bus: is tagged by udev as: Keyboard
[     5.808] (II) event10 - Video Bus: device is a keyboard
[     5.809] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     5.809] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.809] (II) Using input driver 'libinput' for 'Power Button'
[     5.809] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 37 paused 0
[     5.809] (**) Power Button: always reports core events
[     5.809] (**) Option "Device" "/dev/input/event1"
[     5.809] (**) Option "_source" "server/udev"
[     5.810] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     5.810] (II) event1  - Power Button: device is a keyboard
[     5.810] (II) event1  - Power Button: device removed
[     5.810] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[     5.810] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     5.811] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     5.811] (II) event1  - Power Button: device is a keyboard
[     5.811] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     5.811] (II) No input driver specified, ignoring this device.
[     5.811] (II) This device may have been added with another device file.
[     5.812] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[     5.812] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.812] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.812] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 38 paused 0
[     5.812] (**) Sleep Button: always reports core events
[     5.812] (**) Option "Device" "/dev/input/event2"
[     5.812] (**) Option "_source" "server/udev"
[     5.813] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     5.813] (II) event2  - Sleep Button: device is a keyboard
[     5.813] (II) event2  - Sleep Button: device removed
[     5.813] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[     5.813] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.814] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     5.814] (II) event2  - Sleep Button: device is a keyboard
[     5.814] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event12)
[     5.814] (II) No input driver specified, ignoring this device.
[     5.814] (II) This device may have been added with another device file.
[     5.815] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event13)
[     5.815] (II) No input driver specified, ignoring this device.
[     5.815] (II) This device may have been added with another device file.
[     5.815] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event14)
[     5.815] (II) No input driver specified, ignoring this device.
[     5.815] (II) This device may have been added with another device file.
[     5.815] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event15)
[     5.815] (II) No input driver specified, ignoring this device.
[     5.816] (II) This device may have been added with another device file.
[     5.816] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event21)
[     5.816] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[     5.816] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[     5.817] (II) systemd-logind: got fd for /dev/input/event21 13:85 fd 39 paused 0
[     5.817] (**) Integrated_Webcam_HD: Integrate: always reports core events
[     5.817] (**) Option "Device" "/dev/input/event21"
[     5.817] (**) Option "_source" "server/udev"
[     5.818] (II) event21 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[     5.818] (II) event21 - Integrated_Webcam_HD: Integrate: device is a keyboard
[     5.818] (II) event21 - Integrated_Webcam_HD: Integrate: device removed
[     5.818] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input24/event21"
[     5.818] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[     5.819] (II) event21 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[     5.819] (II) event21 - Integrated_Webcam_HD: Integrate: device is a keyboard
[     5.820] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 (/dev/input/event6)
[     5.820] (**) Microsoft Microsoft® Nano Transceiver v1.0: Applying InputClass "libinput keyboard catchall"
[     5.820] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0'
[     5.820] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 40 paused 0
[     5.820] (**) Microsoft Microsoft® Nano Transceiver v1.0: always reports core events
[     5.820] (**) Option "Device" "/dev/input/event6"
[     5.820] (**) Option "_source" "server/udev"
[     5.821] (II) event6  - Microsoft Microsoft® Nano Transceiver v1.0: is tagged by udev as: Keyboard
[     5.821] (II) event6  - Microsoft Microsoft® Nano Transceiver v1.0: device is a keyboard
[     5.822] (II) event6  - Microsoft Microsoft® Nano Transceiver v1.0: device removed
[     5.822] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:045E:07B2.0001/input/input7/event6"
[     5.822] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0" (type: KEYBOARD, id 11)
[     5.823] (II) event6  - Microsoft Microsoft® Nano Transceiver v1.0: is tagged by udev as: Keyboard
[     5.823] (II) event6  - Microsoft Microsoft® Nano Transceiver v1.0: device is a keyboard
[     5.824] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Mouse (/dev/input/event7)
[     5.824] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: Applying InputClass "libinput pointer catchall"
[     5.824] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Mouse'
[     5.879] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 41 paused 0
[     5.879] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: always reports core events
[     5.879] (**) Option "Device" "/dev/input/event7"
[     5.879] (**) Option "_source" "server/udev"
[     5.882] (II) event7  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: is tagged by udev as: Mouse
[     5.883] (II) event7  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device is a pointer
[     5.883] (II) event7  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device removed
[     5.883] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:045E:07B2.0002/input/input8/event7"
[     5.883] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Mouse" (type: MOUSE, id 12)
[     5.883] (**) Option "AccelerationScheme" "none"
[     5.883] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: (accel) selected scheme none/0
[     5.883] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: (accel) acceleration factor: 2.000
[     5.883] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: (accel) acceleration threshold: 4
[     5.887] (II) event7  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: is tagged by udev as: Mouse
[     5.887] (II) event7  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device is a pointer
[     5.889] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Mouse (/dev/input/mouse0)
[     5.889] (II) No input driver specified, ignoring this device.
[     5.889] (II) This device may have been added with another device file.
[     5.891] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control (/dev/input/event8)
[     5.891] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.891] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     5.893] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 42 paused 0
[     5.893] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     5.893] (**) Option "Device" "/dev/input/event8"
[     5.893] (**) Option "_source" "server/udev"
[     5.897] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     5.897] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     5.897] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[     5.897] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: needs a virtual subdevice
[     5.897] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:045E:07B2.0002/input/input9/event8"
[     5.897] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: MOUSE, id 13)
[     5.897] (**) Option "AccelerationScheme" "none"
[     5.897] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) selected scheme none/0
[     5.898] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration factor: 2.000
[     5.898] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration threshold: 4
[     5.901] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     5.901] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     5.903] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control (/dev/input/event9)
[     5.903] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.904] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     5.905] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 43 paused 0
[     5.905] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     5.905] (**) Option "Device" "/dev/input/event9"
[     5.905] (**) Option "_source" "server/udev"
[     5.909] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     5.909] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     5.909] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[     5.909] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: needs a virtual subdevice
[     5.909] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:045E:07B2.0003/input/input11/event9"
[     5.910] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: MOUSE, id 14)
[     5.910] (**) Option "AccelerationScheme" "none"
[     5.910] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) selected scheme none/0
[     5.910] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration factor: 2.000
[     5.910] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration threshold: 4
[     5.913] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     5.913] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     5.916] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 System Control (/dev/input/event11)
[     5.916] (**) Microsoft Microsoft® Nano Transceiver v1.0 System Control: Applying InputClass "libinput keyboard catchall"
[     5.916] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 System Control'
[     5.917] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 44 paused 0
[     5.917] (**) Microsoft Microsoft® Nano Transceiver v1.0 System Control: always reports core events
[     5.918] (**) Option "Device" "/dev/input/event11"
[     5.918] (**) Option "_source" "server/udev"
[     5.920] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: is tagged by udev as: Keyboard
[     5.920] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device is a keyboard
[     5.920] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device removed
[     5.920] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:045E:07B2.0003/input/input13/event11"
[     5.920] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 System Control" (type: KEYBOARD, id 15)
[     5.923] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: is tagged by udev as: Keyboard
[     5.923] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device is a keyboard
[     5.923] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[     5.924] (II) No input driver specified, ignoring this device.
[     5.924] (II) This device may have been added with another device file.
[     5.924] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event17)
[     5.924] (II) No input driver specified, ignoring this device.
[     5.924] (II) This device may have been added with another device file.
[     5.925] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event18)
[     5.925] (II) No input driver specified, ignoring this device.
[     5.925] (II) This device may have been added with another device file.
[     5.926] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event20)
[     5.926] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[     5.926] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[     5.927] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 45 paused 0
[     5.927] (**) Dell WMI hotkeys: always reports core events
[     5.927] (**) Option "Device" "/dev/input/event20"
[     5.927] (**) Option "_source" "server/udev"
[     5.928] (II) event20 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[     5.928] (II) event20 - Dell WMI hotkeys: device is a keyboard
[     5.928] (II) event20 - Dell WMI hotkeys: device removed
[     5.928] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input23/event20"
[     5.928] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 16)
[     5.929] (II) event20 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[     5.929] (II) event20 - Dell WMI hotkeys: device is a keyboard
[     5.930] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     5.930] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.930] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.931] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 46 paused 0
[     5.931] (**) AT Translated Set 2 keyboard: always reports core events
[     5.931] (**) Option "Device" "/dev/input/event4"
[     5.931] (**) Option "_source" "server/udev"
[     5.932] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.932] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.933] (II) event4  - AT Translated Set 2 keyboard: device removed
[     5.933] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     5.933] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 17)
[     5.934] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.934] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.935] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/event23)
[     5.935] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.935] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint TouchPad'
[     5.936] (II) systemd-logind: got fd for /dev/input/event23 13:87 fd 47 paused 0
[     5.936] (**) AlpsPS/2 ALPS DualPoint TouchPad: always reports core events
[     5.936] (**) Option "Device" "/dev/input/event23"
[     5.936] (**) Option "_source" "server/udev"
[     5.937] (II) event23 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     5.938] (II) event23 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     5.938] (II) event23 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[     5.938] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input21/event23"
[     5.938] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint TouchPad" (type: TOUCHPAD, id 18)
[     5.938] (**) Option "AccelerationScheme" "none"
[     5.938] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) selected scheme none/0
[     5.938] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration factor: 2.000
[     5.938] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration threshold: 4
[     5.939] (II) event23 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     5.940] (II) event23 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     5.940] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/mouse2)
[     5.940] (II) No input driver specified, ignoring this device.
[     5.940] (II) This device may have been added with another device file.
[     5.941] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/event22)
[     5.941] (**) AlpsPS/2 ALPS DualPoint Stick: Applying InputClass "libinput pointer catchall"
[     5.941] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint Stick'
[     5.941] (II) systemd-logind: got fd for /dev/input/event22 13:86 fd 48 paused 0
[     5.941] (**) AlpsPS/2 ALPS DualPoint Stick: always reports core events
[     5.941] (**) Option "Device" "/dev/input/event22"
[     5.941] (**) Option "_source" "server/udev"
[     5.942] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     5.942] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     5.942] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     5.943] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: device removed
[     5.943] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input25/event22"
[     5.943] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint Stick" (type: MOUSE, id 19)
[     5.943] (**) Option "AccelerationScheme" "none"
[     5.943] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) selected scheme none/0
[     5.943] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration factor: 2.000
[     5.943] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration threshold: 4
[     5.944] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     5.944] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     5.944] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     5.945] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/mouse1)
[     5.945] (II) No input driver specified, ignoring this device.
[     5.945] (II) This device may have been added with another device file.
[     5.945] (II) config/udev: Adding input device PC Speaker (/dev/input/event19)
[     5.945] (II) No input driver specified, ignoring this device.
[     5.945] (II) This device may have been added with another device file.
[     5.948] (II) config/udev: Adding input device DELL Wireless hotkeys (/dev/input/event5)
[     5.948] (**) DELL Wireless hotkeys: Applying InputClass "libinput keyboard catchall"
[     5.948] (II) Using input driver 'libinput' for 'DELL Wireless hotkeys'
[     5.948] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 49 paused 0
[     5.948] (**) DELL Wireless hotkeys: always reports core events
[     5.948] (**) Option "Device" "/dev/input/event5"
[     5.948] (**) Option "_source" "server/udev"
[     5.949] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[     5.949] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[     5.949] (II) event5  - DELL Wireless hotkeys: device removed
[     5.949] (**) Option "config_info" "udev:/sys/devices/virtual/input/input6/event5"
[     5.949] (II) XINPUT: Adding extended input device "DELL Wireless hotkeys" (type: KEYBOARD, id 20)
[     5.949] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[     5.950] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[     5.953] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.953] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     5.953] (II) systemd-logind: returning pre-existing fd for /dev/input/event8 13:72
[     5.953] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     5.953] (**) Option "Device" "/dev/input/event8"
[     5.953] (**) Option "_source" "_driver/libinput"
[     5.953] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is a virtual subdevice
[     5.953] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:045E:07B2.0002/input/input9/event8"
[     5.953] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: KEYBOARD, id 21)
[     5.954] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.954] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     5.954] (II) systemd-logind: returning pre-existing fd for /dev/input/event9 13:73
[     5.954] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     5.954] (**) Option "Device" "/dev/input/event9"
[     5.954] (**) Option "_source" "_driver/libinput"
[     5.954] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is a virtual subdevice
[     5.954] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:045E:07B2.0003/input/input11/event9"
[     5.954] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: KEYBOARD, id 22)
[     7.552] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     7.552] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     7.552] (--) NVIDIA(GPU-0): 
[     7.552] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     7.552] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     7.552] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     7.552] (--) NVIDIA(GPU-0): 
[     7.552] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     7.552] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     7.552] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     7.552] (--) NVIDIA(GPU-0): 
[     7.552] (--) NVIDIA(GPU-0): DFP-2: disconnected
[     7.552] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[     7.552] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[     7.552] (--) NVIDIA(GPU-0): 
[     7.552] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     7.552] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     7.552] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     7.552] (--) NVIDIA(GPU-0): 
[     7.552] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     7.552] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     7.552] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     7.552] (--) NVIDIA(GPU-0): 
[     7.553] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     7.553] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     7.553] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     7.553] (--) NVIDIA(GPU-0): 
[     7.553] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     7.553] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     7.553] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     7.553] (--) NVIDIA(GPU-0): 
[     8.336] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     8.337] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     8.337] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     8.337] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-2: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[     8.337] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     8.337] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     8.337] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     8.337] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[     8.337] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     8.337] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     8.337] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     8.337] (--) NVIDIA(GPU-0): 
[    36.072] (**) Option "fd" "33"
[    36.072] (II) event3  - Power Button: device removed
[    36.072] (**) Option "fd" "36"
[    36.072] (II) event10 - Video Bus: device removed
[    36.072] (**) Option "fd" "37"
[    36.072] (II) event1  - Power Button: device removed
[    36.072] (**) Option "fd" "38"
[    36.072] (II) event2  - Sleep Button: device removed
[    36.073] (**) Option "fd" "39"
[    36.073] (II) event21 - Integrated_Webcam_HD: Integrate: device removed
[    36.073] (**) Option "fd" "40"
[    36.073] (II) event6  - Microsoft Microsoft® Nano Transceiver v1.0: device removed
[    36.073] (**) Option "fd" "41"
[    36.073] (II) event7  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device removed
[    36.073] (**) Option "fd" "42"
[    36.073] (**) Option "fd" "43"
[    36.073] (**) Option "fd" "44"
[    36.073] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device removed
[    36.073] (**) Option "fd" "45"
[    36.073] (II) event20 - Dell WMI hotkeys: device removed
[    36.073] (**) Option "fd" "46"
[    36.073] (II) event4  - AT Translated Set 2 keyboard: device removed
[    36.073] (**) Option "fd" "47"
[    36.073] (II) event23 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[    36.073] (**) Option "fd" "48"
[    36.073] (II) event22 - AlpsPS/2 ALPS DualPoint Stick: device removed
[    36.073] (**) Option "fd" "49"
[    36.073] (II) event5  - DELL Wireless hotkeys: device removed
[    36.073] (**) Option "fd" "42"
[    36.073] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[    36.073] (**) Option "fd" "43"
[    36.073] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[    36.079] (II) UnloadModule: "libinput"
[    36.079] (II) systemd-logind: not releasing fd for 13:73, still in use
[    36.079] (II) UnloadModule: "libinput"
[    36.079] (II) systemd-logind: not releasing fd for 13:72, still in use
[    36.079] (II) UnloadModule: "libinput"
[    36.079] (II) systemd-logind: releasing fd for 13:69
[    36.118] (II) UnloadModule: "libinput"
[    36.118] (II) systemd-logind: releasing fd for 13:86
[    36.175] (II) UnloadModule: "libinput"
[    36.175] (II) systemd-logind: releasing fd for 13:87
[    36.262] (II) UnloadModule: "libinput"
[    36.262] (II) systemd-logind: releasing fd for 13:68
[    36.289] (II) UnloadModule: "libinput"
[    36.289] (II) systemd-logind: releasing fd for 13:84
[    36.355] (II) UnloadModule: "libinput"
[    36.355] (II) systemd-logind: releasing fd for 13:75
[    36.382] (II) UnloadModule: "libinput"
[    36.382] (II) systemd-logind: releasing fd for 13:73
[    36.435] (II) UnloadModule: "libinput"
[    36.435] (II) systemd-logind: releasing fd for 13:72
[    36.515] (II) UnloadModule: "libinput"
[    36.515] (II) systemd-logind: releasing fd for 13:71
[    36.552] (II) UnloadModule: "libinput"
[    36.552] (II) systemd-logind: releasing fd for 13:70
[    36.565] (II) UnloadModule: "libinput"
[    36.565] (II) systemd-logind: releasing fd for 13:85
[    36.615] (II) UnloadModule: "libinput"
[    36.615] (II) systemd-logind: releasing fd for 13:66
[    36.629] (II) UnloadModule: "libinput"
[    36.629] (II) systemd-logind: releasing fd for 13:65
[    36.649] (II) UnloadModule: "libinput"
[    36.649] (II) systemd-logind: releasing fd for 13:74
[    36.700] (II) UnloadModule: "libinput"
[    36.700] (II) systemd-logind: releasing fd for 13:67
[    46.875] (II) NVIDIA(GPU-0): Deleting GPU-0
[    46.884] (II) Server terminated successfully (0). Closing log file.

Here is the XOrg log for the working versions:

[     4.483] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[     4.483] 
X.Org X Server 1.20.13
X Protocol Version 11, Revision 0
[     4.483] Build Operating System: Linux Archlinux
[     4.483] Current Operating System: Linux archaic 5.12.9-arch1-1 #1 SMP PREEMPT Thu, 03 Jun 2021 11:36:13 +0000 x86_64
[     4.483] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img-5.12 root="LABEL=BTRAID" resume="/dev/nvme1n1p1" rw quiet fbcon=nodefer net.ifnames=0  ipv6.disable=1 systemd.show_status=0
[     4.483] Build Date: 04 August 2021  08:13:54AM
[     4.483]  
[     4.483] Current version of pixman: 0.40.0
[     4.483] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     4.483] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     4.483] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Sep 10 16:10:24 2021
[     4.484] (==) Using config file: "/etc/X11/xorg.conf"
[     4.484] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     4.484] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     4.484] (==) ServerLayout "Layout0"
[     4.484] (**) |-->Screen "Screen0" (0)
[     4.484] (**) |   |-->Monitor "Monitor0"
[     4.484] (**) |   |-->Device "Device0"
[     4.484] (**) |   |-->GPUDevice "nvidia"
[     4.484] (**) |-->Input Device "Keyboard0"
[     4.484] (**) |-->Input Device "Mouse0"
[     4.484] (==) Automatically adding devices
[     4.484] (==) Automatically enabling devices
[     4.484] (==) Automatically adding GPU devices
[     4.484] (==) Automatically binding GPU devices
[     4.484] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     4.486] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     4.486] 	Entry deleted from font path.
[     4.487] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     4.487] (==) ModulePath set to "/usr/lib/xorg/modules"
[     4.487] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[     4.487] (WW) Disabling Keyboard0
[     4.487] (WW) Disabling Mouse0
[     4.487] (II) Module ABI versions:
[     4.487] 	X.Org ANSI C Emulation: 0.4
[     4.487] 	X.Org Video Driver: 24.1
[     4.487] 	X.Org XInput driver : 24.1
[     4.487] 	X.Org Server Extension : 10.0
[     4.488] (++) using VT number 1

[     4.488] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[     4.489] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.489] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[     4.490] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.490] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.490] (**) OutputClass "nvidia" setting /dev/dri/card0 as PrimaryGPU
[     4.490] (--) PCI:*(1@0:0:0) 10de:13f8:1028:16da rev 161, Mem @ 0xdb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[     4.490] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.490] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[     4.491] (II) LoadModule: "modesetting"
[     4.491] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[     4.493] (II) Module modesetting: vendor="X.Org Foundation"
[     4.493] 	compiled for 1.20.13, module version = 1.20.13
[     4.493] 	Module class: X.Org Video Driver
[     4.493] 	ABI class: X.Org Video Driver, version 24.1
[     4.493] (II) LoadModule: "glx"
[     4.493] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.498] (II) Module glx: vendor="X.Org Foundation"
[     4.498] 	compiled for 1.20.13, module version = 1.0.0
[     4.498] 	ABI class: X.Org Server Extension, version 10.0
[     4.498] (II) LoadModule: "nvidia"
[     4.498] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     4.501] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.501] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.501] 	Module class: X.Org Video Driver
[     4.501] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[     4.501] (II) NVIDIA dlloader X Driver  465.24.02  Thu Apr  8 17:55:59 UTC 2021
[     4.501] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.501] (WW) Falling back to old probe method for modesetting
[     4.501] (II) systemd-logind: releasing fd for 226:0
[     4.501] (II) Loading sub module "fb"
[     4.501] (II) LoadModule: "fb"
[     4.501] (II) Loading /usr/lib/xorg/modules/libfb.so
[     4.502] (II) Module fb: vendor="X.Org Foundation"
[     4.502] 	compiled for 1.20.13, module version = 1.0.0
[     4.502] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.502] (II) Loading sub module "wfb"
[     4.502] (II) LoadModule: "wfb"
[     4.502] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.503] (II) Module wfb: vendor="X.Org Foundation"
[     4.503] 	compiled for 1.20.13, module version = 1.0.0
[     4.503] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.503] (II) Loading sub module "ramdac"
[     4.503] (II) LoadModule: "ramdac"
[     4.503] (II) Module "ramdac" already built-in
[     4.504] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[     4.504] (==) NVIDIA(0): RGB weight 888
[     4.504] (==) NVIDIA(0): Default visual is TrueColor
[     4.504] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.504] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     4.504] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     4.504] (**) NVIDIA(0): Option "HWcursor" "true"
[     4.504] (**) NVIDIA(0): Option "TripleBuffer" "off"
[     4.504] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     4.505] (**) NVIDIA(0): Option "MetaModes" "nvidia-auto-select +0+0 {ForceCompositionPipeline=On, ForceFullCompositionPipeline=On}"
[     4.505] (**) NVIDIA(0): Enabling 2D acceleration
[     4.505] (II) Loading sub module "glxserver_nvidia"
[     4.505] (II) LoadModule: "glxserver_nvidia"
[     4.505] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     4.527] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     4.527] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.527] 	Module class: X.Org Server Extension
[     4.527] (II) NVIDIA GLX Module  465.24.02  Thu Apr  8 17:53:33 UTC 2021
[     4.527] (II) NVIDIA: The X server supports PRIME Render Offload.
[     5.267] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     5.267] (--) NVIDIA(0):     CRT-0
[     5.267] (--) NVIDIA(0):     DFP-0
[     5.267] (--) NVIDIA(0):     DFP-1
[     5.267] (--) NVIDIA(0):     DFP-2 (boot)
[     5.267] (--) NVIDIA(0):     DFP-3
[     5.267] (--) NVIDIA(0):     DFP-4
[     5.267] (--) NVIDIA(0):     DFP-5
[     5.267] (--) NVIDIA(0):     DFP-6
[     5.268] (II) NVIDIA(0): NVIDIA GPU NVIDIA Quadro M5000M (GM204GL-A) at PCI:1:0:0
[     5.268] (II) NVIDIA(0):     (GPU-0)
[     5.268] (--) NVIDIA(0): Memory: 8388608 kBytes
[     5.268] (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
[     5.268] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     5.269] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     5.269] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     5.269] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     5.269] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     5.269] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     5.269] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     5.269] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     5.269] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     5.269] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     5.269] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     5.269] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     5.269] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     5.269] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     5.269] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.269] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     5.269] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     5.269] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     5.269] (--) NVIDIA(GPU-0): 
[     5.270] (II) NVIDIA(0): Validated MetaModes:
[     5.270] (II) NVIDIA(0):    
[     5.270] (II) NVIDIA(0):     "nvidia-auto-select+0+0{ForceCompositionPipeline=On,ForceFullCompositionPipeline=On}"
[     5.270] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 2160
[     5.274] (--) NVIDIA(0): DPI set to (256, 261); computed from "UseEdidDpi" X config
[     5.274] (--) NVIDIA(0):     option
[     5.274] (II) UnloadModule: "modesetting"
[     5.274] (II) Unloading modesetting
[     5.274] (II) NVIDIA: Reserving 6144.00 MB of virtual memory for indirect memory
[     5.274] (II) NVIDIA:     access.
[     5.276] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     5.276] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     5.276] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     5.276] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     5.276] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     5.276] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     5.276] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     5.276] (II) NVIDIA(0):     Config Options in the README.
[     5.293] (II) NVIDIA(0): Setting mode "nvidia-auto-select+0+0{ForceCompositionPipeline=On,ForceFullCompositionPipeline=On}"
[     6.385] (==) NVIDIA(0): Disabling shared memory pixmaps
[     6.385] (==) NVIDIA(0): Backing store enabled
[     6.385] (==) NVIDIA(0): Silken mouse disabled
[     6.386] (==) NVIDIA(0): DPMS enabled
[     6.386] (WW) NVIDIA(0): Option "PrimaryGPU" is not used
[     6.386] (II) Loading sub module "dri2"
[     6.386] (II) LoadModule: "dri2"
[     6.386] (II) Module "dri2" already built-in
[     6.386] (II) NVIDIA(0): [DRI2] Setup complete
[     6.386] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     6.386] (II) Initializing extension Generic Event Extension
[     6.386] (II) Initializing extension SHAPE
[     6.386] (II) Initializing extension MIT-SHM
[     6.386] (II) Initializing extension XInputExtension
[     6.386] (II) Initializing extension XTEST
[     6.386] (II) Initializing extension BIG-REQUESTS
[     6.386] (II) Initializing extension SYNC
[     6.386] (II) Initializing extension XKEYBOARD
[     6.386] (II) Initializing extension XC-MISC
[     6.386] (II) Initializing extension SECURITY
[     6.386] (II) Initializing extension XFIXES
[     6.386] (II) Initializing extension RENDER
[     6.386] (II) Initializing extension RANDR
[     6.386] (II) Initializing extension COMPOSITE
[     6.386] (II) Initializing extension DAMAGE
[     6.386] (II) Initializing extension MIT-SCREEN-SAVER
[     6.386] (II) Initializing extension DOUBLE-BUFFER
[     6.386] (II) Initializing extension RECORD
[     6.386] (II) Initializing extension DPMS
[     6.386] (II) Initializing extension Present
[     6.386] (II) Initializing extension DRI3
[     6.386] (II) Initializing extension X-Resource
[     6.386] (II) Initializing extension XVideo
[     6.386] (II) Initializing extension XVideo-MotionCompensation
[     6.386] (II) Initializing extension GLX
[     6.386] (II) Initializing extension GLX
[     6.386] (II) Indirect GLX disabled.
[     6.386] (II) GLX: Another vendor is already registered for screen 0
[     6.386] (II) Initializing extension XFree86-VidModeExtension
[     6.386] (II) Initializing extension XFree86-DGA
[     6.386] (II) Initializing extension XFree86-DRI
[     6.386] (II) Initializing extension DRI2
[     6.386] (II) Initializing extension NV-GLX
[     6.386] (II) Initializing extension NV-CONTROL
[     6.386] (II) Initializing extension XINERAMA
[     6.505] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     6.505] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.505] (II) LoadModule: "libinput"
[     6.505] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     6.508] (II) Module libinput: vendor="X.Org Foundation"
[     6.508] 	compiled for 1.20.11, module version = 1.1.0
[     6.508] 	Module class: X.Org XInput Driver
[     6.508] 	ABI class: X.Org XInput driver, version 24.1
[     6.508] (II) Using input driver 'libinput' for 'Power Button'
[     6.509] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 33 paused 0
[     6.509] (**) Power Button: always reports core events
[     6.509] (**) Option "Device" "/dev/input/event3"
[     6.509] (**) Option "_source" "server/udev"
[     6.512] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     6.512] (II) event3  - Power Button: device is a keyboard
[     6.512] (II) event3  - Power Button: device removed
[     6.512] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     6.512] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     6.512] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     6.512] (II) event3  - Power Button: device is a keyboard
[     6.513] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[     6.513] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     6.513] (II) Using input driver 'libinput' for 'Video Bus'
[     6.513] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 36 paused 0
[     6.513] (**) Video Bus: always reports core events
[     6.513] (**) Option "Device" "/dev/input/event6"
[     6.513] (**) Option "_source" "server/udev"
[     6.514] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     6.514] (II) event6  - Video Bus: device is a keyboard
[     6.514] (II) event6  - Video Bus: device removed
[     6.514] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input7/event6"
[     6.514] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     6.515] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[     6.515] (II) event6  - Video Bus: device is a keyboard
[     6.515] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     6.515] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     6.515] (II) Using input driver 'libinput' for 'Power Button'
[     6.516] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 37 paused 0
[     6.516] (**) Power Button: always reports core events
[     6.516] (**) Option "Device" "/dev/input/event1"
[     6.516] (**) Option "_source" "server/udev"
[     6.516] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     6.516] (II) event1  - Power Button: device is a keyboard
[     6.516] (II) event1  - Power Button: device removed
[     6.516] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[     6.516] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     6.517] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     6.517] (II) event1  - Power Button: device is a keyboard
[     6.517] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     6.517] (II) No input driver specified, ignoring this device.
[     6.517] (II) This device may have been added with another device file.
[     6.517] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[     6.517] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     6.517] (II) Using input driver 'libinput' for 'Sleep Button'
[     6.518] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 38 paused 0
[     6.518] (**) Sleep Button: always reports core events
[     6.518] (**) Option "Device" "/dev/input/event2"
[     6.518] (**) Option "_source" "server/udev"
[     6.518] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     6.518] (II) event2  - Sleep Button: device is a keyboard
[     6.519] (II) event2  - Sleep Button: device removed
[     6.519] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[     6.519] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     6.519] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     6.519] (II) event2  - Sleep Button: device is a keyboard
[     6.520] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event13)
[     6.520] (II) No input driver specified, ignoring this device.
[     6.520] (II) This device may have been added with another device file.
[     6.520] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event14)
[     6.520] (II) No input driver specified, ignoring this device.
[     6.520] (II) This device may have been added with another device file.
[     6.520] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event15)
[     6.520] (II) No input driver specified, ignoring this device.
[     6.520] (II) This device may have been added with another device file.
[     6.520] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event16)
[     6.520] (II) No input driver specified, ignoring this device.
[     6.520] (II) This device may have been added with another device file.
[     6.521] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event23)
[     6.521] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[     6.521] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[     6.521] (II) systemd-logind: got fd for /dev/input/event23 13:87 fd 39 paused 0
[     6.521] (**) Integrated_Webcam_HD: Integrate: always reports core events
[     6.521] (**) Option "Device" "/dev/input/event23"
[     6.521] (**) Option "_source" "server/udev"
[     6.522] (II) event23 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[     6.522] (II) event23 - Integrated_Webcam_HD: Integrate: device is a keyboard
[     6.522] (II) event23 - Integrated_Webcam_HD: Integrate: device removed
[     6.522] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input25/event23"
[     6.522] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[     6.523] (II) event23 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[     6.523] (II) event23 - Integrated_Webcam_HD: Integrate: device is a keyboard
[     6.523] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 (/dev/input/event8)
[     6.523] (**) Microsoft Microsoft® Nano Transceiver v1.0: Applying InputClass "libinput keyboard catchall"
[     6.523] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0'
[     6.524] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 40 paused 0
[     6.524] (**) Microsoft Microsoft® Nano Transceiver v1.0: always reports core events
[     6.524] (**) Option "Device" "/dev/input/event8"
[     6.524] (**) Option "_source" "server/udev"
[     6.525] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0: is tagged by udev as: Keyboard
[     6.525] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0: device is a keyboard
[     6.525] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0: device removed
[     6.525] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.0/0003:045E:07B2.0001/input/input10/event8"
[     6.525] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0" (type: KEYBOARD, id 11)
[     6.526] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0: is tagged by udev as: Keyboard
[     6.526] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0: device is a keyboard
[     6.526] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Mouse (/dev/input/event9)
[     6.526] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: Applying InputClass "libinput pointer catchall"
[     6.526] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Mouse'
[     6.582] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 41 paused 0
[     6.582] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: always reports core events
[     6.582] (**) Option "Device" "/dev/input/event9"
[     6.582] (**) Option "_source" "server/udev"
[     6.584] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: is tagged by udev as: Mouse
[     6.584] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device is a pointer
[     6.584] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device removed
[     6.584] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:045E:07B2.0002/input/input11/event9"
[     6.584] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Mouse" (type: MOUSE, id 12)
[     6.584] (**) Option "AccelerationScheme" "none"
[     6.584] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: (accel) selected scheme none/0
[     6.584] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: (accel) acceleration factor: 2.000
[     6.584] (**) Microsoft Microsoft® Nano Transceiver v1.0 Mouse: (accel) acceleration threshold: 4
[     6.585] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: is tagged by udev as: Mouse
[     6.586] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device is a pointer
[     6.586] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Mouse (/dev/input/mouse0)
[     6.586] (II) No input driver specified, ignoring this device.
[     6.586] (II) This device may have been added with another device file.
[     6.587] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control (/dev/input/event10)
[     6.587] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     6.587] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     6.588] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 42 paused 0
[     6.588] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     6.588] (**) Option "Device" "/dev/input/event10"
[     6.588] (**) Option "_source" "server/udev"
[     6.590] (II) event10 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     6.590] (II) event10 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     6.590] (II) event10 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[     6.590] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: needs a virtual subdevice
[     6.590] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:045E:07B2.0002/input/input12/event10"
[     6.590] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: MOUSE, id 13)
[     6.590] (**) Option "AccelerationScheme" "none"
[     6.590] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) selected scheme none/0
[     6.590] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration factor: 2.000
[     6.590] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration threshold: 4
[     6.592] (II) event10 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     6.592] (II) event10 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     6.593] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control (/dev/input/event11)
[     6.593] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     6.593] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     6.594] (II) systemd-logind: got fd for /dev/input/event11 13:75 fd 43 paused 0
[     6.594] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     6.594] (**) Option "Device" "/dev/input/event11"
[     6.594] (**) Option "_source" "server/udev"
[     6.596] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     6.596] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     6.596] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[     6.596] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: needs a virtual subdevice
[     6.596] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:045E:07B2.0003/input/input13/event11"
[     6.596] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: MOUSE, id 14)
[     6.596] (**) Option "AccelerationScheme" "none"
[     6.596] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) selected scheme none/0
[     6.596] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration factor: 2.000
[     6.596] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: (accel) acceleration threshold: 4
[     6.598] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is tagged by udev as: Keyboard
[     6.598] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device is a keyboard
[     6.599] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v1.0 System Control (/dev/input/event12)
[     6.599] (**) Microsoft Microsoft® Nano Transceiver v1.0 System Control: Applying InputClass "libinput keyboard catchall"
[     6.599] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 System Control'
[     6.600] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 44 paused 0
[     6.600] (**) Microsoft Microsoft® Nano Transceiver v1.0 System Control: always reports core events
[     6.600] (**) Option "Device" "/dev/input/event12"
[     6.600] (**) Option "_source" "server/udev"
[     6.602] (II) event12 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: is tagged by udev as: Keyboard
[     6.602] (II) event12 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device is a keyboard
[     6.602] (II) event12 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device removed
[     6.602] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:045E:07B2.0003/input/input15/event12"
[     6.602] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 System Control" (type: KEYBOARD, id 15)
[     6.605] (II) event12 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: is tagged by udev as: Keyboard
[     6.605] (II) event12 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device is a keyboard
[     6.606] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event18)
[     6.606] (II) No input driver specified, ignoring this device.
[     6.606] (II) This device may have been added with another device file.
[     6.606] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event19)
[     6.606] (II) No input driver specified, ignoring this device.
[     6.606] (II) This device may have been added with another device file.
[     6.607] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event20)
[     6.607] (II) No input driver specified, ignoring this device.
[     6.607] (II) This device may have been added with another device file.
[     6.607] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event17)
[     6.607] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[     6.607] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[     6.608] (II) systemd-logind: got fd for /dev/input/event17 13:81 fd 45 paused 0
[     6.608] (**) Dell WMI hotkeys: always reports core events
[     6.608] (**) Option "Device" "/dev/input/event17"
[     6.608] (**) Option "_source" "server/udev"
[     6.609] (II) event17 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[     6.610] (II) event17 - Dell WMI hotkeys: device is a keyboard
[     6.610] (II) event17 - Dell WMI hotkeys: device removed
[     6.610] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input20/event17"
[     6.610] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 16)
[     6.611] (II) event17 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[     6.611] (II) event17 - Dell WMI hotkeys: device is a keyboard
[     6.612] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     6.612] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     6.612] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     6.614] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 46 paused 0
[     6.614] (**) AT Translated Set 2 keyboard: always reports core events
[     6.614] (**) Option "Device" "/dev/input/event4"
[     6.614] (**) Option "_source" "server/udev"
[     6.615] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     6.615] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     6.617] (II) event4  - AT Translated Set 2 keyboard: device removed
[     6.617] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     6.617] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 17)
[     6.618] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     6.618] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     6.619] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/event21)
[     6.620] (**) AlpsPS/2 ALPS DualPoint Stick: Applying InputClass "libinput pointer catchall"
[     6.620] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint Stick'
[     6.620] (II) systemd-logind: got fd for /dev/input/event21 13:85 fd 47 paused 0
[     6.620] (**) AlpsPS/2 ALPS DualPoint Stick: always reports core events
[     6.620] (**) Option "Device" "/dev/input/event21"
[     6.620] (**) Option "_source" "server/udev"
[     6.621] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     6.621] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     6.621] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     6.622] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: device removed
[     6.622] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input24/event21"
[     6.622] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint Stick" (type: MOUSE, id 18)
[     6.623] (**) Option "AccelerationScheme" "none"
[     6.623] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) selected scheme none/0
[     6.623] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration factor: 2.000
[     6.623] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration threshold: 4
[     6.623] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     6.623] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     6.623] (II) event21 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     6.625] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/mouse1)
[     6.625] (II) No input driver specified, ignoring this device.
[     6.625] (II) This device may have been added with another device file.
[     6.625] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/event22)
[     6.625] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass "libinput touchpad catchall"
[     6.625] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint TouchPad'
[     6.625] (II) systemd-logind: got fd for /dev/input/event22 13:86 fd 48 paused 0
[     6.625] (**) AlpsPS/2 ALPS DualPoint TouchPad: always reports core events
[     6.626] (**) Option "Device" "/dev/input/event22"
[     6.626] (**) Option "_source" "server/udev"
[     6.626] (II) event22 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     6.627] (II) event22 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     6.627] (II) event22 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[     6.627] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input9/event22"
[     6.627] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint TouchPad" (type: TOUCHPAD, id 19)
[     6.628] (**) Option "AccelerationScheme" "none"
[     6.628] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) selected scheme none/0
[     6.628] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration factor: 2.000
[     6.628] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration threshold: 4
[     6.628] (II) event22 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     6.629] (II) event22 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     6.630] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/mouse2)
[     6.630] (II) No input driver specified, ignoring this device.
[     6.630] (II) This device may have been added with another device file.
[     6.630] (II) config/udev: Adding input device PC Speaker (/dev/input/event7)
[     6.630] (II) No input driver specified, ignoring this device.
[     6.630] (II) This device may have been added with another device file.
[     6.631] (II) config/udev: Adding input device DELL Wireless hotkeys (/dev/input/event5)
[     6.631] (**) DELL Wireless hotkeys: Applying InputClass "libinput keyboard catchall"
[     6.631] (II) Using input driver 'libinput' for 'DELL Wireless hotkeys'
[     6.632] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 49 paused 0
[     6.632] (**) DELL Wireless hotkeys: always reports core events
[     6.632] (**) Option "Device" "/dev/input/event5"
[     6.632] (**) Option "_source" "server/udev"
[     6.632] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[     6.632] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[     6.632] (II) event5  - DELL Wireless hotkeys: device removed
[     6.632] (**) Option "config_info" "udev:/sys/devices/virtual/input/input6/event5"
[     6.632] (II) XINPUT: Adding extended input device "DELL Wireless hotkeys" (type: KEYBOARD, id 20)
[     6.633] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[     6.633] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[     6.636] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     6.636] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     6.636] (II) systemd-logind: returning pre-existing fd for /dev/input/event10 13:74
[     6.636] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     6.636] (**) Option "Device" "/dev/input/event10"
[     6.636] (**) Option "_source" "_driver/libinput"
[     6.636] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is a virtual subdevice
[     6.636] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.1/0003:045E:07B2.0002/input/input12/event10"
[     6.636] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: KEYBOARD, id 21)
[     6.636] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     6.636] (II) Using input driver 'libinput' for 'Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control'
[     6.636] (II) systemd-logind: returning pre-existing fd for /dev/input/event11 13:75
[     6.636] (**) Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: always reports core events
[     6.636] (**) Option "Device" "/dev/input/event11"
[     6.636] (**) Option "_source" "_driver/libinput"
[     6.636] (II) libinput: Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: is a virtual subdevice
[     6.636] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-4/1-4:1.2/0003:045E:07B2.0003/input/input13/event11"
[     6.636] (II) XINPUT: Adding extended input device "Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control" (type: KEYBOARD, id 22)
[     6.636] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     6.636] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     6.636] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     6.636] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     7.469] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     7.469] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     7.469] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     7.469] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     7.469] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     7.469] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     7.469] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     7.469] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     7.469] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     7.469] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     7.469] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     7.469] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     7.469] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     7.469] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     7.469] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     7.469] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     7.469] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     8.103] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     8.103] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     8.103] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     8.103] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     8.103] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     8.103] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     8.103] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     8.103] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     8.103] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     8.103] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     8.103] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.103] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     8.103] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     8.103] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     8.103] (--) NVIDIA(GPU-0): 
[     8.104] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     8.104] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     8.104] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     8.104] (--) NVIDIA(GPU-0): 
[    79.563] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0
[    79.563] (**) Option "fd" "40"
[    79.563] (II) event8  - Microsoft Microsoft® Nano Transceiver v1.0: device removed
[    79.564] (II) UnloadModule: "libinput"
[    79.564] (II) systemd-logind: releasing fd for 13:72
[    79.603] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0 Mouse
[    79.603] (**) Option "fd" "41"
[    79.603] (II) event9  - Microsoft Microsoft® Nano Transceiver v1.0 Mouse: device removed
[    79.608] (II) UnloadModule: "libinput"
[    79.608] (II) systemd-logind: releasing fd for 13:73
[    79.658] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control
[    79.658] (**) Option "fd" "42"
[    79.661] (II) UnloadModule: "libinput"
[    79.661] (II) systemd-logind: not releasing fd for 13:74, still in use
[    79.661] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control
[    79.661] (**) Option "fd" "42"
[    79.661] (II) event10 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[    79.663] (II) UnloadModule: "libinput"
[    79.663] (II) systemd-logind: releasing fd for 13:74
[    79.748] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control
[    79.748] (**) Option "fd" "43"
[    79.751] (II) UnloadModule: "libinput"
[    79.751] (II) systemd-logind: not releasing fd for 13:75, still in use
[    79.751] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control
[    79.751] (**) Option "fd" "43"
[    79.751] (II) event11 - Microsoft Microsoft® Nano Transceiver v1.0 Consumer Control: device removed
[    79.753] (II) UnloadModule: "libinput"
[    79.753] (II) systemd-logind: releasing fd for 13:75
[    79.827] (II) config/udev: removing device Microsoft Microsoft® Nano Transceiver v1.0 System Control
[    79.827] (**) Option "fd" "44"
[    79.827] (II) event12 - Microsoft Microsoft® Nano Transceiver v1.0 System Control: device removed
[    79.830] (II) UnloadModule: "libinput"
[    79.830] (II) systemd-logind: releasing fd for 13:76
[   280.874] (EE) event22 - AlpsPS/2 ALPS DualPoint TouchPad: client bug: event processing lagging behind by 60ms, your system is too slow

The problem is here:

 (--) NVIDIA(GPU-0): DFP-2: disconnected
 (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock

versus the following on the working install

(--) NVIDIA(GPU-0): Sharp (DFP-2): connected
(--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
(--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock

It's not detecting the display device

What now?

Offline

#12 2021-09-10 11:16:57

V1del
Forum Moderator
Registered: 2012-10-16
Posts: 25,208

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

https://wiki.archlinux.org/title/Kernel … _KMS_start ?  Other than that what's the cable? Have you tried changing that/making sure it's properly plugged (or is this the internal display)? FWIW iirc the 465 version of the driver does have a known bug with certain display port constellations that should've been fixed in a subsequent release.

Have tried just with a lower kernel but a newer driver?

Last edited by V1del (2021-09-10 11:23:20)

Offline

#13 2021-09-10 11:27:02

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

The server is starting because of the enforced

[     4.528] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"

but doesn't find an output and creates a null root window and your session doesn't like that.

The problem could just be that the output powers up tooslow™.

If you don't want to delay the boot until mr. monitor got its ass up, you could probably schedule

(sleep 10; xrandr --output whatever_it_is --auto) &

in your xinitrc or use https://aur.archlinux.org/packages/x-on-resize/ to auto-activate the output when it shows up.
Only present outputs are implicitly enabled during start.

Online

#14 2021-09-10 17:32:10

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

That xrandr trick didn't work either

I'm going to see if I can make a completely independent, fresh minimal install that works

Offline

#15 2021-09-10 20:08:46

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

To be sure: you did replace the "whatever_it_is" w/ the actual output the device is attached to (i "xradr -q")?

Online

#16 2022-03-23 17:38:14

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Waking up this zombie again...

At some point after the above experimentation, I ended up with a hard hang and forced poweroff killed my home directory - I restored from a 2 month old backup and retreated tail between legs

I made a separate partition and cloned my installation there to muck around with. Upgraded nvidia and linux-kernel to the latest

Same problem

Tried a couple of things more

1) Enabled the onboard Intel GPU
2) Tried acpi=off in the kernel command line
3) Delete the xorg.conf file

No luck so far

Here is the part of the X log file where it fails:

(II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
 (II) systemd-logind: releasing fd for 226:0
 (II) Loading sub module "fb"
 (II) LoadModule: "fb"
 (II) Module "fb" already built-in
 (II) Loading sub module "wfb"
 (II) LoadModule: "wfb"
 (II) Loading /usr/lib/xorg/modules/libwfb.so
 (II) Module wfb: vendor="X.Org Foundation"
 	compiled for 1.21.1.3, module version = 1.0.0
 	ABI class: X.Org ANSI C Emulation, version 0.4
 (II) Loading sub module "ramdac"
 (II) LoadModule: "ramdac"
 (II) Module "ramdac" already built-in
 (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
 (==) NVIDIA(0): RGB weight 888
 (==) NVIDIA(0): Default visual is TrueColor
 (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
 (II) Applying OutputClass "nvidia" options to /dev/dri/card0
 (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
 (**) NVIDIA(0): Enabling 2D acceleration
 (II) Loading sub module "glxserver_nvidia"
 (II) LoadModule: "glxserver_nvidia"
 (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
 (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
 	compiled for 1.6.99.901, module version = 1.0.0
 	Module class: X.Org Server Extension
 (II) NVIDIA GLX Module  510.54  Tue Feb  8 04:36:31 UTC 2022
 (II) NVIDIA: The X server supports PRIME Render Offload.
 (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
 (--) NVIDIA(0):     CRT-0
 (--) NVIDIA(0):     DFP-0
 (--) NVIDIA(0):     DFP-1
 (--) NVIDIA(0):     DFP-2
 (--) NVIDIA(0):     DFP-3
 (--) NVIDIA(0):     DFP-4
 (--) NVIDIA(0):     DFP-5
 (--) NVIDIA(0):     DFP-6
 (--) NVIDIA(0):     DFP-7
 (--) NVIDIA(0):     DFP-8
 (--) NVIDIA(0):     DFP-9
 (--) NVIDIA(0):     DFP-10
 (--) NVIDIA(0):     DFP-11
 (II) NVIDIA(0): NVIDIA GPU Quadro M5000M (GM204GL-A) at PCI:1:0:0 (GPU-0)
 (--) NVIDIA(0): Memory: 8388608 kBytes
 (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
 (II) NVIDIA(0): Detected PCI Express Link width: 16X
 (--) NVIDIA(GPU-0): CRT-0: disconnected
 (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-0: disconnected
 (--) NVIDIA(GPU-0): DFP-0: Internal LVDS
 (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-1: disconnected
 (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-2: disconnected
 (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-2: 330.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-3: disconnected
 (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-4: disconnected
 (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-5: disconnected
 (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-6: disconnected
 (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-7: disconnected
 (--) NVIDIA(GPU-0): DFP-7: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-7: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-8: disconnected
 (--) NVIDIA(GPU-0): DFP-8: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-8: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-9: disconnected
 (--) NVIDIA(GPU-0): DFP-9: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-9: 330.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-10: disconnected
 (--) NVIDIA(GPU-0): DFP-10: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-10: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-11: disconnected
 (--) NVIDIA(GPU-0): DFP-11: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-11: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (==) NVIDIA(0):
 (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
 (==) NVIDIA(0):     will be used as the requested mode.
 (==) NVIDIA(0):
 (--) NVIDIA(0): No enabled display devices found; starting anyway because
 (--) NVIDIA(0):     AllowEmptyInitialConfiguration is enabled
 (II) NVIDIA(0): Validated MetaModes:
 (II) NVIDIA(0):     "NULL"
 (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
 (WW) NVIDIA(0): Unable to get display device for DPI computation.

On my working install it is:

 (II) NVIDIA dlloader X Driver  465.24.02  Thu Apr  8 17:55:59 UTC 2021
 (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
 (II) Loading sub module "fb"
 (II) LoadModule: "fb"
 (II) Module "fb" already built-in
 (II) Loading sub module "wfb"
 (II) LoadModule: "wfb"
 (II) Loading /usr/lib/xorg/modules/libwfb.so
 (II) Module wfb: vendor="X.Org Foundation"
 	compiled for 1.21.1.3, module version = 1.0.0
 	ABI class: X.Org ANSI C Emulation, version 0.4
 (II) Loading sub module "ramdac"
 (II) LoadModule: "ramdac"
 (II) Module "ramdac" already built-in
 (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
 (==) NVIDIA(0): RGB weight 888
 (==) NVIDIA(0): Default visual is TrueColor
 (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
 (**) NVIDIA(0): Enabling 2D acceleration
 (II) Loading sub module "glxserver_nvidia"
 (II) LoadModule: "glxserver_nvidia"
 (WW) Warning, couldn't open module glxserver_nvidia
 (EE) NVIDIA: Failed to load module "glxserver_nvidia" (module does not exist, 0)
 (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
 (EE) NVIDIA(0):     log file that the GLX module has been loaded in your X
 (EE) NVIDIA(0):     server, and that the module is the NVIDIA GLX module.  If
 (EE) NVIDIA(0):     you continue to encounter problems, Please try
 (EE) NVIDIA(0):     reinstalling the NVIDIA driver.
 (II) NVIDIA: The X server does not support PRIME Render Offload.
 (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
 (--) NVIDIA(0):     CRT-0
 (--) NVIDIA(0):     DFP-0
 (--) NVIDIA(0):     DFP-1
 (--) NVIDIA(0):     DFP-2 (boot)
 (--) NVIDIA(0):     DFP-3
 (--) NVIDIA(0):     DFP-4
 (--) NVIDIA(0):     DFP-5
 (--) NVIDIA(0):     DFP-6
 (II) NVIDIA(0): NVIDIA GPU NVIDIA Quadro M5000M (GM204GL-A) at PCI:1:0:0
 (II) NVIDIA(0):     (GPU-0)
 (--) NVIDIA(0): Memory: 8388608 kBytes
 (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
 (II) NVIDIA(0): Detected PCI Express Link width: 16X
 (--) NVIDIA(GPU-0): CRT-0: disconnected
 (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-0: disconnected
 (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-1: disconnected
 (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
 (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
 (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-3: disconnected
 (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-4: disconnected
 (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-5: disconnected
 (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
 (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (--) NVIDIA(GPU-0): DFP-6: disconnected
 (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
 (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
 (--) NVIDIA(GPU-0):
 (==) NVIDIA(0):
 (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
 (==) NVIDIA(0):     will be used as the requested mode.
 (==) NVIDIA(0):
 (II) NVIDIA(0): Validated MetaModes:
 (II) NVIDIA(0):     "DFP-2:nvidia-auto-select"
 (II) NVIDIA(0): Virtual screen size determined to be 3840 x 2160
 (--) NVIDIA(0): DPI set to (256, 261); computed from "UseEdidDpi" X config

Thanks in advance

Offline

#17 2022-03-24 14:40:16

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

/etc/X11/xorg.conf.d/20-nvidia.conf

Section "Device"
    Identifier "Default nvidia Device"
    Driver	"nvidia"
    Option	"ConnectedMonitor"				"DFP-2"
EndSection

Online

#18 2022-03-25 11:02:53

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

seth wrote:

/etc/X11/xorg.conf.d/20-nvidia.conf

Section "Device"
    Identifier "Default nvidia Device"
    Driver	"nvidia"
    Option	"ConnectedMonitor"				"DFP-2"
EndSection

I added the above, to no avail

I then extracted the EDID file for my display from the working install (from the nvidia-settings tool) , and added it to the config - I get this

[     4.392] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[     4.392] (II) xfree86: Adding drm device (/dev/dri/card0)
[     4.392] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[     4.393] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[     4.396] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     4.398] (--) PCI:*(1@0:0:0) 10de:13f8:1028:16da rev 161, Mem @ 0xdb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[     4.398] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     4.398] (II) LoadModule: "glx"
[     4.400] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     4.409] (II) Module glx: vendor="X.Org Foundation"
[     4.409] 	compiled for 1.21.1.3, module version = 1.0.0
[     4.409] 	ABI class: X.Org Server Extension, version 10.0
[     4.409] (II) LoadModule: "nvidia"
[     4.410] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     4.422] (II) Module nvidia: vendor="NVIDIA Corporation"
[     4.423] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.423] 	Module class: X.Org Video Driver
[     4.423] (II) NVIDIA dlloader X Driver  510.54  Tue Feb  8 04:38:00 UTC 2022
[     4.423] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     4.423] (II) systemd-logind: releasing fd for 226:0
[     4.424] (II) Loading sub module "fb"
[     4.424] (II) LoadModule: "fb"
[     4.424] (II) Module "fb" already built-in
[     4.424] (II) Loading sub module "wfb"
[     4.424] (II) LoadModule: "wfb"
[     4.424] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     4.425] (II) Module wfb: vendor="X.Org Foundation"
[     4.425] 	compiled for 1.21.1.3, module version = 1.0.0
[     4.425] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     4.426] (II) Loading sub module "ramdac"
[     4.426] (II) LoadModule: "ramdac"
[     4.426] (II) Module "ramdac" already built-in
[     4.429] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[     4.429] (==) NVIDIA(0): RGB weight 888
[     4.429] (==) NVIDIA(0): Default visual is TrueColor
[     4.429] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     4.429] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     4.430] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     4.430] (**) NVIDIA(0): Option "CustomEDID" "GPU0.DFP-2:/home/rep/sharp.edid"
[     4.430] (**) NVIDIA(0): Enabling 2D acceleration
[     4.430] (II) Loading sub module "glxserver_nvidia"
[     4.430] (II) LoadModule: "glxserver_nvidia"
[     4.430] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     4.504] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     4.504] 	compiled for 1.6.99.901, module version = 1.0.0
[     4.504] 	Module class: X.Org Server Extension
[     4.504] (II) NVIDIA GLX Module  510.54  Tue Feb  8 04:36:31 UTC 2022
[     4.504] (II) NVIDIA: The X server supports PRIME Render Offload.
[     5.127] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     5.127] (--) NVIDIA(0):     CRT-0
[     5.127] (--) NVIDIA(0):     DFP-0
[     5.127] (--) NVIDIA(0):     DFP-1
[     5.127] (--) NVIDIA(0):     DFP-2 (boot)
[     5.127] (--) NVIDIA(0):     DFP-3
[     5.127] (--) NVIDIA(0):     DFP-4
[     5.127] (--) NVIDIA(0):     DFP-5
[     5.127] (--) NVIDIA(0):     DFP-6
[     5.127] (II) NVIDIA(0): NVIDIA GPU Quadro M5000M (GM204GL-A) at PCI:1:0:0 (GPU-0)
[     5.127] (--) NVIDIA(0): Memory: 8388608 kBytes
[     5.127] (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
[     5.127] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     5.128] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     5.128] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     5.128] (--) NVIDIA(GPU-0): 
[     5.128] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     5.128] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     5.128] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     5.128] (--) NVIDIA(GPU-0): 
[     5.128] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     5.128] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     5.129] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     5.129] (--) NVIDIA(GPU-0): 
[     5.129] (--) NVIDIA(GPU-0): DFP-2: disconnected
[     5.129] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[     5.129] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[     5.129] (--) NVIDIA(GPU-0): 
[     5.129] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     5.129] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     5.129] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     5.129] (--) NVIDIA(GPU-0): 
[     5.129] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     5.129] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     5.129] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     5.129] (--) NVIDIA(GPU-0): 
[     5.129] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     5.129] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     5.129] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     5.129] (--) NVIDIA(GPU-0): 
[     5.129] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     5.129] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     5.129] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     5.129] (--) NVIDIA(GPU-0): 
[     5.129] (==) NVIDIA(0): 
[     5.129] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[     5.129] (==) NVIDIA(0):     will be used as the requested mode.
[     5.129] (==) NVIDIA(0): 
[     5.129] (--) NVIDIA(0): No enabled display devices found; starting anyway because
[     5.129] (--) NVIDIA(0):     AllowEmptyInitialConfiguration is enabled
[     5.129] (II) NVIDIA(0): Validated MetaModes:
[     5.129] (II) NVIDIA(0):     "NULL"
[     5.129] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[     5.129] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[     5.129] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[     5.129] (II) NVIDIA: Reserving 6144.00 MB of virtual memory for indirect memory
[     5.129] (II) NVIDIA:     access.
[     5.132] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     5.132] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     5.132] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     5.132] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     5.132] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     5.132] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     5.132] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     5.132] (II) NVIDIA(0):     Config Options in the README.
[     5.149] (II) NVIDIA(0): Setting mode "NULL"

It seems like later versions of either X dont detect the "Sharp" display panel model
Even though it sees that the boot display is DFP-2 it seems to get disconnected somehow

Could it be a power management thing?

Offline

#19 2022-03-25 15:41:29

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

What's the xorg log w/ the previous configlet in place?
Also post a dmesg (since the issue is the kernel)

Could it be a power management thing?

My money is more on the optimus condition.

V1del wrote:

what's the cable?

Is this an internal display or HDMI or DP and is there an adapter involved?

Online

#20 2022-03-26 12:22:59

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Is this an internal display or HDMI or DP and is there an adapter involved?


This is a Dell precision 7710 laptop and DFP-2 is the screen - I havent connected any other display to it
I have disabled the Intel onboard accelerator in the BIOS, only nvidia is active

seth wrote:

What's the xorg log w/ the previous configlet in place?
Also post a dmesg (since the issue is the kernel)

Here is the xorg log

[    34.270] 
X.Org X Server 1.21.1.3
X Protocol Version 11, Revision 0
[    34.270] Current Operating System: Linux archaic 5.16.16-arch1-1 #1 SMP PREEMPT Mon, 21 Mar 2022 22:59:40 +0000 x86_64
[    34.270] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root="LABEL=ARCH2" rw audit=0  net.ifnames=0  ipv6.disable=1 libahci.ignore_sss=1
[    34.270]  
[    34.270] Current version of pixman: 0.40.0
[    34.270] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    34.270] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    34.270] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar 26 17:28:15 2022
[    34.272] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    34.272] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    34.272] (==) No Layout section.  Using the first Screen section.
[    34.272] (==) No screen section available. Using defaults.
[    34.272] (**) |-->Screen "Default Screen Section" (0)
[    34.272] (**) |   |-->Monitor "<default monitor>"
[    34.272] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[    34.272] (**) |   |-->Device "Default nvidia Device"
[    34.272] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    34.272] (==) Automatically adding devices
[    34.272] (==) Automatically enabling devices
[    34.272] (==) Automatically adding GPU devices
[    34.272] (==) Automatically binding GPU devices
[    34.272] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    34.272] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    34.272] 	Entry deleted from font path.
[    34.273] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    34.273] 	Entry deleted from font path.
[    34.273] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    34.273] 	Entry deleted from font path.
[    34.276] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[    34.276] (==) ModulePath set to "/usr/lib/xorg/modules"
[    34.276] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    34.276] (II) Module ABI versions:
[    34.276] 	X.Org ANSI C Emulation: 0.4
[    34.276] 	X.Org Video Driver: 25.2
[    34.276] 	X.Org XInput driver : 24.4
[    34.276] 	X.Org Server Extension : 10.0
[    34.277] (++) using VT number 1

[    34.280] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    34.280] (II) xfree86: Adding drm device (/dev/dri/card0)
[    34.280] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[    34.281] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[    34.283] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    34.285] (--) PCI:*(1@0:0:0) 10de:13f8:1028:16da rev 161, Mem @ 0xdb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[    34.285] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    34.285] (II) LoadModule: "glx"
[    34.286] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    34.293] (II) Module glx: vendor="X.Org Foundation"
[    34.293] 	compiled for 1.21.1.3, module version = 1.0.0
[    34.293] 	ABI class: X.Org Server Extension, version 10.0
[    34.293] (II) LoadModule: "nvidia"
[    34.293] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    34.301] (II) Module nvidia: vendor="NVIDIA Corporation"
[    34.302] 	compiled for 1.6.99.901, module version = 1.0.0
[    34.302] 	Module class: X.Org Video Driver
[    34.302] (II) NVIDIA dlloader X Driver  510.54  Tue Feb  8 04:38:00 UTC 2022
[    34.302] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    34.302] (II) systemd-logind: releasing fd for 226:0
[    34.302] (II) Loading sub module "fb"
[    34.302] (II) LoadModule: "fb"
[    34.302] (II) Module "fb" already built-in
[    34.303] (II) Loading sub module "wfb"
[    34.303] (II) LoadModule: "wfb"
[    34.303] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    34.304] (II) Module wfb: vendor="X.Org Foundation"
[    34.304] 	compiled for 1.21.1.3, module version = 1.0.0
[    34.304] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    34.304] (II) Loading sub module "ramdac"
[    34.304] (II) LoadModule: "ramdac"
[    34.304] (II) Module "ramdac" already built-in
[    34.307] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    34.307] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    34.307] (==) NVIDIA(0): RGB weight 888
[    34.307] (==) NVIDIA(0): Default visual is TrueColor
[    34.307] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    34.307] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[    34.307] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[    34.307] (**) NVIDIA(0): Option "ConnectedMonitor" "DFP-2"
[    34.307] (**) NVIDIA(0): Enabling 2D acceleration
[    34.307] (**) NVIDIA(0): ConnectedMonitor string: "DFP-2"
[    34.307] (II) Loading sub module "glxserver_nvidia"
[    34.307] (II) LoadModule: "glxserver_nvidia"
[    34.308] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    34.381] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    34.381] 	compiled for 1.6.99.901, module version = 1.0.0
[    34.381] 	Module class: X.Org Server Extension
[    34.381] (II) NVIDIA GLX Module  510.54  Tue Feb  8 04:36:31 UTC 2022
[    34.381] (II) NVIDIA: The X server supports PRIME Render Offload.
[    35.016] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    35.016] (--) NVIDIA(0):     CRT-0
[    35.016] (--) NVIDIA(0):     DFP-0
[    35.016] (--) NVIDIA(0):     DFP-1
[    35.016] (--) NVIDIA(0):     DFP-2 (boot)
[    35.016] (--) NVIDIA(0):     DFP-3
[    35.016] (--) NVIDIA(0):     DFP-4
[    35.016] (--) NVIDIA(0):     DFP-5
[    35.016] (--) NVIDIA(0):     DFP-6
[    35.016] (**) NVIDIA(0): Using ConnectedMonitor string "DFP-2".
[    35.016] (II) NVIDIA(0): NVIDIA GPU Quadro M5000M (GM204GL-A) at PCI:1:0:0 (GPU-0)
[    35.016] (--) NVIDIA(0): Memory: 8388608 kBytes
[    35.016] (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
[    35.016] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    35.016] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    35.016] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    35.016] (--) NVIDIA(GPU-0): 
[    35.016] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    35.016] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    35.016] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[    35.016] (--) NVIDIA(GPU-0): 
[    35.016] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    35.016] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    35.016] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    35.016] (--) NVIDIA(GPU-0): 
[    35.026] (--) NVIDIA(GPU-0): DFP-2: connected
[    35.026] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    35.026] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    35.026] (--) NVIDIA(GPU-0): 
[    35.026] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    35.026] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    35.026] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[    35.026] (--) NVIDIA(GPU-0): 
[    35.026] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    35.026] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    35.026] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    35.026] (--) NVIDIA(GPU-0): 
[    35.026] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    35.026] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    35.026] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[    35.026] (--) NVIDIA(GPU-0): 
[    35.026] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    35.026] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    35.026] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    35.026] (--) NVIDIA(GPU-0): 
[    35.029] (==) NVIDIA(0): 
[    35.029] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    35.029] (==) NVIDIA(0):     will be used as the requested mode.
[    35.029] (==) NVIDIA(0): 
[    35.029] (II) NVIDIA(0): Validated MetaModes:
[    35.029] (II) NVIDIA(0):     "DFP-2:nvidia-auto-select"
[    35.029] (II) NVIDIA(0): Virtual screen size determined to be 1024 x 768
[    35.035] (WW) NVIDIA(0): DFP-2 does not have an EDID, or its EDID does not contain a
[    35.035] (WW) NVIDIA(0):     maximum image size; cannot compute DPI from DFP-2's EDID.
[    35.035] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[    35.035] (II) NVIDIA: Reserving 6144.00 MB of virtual memory for indirect memory
[    35.035] (II) NVIDIA:     access.
[    35.038] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    35.038] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    35.038] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    35.038] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    35.038] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    35.038] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    35.038] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    35.038] (II) NVIDIA(0):     Config Options in the README.
[    35.056] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select"
[    35.358] (==) NVIDIA(0): Disabling shared memory pixmaps
[    35.358] (==) NVIDIA(0): Backing store enabled
[    35.358] (==) NVIDIA(0): Silken mouse enabled
[    35.358] (==) NVIDIA(0): DPMS enabled
[    35.358] (II) Loading sub module "dri2"
[    35.358] (II) LoadModule: "dri2"
[    35.358] (II) Module "dri2" already built-in
[    35.358] (II) NVIDIA(0): [DRI2] Setup complete
[    35.358] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    35.359] (II) Initializing extension Generic Event Extension
[    35.359] (II) Initializing extension SHAPE
[    35.359] (II) Initializing extension MIT-SHM
[    35.359] (II) Initializing extension XInputExtension
[    35.359] (II) Initializing extension XTEST
[    35.359] (II) Initializing extension BIG-REQUESTS
[    35.359] (II) Initializing extension SYNC
[    35.359] (II) Initializing extension XKEYBOARD
[    35.359] (II) Initializing extension XC-MISC
[    35.359] (II) Initializing extension SECURITY
[    35.360] (II) Initializing extension XFIXES
[    35.360] (II) Initializing extension RENDER
[    35.360] (II) Initializing extension RANDR
[    35.360] (II) Initializing extension COMPOSITE
[    35.360] (II) Initializing extension DAMAGE
[    35.360] (II) Initializing extension MIT-SCREEN-SAVER
[    35.360] (II) Initializing extension DOUBLE-BUFFER
[    35.360] (II) Initializing extension RECORD
[    35.360] (II) Initializing extension DPMS
[    35.360] (II) Initializing extension Present
[    35.360] (II) Initializing extension DRI3
[    35.361] (II) Initializing extension X-Resource
[    35.361] (II) Initializing extension XVideo
[    35.361] (II) Initializing extension XVideo-MotionCompensation
[    35.361] (II) Initializing extension GLX
[    35.361] (II) Initializing extension GLX
[    35.361] (II) Indirect GLX disabled.
[    35.361] (II) GLX: Another vendor is already registered for screen 0
[    35.361] (II) Initializing extension XFree86-VidModeExtension
[    35.361] (II) Initializing extension XFree86-DGA
[    35.361] (II) Initializing extension XFree86-DRI
[    35.361] (II) Initializing extension DRI2
[    35.361] (II) Initializing extension NV-GLX
[    35.361] (II) Initializing extension NV-CONTROL
[    35.361] (II) Initializing extension XINERAMA
[    35.445] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    35.445] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    35.445] (II) LoadModule: "libinput"
[    35.446] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    35.449] (II) Module libinput: vendor="X.Org Foundation"
[    35.449] 	compiled for 1.21.1.3, module version = 1.2.1
[    35.449] 	Module class: X.Org XInput Driver
[    76.427] (II) systemd-logind: got pause for 13:69
[    76.427] (II) systemd-logind: got pause for 13:78
[    76.427] (II) systemd-logind: got pause for 13:66
[    76.427] (II) systemd-logind: got pause for 13:82
[    76.428] (II) systemd-logind: got pause for 13:83
[    76.428] (II) systemd-logind: got pause for 13:72
[    76.428] (II) systemd-logind: got pause for 13:68
[    76.428] (II) systemd-logind: got pause for 13:65
[    76.428] (II) systemd-logind: got pause for 13:67
[    79.622] (II) systemd-logind: got resume for 13:70
[    79.622] (--) NVIDIA(GPU-0): CRT-0: disconnected
[    79.622] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[    79.622] (--) NVIDIA(GPU-0): 
[    79.622] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    79.622] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    79.622] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[    79.622] (--) NVIDIA(GPU-0): 
[    79.622] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    79.622] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    79.622] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    79.622] (--) NVIDIA(GPU-0): 
[    79.631] (--) NVIDIA(GPU-0): DFP-2: connected
[    79.631] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[    79.631] (--) NVIDIA(GPU-0): DFP-2: 960.0 MHz maximum pixel clock
[    79.631] (--) NVIDIA(GPU-0): 
[    79.631] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    79.631] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    79.631] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[    79.631] (--) NVIDIA(GPU-0): 
[    79.631] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    79.631] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    79.631] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    79.631] (--) NVIDIA(GPU-0): 
[    79.631] (--) NVIDIA(GPU-0): DFP-5: disconnected
[    79.631] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[    79.631] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[    79.631] (--) NVIDIA(GPU-0): 
[    79.631] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    79.631] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    79.631] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    79.631] (--) NVIDIA(GPU-0): 
[    79.648] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select"
[    79.720] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    79.720] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    79.720] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    79.720] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    79.720] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    79.720] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    79.720] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    79.720] (II) NVIDIA(0):     Config Options in the README.
[    79.755] (II) event6  - Video Bus: is tagged by udev as: Keyboard
[    79.755] (II) event6  - Video Bus: device is a keyboard
[    79.756] (II) systemd-logind: got resume for 13:84
[    79.756] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[    79.757] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[    79.757] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[    79.757] (II) systemd-logind: got resume for 13:85
[    79.758] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[    79.759] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[    79.759] (II) systemd-logind: got resume for 13:77
[    79.760] (II) event13 - Liteon Dell Wireless Mouse WM118 Mouse: is tagged by udev as: Mouse
[    79.760] (II) event13 - Liteon Dell Wireless Mouse WM118 Mouse: device is a pointer
[    79.761] (II) systemd-logind: got resume for 13:69
[    79.761] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[    79.761] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[    79.762] (II) systemd-logind: got resume for 13:78
[    79.763] (II) event14 - Liteon Dell Wireless Mouse WM118 Consumer Control: is tagged by udev as: Keyboard
[    79.763] (II) event14 - Liteon Dell Wireless Mouse WM118 Consumer Control: device is a keyboard
[    79.772] (II) systemd-logind: got resume for 13:66
[    79.772] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[    79.772] (II) event2  - Sleep Button: device is a keyboard
[    79.788] (II) systemd-logind: got resume for 13:82
[    79.789] (II) event18 - Liteon Dell Wireless Mouse WM118 System Control: is tagged by udev as: Keyboard
[    79.789] (II) event18 - Liteon Dell Wireless Mouse WM118 System Control: device is a keyboard
[    79.819] (II) systemd-logind: got resume for 13:83
[    79.820] (II) event19 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[    79.820] (II) event19 - Integrated_Webcam_HD: Integrate: device is a keyboard
[    79.825] (II) systemd-logind: got resume for 13:72
[    79.826] (II) event8  - Dell WMI hotkeys: is tagged by udev as: Keyboard
[    79.826] (II) event8  - Dell WMI hotkeys: device is a keyboard
[    79.902] (II) systemd-logind: got resume for 13:68
[    79.903] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    79.903] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[    79.905] (II) systemd-logind: got resume for 13:65
[    79.906] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    79.906] (II) event1  - Power Button: device is a keyboard
[    79.906] (II) systemd-logind: got resume for 13:67
[    79.907] (II) event3  - Power Button: is tagged by udev as: Keyboard
[    79.907] (II) event3  - Power Button: device is a keyboard

Here is the journalctl for that boot - there seems to be some issue with mknod for /dev/nvidiactl yikes

-- Boot 4b6820e0cf044fdfbae6164d68ac9a40 --
Mar 26 17:27:43 archaic kernel: microcode: microcode updated early to revision 0xea, date = 2021-01-25
Mar 26 17:27:43 archaic kernel: Linux version 5.16.16-arch1-1 (linux@archlinux) (gcc (GCC) 11.2.0, GNU ld (GNU Binutils) 2.38) #1 SMP PREEMPT Mon, 21 Mar 2022 22:59:40 +0000
Mar 26 17:27:43 archaic kernel: Command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root="LABEL=ARCH2" rw audit=0  net.ifnames=0  ipv6.disable=1 libahci.ignore_sss=1
Mar 26 17:27:43 archaic kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Mar 26 17:27:43 archaic kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Mar 26 17:27:43 archaic kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Mar 26 17:27:43 archaic kernel: x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Mar 26 17:27:43 archaic kernel: x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Mar 26 17:27:43 archaic kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Mar 26 17:27:43 archaic kernel: x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
Mar 26 17:27:43 archaic kernel: x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
Mar 26 17:27:43 archaic kernel: x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Mar 26 17:27:43 archaic kernel: signal: max sigframe size: 2032
Mar 26 17:27:43 archaic kernel: BIOS-provided physical RAM map:
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x0000000000059000-0x000000000009efff] usable
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x0000000000100000-0x000000006d3bffff] usable
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000006d3c0000-0x000000006d3c0fff] ACPI NVS
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000006d3c1000-0x000000006d40afff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000006d40b000-0x000000007db94fff] usable
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000007db95000-0x000000007df50fff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000007df51000-0x000000007df92fff] ACPI data
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000007df93000-0x000000007e623fff] ACPI NVS
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000007e624000-0x000000007ecfefff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000007ecff000-0x000000007ecfffff] usable
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x000000007ed00000-0x000000007fffffff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 26 17:27:43 archaic kernel: BIOS-e820: [mem 0x0000000100000000-0x000000087dffffff] usable
Mar 26 17:27:43 archaic kernel: NX (Execute Disable) protection: active
Mar 26 17:27:43 archaic kernel: e820: update [mem 0x6b668018-0x6b697057] usable ==> usable
Mar 26 17:27:43 archaic kernel: e820: update [mem 0x6b668018-0x6b697057] usable ==> usable
Mar 26 17:27:43 archaic kernel: extended physical RAM map:
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x0000000000000000-0x0000000000057fff] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x0000000000058000-0x0000000000058fff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x0000000000059000-0x000000000009efff] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x0000000000100000-0x000000006b668017] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000006b668018-0x000000006b697057] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000006b697058-0x000000006d3bffff] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000006d3c0000-0x000000006d3c0fff] ACPI NVS
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000006d3c1000-0x000000006d40afff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000006d40b000-0x000000007db94fff] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000007db95000-0x000000007df50fff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000007df51000-0x000000007df92fff] ACPI data
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000007df93000-0x000000007e623fff] ACPI NVS
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000007e624000-0x000000007ecfefff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000007ecff000-0x000000007ecfffff] usable
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x000000007ed00000-0x000000007fffffff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Mar 26 17:27:43 archaic kernel: reserve setup_data: [mem 0x0000000100000000-0x000000087dffffff] usable
Mar 26 17:27:43 archaic kernel: efi: EFI v2.40 by American Megatrends
Mar 26 17:27:43 archaic kernel: efi: ACPI=0x7df5e000 ACPI 2.0=0x7df5e000 SMBIOS=0x7ea72000 ESRT=0x7e9c9698 SMBIOS 3.0=0x7ea71000 MEMATTR=0x7b6b1298 
Mar 26 17:27:43 archaic kernel: SMBIOS 3.0.0 present.
Mar 26 17:27:43 archaic kernel: DMI: Dell Inc. Precision 7710/, BIOS 1.20.3 02/17/2020
Mar 26 17:27:43 archaic kernel: tsc: Detected 2900.000 MHz processor
Mar 26 17:27:43 archaic kernel: tsc: Detected 2899.886 MHz TSC
Mar 26 17:27:43 archaic kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Mar 26 17:27:43 archaic kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Mar 26 17:27:43 archaic kernel: last_pfn = 0x87e000 max_arch_pfn = 0x400000000
Mar 26 17:27:43 archaic kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Mar 26 17:27:43 archaic kernel: last_pfn = 0x7ed00 max_arch_pfn = 0x400000000
Mar 26 17:27:43 archaic kernel: found SMP MP-table at [mem 0x000fce90-0x000fce9f]
Mar 26 17:27:43 archaic kernel: esrt: Reserving ESRT space from 0x000000007e9c9698 to 0x000000007e9c96d0.
Mar 26 17:27:43 archaic kernel: Using GB pages for direct mapping
Mar 26 17:27:43 archaic kernel: Secure boot disabled
Mar 26 17:27:43 archaic kernel: RAMDISK: [mem 0x63955000-0x6b20afff]
Mar 26 17:27:43 archaic kernel: ACPI: Early table checksum verification disabled
Mar 26 17:27:43 archaic kernel: ACPI: RSDP 0x000000007DF5E000 000024 (v02 DELL  )
Mar 26 17:27:43 archaic kernel: ACPI: XSDT 0x000000007DF5E0A8 0000D4 (v01 DELL   CBX3     01072009 AMI  00010013)
Mar 26 17:27:43 archaic kernel: ACPI: FACP 0x000000007DF82038 00010C (v05 DELL   CBX3     01072009 AMI  00010013)
Mar 26 17:27:43 archaic kernel: ACPI: DSDT 0x000000007DF5E210 023E24 (v02 DELL   CBX3     01072009 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: FACS 0x000000007E621E80 000040
Mar 26 17:27:43 archaic kernel: ACPI: APIC 0x000000007DF82148 0000BC (v03 DELL   CBX3     01072009 AMI  00010013)
Mar 26 17:27:43 archaic kernel: ACPI: FPDT 0x000000007DF82208 000044 (v01 DELL   CBX3     01072009 AMI  00010013)
Mar 26 17:27:43 archaic kernel: ACPI: MCFG 0x000000007DF82250 00003C (v01 DELL   CBX3     01072009 MSFT 00000097)
Mar 26 17:27:43 archaic kernel: ACPI: HPET 0x000000007DF82290 000038 (v01 DELL   CBX3     01072009 AMI. 0005000B)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF822C8 00046D (v01 SataRe SataTabl 00001000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: LPIT 0x000000007DF82738 000094 (v01 INTEL  SKL      00000000 MSFT 0000005F)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF827D0 000248 (v02 INTEL  sensrhub 00000000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF82A18 002BAE (v02 INTEL  PtidDevc 00001000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF855C8 0007D9 (v02 INTEL  xh_rvp07 00000000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: DBGP 0x000000007DF85DA8 000034 (v01 INTEL           00000000 MSFT 0000005F)
Mar 26 17:27:43 archaic kernel: ACPI: DBG2 0x000000007DF85DE0 000054 (v00 INTEL           00000000 MSFT 0000005F)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF85E38 003866 (v02 SaSsdt SaSsdt   00003000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: UEFI 0x000000007DF896A0 000042 (v01                 00000000      00000000)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF896E8 000E73 (v02 CpuRef CpuSsdt  00003000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF8A560 00435D (v02 DptfTa DptfTabl 00001000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: SLIC 0x000000007DF8E8C0 000176 (v03 DELL   CBX3     01072009 MSFT 00010013)
Mar 26 17:27:43 archaic kernel: ACPI: DMAR 0x000000007DF8EA38 000070 (v01 INTEL  SKL      00000001 INTL 00000001)
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF8EAA8 0021D8 (v01 NvdRef NvdTabl  00001000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: ASF! 0x000000007DF90C80 0000A5 (v32 INTEL   HCG     00000001 TFSM 000F4240)
Mar 26 17:27:43 archaic kernel: [81B blob data]
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0x000000007DF90D60 00081E (v01 NvdRef NvdTabl  00001000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: Reserving FACP table memory at [mem 0x7df82038-0x7df82143]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving DSDT table memory at [mem 0x7df5e210-0x7df82033]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving FACS table memory at [mem 0x7e621e80-0x7e621ebf]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving APIC table memory at [mem 0x7df82148-0x7df82203]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving FPDT table memory at [mem 0x7df82208-0x7df8224b]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving MCFG table memory at [mem 0x7df82250-0x7df8228b]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving HPET table memory at [mem 0x7df82290-0x7df822c7]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df822c8-0x7df82734]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving LPIT table memory at [mem 0x7df82738-0x7df827cb]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df827d0-0x7df82a17]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df82a18-0x7df855c5]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df855c8-0x7df85da0]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving DBGP table memory at [mem 0x7df85da8-0x7df85ddb]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving DBG2 table memory at [mem 0x7df85de0-0x7df85e33]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df85e38-0x7df8969d]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving UEFI table memory at [mem 0x7df896a0-0x7df896e1]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df896e8-0x7df8a55a]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df8a560-0x7df8e8bc]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SLIC table memory at [mem 0x7df8e8c0-0x7df8ea35]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving DMAR table memory at [mem 0x7df8ea38-0x7df8eaa7]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df8eaa8-0x7df90c7f]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving ASF! table memory at [mem 0x7df90c80-0x7df90d24]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving BGRT table memory at [mem 0x7df90d28-0x7df90d5f]
Mar 26 17:27:43 archaic kernel: ACPI: Reserving SSDT table memory at [mem 0x7df90d60-0x7df9157d]
Mar 26 17:27:43 archaic kernel: No NUMA configuration found
Mar 26 17:27:43 archaic kernel: Faking a node at [mem 0x0000000000000000-0x000000087dffffff]
Mar 26 17:27:43 archaic kernel: NODE_DATA(0) allocated [mem 0x87dffc000-0x87dffffff]
Mar 26 17:27:43 archaic kernel: Zone ranges:
Mar 26 17:27:43 archaic kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Mar 26 17:27:43 archaic kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Mar 26 17:27:43 archaic kernel:   Normal   [mem 0x0000000100000000-0x000000087dffffff]
Mar 26 17:27:43 archaic kernel:   Device   empty
Mar 26 17:27:43 archaic kernel: Movable zone start for each node
Mar 26 17:27:43 archaic kernel: Early memory node ranges
Mar 26 17:27:43 archaic kernel:   node   0: [mem 0x0000000000001000-0x0000000000057fff]
Mar 26 17:27:43 archaic kernel:   node   0: [mem 0x0000000000059000-0x000000000009efff]
Mar 26 17:27:43 archaic kernel:   node   0: [mem 0x0000000000100000-0x000000006d3bffff]
Mar 26 17:27:43 archaic kernel:   node   0: [mem 0x000000006d40b000-0x000000007db94fff]
Mar 26 17:27:43 archaic kernel:   node   0: [mem 0x000000007ecff000-0x000000007ecfffff]
Mar 26 17:27:43 archaic kernel:   node   0: [mem 0x0000000100000000-0x000000087dffffff]
Mar 26 17:27:43 archaic kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000087dffffff]
Mar 26 17:27:43 archaic kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: On node 0, zone DMA32: 75 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: On node 0, zone DMA32: 4458 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: On node 0, zone Normal: 4864 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: On node 0, zone Normal: 8192 pages in unavailable ranges
Mar 26 17:27:43 archaic kernel: ACPI: PM-Timer IO Port: 0x1808
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
Mar 26 17:27:43 archaic kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Mar 26 17:27:43 archaic kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Mar 26 17:27:43 archaic kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Mar 26 17:27:43 archaic kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Mar 26 17:27:43 archaic kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Mar 26 17:27:43 archaic kernel: e820: update [mem 0x7a875000-0x7a8c4fff] usable ==> reserved
Mar 26 17:27:43 archaic kernel: TSC deadline timer available
Mar 26 17:27:43 archaic kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x6b668000-0x6b668fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x6b697000-0x6b697fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x6d3c0000-0x6d3c0fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x6d3c1000-0x6d40afff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x7a875000-0x7a8c4fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x7db95000-0x7df50fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x7df51000-0x7df92fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x7df93000-0x7e623fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x7e624000-0x7ecfefff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x7ed00000-0x7fffffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0xdfffffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Mar 26 17:27:43 archaic kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Mar 26 17:27:43 archaic kernel: [mem 0x80000000-0xdfffffff] available for PCI devices
Mar 26 17:27:43 archaic kernel: Booting paravirtualized kernel on bare hardware
Mar 26 17:27:43 archaic kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370452778343963 ns
Mar 26 17:27:43 archaic kernel: setup_percpu: NR_CPUS:320 nr_cpumask_bits:320 nr_cpu_ids:8 nr_node_ids:1
Mar 26 17:27:43 archaic kernel: percpu: Embedded 61 pages/cpu s212992 r8192 d28672 u262144
Mar 26 17:27:43 archaic kernel: pcpu-alloc: s212992 r8192 d28672 u262144 alloc=1*2097152
Mar 26 17:27:43 archaic kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Mar 26 17:27:43 archaic kernel: Fallback order for Node 0: 0 
Mar 26 17:27:43 archaic kernel: Built 1 zonelists, mobility grouping on.  Total pages: 8239965
Mar 26 17:27:43 archaic kernel: Policy zone: Normal
Mar 26 17:27:43 archaic kernel: Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root="LABEL=ARCH2" rw rw audit=0  net.ifnames=0  ipv6.disable=1 libahci.ignore_sss=1
Mar 26 17:27:43 archaic kernel: audit: disabled (until reboot)
Mar 26 17:27:43 archaic kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Mar 26 17:27:43 archaic kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Mar 26 17:27:43 archaic kernel: mem auto-init: stack:byref_all(zero), heap alloc:on, heap free:off
Mar 26 17:27:43 archaic kernel: Memory: 32636164K/33483680K available (14344K kernel code, 2080K rwdata, 10940K rodata, 1780K init, 3864K bss, 847256K reserved, 0K cma-reserved)
Mar 26 17:27:43 archaic kernel: random: get_random_u64 called from __kmem_cache_create+0x2a/0x550 with crng_init=0
Mar 26 17:27:43 archaic kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Mar 26 17:27:43 archaic kernel: Kernel/User page tables isolation: enabled
Mar 26 17:27:43 archaic kernel: ftrace: allocating 45028 entries in 176 pages
Mar 26 17:27:43 archaic kernel: ftrace: allocated 176 pages with 3 groups
Mar 26 17:27:43 archaic kernel: Dynamic Preempt: full
Mar 26 17:27:43 archaic kernel: rcu: Preemptible hierarchical RCU implementation.
Mar 26 17:27:43 archaic kernel: rcu:         RCU dyntick-idle grace-period acceleration is enabled.
Mar 26 17:27:43 archaic kernel: rcu:         RCU restricting CPUs from NR_CPUS=320 to nr_cpu_ids=8.
Mar 26 17:27:43 archaic kernel: rcu:         RCU priority boosting: priority 1 delay 500 ms.
Mar 26 17:27:43 archaic kernel:         Trampoline variant of Tasks RCU enabled.
Mar 26 17:27:43 archaic kernel:         Rude variant of Tasks RCU enabled.
Mar 26 17:27:43 archaic kernel:         Tracing variant of Tasks RCU enabled.
Mar 26 17:27:43 archaic kernel: rcu: RCU calculated value of scheduler-enlistment delay is 30 jiffies.
Mar 26 17:27:43 archaic kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Mar 26 17:27:43 archaic kernel: NR_IRQS: 20736, nr_irqs: 2048, preallocated irqs: 16
Mar 26 17:27:43 archaic kernel: kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)
Mar 26 17:27:43 archaic kernel: spurious 8259A interrupt: IRQ7.
Mar 26 17:27:43 archaic kernel: Console: colour dummy device 80x25
Mar 26 17:27:43 archaic kernel: printk: console [tty0] enabled
Mar 26 17:27:43 archaic kernel: ACPI: Core revision 20210930
Mar 26 17:27:43 archaic kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Mar 26 17:27:43 archaic kernel: APIC: Switch to symmetric I/O mode setup
Mar 26 17:27:43 archaic kernel: DMAR: Host address width 39
Mar 26 17:27:43 archaic kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x1
Mar 26 17:27:43 archaic kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c40660462 ecap f050da
Mar 26 17:27:43 archaic kernel: DMAR: RMRR base: 0x0000007dcbc000 end: 0x0000007dcdbfff
Mar 26 17:27:43 archaic kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed90000 IOMMU 0
Mar 26 17:27:43 archaic kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed90000
Mar 26 17:27:43 archaic kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Mar 26 17:27:43 archaic kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Mar 26 17:27:43 archaic kernel: DMAR-IR: Enabled IRQ remapping in xapic mode
Mar 26 17:27:43 archaic kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Mar 26 17:27:43 archaic kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Mar 26 17:27:43 archaic kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
Mar 26 17:27:43 archaic kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5802.42 BogoMIPS (lpj=9666286)
Mar 26 17:27:43 archaic kernel: pid_max: default: 32768 minimum: 301
Mar 26 17:27:43 archaic kernel: LSM: Security Framework initializing
Mar 26 17:27:43 archaic kernel: landlock: Up and running.
Mar 26 17:27:43 archaic kernel: Yama: becoming mindful.
Mar 26 17:27:43 archaic kernel: LSM support for eBPF active
Mar 26 17:27:43 archaic kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Mar 26 17:27:43 archaic kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Mar 26 17:27:43 archaic kernel: x86/cpu: SGX disabled by BIOS.
Mar 26 17:27:43 archaic kernel: CPU0: Thermal monitoring enabled (TM1)
Mar 26 17:27:43 archaic kernel: process: using mwait in idle threads
Mar 26 17:27:43 archaic kernel: Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Mar 26 17:27:43 archaic kernel: Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Mar 26 17:27:43 archaic kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Mar 26 17:27:43 archaic kernel: Spectre V2 : Mitigation: Retpolines
Mar 26 17:27:43 archaic kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Mar 26 17:27:43 archaic kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Mar 26 17:27:43 archaic kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Mar 26 17:27:43 archaic kernel: Spectre V2 : User space: Mitigation: STIBP via prctl
Mar 26 17:27:43 archaic kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
Mar 26 17:27:43 archaic kernel: TAA: Mitigation: TSX disabled
Mar 26 17:27:43 archaic kernel: SRBDS: Mitigation: Microcode
Mar 26 17:27:43 archaic kernel: MDS: Mitigation: Clear CPU buffers
Mar 26 17:27:43 archaic kernel: Freeing SMP alternatives memory: 36K
Mar 26 17:27:43 archaic kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1024
Mar 26 17:27:43 archaic kernel: smpboot: CPU0: Intel(R) Core(TM) i7-6920HQ CPU @ 2.90GHz (family: 0x6, model: 0x5e, stepping: 0x3)
Mar 26 17:27:43 archaic kernel: Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Mar 26 17:27:43 archaic kernel: ... version:                4
Mar 26 17:27:43 archaic kernel: ... bit width:              48
Mar 26 17:27:43 archaic kernel: ... generic registers:      4
Mar 26 17:27:43 archaic kernel: ... value mask:             0000ffffffffffff
Mar 26 17:27:43 archaic kernel: ... max period:             00007fffffffffff
Mar 26 17:27:43 archaic kernel: ... fixed-purpose events:   3
Mar 26 17:27:43 archaic kernel: ... event mask:             000000070000000f
Mar 26 17:27:43 archaic kernel: rcu: Hierarchical SRCU implementation.
Mar 26 17:27:43 archaic kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Mar 26 17:27:43 archaic kernel: smp: Bringing up secondary CPUs ...
Mar 26 17:27:43 archaic kernel: x86: Booting SMP configuration:
Mar 26 17:27:43 archaic kernel: .... node  #0, CPUs:      #1 #2 #3 #4
Mar 26 17:27:43 archaic kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Mar 26 17:27:43 archaic kernel:  #5 #6 #7
Mar 26 17:27:43 archaic kernel: smp: Brought up 1 node, 8 CPUs
Mar 26 17:27:43 archaic kernel: smpboot: Max logical packages: 1
Mar 26 17:27:43 archaic kernel: smpboot: Total of 8 processors activated (46416.43 BogoMIPS)
Mar 26 17:27:43 archaic kernel: devtmpfs: initialized
Mar 26 17:27:43 archaic kernel: x86/mm: Memory block size: 128MB
Mar 26 17:27:43 archaic kernel: ACPI: PM: Registering ACPI NVS region [mem 0x6d3c0000-0x6d3c0fff] (4096 bytes)
Mar 26 17:27:43 archaic kernel: ACPI: PM: Registering ACPI NVS region [mem 0x7df93000-0x7e623fff] (6885376 bytes)
Mar 26 17:27:43 archaic kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 6370867519511994 ns
Mar 26 17:27:43 archaic kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Mar 26 17:27:43 archaic kernel: pinctrl core: initialized pinctrl subsystem
Mar 26 17:27:43 archaic kernel: PM: RTC time: 11:57:40, date: 2022-03-26
Mar 26 17:27:43 archaic kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Mar 26 17:27:43 archaic kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
Mar 26 17:27:43 archaic kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Mar 26 17:27:43 archaic kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Mar 26 17:27:43 archaic kernel: thermal_sys: Registered thermal governor 'fair_share'
Mar 26 17:27:43 archaic kernel: thermal_sys: Registered thermal governor 'bang_bang'
Mar 26 17:27:43 archaic kernel: thermal_sys: Registered thermal governor 'step_wise'
Mar 26 17:27:43 archaic kernel: thermal_sys: Registered thermal governor 'user_space'
Mar 26 17:27:43 archaic kernel: thermal_sys: Registered thermal governor 'power_allocator'
Mar 26 17:27:43 archaic kernel: cpuidle: using governor ladder
Mar 26 17:27:43 archaic kernel: cpuidle: using governor menu
Mar 26 17:27:43 archaic kernel: HugeTLB: can free 4094 vmemmap pages for hugepages-1048576kB
Mar 26 17:27:43 archaic kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Mar 26 17:27:43 archaic kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Mar 26 17:27:43 archaic kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Mar 26 17:27:43 archaic kernel: PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Mar 26 17:27:43 archaic kernel: PCI: Using configuration type 1 for base access
Mar 26 17:27:43 archaic kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Mar 26 17:27:43 archaic kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Mar 26 17:27:43 archaic kernel: HugeTLB: can free 6 vmemmap pages for hugepages-2048kB
Mar 26 17:27:43 archaic kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Mar 26 17:27:43 archaic kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Mar 26 17:27:43 archaic kernel: fbcon: Taking over console
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(Module Device)
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(Processor Device)
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(Processor Aggregator Device)
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(Linux-Dell-Video)
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Mar 26 17:27:43 archaic kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Mar 26 17:27:43 archaic kernel: ACPI: 10 ACPI AML tables successfully acquired and loaded
Mar 26 17:27:43 archaic kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Mar 26 17:27:43 archaic kernel: ACPI: Dynamic OEM Table Load:
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0xFFFF890641377000 00061E (v02 PmRef  Cpu0Ist  00003000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
Mar 26 17:27:43 archaic kernel: ACPI: Dynamic OEM Table Load:
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0xFFFF89064122DC00 00037F (v02 PmRef  Cpu0Cst  00003001 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: Dynamic OEM Table Load:
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0xFFFF890641376000 0005AA (v02 PmRef  ApIst    00003000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: Dynamic OEM Table Load:
Mar 26 17:27:43 archaic kernel: ACPI: SSDT 0xFFFF8906402B2200 000119 (v02 PmRef  ApCst    00003000 INTL 20120913)
Mar 26 17:27:43 archaic kernel: ACPI: EC: EC started
Mar 26 17:27:43 archaic kernel: ACPI: EC: interrupt blocked
Mar 26 17:27:43 archaic kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
Mar 26 17:27:43 archaic kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
Mar 26 17:27:43 archaic kernel: ACPI: Interpreter enabled
Mar 26 17:27:43 archaic kernel: ACPI: PM: (supports S0 S3 S4 S5)
Mar 26 17:27:43 archaic kernel: ACPI: Using IOAPIC for interrupt routing
Mar 26 17:27:43 archaic kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Mar 26 17:27:43 archaic kernel: ACPI: Enabled 9 GPEs in block 00 to 7F
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [PG00]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [PG01]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [PG02]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PM: Power Resource [WRST]
Mar 26 17:27:43 archaic kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Mar 26 17:27:43 archaic kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Mar 26 17:27:43 archaic kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
Mar 26 17:27:43 archaic kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
Mar 26 17:27:43 archaic kernel: acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_ERROR)
Mar 26 17:27:43 archaic kernel: PCI host bridge to bus 0000:00
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: root bus resource [bus 00-fe]
Mar 26 17:27:43 archaic kernel: pci 0000:00:00.0: [8086:1910] type 00 class 0x060000
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0: [8086:1901] type 01 class 0x060400
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:04.0: [8086:1903] type 00 class 0x118000
Mar 26 17:27:43 archaic kernel: pci 0000:00:04.0: reg 0x10: [mem 0xda120000-0xda127fff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
Mar 26 17:27:43 archaic kernel: pci 0000:00:14.0: reg 0x10: [mem 0xda110000-0xda11ffff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
Mar 26 17:27:43 archaic kernel: pci 0000:00:14.2: reg 0x10: [mem 0xda136000-0xda136fff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
Mar 26 17:27:43 archaic kernel: pci 0000:00:16.0: reg 0x10: [mem 0xda135000-0xda135fff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:16.0: PME# supported from D3hot
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: reg 0x10: [mem 0xda130000-0xda131fff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: reg 0x14: [mem 0xda134000-0xda1340ff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: reg 0x18: [io  0xf050-0xf057]
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: reg 0x1c: [io  0xf040-0xf043]
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: reg 0x20: [io  0xf020-0xf03f]
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: reg 0x24: [mem 0xda133000-0xda1337ff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:17.0: PME# supported from D3hot
Mar 26 17:27:43 archaic kernel: pci 0000:00:1b.0: [8086:a167] type 01 class 0x060400
Mar 26 17:27:43 archaic kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0: [8086:a111] type 01 class 0x060400
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.2: [8086:a112] type 01 class 0x060400
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4: [8086:a114] type 01 class 0x060400
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
Mar 26 17:27:43 archaic kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.0: [8086:a150] type 00 class 0x060100
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.2: reg 0x10: [mem 0xda12c000-0xda12ffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xda128000-0xda12bfff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.3: reg 0x20: [mem 0xda100000-0xda10ffff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.4: reg 0x10: [mem 0xda132000-0xda1320ff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1f.4: reg 0x20: [io  0xf000-0xf01f]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: [10de:13f8] type 00 class 0x030000
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: reg 0x10: [mem 0xdb000000-0xdbffffff]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: reg 0x14: [mem 0xb0000000-0xbfffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xc0000000-0xc1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: reg 0x30: [mem 0xdc000000-0xdc07ffff pref]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: BAR 3: assigned to efifb
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.1: [10de:0fbb] type 00 class 0x040300
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.1: reg 0x10: [mem 0xdc080000-0xdc083fff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0:   bridge window [mem 0xdb000000-0xdc0fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci 0000:02:00.0: [1c5c:1283] type 00 class 0x010802
Mar 26 17:27:43 archaic kernel: pci 0000:02:00.0: reg 0x10: [mem 0xdc500000-0xdc503fff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:02:00.0: PME# supported from D0 D1 D3hot
Mar 26 17:27:43 archaic kernel: pci 0000:00:1b.0: PCI bridge to [bus 02]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1b.0:   bridge window [mem 0xdc500000-0xdc5fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:03:00.0: [8086:2526] type 00 class 0x028000
Mar 26 17:27:43 archaic kernel: pci 0000:03:00.0: reg 0x10: [mem 0xdc400000-0xdc403fff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0: ASPM: current common clock configuration is inconsistent, reconfiguring
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0:   bridge window [mem 0xdc400000-0xdc4fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:04:00.0: [10ec:525a] type 00 class 0xff0000
Mar 26 17:27:43 archaic kernel: pci 0000:04:00.0: reg 0x14: [mem 0xdc300000-0xdc300fff]
Mar 26 17:27:43 archaic kernel: pci 0000:04:00.0: supports D1 D2
Mar 26 17:27:43 archaic kernel: pci 0000:04:00.0: PME# supported from D1 D2 D3hot D3cold
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.2:   bridge window [mem 0xdc300000-0xdc3fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4: PCI bridge to [bus 05-3d]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4:   bridge window [mem 0xc4000000-0xda0fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci 0000:3e:00.0: [144d:a808] type 00 class 0x010802
Mar 26 17:27:43 archaic kernel: pci 0000:3e:00.0: reg 0x10: [mem 0xdc200000-0xdc203fff 64bit]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1d.0: PCI bridge to [bus 3e]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1d.0:   bridge window [mem 0xdc200000-0xdc2fffff]
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Mar 26 17:27:43 archaic kernel: ACPI: EC: interrupt unblocked
Mar 26 17:27:43 archaic kernel: ACPI: EC: event unblocked
Mar 26 17:27:43 archaic kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
Mar 26 17:27:43 archaic kernel: ACPI: EC: GPE=0x14
Mar 26 17:27:43 archaic kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
Mar 26 17:27:43 archaic kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
Mar 26 17:27:43 archaic kernel: iommu: Default domain type: Translated 
Mar 26 17:27:43 archaic kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Mar 26 17:27:43 archaic kernel: vgaarb: loaded
Mar 26 17:27:43 archaic kernel: SCSI subsystem initialized
Mar 26 17:27:43 archaic kernel: libata version 3.00 loaded.
Mar 26 17:27:43 archaic kernel: ACPI: bus type USB registered
Mar 26 17:27:43 archaic kernel: usbcore: registered new interface driver usbfs
Mar 26 17:27:43 archaic kernel: usbcore: registered new interface driver hub
Mar 26 17:27:43 archaic kernel: usbcore: registered new device driver usb
Mar 26 17:27:43 archaic kernel: pps_core: LinuxPPS API ver. 1 registered
Mar 26 17:27:43 archaic kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Mar 26 17:27:43 archaic kernel: PTP clock support registered
Mar 26 17:27:43 archaic kernel: EDAC MC: Ver: 3.0.0
Mar 26 17:27:43 archaic kernel: Registered efivars operations
Mar 26 17:27:43 archaic kernel: NetLabel: Initializing
Mar 26 17:27:43 archaic kernel: NetLabel:  domain hash size = 128
Mar 26 17:27:43 archaic kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Mar 26 17:27:43 archaic kernel: NetLabel:  unlabeled traffic allowed by default
Mar 26 17:27:43 archaic kernel: mctp: management component transport protocol core
Mar 26 17:27:43 archaic kernel: NET: Registered PF_MCTP protocol family
Mar 26 17:27:43 archaic kernel: PCI: Using ACPI for IRQ routing
Mar 26 17:27:43 archaic kernel: PCI: pci_cache_line_size set to 64 bytes
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x6b668018-0x6bffffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x6d3c0000-0x6fffffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x7a875000-0x7bffffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x7db95000-0x7fffffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x7ed00000-0x7fffffff]
Mar 26 17:27:43 archaic kernel: e820: reserve RAM buffer [mem 0x87e000000-0x87fffffff]
Mar 26 17:27:43 archaic kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Mar 26 17:27:43 archaic kernel: hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Mar 26 17:27:43 archaic kernel: clocksource: Switched to clocksource tsc-early
Mar 26 17:27:43 archaic kernel: VFS: Disk quotas dquot_6.6.0
Mar 26 17:27:43 archaic kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Mar 26 17:27:43 archaic kernel: pnp: PnP ACPI init
Mar 26 17:27:43 archaic kernel: system 00:00: [io  0x0680-0x069f] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:00: [io  0xffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:00: [io  0xffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:00: [io  0xffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:00: [io  0x1800-0x18fe] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:00: [io  0x164e-0x164f] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:03: [io  0x1854-0x1857] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfed10000-0xfed17fff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfed18000-0xfed18fff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfed19000-0xfed19fff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfed20000-0xfed3ffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfed90000-0xfed93fff] could not be reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfed45000-0xfed8ffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xff000000-0xffffffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xfee00000-0xfeefffff] could not be reserved
Mar 26 17:27:43 archaic kernel: system 00:07: [mem 0xdffe0000-0xdfffffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfd000000-0xfdabffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfdad0000-0xfdadffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfdb00000-0xfdffffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfe000000-0xfe01ffff] could not be reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfe036000-0xfe03bfff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfe03d000-0xfe3fffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:08: [mem 0xfe410000-0xfe7fffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:09: [io  0xff00-0xfffe] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:0a: [mem 0xfdaf0000-0xfdafffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:0a: [mem 0xfdae0000-0xfdaeffff] has been reserved
Mar 26 17:27:43 archaic kernel: system 00:0a: [mem 0xfdac0000-0xfdacffff] has been reserved
Mar 26 17:27:43 archaic kernel: pnp: PnP ACPI: found 11 devices
Mar 26 17:27:43 archaic kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Mar 26 17:27:43 archaic kernel: NET: Registered PF_INET protocol family
Mar 26 17:27:43 archaic kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Mar 26 17:27:43 archaic kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Mar 26 17:27:43 archaic kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Mar 26 17:27:43 archaic kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Mar 26 17:27:43 archaic kernel: TCP: Hash tables configured (established 262144 bind 65536)
Mar 26 17:27:43 archaic kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
Mar 26 17:27:43 archaic kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Mar 26 17:27:43 archaic kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Mar 26 17:27:43 archaic kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Mar 26 17:27:43 archaic kernel: NET: Registered PF_XDP protocol family
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4: bridge window [io  0x1000-0x0fff] to [bus 05-3d] add_size 1000
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4: BAR 13: assigned [io  0x2000-0x2fff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0:   bridge window [mem 0xdb000000-0xdc0fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:01.0:   bridge window [mem 0xb0000000-0xc1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1b.0: PCI bridge to [bus 02]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1b.0:   bridge window [mem 0xdc500000-0xdc5fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0: PCI bridge to [bus 03]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.0:   bridge window [mem 0xdc400000-0xdc4fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.2:   bridge window [mem 0xdc300000-0xdc3fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4: PCI bridge to [bus 05-3d]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4:   bridge window [io  0x2000-0x2fff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4:   bridge window [mem 0xc4000000-0xda0fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1c.4:   bridge window [mem 0x80000000-0xa1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1d.0: PCI bridge to [bus 3e]
Mar 26 17:27:43 archaic kernel: pci 0000:00:1d.0:   bridge window [mem 0xdc200000-0xdc2fffff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: resource 7 [mem 0x80000000-0xdfffffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:01: resource 1 [mem 0xdb000000-0xdc0fffff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:01: resource 2 [mem 0xb0000000-0xc1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:02: resource 1 [mem 0xdc500000-0xdc5fffff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:03: resource 1 [mem 0xdc400000-0xdc4fffff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:04: resource 1 [mem 0xdc300000-0xdc3fffff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:05: resource 0 [io  0x2000-0x2fff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:05: resource 1 [mem 0xc4000000-0xda0fffff]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:05: resource 2 [mem 0x80000000-0xa1ffffff 64bit pref]
Mar 26 17:27:43 archaic kernel: pci_bus 0000:3e: resource 1 [mem 0xdc200000-0xdc2fffff]
Mar 26 17:27:43 archaic kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Mar 26 17:27:43 archaic kernel: PCI: CLS 0 bytes, default 64
Mar 26 17:27:43 archaic kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Mar 26 17:27:43 archaic kernel: software IO TLB: mapped [mem 0x0000000076875000-0x000000007a875000] (64MB)
Mar 26 17:27:43 archaic kernel: Trying to unpack rootfs image as initramfs...
Mar 26 17:27:43 archaic kernel: Initialise system trusted keyrings
Mar 26 17:27:43 archaic kernel: Key type blacklist registered
Mar 26 17:27:43 archaic kernel: workingset: timestamp_bits=41 max_order=23 bucket_order=0
Mar 26 17:27:43 archaic kernel: zbud: loaded
Mar 26 17:27:43 archaic kernel: Key type asymmetric registered
Mar 26 17:27:43 archaic kernel: Asymmetric key parser 'x509' registered
Mar 26 17:27:43 archaic kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
Mar 26 17:27:43 archaic kernel: io scheduler mq-deadline registered
Mar 26 17:27:43 archaic kernel: io scheduler kyber registered
Mar 26 17:27:43 archaic kernel: io scheduler bfq registered
Mar 26 17:27:43 archaic kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Mar 26 17:27:43 archaic kernel: ACPI: AC: AC Adapter [AC] (off-line)
Mar 26 17:27:43 archaic kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Mar 26 17:27:43 archaic kernel: ACPI: button: Lid Switch [LID0]
Mar 26 17:27:43 archaic kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Mar 26 17:27:43 archaic kernel: ACPI: button: Power Button [PBTN]
Mar 26 17:27:43 archaic kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
Mar 26 17:27:43 archaic kernel: ACPI: button: Sleep Button [SBTN]
Mar 26 17:27:43 archaic kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Mar 26 17:27:43 archaic kernel: ACPI: button: Power Button [PWRF]
Mar 26 17:27:43 archaic kernel: thermal LNXTHERM:00: registered as thermal_zone0
Mar 26 17:27:43 archaic kernel: ACPI: thermal: Thermal Zone [THM] (25 C)
Mar 26 17:27:43 archaic kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Mar 26 17:27:43 archaic kernel: Non-volatile memory driver v1.3
Mar 26 17:27:43 archaic kernel: Linux agpgart interface v0.103
Mar 26 17:27:43 archaic kernel: AMD-Vi: AMD IOMMUv2 functionality not available on this system - This is not a bug.
Mar 26 17:27:43 archaic kernel: ACPI: bus type drm_connector registered
Mar 26 17:27:43 archaic kernel: nvme nvme0: pci function 0000:02:00.0
Mar 26 17:27:43 archaic kernel: nvme nvme1: pci function 0000:3e:00.0
Mar 26 17:27:43 archaic kernel: ahci 0000:00:17.0: version 3.0
Mar 26 17:27:43 archaic kernel: nvme nvme1: missing or invalid SUBNQN field.
Mar 26 17:27:43 archaic kernel: nvme nvme1: Shutdown timeout set to 8 seconds
Mar 26 17:27:43 archaic kernel: ahci 0000:00:17.0: AHCI 0001.0301 32 slots 2 ports 6 Gbps 0xa impl SATA mode
Mar 26 17:27:43 archaic kernel: ahci 0000:00:17.0: flags: 64bit ncq sntf stag led clo only pio slum part ems sxs deso sadm sds apst 
Mar 26 17:27:43 archaic kernel: nvme nvme1: 8/0/0 default/read/poll queues
Mar 26 17:27:43 archaic kernel: Freeing initrd memory: 123608K
Mar 26 17:27:43 archaic kernel:  nvme1n1: p1 p2 p3 p4 p5 p6
Mar 26 17:27:43 archaic kernel: scsi host0: ahci
Mar 26 17:27:43 archaic kernel: scsi host1: ahci
Mar 26 17:27:43 archaic kernel: scsi host2: ahci
Mar 26 17:27:43 archaic kernel: scsi host3: ahci
Mar 26 17:27:43 archaic kernel: ata1: DUMMY
Mar 26 17:27:43 archaic kernel: ata2: SATA max UDMA/133 abar m2048@0xda133000 port 0xda133180 irq 127
Mar 26 17:27:43 archaic kernel: ata3: DUMMY
Mar 26 17:27:43 archaic kernel: ata4: SATA max UDMA/133 abar m2048@0xda133000 port 0xda133280 irq 127
Mar 26 17:27:43 archaic kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Mar 26 17:27:43 archaic kernel: ehci-pci: EHCI PCI platform driver
Mar 26 17:27:43 archaic kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Mar 26 17:27:43 archaic kernel: ohci-pci: OHCI PCI platform driver
Mar 26 17:27:43 archaic kernel: uhci_hcd: USB Universal Host Controller Interface driver
Mar 26 17:27:43 archaic kernel: usbcore: registered new interface driver usbserial_generic
Mar 26 17:27:43 archaic kernel: usbserial: USB Serial support registered for generic
Mar 26 17:27:43 archaic kernel: rtc_cmos 00:02: RTC can wake from S4
Mar 26 17:27:43 archaic kernel: rtc rtc0: invalid alarm value: 2022-03-26T11:57:62
Mar 26 17:27:43 archaic kernel: rtc_cmos 00:02: registered as rtc0
Mar 26 17:27:43 archaic kernel: rtc_cmos 00:02: setting system clock to 2022-03-26T11:57:41 UTC (1648295861)
Mar 26 17:27:43 archaic kernel: rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Mar 26 17:27:43 archaic kernel: intel_pstate: Intel P-state driver initializing
Mar 26 17:27:43 archaic kernel: intel_pstate: HWP enabled
Mar 26 17:27:43 archaic kernel: ledtrig-cpu: registered to indicate activity on CPUs
Mar 26 17:27:43 archaic kernel: efifb: probing for efifb
Mar 26 17:27:43 archaic kernel: efifb: framebuffer at 0xc1000000, using 7500k, total 7500k
Mar 26 17:27:43 archaic kernel: efifb: mode is 1600x1200x32, linelength=6400, pages=1
Mar 26 17:27:43 archaic kernel: efifb: scrolling: redraw
Mar 26 17:27:43 archaic kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Mar 26 17:27:43 archaic kernel: Console: switching to colour frame buffer device 200x75
Mar 26 17:27:43 archaic kernel: nvme nvme0: 8/0/0 default/read/poll queues
Mar 26 17:27:43 archaic kernel: fb0: EFI VGA frame buffer device
Mar 26 17:27:43 archaic kernel: hid: raw HID events driver (C) Jiri Kosina
Mar 26 17:27:43 archaic kernel: intel_pmc_core INT33A1:00:  initialized
Mar 26 17:27:43 archaic kernel: drop_monitor: Initializing network drop monitor service
Mar 26 17:27:43 archaic kernel: Initializing XFRM netlink socket
Mar 26 17:27:43 archaic kernel: IPv6: Loaded, but administratively disabled, reboot required to enable
Mar 26 17:27:43 archaic kernel: NET: Registered PF_PACKET protocol family
Mar 26 17:27:43 archaic kernel: microcode: sig=0x506e3, pf=0x20, revision=0xea
Mar 26 17:27:43 archaic kernel: microcode: Microcode Update Driver: v2.2.
Mar 26 17:27:43 archaic kernel: IPI shorthand broadcast: enabled
Mar 26 17:27:43 archaic kernel: sched_clock: Marking stable (478673828, 706720)->(487672381, -8291833)
Mar 26 17:27:43 archaic kernel: registered taskstats version 1
Mar 26 17:27:43 archaic kernel: Loading compiled-in X.509 certificates
Mar 26 17:27:43 archaic kernel:  nvme0n1: p1 p2 p3
Mar 26 17:27:43 archaic kernel: ACPI: battery: Slot [BAT0] (battery present)
Mar 26 17:27:43 archaic kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 735e415a7e6f0478167f8475cdba5b3afcd2d0a9'
Mar 26 17:27:43 archaic kernel: zswap: loaded using pool lz4/z3fold
Mar 26 17:27:43 archaic kernel: Key type ._fscrypt registered
Mar 26 17:27:43 archaic kernel: Key type .fscrypt registered
Mar 26 17:27:43 archaic kernel: Key type fscrypt-provisioning registered
Mar 26 17:27:43 archaic kernel: PM:   Magic number: 14:543:985
Mar 26 17:27:43 archaic kernel: platform PNP0C14:02: hash matches
Mar 26 17:27:43 archaic kernel: acpi PNP0C14:02: hash matches
Mar 26 17:27:43 archaic kernel: RAS: Correctable Errors collector initialized.
Mar 26 17:27:43 archaic kernel: ata2: SATA link down (SStatus 0 SControl 300)
Mar 26 17:27:43 archaic kernel: ata4: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Mar 26 17:27:43 archaic kernel: ata4.00: supports DRM functions and may not be fully accessible
Mar 26 17:27:43 archaic kernel: ata4.00: ATA-9: Samsung SSD 850 PRO 128GB, EXM02B6Q, max UDMA/133
Mar 26 17:27:43 archaic kernel: ata4.00: disabling queued TRIM support
Mar 26 17:27:43 archaic kernel: ata4.00: 250069680 sectors, multi 1: LBA48 NCQ (depth 32), AA
Mar 26 17:27:43 archaic kernel: ata4.00: Features: Trust Dev-Sleep NCQ-sndrcv
Mar 26 17:27:43 archaic kernel: ata4.00: supports DRM functions and may not be fully accessible
Mar 26 17:27:43 archaic kernel: ata4.00: disabling queued TRIM support
Mar 26 17:27:43 archaic kernel: ata4.00: configured for UDMA/133
Mar 26 17:27:43 archaic kernel: scsi 3:0:0:0: Direct-Access     ATA      Samsung SSD 850  2B6Q PQ: 0 ANSI: 5
Mar 26 17:27:43 archaic kernel: sd 3:0:0:0: [sda] 250069680 512-byte logical blocks: (128 GB/119 GiB)
Mar 26 17:27:43 archaic kernel: sd 3:0:0:0: [sda] Write Protect is off
Mar 26 17:27:43 archaic kernel: sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
Mar 26 17:27:43 archaic kernel: sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Mar 26 17:27:43 archaic kernel:  sda:
Mar 26 17:27:43 archaic kernel: sd 3:0:0:0: [sda] supports TCG Opal
Mar 26 17:27:43 archaic kernel: sd 3:0:0:0: [sda] Attached SCSI disk
Mar 26 17:27:43 archaic kernel: Freeing unused decrypted memory: 2036K
Mar 26 17:27:43 archaic kernel: Freeing unused kernel image (initmem) memory: 1780K
Mar 26 17:27:43 archaic kernel: Write protecting the kernel read-only data: 28672k
Mar 26 17:27:43 archaic kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Mar 26 17:27:43 archaic kernel: Freeing unused kernel image (rodata/data gap) memory: 1348K
Mar 26 17:27:43 archaic kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Mar 26 17:27:43 archaic kernel: rodata_test: all tests were successful
Mar 26 17:27:43 archaic kernel: x86/mm: Checking user space page tables
Mar 26 17:27:43 archaic kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Mar 26 17:27:43 archaic kernel: Run /init as init process
Mar 26 17:27:43 archaic kernel:   with arguments:
Mar 26 17:27:43 archaic kernel:     /init
Mar 26 17:27:43 archaic kernel:   with environment:
Mar 26 17:27:43 archaic kernel:     HOME=/
Mar 26 17:27:43 archaic kernel:     TERM=linux
Mar 26 17:27:43 archaic kernel: raid6: skip pq benchmark and using algorithm avx2x4
Mar 26 17:27:43 archaic kernel: raid6: using avx2x2 recovery algorithm
Mar 26 17:27:43 archaic kernel: xor: automatically using best checksumming function   avx       
Mar 26 17:27:43 archaic kernel: Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes
Mar 26 17:27:43 archaic kernel: nvidia: loading out-of-tree module taints kernel.
Mar 26 17:27:43 archaic kernel: nvidia: module license 'NVIDIA' taints kernel.
Mar 26 17:27:43 archaic kernel: Disabling lock debugging due to kernel taint
Mar 26 17:27:43 archaic kernel: nvidia: module verification failed: signature and/or required key missing - tainting kernel
Mar 26 17:27:43 archaic kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 235
Mar 26 17:27:43 archaic kernel: 
Mar 26 17:27:43 archaic kernel: nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
Mar 26 17:27:43 archaic kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  510.54  Tue Feb  8 04:42:21 UTC 2022
Mar 26 17:27:43 archaic kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  510.54  Tue Feb  8 04:34:06 UTC 2022
Mar 26 17:27:43 archaic kernel: nvidia_uvm: module uses symbols from proprietary module nvidia, inheriting taint.
Mar 26 17:27:43 archaic kernel: nvidia-uvm: Loaded the UVM driver, major device number 511.
Mar 26 17:27:43 archaic kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Mar 26 17:27:43 archaic kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 0
Mar 26 17:27:43 archaic kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
Mar 26 17:27:43 archaic kernel: i8042: Warning: Keylock active
Mar 26 17:27:43 archaic kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Mar 26 17:27:43 archaic kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Mar 26 17:27:43 archaic kernel: tsc: Refined TSC clocksource calibration: 2903.999 MHz
Mar 26 17:27:43 archaic kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc050a48e, max_idle_ns: 440795325698 ns
Mar 26 17:27:43 archaic kernel: clocksource: Switched to clocksource tsc
Mar 26 17:27:43 archaic kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 26 17:27:43 archaic kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Mar 26 17:27:43 archaic kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000001109810
Mar 26 17:27:43 archaic kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.16
Mar 26 17:27:43 archaic kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 26 17:27:43 archaic kernel: usb usb1: Product: xHCI Host Controller
Mar 26 17:27:43 archaic kernel: usb usb1: Manufacturer: Linux 5.16.16-arch1-1 xhci-hcd
Mar 26 17:27:43 archaic kernel: usb usb1: SerialNumber: 0000:00:14.0
Mar 26 17:27:43 archaic kernel: hub 1-0:1.0: USB hub found
Mar 26 17:27:43 archaic kernel: hub 1-0:1.0: 16 ports detected
Mar 26 17:27:43 archaic kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Mar 26 17:27:43 archaic kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Mar 26 17:27:43 archaic kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Mar 26 17:27:43 archaic kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.16
Mar 26 17:27:43 archaic kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Mar 26 17:27:43 archaic kernel: usb usb2: Product: xHCI Host Controller
Mar 26 17:27:43 archaic kernel: usb usb2: Manufacturer: Linux 5.16.16-arch1-1 xhci-hcd
Mar 26 17:27:43 archaic kernel: usb usb2: SerialNumber: 0000:00:14.0
Mar 26 17:27:43 archaic kernel: hub 2-0:1.0: USB hub found
Mar 26 17:27:43 archaic kernel: hub 2-0:1.0: 10 ports detected
Mar 26 17:27:43 archaic kernel: usb: port power management may be unreliable
Mar 26 17:27:43 archaic kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
Mar 26 17:27:43 archaic kernel: BTRFS: device label ARCH2 devid 1 transid 561 /dev/nvme0n1p3 scanned by systemd-udevd (189)
Mar 26 17:27:43 archaic kernel: random: fast init done
Mar 26 17:27:43 archaic kernel: BTRFS: device label BTROOT devid 1 transid 107582 /dev/nvme0n1p1 scanned by systemd-udevd (209)
Mar 26 17:27:43 archaic kernel: BTRFS: device label DOCKER devid 1 transid 1393 /dev/nvme1n1p3 scanned by systemd-udevd (198)
Mar 26 17:27:43 archaic kernel: BTRFS: device label BAK devid 1 transid 4254 /dev/nvme1n1p5 scanned by systemd-udevd (186)
Mar 26 17:27:43 archaic kernel: BTRFS: device label BTROOT devid 2 transid 107582 /dev/nvme1n1p1 scanned by systemd-udevd (204)
Mar 26 17:27:43 archaic kernel: usb 1-3: new full-speed USB device number 2 using xhci_hcd
Mar 26 17:27:43 archaic kernel: BTRFS info (device nvme0n1p3): flagging fs with big metadata feature
Mar 26 17:27:43 archaic kernel: BTRFS info (device nvme0n1p3): using free space tree
Mar 26 17:27:43 archaic kernel: BTRFS info (device nvme0n1p3): has skinny extents
Mar 26 17:27:43 archaic kernel: BTRFS info (device nvme0n1p3): enabling ssd optimizations
Mar 26 17:27:43 archaic kernel: usb 1-3: New USB device found, idVendor=04ca, idProduct=00a8, bcdDevice= 0.01
Mar 26 17:27:43 archaic kernel: usb 1-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 26 17:27:43 archaic kernel: usb 1-3: Product: Dell Wireless Mouse WM118
Mar 26 17:27:43 archaic kernel: usb 1-3: Manufacturer: Liteon
Mar 26 17:27:43 archaic kernel: random: crng init done
Mar 26 17:27:43 archaic systemd[1]: Successfully credited entropy passed from boot loader.
Mar 26 17:27:43 archaic systemd[1]: systemd 250.4-2-arch running in system mode (+PAM +AUDIT -SELINUX -APPARMOR -IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP -SYSVINIT default-hierarchy=unified)
Mar 26 17:27:43 archaic systemd[1]: Detected architecture x86-64.
Mar 26 17:27:43 archaic systemd[1]: Hostname set to <archaic>.
Mar 26 17:27:43 archaic kernel: usb 1-6: new full-speed USB device number 3 using xhci_hcd
Mar 26 17:27:43 archaic systemd[1]: Queued start job for default target Graphical Interface.
Mar 26 17:27:43 archaic systemd[1]: Created slice Slice /system/getty.
Mar 26 17:27:43 archaic systemd[1]: Created slice Slice /system/modprobe.
Mar 26 17:27:43 archaic systemd[1]: Created slice Slice /system/wpa_supplicant.
Mar 26 17:27:43 archaic systemd[1]: Created slice User and Session Slice.
Mar 26 17:27:43 archaic systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Mar 26 17:27:43 archaic systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Mar 26 17:27:43 archaic systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Mar 26 17:27:43 archaic systemd[1]: Reached target Local Encrypted Volumes.
Mar 26 17:27:43 archaic systemd[1]: Reached target Local Integrity Protected Volumes.
Mar 26 17:27:43 archaic systemd[1]: Reached target Path Units.
Mar 26 17:27:43 archaic systemd[1]: Reached target Remote File Systems.
Mar 26 17:27:43 archaic systemd[1]: Reached target Slice Units.
Mar 26 17:27:43 archaic systemd[1]: Reached target Local Verity Protected Volumes.
Mar 26 17:27:43 archaic systemd[1]: Listening on Device-mapper event daemon FIFOs.
Mar 26 17:27:43 archaic systemd[1]: Listening on LVM2 poll daemon socket.
Mar 26 17:27:43 archaic systemd[1]: Listening on Process Core Dump Socket.
Mar 26 17:27:43 archaic systemd[1]: Journal Audit Socket was skipped because of a failed condition check (ConditionSecurity=audit).
Mar 26 17:27:43 archaic systemd[1]: Listening on Journal Socket (/dev/log).
Mar 26 17:27:43 archaic systemd[1]: Listening on Journal Socket.
Mar 26 17:27:43 archaic systemd[1]: Listening on Network Service Netlink Socket.
Mar 26 17:27:43 archaic systemd[1]: Listening on udev Control Socket.
Mar 26 17:27:43 archaic systemd[1]: Listening on udev Kernel Socket.
Mar 26 17:27:43 archaic systemd[1]: Mounting Huge Pages File System...
Mar 26 17:27:43 archaic systemd[1]: Mounting POSIX Message Queue File System...
Mar 26 17:27:43 archaic systemd[1]: Mounting Kernel Debug File System...
Mar 26 17:27:43 archaic systemd[1]: Mounting Kernel Trace File System...
Mar 26 17:27:43 archaic systemd[1]: Starting Create List of Static Device Nodes...
Mar 26 17:27:43 archaic systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Mar 26 17:27:43 archaic systemd[1]: Starting Load Kernel Module configfs...
Mar 26 17:27:43 archaic systemd[1]: Starting Load Kernel Module drm...
Mar 26 17:27:43 archaic systemd[1]: Starting Load Kernel Module fuse...
Mar 26 17:27:43 archaic systemd[1]: Starting Journal Service...
Mar 26 17:27:43 archaic systemd[1]: Starting Load Kernel Modules...
Mar 26 17:27:43 archaic systemd[1]: Starting Remount Root and Kernel File Systems...
Mar 26 17:27:43 archaic systemd[1]: Repartition Root Disk was skipped because all trigger condition checks failed.
Mar 26 17:27:43 archaic systemd[1]: Starting Coldplug All udev Devices...
Mar 26 17:27:43 archaic systemd[1]: Mounted Huge Pages File System.
Mar 26 17:27:43 archaic systemd[1]: Mounted POSIX Message Queue File System.
Mar 26 17:27:43 archaic systemd[1]: Mounted Kernel Debug File System.
Mar 26 17:27:43 archaic systemd[1]: Mounted Kernel Trace File System.
Mar 26 17:27:43 archaic systemd[1]: Finished Create List of Static Device Nodes.
Mar 26 17:27:43 archaic systemd[1]: modprobe@configfs.service: Deactivated successfully.
Mar 26 17:27:43 archaic systemd[1]: Finished Load Kernel Module configfs.
Mar 26 17:27:43 archaic systemd[1]: modprobe@drm.service: Deactivated successfully.
Mar 26 17:27:43 archaic systemd[1]: Finished Load Kernel Module drm.
Mar 26 17:27:43 archaic systemd[1]: Finished Remount Root and Kernel File Systems.
Mar 26 17:27:43 archaic systemd[1]: Mounting Kernel Configuration File System...
Mar 26 17:27:43 archaic systemd[1]: First Boot Wizard was skipped because of a failed condition check (ConditionFirstBoot=yes).
Mar 26 17:27:43 archaic systemd[1]: Rebuild Hardware Database was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
Mar 26 17:27:43 archaic kernel: fuse: init (API version 7.35)
Mar 26 17:27:43 archaic systemd[1]: Starting Load/Save Random Seed...
Mar 26 17:27:43 archaic systemd[1]: Create System Users was skipped because of a failed condition check (ConditionNeedsUpdate=/etc).
Mar 26 17:27:43 archaic systemd[1]: Starting Create Static Device Nodes in /dev...
Mar 26 17:27:43 archaic systemd[1]: modprobe@fuse.service: Deactivated successfully.
Mar 26 17:27:43 archaic systemd[1]: Finished Load Kernel Module fuse.
Mar 26 17:27:43 archaic systemd[1]: Mounted Kernel Configuration File System.
Mar 26 17:27:43 archaic systemd[1]: Mounting FUSE Control File System...
Mar 26 17:27:43 archaic kernel: Asymmetric key parser 'pkcs8' registered
Mar 26 17:27:43 archaic systemd[1]: Finished Load Kernel Modules.
Mar 26 17:27:43 archaic systemd[1]: Mounted FUSE Control File System.
Mar 26 17:27:43 archaic systemd[1]: Starting Apply Kernel Variables...
Mar 26 17:27:43 archaic kernel: usb 1-6: New USB device found, idVendor=8087, idProduct=0025, bcdDevice= 0.02
Mar 26 17:27:43 archaic kernel: usb 1-6: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Mar 26 17:27:43 archaic systemd[1]: Finished Load/Save Random Seed.
Mar 26 17:27:43 archaic systemd[1]: First Boot Complete was skipped because of a failed condition check (ConditionFirstBoot=yes).
Mar 26 17:27:43 archaic systemd[1]: Finished Apply Kernel Variables.
Mar 26 17:27:43 archaic systemd-journald[280]: Journal started
Mar 26 17:27:43 archaic systemd-journald[280]: Runtime Journal (/run/log/journal/77bb36b693e9469d975773d675c1047c) is 8.0M, max 1.5G, 1.5G free.
Mar 26 17:27:43 archaic systemd-modules-load[281]: Inserted module 'crypto_user'
Mar 26 17:27:43 archaic systemd-modules-load[281]: Inserted module 'pkcs8_key_parser'
Mar 26 17:27:43 archaic systemd[1]: Starting Flush Journal to Persistent Storage...
Mar 26 17:27:43 archaic systemd[1]: Finished Create Static Device Nodes in /dev.
Mar 26 17:27:43 archaic systemd[1]: Started Journal Service.
Mar 26 17:27:43 archaic systemd[1]: Starting Rule-based Manager for Device Events and Files...
Mar 26 17:27:43 archaic systemd-journald[280]: Time spent on flushing to /var/log/journal/77bb36b693e9469d975773d675c1047c is 24.365ms for 856 entries.
Mar 26 17:27:43 archaic systemd-journald[280]: System Journal (/var/log/journal/77bb36b693e9469d975773d675c1047c) is 623.9M, max 4.0G, 3.3G free.
Mar 26 17:27:43 archaic systemd-journald[280]: Received client request to flush runtime journal.
Mar 26 17:27:43 archaic systemd-udevd[293]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Mar 26 17:27:43 archaic systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Mar 26 17:27:43 archaic systemd[1]: Reached target Preparation for Local File Systems.
Mar 26 17:27:43 archaic systemd[1]: Virtual Machine and Container Storage (Compatibility) was skipped because of a failed condition check (ConditionPathExists=/var/lib/machines.raw).
Mar 26 17:27:43 archaic systemd-udevd[293]: Configuration file /usr/lib/udev/rules.d/77-mm-fibocom-port-types.rules is marked executable. Please remove executable permission bits. Proceeding anyway.
Mar 26 17:27:43 archaic systemd[1]: Started Rule-based Manager for Device Events and Files.
Mar 26 17:27:43 archaic systemd[1]: Starting Network Configuration...
Mar 26 17:27:43 archaic systemd[1]: Finished Coldplug All udev Devices.
Mar 26 17:27:43 archaic systemd[1]: Finished Flush Journal to Persistent Storage.
Mar 26 17:27:43 archaic systemd-udevd[301]: nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/devices | cut -d \  -f 1) 255'' failed with exit code 1.
Mar 26 17:27:43 archaic kernel: usb 1-10: new full-speed USB device number 4 using xhci_hcd
Mar 26 17:27:43 archaic kernel: input: DELL Wireless hotkeys as /devices/virtual/input/input6
Mar 26 17:27:43 archaic kernel: ACPI: video: Video Device [PEGP] (multi-head: yes  rom: yes  post: no)
Mar 26 17:27:43 archaic kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Mar 26 17:27:43 archaic kernel: Userspace governor deprecated: use thermal netlink notification instead
Mar 26 17:27:43 archaic kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Mar 26 17:27:43 archaic kernel: platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
Mar 26 17:27:43 archaic kernel: cfg80211: failed to load regulatory.db
Mar 26 17:27:43 archaic systemd-udevd[298]: nvidia: Process '/usr/bin/bash -c 'for i in $(cat /proc/driver/nvidia/gpus/*/information | grep Minor | cut -d \  -f 4); do /usr/bin/mknod -Z -m 666 /dev/nvidia${i} c $(grep nvidia-frontend /proc/devices | cut -d \  -f 1) ${i}; done'' failed with exit code 1.
Mar 26 17:27:43 archaic kernel: parport_pc 00:06: [io  0x0378-0x037b]
Mar 26 17:27:43 archaic systemd-networkd[300]: lo: Link UP
Mar 26 17:27:43 archaic systemd-networkd[300]: lo: Gained carrier
Mar 26 17:27:43 archaic systemd-networkd[300]: Enumeration completed
Mar 26 17:27:43 archaic systemd[1]: Started Network Configuration.
Mar 26 17:27:43 archaic kernel: usb 1-10: New USB device found, idVendor=0a5c, idProduct=5832, bcdDevice= 1.01
Mar 26 17:27:43 archaic kernel: usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Mar 26 17:27:43 archaic kernel: usb 1-10: Product: 5880
Mar 26 17:27:43 archaic kernel: usb 1-10: Manufacturer: Broadcom Corp
Mar 26 17:27:43 archaic kernel: usb 1-10: SerialNumber: 0123456789ABCD
Mar 26 17:27:43 archaic kernel: usb 1-10: config 0 descriptor??
Mar 26 17:27:43 archaic kernel: wmi_bus wmi_bus-PNP0C14:02: WQBC data block query control method not found
Mar 26 17:27:43 archaic kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Mar 26 17:27:43 archaic kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Mar 26 17:27:43 archaic kernel: usb 1-11: new high-speed USB device number 5 using xhci_hcd
Mar 26 17:27:43 archaic kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002)
Mar 26 17:28:13 archaic kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Mar 26 17:28:13 archaic kernel: acpi device:0c: registered as cooling_device8
Mar 26 17:28:13 archaic kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input7
Mar 26 17:28:13 archaic kernel: parport_pc 00:06: activated
Mar 26 17:28:13 archaic kernel: parport_pc 00:06: reported by Plug and Play ACPI
Mar 26 17:28:13 archaic kernel: Intel(R) Wireless WiFi driver for Linux
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: enabling device (0000 -> 0002)
Mar 26 17:28:13 archaic kernel: usb 1-11: New USB device found, idVendor=1bcf, idProduct=2b91, bcdDevice=57.27
Mar 26 17:28:13 archaic kernel: usb 1-11: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Mar 26 17:28:13 archaic kernel: usb 1-11: Product: Integrated_Webcam_HD
Mar 26 17:28:13 archaic kernel: usb 1-11: Manufacturer: CNFEH63M41401789D982
Mar 26 17:28:13 archaic systemd[1]: Found device PC300 NVMe SK hynix 256GB SWAP0.
Mar 26 17:28:13 archaic systemd[1]: Activating swap /dev/disk/by-label/SWAP0...
Mar 26 17:28:13 archaic kernel: Adding 16777212k swap on /dev/nvme0n1p2.  Priority:-2 extents:1 across:16777212k SSFS
Mar 26 17:28:13 archaic systemd[1]: Activated swap /dev/disk/by-label/SWAP0.
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 0
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 1
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 2
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 3
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 4
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 6
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 8
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 9
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 10
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 11
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 15
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 16
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 18
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 19
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 20
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 21
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: WRT: Overriding region id 28
Mar 26 17:28:13 archaic kernel: iwlwifi 0000:03:00.0: loaded firmware version 46.fae53a8b.0 9260-th-b0-jf-b0-46.ucode op_mode iwlmvm
Mar 26 17:28:14 archaic kernel: input: PC Speaker as /devices/platform/pcspkr/input/input8
Mar 26 17:28:14 archaic kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002)
Mar 26 17:28:14 archaic kernel: intel_rapl_common: Found RAPL domain package
Mar 26 17:28:14 archaic kernel: intel_rapl_common: Found RAPL domain dram
Mar 26 17:28:14 archaic kernel: Bluetooth: Core ver 2.22
Mar 26 17:28:14 archaic kernel: NET: Registered PF_BLUETOOTH protocol family
Mar 26 17:28:14 archaic kernel: Bluetooth: HCI device and connection manager initialized
Mar 26 17:28:14 archaic kernel: Bluetooth: HCI socket layer initialized
Mar 26 17:28:14 archaic kernel: Bluetooth: L2CAP socket layer initialized
Mar 26 17:28:14 archaic kernel: Bluetooth: SCO socket layer initialized
Mar 26 17:28:14 archaic kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set
Mar 26 17:28:14 archaic kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
Mar 26 17:28:14 archaic systemd[1]: Found device Samsung SSD 970 EVO Plus 250GB UEFI.
Mar 26 17:28:14 archaic kernel: i801_smbus 0000:00:1f.4: Accelerometer lis3lv02d is present on SMBus but its address is unknown, skipping registration
Mar 26 17:28:14 archaic kernel: i2c i2c-0: 2/4 memory slots populated (from DMI)
Mar 26 17:28:14 archaic kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
Mar 26 17:28:14 archaic kernel: i2c i2c-0: Successfully instantiated SPD at 0x52
Mar 26 17:28:14 archaic systemd[1]: Mounting /boot...
Mar 26 17:28:14 archaic kernel: RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
Mar 26 17:28:14 archaic kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Mar 26 17:28:14 archaic kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Mar 26 17:28:14 archaic kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Mar 26 17:28:14 archaic systemd[1]: Found device Samsung SSD 970 EVO Plus 250GB DOCKER.
Mar 26 17:28:14 archaic systemd[1]: Mounting /var/lib/docker...
Mar 26 17:28:14 archaic kernel: BTRFS info (device nvme1n1p3): flagging fs with big metadata feature
Mar 26 17:28:14 archaic kernel: BTRFS info (device nvme1n1p3): using free space tree
Mar 26 17:28:14 archaic kernel: BTRFS info (device nvme1n1p3): has skinny extents
Mar 26 17:28:14 archaic kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
Mar 26 17:28:14 archaic kernel: BTRFS info (device nvme1n1p3): enabling ssd optimizations
Mar 26 17:28:14 archaic systemd[1]: Found device Samsung SSD 970 EVO Plus 250GB SWAP1.
Mar 26 17:28:14 archaic systemd[1]: Mounted /var/lib/docker.
Mar 26 17:28:14 archaic systemd[1]: Activating swap /dev/disk/by-label/SWAP1...
Mar 26 17:28:14 archaic kernel: Adding 16777212k swap on /dev/nvme1n1p4.  Priority:-3 extents:1 across:16777212k SSFS
Mar 26 17:28:14 archaic systemd[1]: Activated swap /dev/disk/by-label/SWAP1.
Mar 26 17:28:14 archaic systemd[1]: Reached target Swaps.
Mar 26 17:28:14 archaic systemd[1]: Mounting Temporary Directory /tmp...
Mar 26 17:28:14 archaic kernel: ppdev: user-space parallel port driver
Mar 26 17:28:14 archaic systemd[1]: Mounted Temporary Directory /tmp.
Mar 26 17:28:14 archaic kernel: cryptd: max_cpu_qlen set to 1000
Mar 26 17:28:14 archaic kernel: intel_rapl_common: Found RAPL domain package
Mar 26 17:28:14 archaic kernel: intel_rapl_common: Found RAPL domain core
Mar 26 17:28:14 archaic kernel: intel_rapl_common: Found RAPL domain dram
Mar 26 17:28:14 archaic kernel: intel_rapl_common: RAPL package-0 domain package locked by BIOS
Mar 26 17:28:14 archaic kernel: intel_rapl_common: RAPL package-0 domain dram locked by BIOS
Mar 26 17:28:14 archaic kernel: FAT-fs (nvme1n1p2): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
Mar 26 17:28:14 archaic systemd[1]: Mounted /boot.
Mar 26 17:28:14 archaic systemd[1]: Reached target Local File Systems.
Mar 26 17:28:14 archaic systemd[1]: Rebuild Dynamic Linker Cache was skipped because all trigger condition checks failed.
Mar 26 17:28:14 archaic systemd[1]: Set Up Additional Binary Formats was skipped because all trigger condition checks failed.
Mar 26 17:28:14 archaic systemd[1]: Store a System Token in an EFI Variable was skipped because all trigger condition checks failed.
Mar 26 17:28:14 archaic systemd[1]: Commit a transient machine-id on disk was skipped because of a failed condition check (ConditionPathIsMountPoint=/etc/machine-id).
Mar 26 17:28:14 archaic systemd[1]: Starting Create Volatile Files and Directories...
Mar 26 17:28:14 archaic kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Wireless-AC 9260 160MHz, REV=0x324
Mar 26 17:28:14 archaic kernel: thermal thermal_zone10: failed to read out thermal zone (-61)
Mar 26 17:28:14 archaic kernel: iTCO_vendor_support: vendor-support=0
Mar 26 17:28:14 archaic kernel: ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
Mar 26 17:28:14 archaic kernel: ee1004 0-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
Mar 26 17:28:14 archaic systemd[1]: Finished Create Volatile Files and Directories.
Mar 26 17:28:14 archaic systemd[1]: Rebuild Journal Catalog was skipped because of a failed condition check (ConditionNeedsUpdate=/var).
Mar 26 17:28:14 archaic systemd[1]: Starting Network Name Resolution...
Mar 26 17:28:14 archaic systemd[1]: Starting Network Time Synchronization...
Mar 26 17:28:14 archaic systemd[1]: Update is Completed was skipped because all trigger condition checks failed.
Mar 26 17:28:14 archaic systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Mar 26 17:28:14 archaic systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Mar 26 17:28:14 archaic kernel: iwlwifi 0000:03:00.0: base HW address: 8c:1d:96:08:63:3a
Mar 26 17:28:14 archaic systemd[1]: Started Network Time Synchronization.
Mar 26 17:28:14 archaic systemd[1]: Reached target System Initialization.
Mar 26 17:28:14 archaic systemd[1]: Started Daily Cleanup of Temporary Directories.
Mar 26 17:28:14 archaic systemd-resolved[435]: Positive Trust Anchors:
Mar 26 17:28:14 archaic systemd-resolved[435]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Mar 26 17:28:14 archaic systemd-resolved[435]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Mar 26 17:28:14 archaic systemd[1]: Reached target System Time Set.
Mar 26 17:28:14 archaic systemd[1]: Started Daily man-db regeneration.
Mar 26 17:28:14 archaic systemd[1]: Started Daily verification of password and group files.
Mar 26 17:28:14 archaic systemd[1]: Started Daily locate database update.
Mar 26 17:28:14 archaic systemd[1]: Reached target Timer Units.
Mar 26 17:28:14 archaic systemd[1]: Listening on D-Bus System Message Bus Socket.
Mar 26 17:28:14 archaic systemd[1]: Reached target Socket Units.
Mar 26 17:28:14 archaic systemd[1]: Reached target Basic System.
Mar 26 17:28:14 archaic systemd[1]: Starting D-Bus System Message Bus...
Mar 26 17:28:14 archaic kernel: AVX2 version of gcm_enc/dec engaged.
Mar 26 17:28:14 archaic kernel: AES CTR mode by8 optimization enabled
Mar 26 17:28:14 archaic systemd-resolved[435]: Using system hostname 'archaic'.
Mar 26 17:28:14 archaic systemd[1]: Starting User Login Management...
Mar 26 17:28:14 archaic kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input10
Mar 26 17:28:14 archaic kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
Mar 26 17:28:14 archaic kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Mar 26 17:28:14 archaic kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Mar 26 17:28:14 archaic dbus-daemon[441]: dbus[441]: Unknown group "netdev" in message bus configuration file
Mar 26 17:28:14 archaic dbus-daemon[441]: dbus[441]: Unknown group "netdev" in message bus configuration file
Mar 26 17:28:14 archaic systemd[1]: Started D-Bus System Message Bus.
Mar 26 17:28:14 archaic kernel: iTCO_wdt iTCO_wdt: Found a Intel PCH TCO device (Version=4, TCOBASE=0x0400)
Mar 26 17:28:14 archaic kernel: iTCO_wdt iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
Mar 26 17:28:14 archaic systemd[1]: Started Network Name Resolution.
Mar 26 17:28:14 archaic systemd-udevd[355]: Using default interface naming scheme 'v250'.
Mar 26 17:28:14 archaic systemd[1]: Reached target Host and Network Name Lookups.
Mar 26 17:28:14 archaic kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Mar 26 17:28:14 archaic systemd[1]: Found device Wireless-AC 9260.
Mar 26 17:28:14 archaic systemd-logind[457]: New seat seat0.
Mar 26 17:28:14 archaic systemd[1]: Started WPA supplicant daemon (interface-specific version).
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event3 (Power Button)
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event1 (Power Button)
Mar 26 17:28:14 archaic systemd[1]: Reached target Network.
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event0 (Lid Switch)
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event2 (Sleep Button)
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event4 (AT Translated Set 2 keyboard)
Mar 26 17:28:14 archaic systemd[1]: Starting Permit User Sessions...
Mar 26 17:28:14 archaic systemd[1]: Started User Login Management.
Mar 26 17:28:14 archaic systemd[1]: Finished Permit User Sessions.
Mar 26 17:28:14 archaic systemd[1]: Started Getty on tty1.
Mar 26 17:28:14 archaic wpa_supplicant[468]: Successfully initialized wpa_supplicant
Mar 26 17:28:14 archaic systemd[1]: Reached target Login Prompts.
Mar 26 17:28:14 archaic systemd[1]: Reached target Multi-User System.
Mar 26 17:28:14 archaic systemd[1]: Reached target Graphical Interface.
Mar 26 17:28:14 archaic systemd[1]: Startup finished in 17.534s (firmware) + 4.148s (loader) + 1.854s (kernel) + 31.480s (userspace) = 55.017s.
Mar 26 17:28:14 archaic kernel: usbcore: registered new interface driver btusb
Mar 26 17:28:14 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.5' (uid=0 pid=472 comm="/bin/login -f    ")
Mar 26 17:28:14 archaic dbus-daemon[441]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 26 17:28:14 archaic login[472]: pam_systemd_home(login:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 26 17:28:14 archaic kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input11
Mar 26 17:28:14 archaic kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
Mar 26 17:28:14 archaic kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
Mar 26 17:28:14 archaic kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC3235: line_outs=1 (0x16/0x0/0x0/0x0/0x0) type:line
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:      Headset Mic=0x1a
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:      Dock Mic=0x19
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:      Headphone Mic=0x18
Mar 26 17:28:14 archaic kernel: snd_hda_codec_realtek hdaudioC0D0:      Internal Mic=0x13
Mar 26 17:28:14 archaic login[472]: pam_unix(login:session): session opened for user rep(uid=1000) by LOGIN(uid=0)
Mar 26 17:28:14 archaic systemd[1]: Reached target Bluetooth Support.
Mar 26 17:28:14 archaic kernel: dell_laptop: Using i8042 filter function for receiving events
Mar 26 17:28:14 archaic mtp-probe[480]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3"
Mar 26 17:28:14 archaic kernel: Bluetooth: hci0: Found device firmware: intel/ibt-18-16-1.sfi
Mar 26 17:28:14 archaic kernel: Bluetooth: hci0: Boot Address: 0x40800
Mar 26 17:28:14 archaic kernel: Bluetooth: hci0: Firmware Version: 174-4.22
Mar 26 17:28:14 archaic kernel: Bluetooth: hci0: Firmware already loaded
Mar 26 17:28:14 archaic mtp-probe[478]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11"
Mar 26 17:28:14 archaic mtp-probe[478]: bus: 1, device: 5 was not an MTP device
Mar 26 17:28:14 archaic mtp-probe[477]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10"
Mar 26 17:28:14 archaic mtp-probe[480]: bus: 1, device: 2 was not an MTP device
Mar 26 17:28:14 archaic systemd-logind[457]: New session 1 of user rep.
Mar 26 17:28:14 archaic systemd[1]: Created slice User Slice of UID 1000.
Mar 26 17:28:14 archaic systemd[1]: Reached target Sound Card.
Mar 26 17:28:14 archaic systemd[1]: Starting User Runtime Directory /run/user/1000...
Mar 26 17:28:14 archaic systemd[1]: Finished User Runtime Directory /run/user/1000.
Mar 26 17:28:14 archaic systemd[1]: Starting User Manager for UID 1000...
Mar 26 17:28:14 archaic mtp-probe[477]: bus: 1, device: 4 was not an MTP device
Mar 26 17:28:14 archaic systemd[1]: Reached target Smart Card.
Mar 26 17:28:14 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.home1' unit='dbus-org.freedesktop.home1.service' requested by ':1.7' (uid=0 pid=488 comm="(systemd)")
Mar 26 17:28:14 archaic dbus-daemon[441]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.home1.service': Unit dbus-org.freedesktop.home1.service not found.
Mar 26 17:28:14 archaic systemd[488]: pam_systemd_home(systemd-user:account): systemd-homed is not available: Unit dbus-org.freedesktop.home1.service not found.
Mar 26 17:28:14 archaic kernel: mc: Linux media interface: v0.10
Mar 26 17:28:14 archaic mtp-probe[493]: checking bus 1, device 4: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-10"
Mar 26 17:28:14 archaic systemd[488]: pam_warn(systemd-user:setcred): function=[pam_sm_setcred] flags=0x8002 service=[systemd-user] terminal=[] user=[rep] ruser=[<unknown>] rhost=[<unknown>]
Mar 26 17:28:14 archaic kernel: input: Liteon Dell Wireless Mouse WM118 Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input15
Mar 26 17:28:14 archaic systemd[488]: pam_unix(systemd-user:session): session opened for user rep(uid=1000) by (uid=0)
Mar 26 17:28:14 archaic systemd[488]: pam_env(systemd-user:session): deprecated reading of user environment enabled
Mar 26 17:28:14 archaic kernel: input: Liteon Dell Wireless Mouse WM118 Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input16
Mar 26 17:28:14 archaic kernel: videodev: Linux video capture interface: v2.00
Mar 26 17:28:14 archaic systemd-networkd[300]: wlan0: Link UP
Mar 26 17:28:14 archaic kernel: input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
Mar 26 17:28:14 archaic kernel: intel_tcc_cooling: Programmable TCC Offset detected
Mar 26 17:28:14 archaic wpa_supplicant[468]: wlan0: CTRL-EVENT-REGDOM-CHANGE init=DRIVER type=WORLD
Mar 26 17:28:14 archaic kernel: usb 1-11: Found UVC 1.00 device Integrated_Webcam_HD (1bcf:2b91)
Mar 26 17:28:14 archaic kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input19
Mar 26 17:28:14 archaic kernel: input: Liteon Dell Wireless Mouse WM118 System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input17
Mar 26 17:28:14 archaic kernel: input: HDA Intel PCH Dock Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input20
Mar 26 17:28:14 archaic kernel: hid-generic 0003:04CA:00A8.0001: input,hiddev96,hidraw0: USB HID v1.11 Mouse [Liteon Dell Wireless Mouse WM118] on usb-0000:00:14.0-3/input0
Mar 26 17:28:14 archaic kernel: usbcore: registered new interface driver usbhid
Mar 26 17:28:14 archaic kernel: usbhid: USB HID core driver
Mar 26 17:28:14 archaic mtp-probe[493]: bus: 1, device: 4 was not an MTP device
Mar 26 17:28:14 archaic kernel: input: Integrated_Webcam_HD: Integrate as /devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input21
Mar 26 17:28:14 archaic kernel: usbcore: registered new interface driver uvcvideo
Mar 26 17:28:14 archaic kernel: mousedev: PS/2 mouse device common for all mice
Mar 26 17:28:14 archaic mtp-probe[503]: checking bus 1, device 5: "/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11"
Mar 26 17:28:14 archaic mtp-probe[503]: bus: 1, device: 5 was not an MTP device
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event18 (Liteon Dell Wireless Mouse WM118 System Control)
Mar 26 17:28:14 archaic systemd-logind[457]: Watching system buttons on /dev/input/event14 (Liteon Dell Wireless Mouse WM118 Consumer Control)
Mar 26 17:28:14 archaic systemd[488]: Queued start job for default target Main User Target.
Mar 26 17:28:14 archaic systemd[488]: Requested transaction contradicts existing jobs: Resource deadlock avoided
Mar 26 17:28:14 archaic systemd[488]: Created slice User Application Slice.
Mar 26 17:28:14 archaic systemd[488]: Reached target Paths.
Mar 26 17:28:14 archaic systemd[488]: Reached target Timers.
Mar 26 17:28:14 archaic systemd[488]: Starting D-Bus User Message Bus Socket...
Mar 26 17:28:14 archaic systemd[488]: Listening on GnuPG network certificate management daemon.
Mar 26 17:28:14 archaic systemd[488]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Mar 26 17:28:14 archaic systemd[488]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Mar 26 17:28:14 archaic systemd[488]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Mar 26 17:28:14 archaic systemd[488]: Listening on GnuPG cryptographic agent and passphrase cache.
Mar 26 17:28:14 archaic systemd[488]: Listening on p11-kit server.
Mar 26 17:28:14 archaic systemd[488]: Listening on PipeWire Multimedia System Socket.
Mar 26 17:28:14 archaic systemd[488]: Listening on Sound System.
Mar 26 17:28:14 archaic systemd[488]: Listening on D-Bus User Message Bus Socket.
Mar 26 17:28:14 archaic systemd[488]: Reached target Sockets.
Mar 26 17:28:14 archaic systemd[488]: Reached target Basic System.
Mar 26 17:28:14 archaic systemd[1]: Started User Manager for UID 1000.
Mar 26 17:28:14 archaic systemd[488]: Starting Update XDG user dir configuration...
Mar 26 17:28:14 archaic systemd[1]: Started Session 1 of User rep.
Mar 26 17:28:14 archaic login[472]: pam_env(login:session): deprecated reading of user environment enabled
Mar 26 17:28:14 archaic systemd[488]: Finished Update XDG user dir configuration.
Mar 26 17:28:14 archaic systemd[488]: Reached target Main User Target.
Mar 26 17:28:14 archaic systemd[488]: Startup finished in 466ms.
Mar 26 17:28:14 archaic login[472]: LOGIN ON tty1 BY rep
Mar 26 17:28:15 archaic kernel: input: AlpsPS/2 ALPS DualPoint Stick as /devices/platform/i8042/serio1/input/input22
Mar 26 17:28:15 archaic kernel: input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input9
Mar 26 17:28:15 archaic kernel: ACPI Warning: \_SB.PCI0.PEG0.PEGP._DSM: Argument #4 type mismatch - Found [Buffer], ACPI requires [Package] (20210930/nsarguments-61)
Mar 26 17:28:16 archaic kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Mar 26 17:28:16 archaic kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Mar 26 17:28:16 archaic systemd[488]: Created slice User Core Session Slice.
Mar 26 17:28:16 archaic systemd[488]: Starting D-Bus User Message Bus...
Mar 26 17:28:16 archaic systemd[488]: Started D-Bus User Message Bus.
Mar 26 17:28:16 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.freedesktop.systemd1'
Mar 26 17:28:16 archaic kernel: Bluetooth: hci0: setting interface failed (71)
Mar 26 17:28:17 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating service name='org.kde.KSplash' requested by ':1.2' (uid=1000 pid=736 comm="startplasma-x11")
Mar 26 17:28:17 archaic systemd[488]: Reloading.
Mar 26 17:28:17 archaic klauncher[759]: Connecting to deprecated signal QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
Mar 26 17:28:17 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.8' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:17 archaic systemd[488]: Starting User preferences database...
Mar 26 17:28:17 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'ca.desrt.dconf'
Mar 26 17:28:17 archaic systemd[488]: Started User preferences database.
Mar 26 17:28:17 archaic kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Mar 26 17:28:17 archaic kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Mar 26 17:28:17 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating via systemd: service name='org.kde.kglobalaccel' unit='plasma-kglobalaccel.service' requested by ':1.7' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:17 archaic systemd[488]: Created slice User Background Tasks Slice.
Mar 26 17:28:17 archaic systemd[488]: Starting KDE Global Shortcuts Server...
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.kde.kglobalaccel'
Mar 26 17:28:18 archaic systemd[488]: Started KDE Global Shortcuts Server.
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kactivitymanagerd.service' requested by ':1.7' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic systemd[488]: Starting KActivityManager Activity manager Service...
Mar 26 17:28:18 archaic wpa_supplicant[468]: wlan0: SME: Trying to authenticate with 00:04:95:ea:98:da (SSID='Reddwarf-5Ghz' freq=5320 MHz)
Mar 26 17:28:18 archaic kernel: wlan0: authenticate with 00:04:95:ea:98:da
Mar 26 17:28:18 archaic kernel: wlan0: send auth to 00:04:95:ea:98:da (try 1/3)
Mar 26 17:28:18 archaic wpa_supplicant[468]: wlan0: Trying to associate with 00:04:95:ea:98:da (SSID='Reddwarf-5Ghz' freq=5320 MHz)
Mar 26 17:28:18 archaic kernel: wlan0: authenticated
Mar 26 17:28:18 archaic kernel: wlan0: associate with 00:04:95:ea:98:da (try 1/3)
Mar 26 17:28:18 archaic kernel: wlan0: RX AssocResp from 00:04:95:ea:98:da (capab=0x11 status=0 aid=3)
Mar 26 17:28:18 archaic wpa_supplicant[468]: wlan0: Associated with 00:04:95:ea:98:da
Mar 26 17:28:18 archaic wpa_supplicant[468]: wlan0: CTRL-EVENT-SUBNET-STATUS-UPDATE status=0
Mar 26 17:28:18 archaic systemd-networkd[300]: wlan0: Connected WiFi access point: Reddwarf-5Ghz (00:04:95:ea:98:da)
Mar 26 17:28:18 archaic kernel: wlan0: associated
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating service name='org.freedesktop.Telepathy.AccountManager' requested by ':1.7' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic systemd[488]: Starting Sound Service...
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.freedesktop.Telepathy.AccountManager'
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.4' (uid=0 pid=457 comm="/usr/lib/systemd/systemd-logind")
Mar 26 17:28:18 archaic systemd[1]: Starting Authorization Manager...
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating service name='org.freedesktop.Telepathy.Client.KTp.Approver' requested by ':1.15' (uid=1000 pid=834 comm="/usr/lib/telepathy/mission-control-5")
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating service name='org.freedesktop.Telepathy.Client.KTp.KdedIntegrationModule' requested by ':1.15' (uid=1000 pid=834 comm="/usr/lib/telepathy/mission-control-5")
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.10' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.ModemManager1' unit='dbus-org.freedesktop.ModemManager1.service' requested by ':1.10' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.ModemManager1.service': Unit dbus-org.freedesktop.ModemManager1.service not found.
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service' requested by ':1.10' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic systemd[1]: Starting Disk Manager...
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.19' (uid=1000 pid=849 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo")
Mar 26 17:28:18 archaic systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Mar 26 17:28:18 archaic systemd[1]: Started RealtimeKit Scheduling Policy Service.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Successfully called chroot.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Successfully dropped privileges.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Successfully limited resources.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Canary thread running.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Running.
Mar 26 17:28:18 archaic udisksd[871]: udisks daemon version 2.9.4 starting
Mar 26 17:28:18 archaic rtkit-daemon[880]: Watchdog thread running.
Mar 26 17:28:18 archaic polkitd[860]: Started polkitd version 0.120
Mar 26 17:28:18 archaic polkitd[860]: Loading rules from directory /etc/polkit-1/rules.d
Mar 26 17:28:18 archaic polkitd[860]: Loading rules from directory /usr/share/polkit-1/rules.d
Mar 26 17:28:18 archaic polkitd[860]: Finished loading, compiling and executing 4 rules
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Mar 26 17:28:18 archaic systemd[1]: Started Authorization Manager.
Mar 26 17:28:18 archaic polkitd[860]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Mar 26 17:28:18 archaic wpa_supplicant[468]: wlan0: WPA: Key negotiation completed with 00:04:95:ea:98:da [PTK=CCMP GTK=CCMP]
Mar 26 17:28:18 archaic wpa_supplicant[468]: wlan0: CTRL-EVENT-CONNECTED - Connection to 00:04:95:ea:98:da completed [id=2 id_str=]
Mar 26 17:28:18 archaic systemd-networkd[300]: wlan0: Gained carrier
Mar 26 17:28:18 archaic rtkit-daemon[880]: Successfully made thread 849 of process 849 owned by '1000' high priority at nice level -11.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Supervising 1 threads of 1 processes of 1 users.
Mar 26 17:28:18 archaic polkitd[860]: Registered Authentication Agent for unix-session:1 (system bus name :1.18 [/usr/lib/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale en_US.UTF-8)
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.kde.ActivityManager'
Mar 26 17:28:18 archaic systemd[488]: Started KActivityManager Activity manager Service.
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.13' (uid=1000 pid=811 comm="/usr/lib/org_kde_powerdevil")
Mar 26 17:28:18 archaic systemd[1]: Starting Daemon for power management...
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Mar 26 17:28:18 archaic systemd[1]: Started Disk Manager.
Mar 26 17:28:18 archaic udisksd[871]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Mar 26 17:28:18 archaic systemd-networkd[300]: wlan0: DHCPv4 address 192.168.1.6/24, gateway 192.168.1.1 acquired from 192.168.1.1
Mar 26 17:28:18 archaic systemd-timesyncd[437]: Network configuration changed, trying to establish connection.
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating service name='org.freedesktop.Notifications' requested by ':1.25' (uid=1000 pid=832 comm="/usr/lib/kdeconnectd")
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.freedesktop.UPower'
Mar 26 17:28:18 archaic systemd[1]: Started Daemon for power management.
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.13' (uid=1000 pid=811 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.13' (uid=1000 pid=811 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper'
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.13' (uid=1000 pid=811 comm="/usr/lib/org_kde_powerdevil") (using servicehelper)
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.10' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.7' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activation via systemd failed for unit 'dbus-org.bluez.service': Unit dbus-org.bluez.service not found.
Mar 26 17:28:18 archaic systemd[488]: Starting Bluetooth OBEX service...
Mar 26 17:28:18 archaic obexd[955]: OBEX daemon 5.64
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.bluez.obex'
Mar 26 17:28:18 archaic systemd[488]: Started Bluetooth OBEX service.
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating via systemd: service name='org.kde.KScreen' unit='plasma-kscreen.service' requested by ':1.7' (uid=1000 pid=771 comm="/usr/bin/kded5")
Mar 26 17:28:18 archaic systemd[488]: Starting KScreen...
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating service name='org.kde.kded.smart' requested by ':1.10' (uid=1000 pid=771 comm="/usr/bin/kded5") (using servicehelper)
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.kde.KScreen'
Mar 26 17:28:18 archaic systemd[488]: Started KScreen.
Mar 26 17:28:18 archaic kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'org.kde.kded.smart'
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Connected output 543 to CRTC 536
Mar 26 17:28:18 archaic kernel: nvidia-modeset: WARNING: GPU:0: Unable to read EDID for display device DP-2
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: Detected XRandR 1.6
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: Event Base:  89
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: Event Error:  147
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.freedesktop.Telepathy.Client.KTp.Approver'
Mar 26 17:28:18 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.freedesktop.Telepathy.Client.KTp.KdedIntegrationModule'
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: XRandR::setConfig
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Requested screen size is QSize(1024, 768)
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Needed CRTCs:  1
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Actions to perform: 
                                                                Primary Output: true
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr:                 Old: 540 
                                                                        New: 543
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr:         Change Screen Size: false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr:         Disable outputs: false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr:         Change outputs: false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr:         Enable outputs: false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: RRSetOutputPrimary 
                                                                New primary: 543
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: XRandR::setConfig done!
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: RRNotify_OutputChange
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Timestamp:  34268
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Output:  540
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         CRTC:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Mode:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Rotation:  "Rotate_0"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Connection:  "Disconnected"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Subpixel Order:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: RRNotify_OutputChange
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Timestamp:  34268
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Output:  543
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         CRTC:  536
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Mode:  544
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Rotation:  "Rotate_0"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Connection:  "Connected"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Subpixel Order:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: RRScreenChangeNotify
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Timestamp:  34268
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Config_timestamp:  34268
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Window: 50331653
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Root: 588
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Rotation:  "Rotate_0"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Size ID: 0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Size:  1024 768
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         SizeMM:  347 260
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: RRNotify_OutputChange
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Timestamp:  34268
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Output:  540
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         CRTC:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Mode:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Rotation:  "Rotate_0"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Connection:  "Disconnected"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Subpixel Order:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper: RRNotify_OutputChange
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Timestamp:  34268
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Output:  543
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         CRTC:  536
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Mode:  544
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Rotation:  "Rotate_0"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Connection:  "Connected"
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xcb.helper:         Subpixel Order:  0
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: XRandROutput 540 update 
                                                                m_connected: 1 
                                                                m_crtc QObject(0x0) 
                                                                CRTC: 0 
                                                                MODE: 0 
                                                                Connection: 1 
                                                                Primary: false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Output 540 : connected = false , enabled = false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: XRandROutput 543 update 
                                                                m_connected: 0 
                                                                m_crtc XRandRCrtc(0x5580c388ca50) 
                                                                CRTC: 536 
                                                                MODE: 544 
                                                                Connection: 0 
                                                                Primary: true
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Output 543 : connected = true , enabled = true
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: XRandROutput 540 update 
                                                                m_connected: 1 
                                                                m_crtc QObject(0x0) 
                                                                CRTC: 0 
                                                                MODE: 0 
                                                                Connection: 1 
                                                                Primary: false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Output 540 : connected = false , enabled = false
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: XRandROutput 543 update 
                                                                m_connected: 0 
                                                                m_crtc XRandRCrtc(0x5580c388ca50) 
                                                                CRTC: 536 
                                                                MODE: 544 
                                                                Connection: 0 
                                                                Primary: true
Mar 26 17:28:18 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Output 543 : connected = true , enabled = true
Mar 26 17:28:18 archaic rtkit-daemon[880]: Supervising 1 threads of 1 processes of 1 users.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Successfully made thread 970 of process 849 owned by '1000' RT at priority 5.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Supervising 2 threads of 1 processes of 1 users.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Supervising 2 threads of 1 processes of 1 users.
Mar 26 17:28:18 archaic systemd-timesyncd[437]: Initial synchronization to time server 192.46.215.60:123 (0.arch.pool.ntp.org).
Mar 26 17:28:18 archaic rtkit-daemon[880]: Successfully made thread 971 of process 849 owned by '1000' RT at priority 5.
Mar 26 17:28:18 archaic rtkit-daemon[880]: Supervising 3 threads of 1 processes of 1 users.
Mar 26 17:28:18 archaic pulseaudio[849]: stat('/etc/pulse/default.pa.d'): No such file or directory
Mar 26 17:28:18 archaic systemd[488]: Started Sound Service.
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Activating via systemd: service name='net.hadess.PowerProfiles' unit='power-profiles-daemon.service' requested by ':1.13' (uid=1000 pid=811 comm="/usr/lib/org_kde_powerdevil")
Mar 26 17:28:18 archaic systemd[1]: Starting Power Profiles daemon...
Mar 26 17:28:18 archaic dbus-daemon[441]: [system] Successfully activated service 'net.hadess.PowerProfiles'
Mar 26 17:28:18 archaic systemd[1]: Started Power Profiles daemon.
Mar 26 17:28:19 archaic kscreen_backend_launcher[956]: kscreen.xrandr: Emitting configChanged()
Mar 26 17:28:20 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.freedesktop.Notifications'
Mar 26 17:28:34 archaic dbus-daemon[739]: [session uid=1000 pid=739] Activating via systemd: service name='org.kde.krunner' unit='plasma-krunner.service' requested by ':1.11' (uid=1000 pid=805 comm="/usr/bin/kglobalaccel5")
Mar 26 17:28:34 archaic systemd[488]: Starting KRunner...
Mar 26 17:28:34 archaic dbus-daemon[739]: [session uid=1000 pid=739] Successfully activated service 'org.kde.krunner'
Mar 26 17:28:34 archaic systemd[488]: Started KRunner.
Mar 26 17:28:34 archaic krunner[1040]: QCommandLineParser: argument list cannot be empty, it should contain at least the executable name
Mar 26 17:28:34 archaic krunner[1040]: QCommandLineParser: argument list cannot be empty, it should contain at least the executable name

Offline

#21 2022-03-27 07:55:17

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

nvidia: Process '/usr/bin/bash -c '/usr/bin/mknod -Z -m 666 /dev/nvidiactl c $(grep nvidia-frontend /proc/devices | cut -d \  -f 1) 255'' failed with exit code 1.

Is super common,

stat /dev/nvidiactl

will likely reveal that it meanwhile exists and I assume restarting the X11 server doesn't show the output either? (iirc we tried the delay before)

Did you try to combine providing the EDID w/ the configlet to definet dfp-2 as connected?

Online

#22 2022-03-28 07:49:38

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

I added the EDID data thus :

Section "Device"
  Identifier     "Default nvidia device"
  Driver         "nvidia"
  Option         "ConnectedMonitor" "DFP-2"
  Option         "CustomEDID" "DFP-2:/etc/X11/sharp.edid"
  Option         "UseEDID" "true"
EndSection

Now the Xorg log file is almost identical to my working install - it chooses the right mode etc.
it should be working, but its still goes blank.

[     3.889] 
X.Org X Server 1.21.1.3
X Protocol Version 11, Revision 0
[     3.889] Current Operating System: Linux archaic 5.16.16-arch1-1 #1 SMP PREEMPT Mon, 21 Mar 2022 22:59:40 +0000 x86_64
[     3.889] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root="LABEL=ARCH2" rw audit=0  net.ifnames=0  ipv6.disable=1 libahci.ignore_sss=1 nomodeset i915.modeset=0 nouveau.modeset=0
[     3.889]  
[     3.889] Current version of pixman: 0.40.0
[     3.889] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[     3.889] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[     3.889] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Mar 26 23:39:24 2022
[     3.890] (==) Using config directory: "/etc/X11/xorg.conf.d"
[     3.890] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[     3.891] (==) No Layout section.  Using the first Screen section.
[     3.891] (==) No screen section available. Using defaults.
[     3.891] (**) |-->Screen "Default Screen Section" (0)
[     3.891] (**) |   |-->Monitor "<default monitor>"
[     3.891] (==) No device specified for screen "Default Screen Section".
	Using the first device section listed.
[     3.891] (**) |   |-->Device "nvidia"
[     3.891] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[     3.891] (==) Automatically adding devices
[     3.891] (==) Automatically enabling devices
[     3.891] (==) Automatically adding GPU devices
[     3.891] (==) Automatically binding GPU devices
[     3.891] (==) Max clients allowed: 256, resource mask: 0x1fffff
[     3.891] (WW) The directory "/usr/share/fonts/misc" does not exist.
[     3.891] 	Entry deleted from font path.
[     3.892] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[     3.892] 	Entry deleted from font path.
[     3.892] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[     3.892] 	Entry deleted from font path.
[     3.894] (==) FontPath set to:
	/usr/share/fonts/TTF,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[     3.894] (==) ModulePath set to "/usr/lib/xorg/modules"
[     3.894] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[     3.894] (II) Module ABI versions:
[     3.894] 	X.Org ANSI C Emulation: 0.4
[     3.894] 	X.Org Video Driver: 25.2
[     3.894] 	X.Org XInput driver : 24.4
[     3.894] 	X.Org Server Extension : 10.0
[     3.895] (++) using VT number 1

[     3.897] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[     3.897] (II) xfree86: Adding drm device (/dev/dri/card0)
[     3.897] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card0
[     3.898] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 11 paused 0
[     3.900] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[     3.902] (--) PCI:*(1@0:0:0) 10de:13f8:1028:16da rev 161, Mem @ 0xdb000000/16777216, 0xb0000000/268435456, 0xc0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[     3.902] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[     3.902] (II) LoadModule: "glx"
[     3.903] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[     3.911] (II) Module glx: vendor="X.Org Foundation"
[     3.911] 	compiled for 1.21.1.3, module version = 1.0.0
[     3.911] 	ABI class: X.Org Server Extension, version 10.0
[     3.911] (II) LoadModule: "nvidia"
[     3.911] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[     3.919] (II) Module nvidia: vendor="NVIDIA Corporation"
[     3.919] 	compiled for 1.6.99.901, module version = 1.0.0
[     3.919] 	Module class: X.Org Video Driver
[     3.919] (II) NVIDIA dlloader X Driver  510.54  Tue Feb  8 04:38:00 UTC 2022
[     3.919] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[     3.919] (II) systemd-logind: releasing fd for 226:0
[     3.920] (II) Loading sub module "fb"
[     3.920] (II) LoadModule: "fb"
[     3.920] (II) Module "fb" already built-in
[     3.920] (II) Loading sub module "wfb"
[     3.920] (II) LoadModule: "wfb"
[     3.920] (II) Loading /usr/lib/xorg/modules/libwfb.so
[     3.921] (II) Module wfb: vendor="X.Org Foundation"
[     3.921] 	compiled for 1.21.1.3, module version = 1.0.0
[     3.921] 	ABI class: X.Org ANSI C Emulation, version 0.4
[     3.921] (II) Loading sub module "ramdac"
[     3.921] (II) LoadModule: "ramdac"
[     3.921] (II) Module "ramdac" already built-in
[     3.924] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[     3.924] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[     3.924] (==) NVIDIA(0): RGB weight 888
[     3.924] (==) NVIDIA(0): Default visual is TrueColor
[     3.924] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[     3.924] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[     3.924] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[     3.924] (**) NVIDIA(0): Option "UseEDID" "true"
[     3.924] (**) NVIDIA(0): Option "ConnectedMonitor" "DFP-2"
[     3.924] (**) NVIDIA(0): Option "CustomEDID" "DFP-2:/etc/X11/sharp.edid"
[     3.924] (**) NVIDIA(0): Enabling 2D acceleration
[     3.924] (**) NVIDIA(0): ConnectedMonitor string: "DFP-2"
[     3.925] (II) Loading sub module "glxserver_nvidia"
[     3.925] (II) LoadModule: "glxserver_nvidia"
[     3.925] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[     3.981] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[     3.981] 	compiled for 1.6.99.901, module version = 1.0.0
[     3.981] 	Module class: X.Org Server Extension
[     3.981] (II) NVIDIA GLX Module  510.54  Tue Feb  8 04:36:31 UTC 2022
[     3.981] (II) NVIDIA: The X server supports PRIME Render Offload.
[     4.615] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[     4.615] (--) NVIDIA(0):     CRT-0
[     4.615] (--) NVIDIA(0):     DFP-0
[     4.615] (--) NVIDIA(0):     DFP-1
[     4.615] (--) NVIDIA(0):     DFP-2 (boot)
[     4.615] (--) NVIDIA(0):     DFP-3
[     4.615] (--) NVIDIA(0):     DFP-4
[     4.615] (--) NVIDIA(0):     DFP-5
[     4.615] (--) NVIDIA(0):     DFP-6
[     4.615] (**) NVIDIA(0): Using ConnectedMonitor string "DFP-2".
[     4.616] (II) NVIDIA(0): NVIDIA GPU Quadro M5000M (GM204GL-A) at PCI:1:0:0 (GPU-0)
[     4.616] (--) NVIDIA(0): Memory: 8388608 kBytes
[     4.616] (--) NVIDIA(0): VideoBIOS: 84.04.3d.00.07
[     4.616] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[     4.616] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     4.616] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     4.616] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     4.616] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     4.616] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     4.616] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     4.616] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     4.616] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     4.616] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     4.616] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     4.616] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     4.616] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     4.616] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     4.616] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.616] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     4.616] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     4.616] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     4.616] (--) NVIDIA(GPU-0): 
[     4.617] (==) NVIDIA(0): 
[     4.617] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[     4.617] (==) NVIDIA(0):     will be used as the requested mode.
[     4.617] (==) NVIDIA(0): 
[     4.617] (II) NVIDIA(0): Validated MetaModes:
[     4.617] (II) NVIDIA(0):     "DFP-2:nvidia-auto-select"
[     4.617] (II) NVIDIA(0): Virtual screen size determined to be 3840 x 2160
[     4.621] (--) NVIDIA(0): DPI set to (256, 261); computed from "UseEdidDpi" X config
[     4.621] (--) NVIDIA(0):     option
[     4.621] (II) NVIDIA: Reserving 6144.00 MB of virtual memory for indirect memory
[     4.621] (II) NVIDIA:     access.
[     4.624] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[     4.624] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[     4.624] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[     4.624] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[     4.624] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[     4.624] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[     4.624] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[     4.624] (II) NVIDIA(0):     Config Options in the README.
[     4.643] (II) NVIDIA(0): Setting mode "DFP-2:nvidia-auto-select"
[     4.945] (==) NVIDIA(0): Disabling shared memory pixmaps
[     4.945] (==) NVIDIA(0): Backing store enabled
[     4.945] (==) NVIDIA(0): Silken mouse enabled
[     4.945] (==) NVIDIA(0): DPMS enabled
[     4.945] (II) Loading sub module "dri2"
[     4.945] (II) LoadModule: "dri2"
[     4.945] (II) Module "dri2" already built-in
[     4.945] (II) NVIDIA(0): [DRI2] Setup complete
[     4.945] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[     4.945] (II) Initializing extension Generic Event Extension
[     4.945] (II) Initializing extension SHAPE
[     4.946] (II) Initializing extension MIT-SHM
[     4.946] (II) Initializing extension XInputExtension
[     4.946] (II) Initializing extension XTEST
[     4.946] (II) Initializing extension BIG-REQUESTS
[     4.946] (II) Initializing extension SYNC
[     4.946] (II) Initializing extension XKEYBOARD
[     4.946] (II) Initializing extension XC-MISC
[     4.946] (II) Initializing extension SECURITY
[     4.946] (II) Initializing extension XFIXES
[     4.946] (II) Initializing extension RENDER
[     4.946] (II) Initializing extension RANDR
[     4.947] (II) Initializing extension COMPOSITE
[     4.947] (II) Initializing extension DAMAGE
[     4.947] (II) Initializing extension MIT-SCREEN-SAVER
[     4.947] (II) Initializing extension DOUBLE-BUFFER
[     4.947] (II) Initializing extension RECORD
[     4.947] (II) Initializing extension DPMS
[     4.947] (II) Initializing extension Present
[     4.947] (II) Initializing extension DRI3
[     4.947] (II) Initializing extension X-Resource
[     4.947] (II) Initializing extension XVideo
[     4.947] (II) Initializing extension XVideo-MotionCompensation
[     4.947] (II) Initializing extension GLX
[     4.947] (II) Initializing extension GLX
[     4.948] (II) Indirect GLX disabled.
[     4.948] (II) GLX: Another vendor is already registered for screen 0
[     4.948] (II) Initializing extension XFree86-VidModeExtension
[     4.948] (II) Initializing extension XFree86-DGA
[     4.948] (II) Initializing extension XFree86-DRI
[     4.948] (II) Initializing extension DRI2
[     4.948] (II) Initializing extension NV-GLX
[     4.948] (II) Initializing extension NV-CONTROL
[     4.948] (II) Initializing extension XINERAMA
[     5.026] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[     5.026] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.026] (II) LoadModule: "libinput"
[     5.026] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[     5.030] (II) Module libinput: vendor="X.Org Foundation"
[     5.030] 	compiled for 1.21.1.3, module version = 1.2.1
[     5.030] 	Module class: X.Org XInput Driver
[     5.030] 	ABI class: X.Org XInput driver, version 24.4
[     5.030] (II) Using input driver 'libinput' for 'Power Button'
[     5.031] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 39 paused 0
[     5.031] (**) Power Button: always reports core events
[     5.031] (**) Option "Device" "/dev/input/event3"
[     5.036] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.036] (II) event3  - Power Button: device is a keyboard
[     5.036] (II) event3  - Power Button: device removed
[     5.036] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event3"
[     5.036] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[     5.037] (II) event3  - Power Button: is tagged by udev as: Keyboard
[     5.037] (II) event3  - Power Button: device is a keyboard
[     5.037] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[     5.037] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[     5.037] (II) Using input driver 'libinput' for 'Video Bus'
[     5.038] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 42 paused 0
[     5.038] (**) Video Bus: always reports core events
[     5.038] (**) Option "Device" "/dev/input/event9"
[     5.039] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[     5.039] (II) event9  - Video Bus: device is a keyboard
[     5.039] (II) event9  - Video Bus: device removed
[     5.039] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:0a/LNXVIDEO:01/input/input10/event9"
[     5.039] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[     5.040] (II) event9  - Video Bus: is tagged by udev as: Keyboard
[     5.040] (II) event9  - Video Bus: device is a keyboard
[     5.040] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[     5.040] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[     5.040] (II) Using input driver 'libinput' for 'Power Button'
[     5.041] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 43 paused 0
[     5.041] (**) Power Button: always reports core events
[     5.041] (**) Option "Device" "/dev/input/event1"
[     5.041] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     5.042] (II) event1  - Power Button: device is a keyboard
[     5.042] (II) event1  - Power Button: device removed
[     5.042] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[     5.042] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[     5.042] (II) event1  - Power Button: is tagged by udev as: Keyboard
[     5.042] (II) event1  - Power Button: device is a keyboard
[     5.043] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[     5.043] (II) No input driver specified, ignoring this device.
[     5.043] (II) This device may have been added with another device file.
[     5.043] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[     5.043] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[     5.043] (II) Using input driver 'libinput' for 'Sleep Button'
[     5.044] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 44 paused 0
[     5.044] (**) Sleep Button: always reports core events
[     5.044] (**) Option "Device" "/dev/input/event2"
[     5.044] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     5.044] (II) event2  - Sleep Button: device is a keyboard
[     5.045] (II) event2  - Sleep Button: device removed
[     5.045] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[     5.045] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[     5.045] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[     5.045] (II) event2  - Sleep Button: device is a keyboard
[     5.046] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event11)
[     5.046] (II) No input driver specified, ignoring this device.
[     5.046] (II) This device may have been added with another device file.
[     5.046] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event12)
[     5.046] (II) No input driver specified, ignoring this device.
[     5.046] (II) This device may have been added with another device file.
[     5.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event13)
[     5.047] (II) No input driver specified, ignoring this device.
[     5.047] (II) This device may have been added with another device file.
[     5.047] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event14)
[     5.047] (II) No input driver specified, ignoring this device.
[     5.047] (II) This device may have been added with another device file.
[     5.047] (II) config/udev: Adding input device Integrated_Webcam_HD: Integrate (/dev/input/event19)
[     5.047] (**) Integrated_Webcam_HD: Integrate: Applying InputClass "libinput keyboard catchall"
[     5.047] (II) Using input driver 'libinput' for 'Integrated_Webcam_HD: Integrate'
[     5.048] (II) systemd-logind: got fd for /dev/input/event19 13:83 fd 45 paused 0
[     5.048] (**) Integrated_Webcam_HD: Integrate: always reports core events
[     5.048] (**) Option "Device" "/dev/input/event19"
[     5.049] (II) event19 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[     5.049] (II) event19 - Integrated_Webcam_HD: Integrate: device is a keyboard
[     5.049] (II) event19 - Integrated_Webcam_HD: Integrate: device removed
[     5.049] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11:1.0/input/input21/event19"
[     5.049] (II) XINPUT: Adding extended input device "Integrated_Webcam_HD: Integrate" (type: KEYBOARD, id 10)
[     5.050] (II) event19 - Integrated_Webcam_HD: Integrate: is tagged by udev as: Keyboard
[     5.050] (II) event19 - Integrated_Webcam_HD: Integrate: device is a keyboard
[     5.051] (II) config/udev: Adding input device Liteon Dell Wireless Mouse WM118 Mouse (/dev/input/event6)
[     5.051] (**) Liteon Dell Wireless Mouse WM118 Mouse: Applying InputClass "libinput pointer catchall"
[     5.051] (II) Using input driver 'libinput' for 'Liteon Dell Wireless Mouse WM118 Mouse'
[     5.051] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 46 paused 0
[     5.051] (**) Liteon Dell Wireless Mouse WM118 Mouse: always reports core events
[     5.051] (**) Option "Device" "/dev/input/event6"
[     5.052] (II) event6  - Liteon Dell Wireless Mouse WM118 Mouse: is tagged by udev as: Mouse
[     5.053] (II) event6  - Liteon Dell Wireless Mouse WM118 Mouse: device is a pointer
[     5.053] (II) event6  - Liteon Dell Wireless Mouse WM118 Mouse: device removed
[     5.053] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input7/event6"
[     5.053] (II) XINPUT: Adding extended input device "Liteon Dell Wireless Mouse WM118 Mouse" (type: MOUSE, id 11)
[     5.053] (**) Option "AccelerationScheme" "none"
[     5.053] (**) Liteon Dell Wireless Mouse WM118 Mouse: (accel) selected scheme none/0
[     5.053] (**) Liteon Dell Wireless Mouse WM118 Mouse: (accel) acceleration factor: 2.000
[     5.053] (**) Liteon Dell Wireless Mouse WM118 Mouse: (accel) acceleration threshold: 4
[     5.054] (II) event6  - Liteon Dell Wireless Mouse WM118 Mouse: is tagged by udev as: Mouse
[     5.054] (II) event6  - Liteon Dell Wireless Mouse WM118 Mouse: device is a pointer
[     5.055] (II) config/udev: Adding input device Liteon Dell Wireless Mouse WM118 Mouse (/dev/input/mouse0)
[     5.055] (II) No input driver specified, ignoring this device.
[     5.055] (II) This device may have been added with another device file.
[     5.055] (II) config/udev: Adding input device Liteon Dell Wireless Mouse WM118 Consumer Control (/dev/input/event7)
[     5.055] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.055] (II) Using input driver 'libinput' for 'Liteon Dell Wireless Mouse WM118 Consumer Control'
[     5.056] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 47 paused 0
[     5.056] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: always reports core events
[     5.056] (**) Option "Device" "/dev/input/event7"
[     5.057] (II) event7  - Liteon Dell Wireless Mouse WM118 Consumer Control: is tagged by udev as: Keyboard
[     5.057] (II) event7  - Liteon Dell Wireless Mouse WM118 Consumer Control: device is a keyboard
[     5.057] (II) event7  - Liteon Dell Wireless Mouse WM118 Consumer Control: device removed
[     5.057] (II) libinput: Liteon Dell Wireless Mouse WM118 Consumer Control: needs a virtual subdevice
[     5.057] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input8/event7"
[     5.057] (II) XINPUT: Adding extended input device "Liteon Dell Wireless Mouse WM118 Consumer Control" (type: MOUSE, id 12)
[     5.057] (**) Option "AccelerationScheme" "none"
[     5.057] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: (accel) selected scheme none/0
[     5.057] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: (accel) acceleration factor: 2.000
[     5.057] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: (accel) acceleration threshold: 4
[     5.058] (II) event7  - Liteon Dell Wireless Mouse WM118 Consumer Control: is tagged by udev as: Keyboard
[     5.058] (II) event7  - Liteon Dell Wireless Mouse WM118 Consumer Control: device is a keyboard
[     5.059] (II) config/udev: Adding input device Liteon Dell Wireless Mouse WM118 System Control (/dev/input/event8)
[     5.059] (**) Liteon Dell Wireless Mouse WM118 System Control: Applying InputClass "libinput keyboard catchall"
[     5.059] (II) Using input driver 'libinput' for 'Liteon Dell Wireless Mouse WM118 System Control'
[     5.060] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 48 paused 0
[     5.060] (**) Liteon Dell Wireless Mouse WM118 System Control: always reports core events
[     5.060] (**) Option "Device" "/dev/input/event8"
[     5.061] (II) event8  - Liteon Dell Wireless Mouse WM118 System Control: is tagged by udev as: Keyboard
[     5.061] (II) event8  - Liteon Dell Wireless Mouse WM118 System Control: device is a keyboard
[     5.061] (II) event8  - Liteon Dell Wireless Mouse WM118 System Control: device removed
[     5.061] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input9/event8"
[     5.061] (II) XINPUT: Adding extended input device "Liteon Dell Wireless Mouse WM118 System Control" (type: KEYBOARD, id 13)
[     5.062] (II) event8  - Liteon Dell Wireless Mouse WM118 System Control: is tagged by udev as: Keyboard
[     5.062] (II) event8  - Liteon Dell Wireless Mouse WM118 System Control: device is a keyboard
[     5.063] (II) config/udev: Adding input device HDA Intel PCH Dock Mic (/dev/input/event16)
[     5.063] (II) No input driver specified, ignoring this device.
[     5.063] (II) This device may have been added with another device file.
[     5.063] (II) config/udev: Adding input device HDA Intel PCH Headphone Mic (/dev/input/event17)
[     5.063] (II) No input driver specified, ignoring this device.
[     5.063] (II) This device may have been added with another device file.
[     5.063] (II) config/udev: Adding input device HDA Intel PCH Dock Line Out (/dev/input/event18)
[     5.063] (II) No input driver specified, ignoring this device.
[     5.063] (II) This device may have been added with another device file.
[     5.064] (II) config/udev: Adding input device Dell WMI hotkeys (/dev/input/event15)
[     5.064] (**) Dell WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[     5.064] (II) Using input driver 'libinput' for 'Dell WMI hotkeys'
[     5.064] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 49 paused 0
[     5.064] (**) Dell WMI hotkeys: always reports core events
[     5.064] (**) Option "Device" "/dev/input/event15"
[     5.065] (II) event15 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[     5.065] (II) event15 - Dell WMI hotkeys: device is a keyboard
[     5.065] (II) event15 - Dell WMI hotkeys: device removed
[     5.065] (**) Option "config_info" "udev:/sys/devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input17/event15"
[     5.065] (II) XINPUT: Adding extended input device "Dell WMI hotkeys" (type: KEYBOARD, id 14)
[     5.066] (II) event15 - Dell WMI hotkeys: is tagged by udev as: Keyboard
[     5.066] (II) event15 - Dell WMI hotkeys: device is a keyboard
[     5.067] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[     5.067] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[     5.067] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[     5.067] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 50 paused 0
[     5.067] (**) AT Translated Set 2 keyboard: always reports core events
[     5.067] (**) Option "Device" "/dev/input/event4"
[     5.068] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.068] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.069] (II) event4  - AT Translated Set 2 keyboard: device removed
[     5.069] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[     5.069] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 15)
[     5.070] (II) event4  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[     5.070] (II) event4  - AT Translated Set 2 keyboard: device is a keyboard
[     5.071] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/event21)
[     5.071] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.071] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint TouchPad'
[     5.071] (II) systemd-logind: got fd for /dev/input/event21 13:85 fd 51 paused 0
[     5.071] (**) AlpsPS/2 ALPS DualPoint TouchPad: always reports core events
[     5.071] (**) Option "Device" "/dev/input/event21"
[     5.072] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     5.073] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     5.073] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[     5.073] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input12/event21"
[     5.073] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint TouchPad" (type: TOUCHPAD, id 16)
[     5.073] (**) Option "AccelerationScheme" "none"
[     5.073] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) selected scheme none/0
[     5.073] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration factor: 2.000
[     5.073] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration threshold: 4
[     5.074] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     5.075] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     5.075] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/mouse2)
[     5.075] (II) No input driver specified, ignoring this device.
[     5.075] (II) This device may have been added with another device file.
[     5.076] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/event20)
[     5.076] (**) AlpsPS/2 ALPS DualPoint Stick: Applying InputClass "libinput pointer catchall"
[     5.076] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint Stick'
[     5.076] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 52 paused 0
[     5.076] (**) AlpsPS/2 ALPS DualPoint Stick: always reports core events
[     5.076] (**) Option "Device" "/dev/input/event20"
[     5.077] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     5.077] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     5.077] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     5.078] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device removed
[     5.078] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input22/event20"
[     5.078] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint Stick" (type: MOUSE, id 17)
[     5.078] (**) Option "AccelerationScheme" "none"
[     5.078] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) selected scheme none/0
[     5.078] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration factor: 2.000
[     5.078] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration threshold: 4
[     5.079] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     5.079] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     5.079] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     5.080] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/mouse1)
[     5.080] (II) No input driver specified, ignoring this device.
[     5.080] (II) This device may have been added with another device file.
[     5.080] (II) config/udev: Adding input device PC Speaker (/dev/input/event10)
[     5.080] (II) No input driver specified, ignoring this device.
[     5.080] (II) This device may have been added with another device file.
[     5.082] (II) config/udev: Adding input device DELL Wireless hotkeys (/dev/input/event5)
[     5.082] (**) DELL Wireless hotkeys: Applying InputClass "libinput keyboard catchall"
[     5.082] (II) Using input driver 'libinput' for 'DELL Wireless hotkeys'
[     5.083] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 53 paused 0
[     5.083] (**) DELL Wireless hotkeys: always reports core events
[     5.083] (**) Option "Device" "/dev/input/event5"
[     5.083] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[     5.083] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[     5.084] (II) event5  - DELL Wireless hotkeys: device removed
[     5.084] (**) Option "config_info" "udev:/sys/devices/virtual/input/input6/event5"
[     5.084] (II) XINPUT: Adding extended input device "DELL Wireless hotkeys" (type: KEYBOARD, id 18)
[     5.084] (II) event5  - DELL Wireless hotkeys: is tagged by udev as: Keyboard
[     5.084] (II) event5  - DELL Wireless hotkeys: device is a keyboard
[     5.088] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: Applying InputClass "libinput keyboard catchall"
[     5.088] (II) Using input driver 'libinput' for 'Liteon Dell Wireless Mouse WM118 Consumer Control'
[     5.088] (II) systemd-logind: returning pre-existing fd for /dev/input/event7 13:71
[     5.088] (**) Liteon Dell Wireless Mouse WM118 Consumer Control: always reports core events
[     5.088] (**) Option "Device" "/dev/input/event7"
[     5.088] (II) libinput: Liteon Dell Wireless Mouse WM118 Consumer Control: is a virtual subdevice
[     5.088] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3:1.0/0003:04CA:00A8.0001/input/input8/event7"
[     5.088] (II) XINPUT: Adding extended input device "Liteon Dell Wireless Mouse WM118 Consumer Control" (type: KEYBOARD, id 19)
[     5.088] (II) config/udev: removing device AlpsPS/2 ALPS DualPoint Stick
[     5.089] (**) Option "fd" "52"
[     5.089] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device removed
[     5.089] (II) UnloadModule: "libinput"
[     5.089] (II) systemd-logind: releasing fd for 13:84
[     5.149] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint Stick (/dev/input/event20)
[     5.149] (**) AlpsPS/2 ALPS DualPoint Stick: Applying InputClass "libinput pointer catchall"
[     5.149] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint Stick'
[     5.149] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 41 paused 0
[     5.150] (**) AlpsPS/2 ALPS DualPoint Stick: always reports core events
[     5.150] (**) Option "Device" "/dev/input/event20"
[     5.151] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     5.151] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     5.151] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     5.153] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device removed
[     5.153] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input22/event20"
[     5.153] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint Stick" (type: MOUSE, id 17)
[     5.153] (**) Option "AccelerationScheme" "none"
[     5.153] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) selected scheme none/0
[     5.153] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration factor: 2.000
[     5.153] (**) AlpsPS/2 ALPS DualPoint Stick: (accel) acceleration threshold: 4
[     5.154] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: is tagged by udev as: Mouse Pointingstick
[     5.154] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: trackpoint multiplier is 0.12
[     5.154] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device is a pointer
[     5.156] (II) config/udev: removing device AlpsPS/2 ALPS DualPoint TouchPad
[     5.157] (**) Option "fd" "51"
[     5.157] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[     5.157] (II) UnloadModule: "libinput"
[     5.157] (II) systemd-logind: releasing fd for 13:85
[     5.219] (II) config/udev: Adding input device AlpsPS/2 ALPS DualPoint TouchPad (/dev/input/event21)
[     5.219] (**) AlpsPS/2 ALPS DualPoint TouchPad: Applying InputClass "libinput touchpad catchall"
[     5.219] (II) Using input driver 'libinput' for 'AlpsPS/2 ALPS DualPoint TouchPad'
[     5.220] (II) systemd-logind: got fd for /dev/input/event21 13:85 fd 52 paused 0
[     5.221] (**) AlpsPS/2 ALPS DualPoint TouchPad: always reports core events
[     5.221] (**) Option "Device" "/dev/input/event21"
[     5.223] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     5.225] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     5.226] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[     5.226] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input12/event21"
[     5.227] (II) XINPUT: Adding extended input device "AlpsPS/2 ALPS DualPoint TouchPad" (type: TOUCHPAD, id 16)
[     5.228] (**) Option "AccelerationScheme" "none"
[     5.228] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) selected scheme none/0
[     5.228] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration factor: 2.000
[     5.228] (**) AlpsPS/2 ALPS DualPoint TouchPad: (accel) acceleration threshold: 4
[     5.230] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: is tagged by udev as: Touchpad
[     5.233] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device is a touchpad
[     6.633] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     6.633] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     6.633] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     6.633] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     6.633] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     6.633] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     6.633] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     6.633] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     6.633] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     6.633] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     6.633] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     6.633] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     6.633] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     6.633] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     6.633] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     6.633] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     6.633] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     6.633] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): CRT-0: disconnected
[     7.307] (--) NVIDIA(GPU-0): CRT-0: 400.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): DFP-0: disconnected
[     7.307] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[     7.307] (--) NVIDIA(GPU-0): DFP-0: 960.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): DFP-1: disconnected
[     7.307] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[     7.307] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): Sharp (DFP-2): connected
[     7.307] (--) NVIDIA(GPU-0): Sharp (DFP-2): Internal DisplayPort
[     7.307] (--) NVIDIA(GPU-0): Sharp (DFP-2): 960.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): DFP-3: disconnected
[     7.307] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[     7.307] (--) NVIDIA(GPU-0): DFP-3: 960.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): DFP-4: disconnected
[     7.307] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[     7.307] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): DFP-5: disconnected
[     7.307] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[     7.307] (--) NVIDIA(GPU-0): DFP-5: 960.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[     7.307] (--) NVIDIA(GPU-0): DFP-6: disconnected
[     7.307] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[     7.307] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[     7.307] (--) NVIDIA(GPU-0): 
[    56.223] (**) Option "fd" "39"
[    56.223] (II) event3  - Power Button: device removed
[    56.223] (**) Option "fd" "42"
[    56.223] (II) event9  - Video Bus: device removed
[    56.223] (**) Option "fd" "43"
[    56.223] (II) event1  - Power Button: device removed
[    56.223] (**) Option "fd" "44"
[    56.223] (II) event2  - Sleep Button: device removed
[    56.223] (**) Option "fd" "45"
[    56.223] (II) event19 - Integrated_Webcam_HD: Integrate: device removed
[    56.223] (**) Option "fd" "46"
[    56.223] (II) event6  - Liteon Dell Wireless Mouse WM118 Mouse: device removed
[    56.223] (**) Option "fd" "47"
[    56.223] (**) Option "fd" "48"
[    56.223] (II) event8  - Liteon Dell Wireless Mouse WM118 System Control: device removed
[    56.223] (**) Option "fd" "49"
[    56.223] (II) event15 - Dell WMI hotkeys: device removed
[    56.223] (**) Option "fd" "50"
[    56.223] (II) event4  - AT Translated Set 2 keyboard: device removed
[    56.223] (**) Option "fd" "53"
[    56.223] (II) event5  - DELL Wireless hotkeys: device removed
[    56.223] (**) Option "fd" "47"
[    56.223] (II) event7  - Liteon Dell Wireless Mouse WM118 Consumer Control: device removed
[    56.223] (**) Option "fd" "41"
[    56.223] (II) event20 - AlpsPS/2 ALPS DualPoint Stick: device removed
[    56.224] (**) Option "fd" "52"
[    56.224] (II) event21 - AlpsPS/2 ALPS DualPoint TouchPad: device removed
[    56.226] (II) UnloadModule: "libinput"
[    56.227] (II) systemd-logind: releasing fd for 13:85
[    56.227] (II) UnloadModule: "libinput"
[    56.227] (II) systemd-logind: releasing fd for 13:84
[    56.227] (II) UnloadModule: "libinput"
[    56.227] (II) systemd-logind: not releasing fd for 13:71, still in use
[    56.228] (II) UnloadModule: "libinput"
[    56.228] (II) systemd-logind: releasing fd for 13:69
[    56.229] (II) UnloadModule: "libinput"
[    56.229] (II) systemd-logind: releasing fd for 13:68
[    56.230] (II) UnloadModule: "libinput"
[    56.230] (II) systemd-logind: releasing fd for 13:79
[    56.231] (II) UnloadModule: "libinput"
[    56.231] (II) systemd-logind: releasing fd for 13:72
[    56.232] (II) UnloadModule: "libinput"
[    56.232] (II) systemd-logind: releasing fd for 13:71
[    56.232] (II) UnloadModule: "libinput"
[    56.233] (II) systemd-logind: releasing fd for 13:70
[    56.233] (II) UnloadModule: "libinput"
[    56.233] (II) systemd-logind: releasing fd for 13:83
[    56.234] (II) UnloadModule: "libinput"
[    56.234] (II) systemd-logind: releasing fd for 13:66
[    56.234] (II) UnloadModule: "libinput"
[    56.234] (II) systemd-logind: releasing fd for 13:65
[    56.234] (II) UnloadModule: "libinput"
[    56.234] (II) systemd-logind: releasing fd for 13:73
[    56.235] (II) UnloadModule: "libinput"
[    56.235] (II) systemd-logind: releasing fd for 13:67
[    66.353] (II) NVIDIA(GPU-0): Deleting GPU-0
[    66.355] (II) Server terminated successfully (0). Closing log file.

After this I was mucking around with kernel parameters:

I tried adding nvidia-drm.modeset=1 and it instantly goes blank as soon as the kernel loads up.
The working installation doesnt bank out with this parameter - It does seems to flash one extra time as if the mode is being changed twice, but I am not so sure.

I tried the above with "console-mode 0" and "console-mode 1" for the boot loader - same issue
There seems to be some issue with mode setting, and specifically on kernel 5.13 onwards

At this point I'm even willing to look at the kernel diffs neutral



On an unrelated note, If I enable my onboard Intel GPU, it seems like the kernel boots up on that card first (the font is different looking), but it just hangs in text mode itself after X starts.
So I always keep it disabled (this used to work before kernel 5 as far as i can recall)

Offline

#23 2022-03-28 07:59:37

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 75,821

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

The intel chip probably "fails" because of the nvidia configlet (you run on the nvidia chip and need https://wiki.archlinux.org/title/PRIME#Reverse_PRIME )
Do you have an external monitor (hdmi is likely wired to the nvidia chip) available?

Also look out for BIOS updates for the device…

Online

#24 2022-03-28 10:33:19

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Thanks for your replies


This is a laptop, no external monitor, bios has one security update from Jan 2022 , which I havent applied yet, doesn't seem like it contains anything to do with the issues I have.

Everything was working with default settings (both GPU enabled, even with HDMI external monitor etc) when I migrated my Linux to this laptop (2020 or so)
It worked perfectly out of the box, from an M6800 laptop to this M7710 - I just copied the root partition from the old laptop to the new one and booted

I keep Intel disabled usually because the onboard chip is literally a sloth and there was no point of using both GPUs AFAIK - I enabled it just to experiment now, but I'm finding that it doesnt work, nor does it solve the problem in any way.

The fact that Kernel 5.12 + nvidia works regardless of any kernel parameter , and the fact that I can't upgrade nvidia on this kernel means somethings changed in the KMS, or whatever graphics/console related code thats in the kernel

My main issue is not being able to update the kernel, I dont mind if the nvidia version never updates after this

The next step is probably to diff the kernel sources between 5.12.9 and 5.13.x

BTW I did try linux-lts and nvidia-lts to no avail too

Offline

#25 2022-03-28 10:34:00

rep_movsd
Member
Registered: 2013-08-24
Posts: 148

Re: Nvidia version > 465.24 and Linux kernel version > 5.12 failure

Maybe i will try connecting an external monitor and see if anything shows up, i have to unbox it and check

Offline

Board footer

Powered by FluxBB