You are not logged in.

#1 2021-06-24 23:34:09

Smoorg
Member
Registered: 2021-06-24
Posts: 1

Freezing X session, xrandr: Can't open display, NVIDIA 2070

Hi,

After upgrading nvidia drivers to 465.31-10 I started to have issues with X session. Specifically the screen freezes. I use dwm so I can tell that my buttons do work (I have power button set to hibernate in dwm's config.h so this is how I can tell). I had no issues before and nvidia-dkms seem to build dependencies fine. I had some crashes of X before but then rollback to previous version of either linux kernel on nvidia worked. Now same thing happens no matter if I use nvidia-lts & linux lts or nvidia along with linux (or even linux-zen) so I don't think this is about drivers. I never had freezing X session that "works" behind. Anyone can tell where to look the issue?

What I tried:
- rollback kernel or change to linux-zen
- use nvidia-lts along with linux-lts
- uninstall kernel & nvidia packages to force nvidia-dkms to reinstall everything

For reference I do  have NVIDIA GeForce 2070 and it's a workstation PC not a laptop so this is likely not related to any Optimus setup I could find around the internet. This is the only graphic card I have in this device. My assumption is this 10-nvidia-drm-outputclass.conf is trying to locate some xorg module and fails to find it but that's my blind shot. I have no idea how to debug that so I enclose dmesg, my xinitrc, Xorg logs below.

Your help would be most appreciated.

$ cat /usr/share/X11/xorg.conf.d/10-nvidia-drm-outputclass.conf 
Section "OutputClass"
    Identifier "nvidia"
    #MatchDriver "nvidia-drm"
    Driver "nvidia"
    #Option "AllowEmptyInitialConfiguration"
    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

$ ls /usr/lib/nvidia/xorg
libglxserver_nvidia.so@  libglxserver_nvidia.so.1@  libglxserver_nvidia.so.465.31*

$ ls /usr/lib/xorg/modules
drivers/  extensions/  input/  libexa.so*  libfbdevhw.so*  libfb.so*  libglamoregl.so*  libint10.so*  libshadowfb.so*  libshadow.so*  libvbe.so*  libvgahw.so*  libwfb.so*
$ 

/etc/X11/xorg.conf

# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 465.31

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "Files"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Kernel version

$ uname -r
5.12.12-arch1-1

xinitrc

#!/bin/sh
setxkbmap pl
# dirs

#source $HOME/.bashrc

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
xbindkeys=$XDG_CONFIG_HOME/xbindkeys/config

[ -f $sysresources ] 	&& xrdb -merge $sysresources
[ -f $sysmodmap ] 	&& xmodmap $sysmodmap
[ -f "$userresources" ] && xrdb -merge "$userresources"
[ -f "$usermodmap" ]	&& xmodmap "$usermodmap"
[ -f "$xbindkeys" ]	&& xbindkeys -f $xbindkeys

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

# notifications process
dunst > /dev/null 2>&1 &

# start bluetooth
bluetoothctl power on

# transparency
xcompmgr &

dwmblocks &

# window manager
exec /usr/local/bin/dwm

dmesg:

$ sudo dmesg | grep -E 'nvidia|NV|drm|HDMI|VGA|kernel'
[    0.000000] BIOS-e820: [mem 0x000000000a200000-0x000000000a20afff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000cb708000-0x00000000cce06fff] ACPI NVS
[    0.034734] Booting paravirtualized kernel on bare hardware
[    0.076737] Memory: 16212652K/16701688K available (14344K kernel code, 2040K rwdata, 8988K rodata, 1652K init, 4372K bss, 488776K reserved, 0K cma-reserved)
[    0.253663] PM: Registering ACPI NVS region [mem 0x0a200000-0x0a20afff] (45056 bytes)
[    0.253663] PM: Registering ACPI NVS region [mem 0xcb708000-0xcce06fff] (24113152 bytes)
[    0.254630] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.290985] pci 0000:2b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=none,locks=none
[    0.290985] pci 0000:2b:00.0: vgaarb: setting as boot device (VGA legacy resources not available)
[    0.383707] Loaded X.509 cert 'Build time autogenerated kernel key: f8b816f3341faee4e035996eff193648c7b6bebf'
[    2.628880] Freeing unused kernel image (initmem) memory: 1652K
[    2.628883] Write protecting the kernel read-only data: 26624k
[    2.629284] Freeing unused kernel image (text/rodata gap) memory: 2036K
[    2.629505] Freeing unused kernel image (rodata/data gap) memory: 1252K
[    3.527590] systemd[1]: Starting Create list of static device nodes for the current kernel...
[    3.528454] systemd[1]: Starting Load Kernel Module drm...
[    3.534253] systemd[1]: Finished Create list of static device nodes for the current kernel.
[    3.557137] systemd[1]: modprobe@drm.service: Deactivated successfully.
[    3.557252] systemd[1]: Finished Load Kernel Module drm.
[    3.557271] audit: type=1130 audit(1624572851.675:8): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.557275] audit: type=1131 audit(1624572851.675:9): pid=1 uid=0 auid=4294967295 ses=4294967295 msg='unit=modprobe@drm comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    3.657239] nvidia-gpu 0000:2b:00.3: enabling device (0000 -> 0002)
[    4.034360] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input3
[    4.034414] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input4
[    4.034459] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input5
[    4.034502] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input6
[    4.034546] input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input7
[    4.034588] input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input8
[    4.034627] input: HDA NVidia HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:03.1/0000:2b:00.1/sound/card0/input9
[    4.091593] MCE: In-kernel MCE decoding enabled.
[    4.514612] nvidia: loading out-of-tree module taints kernel.
[    4.514623] nvidia: module license 'NVIDIA' taints kernel.
[    4.514625] Disabling lock debugging due to kernel taint
[    4.606966] nvidia: module verification failed: signature and/or required key missing - tainting kernel
[    4.714239] nvidia-nvlink: Nvlink Core is being initialized, major device number 237
[    4.714803] nvidia 0000:2b:00.0: enabling device (0002 -> 0003)
[    4.714905] nvidia 0000:2b:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=none
[    4.831615] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  465.31  Thu May 13 22:24:36 UTC 2021
[    5.015516] nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  465.31  Thu May 13 22:14:23 UTC 2021
[    5.023950] [drm] [nvidia-drm] [GPU ID 0x00002b00] Loading driver
[    5.023953] [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:2b:00.0 on minor 0

Xorg.0.log

[    16.139] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[    16.139] 
X.Org X Server 1.20.11
X Protocol Version 11, Revision 0
[    16.140] Build Operating System: Linux Archlinux
[    16.140] Current Operating System: Linux pcmasterrace 5.12.12-arch1-1 #1 SMP PREEMPT Fri, 18 Jun 2021 21:59:22 +0000 x86_64
[    16.140] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=8af3227c-fbad-495c-9fe4-09b89de86cfa rw loglevel=3 quiet
[    16.140] Build Date: 13 April 2021  03:12:10PM
[    16.140]  
[    16.140] Current version of pixman: 0.40.0
[    16.140] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    16.140] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    16.140] (==) Log file: "/home/matr/.local/share/xorg/Xorg.0.log", Time: Fri Jun 25 00:57:45 2021
[    16.142] (==) Using config file: "/etc/X11/xorg.conf"
[    16.142] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    16.142] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    16.143] (==) ServerLayout "Layout0"
[    16.143] (**) |-->Screen "Screen0" (0)
[    16.143] (**) |   |-->Monitor "Monitor0"
[    16.143] (**) |   |-->Device "Device0"
[    16.143] (**) |   |-->GPUDevice "Device0"
[    16.143] (**) |-->Input Device "Keyboard0"
[    16.143] (**) |-->Input Device "Mouse0"
[    16.143] (==) Automatically adding devices
[    16.143] (==) Automatically enabling devices
[    16.143] (==) Automatically adding GPU devices
[    16.143] (==) Automatically binding GPU devices
[    16.143] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    16.144] (WW) The directory "/usr/share/fonts/misc" does not exist.
[    16.144] 	Entry deleted from font path.
[    16.144] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[    16.144] 	Entry deleted from font path.
[    16.144] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[    16.145] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF".
[    16.145] 	Entry deleted from font path.
[    16.145] 	(Run 'mkfontdir' on "/usr/share/fonts/OTF").
[    16.145] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    16.145] 	Entry deleted from font path.
[    16.145] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    16.145] 	Entry deleted from font path.
[    16.145] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    16.145] 	Entry deleted from font path.
[    16.145] (==) FontPath set to:
	
[    16.145] (==) ModulePath set to "/usr/lib/xorg/modules"
[    16.145] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    16.145] (WW) Disabling Keyboard0
[    16.145] (WW) Disabling Mouse0
[    16.145] (II) Module ABI versions:
[    16.145] 	X.Org ANSI C Emulation: 0.4
[    16.145] 	X.Org Video Driver: 24.1
[    16.145] 	X.Org XInput driver : 24.1
[    16.145] 	X.Org Server Extension : 10.0
[    16.145] (++) using VT number 1

[    16.147] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    16.147] (II) xfree86: Adding drm device (/dev/dri/card0)
[    16.148] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[    16.150] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    16.152] (--) PCI:*(43@0:0:0) 10de:1f07:1458:37ad rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[    16.152] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    16.152] (II) LoadModule: "glx"
[    16.154] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    16.162] (II) Module glx: vendor="X.Org Foundation"
[    16.162] 	compiled for 1.20.11, module version = 1.0.0
[    16.162] 	ABI class: X.Org Server Extension, version 10.0
[    16.162] (II) LoadModule: "nvidia"
[    16.162] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    16.166] (II) Module nvidia: vendor="NVIDIA Corporation"
[    16.166] 	compiled for 1.6.99.901, module version = 1.0.0
[    16.166] 	Module class: X.Org Video Driver
[    16.167] (II) NVIDIA dlloader X Driver  465.31  Thu May 13 22:19:15 UTC 2021
[    16.167] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    16.167] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[    16.167] (II) systemd-logind: releasing fd for 226:0
[    16.168] (II) Loading sub module "fb"
[    16.168] (II) LoadModule: "fb"
[    16.168] (II) Loading /usr/lib/xorg/modules/libfb.so
[    16.170] (II) Module fb: vendor="X.Org Foundation"
[    16.170] 	compiled for 1.20.11, module version = 1.0.0
[    16.170] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    16.170] (II) Loading sub module "wfb"
[    16.170] (II) LoadModule: "wfb"
[    16.170] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    16.172] (II) Module wfb: vendor="X.Org Foundation"
[    16.172] 	compiled for 1.20.11, module version = 1.0.0
[    16.172] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    16.172] (II) Loading sub module "ramdac"
[    16.172] (II) LoadModule: "ramdac"
[    16.172] (II) Module "ramdac" already built-in
[    16.175] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    16.175] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[    16.176] (==) NVIDIA(0): RGB weight 888
[    16.176] (==) NVIDIA(0): Default visual is TrueColor
[    16.176] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    16.176] (**) NVIDIA(0): Enabling 2D acceleration
[    16.176] (II) Loading sub module "glxserver_nvidia"
[    16.176] (II) LoadModule: "glxserver_nvidia"
[    16.176] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    16.208] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    16.208] 	compiled for 1.6.99.901, module version = 1.0.0
[    16.208] 	Module class: X.Org Server Extension
[    16.208] (II) NVIDIA GLX Module  465.31  Thu May 13 22:16:59 UTC 2021
[    16.210] (II) NVIDIA: The X server supports PRIME Render Offload.
[    17.065] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:43:0:0
[    17.065] (--) NVIDIA(0):     DFP-0
[    17.065] (--) NVIDIA(0):     DFP-1
[    17.065] (--) NVIDIA(0):     DFP-2
[    17.065] (--) NVIDIA(0):     DFP-3
[    17.065] (--) NVIDIA(0):     DFP-4
[    17.065] (--) NVIDIA(0):     DFP-5 (boot)
[    17.065] (--) NVIDIA(0):     DFP-6
[    17.065] (--) NVIDIA(0):     DFP-7
[    17.066] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 2070 (TU106-A) at PCI:43:0:0
[    17.066] (II) NVIDIA(0):     (GPU-0)
[    17.066] (--) NVIDIA(0): Memory: 8388608 kBytes
[    17.066] (--) NVIDIA(0): VideoBIOS: 90.06.0b.40.cd
[    17.066] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    17.066] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    17.066] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    17.066] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    17.066] (--) NVIDIA(GPU-0): 
[    17.066] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    17.066] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    17.066] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    17.066] (--) NVIDIA(GPU-0): 
[    17.066] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    17.066] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    17.066] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    17.066] (--) NVIDIA(GPU-0): 
[    17.066] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    17.066] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    17.066] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    17.066] (--) NVIDIA(GPU-0): 
[    17.066] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    17.066] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    17.066] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    17.066] (--) NVIDIA(GPU-0): 
[    17.066] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): connected
[    17.066] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): Internal DisplayPort
[    17.066] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): 2660.0 MHz maximum pixel clock
[    17.066] (--) NVIDIA(GPU-0): 
[    17.068] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    17.068] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    17.068] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    17.068] (--) NVIDIA(GPU-0): 
[    17.068] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    17.068] (--) NVIDIA(GPU-0): DFP-7: Internal DisplayPort
[    17.068] (--) NVIDIA(GPU-0): DFP-7: 2660.0 MHz maximum pixel clock
[    17.068] (--) NVIDIA(GPU-0): 
[    17.101] (==) NVIDIA(0): 
[    17.101] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    17.101] (==) NVIDIA(0):     will be used as the requested mode.
[    17.101] (==) NVIDIA(0): 
[    17.102] (II) NVIDIA(0): Validated MetaModes:
[    17.102] (II) NVIDIA(0):     "DFP-5:nvidia-auto-select"
[    17.102] (II) NVIDIA(0): Virtual screen size determined to be 3440 x 1440
[    17.152] (--) NVIDIA(0): DPI set to (109, 110); computed from "UseEdidDpi" X config
[    17.152] (--) NVIDIA(0):     option
[    17.152] (WW) NVIDIA: Failed to bind sideband socket to
[    17.152] (WW) NVIDIA:     '/var/run/nvidia-xdriver-ab0c07df' Permission denied
[    17.152] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[    17.152] (II) NVIDIA:     access.
[    17.155] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    17.155] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[    17.155] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[    17.155] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[    17.155] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[    17.155] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[    17.155] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    17.155] (II) NVIDIA(0):     Config Options in the README.
[    17.175] (II) NVIDIA(0): Setting mode "DFP-5:nvidia-auto-select"
[    17.284] (==) NVIDIA(0): Disabling shared memory pixmaps
[    17.284] (==) NVIDIA(0): Backing store enabled
[    17.284] (==) NVIDIA(0): Silken mouse disabled
[    17.284] (**) NVIDIA(0): DPMS enabled
[    17.284] (II) Loading sub module "dri2"
[    17.284] (II) LoadModule: "dri2"
[    17.284] (II) Module "dri2" already built-in
[    17.284] (II) NVIDIA(0): [DRI2] Setup complete
[    17.284] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    17.284] (II) Initializing extension Generic Event Extension
[    17.284] (II) Initializing extension SHAPE
[    17.284] (II) Initializing extension MIT-SHM
[    17.284] (II) Initializing extension XInputExtension
[    17.284] (II) Initializing extension XTEST
[    17.285] (II) Initializing extension BIG-REQUESTS
[    17.285] (II) Initializing extension SYNC
[    17.285] (II) Initializing extension XKEYBOARD
[    17.285] (II) Initializing extension XC-MISC
[    17.285] (II) Initializing extension SECURITY
[    17.285] (II) Initializing extension XFIXES
[    17.285] (II) Initializing extension RENDER
[    17.285] (II) Initializing extension RANDR
[    17.285] (II) Initializing extension COMPOSITE
[    17.285] (II) Initializing extension DAMAGE
[    17.285] (II) Initializing extension MIT-SCREEN-SAVER
[    17.285] (II) Initializing extension DOUBLE-BUFFER
[    17.285] (II) Initializing extension RECORD
[    17.285] (II) Initializing extension DPMS
[    17.285] (II) Initializing extension Present
[    17.285] (II) Initializing extension DRI3
[    17.285] (II) Initializing extension X-Resource
[    17.285] (II) Initializing extension XVideo
[    17.285] (II) Initializing extension XVideo-MotionCompensation
[    17.285] (II) Initializing extension GLX
[    17.285] (II) Initializing extension GLX
[    17.285] (II) Indirect GLX disabled.
[    17.285] (II) GLX: Another vendor is already registered for screen 0
[    17.285] (II) Initializing extension XFree86-VidModeExtension
[    17.285] (II) Initializing extension XFree86-DGA
[    17.285] (II) Initializing extension XFree86-DRI
[    17.285] (II) Initializing extension DRI2
[    17.285] (II) Initializing extension NV-GLX
[    17.285] (II) Initializing extension NV-CONTROL
[    17.285] (II) Initializing extension XINERAMA
[    17.331] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    17.331] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    17.331] (**) Power Button: Applying InputClass "system-keyboard"
[    17.331] (II) LoadModule: "libinput"
[    17.331] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    17.334] (II) Module libinput: vendor="X.Org Foundation"
[    17.334] 	compiled for 1.20.11, module version = 1.0.1
[    17.334] 	Module class: X.Org XInput Driver
[    17.334] 	ABI class: X.Org XInput driver, version 24.1
[    17.334] (II) Using input driver 'libinput' for 'Power Button'
[    17.334] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 29 paused 0
[    17.334] (**) Power Button: always reports core events
[    17.334] (**) Option "Device" "/dev/input/event1"
[    17.335] (**) Option "_source" "server/udev"
[    17.339] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    17.339] (II) event1  - Power Button: device is a keyboard
[    17.339] (II) event1  - Power Button: device removed
[    17.339] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    17.339] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    17.339] (**) Option "xkb_model" "pc105"
[    17.339] (**) Option "xkb_layout" "pl"
[    17.339] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.352] (II) event1  - Power Button: is tagged by udev as: Keyboard
[    17.352] (II) event1  - Power Button: device is a keyboard
[    17.353] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    17.353] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    17.353] (**) Power Button: Applying InputClass "system-keyboard"
[    17.353] (II) Using input driver 'libinput' for 'Power Button'
[    17.353] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
[    17.353] (**) Power Button: always reports core events
[    17.353] (**) Option "Device" "/dev/input/event0"
[    17.353] (**) Option "_source" "server/udev"
[    17.354] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    17.354] (II) event0  - Power Button: device is a keyboard
[    17.354] (II) event0  - Power Button: device removed
[    17.354] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[    17.354] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    17.354] (**) Option "xkb_model" "pc105"
[    17.354] (**) Option "xkb_layout" "pl"
[    17.354] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.356] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    17.356] (II) event0  - Power Button: device is a keyboard
[    17.357] (**) Option "Device" "/dev/input/event19"
[    17.357] (**) Option "_source" "server/udev"
[    17.359] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.0/0003:258A:1006.0002/input/input19/event19"
[    17.359] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB " (type: KEYBOARD, id 8)
[    17.359] (**) Option "xkb_model" "pc105"
[    17.359] (**) Option "xkb_layout" "pl"
[    17.359] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.380] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.2/1-6.2:1.2/0003:046D:C52B.0006/0003:046D:1020.0008/input/input42/event27"
[    17.380] (II) XINPUT: Adding extended input device "Logitech M215" (type: MOUSE, id 12)
[    17.380] (**) Option "AccelerationScheme" "none"
[    17.383] (II) config/udev: Adding input device Logitech M215 (/dev/input/mouse1)
[    17.383] (II) No input driver specified, ignoring this device.
[    17.383] (II) This device may have been added with another device file.
[    17.384] (II) config/udev: Adding input device Logitech K400 (/dev/input/event26)
[    17.387] (II) libinput: Logitech K400: needs a virtual subdevice
[    17.387] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.2/1-6.2:1.2/0003:046D:C52B.0006/0003:046D:4024.0007/input/input41/event26"
[    17.387] (II) XINPUT: Adding extended input device "Logitech K400" (type: MOUSE, id 13)
[    17.387] (**) Option "AccelerationScheme" "none"
[    17.387] (**) Logitech K400: (accel) selected scheme none/0
[    17.387] (**) Logitech K400: (accel) acceleration factor: 2.000
[    17.387] (**) Logitech K400: (accel) acceleration threshold: 4
[    17.392] (II) event24 - HP Display Camera: HP Display C: is tagged by udev as: Keyboard
[    17.392] (II) event24 - HP Display Camera: HP Display C: device is a keyboard
[    17.393] (II) event24 - HP Display Camera: HP Display C: device removed
[    17.393] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.1/1-6.3.1:1.0/input/input29/event24"
[    17.393] (II) XINPUT: Adding extended input device "HP Display Camera: HP Display C" (type: KEYBOARD, id 14)
[    17.393] (**) Option "xkb_model" "pc105"
[    17.393] (**) Option "xkb_layout" "pl"
[    17.393] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.394] (II) event24 - HP Display Camera: HP Display C: is tagged by udev as: Keyboard
[    17.394] (II) event24 - HP Display Camera: HP Display C: device is a keyboard
[    17.395] (II) config/udev: Adding input device HP IR Camera: HP IR Camera (/dev/input/event23)
[    17.395] (**) HP IR Camera: HP IR Camera: Applying InputClass "libinput keyboard catchall"
[    17.395] (**) HP IR Camera: HP IR Camera: Applying InputClass "system-keyboard"
[    17.395] (II) Using input driver 'libinput' for 'HP IR Camera: HP IR Camera'
[    17.396] (II) systemd-logind: got fd for /dev/input/event23 13:87 fd 40 paused 0
[    17.396] (**) HP IR Camera: HP IR Camera: always reports core events
[    17.396] (**) Option "Device" "/dev/input/event23"
[    17.396] (**) Option "_source" "server/udev"
[    17.397] (II) event23 - HP IR Camera: HP IR Camera: is tagged by udev as: Keyboard
[    17.397] (II) event23 - HP IR Camera: HP IR Camera: device is a keyboard
[    17.397] (II) event23 - HP IR Camera: HP IR Camera: device removed
[    17.397] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.2/1-6.3.2:1.0/input/input28/event23"
[    17.397] (II) XINPUT: Adding extended input device "HP IR Camera: HP IR Camera" (type: KEYBOARD, id 15)
[    17.397] (**) Option "xkb_model" "pc105"
[    17.397] (**) Option "xkb_layout" "pl"
[    17.397] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.399] (II) event23 - HP IR Camera: HP IR Camera: is tagged by udev as: Keyboard
[    17.399] (II) event23 - HP IR Camera: HP IR Camera: device is a keyboard
[    17.400] (II) config/udev: Adding input device HP ENVY 34 Consumer Control (/dev/input/event25)
[    17.400] (**) HP ENVY 34 Consumer Control: Applying InputClass "libinput keyboard catchall"
[    17.400] (**) HP ENVY 34 Consumer Control: Applying InputClass "system-keyboard"
[    17.400] (II) Using input driver 'libinput' for 'HP ENVY 34 Consumer Control'
[    17.401] (II) systemd-logind: got fd for /dev/input/event25 13:89 fd 41 paused 0
[    17.401] (**) HP ENVY 34 Consumer Control: always reports core events
[    17.401] (**) Option "Device" "/dev/input/event25"
[    17.401] (**) Option "_source" "server/udev"
[    17.402] (II) event25 - HP ENVY 34 Consumer Control: is tagged by udev as: Keyboard
[    17.402] (II) event25 - HP ENVY 34 Consumer Control: device is a keyboard
[    17.403] (II) event25 - HP ENVY 34 Consumer Control: device removed
[    17.403] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.4/1-6.3.4:1.3/0003:03F0:0C47.0009/input/input39/event25"
[    17.403] (II) XINPUT: Adding extended input device "HP ENVY 34 Consumer Control" (type: KEYBOARD, id 16)
[    17.403] (**) Option "xkb_model" "pc105"
[    17.403] (**) Option "xkb_layout" "pl"
[    17.403] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.404] (II) event25 - HP ENVY 34 Consumer Control: is tagged by udev as: Keyboard
[    17.404] (II) event25 - HP ENVY 34 Consumer Control: device is a keyboard
[    17.405] (II) config/udev: Adding input device HP ENVY 34 (/dev/input/event28)
[    17.405] (**) HP ENVY 34: Applying InputClass "libinput keyboard catchall"
[    17.405] (**) HP ENVY 34: Applying InputClass "system-keyboard"
[    17.405] (II) Using input driver 'libinput' for 'HP ENVY 34'
[    17.406] (II) systemd-logind: got fd for /dev/input/event28 13:92 fd 42 paused 0
[    17.406] (**) HP ENVY 34: always reports core events
[    17.406] (**) Option "Device" "/dev/input/event28"
[    17.406] (**) Option "_source" "server/udev"
[    17.407] (II) event28 - HP ENVY 34: is tagged by udev as: Keyboard
[    17.408] (II) event28 - HP ENVY 34: device is a keyboard
[    17.408] (II) event28 - HP ENVY 34: device removed
[    17.408] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.4/1-6.3.4:1.3/0003:03F0:0C47.0009/input/input40/event28"
[    17.408] (II) XINPUT: Adding extended input device "HP ENVY 34" (type: KEYBOARD, id 17)
[    17.408] (**) Option "xkb_model" "pc105"
[    17.408] (**) Option "xkb_layout" "pl"
[    17.408] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.410] (II) event28 - HP ENVY 34: is tagged by udev as: Keyboard
[    17.410] (II) event28 - HP ENVY 34: device is a keyboard
[    17.411] (II) config/udev: Adding input device MSI MYSTIC LIGHT  (/dev/input/event18)
[    17.411] (II) No input driver specified, ignoring this device.
[    17.411] (II) This device may have been added with another device file.
[    17.411] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event3)
[    17.411] (II) No input driver specified, ignoring this device.
[    17.411] (II) This device may have been added with another device file.
[    17.412] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event4)
[    17.412] (II) No input driver specified, ignoring this device.
[    17.412] (II) This device may have been added with another device file.
[    17.412] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
[    17.412] (II) No input driver specified, ignoring this device.
[    17.412] (II) This device may have been added with another device file.
[    17.412] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event6)
[    17.412] (II) No input driver specified, ignoring this device.
[    17.412] (II) This device may have been added with another device file.
[    17.413] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event7)
[    17.413] (II) No input driver specified, ignoring this device.
[    17.413] (II) This device may have been added with another device file.
[    17.413] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event8)
[    17.413] (II) No input driver specified, ignoring this device.
[    17.413] (II) This device may have been added with another device file.
[    17.413] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event9)
[    17.414] (II) No input driver specified, ignoring this device.
[    17.414] (II) This device may have been added with another device file.
[    17.414] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event10)
[    17.414] (II) No input driver specified, ignoring this device.
[    17.414] (II) This device may have been added with another device file.
[    17.414] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event11)
[    17.414] (II) No input driver specified, ignoring this device.
[    17.414] (II) This device may have been added with another device file.
[    17.415] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event12)
[    17.415] (II) No input driver specified, ignoring this device.
[    17.415] (II) This device may have been added with another device file.
[    17.415] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event13)
[    17.415] (II) No input driver specified, ignoring this device.
[    17.415] (II) This device may have been added with another device file.
[    17.415] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event14)
[    17.415] (II) No input driver specified, ignoring this device.
[    17.415] (II) This device may have been added with another device file.
[    17.416] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event15)
[    17.416] (II) No input driver specified, ignoring this device.
[    17.416] (II) This device may have been added with another device file.
[    17.416] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event16)
[    17.416] (II) No input driver specified, ignoring this device.
[    17.416] (II) This device may have been added with another device file.
[    17.416] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event17)
[    17.416] (II) No input driver specified, ignoring this device.
[    17.416] (II) This device may have been added with another device file.
[    17.416] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[    17.416] (II) No input driver specified, ignoring this device.
[    17.416] (II) This device may have been added with another device file.
[    17.420] (**) Gaming KB  Gaming KB  Consumer Control: Applying InputClass "libinput keyboard catchall"
[    17.420] (**) Gaming KB  Gaming KB  Consumer Control: Applying InputClass "system-keyboard"
[    17.420] (II) Using input driver 'libinput' for 'Gaming KB  Gaming KB  Consumer Control'
[    17.420] (II) systemd-logind: returning pre-existing fd for /dev/input/event21 13:85
[    17.420] (**) Gaming KB  Gaming KB  Consumer Control: always reports core events
[    17.420] (**) Option "Device" "/dev/input/event21"
[    17.420] (**) Option "_source" "_driver/libinput"
[    17.420] (II) libinput: Gaming KB  Gaming KB  Consumer Control: is a virtual subdevice
[    17.420] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.1/0003:258A:1006.0003/input/input21/event21"
[    17.420] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB  Consumer Control" (type: KEYBOARD, id 18)
[    17.420] (**) Option "xkb_model" "pc105"
[    17.420] (**) Option "xkb_layout" "pl"
[    17.420] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.420] (**) Logitech K400: Applying InputClass "libinput pointer catchall"
[    17.420] (**) Logitech K400: Applying InputClass "libinput keyboard catchall"
[    17.420] (**) Logitech K400: Applying InputClass "system-keyboard"
[    17.420] (II) Using input driver 'libinput' for 'Logitech K400'
[    17.420] (II) systemd-logind: returning pre-existing fd for /dev/input/event26 13:90
[    17.420] (**) Logitech K400: always reports core events
[    17.420] (**) Option "Device" "/dev/input/event26"
[    17.420] (**) Option "_source" "_driver/libinput"
[    17.420] (II) libinput: Logitech K400: is a virtual subdevice
[    17.420] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.2/1-6.2:1.2/0003:046D:C52B.0006/0003:046D:4024.0007/input/input41/event26"
[    17.420] (II) XINPUT: Adding extended input device "Logitech K400" (type: KEYBOARD, id 19)
[    17.420] (**) Option "xkb_model" "pc105"
[    17.420] (**) Option "xkb_layout" "pl"
[    17.420] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    17.421] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): connected
[    17.421] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): Internal DisplayPort
[    17.421] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): 2660.0 MHz maximum pixel clock
[    17.421] (--) NVIDIA(GPU-0): 
[    17.480] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    17.480] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    17.480] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    17.480] (--) NVIDIA(GPU-0): 
[    17.480] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    17.480] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[    17.480] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[    17.480] (--) NVIDIA(GPU-0): 
[    17.480] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    17.480] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    17.480] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    17.480] (--) NVIDIA(GPU-0): 
[    17.480] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    17.480] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[    17.480] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[    17.480] (--) NVIDIA(GPU-0): 
[    17.480] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    17.480] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[    17.480] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[    17.480] (--) NVIDIA(GPU-0): 
[    17.480] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): connected
[    17.480] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): Internal DisplayPort
[    17.480] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): 2660.0 MHz maximum pixel clock
[    17.480] (--) NVIDIA(GPU-0): 
[    17.482] (--) NVIDIA(GPU-0): DFP-6: disconnected
[    17.482] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[    17.482] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[    17.482] (--) NVIDIA(GPU-0): 
[    17.482] (--) NVIDIA(GPU-0): DFP-7: disconnected
[    17.482] (--) NVIDIA(GPU-0): DFP-7: Internal DisplayPort
[    17.482] (--) NVIDIA(GPU-0): DFP-7: 2660.0 MHz maximum pixel clock
[    17.482] (--) NVIDIA(GPU-0): 
[    25.141] (**) Option "fd" "29"
[    25.141] (II) event1  - Power Button: device removed
[    25.141] (**) Option "fd" "32"
[    25.141] (II) event0  - Power Button: device removed
[    25.141] (**) Option "fd" "33"
[    25.141] (II) event19 - Gaming KB  Gaming KB : device removed
[    25.141] (**) Option "fd" "34"
[    25.141] (II) event20 - Gaming KB  Gaming KB  System Control: device removed
[    25.141] (**) Option "fd" "35"
[    25.142] (**) Option "fd" "36"
[    25.142] (II) event22 - Gaming KB  Gaming KB  Keyboard: device removed
[    25.142] (**) Option "fd" "37"
[    25.142] (II) event27 - Logitech M215: device removed
[    25.142] (**) Option "fd" "38"
[    25.142] (**) Option "fd" "39"
[    25.142] (II) event24 - HP Display Camera: HP Display C: device removed
[    25.142] (**) Option "fd" "40"
[    25.142] (II) event23 - HP IR Camera: HP IR Camera: device removed
[    25.142] (**) Option "fd" "41"
[    25.142] (II) event25 - HP ENVY 34 Consumer Control: device removed
[    25.142] (**) Option "fd" "42"
[    25.142] (II) event28 - HP ENVY 34: device removed
[    25.142] (**) Option "fd" "35"
[    25.142] (II) event21 - Gaming KB  Gaming KB  Consumer Control: device removed
[    25.142] (**) Option "fd" "38"
[    25.142] (II) event26 - Logitech K400: device removed
[    25.261] (II) systemd-logind: got pause for 13:64
[    25.261] (II) systemd-logind: got pause for 13:92
[    25.261] (II) systemd-logind: got pause for 13:84
[    25.261] (II) systemd-logind: got pause for 13:88
[    25.261] (II) systemd-logind: got pause for 13:90
[    25.261] (II) systemd-logind: got pause for 13:89
[    25.261] (II) systemd-logind: got pause for 13:65
[    25.261] (II) systemd-logind: got pause for 13:83
[    25.261] (II) systemd-logind: got pause for 13:91
[    25.261] (II) systemd-logind: got pause for 13:86
[    25.261] (II) systemd-logind: got pause for 13:85
[    25.261] (II) systemd-logind: got pause for 13:87

Xorg.1.log

[  1179.856] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[  1179.857] 
X.Org X Server 1.20.11
X Protocol Version 11, Revision 0
[  1179.860] Build Operating System: Linux Archlinux
[  1179.861] Current Operating System: Linux pcmasterrace 5.12.12-arch1-1 #1 SMP PREEMPT Fri, 18 Jun 2021 21:59:22 +0000 x86_64
[  1179.861] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=8af3227c-fbad-495c-9fe4-09b89de86cfa rw loglevel=3 quiet
[  1179.863] Build Date: 13 April 2021  03:12:10PM
[  1179.864]  
[  1179.865] Current version of pixman: 0.40.0
[  1179.866] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1179.866] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1179.870] (==) Log file: "/home/matr/.local/share/xorg/Xorg.1.log", Time: Mon Jun 21 02:05:32 2021
[  1179.871] (==) Using config file: "/etc/X11/xorg.conf"
[  1179.872] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1179.872] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1179.872] (==) ServerLayout "Layout0"
[  1179.872] (**) |-->Screen "Screen0" (0)
[  1179.872] (**) |   |-->Monitor "Monitor0"
[  1179.873] (**) |   |-->Device "Device0"
[  1179.873] (**) |-->Input Device "Keyboard0"
[  1179.873] (**) |-->Input Device "Mouse0"
[  1179.873] (==) Automatically adding devices
[  1179.873] (==) Automatically enabling devices
[  1179.873] (==) Automatically adding GPU devices
[  1179.873] (==) Automatically binding GPU devices
[  1179.873] (==) Max clients allowed: 256, resource mask: 0x1fffff
[  1179.873] (WW) The directory "/usr/share/fonts/misc" does not exist.
[  1179.873] 	Entry deleted from font path.
[  1179.873] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[  1179.873] 	Entry deleted from font path.
[  1179.873] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[  1179.873] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/OTF".
[  1179.873] 	Entry deleted from font path.
[  1179.873] 	(Run 'mkfontdir' on "/usr/share/fonts/OTF").
[  1179.873] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[  1179.873] 	Entry deleted from font path.
[  1179.873] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[  1179.873] 	Entry deleted from font path.
[  1179.873] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[  1179.873] 	Entry deleted from font path.
[  1179.873] (==) FontPath set to:
	
[  1179.873] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1179.873] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  1179.873] (WW) Disabling Keyboard0
[  1179.873] (WW) Disabling Mouse0
[  1179.873] (II) Module ABI versions:
[  1179.873] 	X.Org ANSI C Emulation: 0.4
[  1179.873] 	X.Org Video Driver: 24.1
[  1179.873] 	X.Org XInput driver : 24.1
[  1179.873] 	X.Org Server Extension : 10.0
[  1179.873] (++) using VT number 2

[  1179.874] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
[  1179.874] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1179.875] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[  1179.876] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[  1179.877] (--) PCI:*(43@0:0:0) 10de:1f07:1458:37ad rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[  1179.877] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1179.877] (II) LoadModule: "glx"
[  1179.877] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1179.878] (II) Module glx: vendor="X.Org Foundation"
[  1179.878] 	compiled for 1.20.11, module version = 1.0.0
[  1179.878] 	ABI class: X.Org Server Extension, version 10.0
[  1179.878] (II) LoadModule: "nvidia"
[  1179.878] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  1179.878] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1179.878] 	compiled for 1.6.99.901, module version = 1.0.0
[  1179.878] 	Module class: X.Org Video Driver
[  1179.878] (II) NVIDIA dlloader X Driver  465.31  Thu May 13 22:19:15 UTC 2021
[  1179.878] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1179.878] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[  1179.878] (II) systemd-logind: releasing fd for 226:0
[  1179.878] (II) Loading sub module "fb"
[  1179.878] (II) LoadModule: "fb"
[  1179.878] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1179.878] (II) Module fb: vendor="X.Org Foundation"
[  1179.878] 	compiled for 1.20.11, module version = 1.0.0
[  1179.878] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1179.878] (II) Loading sub module "wfb"
[  1179.878] (II) LoadModule: "wfb"
[  1179.879] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  1179.879] (II) Module wfb: vendor="X.Org Foundation"
[  1179.879] 	compiled for 1.20.11, module version = 1.0.0
[  1179.879] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1179.879] (II) Loading sub module "ramdac"
[  1179.879] (II) LoadModule: "ramdac"
[  1179.879] (II) Module "ramdac" already built-in
[  1179.879] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[  1179.879] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[  1179.879] (==) NVIDIA(0): RGB weight 888
[  1179.879] (==) NVIDIA(0): Default visual is TrueColor
[  1179.879] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  1179.879] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[  1179.879] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[  1179.879] (**) NVIDIA(0): Enabling 2D acceleration
[  1179.879] (II) Loading sub module "glxserver_nvidia"
[  1179.879] (II) LoadModule: "glxserver_nvidia"
[  1179.879] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[  1179.882] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[  1179.882] 	compiled for 1.6.99.901, module version = 1.0.0
[  1179.882] 	Module class: X.Org Server Extension
[  1179.882] (II) NVIDIA GLX Module  465.31  Thu May 13 22:16:59 UTC 2021
[  1179.882] (II) NVIDIA: The X server supports PRIME Render Offload.
[  1179.883] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:43:0:0
[  1179.883] (--) NVIDIA(0):     DFP-0
[  1179.883] (--) NVIDIA(0):     DFP-1
[  1179.883] (--) NVIDIA(0):     DFP-2
[  1179.883] (--) NVIDIA(0):     DFP-3
[  1179.883] (--) NVIDIA(0):     DFP-4
[  1179.883] (--) NVIDIA(0):     DFP-5 (boot)
[  1179.883] (--) NVIDIA(0):     DFP-6
[  1179.883] (--) NVIDIA(0):     DFP-7
[  1179.884] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 2070 (TU106-A) at PCI:43:0:0
[  1179.884] (II) NVIDIA(0):     (GPU-0)
[  1179.884] (--) NVIDIA(0): Memory: 8388608 kBytes
[  1179.884] (--) NVIDIA(0): VideoBIOS: 90.06.0b.40.cd
[  1179.884] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[  1179.884] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  1179.884] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  1179.884] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  1179.884] (--) NVIDIA(GPU-0): 
[  1179.884] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  1179.884] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  1179.884] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  1179.884] (--) NVIDIA(GPU-0): 
[  1179.884] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  1179.884] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[  1179.884] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[  1179.884] (--) NVIDIA(GPU-0): 
[  1179.884] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  1179.884] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[  1179.884] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[  1179.884] (--) NVIDIA(GPU-0): 
[  1179.884] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  1179.884] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  1179.884] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  1179.884] (--) NVIDIA(GPU-0): 
[  1179.885] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): connected
[  1179.885] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): Internal DisplayPort
[  1179.885] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): 2660.0 MHz maximum pixel clock
[  1179.885] (--) NVIDIA(GPU-0): 
[  1179.887] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  1179.887] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  1179.887] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  1179.887] (--) NVIDIA(GPU-0): 
[  1179.887] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  1179.887] (--) NVIDIA(GPU-0): DFP-7: Internal DisplayPort
[  1179.887] (--) NVIDIA(GPU-0): DFP-7: 2660.0 MHz maximum pixel clock
[  1179.887] (--) NVIDIA(GPU-0): 
[  1179.920] (==) NVIDIA(0): 
[  1179.920] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[  1179.920] (==) NVIDIA(0):     will be used as the requested mode.
[  1179.920] (==) NVIDIA(0): 
[  1179.921] (II) NVIDIA(0): Validated MetaModes:
[  1179.921] (II) NVIDIA(0):     "DFP-5:nvidia-auto-select"
[  1179.921] (II) NVIDIA(0): Virtual screen size determined to be 3440 x 1440
[  1179.962] (--) NVIDIA(0): DPI set to (109, 110); computed from "UseEdidDpi" X config
[  1179.962] (--) NVIDIA(0):     option
[  1179.962] (WW) NVIDIA: Failed to bind sideband socket to
[  1179.962] (WW) NVIDIA:     '/var/run/nvidia-xdriver-8de6b628' Permission denied
[  1179.962] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[  1179.962] (II) NVIDIA:     access.
[  1179.967] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[  1179.967] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[  1179.967] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[  1179.967] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[  1179.967] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[  1179.967] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[  1179.967] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[  1179.967] (II) NVIDIA(0):     Config Options in the README.
[  1179.988] (II) NVIDIA(0): Setting mode "DFP-5:nvidia-auto-select"
[  1180.094] (==) NVIDIA(0): Disabling shared memory pixmaps
[  1180.094] (==) NVIDIA(0): Backing store enabled
[  1180.094] (==) NVIDIA(0): Silken mouse disabled
[  1180.094] (**) NVIDIA(0): DPMS enabled
[  1180.094] (II) Loading sub module "dri2"
[  1180.094] (II) LoadModule: "dri2"
[  1180.094] (II) Module "dri2" already built-in
[  1180.094] (II) NVIDIA(0): [DRI2] Setup complete
[  1180.094] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[  1180.094] (II) Initializing extension Generic Event Extension
[  1180.094] (II) Initializing extension SHAPE
[  1180.094] (II) Initializing extension MIT-SHM
[  1180.094] (II) Initializing extension XInputExtension
[  1180.094] (II) Initializing extension XTEST
[  1180.094] (II) Initializing extension BIG-REQUESTS
[  1180.094] (II) Initializing extension SYNC
[  1180.094] (II) Initializing extension XKEYBOARD
[  1180.094] (II) Initializing extension XC-MISC
[  1180.094] (II) Initializing extension SECURITY
[  1180.094] (II) Initializing extension XFIXES
[  1180.094] (II) Initializing extension RENDER
[  1180.094] (II) Initializing extension RANDR
[  1180.094] (II) Initializing extension COMPOSITE
[  1180.094] (II) Initializing extension DAMAGE
[  1180.094] (II) Initializing extension MIT-SCREEN-SAVER
[  1180.094] (II) Initializing extension DOUBLE-BUFFER
[  1180.094] (II) Initializing extension RECORD
[  1180.094] (II) Initializing extension DPMS
[  1180.094] (II) Initializing extension Present
[  1180.094] (II) Initializing extension DRI3
[  1180.094] (II) Initializing extension X-Resource
[  1180.094] (II) Initializing extension XVideo
[  1180.094] (II) Initializing extension XVideo-MotionCompensation
[  1180.094] (II) Initializing extension GLX
[  1180.094] (II) Initializing extension GLX
[  1180.094] (II) Indirect GLX disabled.
[  1180.094] (II) GLX: Another vendor is already registered for screen 0
[  1180.094] (II) Initializing extension XFree86-VidModeExtension
[  1180.094] (II) Initializing extension XFree86-DGA
[  1180.094] (II) Initializing extension XFree86-DRI
[  1180.094] (II) Initializing extension DRI2
[  1180.094] (II) Initializing extension NV-GLX
[  1180.094] (II) Initializing extension NV-CONTROL
[  1180.094] (II) Initializing extension XINERAMA
[  1180.134] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  1180.135] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1180.135] (**) Power Button: Applying InputClass "system-keyboard"
[  1180.135] (II) LoadModule: "libinput"
[  1180.135] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  1180.135] (II) Module libinput: vendor="X.Org Foundation"
[  1180.135] 	compiled for 1.20.11, module version = 1.0.1
[  1180.135] 	Module class: X.Org XInput Driver
[  1180.135] 	ABI class: X.Org XInput driver, version 24.1
[  1180.135] (II) Using input driver 'libinput' for 'Power Button'
[  1180.136] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 29 paused 0
[  1180.136] (**) Power Button: always reports core events
[  1180.136] (**) Option "Device" "/dev/input/event1"
[  1180.136] (**) Option "_source" "server/udev"
[  1180.137] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  1180.137] (II) event1  - Power Button: device is a keyboard
[  1180.137] (II) event1  - Power Button: device removed
[  1180.137] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[  1180.137] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1180.137] (**) Option "xkb_model" "pc105"
[  1180.137] (**) Option "xkb_layout" "pl"
[  1180.137] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.161] (II) event1  - Power Button: is tagged by udev as: Keyboard
[  1180.161] (II) event1  - Power Button: device is a keyboard
[  1180.162] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[  1180.162] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1180.162] (**) Power Button: Applying InputClass "system-keyboard"
[  1180.162] (II) Using input driver 'libinput' for 'Power Button'
[  1180.162] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 32 paused 0
[  1180.162] (**) Power Button: always reports core events
[  1180.162] (**) Option "Device" "/dev/input/event0"
[  1180.162] (**) Option "_source" "server/udev"
[  1180.163] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  1180.163] (II) event0  - Power Button: device is a keyboard
[  1180.163] (II) event0  - Power Button: device removed
[  1180.163] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[  1180.163] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[  1180.163] (**) Option "xkb_model" "pc105"
[  1180.163] (**) Option "xkb_layout" "pl"
[  1180.163] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.164] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  1180.164] (II) event0  - Power Button: device is a keyboard
[  1180.165] (II) config/udev: Adding input device Logitech M215 (/dev/input/event24)
[  1180.165] (**) Logitech M215: Applying InputClass "libinput pointer catchall"
[  1180.165] (II) Using input driver 'libinput' for 'Logitech M215'
[  1180.166] (II) systemd-logind: got fd for /dev/input/event24 13:88 fd 33 paused 0
[  1180.166] (**) Logitech M215: always reports core events
[  1180.166] (**) Option "Device" "/dev/input/event24"
[  1180.166] (**) Option "_source" "server/udev"
[  1180.167] (II) event24 - Logitech M215: is tagged by udev as: Mouse
[  1180.168] (II) event24 - Logitech M215: device is a pointer
[  1180.168] (II) event24 - Logitech M215: device removed
[  1180.168] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.2/0003:046D:C52B.0003/0003:046D:1020.0008/input/input38/event24"
[  1180.168] (II) XINPUT: Adding extended input device "Logitech M215" (type: MOUSE, id 8)
[  1180.168] (**) Option "AccelerationScheme" "none"
[  1180.168] (**) Logitech M215: (accel) selected scheme none/0
[  1180.168] (**) Logitech M215: (accel) acceleration factor: 2.000
[  1180.168] (**) Logitech M215: (accel) acceleration threshold: 4
[  1180.169] (II) event24 - Logitech M215: is tagged by udev as: Mouse
[  1180.170] (II) event24 - Logitech M215: device is a pointer
[  1180.170] (II) config/udev: Adding input device Logitech M215 (/dev/input/mouse1)
[  1180.171] (II) No input driver specified, ignoring this device.
[  1180.171] (II) This device may have been added with another device file.
[  1180.171] (II) config/udev: Adding input device Logitech K400 (/dev/input/event23)
[  1180.171] (**) Logitech K400: Applying InputClass "libinput pointer catchall"
[  1180.171] (**) Logitech K400: Applying InputClass "libinput keyboard catchall"
[  1180.171] (**) Logitech K400: Applying InputClass "system-keyboard"
[  1180.171] (II) Using input driver 'libinput' for 'Logitech K400'
[  1180.172] (II) systemd-logind: got fd for /dev/input/event23 13:87 fd 34 paused 0
[  1180.172] (**) Logitech K400: always reports core events
[  1180.172] (**) Option "Device" "/dev/input/event23"
[  1180.172] (**) Option "_source" "server/udev"
[  1180.173] (II) event23 - Logitech K400: is tagged by udev as: Keyboard Mouse
[  1180.174] (II) event23 - Logitech K400: device is a pointer
[  1180.174] (II) event23 - Logitech K400: device is a keyboard
[  1180.174] (II) event23 - Logitech K400: device removed
[  1180.174] (II) libinput: Logitech K400: needs a virtual subdevice
[  1180.174] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.2/0003:046D:C52B.0003/0003:046D:4024.0007/input/input37/event23"
[  1180.174] (II) XINPUT: Adding extended input device "Logitech K400" (type: MOUSE, id 9)
[  1180.174] (**) Option "AccelerationScheme" "none"
[  1180.174] (**) Logitech K400: (accel) selected scheme none/0
[  1180.174] (**) Logitech K400: (accel) acceleration factor: 2.000
[  1180.174] (**) Logitech K400: (accel) acceleration threshold: 4
[  1180.175] (II) event23 - Logitech K400: is tagged by udev as: Keyboard Mouse
[  1180.176] (II) event23 - Logitech K400: device is a pointer
[  1180.176] (II) event23 - Logitech K400: device is a keyboard
[  1180.177] (II) config/udev: Adding input device Logitech K400 (/dev/input/mouse0)
[  1180.177] (**) Logitech K400: Applying InputClass "system-keyboard"
[  1180.177] (II) No input driver specified, ignoring this device.
[  1180.177] (II) This device may have been added with another device file.
[  1180.178] (II) config/udev: Adding input device Gaming KB  Gaming KB  (/dev/input/event18)
[  1180.178] (**) Gaming KB  Gaming KB : Applying InputClass "libinput keyboard catchall"
[  1180.178] (**) Gaming KB  Gaming KB : Applying InputClass "system-keyboard"
[  1180.178] (II) Using input driver 'libinput' for 'Gaming KB  Gaming KB '
[  1180.178] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 35 paused 0
[  1180.178] (**) Gaming KB  Gaming KB : always reports core events
[  1180.178] (**) Option "Device" "/dev/input/event18"
[  1180.178] (**) Option "_source" "server/udev"
[  1180.180] (II) event18 - Gaming KB  Gaming KB : is tagged by udev as: Keyboard
[  1180.180] (II) event18 - Gaming KB  Gaming KB : device is a keyboard
[  1180.180] (II) event18 - Gaming KB  Gaming KB : device removed
[  1180.180] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.0/0003:258A:1006.0005/input/input24/event18"
[  1180.180] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB " (type: KEYBOARD, id 10)
[  1180.180] (**) Option "xkb_model" "pc105"
[  1180.180] (**) Option "xkb_layout" "pl"
[  1180.180] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.182] (II) event18 - Gaming KB  Gaming KB : is tagged by udev as: Keyboard
[  1180.182] (II) event18 - Gaming KB  Gaming KB : device is a keyboard
[  1180.183] (II) config/udev: Adding input device Gaming KB  Gaming KB  System Control (/dev/input/event19)
[  1180.183] (**) Gaming KB  Gaming KB  System Control: Applying InputClass "libinput keyboard catchall"
[  1180.183] (**) Gaming KB  Gaming KB  System Control: Applying InputClass "system-keyboard"
[  1180.183] (II) Using input driver 'libinput' for 'Gaming KB  Gaming KB  System Control'
[  1180.183] (II) systemd-logind: got fd for /dev/input/event19 13:83 fd 36 paused 0
[  1180.183] (**) Gaming KB  Gaming KB  System Control: always reports core events
[  1180.183] (**) Option "Device" "/dev/input/event19"
[  1180.183] (**) Option "_source" "server/udev"
[  1180.185] (II) event19 - Gaming KB  Gaming KB  System Control: is tagged by udev as: Keyboard
[  1180.185] (II) event19 - Gaming KB  Gaming KB  System Control: device is a keyboard
[  1180.185] (II) event19 - Gaming KB  Gaming KB  System Control: device removed
[  1180.185] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.1/0003:258A:1006.0006/input/input25/event19"
[  1180.185] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB  System Control" (type: KEYBOARD, id 11)
[  1180.185] (**) Option "xkb_model" "pc105"
[  1180.185] (**) Option "xkb_layout" "pl"
[  1180.185] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.187] (II) event19 - Gaming KB  Gaming KB  System Control: is tagged by udev as: Keyboard
[  1180.187] (II) event19 - Gaming KB  Gaming KB  System Control: device is a keyboard
[  1180.188] (II) config/udev: Adding input device Gaming KB  Gaming KB  Consumer Control (/dev/input/event20)
[  1180.188] (**) Gaming KB  Gaming KB  Consumer Control: Applying InputClass "libinput keyboard catchall"
[  1180.188] (**) Gaming KB  Gaming KB  Consumer Control: Applying InputClass "system-keyboard"
[  1180.188] (II) Using input driver 'libinput' for 'Gaming KB  Gaming KB  Consumer Control'
[  1180.188] (II) systemd-logind: got fd for /dev/input/event20 13:84 fd 37 paused 0
[  1180.188] (**) Gaming KB  Gaming KB  Consumer Control: always reports core events
[  1180.188] (**) Option "Device" "/dev/input/event20"
[  1180.188] (**) Option "_source" "server/udev"
[  1180.190] (II) event20 - Gaming KB  Gaming KB  Consumer Control: is tagged by udev as: Keyboard
[  1180.190] (II) event20 - Gaming KB  Gaming KB  Consumer Control: device is a keyboard
[  1180.190] (II) event20 - Gaming KB  Gaming KB  Consumer Control: device removed
[  1180.190] (II) libinput: Gaming KB  Gaming KB  Consumer Control: needs a virtual subdevice
[  1180.190] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.1/0003:258A:1006.0006/input/input26/event20"
[  1180.190] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB  Consumer Control" (type: MOUSE, id 12)
[  1180.190] (**) Option "AccelerationScheme" "none"
[  1180.190] (**) Gaming KB  Gaming KB  Consumer Control: (accel) selected scheme none/0
[  1180.190] (**) Gaming KB  Gaming KB  Consumer Control: (accel) acceleration factor: 2.000
[  1180.190] (**) Gaming KB  Gaming KB  Consumer Control: (accel) acceleration threshold: 4
[  1180.192] (II) event20 - Gaming KB  Gaming KB  Consumer Control: is tagged by udev as: Keyboard
[  1180.192] (II) event20 - Gaming KB  Gaming KB  Consumer Control: device is a keyboard
[  1180.193] (II) config/udev: Adding input device Gaming KB  Gaming KB  Keyboard (/dev/input/event21)
[  1180.193] (**) Gaming KB  Gaming KB  Keyboard: Applying InputClass "libinput keyboard catchall"
[  1180.193] (**) Gaming KB  Gaming KB  Keyboard: Applying InputClass "system-keyboard"
[  1180.193] (II) Using input driver 'libinput' for 'Gaming KB  Gaming KB  Keyboard'
[  1180.193] (II) systemd-logind: got fd for /dev/input/event21 13:85 fd 38 paused 0
[  1180.194] (**) Gaming KB  Gaming KB  Keyboard: always reports core events
[  1180.194] (**) Option "Device" "/dev/input/event21"
[  1180.194] (**) Option "_source" "server/udev"
[  1180.195] (II) event21 - Gaming KB  Gaming KB  Keyboard: is tagged by udev as: Keyboard
[  1180.195] (II) event21 - Gaming KB  Gaming KB  Keyboard: device is a keyboard
[  1180.195] (II) event21 - Gaming KB  Gaming KB  Keyboard: device removed
[  1180.195] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.1/0003:258A:1006.0006/input/input27/event21"
[  1180.195] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB  Keyboard" (type: KEYBOARD, id 13)
[  1180.195] (**) Option "xkb_model" "pc105"
[  1180.195] (**) Option "xkb_layout" "pl"
[  1180.195] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.197] (II) event21 - Gaming KB  Gaming KB  Keyboard: is tagged by udev as: Keyboard
[  1180.197] (II) event21 - Gaming KB  Gaming KB  Keyboard: device is a keyboard
[  1180.198] (II) config/udev: Adding input device HP Display Camera: HP Display C (/dev/input/event26)
[  1180.198] (**) HP Display Camera: HP Display C: Applying InputClass "libinput keyboard catchall"
[  1180.198] (**) HP Display Camera: HP Display C: Applying InputClass "system-keyboard"
[  1180.198] (II) Using input driver 'libinput' for 'HP Display Camera: HP Display C'
[  1180.199] (II) systemd-logind: got fd for /dev/input/event26 13:90 fd 39 paused 0
[  1180.199] (**) HP Display Camera: HP Display C: always reports core events
[  1180.199] (**) Option "Device" "/dev/input/event26"
[  1180.199] (**) Option "_source" "server/udev"
[  1180.200] (II) event26 - HP Display Camera: HP Display C: is tagged by udev as: Keyboard
[  1180.200] (II) event26 - HP Display Camera: HP Display C: device is a keyboard
[  1180.200] (II) event26 - HP Display Camera: HP Display C: device removed
[  1180.200] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.1/1-6.3.1:1.0/input/input40/event26"
[  1180.200] (II) XINPUT: Adding extended input device "HP Display Camera: HP Display C" (type: KEYBOARD, id 14)
[  1180.200] (**) Option "xkb_model" "pc105"
[  1180.200] (**) Option "xkb_layout" "pl"
[  1180.200] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.202] (II) event26 - HP Display Camera: HP Display C: is tagged by udev as: Keyboard
[  1180.202] (II) event26 - HP Display Camera: HP Display C: device is a keyboard
[  1180.203] (II) config/udev: Adding input device HP IR Camera: HP IR Camera (/dev/input/event25)
[  1180.203] (**) HP IR Camera: HP IR Camera: Applying InputClass "libinput keyboard catchall"
[  1180.203] (**) HP IR Camera: HP IR Camera: Applying InputClass "system-keyboard"
[  1180.203] (II) Using input driver 'libinput' for 'HP IR Camera: HP IR Camera'
[  1180.204] (II) systemd-logind: got fd for /dev/input/event25 13:89 fd 40 paused 0
[  1180.204] (**) HP IR Camera: HP IR Camera: always reports core events
[  1180.204] (**) Option "Device" "/dev/input/event25"
[  1180.204] (**) Option "_source" "server/udev"
[  1180.205] (II) event25 - HP IR Camera: HP IR Camera: is tagged by udev as: Keyboard
[  1180.205] (II) event25 - HP IR Camera: HP IR Camera: device is a keyboard
[  1180.205] (II) event25 - HP IR Camera: HP IR Camera: device removed
[  1180.205] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.2/1-6.3.2:1.0/input/input39/event25"
[  1180.205] (II) XINPUT: Adding extended input device "HP IR Camera: HP IR Camera" (type: KEYBOARD, id 15)
[  1180.205] (**) Option "xkb_model" "pc105"
[  1180.205] (**) Option "xkb_layout" "pl"
[  1180.205] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.207] (II) event25 - HP IR Camera: HP IR Camera: is tagged by udev as: Keyboard
[  1180.207] (II) event25 - HP IR Camera: HP IR Camera: device is a keyboard
[  1180.208] (II) config/udev: Adding input device HP ENVY 34 Consumer Control (/dev/input/event27)
[  1180.208] (**) HP ENVY 34 Consumer Control: Applying InputClass "libinput keyboard catchall"
[  1180.208] (**) HP ENVY 34 Consumer Control: Applying InputClass "system-keyboard"
[  1180.208] (II) Using input driver 'libinput' for 'HP ENVY 34 Consumer Control'
[  1180.208] (II) systemd-logind: got fd for /dev/input/event27 13:91 fd 41 paused 0
[  1180.208] (**) HP ENVY 34 Consumer Control: always reports core events
[  1180.208] (**) Option "Device" "/dev/input/event27"
[  1180.209] (**) Option "_source" "server/udev"
[  1180.210] (II) event27 - HP ENVY 34 Consumer Control: is tagged by udev as: Keyboard
[  1180.210] (II) event27 - HP ENVY 34 Consumer Control: device is a keyboard
[  1180.210] (II) event27 - HP ENVY 34 Consumer Control: device removed
[  1180.210] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.4/1-6.3.4:1.3/0003:03F0:0C47.0009/input/input41/event27"
[  1180.210] (II) XINPUT: Adding extended input device "HP ENVY 34 Consumer Control" (type: KEYBOARD, id 16)
[  1180.210] (**) Option "xkb_model" "pc105"
[  1180.210] (**) Option "xkb_layout" "pl"
[  1180.210] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.212] (II) event27 - HP ENVY 34 Consumer Control: is tagged by udev as: Keyboard
[  1180.212] (II) event27 - HP ENVY 34 Consumer Control: device is a keyboard
[  1180.213] (II) config/udev: Adding input device HP ENVY 34 (/dev/input/event28)
[  1180.213] (**) HP ENVY 34: Applying InputClass "libinput keyboard catchall"
[  1180.213] (**) HP ENVY 34: Applying InputClass "system-keyboard"
[  1180.213] (II) Using input driver 'libinput' for 'HP ENVY 34'
[  1180.214] (II) systemd-logind: got fd for /dev/input/event28 13:92 fd 42 paused 0
[  1180.214] (**) HP ENVY 34: always reports core events
[  1180.214] (**) Option "Device" "/dev/input/event28"
[  1180.214] (**) Option "_source" "server/udev"
[  1180.215] (II) event28 - HP ENVY 34: is tagged by udev as: Keyboard
[  1180.216] (II) event28 - HP ENVY 34: device is a keyboard
[  1180.216] (II) event28 - HP ENVY 34: device removed
[  1180.216] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.3/1-6.3.4/1-6.3.4:1.3/0003:03F0:0C47.0009/input/input42/event28"
[  1180.216] (II) XINPUT: Adding extended input device "HP ENVY 34" (type: KEYBOARD, id 17)
[  1180.216] (**) Option "xkb_model" "pc105"
[  1180.216] (**) Option "xkb_layout" "pl"
[  1180.216] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.218] (II) event28 - HP ENVY 34: is tagged by udev as: Keyboard
[  1180.218] (II) event28 - HP ENVY 34: device is a keyboard
[  1180.219] (II) config/udev: Adding input device MSI MYSTIC LIGHT  (/dev/input/event22)
[  1180.219] (II) No input driver specified, ignoring this device.
[  1180.219] (II) This device may have been added with another device file.
[  1180.219] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event3)
[  1180.219] (II) No input driver specified, ignoring this device.
[  1180.219] (II) This device may have been added with another device file.
[  1180.219] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event4)
[  1180.219] (II) No input driver specified, ignoring this device.
[  1180.219] (II) This device may have been added with another device file.
[  1180.220] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
[  1180.220] (II) No input driver specified, ignoring this device.
[  1180.220] (II) This device may have been added with another device file.
[  1180.220] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event6)
[  1180.220] (II) No input driver specified, ignoring this device.
[  1180.220] (II) This device may have been added with another device file.
[  1180.221] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event7)
[  1180.221] (II) No input driver specified, ignoring this device.
[  1180.221] (II) This device may have been added with another device file.
[  1180.221] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event8)
[  1180.221] (II) No input driver specified, ignoring this device.
[  1180.221] (II) This device may have been added with another device file.
[  1180.221] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=12 (/dev/input/event9)
[  1180.221] (II) No input driver specified, ignoring this device.
[  1180.221] (II) This device may have been added with another device file.
[  1180.222] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event10)
[  1180.222] (II) No input driver specified, ignoring this device.
[  1180.222] (II) This device may have been added with another device file.
[  1180.222] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event11)
[  1180.222] (II) No input driver specified, ignoring this device.
[  1180.222] (II) This device may have been added with another device file.
[  1180.222] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event12)
[  1180.222] (II) No input driver specified, ignoring this device.
[  1180.223] (II) This device may have been added with another device file.
[  1180.223] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event13)
[  1180.223] (II) No input driver specified, ignoring this device.
[  1180.223] (II) This device may have been added with another device file.
[  1180.223] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event14)
[  1180.223] (II) No input driver specified, ignoring this device.
[  1180.223] (II) This device may have been added with another device file.
[  1180.224] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event15)
[  1180.224] (II) No input driver specified, ignoring this device.
[  1180.224] (II) This device may have been added with another device file.
[  1180.224] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event16)
[  1180.224] (II) No input driver specified, ignoring this device.
[  1180.224] (II) This device may have been added with another device file.
[  1180.224] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event17)
[  1180.224] (II) No input driver specified, ignoring this device.
[  1180.224] (II) This device may have been added with another device file.
[  1180.225] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[  1180.225] (II) No input driver specified, ignoring this device.
[  1180.225] (II) This device may have been added with another device file.
[  1180.230] (**) Logitech K400: Applying InputClass "libinput pointer catchall"
[  1180.230] (**) Logitech K400: Applying InputClass "libinput keyboard catchall"
[  1180.230] (**) Logitech K400: Applying InputClass "system-keyboard"
[  1180.230] (II) Using input driver 'libinput' for 'Logitech K400'
[  1180.230] (II) systemd-logind: returning pre-existing fd for /dev/input/event23 13:87
[  1180.230] (**) Logitech K400: always reports core events
[  1180.230] (**) Option "Device" "/dev/input/event23"
[  1180.230] (**) Option "_source" "_driver/libinput"
[  1180.230] (II) libinput: Logitech K400: is a virtual subdevice
[  1180.230] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-4/1-4:1.2/0003:046D:C52B.0003/0003:046D:4024.0007/input/input37/event23"
[  1180.230] (II) XINPUT: Adding extended input device "Logitech K400" (type: KEYBOARD, id 18)
[  1180.230] (**) Option "xkb_model" "pc105"
[  1180.230] (**) Option "xkb_layout" "pl"
[  1180.230] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.230] (**) Gaming KB  Gaming KB  Consumer Control: Applying InputClass "libinput keyboard catchall"
[  1180.230] (**) Gaming KB  Gaming KB  Consumer Control: Applying InputClass "system-keyboard"
[  1180.230] (II) Using input driver 'libinput' for 'Gaming KB  Gaming KB  Consumer Control'
[  1180.230] (II) systemd-logind: returning pre-existing fd for /dev/input/event20 13:84
[  1180.230] (**) Gaming KB  Gaming KB  Consumer Control: always reports core events
[  1180.230] (**) Option "Device" "/dev/input/event20"
[  1180.230] (**) Option "_source" "_driver/libinput"
[  1180.230] (II) libinput: Gaming KB  Gaming KB  Consumer Control: is a virtual subdevice
[  1180.230] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.2/0000:02:00.0/usb1/1-6/1-6.1/1-6.1:1.1/0003:258A:1006.0006/input/input26/event20"
[  1180.230] (II) XINPUT: Adding extended input device "Gaming KB  Gaming KB  Consumer Control" (type: KEYBOARD, id 19)
[  1180.230] (**) Option "xkb_model" "pc105"
[  1180.230] (**) Option "xkb_layout" "pl"
[  1180.230] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[  1180.290] (--) NVIDIA(GPU-0): DFP-0: disconnected
[  1180.290] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[  1180.290] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[  1180.290] (--) NVIDIA(GPU-0): 
[  1180.290] (--) NVIDIA(GPU-0): DFP-1: disconnected
[  1180.290] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[  1180.290] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[  1180.290] (--) NVIDIA(GPU-0): 
[  1180.290] (--) NVIDIA(GPU-0): DFP-2: disconnected
[  1180.290] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[  1180.290] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[  1180.290] (--) NVIDIA(GPU-0): 
[  1180.290] (--) NVIDIA(GPU-0): DFP-3: disconnected
[  1180.290] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[  1180.290] (--) NVIDIA(GPU-0): DFP-3: 2660.0 MHz maximum pixel clock
[  1180.290] (--) NVIDIA(GPU-0): 
[  1180.291] (--) NVIDIA(GPU-0): DFP-4: disconnected
[  1180.291] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[  1180.291] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[  1180.291] (--) NVIDIA(GPU-0): 
[  1180.291] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): connected
[  1180.291] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): Internal DisplayPort
[  1180.291] (--) NVIDIA(GPU-0): HPN HP ENVY 34 (DFP-5): 2660.0 MHz maximum pixel clock
[  1180.291] (--) NVIDIA(GPU-0): 
[  1180.293] (--) NVIDIA(GPU-0): DFP-6: disconnected
[  1180.293] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[  1180.293] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[  1180.293] (--) NVIDIA(GPU-0): 
[  1180.293] (--) NVIDIA(GPU-0): DFP-7: disconnected
[  1180.293] (--) NVIDIA(GPU-0): DFP-7: Internal DisplayPort
[  1180.293] (--) NVIDIA(GPU-0): DFP-7: 2660.0 MHz maximum pixel clock
[  1180.293] (--) NVIDIA(GPU-0): 
[  1185.432] (**) Option "fd" "29"
[  1185.432] (II) event1  - Power Button: device removed
[  1185.432] (**) Option "fd" "32"
[  1185.432] (II) event0  - Power Button: device removed
[  1185.432] (**) Option "fd" "33"
[  1185.432] (II) event24 - Logitech M215: device removed
[  1185.432] (**) Option "fd" "34"
[  1185.432] (**) Option "fd" "35"
[  1185.432] (II) event18 - Gaming KB  Gaming KB : device removed
[  1185.433] (**) Option "fd" "36"
[  1185.433] (II) event19 - Gaming KB  Gaming KB  System Control: device removed
[  1185.433] (**) Option "fd" "37"
[  1185.433] (**) Option "fd" "38"
[  1185.433] (II) event21 - Gaming KB  Gaming KB  Keyboard: device removed
[  1185.433] (**) Option "fd" "39"
[  1185.433] (II) event26 - HP Display Camera: HP Display C: device removed
[  1185.433] (**) Option "fd" "40"
[  1185.433] (II) event25 - HP IR Camera: HP IR Camera: device removed
[  1185.433] (**) Option "fd" "41"
[  1185.433] (II) event27 - HP ENVY 34 Consumer Control: device removed
[  1185.433] (**) Option "fd" "42"
[  1185.433] (II) event28 - HP ENVY 34: device removed
[  1185.433] (**) Option "fd" "34"
[  1185.433] (II) event23 - Logitech K400: device removed
[  1185.433] (**) Option "fd" "37"
[  1185.433] (II) event20 - Gaming KB  Gaming KB  Consumer Control: device removed
[  1185.435] (II) UnloadModule: "libinput"
[  1185.435] (II) systemd-logind: not releasing fd for 13:84, still in use
[  1185.435] (II) UnloadModule: "libinput"
[  1185.435] (II) systemd-logind: not releasing fd for 13:87, still in use
[  1185.435] (II) UnloadModule: "libinput"
[  1185.435] (II) systemd-logind: releasing fd for 13:92
[  1185.440] (II) UnloadModule: "libinput"
[  1185.440] (II) systemd-logind: releasing fd for 13:91
[  1185.609] (II) UnloadModule: "libinput"
[  1185.609] (II) systemd-logind: releasing fd for 13:89
[  1185.701] (II) UnloadModule: "libinput"
[  1185.701] (II) systemd-logind: releasing fd for 13:90
[  1185.767] (II) UnloadModule: "libinput"
[  1185.767] (II) systemd-logind: releasing fd for 13:85
[  1185.820] (II) UnloadModule: "libinput"
[  1185.820] (II) systemd-logind: releasing fd for 13:84
[  1185.847] (II) UnloadModule: "libinput"
[  1185.847] (II) systemd-logind: releasing fd for 13:83
[  1185.887] (II) UnloadModule: "libinput"
[  1185.887] (II) systemd-logind: releasing fd for 13:82
[  1185.927] (II) UnloadModule: "libinput"
[  1185.927] (II) systemd-logind: releasing fd for 13:87
[  1185.941] (II) UnloadModule: "libinput"
[  1185.941] (II) systemd-logind: releasing fd for 13:88
[  1186.073] (II) UnloadModule: "libinput"
[  1186.073] (II) systemd-logind: releasing fd for 13:64
[  1186.114] (II) UnloadModule: "libinput"
[  1186.114] (II) systemd-logind: releasing fd for 13:65
[  1186.344] (II) NVIDIA(GPU-0): Deleting GPU-0
[  1186.344] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[  1186.344] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[  1186.344] (WW) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[  1186.345] (II) Server terminated successfully (0). Closing log file.

Offline

#2 2021-06-25 06:51:49

seth
Member
Registered: 2012-09-03
Posts: 51,165

Re: Freezing X session, xrandr: Can't open display, NVIDIA 2070

After upgrading nvidia drivers to 465.31-10

You're a bit late, the party is almost over: https://bbs.archlinux.org/viewtopic.php?id=265563
Check your journal for the pattern, see the last posts and then use 460xx from ALA (there's a post explaining how to) until 470 gets released.
Also remove the nvidia-settings generated /etc/X11/xorg.conf - it's pointless and full of cruft.

Offline

Board footer

Powered by FluxBB