You are not logged in.
I run a relatively minimalist arch setup, using a mostly vanilla version of dwm as my window manager. Usually the boot process of my computer is lightning fast but I've noticed recently that everytime I log in and the x server boots its been gradually taking longer and longer for my window manager to finish booting. I've been using this computer for almost 3 years now and have never had this issue until ~2 weeks ago, now it's taking about 5-10 seconds for it to boot when it used to boot almost instantly. I've updated everything on my computer, installed a completely fresh version of dwm, checked my xorg config, checked xorg logs etc but I can't seem to find a culprate for this... Has anybody been having this problem recently and have you found a cause for it?
Last edited by bladonski (2024-10-28 17:07:21)
Offline
It would help if you reported your computer configuration, especially CPU and GPU.
If you disable graphical login, is booting fast again?
Offline
It would help if you reported your computer configuration, especially CPU and GPU.
If you disable graphical login, is booting fast again?
CPU: Ryzen 7 3700x
GPU: RTX 3060-ti (lhr)
16Gb ram
I havent messed around with too many system conf files on this computer, if theres something else you'd like me to include lmk.
I may have not been clear but, I don't have graphical login, the slow boot process im talking about is after I login in (in which I have set xorg to automatically start). Also its important to note my computer doesn't seem to be having a hard time, it's never under load. It's only the initial boot into X that is slow.
Offline
I have set xorg to automatically start
Don't.
I guess you're running startx?
Post your xinitrc, try to "startx xterm" only and (see above) split login and X11 server start to isolate whether it's actually the X11 session or your shell that lags.
Offline
Post your xinitrc, try to "startx xterm" only and (see above) split login and X11 server start to isolate whether it's actually the X11 session or your shell that lags.
I should've mentioned that in trying to fix this myself I have a way to kill the x server in dwm, killing the x server and then trying to start it again with "startx" was just as slow so I figured it was x that was the culprate (because in testing I also removed everything from my .xinitrc and it was still starting slow). I did try what you said and removed the startx from my bash profile, restarted my computer, and logging in was just fine. Typing "startx xterm" however led to the same slow boot into the x server.
.xinitrc
#!/bin/sh
[ -f ~/.xprofile ] && . ~/.xprofile
exec st &
exec slstatus &
exec dwm
Offline
1. your xinirtc is broken, last link below, 2nd blue note on what to include at least
2. "exec foo &" is nonsense, "exec foo" will replace the current process w/ foo, "foo &" will run "foo" and continue the script execution
3. removing *everything* from your xinitrc will either not work or fall over to the global xinitrc
Please post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
Offline
1. your xinirtc is broken, last link below, 2nd blue note on what to include at least
2. "exec foo &" is nonsense, "exec foo" will replace the current process w/ foo, "foo &" will run "foo" and continue the script execution
3. removing *everything* from your xinitrc will either not work or fall over to the global xinitrcPlease post your Xorg log, https://wiki.archlinux.org/title/Xorg#General
I see what you mean and I will try to add that if block and remove all the unneeded exec commands when I get home and post my xorg log but I have a few questions.
I have not changed my .xinitrc for about 3 years and it was never booting slow until just recently, if my .xinitrc was broken all this time why wouldn't it always be booting slow? Also, as I'm typing this on my laptop (running basically all the same stuff) with the same broken .xinitrc as I posted above, booting into the x server is almost instant liked I'd expect. Do you have any ideas as to why this is?
Offline
That strikes be a bit like someone being diagnosed with lung cancer after smoking for their entire life: "you're saying my smoking caused the cancer? But I've been smoking my whole life, but only just now got cancer, so how could that be?"
Nothing that is off about your xinitrc would assure that there'd be a problem on every single start - but doing it right will avoid potential problems. As to whether or not the problematic xinitrc is the actual cause of the delay is not yet clear: but it'd be a bit foolish to puruse other possible causes until the most likely ones are ruled out.
Last edited by Trilby (2024-10-26 17:39:31)
"UNIX is simple and coherent" - Dennis Ritchie; "GNU's Not Unix" - Richard Stallman
Offline
The xinitrc comments were mostly "btw, fyi: you wanna fix that" . I don't think that the broken session contributes to the situation because of the "startx xterm" situation.
I maybe should have made this more explicit.
My money would have been eg. on slstatus but if the server also starts slow w/ only an xterm, we'll have to look at the server start itself - the critical part of my previous comment would have been the request for the xorg log, please post it.
Offline
Alright, I made the changes specified to my .xinitrc, heres the output of the xorg log:
[ 13.897]
X.Org X Server 1.21.1.13
X Protocol Version 11, Revision 0
[ 13.897] Current Operating System: Linux Sawatsky 6.11.5-arch1-1 #1 SMP PREEMPT_DYNAMIC Tue, 22 Oct 2024 18:31:38 +0000 x86_64
[ 13.897] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=64721a86-7f18-464a-8ca0-c309a013ada4 rw loglevel=3
[ 13.897]
[ 13.897] Current version of pixman: 0.43.4
[ 13.897] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 13.897] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 13.897] (==) Log file: "/home/blade/.local/share/xorg/Xorg.0.log", Time: Sat Oct 26 18:01:39 2024
[ 13.900] (==) Using config file: "/etc/X11/xorg.conf"
[ 13.900] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 13.900] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 13.901] (==) ServerLayout "Layout0"
[ 13.901] (**) |-->Screen "Screen0" (0)
[ 13.901] (**) | |-->Monitor "Monitor0"
[ 13.901] (**) | |-->Device "Device0"
[ 13.901] (**) | |-->GPUDevice "Device0"
[ 13.901] (**) |-->Input Device "Keyboard0"
[ 13.901] (**) |-->Input Device "Mouse0"
[ 13.901] (**) Option "Xinerama" "0"
[ 13.901] (**) Allowing byte-swapped clients
[ 13.901] (==) Automatically adding devices
[ 13.901] (==) Automatically enabling devices
[ 13.901] (==) Automatically adding GPU devices
[ 13.901] (==) Automatically binding GPU devices
[ 13.901] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 13.902] (WW) The directory "/usr/share/fonts/misc" does not exist.
[ 13.902] Entry deleted from font path.
[ 13.904] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 13.904] Entry deleted from font path.
[ 13.906] (==) FontPath set to:
/usr/share/fonts/TTF,
/usr/share/fonts/OTF,
/usr/share/fonts/100dpi,
/usr/share/fonts/75dpi
[ 13.906] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 13.906] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[ 13.906] (WW) Disabling Keyboard0
[ 13.906] (WW) Disabling Mouse0
[ 13.906] (II) Module ABI versions:
[ 13.906] X.Org ANSI C Emulation: 0.4
[ 13.906] X.Org Video Driver: 25.2
[ 13.906] X.Org XInput driver : 24.4
[ 13.906] X.Org Server Extension : 10.0
[ 13.907] (++) using VT number 1
[ 13.908] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 13.909] (II) xfree86: Adding drm device (/dev/dri/card1)
[ 13.909] (II) Platform probe for /sys/devices/pci0000:00/0000:00:03.1/0000:26:00.0/drm/card1
[ 13.909] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 13 paused 0
[ 13.914] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 13.916] (--) PCI:*(38@0:0:0) 10de:2489:3842:4667 rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xe0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[ 13.916] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 13.916] (II) LoadModule: "glx"
[ 13.919] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 13.926] (II) Module glx: vendor="X.Org Foundation"
[ 13.926] compiled for 1.21.1.13, module version = 1.0.0
[ 13.926] ABI class: X.Org Server Extension, version 10.0
[ 13.926] (II) LoadModule: "nvidia"
[ 13.926] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 13.932] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 13.932] compiled for 1.6.99.901, module version = 1.0.0
[ 13.932] Module class: X.Org Video Driver
[ 13.932] (II) NVIDIA dlloader X Driver 560.35.03 Fri Aug 16 21:25:43 UTC 2024
[ 13.932] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 13.933] (II) systemd-logind: releasing fd for 226:1
[ 14.882] (II) Loading sub module "fb"
[ 14.882] (II) LoadModule: "fb"
[ 14.882] (II) Module "fb" already built-in
[ 14.882] (II) Loading sub module "wfb"
[ 14.882] (II) LoadModule: "wfb"
[ 14.882] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 14.883] (II) Module wfb: vendor="X.Org Foundation"
[ 14.883] compiled for 1.21.1.13, module version = 1.0.0
[ 14.883] ABI class: X.Org ANSI C Emulation, version 0.4
[ 14.885] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 14.885] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 14.885] (==) NVIDIA(0): RGB weight 888
[ 14.885] (==) NVIDIA(0): Default visual is TrueColor
[ 14.885] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 14.885] (II) Applying OutputClass "nvidia" options to /dev/dri/card1
[ 14.885] (**) NVIDIA(0): Option "Stereo" "0"
[ 14.885] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-0"
[ 14.885] (**) NVIDIA(0): Option "SLI" "Off"
[ 14.885] (**) NVIDIA(0): Option "MultiGPU" "Off"
[ 14.885] (**) NVIDIA(0): Option "BaseMosaic" "off"
[ 14.885] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 14.885] (**) NVIDIA(0): Stereo disabled by request
[ 14.885] (**) NVIDIA(0): NVIDIA SLI disabled.
[ 14.885] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[ 14.885] (**) NVIDIA(0): Option "MetaModes" "1920x1080_60 +0+0"
[ 14.885] (**) NVIDIA(0): Enabling 2D acceleration
[ 14.885] (II) Loading sub module "glxserver_nvidia"
[ 14.885] (II) LoadModule: "glxserver_nvidia"
[ 14.885] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 14.981] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 14.981] compiled for 1.6.99.901, module version = 1.0.0
[ 14.981] Module class: X.Org Server Extension
[ 14.981] (II) NVIDIA GLX Module 560.35.03 Fri Aug 16 21:27:48 UTC 2024
[ 14.982] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 14.985] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:38:0:0
[ 14.985] (--) NVIDIA(0): DFP-0 (boot)
[ 14.985] (--) NVIDIA(0): DFP-1
[ 14.985] (--) NVIDIA(0): DFP-2
[ 14.985] (--) NVIDIA(0): DFP-3
[ 14.985] (--) NVIDIA(0): DFP-4
[ 14.985] (--) NVIDIA(0): DFP-5
[ 14.985] (--) NVIDIA(0): DFP-6
[ 14.993] (II) NVIDIA(0): NVIDIA GPU NVIDIA GeForce RTX 3060 Ti (GA104-A) at PCI:38:0:0
[ 14.993] (II) NVIDIA(0): (GPU-0)
[ 14.993] (--) NVIDIA(0): Memory: 8388608 kBytes
[ 14.993] (--) NVIDIA(0): VideoBIOS: 94.04.46.40.6b
[ 14.993] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 15.097] (--) NVIDIA(GPU-0): DELL S2440L (DFP-0): connected
[ 15.097] (--) NVIDIA(GPU-0): DELL S2440L (DFP-0): Internal TMDS
[ 15.097] (--) NVIDIA(GPU-0): DELL S2440L (DFP-0): 600.0 MHz maximum pixel clock
[ 15.097] (--) NVIDIA(GPU-0):
[ 15.097] (--) NVIDIA(GPU-0): DFP-1: disconnected
[ 15.097] (--) NVIDIA(GPU-0): DFP-1: Internal DisplayPort
[ 15.097] (--) NVIDIA(GPU-0): DFP-1: 2670.0 MHz maximum pixel clock
[ 15.097] (--) NVIDIA(GPU-0):
[ 15.097] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 15.097] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[ 15.097] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[ 15.097] (--) NVIDIA(GPU-0):
[ 15.097] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 15.097] (--) NVIDIA(GPU-0): DFP-3: Internal DisplayPort
[ 15.097] (--) NVIDIA(GPU-0): DFP-3: 2670.0 MHz maximum pixel clock
[ 15.097] (--) NVIDIA(GPU-0):
[ 15.098] (--) NVIDIA(GPU-0): DFP-4: disconnected
[ 15.098] (--) NVIDIA(GPU-0): DFP-4: Internal TMDS
[ 15.098] (--) NVIDIA(GPU-0): DFP-4: 165.0 MHz maximum pixel clock
[ 15.098] (--) NVIDIA(GPU-0):
[ 15.098] (--) NVIDIA(GPU-0): DFP-5: disconnected
[ 15.098] (--) NVIDIA(GPU-0): DFP-5: Internal DisplayPort
[ 15.098] (--) NVIDIA(GPU-0): DFP-5: 2670.0 MHz maximum pixel clock
[ 15.098] (--) NVIDIA(GPU-0):
[ 15.098] (--) NVIDIA(GPU-0): DFP-6: disconnected
[ 15.098] (--) NVIDIA(GPU-0): DFP-6: Internal TMDS
[ 15.098] (--) NVIDIA(GPU-0): DFP-6: 165.0 MHz maximum pixel clock
[ 15.098] (--) NVIDIA(GPU-0):
[ 15.127] (II) NVIDIA(0): Validated MetaModes:
[ 15.127] (II) NVIDIA(0): "1920x1080_60+0+0"
[ 15.127] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[ 15.290] (--) NVIDIA(0): DPI set to (92, 91); computed from "UseEdidDpi" X config
[ 15.290] (--) NVIDIA(0): option
[ 15.290] (WW) NVIDIA: Failed to bind sideband socket to
[ 15.290] (WW) NVIDIA: '/var/run/nvidia-xdriver-ce90b13d' Permission denied
[ 15.291] (II) NVIDIA: Reserving 24576.00 MB of virtual memory for indirect memory
[ 15.291] (II) NVIDIA: access.
[ 15.304] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
[ 15.304] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
[ 15.304] (II) NVIDIA(0): configuration option may not be set correctly. When the
[ 15.304] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
[ 15.304] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
[ 15.304] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
[ 15.304] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
[ 15.304] (II) NVIDIA(0): Config Options in the README.
[ 15.320] (II) NVIDIA(0): Setting mode "1920x1080_60+0+0"
[ 15.913] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 15.914] (==) NVIDIA(0): Backing store enabled
[ 15.914] (==) NVIDIA(0): Silken mouse enabled
[ 15.914] (**) NVIDIA(0): DPMS enabled
[ 15.914] (II) Loading sub module "dri2"
[ 15.914] (II) LoadModule: "dri2"
[ 15.914] (II) Module "dri2" already built-in
[ 15.914] (II) NVIDIA(0): [DRI2] Setup complete
[ 15.914] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 15.914] (II) Initializing extension Generic Event Extension
[ 15.914] (II) Initializing extension SHAPE
[ 15.914] (II) Initializing extension MIT-SHM
[ 15.915] (II) Initializing extension XInputExtension
[ 15.915] (II) Initializing extension XTEST
[ 15.915] (II) Initializing extension BIG-REQUESTS
[ 15.915] (II) Initializing extension SYNC
[ 15.915] (II) Initializing extension XKEYBOARD
[ 15.915] (II) Initializing extension XC-MISC
[ 15.915] (II) Initializing extension SECURITY
[ 15.915] (II) Initializing extension XFIXES
[ 15.915] (II) Initializing extension RENDER
[ 15.915] (II) Initializing extension RANDR
[ 15.915] (II) Initializing extension COMPOSITE
[ 15.915] (II) Initializing extension DAMAGE
[ 15.915] (II) Initializing extension MIT-SCREEN-SAVER
[ 15.915] (II) Initializing extension DOUBLE-BUFFER
[ 15.915] (II) Initializing extension RECORD
[ 15.915] (II) Initializing extension DPMS
[ 15.915] (II) Initializing extension Present
[ 15.915] (II) Initializing extension DRI3
[ 15.916] (II) Initializing extension X-Resource
[ 15.916] (II) Initializing extension XVideo
[ 15.916] (II) Initializing extension XVideo-MotionCompensation
[ 15.916] (II) Initializing extension GLX
[ 15.916] (II) Initializing extension GLX
[ 15.916] (II) Indirect GLX disabled.
[ 15.916] (II) GLX: Another vendor is already registered for screen 0
[ 15.916] (II) Initializing extension XFree86-VidModeExtension
[ 15.916] (II) Initializing extension XFree86-DGA
[ 15.916] (II) Initializing extension XFree86-DRI
[ 15.916] (II) Initializing extension DRI2
[ 15.916] (II) Initializing extension NV-GLX
[ 15.916] (II) Initializing extension NV-CONTROL
[ 15.916] (II) Initializing extension XINERAMA
[ 16.043] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 16.043] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 16.043] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 16.043] (**) Power Button: Applying InputClass "system-keyboard"
[ 16.043] (II) LoadModule: "libinput"
[ 16.043] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 16.047] (II) Module libinput: vendor="X.Org Foundation"
[ 16.047] compiled for 1.21.1.13, module version = 1.5.0
[ 16.047] Module class: X.Org XInput Driver
[ 16.047] ABI class: X.Org XInput driver, version 24.4
[ 16.047] (II) Using input driver 'libinput' for 'Power Button'
[ 16.047] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 38 paused 0
[ 16.047] (**) Power Button: always reports core events
[ 16.047] (**) Option "Device" "/dev/input/event1"
[ 16.055] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 16.055] (II) event1 - Power Button: device is a keyboard
[ 16.055] (II) event1 - Power Button: device removed
[ 16.055] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 16.055] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 16.055] (**) Option "xkb_model" "pc104"
[ 16.055] (**) Option "xkb_layout" "us,ru"
[ 16.055] (**) Option "xkb_variant" ","
[ 16.055] (**) Option "xkb_options" "grp:shift_caps_toggle"
[ 16.072] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 16.072] (II) event1 - Power Button: device is a keyboard
[ 16.072] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 16.072] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 16.072] (**) Power Button: Applying InputClass "system-keyboard"
[ 16.072] (II) Using input driver 'libinput' for 'Power Button'
[ 16.073] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 41 paused 0
[ 16.073] (**) Power Button: always reports core events
[ 16.073] (**) Option "Device" "/dev/input/event0"
[ 16.073] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 16.073] (II) event0 - Power Button: device is a keyboard
[ 16.073] (II) event0 - Power Button: device removed
[ 16.073] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 16.073] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 16.073] (**) Option "xkb_model" "pc104"
[ 16.073] (**) Option "xkb_layout" "us,ru"
[ 16.073] (**) Option "xkb_variant" ","
[ 16.073] (**) Option "xkb_options" "grp:shift_caps_toggle"
[ 16.074] (II) event0 - Power Button: is tagged by udev as: Keyboard
[ 16.074] (II) event0 - Power Button: device is a keyboard
[ 16.075] (II) config/udev: Adding input device Keychron Keychron C1 (/dev/input/event3)
[ 16.075] (**) Keychron Keychron C1: Applying InputClass "libinput keyboard catchall"
[ 16.075] (**) Keychron Keychron C1: Applying InputClass "system-keyboard"
[ 16.075] (II) Using input driver 'libinput' for 'Keychron Keychron C1'
[ 16.076] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 42 paused 0
[ 16.076] (**) Keychron Keychron C1: always reports core events
[ 16.076] (**) Option "Device" "/dev/input/event3"
[ 16.076] (II) event3 - Keychron Keychron C1: is tagged by udev as: Keyboard
[ 16.077] (II) event3 - Keychron Keychron C1: device is a keyboard
[ 16.077] (II) event3 - Keychron Keychron C1: device removed
[ 16.077] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.0/0003:05AC:024F.0001/input/input3/event3"
[ 16.077] (II) XINPUT: Adding extended input device "Keychron Keychron C1" (type: KEYBOARD, id 8)
[ 16.077] (**) Option "xkb_model" "pc104"
[ 16.077] (**) Option "xkb_layout" "us,ru"
[ 16.077] (**) Option "xkb_variant" ","
[ 16.077] (**) Option "xkb_options" "grp:shift_caps_toggle"
[ 16.078] (II) event3 - Keychron Keychron C1: is tagged by udev as: Keyboard
[ 16.078] (II) event3 - Keychron Keychron C1: device is a keyboard
[ 16.079] (II) config/udev: Adding input device Keychron Keychron C1 (/dev/input/event7)
[ 16.079] (**) Keychron Keychron C1: Applying InputClass "libinput keyboard catchall"
[ 16.079] (**) Keychron Keychron C1: Applying InputClass "system-keyboard"
[ 16.079] (II) Using input driver 'libinput' for 'Keychron Keychron C1'
[ 16.080] (II) systemd-logind: got fd for /dev/input/event7 13:71 fd 43 paused 0
[ 16.080] (**) Keychron Keychron C1: always reports core events
[ 16.080] (**) Option "Device" "/dev/input/event7"
[ 16.081] (II) event7 - Keychron Keychron C1: is tagged by udev as: Keyboard
[ 16.081] (II) event7 - Keychron Keychron C1: device is a keyboard
[ 16.081] (II) event7 - Keychron Keychron C1: device removed
[ 16.081] (II) libinput: Keychron Keychron C1: needs a virtual subdevice
[ 16.081] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:05AC:024F.0002/input/input16/event7"
[ 16.081] (II) XINPUT: Adding extended input device "Keychron Keychron C1" (type: MOUSE, id 9)
[ 16.081] (**) Option "AccelerationScheme" "none"
[ 16.081] (**) Keychron Keychron C1: (accel) selected scheme none/0
[ 16.081] (**) Keychron Keychron C1: (accel) acceleration factor: 2.000
[ 16.081] (**) Keychron Keychron C1: (accel) acceleration threshold: 4
[ 16.082] (II) event7 - Keychron Keychron C1: is tagged by udev as: Keyboard
[ 16.082] (II) event7 - Keychron Keychron C1: device is a keyboard
[ 16.083] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event4)
[ 16.083] (II) No input driver specified, ignoring this device.
[ 16.083] (II) This device may have been added with another device file.
[ 16.083] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event5)
[ 16.083] (II) No input driver specified, ignoring this device.
[ 16.083] (II) This device may have been added with another device file.
[ 16.083] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event8)
[ 16.083] (II) No input driver specified, ignoring this device.
[ 16.083] (II) This device may have been added with another device file.
[ 16.083] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event9)
[ 16.083] (II) No input driver specified, ignoring this device.
[ 16.083] (II) This device may have been added with another device file.
[ 16.084] (II) config/udev: Adding input device Glorious Model O (/dev/input/event17)
[ 16.084] (**) Glorious Model O: Applying InputClass "libinput pointer catchall"
[ 16.084] (II) Using input driver 'libinput' for 'Glorious Model O'
[ 16.140] (II) systemd-logind: got fd for /dev/input/event17 13:81 fd 44 paused 0
[ 16.140] (**) Glorious Model O: always reports core events
[ 16.140] (**) Option "Device" "/dev/input/event17"
[ 16.141] (II) event17 - Glorious Model O: is tagged by udev as: Mouse
[ 16.141] (II) event17 - Glorious Model O: device set to 1600 DPI
[ 16.141] (II) event17 - Glorious Model O: device is a pointer
[ 16.141] (II) event17 - Glorious Model O: device removed
[ 16.141] (II) libinput: Glorious Model O: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 16.141] (II) libinput: Glorious Model O: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 16.141] (II) libinput: Glorious Model O: Step value 0 was provided, libinput Fallback acceleration function is used.
[ 16.141] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:28:00.3/usb3/3-1/3-1:1.0/0003:258A:0036.0003/input/input20/event17"
[ 16.141] (II) XINPUT: Adding extended input device "Glorious Model O" (type: MOUSE, id 10)
[ 16.141] (**) Option "AccelerationScheme" "none"
[ 16.141] (**) Glorious Model O: (accel) selected scheme none/0
[ 16.141] (**) Glorious Model O: (accel) acceleration factor: 2.000
[ 16.141] (**) Glorious Model O: (accel) acceleration threshold: 4
[ 16.142] (II) event17 - Glorious Model O: is tagged by udev as: Mouse
[ 16.142] (II) event17 - Glorious Model O: device set to 1600 DPI
[ 16.142] (II) event17 - Glorious Model O: device is a pointer
[ 16.143] (II) config/udev: Adding input device Glorious Model O (/dev/input/mouse0)
[ 16.143] (II) No input driver specified, ignoring this device.
[ 16.143] (II) This device may have been added with another device file.
[ 16.144] (II) config/udev: Adding input device Glorious Model O Keyboard (/dev/input/event18)
[ 16.144] (**) Glorious Model O Keyboard: Applying InputClass "libinput keyboard catchall"
[ 16.144] (**) Glorious Model O Keyboard: Applying InputClass "system-keyboard"
[ 16.144] (II) Using input driver 'libinput' for 'Glorious Model O Keyboard'
[ 16.144] (II) systemd-logind: got fd for /dev/input/event18 13:82 fd 45 paused 0
[ 16.144] (**) Glorious Model O Keyboard: always reports core events
[ 16.144] (**) Option "Device" "/dev/input/event18"
[ 16.145] (II) event18 - Glorious Model O Keyboard: is tagged by udev as: Keyboard
[ 16.145] (II) event18 - Glorious Model O Keyboard: device is a keyboard
[ 16.145] (II) event18 - Glorious Model O Keyboard: device removed
[ 16.145] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:08.1/0000:28:00.3/usb3/3-1/3-1:1.1/0003:258A:0036.0004/input/input21/event18"
[ 16.145] (II) XINPUT: Adding extended input device "Glorious Model O Keyboard" (type: KEYBOARD, id 11)
[ 16.145] (**) Option "xkb_model" "pc104"
[ 16.145] (**) Option "xkb_layout" "us,ru"
[ 16.145] (**) Option "xkb_variant" ","
[ 16.145] (**) Option "xkb_options" "grp:shift_caps_toggle"
[ 16.146] (II) event18 - Glorious Model O Keyboard: is tagged by udev as: Keyboard
[ 16.146] (II) event18 - Glorious Model O Keyboard: device is a keyboard
[ 16.147] (II) config/udev: Adding input device HD-Audio Generic Line (/dev/input/event11)
[ 16.147] (II) No input driver specified, ignoring this device.
[ 16.147] (II) This device may have been added with another device file.
[ 16.147] (II) config/udev: Adding input device HD-Audio Generic Line Out Front (/dev/input/event12)
[ 16.147] (II) No input driver specified, ignoring this device.
[ 16.147] (II) This device may have been added with another device file.
[ 16.147] (II) config/udev: Adding input device HD-Audio Generic Line Out Surround (/dev/input/event13)
[ 16.147] (II) No input driver specified, ignoring this device.
[ 16.147] (II) This device may have been added with another device file.
[ 16.148] (II) config/udev: Adding input device HD-Audio Generic Line Out CLFE (/dev/input/event14)
[ 16.148] (II) No input driver specified, ignoring this device.
[ 16.148] (II) This device may have been added with another device file.
[ 16.148] (II) config/udev: Adding input device HD-Audio Generic Line Out Side (/dev/input/event15)
[ 16.148] (II) No input driver specified, ignoring this device.
[ 16.148] (II) This device may have been added with another device file.
[ 16.148] (II) config/udev: Adding input device HD-Audio Generic Front Headphone (/dev/input/event16)
[ 16.148] (II) No input driver specified, ignoring this device.
[ 16.148] (II) This device may have been added with another device file.
[ 16.148] (II) config/udev: Adding input device HD-Audio Generic Rear Mic (/dev/input/event6)
[ 16.148] (II) No input driver specified, ignoring this device.
[ 16.148] (II) This device may have been added with another device file.
[ 16.149] (II) config/udev: Adding input device HD-Audio Generic Front Mic (/dev/input/event10)
[ 16.149] (II) No input driver specified, ignoring this device.
[ 16.149] (II) This device may have been added with another device file.
[ 16.149] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
[ 16.149] (II) No input driver specified, ignoring this device.
[ 16.149] (II) This device may have been added with another device file.
[ 16.154] (**) Keychron Keychron C1: Applying InputClass "libinput keyboard catchall"
[ 16.154] (**) Keychron Keychron C1: Applying InputClass "system-keyboard"
[ 16.154] (II) Using input driver 'libinput' for 'Keychron Keychron C1'
[ 16.154] (II) systemd-logind: returning pre-existing fd for /dev/input/event7 13:71
[ 16.154] (**) Keychron Keychron C1: always reports core events
[ 16.154] (**) Option "Device" "/dev/input/event7"
[ 16.154] (II) libinput: Keychron Keychron C1: is a virtual subdevice
[ 16.154] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-2/1-2:1.1/0003:05AC:024F.0002/input/input16/event7"
[ 16.154] (II) XINPUT: Adding extended input device "Keychron Keychron C1" (type: KEYBOARD, id 12)
[ 16.154] (**) Option "xkb_model" "pc104"
[ 16.154] (**) Option "xkb_layout" "us,ru"
[ 16.154] (**) Option "xkb_variant" ","
[ 16.154] (**) Option "xkb_options" "grp:shift_caps_toggle"
from this .xinitrc
#!/bin/sh
[ -f ~/.xprofile ] && . ~/.xprofile
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
st &
slstatus &
exec dwm
Offline
[ 13.900] (==) Using config file: "/etc/X11/xorg.conf"
Remove that file, don't generate a new one. It's pointless cruft.
You probably want to add "nvidia_drm.modeset=1 nvidia_drm.fbdev=0" to the https://wiki.archlinux.org/title/Kernel_parameters (to make sure KMS is enabled, the simpledrm device blocked and to esp. test fbdev=0 because that tends to have varying benefits, see below)
The X11 server starts with a second or so, not "5-10 seconds", so I assume what you experience is purely visual, the fbdev default was recentlty flipped from 0 to 1 and is the strongest contender to cause this.
Offline
That did the trick! thanks!
Offline
\o/
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.
Offline