You are not logged in.

#1 2021-07-12 16:28:57

peanutstick
Member
Registered: 2021-07-04
Posts: 39

[SOLVED] Nvidia driver, error with prime-run glxinfo

I would like to use my GPU with prime-run, I have a GTX 1050, Code name: NV137 (GP107)
I have an error when I run prime-run glxinfo:

$ prime-run glxinfo
name of display: :0.0
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  152 (GLX)
  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
  Value in failed request:  0x0
  Serial number of failed request:  50
  Current serial number in output stream:  51

this is what I've installed:

$ pacman -Q |grep nvidia
lib32-nvidia-utils 465.31-1
nvidia 465.31-14
nvidia-dkms 465.31-1
nvidia-prime 1.0-4
nvidia-settings 465.31-1
nvidia-utils 465.31-1

I can see my card but it's off:

$ nvidia-smi
Mon Jul 12 18:27:38 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 465.31       Driver Version: 465.31       CUDA Version: 11.3     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   43C    P0    N/A /  N/A |      0MiB /  2000MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

Last edited by peanutstick (2021-07-13 07:41:25)

Offline

#2 2021-07-12 18:04:25

peanutstick
Member
Registered: 2021-07-04
Posts: 39

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

The driver is instaled:

]$ lspci -k | grep -A 2 -E "(VGA|3D)"
00:02.0 VGA compatible controller: Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630]
        Subsystem: Lenovo Device 39fe
        Kernel driver in use: i915
--
01:00.0 VGA compatible controller: NVIDIA Corporation GP107M [GeForce GTX 1050 Mobile] (rev a1)
        Subsystem: Lenovo Device 39fe
        Kernel driver in use: nvidia

Offline

#3 2021-07-12 18:20:19

kokoko3k
Member
Registered: 2008-11-14
Posts: 2,457

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

Something is wrong with your Xorg setup, as for me, even in idle, nvidia-smi shows xorg in the processes list.
https://wiki.archlinux.org/title/PRIME#Troubleshooting

Last edited by kokoko3k (2021-07-12 18:22:42)


Help me to improve ssh-rdp !
Retroarch User? Try my koko-aio shader !

Offline

#4 2021-07-12 19:46:07

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,627

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

And post your xorg log.

Offline

#5 2021-07-12 20:00:43

peanutstick
Member
Registered: 2021-07-04
Posts: 39

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

I tryed to reconfigure Xorg because I don't have xorg.conf file:

Switch to console mode: Ctrl + Alt +F1

Kill x server:

sudo systemctl stop lightdm 

Generate new xorg.conf file:

sudo X -configure

This will create xorg.conf.new.

Rename and move:

sudo mv /etc/xorg.conf.new /etc/X11/xorg.conf

Return to GUI:

sudo systemctl start lightdm

/etc/X11/xorg.conf

Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen      0  "Screen0" 0 0
        Screen      1  "Screen1" RightOf "Screen0"
        InputDevice    "Mouse0" "CorePointer"
        InputDevice    "Keyboard0" "CoreKeyboard"
EndSection

Section "Files"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/TTF"
        FontPath     "/usr/share/fonts/OTF"
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/75dpi"
EndSection

Section "Module"
        Load  "glx"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
EndSection

Section "InputDevice"
        Identifier  "Mouse0"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option      "Device" "/dev/input/mice"
        Option      "ZAxisMapping" "4 5 6 7"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Monitor"
        Identifier   "Monitor1"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Device"
        Identifier  "Card0"
        Driver      "nvidia"
        BusID       "PCI:1:0:0"
EndSection

Section "Device"
        ### Available Driver options are:-
        ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
        ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
        ### <percent>: "<f>%"
        ### [arg]: arg optional
        #Option     "SWcursor"                  # [<bool>]
        #Option     "kmsdev"                    # <str>
        #Option     "ShadowFB"                  # [<bool>]
        #Option     "AccelMethod"               # <str>
        #Option     "PageFlip"                  # [<bool>]
        #Option     "ZaphodHeads"               # <str>
        #Option     "DoubleShadow"              # [<bool>]
        #Option     "Atomic"                    # [<bool>]
        Identifier  "Card1"
        Driver      "modesetting"
        BusID       "PCI:0:2:0"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

Section "Screen"
        Identifier "Screen1"
        Device     "Card1"
        Monitor    "Monitor1"
        SubSection "Display"
                Viewport   0 0
                Depth     1
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     4
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     8
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     15
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     16
        EndSubSection
        SubSection "Display"
                Viewport   0 0
                Depth     24
        EndSubSection
EndSection

And now I have a black screen but still have enabled sshd and a snapchot, so I'm good.
I was look in the log but I don't understand the problem.

Offline

#6 2021-07-12 20:08:28

peanutstick
Member
Registered: 2021-07-04
Posts: 39

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

/var/log/Xorg.0.log

[ 13046.738]
X.Org X Server 1.20.12
X Protocol Version 11, Revision 0
[ 13046.738] Build Operating System: Linux Archlinux
[ 13046.738] Current Operating System: Linux peanutstick 5.12.15-arch1-1 #1 SMP PREEMPT Wed, 07 Jul 2021 23:35:29 +0000 x86_64
[ 13046.738] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=ea84beda-388c-4c3e-a3f3-dca9d67d9c15 rw loglevel=3 quiet
[ 13046.738] Build Date: 08 July 2021  08:00:40PM
[ 13046.738]
[ 13046.738] Current version of pixman: 0.40.0
[ 13046.738]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[ 13046.738] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 13046.738] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 12 21:47:09 2021
[ 13046.739] (==) Using config file: "/etc/X11/xorg.conf"
[ 13046.739] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 13046.739] (==) ServerLayout "X.org Configured"
[ 13046.739] (**) |-->Screen "Screen0" (0)
[ 13046.739] (**) |   |-->Monitor "Monitor0"
[ 13046.739] (**) |   |-->Device "Card0"
[ 13046.739] (**) |-->Screen "Screen1" (1)
[ 13046.739] (**) |   |-->Monitor "Monitor1"
[ 13046.739] (**) |   |-->Device "Card1"
[ 13046.739] (**) |-->Input Device "Mouse0"
[ 13046.739] (**) |-->Input Device "Keyboard0"
[ 13046.739] (==) Automatically adding devices
[ 13046.739] (==) Automatically enabling devices
[ 13046.739] (==) Automatically adding GPU devices
[ 13046.739] (==) Automatically binding GPU devices
[ 13046.739] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 13046.739] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 13046.739]    Entry deleted from font path.
[ 13046.739] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 13046.739]    Entry deleted from font path.
[ 13046.739] (**) FontPath set to:
        /usr/share/fonts/misc,
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/75dpi,
        /usr/share/fonts/misc,
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/75dpi
[ 13046.739] (**) ModulePath set to "/usr/lib/xorg/modules"
[ 13046.739] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 13046.739] (WW) Disabling Mouse0
[ 13046.739] (WW) Disabling Keyboard0
[ 13046.739] (II) Module ABI versions:
[ 13046.739]    X.Org ANSI C Emulation: 0.4
[ 13046.739]    X.Org Video Driver: 24.1
[ 13046.739]    X.Org XInput driver : 24.1
[ 13046.739]    X.Org Server Extension : 10.0
[ 13046.740] (++) using VT number 7

[ 13046.740] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[ 13046.740] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 13046.740] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 13046.753] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 13046.754] (--) PCI:*(0@0:2:0) 8086:3e9b:17aa:39fe rev 0, Mem @ 0xa2000000/16777216, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[ 13046.754] (--) PCI: (1@0:0:0) 10de:1c8d:17aa:39fe rev 161, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
[ 13046.754] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 13046.754] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[ 13046.754] (II) LoadModule: "glx"
[ 13046.790] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 13046.793] (II) Module glx: vendor="X.Org Foundation"
[ 13046.793]    compiled for 1.20.12, module version = 1.0.0
[ 13046.793]    ABI class: X.Org Server Extension, version 10.0
[ 13046.793] (II) LoadModule: "nvidia"
[ 13046.793] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 13046.793] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 13046.794]    compiled for 1.6.99.901, module version = 1.0.0
[ 13046.794]    Module class: X.Org Video Driver
[ 13046.794] (II) LoadModule: "modesetting"
[ 13046.794] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 13046.795] (II) Module modesetting: vendor="X.Org Foundation"
[ 13046.795]    compiled for 1.20.12, module version = 1.20.12
[ 13046.795]    Module class: X.Org Video Driver
[ 13046.795]    ABI class: X.Org Video Driver, version 24.1
[ 13046.795] (II) NVIDIA dlloader X Driver  465.31  Thu May 13 22:19:15 UTC 2021
[ 13046.795] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 13046.796] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 13046.804] (II) Loading sub module "fb"
[ 13046.804] (II) LoadModule: "fb"
[ 13046.804] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 13046.805] (II) Module fb: vendor="X.Org Foundation"
[ 13046.805]    compiled for 1.20.12, module version = 1.0.0
[ 13046.805]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 13046.805] (II) Loading sub module "wfb"
[ 13046.805] (II) LoadModule: "wfb"
[ 13046.805] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 13046.805] (II) Module wfb: vendor="X.Org Foundation"
[ 13046.805]    compiled for 1.20.12, module version = 1.0.0
[ 13046.805]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 13046.805] (II) Loading sub module "ramdac"
[ 13046.805] (II) LoadModule: "ramdac"
[ 13046.805] (II) Module "ramdac" already built-in
[ 13046.818] (II) modeset(1): using drv /dev/dri/card0
[ 13046.818] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[ 13046.818] (==) NVIDIA(0): RGB weight 888
[ 13046.818] (==) NVIDIA(0): Default visual is TrueColor
[ 13046.818] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 13046.819] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[ 13046.819] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 13046.819] (**) NVIDIA(0): Enabling 2D acceleration
[ 13046.819] (II) Loading sub module "glxserver_nvidia"
[ 13046.819] (II) LoadModule: "glxserver_nvidia"
[ 13046.819] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 13046.846] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 13046.846]    compiled for 1.6.99.901, module version = 1.0.0
[ 13046.846]    Module class: X.Org Server Extension
[ 13046.846] (II) NVIDIA GLX Module  465.31  Thu May 13 22:16:59 UTC 2021
[ 13046.847] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 13047.072] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 13047.072] (--) NVIDIA(0):     DFP-0
[ 13047.072] (--) NVIDIA(0):     DFP-1
[ 13047.072] (--) NVIDIA(0):     DFP-2
[ 13047.072] (--) NVIDIA(0):     DFP-3
[ 13047.072] (--) NVIDIA(0):     DFP-4
[ 13047.073] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce GTX 1050 (GP107-A) at PCI:1:0:0
[ 13047.073] (II) NVIDIA(0):     (GPU-0)
[ 13047.073] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 13047.073] (--) NVIDIA(0): VideoBIOS: 86.07.66.00.08
[ 13047.073] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 13047.073] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 13047.073] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[ 13047.073] (--) NVIDIA(GPU-0): DFP-0: 1440.0 MHz maximum pixel clock
[ 13047.073] (--) NVIDIA(GPU-0):
[ 13047.073] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 13047.073] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 13047.073] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 13047.073] (--) NVIDIA(GPU-0):
[ 13047.073] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 13047.073] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 13047.073] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[ 13047.073] (--) NVIDIA(GPU-0):
[ 13047.073] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 13047.073] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 13047.073] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 13047.073] (--) NVIDIA(GPU-0):
[ 13047.073] (--) NVIDIA(GPU-0): DFP-4: disconnected
[ 13047.073] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[ 13047.073] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[ 13047.073] (--) NVIDIA(GPU-0):
[ 13047.073] (==) NVIDIA(0):
[ 13047.073] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 13047.073] (==) NVIDIA(0):     will be used as the requested mode.
[ 13047.073] (==) NVIDIA(0):
[ 13047.073] (--) NVIDIA(0): No enabled display devices found; starting anyway because
[ 13047.073] (--) NVIDIA(0):     AllowEmptyInitialConfiguration is enabled
[ 13047.073] (II) NVIDIA(0): Validated MetaModes:
[ 13047.073] (II) NVIDIA(0):     "NULL"
[ 13047.073] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[ 13047.073] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[ 13047.073] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[ 13047.073] (==) modeset(1): Depth 24, (==) framebuffer bpp 32
[ 13047.073] (==) modeset(1): RGB weight 888
[ 13047.073] (==) modeset(1): Default visual is TrueColor
[ 13047.073] (II) Loading sub module "glamoregl"
[ 13047.073] (II) LoadModule: "glamoregl"
[ 13047.073] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 13047.076] (II) Module glamoregl: vendor="X.Org Foundation"
[ 13047.076]    compiled for 1.20.12, module version = 1.0.1
[ 13047.076]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 13047.106] (II) modeset(1): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 630 (CFL GT2)
[ 13047.106] (II) modeset(1): glamor initialized
[ 13047.108] (II) modeset(1): Output eDP-1 using monitor section Monitor1
[ 13047.109] (II) modeset(1): EDID for output eDP-1
[ 13047.109] (II) modeset(1): Manufacturer: LGD  Model: 5e5  Serial#: 0
[ 13047.109] (II) modeset(1): Year: 2018  Week: 0
[ 13047.109] (II) modeset(1): EDID Version: 1.4
[ 13047.109] (II) modeset(1): Digital Display Input
[ 13047.109] (II) modeset(1): 8 bits per channel
[ 13047.109] (II) modeset(1): Digital interface is DisplayPort
[ 13047.109] (II) modeset(1): Max Image Size [cm]: horiz.: 34  vert.: 19
[ 13047.109] (II) modeset(1): Gamma: 2.20
[ 13047.109] (II) modeset(1): No DPMS capabilities specified
[ 13047.109] (II) modeset(1): Supported color encodings: RGB 4:4:4
[ 13047.109] (II) modeset(1): First detailed timing is preferred mode
[ 13047.109] (II) modeset(1): Preferred mode is native pixel format and refresh rate
[ 13047.109] (II) modeset(1): redX: 0.590 redY: 0.370   greenX: 0.350 greenY: 0.555
[ 13047.109] (II) modeset(1): blueX: 0.155 blueY: 0.110   whiteX: 0.313 whiteY: 0.329
[ 13047.109] (II) modeset(1): Manufacturer's mask: 0
[ 13047.109] (II) modeset(1): Supported detailed timing:
[ 13047.109] (II) modeset(1): clock: 138.6 MHz   Image Size:  344 x 194 mm
[ 13047.109] (II) modeset(1): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[ 13047.109] (II) modeset(1): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1111 v_border: 0
[ 13047.109] (II) modeset(1):  LG Display
[ 13047.109] (II) modeset(1):  LP156WFC-SPD1
[ 13047.109] (II) modeset(1): EDID (in hex):
[ 13047.109] (II) modeset(1):   00ffffffffffff0030e4e50500000000
[ 13047.109] (II) modeset(1):   001c0104a52213780238d5975e598e27
[ 13047.109] (II) modeset(1):   1c505400000001010101010101010101
[ 13047.109] (II) modeset(1):   010101010101243680a070381f403020
[ 13047.109] (II) modeset(1):   350058c2100000190000000000000000
[ 13047.109] (II) modeset(1):   00000000000000000000000000fe004c
[ 13047.109] (II) modeset(1):   4720446973706c61790a2020000000fe
[ 13047.109] (II) modeset(1):   004c503135365746432d53504431003e
[ 13047.109] (II) modeset(1): Printing probed modes for output eDP-1
[ 13047.109] (II) modeset(1): Modeline "1920x1080"x60.0  138.60  1920 1968 2000 2080  1080 1083 1088 1111 -hsync -vsync (66.6 kHz eP)
[ 13047.109] (II) modeset(1): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[ 13047.109] (II) modeset(1): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[ 13047.109] (II) modeset(1): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[ 13047.109] (II) modeset(1): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[ 13047.109] (II) modeset(1): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[ 13047.109] (II) modeset(1): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 13047.110] (II) modeset(1): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 13047.110] (II) modeset(1): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 13047.110] (II) modeset(1): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 13047.110] (II) modeset(1): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 13047.110] (II) modeset(1): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 13047.110] (II) modeset(1): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 13047.110] (II) modeset(1): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 13047.110] (II) modeset(1): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 13047.110] (II) modeset(1): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 13047.110] (II) modeset(1): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 13047.110] (II) modeset(1): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[ 13047.110] (II) modeset(1): Output eDP-1 connected
[ 13047.110] (II) modeset(1): Using exact sizes for initial modes
[ 13047.110] (II) modeset(1): Output eDP-1 using initial mode 1920x1080 +0+0
[ 13047.110] (==) modeset(1): Using gamma correction (1.0, 1.0, 1.0)
[ 13047.110] (==) modeset(1): DPI set to (96, 96)
[ 13047.110] (II) Loading sub module "fb"
[ 13047.110] (II) LoadModule: "fb"
[ 13047.110] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 13047.110] (II) Module fb: vendor="X.Org Foundation"
[ 13047.110]    compiled for 1.20.12, module version = 1.0.0
[ 13047.110]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 13047.110] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 13047.110] (II) NVIDIA:     access.
[ 13047.113] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 13047.113] (II) NVIDIA(0):     may not be running or the "AcpidSocketPath" X
[ 13047.113] (II) NVIDIA(0):     configuration option may not be set correctly.  When the
[ 13047.113] (II) NVIDIA(0):     ACPI event daemon is available, the NVIDIA X driver will
[ 13047.113] (II) NVIDIA(0):     try to use it to receive ACPI event notifications.  For
[ 13047.113] (II) NVIDIA(0):     details, please see the "ConnectToAcpid" and
[ 13047.113] (II) NVIDIA(0):     "AcpidSocketPath" X configuration options in Appendix B: X
[ 13047.113] (II) NVIDIA(0):     Config Options in the README.
[ 13047.129] (II) NVIDIA(0): Setting mode "NULL"
[ 13047.134] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 13047.134] (==) NVIDIA(0): Backing store enabled
[ 13047.134] (==) NVIDIA(0): Silken mouse disabled
[ 13047.134] (==) NVIDIA(0): DPMS enabled
[ 13047.134] (II) Loading sub module "dri2"
[ 13047.134] (II) LoadModule: "dri2"
[ 13047.134] (II) Module "dri2" already built-in
[ 13047.134] (II) NVIDIA(0): [DRI2] Setup complete
[ 13047.134] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[ 13047.143] (==) modeset(1): Backing store enabled
[ 13047.143] (==) modeset(1): Silken mouse disabled
[ 13047.218] (II) modeset(1): Initializing kms color map for depth 24, 8 bpc.
[ 13047.219] (==) modeset(1): DPMS enabled
[ 13047.219] (II) modeset(1): [DRI2] Setup complete
[ 13047.219] (II) modeset(1): [DRI2]   DRI driver: iris
[ 13047.219] (II) modeset(1): [DRI2]   VDPAU driver: va_gl
[ 13047.219] (II) Initializing extension Generic Event Extension
[ 13047.219] (II) Initializing extension SHAPE
[ 13047.219] (II) Initializing extension MIT-SHM
[ 13047.219] (II) Initializing extension XInputExtension
[ 13047.219] (II) Initializing extension XTEST
[ 13047.219] (II) Initializing extension BIG-REQUESTS
[ 13047.219] (II) Initializing extension SYNC
[ 13047.219] (II) Initializing extension XKEYBOARD
[ 13047.219] (II) Initializing extension XC-MISC
[ 13047.219] (II) Initializing extension SECURITY
[ 13047.220] (II) Initializing extension XFIXES
[ 13047.220] (II) Initializing extension RENDER
[ 13047.220] (II) Initializing extension RANDR
[ 13047.220] (II) Initializing extension COMPOSITE
[ 13047.220] (II) Initializing extension DAMAGE
[ 13047.220] (II) Initializing extension MIT-SCREEN-SAVER
[ 13047.220] (II) Initializing extension DOUBLE-BUFFER
[ 13047.220] (II) Initializing extension RECORD
[ 13047.220] (II) Initializing extension DPMS
[ 13047.220] (II) Initializing extension Present
[ 13047.220] (II) Initializing extension DRI3
[ 13047.220] (II) Initializing extension X-Resource
[ 13047.221] (II) Initializing extension XVideo
[ 13047.221] (II) Initializing extension XVideo-MotionCompensation
[ 13047.221] (II) Initializing extension GLX
[ 13047.221] (II) Initializing extension GLX
[ 13047.221] (II) Indirect GLX disabled.
[ 13047.221] (II) GLX: Another vendor is already registered for screen 0
[ 13047.229] (II) AIGLX: Loaded and initialized iris
[ 13047.229] (II) GLX: Initialized DRI2 GL provider for screen 1
[ 13047.229] (II) Initializing extension XFree86-VidModeExtension
[ 13047.229] (II) Initializing extension XFree86-DGA
[ 13047.229] (II) Initializing extension XFree86-DRI
[ 13047.229] (II) Initializing extension DRI2
[ 13047.230] (II) Initializing extension NV-GLX
[ 13047.230] (II) Initializing extension NV-CONTROL
[ 13047.230] (II) modeset(1): Damage tracking initialized
[ 13047.230] (II) modeset(1): Setting screen physical size to 508 x 285
[ 13047.326] (II) config/udev: Adding input device Video Bus (/dev/input/event15)
[ 13047.326] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 13047.326] (II) LoadModule: "libinput"
[ 13047.326] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 13047.327] (II) Module libinput: vendor="X.Org Foundation"
[ 13047.327]    compiled for 1.20.11, module version = 1.1.0
[ 13047.327]    Module class: X.Org XInput Driver
[ 13047.327]    ABI class: X.Org XInput driver, version 24.1
[ 13047.327] (II) Using input driver 'libinput' for 'Video Bus'
[ 13047.327] (**) Video Bus: always reports core events
[ 13047.327] (**) Option "Device" "/dev/input/event15"
[ 13047.327] (**) Option "_source" "server/udev"
[ 13047.328] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[ 13047.328] (II) event15 - Video Bus: device is a keyboard
[ 13047.328] (II) event15 - Video Bus: device removed
[ 13047.377] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input16/event15"
[ 13047.377] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[ 13047.378] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[ 13047.378] (II) event15 - Video Bus: device is a keyboard
[ 13047.379] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
[ 13047.379] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 13047.379] (II) Using input driver 'libinput' for 'Video Bus'
[ 13047.379] (**) Video Bus: always reports core events
[ 13047.379] (**) Option "Device" "/dev/input/event14"
[ 13047.379] (**) Option "_source" "server/udev"
[ 13047.380] (II) event14 - Video Bus: is tagged by udev as: Keyboard
[ 13047.380] (II) event14 - Video Bus: device is a keyboard
[ 13047.380] (II) event14 - Video Bus: device removed
[ 13047.431] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input15/event14"
[ 13047.431] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[ 13047.434] (II) event14 - Video Bus: is tagged by udev as: Keyboard
[ 13047.434] (II) event14 - Video Bus: device is a keyboard
[ 13047.435] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 13047.435] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 13047.435] (II) Using input driver 'libinput' for 'Power Button'
[ 13047.435] (**) Power Button: always reports core events
[ 13047.435] (**) Option "Device" "/dev/input/event1"
[ 13047.436] (**) Option "_source" "server/udev"
[ 13047.437] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 13047.438] (II) event1  - Power Button: device is a keyboard
[ 13047.438] (II) event1  - Power Button: device removed
[ 13047.471] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[ 13047.471] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[ 13047.473] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 13047.473] (II) event1  - Power Button: device is a keyboard
[ 13047.475] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[ 13047.475] (II) No input driver specified, ignoring this device.
[ 13047.475] (II) This device may have been added with another device file.
[ 13047.476] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[ 13047.476] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 13047.476] (II) Using input driver 'libinput' for 'Sleep Button'
[ 13047.476] (**) Sleep Button: always reports core events
[ 13047.476] (**) Option "Device" "/dev/input/event2"
[ 13047.476] (**) Option "_source" "server/udev"
[ 13047.478] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[ 13047.478] (II) event2  - Sleep Button: device is a keyboard
[ 13047.478] (II) event2  - Sleep Button: device removed
[ 13047.511] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[ 13047.511] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[ 13047.513] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[ 13047.513] (II) event2  - Sleep Button: device is a keyboard
[ 13047.515] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event9)
[ 13047.515] (II) No input driver specified, ignoring this device.
[ 13047.515] (II) This device may have been added with another device file.
[ 13047.516] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event10)
[ 13047.516] (II) No input driver specified, ignoring this device.
[ 13047.516] (II) This device may have been added with another device file.
[ 13047.517] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event11)
[ 13047.517] (II) No input driver specified, ignoring this device.
[ 13047.517] (II) This device may have been added with another device file.
[ 13047.518] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event12)
[ 13047.518] (II) No input driver specified, ignoring this device.
[ 13047.518] (II) This device may have been added with another device file.
[ 13047.519] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event7)
[ 13047.519] (II) No input driver specified, ignoring this device.
[ 13047.519] (II) This device may have been added with another device file.
[ 13047.520] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event8)
[ 13047.520] (II) No input driver specified, ignoring this device.
[ 13047.520] (II) This device may have been added with another device file.
[ 13047.523] (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event13)
[ 13047.523] (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
[ 13047.523] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
[ 13047.523] (**) Integrated Camera: Integrated C: always reports core events
[ 13047.523] (**) Option "Device" "/dev/input/event13"
[ 13047.523] (**) Option "_source" "server/udev"
[ 13047.526] (II) event13 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[ 13047.526] (II) event13 - Integrated Camera: Integrated C: device is a keyboard
[ 13047.526] (II) event13 - Integrated Camera: Integrated C: device removed
[ 13047.577] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/input/input14/event13"
[ 13047.577] (II) XINPUT: Adding extended input device "Integrated Camera: Integrated C" (type: KEYBOARD, id 10)
[ 13047.581] (II) event13 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[ 13047.581] (II) event13 - Integrated Camera: Integrated C: device is a keyboard
[ 13047.583] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Mouse (/dev/input/event5)
[ 13047.583] (**) SYNA2B46:00 06CB:CD5F Mouse: Applying InputClass "libinput pointer catchall"
[ 13047.583] (II) Using input driver 'libinput' for 'SYNA2B46:00 06CB:CD5F Mouse'
[ 13047.583] (**) SYNA2B46:00 06CB:CD5F Mouse: always reports core events
[ 13047.583] (**) Option "Device" "/dev/input/event5"
[ 13047.583] (**) Option "_source" "server/udev"
[ 13047.586] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: is tagged by udev as: Mouse Pointingstick
[ 13047.587] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: device is a pointer
[ 13047.588] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: device removed
[ 13047.644] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA2B46:00/0018:06CB:CD5F.0001/input/input19/event5"
[ 13047.644] (II) XINPUT: Adding extended input device "SYNA2B46:00 06CB:CD5F Mouse" (type: MOUSE, id 11)
[ 13047.644] (**) Option "AccelerationScheme" "none"
[ 13047.644] (**) SYNA2B46:00 06CB:CD5F Mouse: (accel) selected scheme none/0
[ 13047.644] (**) SYNA2B46:00 06CB:CD5F Mouse: (accel) acceleration factor: 2.000
[ 13047.644] (**) SYNA2B46:00 06CB:CD5F Mouse: (accel) acceleration threshold: 4
[ 13047.647] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: is tagged by udev as: Mouse Pointingstick
[ 13047.648] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: device is a pointer
[ 13047.651] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Mouse (/dev/input/mouse0)
[ 13047.651] (II) No input driver specified, ignoring this device.
[ 13047.651] (II) This device may have been added with another device file.
[ 13047.653] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Touchpad (/dev/input/event6)
[ 13047.653] (**) SYNA2B46:00 06CB:CD5F Touchpad: Applying InputClass "libinput touchpad catchall"
[ 13047.653] (II) Using input driver 'libinput' for 'SYNA2B46:00 06CB:CD5F Touchpad'
[ 13047.653] (**) SYNA2B46:00 06CB:CD5F Touchpad: always reports core events
[ 13047.653] (**) Option "Device" "/dev/input/event6"
[ 13047.653] (**) Option "_source" "server/udev"
[ 13047.656] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: is tagged by udev as: Touchpad
[ 13047.659] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: device is a touchpad
[ 13047.659] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: device removed
[ 13047.712] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA2B46:00/0018:06CB:CD5F.0001/input/input20/event6"
[ 13047.712] (II) XINPUT: Adding extended input device "SYNA2B46:00 06CB:CD5F Touchpad" (type: TOUCHPAD, id 12)
[ 13047.713] (**) Option "AccelerationScheme" "none"
[ 13047.713] (**) SYNA2B46:00 06CB:CD5F Touchpad: (accel) selected scheme none/0
[ 13047.713] (**) SYNA2B46:00 06CB:CD5F Touchpad: (accel) acceleration factor: 2.000
[ 13047.714] (**) SYNA2B46:00 06CB:CD5F Touchpad: (accel) acceleration threshold: 4
[ 13047.716] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: is tagged by udev as: Touchpad
[ 13047.719] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: device is a touchpad
[ 13047.722] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Touchpad (/dev/input/mouse1)
[ 13047.722] (II) No input driver specified, ignoring this device.
[ 13047.722] (II) This device may have been added with another device file.
[ 13047.723] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event4)
[ 13047.723] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[ 13047.723] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[ 13047.723] (**) Ideapad extra buttons: always reports core events
[ 13047.723] (**) Option "Device" "/dev/input/event4"
[ 13047.723] (**) Option "_source" "server/udev"
[ 13047.726] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[ 13047.726] (II) event4  - Ideapad extra buttons: device is a keyboard
[ 13047.726] (II) event4  - Ideapad extra buttons: device removed
[ 13047.777] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input4/event4"
[ 13047.777] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 13)
[ 13047.780] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[ 13047.780] (II) event4  - Ideapad extra buttons: device is a keyboard
[ 13047.782] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event16)
[ 13047.782] (II) No input driver specified, ignoring this device.
[ 13047.782] (II) This device may have been added with another device file.
[ 13047.783] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event17)
[ 13047.783] (II) No input driver specified, ignoring this device.
[ 13047.783] (II) This device may have been added with another device file.
[ 13047.784] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event18)
[ 13047.784] (II) No input driver specified, ignoring this device.
[ 13047.784] (II) This device may have been added with another device file.
[ 13047.785] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event19)
[ 13047.785] (II) No input driver specified, ignoring this device.
[ 13047.785] (II) This device may have been added with another device file.
[ 13047.786] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event20)
[ 13047.786] (II) No input driver specified, ignoring this device.
[ 13047.786] (II) This device may have been added with another device file.
[ 13047.787] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event21)
[ 13047.787] (II) No input driver specified, ignoring this device.
[ 13047.787] (II) This device may have been added with another device file.
[ 13047.788] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event22)
[ 13047.788] (II) No input driver specified, ignoring this device.
[ 13047.788] (II) This device may have been added with another device file.
[ 13047.789] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[ 13047.789] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[ 13047.789] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[ 13047.789] (**) AT Translated Set 2 keyboard: always reports core events
[ 13047.789] (**) Option "Device" "/dev/input/event3"
[ 13047.789] (**) Option "_source" "server/udev"
[ 13047.791] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 13047.792] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[ 13047.794] (II) event3  - AT Translated Set 2 keyboard: device removed
[ 13047.817] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[ 13047.818] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[ 13047.820] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 13047.820] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

Offline

#7 2021-07-12 20:13:53

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,627

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

sudo X -configure

Don't. Neither this nor nvidia-settings will produce a usable/desired configuration for your setup.

Remove that file (/etc/X11/xorg.conf), restart X11/lightdm and post an updated xorg log (also re-check nvidia-smi in this condition)

Offline

#8 2021-07-12 20:34:21

peanutstick
Member
Registered: 2021-07-04
Posts: 39

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

I removed the file and restarted lightdm, my screen is back.
/var/log/Xorg.0.log

[ 15271.260]
X.Org X Server 1.20.12
X Protocol Version 11, Revision 0
[ 15271.260] Build Operating System: Linux Archlinux
[ 15271.260] Current Operating System: Linux peanutstick 5.12.15-arch1-1 #1 SMP PREEMPT Wed, 07 Jul 2021 23:35:29 +0000 x86_64
[ 15271.260] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=ea84beda-388c-4c3e-a3f3-dca9d67d9c15 rw loglevel=3 quiet
[ 15271.260] Build Date: 08 July 2021  08:00:40PM
[ 15271.260]
[ 15271.260] Current version of pixman: 0.40.0
[ 15271.260]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[ 15271.260] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 15271.260] (==) Log file: "/var/log/Xorg.0.log", Time: Mon Jul 12 22:24:14 2021
[ 15271.261] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 15271.261] (==) No Layout section.  Using the first Screen section.
[ 15271.261] (==) No screen section available. Using defaults.
[ 15271.261] (**) |-->Screen "Default Screen Section" (0)
[ 15271.261] (**) |   |-->Monitor "<default monitor>"
[ 15271.261] (==) No monitor specified for screen "Default Screen Section".
        Using a default monitor configuration.
[ 15271.261] (==) Automatically adding devices
[ 15271.261] (==) Automatically enabling devices
[ 15271.261] (==) Automatically adding GPU devices
[ 15271.261] (==) Automatically binding GPU devices
[ 15271.261] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 15271.261] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 15271.261]    Entry deleted from font path.
[ 15271.261] (==) FontPath set to:
        /usr/share/fonts/misc,
        /usr/share/fonts/TTF,
        /usr/share/fonts/OTF,
        /usr/share/fonts/100dpi,
        /usr/share/fonts/75dpi
[ 15271.261] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 15271.261] (II) The server relies on udev to provide the list of input devices.
        If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 15271.261] (II) Module ABI versions:
[ 15271.261]    X.Org ANSI C Emulation: 0.4
[ 15271.261]    X.Org Video Driver: 24.1
[ 15271.261]    X.Org XInput driver : 24.1
[ 15271.261]    X.Org Server Extension : 10.0
[ 15271.261] (++) using VT number 7

[ 15271.261] (II) systemd-logind: logind integration requires -keeptty and -keeptty was not provided, disabling logind integration
[ 15271.262] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 15271.262] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 15271.272] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 15271.276] (--) PCI:*(0@0:2:0) 8086:3e9b:17aa:39fe rev 0, Mem @ 0xa2000000/16777216, 0xb0000000/268435456, I/O @ 0x00005000/64, BIOS @ 0x????????/131072
[ 15271.276] (--) PCI: (1@0:0:0) 10de:1c8d:17aa:39fe rev 161, Mem @ 0xa3000000/16777216, 0x90000000/268435456, 0xa0000000/33554432, I/O @ 0x00004000/128, BIOS @ 0x????????/524288
[ 15271.276] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 15271.276] (II) LoadModule: "glx"
[ 15271.277] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 15271.280] (II) Module glx: vendor="X.Org Foundation"
[ 15271.280]    compiled for 1.20.12, module version = 1.0.0
[ 15271.280]    ABI class: X.Org Server Extension, version 10.0
[ 15271.280] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[ 15271.280]    loading driver: nvidia
[ 15271.280] (==) Matched intel as autoconfigured driver 0
[ 15271.280] (==) Matched nvidia as autoconfigured driver 1
[ 15271.280] (==) Matched nouveau as autoconfigured driver 2
[ 15271.280] (==) Matched nv as autoconfigured driver 3
[ 15271.280] (==) Matched modesetting as autoconfigured driver 4
[ 15271.280] (==) Matched fbdev as autoconfigured driver 5
[ 15271.280] (==) Matched vesa as autoconfigured driver 6
[ 15271.280] (==) Assigned the driver to the xf86ConfigLayout
[ 15271.280] (II) LoadModule: "intel"
[ 15271.281] (WW) Warning, couldn't open module intel
[ 15271.281] (EE) Failed to load module "intel" (module does not exist, 0)
[ 15271.281] (II) LoadModule: "nvidia"
[ 15271.281] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 15271.282] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 15271.282]    compiled for 1.6.99.901, module version = 1.0.0
[ 15271.282]    Module class: X.Org Video Driver
[ 15271.282] (II) LoadModule: "nouveau"
[ 15271.283] (WW) Warning, couldn't open module nouveau
[ 15271.283] (EE) Failed to load module "nouveau" (module does not exist, 0)
[ 15271.283] (II) LoadModule: "nv"
[ 15271.283] (WW) Warning, couldn't open module nv
[ 15271.283] (EE) Failed to load module "nv" (module does not exist, 0)
[ 15271.283] (II) LoadModule: "modesetting"
[ 15271.283] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[ 15271.285] (II) Module modesetting: vendor="X.Org Foundation"
[ 15271.285]    compiled for 1.20.12, module version = 1.20.12
[ 15271.285]    Module class: X.Org Video Driver
[ 15271.285]    ABI class: X.Org Video Driver, version 24.1
[ 15271.285] (II) LoadModule: "fbdev"
[ 15271.285] (WW) Warning, couldn't open module fbdev
[ 15271.285] (EE) Failed to load module "fbdev" (module does not exist, 0)
[ 15271.285] (II) LoadModule: "vesa"
[ 15271.285] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 15271.286] (II) Module vesa: vendor="X.Org Foundation"
[ 15271.286]    compiled for 1.20.9, module version = 2.5.0
[ 15271.286]    Module class: X.Org Video Driver
[ 15271.286]    ABI class: X.Org Video Driver, version 24.1
[ 15271.286] (II) NVIDIA dlloader X Driver  465.31  Thu May 13 22:19:15 UTC 2021
[ 15271.286] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 15271.286] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[ 15271.286] (II) VESA: driver for VESA chipsets: vesa
[ 15271.302] (II) modeset(0): using drv /dev/dri/card0
[ 15271.302] (II) Loading sub module "fb"
[ 15271.302] (II) LoadModule: "fb"
[ 15271.302] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 15271.303] (II) Module fb: vendor="X.Org Foundation"
[ 15271.303]    compiled for 1.20.12, module version = 1.0.0
[ 15271.303]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 15271.303] (II) Loading sub module "wfb"
[ 15271.303] (II) LoadModule: "wfb"
[ 15271.303] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 15271.304] (II) Module wfb: vendor="X.Org Foundation"
[ 15271.304]    compiled for 1.20.12, module version = 1.0.0
[ 15271.304]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 15271.304] (II) Loading sub module "ramdac"
[ 15271.304] (II) LoadModule: "ramdac"
[ 15271.304] (II) Module "ramdac" already built-in
[ 15271.305] (II) modeset(0): Creating default Display subsection in Screen section
        "Default Screen Section" for depth/fbbpp 24/32
[ 15271.305] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[ 15271.305] (==) modeset(0): RGB weight 888
[ 15271.305] (==) modeset(0): Default visual is TrueColor
[ 15271.305] (II) Loading sub module "glamoregl"
[ 15271.305] (II) LoadModule: "glamoregl"
[ 15271.305] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[ 15271.314] (II) Module glamoregl: vendor="X.Org Foundation"
[ 15271.314]    compiled for 1.20.12, module version = 1.0.1
[ 15271.314]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 15271.368] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics 630 (CFL GT2)
[ 15271.368] (II) modeset(0): glamor initialized
[ 15271.369] (II) modeset(0): Output eDP-1 has no monitor section
[ 15271.371] (II) modeset(0): EDID for output eDP-1
[ 15271.371] (II) modeset(0): Manufacturer: LGD  Model: 5e5  Serial#: 0
[ 15271.371] (II) modeset(0): Year: 2018  Week: 0
[ 15271.371] (II) modeset(0): EDID Version: 1.4
[ 15271.371] (II) modeset(0): Digital Display Input
[ 15271.371] (II) modeset(0): 8 bits per channel
[ 15271.371] (II) modeset(0): Digital interface is DisplayPort
[ 15271.371] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[ 15271.371] (II) modeset(0): Gamma: 2.20
[ 15271.371] (II) modeset(0): No DPMS capabilities specified
[ 15271.371] (II) modeset(0): Supported color encodings: RGB 4:4:4
[ 15271.371] (II) modeset(0): First detailed timing is preferred mode
[ 15271.371] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[ 15271.371] (II) modeset(0): redX: 0.590 redY: 0.370   greenX: 0.350 greenY: 0.555
[ 15271.371] (II) modeset(0): blueX: 0.155 blueY: 0.110   whiteX: 0.313 whiteY: 0.329
[ 15271.371] (II) modeset(0): Manufacturer's mask: 0
[ 15271.371] (II) modeset(0): Supported detailed timing:
[ 15271.371] (II) modeset(0): clock: 138.6 MHz   Image Size:  344 x 194 mm
[ 15271.371] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[ 15271.371] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1088 v_blanking: 1111 v_border: 0
[ 15271.371] (II) modeset(0):  LG Display
[ 15271.371] (II) modeset(0):  LP156WFC-SPD1
[ 15271.371] (II) modeset(0): EDID (in hex):
[ 15271.371] (II) modeset(0):   00ffffffffffff0030e4e50500000000
[ 15271.371] (II) modeset(0):   001c0104a52213780238d5975e598e27
[ 15271.371] (II) modeset(0):   1c505400000001010101010101010101
[ 15271.371] (II) modeset(0):   010101010101243680a070381f403020
[ 15271.371] (II) modeset(0):   350058c2100000190000000000000000
[ 15271.371] (II) modeset(0):   00000000000000000000000000fe004c
[ 15271.371] (II) modeset(0):   4720446973706c61790a2020000000fe
[ 15271.371] (II) modeset(0):   004c503135365746432d53504431003e
[ 15271.371] (II) modeset(0): Printing probed modes for output eDP-1
[ 15271.371] (II) modeset(0): Modeline "1920x1080"x60.0  138.60  1920 1968 2000 2080  1080 1083 1088 1111 -hsync -vsync (66.6 kHz eP)
[ 15271.371] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[ 15271.371] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[ 15271.371] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[ 15271.371] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[ 15271.371] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[ 15271.371] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[ 15271.371] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[ 15271.371] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[ 15271.371] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[ 15271.371] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[ 15271.371] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[ 15271.371] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[ 15271.371] (II) modeset(0): Output eDP-1 connected
[ 15271.371] (II) modeset(0): Using exact sizes for initial modes
[ 15271.371] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[ 15271.371] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[ 15271.371] (==) modeset(0): DPI set to (96, 96)
[ 15271.371] (II) Loading sub module "fb"
[ 15271.371] (II) LoadModule: "fb"
[ 15271.371] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 15271.371] (II) Module fb: vendor="X.Org Foundation"
[ 15271.371]    compiled for 1.20.12, module version = 1.0.0
[ 15271.371]    ABI class: X.Org ANSI C Emulation, version 0.4
[ 15271.371] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[ 15271.371] (==) NVIDIA(G0): RGB weight 888
[ 15271.371] (==) NVIDIA(G0): Default visual is TrueColor
[ 15271.371] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[ 15271.371] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[ 15271.371] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[ 15271.372] (**) NVIDIA(G0): Enabling 2D acceleration
[ 15271.372] (II) Loading sub module "glxserver_nvidia"
[ 15271.372] (II) LoadModule: "glxserver_nvidia"
[ 15271.372] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 15271.377] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 15271.377]    compiled for 1.6.99.901, module version = 1.0.0
[ 15271.377]    Module class: X.Org Server Extension
[ 15271.377] (II) NVIDIA GLX Module  465.31  Thu May 13 22:16:59 UTC 2021
[ 15271.377] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 15271.585] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 15271.585] (--) NVIDIA(0):     DFP-0
[ 15271.585] (--) NVIDIA(0):     DFP-1
[ 15271.585] (--) NVIDIA(0):     DFP-2
[ 15271.585] (--) NVIDIA(0):     DFP-3
[ 15271.585] (--) NVIDIA(0):     DFP-4
[ 15271.585] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce GTX 1050 (GP107-A) at PCI:1:0:0
[ 15271.585] (II) NVIDIA(G0):     (GPU-0)
[ 15271.585] (--) NVIDIA(G0): Memory: 2097152 kBytes
[ 15271.585] (--) NVIDIA(G0): VideoBIOS: 86.07.66.00.08
[ 15271.585] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[ 15271.585] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 15271.585] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[ 15271.585] (--) NVIDIA(GPU-0): DFP-0: 1440.0 MHz maximum pixel clock
[ 15271.585] (--) NVIDIA(GPU-0):
[ 15271.585] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 15271.585] (--) NVIDIA(GPU-0): DFP-1: Internal TMDS
[ 15271.585] (--) NVIDIA(GPU-0): DFP-1: 165.0 MHz maximum pixel clock
[ 15271.585] (--) NVIDIA(GPU-0):
[ 15271.585] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 15271.585] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 15271.585] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[ 15271.585] (--) NVIDIA(GPU-0):
[ 15271.585] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 15271.585] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 15271.585] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 15271.585] (--) NVIDIA(GPU-0):
[ 15271.585] (--) NVIDIA(GPU-0): DFP-4: disconnected
[ 15271.585] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[ 15271.585] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[ 15271.585] (--) NVIDIA(GPU-0):
[ 15271.585] (II) NVIDIA(G0): Validated MetaModes:
[ 15271.585] (II) NVIDIA(G0):     "NULL"
[ 15271.585] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[ 15271.585] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[ 15271.585] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[ 15271.585] (II) UnloadModule: "vesa"
[ 15271.585] (II) Unloading vesa
[ 15271.596] (==) modeset(0): Backing store enabled
[ 15271.596] (==) modeset(0): Silken mouse disabled
[ 15271.669] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[ 15271.669] (==) modeset(0): DPMS enabled
[ 15271.669] (II) modeset(0): [DRI2] Setup complete
[ 15271.669] (II) modeset(0): [DRI2]   DRI driver: iris
[ 15271.669] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[ 15271.670] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 15271.670] (II) NVIDIA:     access.
[ 15271.678] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 15271.678] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[ 15271.678] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[ 15271.678] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[ 15271.678] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[ 15271.678] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[ 15271.678] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[ 15271.678] (II) NVIDIA(G0):     Config Options in the README.
[ 15271.717] (II) NVIDIA(G0): Setting mode "NULL"
[ 15271.722] (==) NVIDIA(G0): Disabling shared memory pixmaps
[ 15271.722] (==) NVIDIA(G0): Backing store enabled
[ 15271.722] (==) NVIDIA(G0): Silken mouse disabled
[ 15271.722] (==) NVIDIA(G0): DPMS enabled
[ 15271.722] (II) Loading sub module "dri2"
[ 15271.722] (II) LoadModule: "dri2"
[ 15271.722] (II) Module "dri2" already built-in
[ 15271.722] (II) NVIDIA(G0): [DRI2] Setup complete
[ 15271.722] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[ 15271.723] (II) Initializing extension Generic Event Extension
[ 15271.723] (II) Initializing extension SHAPE
[ 15271.723] (II) Initializing extension MIT-SHM
[ 15271.723] (II) Initializing extension XInputExtension
[ 15271.723] (II) Initializing extension XTEST
[ 15271.723] (II) Initializing extension BIG-REQUESTS
[ 15271.723] (II) Initializing extension SYNC
[ 15271.723] (II) Initializing extension XKEYBOARD
[ 15271.723] (II) Initializing extension XC-MISC
[ 15271.723] (II) Initializing extension SECURITY
[ 15271.724] (II) Initializing extension XFIXES
[ 15271.724] (II) Initializing extension RENDER
[ 15271.724] (II) Initializing extension RANDR
[ 15271.724] (II) Initializing extension COMPOSITE
[ 15271.724] (II) Initializing extension DAMAGE
[ 15271.724] (II) Initializing extension MIT-SCREEN-SAVER
[ 15271.724] (II) Initializing extension DOUBLE-BUFFER
[ 15271.724] (II) Initializing extension RECORD
[ 15271.724] (II) Initializing extension DPMS
[ 15271.724] (II) Initializing extension Present
[ 15271.725] (II) Initializing extension DRI3
[ 15271.725] (II) Initializing extension X-Resource
[ 15271.725] (II) Initializing extension XVideo
[ 15271.725] (II) Initializing extension XVideo-MotionCompensation
[ 15271.725] (II) Initializing extension GLX
[ 15271.725] (II) Initializing extension GLX
[ 15271.725] (II) Indirect GLX disabled.
[ 15271.732] (II) AIGLX: Loaded and initialized iris
[ 15271.732] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 15271.732] (II) Initializing extension XFree86-VidModeExtension
[ 15271.732] (II) Initializing extension XFree86-DGA
[ 15271.732] (II) Initializing extension XFree86-DRI
[ 15271.732] (II) Initializing extension DRI2
[ 15271.732] (II) Initializing extension NV-GLX
[ 15271.732] (II) Initializing extension NV-CONTROL
[ 15271.733] (II) modeset(0): Damage tracking initialized
[ 15271.733] (II) modeset(0): Setting screen physical size to 508 x 285
[ 15271.778] (II) config/udev: Adding input device Video Bus (/dev/input/event15)
[ 15271.779] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 15271.779] (II) LoadModule: "libinput"
[ 15271.779] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 15271.780] (II) Module libinput: vendor="X.Org Foundation"
[ 15271.780]    compiled for 1.20.11, module version = 1.1.0
[ 15271.780]    Module class: X.Org XInput Driver
[ 15271.780]    ABI class: X.Org XInput driver, version 24.1
[ 15271.780] (II) Using input driver 'libinput' for 'Video Bus'
[ 15271.780] (**) Video Bus: always reports core events
[ 15271.780] (**) Option "Device" "/dev/input/event15"
[ 15271.780] (**) Option "_source" "server/udev"
[ 15271.781] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[ 15271.781] (II) event15 - Video Bus: device is a keyboard
[ 15271.781] (II) event15 - Video Bus: device removed
[ 15271.844] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input16/event15"
[ 15271.844] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 6)
[ 15271.845] (II) event15 - Video Bus: is tagged by udev as: Keyboard
[ 15271.845] (II) event15 - Video Bus: device is a keyboard
[ 15271.845] (II) config/udev: Adding input device Video Bus (/dev/input/event14)
[ 15271.846] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 15271.846] (II) Using input driver 'libinput' for 'Video Bus'
[ 15271.846] (**) Video Bus: always reports core events
[ 15271.846] (**) Option "Device" "/dev/input/event14"
[ 15271.846] (**) Option "_source" "server/udev"
[ 15271.846] (II) event14 - Video Bus: is tagged by udev as: Keyboard
[ 15271.846] (II) event14 - Video Bus: device is a keyboard
[ 15271.847] (II) event14 - Video Bus: device removed
[ 15271.897] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input15/event14"
[ 15271.897] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[ 15271.900] (II) event14 - Video Bus: is tagged by udev as: Keyboard
[ 15271.900] (II) event14 - Video Bus: device is a keyboard
[ 15271.902] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 15271.902] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 15271.902] (II) Using input driver 'libinput' for 'Power Button'
[ 15271.902] (**) Power Button: always reports core events
[ 15271.902] (**) Option "Device" "/dev/input/event1"
[ 15271.902] (**) Option "_source" "server/udev"
[ 15271.904] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 15271.904] (II) event1  - Power Button: device is a keyboard
[ 15271.904] (II) event1  - Power Button: device removed
[ 15271.937] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[ 15271.937] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[ 15271.939] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 15271.940] (II) event1  - Power Button: device is a keyboard
[ 15271.941] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[ 15271.941] (II) No input driver specified, ignoring this device.
[ 15271.941] (II) This device may have been added with another device file.
[ 15271.942] (II) config/udev: Adding input device Sleep Button (/dev/input/event2)
[ 15271.942] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[ 15271.942] (II) Using input driver 'libinput' for 'Sleep Button'
[ 15271.942] (**) Sleep Button: always reports core events
[ 15271.942] (**) Option "Device" "/dev/input/event2"
[ 15271.942] (**) Option "_source" "server/udev"
[ 15271.944] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[ 15271.944] (II) event2  - Sleep Button: device is a keyboard
[ 15271.945] (II) event2  - Sleep Button: device removed
[ 15271.977] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2/event2"
[ 15271.977] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[ 15271.979] (II) event2  - Sleep Button: is tagged by udev as: Keyboard
[ 15271.980] (II) event2  - Sleep Button: device is a keyboard
[ 15271.981] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event9)
[ 15271.982] (II) No input driver specified, ignoring this device.
[ 15271.982] (II) This device may have been added with another device file.
[ 15271.983] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event10)
[ 15271.983] (II) No input driver specified, ignoring this device.
[ 15271.983] (II) This device may have been added with another device file.
[ 15271.984] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event11)
[ 15271.984] (II) No input driver specified, ignoring this device.
[ 15271.984] (II) This device may have been added with another device file.
[ 15271.985] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event12)
[ 15271.985] (II) No input driver specified, ignoring this device.
[ 15271.985] (II) This device may have been added with another device file.
[ 15271.986] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event7)
[ 15271.986] (II) No input driver specified, ignoring this device.
[ 15271.986] (II) This device may have been added with another device file.
[ 15271.987] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event8)
[ 15271.987] (II) No input driver specified, ignoring this device.
[ 15271.987] (II) This device may have been added with another device file.
[ 15271.989] (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event13)
[ 15271.989] (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
[ 15271.989] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
[ 15271.989] (**) Integrated Camera: Integrated C: always reports core events
[ 15271.989] (**) Option "Device" "/dev/input/event13"
[ 15271.989] (**) Option "_source" "server/udev"
[ 15271.992] (II) event13 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[ 15271.992] (II) event13 - Integrated Camera: Integrated C: device is a keyboard
[ 15271.993] (II) event13 - Integrated Camera: Integrated C: device removed
[ 15272.057] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6/1-6:1.0/input/input14/event13"
[ 15272.057] (II) XINPUT: Adding extended input device "Integrated Camera: Integrated C" (type: KEYBOARD, id 10)
[ 15272.061] (II) event13 - Integrated Camera: Integrated C: is tagged by udev as: Keyboard
[ 15272.061] (II) event13 - Integrated Camera: Integrated C: device is a keyboard
[ 15272.063] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Mouse (/dev/input/event5)
[ 15272.063] (**) SYNA2B46:00 06CB:CD5F Mouse: Applying InputClass "libinput pointer catchall"
[ 15272.063] (II) Using input driver 'libinput' for 'SYNA2B46:00 06CB:CD5F Mouse'
[ 15272.063] (**) SYNA2B46:00 06CB:CD5F Mouse: always reports core events
[ 15272.064] (**) Option "Device" "/dev/input/event5"
[ 15272.064] (**) Option "_source" "server/udev"
[ 15272.066] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: is tagged by udev as: Mouse Pointingstick
[ 15272.067] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: device is a pointer
[ 15272.069] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: device removed
[ 15272.124] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA2B46:00/0018:06CB:CD5F.0001/input/input19/event5"
[ 15272.124] (II) XINPUT: Adding extended input device "SYNA2B46:00 06CB:CD5F Mouse" (type: MOUSE, id 11)
[ 15272.124] (**) Option "AccelerationScheme" "none"
[ 15272.124] (**) SYNA2B46:00 06CB:CD5F Mouse: (accel) selected scheme none/0
[ 15272.124] (**) SYNA2B46:00 06CB:CD5F Mouse: (accel) acceleration factor: 2.000
[ 15272.124] (**) SYNA2B46:00 06CB:CD5F Mouse: (accel) acceleration threshold: 4
[ 15272.127] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: is tagged by udev as: Mouse Pointingstick
[ 15272.128] (II) event5  - SYNA2B46:00 06CB:CD5F Mouse: device is a pointer
[ 15272.131] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Mouse (/dev/input/mouse0)
[ 15272.131] (II) No input driver specified, ignoring this device.
[ 15272.131] (II) This device may have been added with another device file.
[ 15272.133] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Touchpad (/dev/input/event6)
[ 15272.133] (**) SYNA2B46:00 06CB:CD5F Touchpad: Applying InputClass "libinput touchpad catchall"
[ 15272.133] (II) Using input driver 'libinput' for 'SYNA2B46:00 06CB:CD5F Touchpad'
[ 15272.133] (**) SYNA2B46:00 06CB:CD5F Touchpad: always reports core events
[ 15272.133] (**) Option "Device" "/dev/input/event6"
[ 15272.133] (**) Option "_source" "server/udev"
[ 15272.135] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: is tagged by udev as: Touchpad
[ 15272.138] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: device is a touchpad
[ 15272.139] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: device removed
[ 15272.191] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-SYNA2B46:00/0018:06CB:CD5F.0001/input/input20/event6"
[ 15272.191] (II) XINPUT: Adding extended input device "SYNA2B46:00 06CB:CD5F Touchpad" (type: TOUCHPAD, id 12)
[ 15272.193] (**) Option "AccelerationScheme" "none"
[ 15272.193] (**) SYNA2B46:00 06CB:CD5F Touchpad: (accel) selected scheme none/0
[ 15272.193] (**) SYNA2B46:00 06CB:CD5F Touchpad: (accel) acceleration factor: 2.000
[ 15272.193] (**) SYNA2B46:00 06CB:CD5F Touchpad: (accel) acceleration threshold: 4
[ 15272.196] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: is tagged by udev as: Touchpad
[ 15272.199] (II) event6  - SYNA2B46:00 06CB:CD5F Touchpad: device is a touchpad
[ 15272.201] (II) config/udev: Adding input device SYNA2B46:00 06CB:CD5F Touchpad (/dev/input/mouse1)
[ 15272.201] (II) No input driver specified, ignoring this device.
[ 15272.201] (II) This device may have been added with another device file.
[ 15272.203] (II) config/udev: Adding input device Ideapad extra buttons (/dev/input/event4)
[ 15272.203] (**) Ideapad extra buttons: Applying InputClass "libinput keyboard catchall"
[ 15272.203] (II) Using input driver 'libinput' for 'Ideapad extra buttons'
[ 15272.203] (**) Ideapad extra buttons: always reports core events
[ 15272.203] (**) Option "Device" "/dev/input/event4"
[ 15272.203] (**) Option "_source" "server/udev"
[ 15272.205] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[ 15272.205] (II) event4  - Ideapad extra buttons: device is a keyboard
[ 15272.206] (II) event4  - Ideapad extra buttons: device removed
[ 15272.257] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1f.0/PNP0C09:00/VPC2004:00/input/input4/event4"
[ 15272.257] (II) XINPUT: Adding extended input device "Ideapad extra buttons" (type: KEYBOARD, id 13)
[ 15272.260] (II) event4  - Ideapad extra buttons: is tagged by udev as: Keyboard
[ 15272.260] (II) event4  - Ideapad extra buttons: device is a keyboard
[ 15272.262] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event16)
[ 15272.262] (II) No input driver specified, ignoring this device.
[ 15272.262] (II) This device may have been added with another device file.
[ 15272.263] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event17)
[ 15272.263] (II) No input driver specified, ignoring this device.
[ 15272.263] (II) This device may have been added with another device file.
[ 15272.264] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event18)
[ 15272.264] (II) No input driver specified, ignoring this device.
[ 15272.264] (II) This device may have been added with another device file.
[ 15272.265] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event19)
[ 15272.265] (II) No input driver specified, ignoring this device.
[ 15272.265] (II) This device may have been added with another device file.
[ 15272.266] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event20)
[ 15272.266] (II) No input driver specified, ignoring this device.
[ 15272.266] (II) This device may have been added with another device file.
[ 15272.267] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=9 (/dev/input/event21)
[ 15272.267] (II) No input driver specified, ignoring this device.
[ 15272.267] (II) This device may have been added with another device file.
[ 15272.268] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=10 (/dev/input/event22)
[ 15272.268] (II) No input driver specified, ignoring this device.
[ 15272.268] (II) This device may have been added with another device file.
[ 15272.269] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[ 15272.269] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[ 15272.269] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[ 15272.269] (**) AT Translated Set 2 keyboard: always reports core events
[ 15272.269] (**) Option "Device" "/dev/input/event3"
[ 15272.270] (**) Option "_source" "server/udev"
[ 15272.272] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 15272.272] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[ 15272.274] (II) event3  - AT Translated Set 2 keyboard: device removed
[ 15272.310] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[ 15272.310] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
[ 15272.313] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 15272.313] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard

If I do prime-run glxinfo he error is gone.
For nvidia-smi it's still off:

Mon Jul 12 22:33:16 2021
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 465.31       Driver Version: 465.31       CUDA Version: 11.3     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  NVIDIA GeForce ...  Off  | 00000000:01:00.0 Off |                  N/A |
| N/A   40C    P8    N/A /  N/A |     37MiB /  2000MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|    0   N/A  N/A      8196      G   /usr/lib/Xorg                      34MiB |
+-----------------------------------------------------------------------------+

Offline

#9 2021-07-12 20:36:57

peanutstick
Member
Registered: 2021-07-04
Posts: 39

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

After a reboot the error is back:

$ prime-run glxinfo
name of display: :0.0
X Error of failed request:  BadValue (integer parameter out of range for operation)
  Major opcode of failed request:  152 (GLX)
  Minor opcode of failed request:  24 (X_GLXCreateNewContext)
  Value in failed request:  0x0
  Serial number of failed request:  50
  Current serial number in output stream:  51

To remove the error I have to restart lightdm

Last edited by peanutstick (2021-07-12 20:39:05)

Offline

#10 2021-07-12 20:43:07

seth
Member
From: Don't DM me only for attention
Registered: 2012-09-03
Posts: 74,627

Offline

#11 2021-07-13 07:38:40

peanutstick
Member
Registered: 2021-07-04
Posts: 39

Re: [SOLVED] Nvidia driver, error with prime-run glxinfo

In /etc/mkinitcpio.conf I added the 2 video drivers:

MODULES=(i915 nvidia)

And build the image with

sudo mkinitcpio -p linux

After a reboot the error is gone.
Thank seth.

Offline

Board footer

Powered by FluxBB