You are not logged in.

#26 2023-07-02 07:06:05

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

EDIT: what did you mean by setting the mode to xga?

xrandr --outpput eDP-1 --mode 1024x768
export LIBGL_ALWAYS_SOFTWARE=1

And then run the game.

seth wrote:

So is there another process that fails to start w/ the modesetting driver but succeeds w/ xf86-video-intel, so we maybe can debug that?

without the xf86-video-intel the intel module fails to load

That's hardly a surprise.
But

[    15.056] (II) Loading sub module "glamoregl"
[    15.056] (II) LoadModule: "glamoregl"
[    15.056] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    15.069] (II) Module glamoregl: vendor="X.Org Foundation"
[    15.069] 	compiled for 1.21.1.8, module version = 1.0.1
[    15.069] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.993] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics (CML GT2)
[    15.993] (II) modeset(0): glamor initialized
[    15.993] (==) modeset(0): VariableRefresh: disabled
[    15.993] (==) modeset(0): AsyncFlipSecondaries: disabled
[    15.995] (II) modeset(0): Output eDP-1 has no monitor section
[    16.395] (II) modeset(0): Output DP-1 has no monitor section
[    16.417] (II) modeset(0): Output HDMI-1 has no monitor section
[    16.817] (II) modeset(0): Output DP-2 has no monitor section
[    16.839] (II) modeset(0): Output HDMI-2 has no monitor section
[    17.794] (II) modeset(0): Output DP-3 has no monitor section
[    17.796] (II) modeset(0): EDID for output eDP-1

this takes almost 2 seconds, what's not explainable by anything in the xorg log.

The X11 server gets autostarted w/ the boot?

Online

#27 2023-07-02 14:43:34

sorcery0358
Member
Registered: 2023-06-26
Posts: 19

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

still no luck with setting the mode to XGA.

it seems like only wine/proton games fail not native ones.

i use ly as DM so xserver starts after login.

Offline

#28 2023-07-02 15:20:42

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

still no luck with setting the mode to XGA.

What does that mean?

i use ly as DM so xserver starts after login.

Stop doing that. ly is systematically broken and will leave you w/ a degraded session, meaning you could easily lack permissions to device nodes.

Try startx/xinit instead (and see the last link below to avoid ending up w/ that being broken as well)

Online

#29 2023-07-07 20:13:06

sorcery0358
Member
Registered: 2023-06-26
Posts: 19

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

$ xrandr --outpput eDP-1 --mode 1024x768
export LIBGL_ALWAYS_SOFTWARE=1

again nothing changes

nothing seems to change without ly too. it used to use my xinitrc anyway.
here is my .xinitrc

#!/bin/sh

# Compositor
picom --backend glx --vsync &

# Authentication Agent
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &

# Status Bar
/home/sorcery/.repos/dwm-sorcery/dwm-6.2/dwm-bar/dwm_bar.sh &

# Wallpaper
nitrogen --restore &

# Conky
#conky -c ".repos/dotfiles/conky/gotham-2" &

# Notification Daemon
dunst &

# Keyboard Layout
setxkbmap us &

# KDE Connect
kdeconnect-indicator &

# Screen Lock
xautolock -time 5 -locker slock &
caffeine &

# Loop
while true; do
        dwm >/dev/null 2>&1
done

# Execute dwm
exec dwm

Offline

#30 2023-07-07 20:17:06

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

Your xinitrc is broken, see the last link below and the note on what to include at least (you're running into the same problem as ly)

Unrelated, but don't fork setxkbmap, that's racy.

xrandr --outpput eDP-1 --mode 1024x768

Typo. Mine. Sorry.

xrandr --output eDP-1 --mode 1024x768

Your monitor should switch to XGA w/ that.

seth twice wrote:

So is there another process that fails to start w/ the modesetting driver but succeeds w/ xf86-video-intel, so we maybe can debug that?

Online

#31 2023-07-07 20:47:18

sorcery0358
Member
Registered: 2023-06-26
Posts: 19

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

xinitrc fixed... i guess?

#!/bin/sh

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

# merge in defaults and keymaps

if [ -f $sysresources ]; then







    xrdb -merge $sysresources

fi

if [ -f $sysmodmap ]; then
    xmodmap $sysmodmap
fi

if [ -f "$userresources" ]; then







    xrdb -merge "$userresources"

fi

if [ -f "$usermodmap" ]; then
    xmodmap "$usermodmap"
fi

# start some nice programs

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

# Compositor
picom --backend glx --vsync &

# Authentication Agent
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &

# Status Bar
/home/sorcery/.repos/dwm-sorcery/dwm-6.2/dwm-bar/dwm_bar.sh &

# Wallpaper
nitrogen --restore &

# Conky
#conky -c ".repos/dotfiles/conky/gotham-2" &

# Notification Daemon
dunst &

# KDE Connect
kdeconnect-indicator &

# Screen Lock
xautolock -time 5 -locker slock &
caffeine &

# Loop
while true; do
        dwm >/dev/null 2>&1
done

# Execute dwm
exec dwm

still nothing changed

no difference with typo corrected (i ve corrected it in the first time)

i dont think there is another process exept wine/proton games, native ones open fine (havent tested the performance of them)

EDIT: as i said xserver starts slower without xf86-video-intel

Last edited by sorcery0358 (2023-07-07 20:51:56)

Offline

#32 2023-07-07 21:04:45

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

no difference with typo corrected (i ve corrected it in the first time)

Does the resolution change to XGA with that command?
Does it w/ the intel driver?
Does it w/ the LTS kernel?

Online

#33 2023-07-12 00:26:25

sorcery0358
Member
Registered: 2023-06-26
Posts: 19

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

yes it changes without xf86-video-linux.
but with it it does not.

here is the xrandr output without xf86-video-linux:

$ xrandr
Screen 0: minimum 320 x 200, current 3840 x 1080, maximum 16384 x 16384
eDP-1 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 344mm x 194mm
   1920x1080     60.00*+  59.97    59.96    59.93    48.00  
   1680x1050     59.95    59.88  
   1400x1050     59.98  
   1600x900      59.99    59.94    59.95    59.82  
   1280x1024     60.02  
   1400x900      59.96    59.88  
   1280x960      60.00  
   1440x810      60.00    59.97  
   1368x768      59.88    59.85  
   1280x800      59.99    59.97    59.81    59.91  
   1280x720      60.00    59.99    59.86    59.74  
   1024x768      60.04    60.00  
   960x720       60.00  
   928x696       60.05  
   896x672       60.01  
   1024x576      59.95    59.96    59.90    59.82  
   960x600       59.93    60.00  
   960x540       59.96    59.99    59.63    59.82  
   800x600       60.00    60.32    56.25  
   840x525       60.01    59.88  
   864x486       59.92    59.57  
   700x525       59.98  
   800x450       59.95    59.82  
   640x512       60.02  
   700x450       59.96    59.88  
   640x480       60.00    59.94  
   720x405       59.51    58.99  
   684x384       59.88    59.85  
   640x400       59.88    59.98  
   640x360       59.86    59.83    59.84    59.32  
   512x384       60.00  
   512x288       60.00    59.92  
   480x270       59.63    59.82  
   400x300       60.32    56.34  
   432x243       59.92    59.57  
   320x240       60.05  
   360x202       59.51    59.13  
   320x180       59.84    59.32  
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
DP-1-0 disconnected (normal left inverted right x axis y axis)
DP-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-2 disconnected (normal left inverted right x axis y axis)
HDMI-1-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 527mm x 296mm
   1920x1080     60.00*+  59.94    50.00  
   1680x1050     59.95  
   1600x1200     60.00  
   1600x900      60.00  
   1440x900      59.89  
   1400x1050     59.98  
   1280x1024     75.02    60.02  
   1280x960      60.00  
   1280x720      60.00    59.94    50.00  
   1024x768      75.03    70.07    60.00  
   800x600       75.00    72.19    60.32    56.25  
   720x576       50.00  
   720x480       59.94  
   640x480       75.00    72.81    59.94    59.93  
DP-1-3 disconnected (normal left inverted right x axis y axis)
  1680x1050 (0x4d) 146.250MHz -HSync +VSync
        h: width  1680 start 1784 end 1960 total 2240 skew    0 clock  65.29KHz
        v: height 1050 start 1053 end 1059 total 1089           clock  59.95Hz
  1280x1024 (0x54) 108.000MHz +HSync +VSync
        h: width  1280 start 1328 end 1440 total 1688 skew    0 clock  63.98KHz
        v: height 1024 start 1025 end 1028 total 1066           clock  60.02Hz
  1280x960 (0x57) 108.000MHz +HSync +VSync
        h: width  1280 start 1376 end 1488 total 1800 skew    0 clock  60.00KHz
        v: height  960 start  961 end  964 total 1000           clock  60.00Hz
  1024x768 (0x65) 65.000MHz -HSync -VSync
        h: width  1024 start 1048 end 1184 total 1344 skew    0 clock  48.36KHz
        v: height  768 start  771 end  777 total  806           clock  60.00Hz
  800x600 (0x74) 40.000MHz +HSync +VSync
        h: width   800 start  840 end  968 total 1056 skew    0 clock  37.88KHz
        v: height  600 start  601 end  605 total  628           clock  60.32Hz
  800x600 (0x75) 36.000MHz +HSync +VSync
        h: width   800 start  824 end  896 total 1024 skew    0 clock  35.16KHz
        v: height  600 start  601 end  603 total  625           clock  56.25Hz
  640x480 (0x81) 25.175MHz -HSync -VSync
        h: width   640 start  656 end  752 total  800 skew    0 clock  31.47KHz
        v: height  480 start  490 end  492 total  525           clock  59.94Hz

with xf86-video-linux:

$ xrandr
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 32767 x 32767
eDP1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 340mm x 190mm
   1920x1080     60.00*+  48.00
DP1 disconnected (normal left inverted right x axis y axis)
DP2 disconnected (normal left inverted right x axis y axis)
DP3 disconnected (normal left inverted right x axis y axis)
HDMI1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
DP-1-0 disconnected (normal left inverted right x axis y axis)
DP-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-2 disconnected (normal left inverted right x axis y axis)
HDMI-1-0 connected (normal left inverted right x axis y axis)
   1920x1080     60.00 +  59.94    50.00
   1680x1050     59.95
   1600x1200     60.00
   1600x900      60.00
   1440x900      59.89
   1400x1050     59.98
   1280x1024     75.02    60.02
   1280x960      60.00
   1280x720      60.00    59.94    50.00
   1024x768      75.03    70.07    60.00
   800x600       75.00    72.19    60.32    56.25
   720x576       50.00
   720x480       59.94
   640x480       75.00    72.81    59.94    59.93
DP-1-3 disconnected (normal left inverted right x axis y axis)

the LTS kernel changes nothing.

Offline

#34 2023-07-16 13:23:35

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

https://man.archlinux.org/man/extra/xor … #Option~56

Section "Monitor"
   Identifier "eDP-1"
   Option "DefaultModes" "False"
EndSection

Check the xorg log and xrandr output on whether this gets applied, you want to have only the 1920x1080@60/50 modes for eDP-1 (like w/ the intel driver, nb. that the output names vary w/ the driver in use. Unfortunately.)

Online

#35 2023-07-30 20:31:48

sorcery0358
Member
Registered: 2023-06-26
Posts: 19

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

$ xrandr
Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 16384 x 16384
eDP-1 connected primary 1920x1080+0+0 (normal left inverted right x axis y axis) 34
   1920x1080     60.00*+  59.97    59.96    59.93    48.00
   1680x1050     59.95    59.88
   1400x1050     59.98
   1600x900      59.99    59.94    59.95    59.82
   1280x1024     60.02
   1400x900      59.96    59.88
   1280x960      60.00
   1440x810      60.00    59.97
   1368x768      59.88    59.85
   1280x800      59.99    59.97    59.81    59.91
   1280x720      60.00    59.99    59.86    59.74
   1024x768      60.04    60.00
   960x720       60.00
   928x696       60.05
   896x672       60.01
   1024x576      59.95    59.96    59.90    59.82
   960x600       59.93    60.00
   960x540       59.96    59.99    59.63    59.82
   800x600       60.00    60.32    56.25
   840x525       60.01    59.88
   864x486       59.92    59.57
   700x525       59.98
   800x450       59.95    59.82
   640x512       60.02
   700x450       59.96    59.88
   640x480       60.00    59.94
   720x405       59.51    58.99
   684x384       59.88    59.85
   640x400       59.88    59.98
   640x360       59.86    59.83    59.84    59.32
   512x384       60.00
   512x288       60.00    59.92
   480x270       59.63    59.82
   400x300       60.32    56.34
   432x243       59.92    59.57
   320x240       60.05
   360x202       59.51    59.13
   320x180       59.84    59.32
DP-1 disconnected (normal left inverted right x axis y axis)
HDMI-1 disconnected (normal left inverted right x axis y axis)
DP-2 disconnected (normal left inverted right x axis y axis)
HDMI-2 disconnected (normal left inverted right x axis y axis)
DP-3 disconnected (normal left inverted right x axis y axis)
DP-1-0 disconnected (normal left inverted right x axis y axis)
DP-1-1 disconnected (normal left inverted right x axis y axis)
DP-1-2 disconnected (normal left inverted right x axis y axis)
HDMI-1-0 disconnected (normal left inverted right x axis y axis)
DP-1-3 disconnected (normal left inverted right x axis y axis)

xorg log:

[    14.971] 
X.Org X Server 1.21.1.8
X Protocol Version 11, Revision 0
[    14.972] Current Operating System: Linux thinkpad 6.4.7-arch1-1 #1 SMP PREEMPT_DYNAMIC Thu, 27 Jul 2023 22:02:18 +0000 x86_64
[    14.972] Kernel command line: initrd=\intel-ucode.img initrd=\initramfs-linux.img root=PARTUUID=7ff7e3b9-2805-4775-b1e8-e17de632292a rw rootfstype=ext4
[    14.972]  
[    14.972] Current version of pixman: 0.42.2
[    14.972] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    14.972] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    14.973] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jul 30 23:18:55 2023
[    14.974] (==) Using config file: "/etc/X11/xorg.conf"
[    14.974] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    14.974] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    14.976] (==) No Layout section.  Using the first Screen section.
[    14.976] (==) No screen section available. Using defaults.
[    14.976] (**) |-->Screen "Default Screen Section" (0)
[    14.976] (**) |   |-->Monitor "<default monitor>"
[    14.976] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    14.976] (==) Automatically adding devices
[    14.976] (==) Automatically enabling devices
[    14.976] (==) Automatically adding GPU devices
[    14.976] (==) Automatically binding GPU devices
[    14.976] (==) Max clients allowed: 256, resource mask: 0x1fffff
[    14.977] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/misc".
[    14.977] 	Entry deleted from font path.
[    14.977] 	(Run 'mkfontdir' on "/usr/share/fonts/misc").
[    14.977] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/TTF".
[    14.977] 	Entry deleted from font path.
[    14.977] 	(Run 'mkfontdir' on "/usr/share/fonts/TTF").
[    14.977] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[    14.977] 	Entry deleted from font path.
[    14.977] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[    14.977] 	Entry deleted from font path.
[    14.977] (WW) The directory "/usr/share/fonts/100dpi" does not exist.
[    14.977] 	Entry deleted from font path.
[    14.977] (WW) The directory "/usr/share/fonts/75dpi" does not exist.
[    14.977] 	Entry deleted from font path.
[    14.977] (==) FontPath set to:
	
[    14.977] (==) ModulePath set to "/usr/lib/xorg/modules"
[    14.977] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    14.977] (II) Module ABI versions:
[    14.977] 	X.Org ANSI C Emulation: 0.4
[    14.977] 	X.Org Video Driver: 25.2
[    14.977] 	X.Org XInput driver : 24.4
[    14.977] 	X.Org Server Extension : 10.0
[    14.979] (++) using VT number 2

[    14.979] (--) controlling tty is VT number 2, auto-enabling KeepTty
[    14.982] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    14.985] (II) xfree86: Adding drm device (/dev/dri/card1)
[    14.985] (II) Platform probe for /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1
[    14.987] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 13 paused 0
[    14.987] (II) xfree86: Adding drm device (/dev/dri/card0)
[    14.987] (II) Platform probe for /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[    14.988] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 14 paused 0
[    14.994] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[    14.998] (--) PCI:*(0@0:2:0) 8086:9bc4:17aa:22c3 rev 5, Mem @ 0x6040000000/16777216, 0x4000000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[    14.998] (--) PCI: (1@0:0:0) 10de:1e93:17aa:22c3 rev 161, Mem @ 0xed000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
[    14.998] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    14.998] (II) LoadModule: "glx"
[    15.000] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    15.006] (II) Module glx: vendor="X.Org Foundation"
[    15.006] 	compiled for 1.21.1.8, module version = 1.0.0
[    15.006] 	ABI class: X.Org Server Extension, version 10.0
[    15.006] (II) Applying OutputClass "nvidia" to /dev/dri/card1
[    15.006] 	loading driver: nvidia
[    15.006] (==) Matched intel as autoconfigured driver 0
[    15.006] (==) Matched nvidia as autoconfigured driver 1
[    15.006] (==) Matched nouveau as autoconfigured driver 2
[    15.006] (==) Matched nv as autoconfigured driver 3
[    15.006] (==) Matched modesetting as autoconfigured driver 4
[    15.006] (==) Matched fbdev as autoconfigured driver 5
[    15.006] (==) Matched vesa as autoconfigured driver 6
[    15.006] (==) Assigned the driver to the xf86ConfigLayout
[    15.006] (II) LoadModule: "intel"
[    15.007] (WW) Warning, couldn't open module intel
[    15.007] (EE) Failed to load module "intel" (module does not exist, 0)
[    15.007] (II) LoadModule: "nvidia"
[    15.007] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    15.010] (II) Module nvidia: vendor="NVIDIA Corporation"
[    15.010] 	compiled for 1.6.99.901, module version = 1.0.0
[    15.010] 	Module class: X.Org Video Driver
[    15.011] (II) LoadModule: "nouveau"
[    15.011] (WW) Warning, couldn't open module nouveau
[    15.011] (EE) Failed to load module "nouveau" (module does not exist, 0)
[    15.011] (II) LoadModule: "nv"
[    15.012] (WW) Warning, couldn't open module nv
[    15.012] (EE) Failed to load module "nv" (module does not exist, 0)
[    15.012] (II) LoadModule: "modesetting"
[    15.012] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    15.015] (II) Module modesetting: vendor="X.Org Foundation"
[    15.015] 	compiled for 1.21.1.8, module version = 1.21.1
[    15.015] 	Module class: X.Org Video Driver
[    15.015] 	ABI class: X.Org Video Driver, version 25.2
[    15.015] (II) LoadModule: "fbdev"
[    15.015] (WW) Warning, couldn't open module fbdev
[    15.015] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    15.015] (II) LoadModule: "vesa"
[    15.016] (WW) Warning, couldn't open module vesa
[    15.016] (EE) Failed to load module "vesa" (module does not exist, 0)
[    15.016] (II) NVIDIA dlloader X Driver  535.86.05  Fri Jul 14 20:26:08 UTC 2023
[    15.016] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    15.016] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    15.016] (II) modeset(0): using drv /dev/dri/card0
[    15.016] (II) systemd-logind: releasing fd for 226:1
[    15.018] (II) Loading sub module "fb"
[    15.018] (II) LoadModule: "fb"
[    15.018] (II) Module "fb" already built-in
[    15.018] (II) Loading sub module "wfb"
[    15.018] (II) LoadModule: "wfb"
[    15.018] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    15.019] (II) Module wfb: vendor="X.Org Foundation"
[    15.019] 	compiled for 1.21.1.8, module version = 1.0.0
[    15.019] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.020] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    15.020] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    15.020] (==) modeset(0): RGB weight 888
[    15.020] (==) modeset(0): Default visual is TrueColor
[    15.020] (II) Loading sub module "glamoregl"
[    15.020] (II) LoadModule: "glamoregl"
[    15.020] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[    15.032] (II) Module glamoregl: vendor="X.Org Foundation"
[    15.032] 	compiled for 1.21.1.8, module version = 1.0.1
[    15.032] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    15.912] (II) modeset(0): glamor X acceleration enabled on Mesa Intel(R) UHD Graphics (CML GT2)
[    15.912] (II) modeset(0): glamor initialized
[    15.912] (==) modeset(0): VariableRefresh: disabled
[    15.912] (==) modeset(0): AsyncFlipSecondaries: disabled
[    15.914] (II) modeset(0): Output eDP-1 using monitor section eDP-1
[    15.914] (**) modeset(0): Option "DefaultModes" "False"
[    16.315] (II) modeset(0): Output DP-1 has no monitor section
[    16.336] (II) modeset(0): Output HDMI-1 has no monitor section
[    16.736] (II) modeset(0): Output DP-2 has no monitor section
[    16.758] (II) modeset(0): Output HDMI-2 has no monitor section
[    17.712] (II) modeset(0): Output DP-3 has no monitor section
[    17.714] (II) modeset(0): EDID for output eDP-1
[    17.714] (II) modeset(0): Manufacturer: BOE  Model: 853  Serial#: 0
[    17.714] (II) modeset(0): Year: 2018  Week: 48
[    17.714] (II) modeset(0): EDID Version: 1.4
[    17.714] (II) modeset(0): Digital Display Input
[    17.714] (II) modeset(0): 10 bits per channel
[    17.714] (II) modeset(0): Digital interface is DisplayPort
[    17.714] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    17.714] (II) modeset(0): Gamma: 2.20
[    17.714] (II) modeset(0): No DPMS capabilities specified
[    17.714] (II) modeset(0): Supported color encodings: RGB 4:4:4 
[    17.714] (II) modeset(0): First detailed timing is preferred mode
[    17.714] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    17.714] (II) modeset(0): Display is continuous-frequency
[    17.714] (II) modeset(0): redX: 0.682 redY: 0.314   greenX: 0.279 greenY: 0.668
[    17.714] (II) modeset(0): blueX: 0.153 blueY: 0.060   whiteX: 0.313 whiteY: 0.329
[    17.714] (II) modeset(0): Manufacturer's mask: 0
[    17.714] (II) modeset(0): Supported detailed timing:
[    17.714] (II) modeset(0): clock: 141.7 MHz   Image Size:  344 x 194 mm
[    17.714] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2124 h_border: 0
[    17.714] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1112 v_border: 0
[    17.714] (II) modeset(0): Supported detailed timing:
[    17.714] (II) modeset(0): clock: 113.4 MHz   Image Size:  344 x 194 mm
[    17.714] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2124 h_border: 0
[    17.714] (II) modeset(0): v_active: 1080  v_sync: 1083  v_sync_end 1089 v_blanking: 1112 v_border: 0
[    17.714] (II) modeset(0):  BOE CQ
[    17.714] (II) modeset(0):  NV156FHM-N65
[    17.714] (II) modeset(0): Number of EDID sections to follow: 1
[    17.714] (II) modeset(0): EDID (in hex):
[    17.714] (II) modeset(0): 	00ffffffffffff0009e5530800000000
[    17.714] (II) modeset(0): 	301c0104b522137803a855ae5047ab27
[    17.714] (II) modeset(0): 	0f505400000001010101010101010101
[    17.714] (II) modeset(0): 	0101010101015c3780cc703820403020
[    17.714] (II) modeset(0): 	360058c21000001a4a2c80cc70382040
[    17.714] (II) modeset(0): 	3020360058c21000001a000000fe0042
[    17.714] (II) modeset(0): 	4f452043510a202020202020000000fe
[    17.714] (II) modeset(0): 	004e5631353646484d2d4e36350a018f
[    17.714] (II) modeset(0): 	02030f00e3058000e606050160602800
[    17.714] (II) modeset(0): 	00000000000000000000000000000000
[    17.714] (II) modeset(0): 	00000000000000000000000000000000
[    17.714] (II) modeset(0): 	00000000000000000000000000000000
[    17.714] (II) modeset(0): 	00000000000000000000000000000000
[    17.714] (II) modeset(0): 	00000000000000000000000000000000
[    17.714] (II) modeset(0): 	00000000000000000000000000000000
[    17.714] (II) modeset(0): 	000000000000000000000000000000aa
[    17.714] (II) modeset(0): Printing probed modes for output eDP-1
[    17.714] (II) modeset(0): Modeline "1920x1080"x60.0  141.72  1920 1968 2000 2124  1080 1083 1089 1112 +hsync -vsync (66.7 kHz eP)
[    17.714] (II) modeset(0): Modeline "1920x1080"x119.9  266.50  1920 1944 1960 2000  1080 1081 1084 1111 doublescan +hsync -vsync (133.2 kHz d)
[    17.714] (II) modeset(0): Modeline "1920x1080"x60.0  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync (67.2 kHz d)
[    17.714] (II) modeset(0): Modeline "1920x1080"x59.9  138.50  1920 1968 2000 2080  1080 1083 1088 1111 +hsync -vsync (66.6 kHz d)
[    17.714] (II) modeset(0): Modeline "1920x1080"x48.0  113.38  1920 1968 2000 2124  1080 1083 1089 1112 +hsync -vsync (53.4 kHz e)
[    17.714] (II) modeset(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz d)
[    17.714] (II) modeset(0): Modeline "1680x1050"x59.9  119.00  1680 1728 1760 1840  1050 1053 1059 1080 +hsync -vsync (64.7 kHz d)
[    17.714] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    17.714] (II) modeset(0): Modeline "1600x900"x120.0  246.00  1600 1728 1900 2200  900 901 904 932 doublescan -hsync +vsync (111.8 kHz d)
[    17.714] (II) modeset(0): Modeline "1600x900"x119.9  186.50  1600 1624 1640 1680  900 901 904 926 doublescan +hsync -vsync (111.0 kHz d)
[    17.714] (II) modeset(0): Modeline "1600x900"x59.9  118.25  1600 1696 1856 2112  900 903 908 934 -hsync +vsync (56.0 kHz d)
[    17.714] (II) modeset(0): Modeline "1600x900"x59.8   97.50  1600 1648 1680 1760  900 903 908 926 +hsync -vsync (55.4 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    17.715] (II) modeset(0): Modeline "1400x900"x60.0  103.50  1400 1480 1624 1848  900 903 913 934 -hsync +vsync (56.0 kHz d)
[    17.715] (II) modeset(0): Modeline "1400x900"x59.9   86.50  1400 1448 1480 1560  900 903 913 926 +hsync -vsync (55.4 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    17.715] (II) modeset(0): Modeline "1440x810"x120.0  198.12  1440 1548 1704 1968  810 811 814 839 doublescan -hsync +vsync (100.7 kHz d)
[    17.715] (II) modeset(0): Modeline "1440x810"x119.9  151.88  1440 1464 1480 1520  810 811 814 833 doublescan +hsync -vsync (99.9 kHz d)
[    17.715] (II) modeset(0): Modeline "1368x768"x59.9   85.25  1368 1440 1576 1784  768 771 781 798 -hsync +vsync (47.8 kHz d)
[    17.715] (II) modeset(0): Modeline "1368x768"x59.9   72.25  1368 1416 1448 1528  768 771 781 790 +hsync -vsync (47.3 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[    17.715] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[    17.715] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    17.715] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    17.715] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    17.715] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    17.715] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    17.715] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[    17.715] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[    17.715] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[    17.715] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[    17.715] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[    17.715] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[    17.715] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[    17.715] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[    17.715] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[    17.715] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[    17.715] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    17.715] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    17.715] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    17.715] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[    17.715] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[    17.715] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[    17.715] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[    17.715] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    17.715] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[    17.715] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[    17.715] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    17.715] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[    17.715] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[    17.715] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    17.715] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    17.715] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[    17.715] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[    17.715] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[    17.715] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[    17.715] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[    17.715] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[    17.715] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[    17.715] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[    17.715] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[    17.715] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[    17.715] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    17.715] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[    17.715] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[    17.715] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[    17.715] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[    17.715] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    17.715] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    17.715] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[    17.715] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[    17.715] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    17.715] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[    17.715] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[    17.715] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[    17.715] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[    18.115] (II) modeset(0): EDID for output DP-1
[    18.136] (II) modeset(0): EDID for output HDMI-1
[    18.536] (II) modeset(0): EDID for output DP-2
[    18.558] (II) modeset(0): EDID for output HDMI-2
[    19.512] (II) modeset(0): EDID for output DP-3
[    19.512] (II) modeset(0): Output eDP-1 connected
[    19.512] (II) modeset(0): Output DP-1 disconnected
[    19.512] (II) modeset(0): Output HDMI-1 disconnected
[    19.512] (II) modeset(0): Output DP-2 disconnected
[    19.512] (II) modeset(0): Output HDMI-2 disconnected
[    19.512] (II) modeset(0): Output DP-3 disconnected
[    19.512] (II) modeset(0): Using exact sizes for initial modes
[    19.512] (II) modeset(0): Output eDP-1 using initial mode 1920x1080 +0+0
[    19.512] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[    19.512] (==) modeset(0): DPI set to (96, 96)
[    19.512] (II) Loading sub module "fb"
[    19.512] (II) LoadModule: "fb"
[    19.512] (II) Module "fb" already built-in
[    19.512] (==) NVIDIA(G0): Depth 24, (==) framebuffer bpp 32
[    19.512] (==) NVIDIA(G0): RGB weight 888
[    19.512] (==) NVIDIA(G0): Default visual is TrueColor
[    19.512] (==) NVIDIA(G0): Using gamma correction (1.0, 1.0, 1.0)
[    19.521] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[    19.521] (**) NVIDIA(G0): Option "AllowEmptyInitialConfiguration"
[    19.521] (**) NVIDIA(G0): Enabling 2D acceleration
[    19.521] (II) Loading sub module "glxserver_nvidia"
[    19.521] (II) LoadModule: "glxserver_nvidia"
[    19.521] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[    19.542] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[    19.542] 	compiled for 1.6.99.901, module version = 1.0.0
[    19.542] 	Module class: X.Org Server Extension
[    19.542] (II) NVIDIA GLX Module  535.86.05  Fri Jul 14 20:27:17 UTC 2023
[    19.542] (II) NVIDIA: The X server supports PRIME Render Offload.
[    19.561] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[    19.561] (--) NVIDIA(0):     DFP-0
[    19.561] (--) NVIDIA(0):     DFP-1
[    19.561] (--) NVIDIA(0):     DFP-2
[    19.561] (--) NVIDIA(0):     DFP-3
[    19.561] (--) NVIDIA(0):     DFP-4
[    19.562] (II) NVIDIA(G0): NVIDIA GPU NVIDIA GeForce RTX 2080 Super with Max-Q Design
[    19.562] (II) NVIDIA(G0):     (TU104-A) at PCI:1:0:0 (GPU-0)
[    19.562] (--) NVIDIA(G0): Memory: 8388608 kBytes
[    19.562] (--) NVIDIA(G0): VideoBIOS: 90.04.97.40.45
[    19.562] (II) NVIDIA(G0): Detected PCI Express Link width: 16X
[    19.562] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    19.562] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    19.562] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    19.562] (--) NVIDIA(GPU-0): 
[    19.562] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    19.562] (--) NVIDIA(GPU-0): DFP-1: Internal DisplayPort
[    19.562] (--) NVIDIA(GPU-0): DFP-1: 2660.0 MHz maximum pixel clock
[    19.562] (--) NVIDIA(GPU-0): 
[    19.563] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    19.563] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    19.563] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    19.563] (--) NVIDIA(GPU-0): 
[    19.563] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    19.563] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    19.563] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    19.563] (--) NVIDIA(GPU-0): 
[    19.563] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    19.563] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    19.563] (--) NVIDIA(GPU-0): DFP-4: 2660.0 MHz maximum pixel clock
[    19.563] (--) NVIDIA(GPU-0): 
[    19.569] (II) NVIDIA(G0): Validated MetaModes:
[    19.569] (II) NVIDIA(G0):     "NULL"
[    19.569] (II) NVIDIA(G0): Virtual screen size determined to be 640 x 480
[    19.569] (WW) NVIDIA(G0): Unable to get display device for DPI computation.
[    19.569] (==) NVIDIA(G0): DPI set to (75, 75); computed from built-in default
[    19.688] (==) modeset(0): Backing store enabled
[    19.688] (==) modeset(0): Silken mouse enabled
[    19.779] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[    19.779] (==) modeset(0): DPMS enabled
[    19.779] (II) modeset(0): [DRI2] Setup complete
[    19.779] (II) modeset(0): [DRI2]   DRI driver: iris
[    19.779] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[    19.779] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[    19.779] (II) NVIDIA:     access.
[    19.801] (II) NVIDIA(G0): ACPI: failed to connect to the ACPI event daemon; the daemon
[    19.801] (II) NVIDIA(G0):     may not be running or the "AcpidSocketPath" X
[    19.801] (II) NVIDIA(G0):     configuration option may not be set correctly.  When the
[    19.801] (II) NVIDIA(G0):     ACPI event daemon is available, the NVIDIA X driver will
[    19.801] (II) NVIDIA(G0):     try to use it to receive ACPI event notifications.  For
[    19.801] (II) NVIDIA(G0):     details, please see the "ConnectToAcpid" and
[    19.801] (II) NVIDIA(G0):     "AcpidSocketPath" X configuration options in Appendix B: X
[    19.801] (II) NVIDIA(G0):     Config Options in the README.
[    19.851] (II) NVIDIA(G0): Setting mode "NULL"
[    19.878] (==) NVIDIA(G0): Disabling shared memory pixmaps
[    19.878] (==) NVIDIA(G0): Backing store enabled
[    19.878] (==) NVIDIA(G0): Silken mouse enabled
[    19.878] (==) NVIDIA(G0): DPMS enabled
[    19.878] (II) Loading sub module "dri2"
[    19.878] (II) LoadModule: "dri2"
[    19.878] (II) Module "dri2" already built-in
[    19.878] (II) NVIDIA(G0): [DRI2] Setup complete
[    19.878] (II) NVIDIA(G0): [DRI2]   VDPAU driver: nvidia
[    19.878] (II) Initializing extension Generic Event Extension
[    19.879] (II) Initializing extension SHAPE
[    19.879] (II) Initializing extension MIT-SHM
[    19.879] (II) Initializing extension XInputExtension
[    19.879] (II) Initializing extension XTEST
[    19.879] (II) Initializing extension BIG-REQUESTS
[    19.880] (II) Initializing extension SYNC
[    19.880] (II) Initializing extension XKEYBOARD
[    19.880] (II) Initializing extension XC-MISC
[    19.880] (II) Initializing extension SECURITY
[    19.880] (II) Initializing extension XFIXES
[    19.881] (II) Initializing extension RENDER
[    19.881] (II) Initializing extension RANDR
[    19.881] (II) Initializing extension COMPOSITE
[    19.881] (II) Initializing extension DAMAGE
[    19.882] (II) Initializing extension MIT-SCREEN-SAVER
[    19.882] (II) Initializing extension DOUBLE-BUFFER
[    19.882] (II) Initializing extension RECORD
[    19.882] (II) Initializing extension DPMS
[    19.882] (II) Initializing extension Present
[    19.882] (II) Initializing extension DRI3
[    19.883] (II) Initializing extension X-Resource
[    19.883] (II) Initializing extension XVideo
[    19.883] (II) Initializing extension XVideo-MotionCompensation
[    19.883] (II) Initializing extension GLX
[    19.883] (II) Initializing extension GLX
[    19.883] (II) Indirect GLX disabled.
[    19.898] (II) AIGLX: Loaded and initialized iris
[    19.898] (II) GLX: Initialized DRI2 GL provider for screen 0
[    19.898] (II) Initializing extension XFree86-VidModeExtension
[    19.898] (II) Initializing extension XFree86-DGA
[    19.898] (II) Initializing extension XFree86-DRI
[    19.898] (II) Initializing extension DRI2
[    19.898] (II) Initializing extension NV-GLX
[    19.898] (II) Initializing extension NV-CONTROL
[    19.900] (II) modeset(0): Damage tracking initialized
[    19.900] (II) modeset(0): Setting screen physical size to 508 x 285
[    19.988] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    19.988] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    19.988] (**) Power Button: Applying InputClass "system-keyboard"
[    19.988] (II) LoadModule: "libinput"
[    19.988] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    19.993] (II) Module libinput: vendor="X.Org Foundation"
[    19.993] 	compiled for 1.21.1.8, module version = 1.3.0
[    19.993] 	Module class: X.Org XInput Driver
[    19.993] 	ABI class: X.Org XInput driver, version 24.4
[    19.993] (II) Using input driver 'libinput' for 'Power Button'
[    19.994] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 47 paused 0
[    19.994] (**) Power Button: always reports core events
[    19.994] (**) Option "Device" "/dev/input/event2"
[    20.004] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    20.004] (II) event2  - Power Button: device is a keyboard
[    20.004] (II) event2  - Power Button: device removed
[    20.004] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    20.004] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    20.004] (**) Option "xkb_model" "pc105+inet"
[    20.004] (**) Option "xkb_layout" "us"
[    20.004] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    20.043] (II) event2  - Power Button: is tagged by udev as: Keyboard
[    20.043] (II) event2  - Power Button: device is a keyboard
[    20.044] (II) config/udev: Adding input device Video Bus (/dev/input/event5)
[    20.044] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    20.044] (**) Video Bus: Applying InputClass "system-keyboard"
[    20.044] (II) Using input driver 'libinput' for 'Video Bus'
[    20.045] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 50 paused 0
[    20.045] (**) Video Bus: always reports core events
[    20.045] (**) Option "Device" "/dev/input/event5"
[    20.047] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[    20.047] (II) event5  - Video Bus: device is a keyboard
[    20.047] (II) event5  - Video Bus: device removed
[    20.047] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input6/event5"
[    20.047] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    20.047] (**) Option "xkb_model" "pc105+inet"
[    20.047] (**) Option "xkb_layout" "us"
[    20.047] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    20.049] (II) event5  - Video Bus: is tagged by udev as: Keyboard
[    20.049] (II) event5  - Video Bus: device is a keyboard
[    20.050] (II) config/udev: Adding input device Video Bus (/dev/input/event4)
[    20.050] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    20.050] (**) Video Bus: Applying InputClass "system-keyboard"
[    20.050] (II) Using input driver 'libinput' for 'Video Bus'
[    20.051] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 51 paused 0
[    20.051] (**) Video Bus: always reports core events
[    20.052] (**) Option "Device" "/dev/input/event4"
[    20.053] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    20.053] (II) event4  - Video Bus: device is a keyboard
[    20.054] (II) event4  - Video Bus: device removed
[    20.054] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:00/LNXVIDEO:00/input/input5/event4"
[    20.054] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    20.054] (**) Option "xkb_model" "pc105+inet"
[    20.054] (**) Option "xkb_layout" "us"
[    20.054] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    20.056] (II) event4  - Video Bus: is tagged by udev as: Keyboard
[    20.056] (II) event4  - Video Bus: device is a keyboard
[    20.057] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[    20.057] (II) No input driver specified, ignoring this device.
[    20.057] (II) This device may have been added with another device file.
[    20.058] (II) config/udev: Adding input device Sleep Button (/dev/input/event0)
[    20.058] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    20.058] (**) Sleep Button: Applying InputClass "system-keyboard"
[    20.058] (II) Using input driver 'libinput' for 'Sleep Button'
[    20.059] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 52 paused 0
[    20.059] (**) Sleep Button: always reports core events
[    20.059] (**) Option "Device" "/dev/input/event0"
[    20.061] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    20.061] (II) event0  - Sleep Button: device is a keyboard
[    20.061] (II) event0  - Sleep Button: device removed
[    20.061] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0/event0"
[    20.061] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 9)
[    20.061] (**) Option "xkb_model" "pc105+inet"
[    20.061] (**) Option "xkb_layout" "us"
[    20.061] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    20.063] (II) event0  - Sleep Button: is tagged by udev as: Keyboard
[    20.063] (II) event0  - Sleep Button: device is a keyboard
[    20.064] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event8)
[    20.064] (II) No input driver specified, ignoring this device.
[    20.064] (II) This device may have been added with another device file.
[    20.065] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event9)
[    20.065] (II) No input driver specified, ignoring this device.
[    20.065] (II) This device may have been added with another device file.
[    20.065] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event10)
[    20.065] (II) No input driver specified, ignoring this device.
[    20.065] (II) This device may have been added with another device file.
[    20.066] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event11)
[    20.066] (II) No input driver specified, ignoring this device.
[    20.066] (II) This device may have been added with another device file.
[    20.067] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event13)
[    20.067] (II) No input driver specified, ignoring this device.
[    20.067] (II) This device may have been added with another device file.
[    20.068] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event14)
[    20.068] (II) No input driver specified, ignoring this device.
[    20.068] (II) This device may have been added with another device file.
[    20.069] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event15)
[    20.069] (II) No input driver specified, ignoring this device.
[    20.069] (II) This device may have been added with another device file.
[    20.069] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=7 (/dev/input/event16)
[    20.069] (II) No input driver specified, ignoring this device.
[    20.069] (II) This device may have been added with another device file.
[    20.070] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=8 (/dev/input/event17)
[    20.070] (II) No input driver specified, ignoring this device.
[    20.070] (II) This device may have been added with another device file.
[    20.071] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    20.071] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    20.071] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[    20.071] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    20.072] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 53 paused 0
[    20.072] (**) AT Translated Set 2 keyboard: always reports core events
[    20.072] (**) Option "Device" "/dev/input/event3"
[    20.074] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    20.074] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    20.075] (II) event3  - AT Translated Set 2 keyboard: device removed
[    20.075] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[    20.075] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[    20.075] (**) Option "xkb_model" "pc105+inet"
[    20.075] (**) Option "xkb_layout" "us"
[    20.075] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    20.077] (II) event3  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    20.077] (II) event3  - AT Translated Set 2 keyboard: device is a keyboard
[    20.079] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event12)
[    20.079] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[    20.079] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    20.079] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[    20.079] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    20.079] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[    20.079] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad"
[    20.080] (II) LoadModule: "synaptics"
[    20.080] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    20.080] (II) Module synaptics: vendor="X.Org Foundation"
[    20.080] 	compiled for 1.21.1.3, module version = 1.9.2
[    20.080] 	Module class: X.Org XInput Driver
[    20.080] 	ABI class: X.Org XInput driver, version 24.4
[    20.080] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[    20.082] (II) systemd-logind: got fd for /dev/input/event12 13:76 fd 54 paused 0
[    20.082] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    20.082] (**) Option "Device" "/dev/input/event12"
[    20.082] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1266 - 5678 (res 44)
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 1162 - 4694 (res 50)
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[    20.082] (**) Option "FingerLow" "20"
[    20.082] (**) Option "FingerHigh" "30"
[    20.082] (**) Option "MaxTapTime" "125"
[    20.082] (**) Option "EmulateTwoFingerMinZ" "40"
[    20.082] (**) Option "EmulateTwoFingerMinW" "8"
[    20.082] (**) Option "VertEdgeScroll" "on"
[    20.082] (**) Option "HorizEdgeScroll" "on"
[    20.082] (**) Option "VertTwoFingerScroll" "on"
[    20.082] (**) Option "HorizTwoFingerScroll" "on"
[    20.082] (**) Option "TapButton1" "1"
[    20.082] (**) Option "TapButton2" "3"
[    20.082] (**) Option "TapButton3" "2"
[    20.082] (**) Option "CircularScrolling" "on"
[    20.082] (**) Option "CircScrollTrigger" "2"
[    20.082] (**) Option "CoastingSpeed" "0"
[    20.082] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[    20.082] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    20.082] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    20.082] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event12"
[    20.082] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 11)
[    20.082] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    20.082] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[    20.082] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.035
[    20.082] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    20.083] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    20.083] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    20.083] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    20.083] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    20.084] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    20.084] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[    20.085] (II) config/udev: Adding input device TPPS/2 Elan TrackPoint (/dev/input/event18)
[    20.085] (**) TPPS/2 Elan TrackPoint: Applying InputClass "libinput pointer catchall"
[    20.085] (II) Using input driver 'libinput' for 'TPPS/2 Elan TrackPoint'
[    20.087] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 55 paused 0
[    20.087] (**) TPPS/2 Elan TrackPoint: always reports core events
[    20.087] (**) Option "Device" "/dev/input/event18"
[    20.089] (II) event18 - TPPS/2 Elan TrackPoint: is tagged by udev as: Mouse Pointingstick
[    20.089] (II) event18 - TPPS/2 Elan TrackPoint: device is a pointer
[    20.091] (II) event18 - TPPS/2 Elan TrackPoint: device removed
[    20.091] (II) libinput: TPPS/2 Elan TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
[    20.091] (II) libinput: TPPS/2 Elan TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
[    20.091] (II) libinput: TPPS/2 Elan TrackPoint: Step value 0 was provided, libinput Fallback acceleration function is used.
[    20.091] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input14/event18"
[    20.091] (II) XINPUT: Adding extended input device "TPPS/2 Elan TrackPoint" (type: MOUSE, id 12)
[    20.091] (**) Option "AccelerationScheme" "none"
[    20.091] (**) TPPS/2 Elan TrackPoint: (accel) selected scheme none/0
[    20.091] (**) TPPS/2 Elan TrackPoint: (accel) acceleration factor: 2.000
[    20.091] (**) TPPS/2 Elan TrackPoint: (accel) acceleration threshold: 4
[    20.093] (II) event18 - TPPS/2 Elan TrackPoint: is tagged by udev as: Mouse Pointingstick
[    20.094] (II) event18 - TPPS/2 Elan TrackPoint: device is a pointer
[    20.096] (II) config/udev: Adding input device TPPS/2 Elan TrackPoint (/dev/input/mouse1)
[    20.096] (II) No input driver specified, ignoring this device.
[    20.096] (II) This device may have been added with another device file.
[    20.097] (II) config/udev: Adding input device PC Speaker (/dev/input/event6)
[    20.097] (II) No input driver specified, ignoring this device.
[    20.097] (II) This device may have been added with another device file.
[    20.102] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event7)
[    20.102] (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
[    20.102] (**) ThinkPad Extra Buttons: Applying InputClass "system-keyboard"
[    20.102] (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
[    20.103] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 56 paused 0
[    20.103] (**) ThinkPad Extra Buttons: always reports core events
[    20.103] (**) Option "Device" "/dev/input/event7"
[    20.104] (II) event7  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
[    20.105] (II) event7  - ThinkPad Extra Buttons: device is a keyboard
[    20.105] (II) event7  - ThinkPad Extra Buttons: device removed
[    20.105] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input9/event7"
[    20.105] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 13)
[    20.105] (**) Option "xkb_model" "pc105+inet"
[    20.105] (**) Option "xkb_layout" "us"
[    20.105] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
[    20.107] (II) event7  - ThinkPad Extra Buttons: is tagged by udev as: Keyboard Switch
[    20.107] (II) event7  - ThinkPad Extra Buttons: device is a keyboard
[    25.948] (II) modeset(0): EDID vendor "BOE", prod id 2131
[    25.948] (II) modeset(0): Printing DDC gathered Modelines:
[    25.948] (II) modeset(0): Modeline "1920x1080"x0.0  141.72  1920 1968 2000 2124  1080 1083 1089 1112 +hsync -vsync (66.7 kHz eP)
[    25.948] (II) modeset(0): Modeline "1920x1080"x0.0  113.38  1920 1968 2000 2124  1080 1083 1089 1112 +hsync -vsync (53.4 kHz e)
[    27.774] (II) modeset(0): EDID vendor "BOE", prod id 2131
[    27.774] (II) modeset(0): Printing DDC gathered Modelines:
[    27.774] (II) modeset(0): Modeline "1920x1080"x0.0  141.72  1920 1968 2000 2124  1080 1083 1089 1112 +hsync -vsync (66.7 kHz eP)
[    27.774] (II) modeset(0): Modeline "1920x1080"x0.0  113.38  1920 1968 2000 2124  1080 1083 1089 1112 +hsync -vsync (53.4 kHz e)
[    29.577] (--) NVIDIA(GPU-0): DFP-0: disconnected
[    29.577] (--) NVIDIA(GPU-0): DFP-0: Internal DisplayPort
[    29.577] (--) NVIDIA(GPU-0): DFP-0: 2660.0 MHz maximum pixel clock
[    29.577] (--) NVIDIA(GPU-0): 
[    29.577] (--) NVIDIA(GPU-0): DFP-1: disconnected
[    29.577] (--) NVIDIA(GPU-0): DFP-1: Internal DisplayPort
[    29.577] (--) NVIDIA(GPU-0): DFP-1: 2660.0 MHz maximum pixel clock
[    29.577] (--) NVIDIA(GPU-0): 
[    29.578] (--) NVIDIA(GPU-0): DFP-2: disconnected
[    29.578] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[    29.578] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[    29.578] (--) NVIDIA(GPU-0): 
[    29.578] (--) NVIDIA(GPU-0): DFP-3: disconnected
[    29.578] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[    29.578] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[    29.578] (--) NVIDIA(GPU-0): 
[    29.578] (--) NVIDIA(GPU-0): DFP-4: disconnected
[    29.578] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[    29.578] (--) NVIDIA(GPU-0): DFP-4: 2660.0 MHz maximum pixel clock
[    29.578] (--) NVIDIA(GPU-0): 

so it doesnt gets applied.

i am extremely sorry about the late responce, my dumbass mind thougt there was a problem logging into arch forum FOR TWO WEEKS.
apperantly i was trying to login to archwiki instead of arch forums thats why my login cradentials were wrong, yeah sorry about that.

Offline

#36 2023-07-30 21:54:47

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

[    15.914] (II) modeset(0): Output eDP-1 using monitor section eDP-1
[    15.914] (**) modeset(0): Option "DefaultModes" "False"

https://bbs.archlinux.org/viewtopic.php … 2#p2111922
You don't have the same panel so you cannot just copy the lines from the thread, but fetching this from an older kernel might help…

Online

#37 2023-08-09 19:05:00

sorcery0358
Member
Registered: 2023-06-26
Posts: 19

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

i dont get it, how am i supposed to find that? by installing it? hope not.

Offline

#38 2023-08-09 19:15:51

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

Re: xf86-video-intel causes issues but uninstalling it causes bigger issue

The other user simply used some dated live-distro; if the LTS kernel doesn't provide you an EFI either, you could do the same.

Online

Board footer

Powered by FluxBB