You are not logged in.

#1 2020-06-14 02:27:41

ffilho
Member
Registered: 2020-06-07
Posts: 21

[SOLVED] Help with Xorg 50-systemd-user.sh and xf86EnableIOPorts

Hi there,

While debuging in my Xorg I came across some different messagens and also questions about what may be generating it.

When starting Xorg using root I got this messages on my tty:

Failed to connect to bus: No such file or directory
dbus-update-activation-environment: error: unable to connect to D-Bus: Using X11 for dbus-daemon autolaunch was disabled at compile time, set your DBUS_SESSION_BUS_ADDRESS instead

No other related messages could be found searching Xorg.0.log. All seems to be sane around there.
I realized this messages was generated by /etc/X11/xinit/xinitrc.d/50-systemd-user.sh script, which has the following content:

#!/bin/sh

systemctl --user import-environment DISPLAY XAUTHORITY

if command -v dbus-update-activation-environment >/dev/null 2>&1; then
    dbus-update-activation-environment DISPLAY XAUTHORITY
fi

I double-checked this variables in my environment but I can't find nothing. I don't even remember to define it by myself... it must be done during X11 installation.

One detail: the commands shown above works properly if issued via regular users rather the root.

Here goes the questions:
- If this variables were meant to be set for Xorg to work, am I suposed to set it by myself or something went wrong during my installation?
- Why this kind of error message wasn't present on Xorg.0.log, being shown only on my tty?

When starting Xorg using regular users I got this message both on my tty and on Xorg.0.log:

xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)

I'm almost convinced that's a permission error, but... permission where?

Any help would be much appreciated!

Last edited by ffilho (2020-06-21 23:11:15)

Offline

#2 2020-06-14 06:42:53

seth
Member
Registered: 2012-09-03
Posts: 50,957

Re: [SOLVED] Help with Xorg 50-systemd-user.sh and xf86EnableIOPorts

When starting Xorg using root

a) Don't.
b) How exactly did you attempt this? (root login, sudo, xorg wrapper config / startx, xinit, just "Xorg", …) - https://bbs.archlinux.org/viewtopic.php?id=57855

xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)

Probably doesn't happen if you prevent Xorg from running "rootless", https://wiki.archlinux.org/index.php/Xorg#Rootless_Xorg
The "error" is common and rather not the cause of actual problems.

While debuging in my Xorg

Is this an xy-problem thread? Do you have actual issues w/ running the X11 server?
Do not pull stunts like "sudo startx" or so, that's bad on several layers.

Post an actual complete xorg log and details on your problem at hand.

Offline

#3 2020-06-14 14:46:51

ffilho
Member
Registered: 2020-06-07
Posts: 21

Re: [SOLVED] Help with Xorg 50-systemd-user.sh and xf86EnableIOPorts

seth wrote:

When starting Xorg using root

a) Don't.
b) How exactly did you attempt this? (root login, sudo, xorg wrapper config / startx, xinit, just "Xorg", …) - https://bbs.archlinux.org/viewtopic.php?id=57855

xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)

Probably doesn't happen if you prevent Xorg from running "rootless", https://wiki.archlinux.org/index.php/Xorg#Rootless_Xorg
The "error" is common and rather not the cause of actual problems.

While debuging in my Xorg

Is this an xy-problem thread? Do you have actual issues w/ running the X11 server?
Do not pull stunts like "sudo startx" or so, that's bad on several layers.

Post an actual complete xorg log and details on your problem at hand.

Hi seth!

I forget to mention that I don't have a desktop environment running on my machine - yet. I'm using Arch to undestand Linux under the hood and that's the reason for my strange command execution - sometimes using root, sometimes using non-root sessions.

Things that may worth saying: I've NVIDIA proprietary drivers running in my machine, with KMS/DRM modules enabled. I'm actually using only twm, xclock and xterm to see Xorg running.
To start Xorg I use xinit, more specifically startx, with both xserverrc and xinitrc configured. Nothing more than this.

I can't answer your question about real problems while running Xorg since twm seems to work as expected. I assume that if it is just a warning or some bug it could be harmless while running a desktop environment, but I'm affraid of problems if I decide to go further with this messages poping out. My point here is to understand what could cause this issues, try to solve or live with it whithout doubts about how things works.

More detailed info below. If something is missing, just ask. And sorry about being vague in previous post.

Video Driver:

nvidia-smi 
Sun Jun 14 11:11:41 2020       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 440.82       Driver Version: 440.82       CUDA Version: 10.2     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|===============================+======================+======================|
|   0  GeForce GTX 1050    Off  | 00000000:01:00.0  On |                  N/A |
| 43%   30C    P8    N/A /  75W |      2MiB /  1992MiB |      0%      Default |
+-------------------------------+----------------------+----------------------+
                                                                               
+-----------------------------------------------------------------------------+
| Processes:                                                       GPU Memory |
|  GPU       PID   Type   Process name                             Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+

xinitrc - this weird spacing was auto-generated.

#!/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

twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &
exec xterm -geometry 80x66+0+0 -name login

serverrc - adjusted as shown in xinit wiki

#!/bin/sh

# Original command
# exec /usr/bin/X -nolisten tcp "$@"
exec /usr/bin/Xorg -nolisten tcp -nolisten local "$@" vt$XDG_VTNR

Xorg.0.log (as root) - located at /var/log/Xorg.0.log

[ 20988.444] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[ 20988.445] Build Operating System: Linux Arch Linux
[ 20988.445] Current Operating System: Linux misfit 5.6.15-arch1-1 #1 SMP PREEMPT Wed, 27 May 2020 23:42:26 +0000 x86_64
[ 20988.445] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=/dev/mapper/volgrp-root rw cryptdevice=UUID=fcb74971-6bea-4d49-a1eb-aae4fca1dba8:cryptlvm:allow-discards cryptkey=rootfs:/root/cryptlvm.keyfile loglevel=3 iommu=pt earlyprintk=efi,keep log_buf_len=16M fbcon=scrollback:1600k nouveau.modeset=0 rd.driver.blacklist=nouveau video=vesa:off nvidia-drm.modeset=1 rhgb apparmor=1 lsm=lockdown,yama,apparmor
[ 20988.445] Build Date: 14 June 2020  12:23:13AM
[ 20988.445]  
[ 20988.445] Current version of pixman: 0.40.0
[ 20988.446] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 20988.446] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 20988.446] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Jun 14 00:43:02 2020
[ 20988.446] (==) Using config file: "/etc/X11/xorg.conf"
[ 20988.446] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 20988.447] (==) ServerLayout "Layout0"
[ 20988.447] (**) |-->Screen "Screen0" (0)
[ 20988.447] (**) |   |-->Monitor "Monitor0"
[ 20988.447] (**) |   |-->Device "Device0"
[ 20988.447] (**) Option "DontZap" "False"
[ 20988.447] (==) Automatically adding devices
[ 20988.447] (==) Automatically enabling devices
[ 20988.447] (==) Automatically adding GPU devices
[ 20988.447] (==) Automatically binding GPU devices
[ 20988.447] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 20988.448] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[ 20988.448] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 20988.448] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 20988.448] (II) Module ABI versions:
[ 20988.448] 	X.Org ANSI C Emulation: 0.4
[ 20988.448] 	X.Org Video Driver: 24.1
[ 20988.448] 	X.Org XInput driver : 24.1
[ 20988.448] 	X.Org Server Extension : 10.0
[ 20988.449] (++) using VT number 1

[ 20988.452] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
[ 20988.453] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 20988.454] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[ 20988.456] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 20988.458] (--) PCI:*(1@0:0:0) 10de:1c81:10de:11c0 rev 161, Mem @ 0xfd000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[ 20988.458] (II) Open ACPI successful (/var/run/acpid.socket)
[ 20988.458] (II) LoadModule: "glx"
[ 20988.458] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 20988.459] (II) Module glx: vendor="X.Org Foundation"
[ 20988.467] 	compiled for 1.20.8, module version = 1.0.0
[ 20988.467] 	ABI class: X.Org Server Extension, version 10.0
[ 20988.467] (II) LoadModule: "nvidia"
[ 20988.468] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 20988.468] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 20988.468] 	compiled for 1.6.99.901, module version = 1.0.0
[ 20988.468] 	Module class: X.Org Video Driver
[ 20988.468] (II) NVIDIA dlloader X Driver  440.82  Wed Apr  1 19:50:17 UTC 2020
[ 20988.468] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 20988.468] (II) systemd-logind: releasing fd for 226:0
[ 20988.469] (II) Loading sub module "fb"
[ 20988.469] (II) LoadModule: "fb"
[ 20988.469] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 20988.469] (II) Module fb: vendor="X.Org Foundation"
[ 20988.469] 	compiled for 1.20.8, module version = 1.0.0
[ 20988.469] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 20988.469] (II) Loading sub module "wfb"
[ 20988.469] (II) LoadModule: "wfb"
[ 20988.469] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 20988.469] (II) Module wfb: vendor="X.Org Foundation"
[ 20988.469] 	compiled for 1.20.8, module version = 1.0.0
[ 20988.469] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 20988.469] (II) Loading sub module "ramdac"
[ 20988.469] (II) LoadModule: "ramdac"
[ 20988.469] (II) Module "ramdac" already built-in
[ 20988.470] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 20988.470] (==) NVIDIA(0): RGB weight 888
[ 20988.470] (==) NVIDIA(0): Default visual is TrueColor
[ 20988.470] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 20988.470] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 20988.470] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 20988.470] (**) NVIDIA(0): Option "SidebandSocketPath" "/var/run/nvidia-xdriver"
[ 20988.470] (**) NVIDIA(0): Enabling 2D acceleration
[ 20988.470] (II) Loading sub module "glxserver_nvidia"
[ 20988.470] (II) LoadModule: "glxserver_nvidia"
[ 20988.470] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 20988.478] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 20988.478] 	compiled for 1.6.99.901, module version = 1.0.0
[ 20988.478] 	Module class: X.Org Server Extension
[ 20988.478] (II) NVIDIA GLX Module  440.82  Wed Apr  1 19:47:36 UTC 2020
[ 20988.478] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 20988.479] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 20988.479] (--) NVIDIA(0):     DFP-0
[ 20988.479] (--) NVIDIA(0):     DFP-1 (boot)
[ 20988.479] (--) NVIDIA(0):     DFP-2
[ 20988.479] (--) NVIDIA(0):     DFP-3
[ 20988.480] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 1050 (GP107-A) at PCI:1:0:0 (GPU-0)
[ 20988.480] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 20988.480] (--) NVIDIA(0): VideoBIOS: 86.07.39.00.d5
[ 20988.480] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 20988.480] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 20988.480] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 20988.480] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 20988.480] (--) NVIDIA(GPU-0): 
[ 20988.510] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): connected
[ 20988.510] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): Internal TMDS
[ 20988.510] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): 600.0 MHz maximum pixel clock
[ 20988.510] (--) NVIDIA(GPU-0): 
[ 20988.510] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 20988.510] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 20988.510] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[ 20988.510] (--) NVIDIA(GPU-0): 
[ 20988.511] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 20988.511] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 20988.511] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 20988.511] (--) NVIDIA(GPU-0): 
[ 20988.517] (==) NVIDIA(0): 
[ 20988.517] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 20988.517] (==) NVIDIA(0):     will be used as the requested mode.
[ 20988.517] (==) NVIDIA(0): 
[ 20988.518] (II) NVIDIA(0): Validated MetaModes:
[ 20988.518] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select"
[ 20988.518] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1080
[ 20988.526] (--) NVIDIA(0): DPI set to (97, 97); computed from "UseEdidDpi" X config
[ 20988.526] (--) NVIDIA(0):     option
[ 20988.527] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[ 20988.527] (II) NVIDIA:     access.
[ 20988.578] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select"
[ 20988.655] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 20988.655] (==) NVIDIA(0): Backing store enabled
[ 20988.655] (==) NVIDIA(0): Silken mouse disabled
[ 20988.656] (**) NVIDIA(0): DPMS enabled
[ 20988.656] (II) Loading sub module "dri2"
[ 20988.656] (II) LoadModule: "dri2"
[ 20988.656] (II) Module "dri2" already built-in
[ 20988.656] (II) NVIDIA(0): [DRI2] Setup complete
[ 20988.656] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[ 20988.656] (II) Initializing extension Generic Event Extension
[ 20988.656] (II) Initializing extension SHAPE
[ 20988.657] (II) Initializing extension MIT-SHM
[ 20988.657] (II) Initializing extension XInputExtension
[ 20988.657] (II) Initializing extension XTEST
[ 20988.657] (II) Initializing extension BIG-REQUESTS
[ 20988.657] (II) Initializing extension SYNC
[ 20988.657] (II) Initializing extension XKEYBOARD
[ 20988.657] (II) Initializing extension XC-MISC
[ 20988.657] (II) Initializing extension SECURITY
[ 20988.658] (II) Initializing extension XFIXES
[ 20988.658] (II) Initializing extension RENDER
[ 20988.658] (II) Initializing extension RANDR
[ 20988.658] (II) Initializing extension COMPOSITE
[ 20988.658] (II) Initializing extension DAMAGE
[ 20988.658] (II) Initializing extension MIT-SCREEN-SAVER
[ 20988.658] (II) Initializing extension DOUBLE-BUFFER
[ 20988.658] (II) Initializing extension RECORD
[ 20988.659] (II) Initializing extension DPMS
[ 20988.659] (II) Initializing extension Present
[ 20988.659] (II) Initializing extension DRI3
[ 20988.659] (II) Initializing extension X-Resource
[ 20988.659] (II) Initializing extension XVideo
[ 20988.659] (II) Initializing extension XVideo-MotionCompensation
[ 20988.659] (II) Initializing extension GLX
[ 20988.659] (II) Initializing extension GLX
[ 20988.659] (II) Indirect GLX disabled.
[ 20988.659] (II) GLX: Another vendor is already registered for screen 0
[ 20988.659] (II) Initializing extension XFree86-VidModeExtension
[ 20988.659] (II) Initializing extension XFree86-DGA
[ 20988.659] (II) Initializing extension XFree86-DRI
[ 20988.660] (II) Initializing extension DRI2
[ 20988.660] (II) Initializing extension NV-GLX
[ 20988.660] (II) Initializing extension NV-CONTROL
[ 20988.660] (II) Initializing extension XINERAMA
[ 20988.776] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 20988.776] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 20988.776] (II) LoadModule: "libinput"
[ 20988.776] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 20988.777] (II) Module libinput: vendor="X.Org Foundation"
[ 20988.777] 	compiled for 1.20.8, module version = 0.30.0
[ 20988.777] 	Module class: X.Org XInput Driver
[ 20988.777] 	ABI class: X.Org XInput driver, version 24.1
[ 20988.777] (II) Using input driver 'libinput' for 'Power Button'
[ 20988.779] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 34 paused 0
[ 20988.779] (**) Power Button: always reports core events
[ 20988.779] (**) Option "Device" "/dev/input/event1"
[ 20988.779] (**) Option "_source" "server/udev"
[ 20988.780] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 20988.780] (II) event1  - Power Button: device is a keyboard
[ 20988.781] (II) event1  - Power Button: device removed
[ 20988.781] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 20988.781] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 20988.781] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 20988.782] (II) event1  - Power Button: device is a keyboard
[ 20988.782] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 20988.782] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 20988.782] (II) Using input driver 'libinput' for 'Power Button'
[ 20988.783] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 37 paused 0
[ 20988.784] (**) Power Button: always reports core events
[ 20988.784] (**) Option "Device" "/dev/input/event0"
[ 20988.784] (**) Option "_source" "server/udev"
[ 20988.784] (II) event0  - Power Button: is tagged by udev as: Keyboard
[ 20988.784] (II) event0  - Power Button: device is a keyboard
[ 20988.785] (II) event0  - Power Button: device removed
[ 20988.785] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 20988.785] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 20988.786] (II) event0  - Power Button: is tagged by udev as: Keyboard
[ 20988.786] (II) event0  - Power Button: device is a keyboard
[ 20988.786] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event10)
[ 20988.786] (II) No input driver specified, ignoring this device.
[ 20988.786] (II) This device may have been added with another device file.
[ 20988.787] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event11)
[ 20988.787] (II) No input driver specified, ignoring this device.
[ 20988.787] (II) This device may have been added with another device file.
[ 20988.787] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event12)
[ 20988.787] (II) No input driver specified, ignoring this device.
[ 20988.787] (II) This device may have been added with another device file.
[ 20988.787] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
[ 20988.787] (II) No input driver specified, ignoring this device.
[ 20988.787] (II) This device may have been added with another device file.
[ 20988.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event14)
[ 20988.788] (II) No input driver specified, ignoring this device.
[ 20988.788] (II) This device may have been added with another device file.
[ 20988.788] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event15)
[ 20988.788] (II) No input driver specified, ignoring this device.
[ 20988.788] (II) This device may have been added with another device file.
[ 20988.788] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard (/dev/input/event2)
[ 20988.788] (**) Corsair Corsair Gaming K55 RGB Keyboard: Applying InputClass "libinput keyboard catchall"
[ 20988.788] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming K55 RGB Keyboard'
[ 20988.790] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 38 paused 0
[ 20988.790] (**) Corsair Corsair Gaming K55 RGB Keyboard: always reports core events
[ 20988.790] (**) Option "Device" "/dev/input/event2"
[ 20988.790] (**) Option "_source" "server/udev"
[ 20988.792] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: is tagged by udev as: Keyboard
[ 20988.792] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device is a keyboard
[ 20988.792] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device removed
[ 20988.792] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.0/0003:1B1C:1B3D.0001/input/input2/event2"
[ 20988.792] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming K55 RGB Keyboard" (type: KEYBOARD, id 8)
[ 20988.793] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: is tagged by udev as: Keyboard
[ 20988.794] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device is a keyboard
[ 20988.794] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard Consumer Control (/dev/input/event3)
[ 20988.794] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 20988.794] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming K55 RGB Keyboard Consumer Control'
[ 20988.796] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 39 paused 0
[ 20988.796] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: always reports core events
[ 20988.796] (**) Option "Device" "/dev/input/event3"
[ 20988.796] (**) Option "_source" "server/udev"
[ 20988.797] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: is tagged by udev as: Keyboard
[ 20988.797] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device is a keyboard
[ 20988.798] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device removed
[ 20988.798] (II) libinput: Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: needs a virtual subdevice
[ 20988.798] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.0/0003:1B1C:1B3D.0001/input/input3/event3"
[ 20988.798] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming K55 RGB Keyboard Consumer Control" (type: MOUSE, id 9)
[ 20988.798] (**) Option "AccelerationScheme" "none"
[ 20988.798] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: (accel) selected scheme none/0
[ 20988.798] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: (accel) acceleration factor: 2.000
[ 20988.798] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: (accel) acceleration threshold: 4
[ 20988.799] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: is tagged by udev as: Keyboard
[ 20988.799] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device is a keyboard
[ 20988.800] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard (/dev/input/event4)
[ 20988.800] (II) No input driver specified, ignoring this device.
[ 20988.800] (II) This device may have been added with another device file.
[ 20988.801] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard (/dev/input/event5)
[ 20988.801] (II) No input driver specified, ignoring this device.
[ 20988.801] (II) This device may have been added with another device file.
[ 20988.801] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/event6)
[ 20988.801] (**) Corsair Corsair Gaming HARPOON RGB Mouse: Applying InputClass "libinput pointer catchall"
[ 20988.801] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming HARPOON RGB Mouse'
[ 20988.803] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 40 paused 0
[ 20988.803] (**) Corsair Corsair Gaming HARPOON RGB Mouse: always reports core events
[ 20988.803] (**) Option "Device" "/dev/input/event6"
[ 20988.803] (**) Option "_source" "server/udev"
[ 20988.804] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: is tagged by udev as: Mouse
[ 20988.804] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device is a pointer
[ 20988.805] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device removed
[ 20988.805] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1B1C:1B3C.0003/input/input6/event6"
[ 20988.805] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming HARPOON RGB Mouse" (type: MOUSE, id 10)
[ 20988.805] (**) Option "AccelerationScheme" "none"
[ 20988.805] (**) Corsair Corsair Gaming HARPOON RGB Mouse: (accel) selected scheme none/0
[ 20988.805] (**) Corsair Corsair Gaming HARPOON RGB Mouse: (accel) acceleration factor: 2.000
[ 20988.805] (**) Corsair Corsair Gaming HARPOON RGB Mouse: (accel) acceleration threshold: 4
[ 20988.806] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: is tagged by udev as: Mouse
[ 20988.806] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device is a pointer
[ 20988.807] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/js0)
[ 20988.807] (II) No input driver specified, ignoring this device.
[ 20988.807] (II) This device may have been added with another device file.
[ 20988.808] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/mouse0)
[ 20988.808] (II) No input driver specified, ignoring this device.
[ 20988.808] (II) This device may have been added with another device file.
[ 20988.808] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/event7)
[ 20988.808] (II) No input driver specified, ignoring this device.
[ 20988.808] (II) This device may have been added with another device file.
[ 20988.809] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/event8)
[ 20988.809] (II) No input driver specified, ignoring this device.
[ 20988.809] (II) This device may have been added with another device file.
[ 20988.809] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event16)
[ 20988.809] (II) No input driver specified, ignoring this device.
[ 20988.809] (II) This device may have been added with another device file.
[ 20988.809] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event17)
[ 20988.809] (II) No input driver specified, ignoring this device.
[ 20988.809] (II) This device may have been added with another device file.
[ 20988.810] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event18)
[ 20988.810] (II) No input driver specified, ignoring this device.
[ 20988.810] (II) This device may have been added with another device file.
[ 20988.810] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event19)
[ 20988.810] (II) No input driver specified, ignoring this device.
[ 20988.810] (II) This device may have been added with another device file.
[ 20988.810] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event20)
[ 20988.810] (II) No input driver specified, ignoring this device.
[ 20988.810] (II) This device may have been added with another device file.
[ 20988.811] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event21)
[ 20988.811] (II) No input driver specified, ignoring this device.
[ 20988.811] (II) This device may have been added with another device file.
[ 20988.811] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event22)
[ 20988.811] (II) No input driver specified, ignoring this device.
[ 20988.811] (II) This device may have been added with another device file.
[ 20988.811] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event23)
[ 20988.811] (II) No input driver specified, ignoring this device.
[ 20988.811] (II) This device may have been added with another device file.
[ 20988.811] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
[ 20988.811] (II) No input driver specified, ignoring this device.
[ 20988.811] (II) This device may have been added with another device file.
[ 20988.815] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 20988.815] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming K55 RGB Keyboard Consumer Control'
[ 20988.815] (II) systemd-logind: returning pre-existing fd for /dev/input/event3 13:67
[ 20988.815] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: always reports core events
[ 20988.815] (**) Option "Device" "/dev/input/event3"
[ 20988.815] (**) Option "_source" "_driver/libinput"
[ 20988.815] (II) libinput: Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: is a virtual subdevice
[ 20988.815] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.0/0003:1B1C:1B3D.0001/input/input3/event3"
[ 20988.815] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming K55 RGB Keyboard Consumer Control" (type: KEYBOARD, id 11)
[ 20992.133] (**) Option "fd" "34"
[ 20992.133] (II) event1  - Power Button: device removed
[ 20992.134] (**) Option "fd" "37"
[ 20992.134] (II) event0  - Power Button: device removed
[ 20992.134] (**) Option "fd" "38"
[ 20992.134] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device removed
[ 20992.134] (**) Option "fd" "39"
[ 20992.134] (**) Option "fd" "40"
[ 20992.134] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device removed
[ 20992.134] (**) Option "fd" "39"
[ 20992.134] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device removed
[ 20992.138] (II) UnloadModule: "libinput"
[ 20992.138] (II) systemd-logind: not releasing fd for 13:67, still in use
[ 20992.138] (II) UnloadModule: "libinput"
[ 20992.138] (II) systemd-logind: releasing fd for 13:70
[ 20992.219] (II) UnloadModule: "libinput"
[ 20992.219] (II) systemd-logind: releasing fd for 13:67
[ 20992.246] (II) UnloadModule: "libinput"
[ 20992.246] (II) systemd-logind: releasing fd for 13:66
[ 20992.276] (II) UnloadModule: "libinput"
[ 20992.276] (II) systemd-logind: releasing fd for 13:64
[ 20992.313] (II) UnloadModule: "libinput"
[ 20992.313] (II) systemd-logind: releasing fd for 13:65
[ 20992.533] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 20992.538] (II) Server terminated successfully (0). Closing log file.

Xorg.0.log (as regular user) - located at ~/.local/share/xorg/Xorg.0.log

[ 20709.226] 
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[ 20709.226] Build Operating System: Linux Arch Linux
[ 20709.227] Current Operating System: Linux misfit 5.6.15-arch1-1 #1 SMP PREEMPT Wed, 27 May 2020 23:42:26 +0000 x86_64
[ 20709.227] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=/dev/mapper/volgrp-root rw cryptdevice=UUID=fcb74971-6bea-4d49-a1eb-aae4fca1dba8:cryptlvm:allow-discards cryptkey=rootfs:/root/cryptlvm.keyfile loglevel=3 iommu=pt earlyprintk=efi,keep log_buf_len=16M fbcon=scrollback:1600k nouveau.modeset=0 rd.driver.blacklist=nouveau video=vesa:off nvidia-drm.modeset=1 rhgb apparmor=1 lsm=lockdown,yama,apparmor
[ 20709.227] Build Date: 14 June 2020  12:23:13AM
[ 20709.227]  
[ 20709.227] Current version of pixman: 0.40.0
[ 20709.227] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[ 20709.227] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 20709.228] (==) Log file: "/home/ff/.local/share/xorg/Xorg.0.log", Time: Sun Jun 14 00:38:23 2020
[ 20709.228] (==) Using config file: "/etc/X11/xorg.conf"
[ 20709.228] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 20709.229] (==) ServerLayout "Layout0"
[ 20709.229] (**) |-->Screen "Screen0" (0)
[ 20709.229] (**) |   |-->Monitor "Monitor0"
[ 20709.229] (**) |   |-->Device "Device0"
[ 20709.229] (**) Option "DontZap" "False"
[ 20709.229] (==) Automatically adding devices
[ 20709.229] (==) Automatically enabling devices
[ 20709.229] (==) Automatically adding GPU devices
[ 20709.229] (==) Automatically binding GPU devices
[ 20709.229] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 20709.229] (==) FontPath set to:
	/usr/share/fonts/misc,
	/usr/share/fonts/TTF,
	/usr/share/fonts/OTF,
	/usr/share/fonts/Type1,
	/usr/share/fonts/100dpi,
	/usr/share/fonts/75dpi
[ 20709.229] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 20709.229] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 20709.229] (II) Module ABI versions:
[ 20709.229] 	X.Org ANSI C Emulation: 0.4
[ 20709.230] 	X.Org Video Driver: 24.1
[ 20709.230] 	X.Org XInput driver : 24.1
[ 20709.230] 	X.Org Server Extension : 10.0
[ 20709.231] (++) using VT number 1

[ 20709.233] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_33
[ 20709.235] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 20709.236] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[ 20709.241] (**) OutputClass "nvidia" ModulePath extended to "/usr/lib/nvidia/xorg,/usr/lib/xorg/modules,/usr/lib/xorg/modules"
[ 20709.245] (--) PCI:*(1@0:0:0) 10de:1c81:10de:11c0 rev 161, Mem @ 0xfd000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/131072
[ 20709.245] (II) Open ACPI successful (/var/run/acpid.socket)
[ 20709.245] (II) LoadModule: "glx"
[ 20709.246] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 20709.249] (II) Module glx: vendor="X.Org Foundation"
[ 20709.249] 	compiled for 1.20.8, module version = 1.0.0
[ 20709.249] 	ABI class: X.Org Server Extension, version 10.0
[ 20709.249] (II) LoadModule: "nvidia"
[ 20709.250] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 20709.250] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 20709.250] 	compiled for 1.6.99.901, module version = 1.0.0
[ 20709.250] 	Module class: X.Org Video Driver
[ 20709.250] (II) NVIDIA dlloader X Driver  440.82  Wed Apr  1 19:50:17 UTC 2020
[ 20709.250] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 20709.251] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[ 20709.251] (II) systemd-logind: releasing fd for 226:0
[ 20709.252] (II) Loading sub module "fb"
[ 20709.252] (II) LoadModule: "fb"
[ 20709.252] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 20709.252] (II) Module fb: vendor="X.Org Foundation"
[ 20709.252] 	compiled for 1.20.8, module version = 1.0.0
[ 20709.252] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 20709.252] (II) Loading sub module "wfb"
[ 20709.252] (II) LoadModule: "wfb"
[ 20709.253] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 20709.253] (II) Module wfb: vendor="X.Org Foundation"
[ 20709.253] 	compiled for 1.20.8, module version = 1.0.0
[ 20709.253] 	ABI class: X.Org ANSI C Emulation, version 0.4
[ 20709.253] (II) Loading sub module "ramdac"
[ 20709.253] (II) LoadModule: "ramdac"
[ 20709.253] (II) Module "ramdac" already built-in
[ 20709.254] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 20709.254] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 20709.254] (==) NVIDIA(0): RGB weight 888
[ 20709.254] (==) NVIDIA(0): Default visual is TrueColor
[ 20709.254] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 20709.254] (II) Applying OutputClass "nvidia" options to /dev/dri/card0
[ 20709.254] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration"
[ 20709.254] (**) NVIDIA(0): Option "SidebandSocketPath" "/var/run/nvidia-xdriver"
[ 20709.254] (**) NVIDIA(0): Enabling 2D acceleration
[ 20709.254] (II) Loading sub module "glxserver_nvidia"
[ 20709.254] (II) LoadModule: "glxserver_nvidia"
[ 20709.255] (II) Loading /usr/lib/nvidia/xorg/libglxserver_nvidia.so
[ 20709.264] (II) Module glxserver_nvidia: vendor="NVIDIA Corporation"
[ 20709.264] 	compiled for 1.6.99.901, module version = 1.0.0
[ 20709.264] 	Module class: X.Org Server Extension
[ 20709.264] (II) NVIDIA GLX Module  440.82  Wed Apr  1 19:47:36 UTC 2020
[ 20709.265] (II) NVIDIA: The X server supports PRIME Render Offload.
[ 20709.266] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[ 20709.266] (--) NVIDIA(0):     DFP-0
[ 20709.266] (--) NVIDIA(0):     DFP-1 (boot)
[ 20709.266] (--) NVIDIA(0):     DFP-2
[ 20709.266] (--) NVIDIA(0):     DFP-3
[ 20709.267] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 1050 (GP107-A) at PCI:1:0:0 (GPU-0)
[ 20709.267] (--) NVIDIA(0): Memory: 2097152 kBytes
[ 20709.267] (--) NVIDIA(0): VideoBIOS: 86.07.39.00.d5
[ 20709.267] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[ 20709.267] (--) NVIDIA(GPU-0): DFP-0: disconnected
[ 20709.267] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[ 20709.267] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[ 20709.267] (--) NVIDIA(GPU-0): 
[ 20709.297] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): connected
[ 20709.297] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): Internal TMDS
[ 20709.297] (--) NVIDIA(GPU-0): LG Electronics LG ULTRAWIDE (DFP-1): 600.0 MHz maximum pixel clock
[ 20709.297] (--) NVIDIA(GPU-0): 
[ 20709.297] (--) NVIDIA(GPU-0): DFP-2: disconnected
[ 20709.297] (--) NVIDIA(GPU-0): DFP-2: Internal DisplayPort
[ 20709.297] (--) NVIDIA(GPU-0): DFP-2: 1440.0 MHz maximum pixel clock
[ 20709.297] (--) NVIDIA(GPU-0): 
[ 20709.297] (--) NVIDIA(GPU-0): DFP-3: disconnected
[ 20709.297] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[ 20709.297] (--) NVIDIA(GPU-0): DFP-3: 165.0 MHz maximum pixel clock
[ 20709.297] (--) NVIDIA(GPU-0): 
[ 20709.303] (==) NVIDIA(0): 
[ 20709.303] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[ 20709.303] (==) NVIDIA(0):     will be used as the requested mode.
[ 20709.303] (==) NVIDIA(0): 
[ 20709.304] (II) NVIDIA(0): Validated MetaModes:
[ 20709.304] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select"
[ 20709.304] (II) NVIDIA(0): Virtual screen size determined to be 2560 x 1080
[ 20709.312] (--) NVIDIA(0): DPI set to (97, 97); computed from "UseEdidDpi" X config
[ 20709.312] (--) NVIDIA(0):     option
[ 20709.313] (II) NVIDIA: Using 24576.00 MB of virtual memory for indirect memory
[ 20709.313] (II) NVIDIA:     access.
[ 20709.364] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select"
[ 20709.439] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 20709.439] (==) NVIDIA(0): Backing store enabled
[ 20709.439] (==) NVIDIA(0): Silken mouse disabled
[ 20709.439] (**) NVIDIA(0): DPMS enabled
[ 20709.439] (II) Loading sub module "dri2"
[ 20709.439] (II) LoadModule: "dri2"
[ 20709.439] (II) Module "dri2" already built-in
[ 20709.439] (II) NVIDIA(0): [DRI2] Setup complete
[ 20709.439] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[ 20709.440] (II) Initializing extension Generic Event Extension
[ 20709.440] (II) Initializing extension SHAPE
[ 20709.440] (II) Initializing extension MIT-SHM
[ 20709.440] (II) Initializing extension XInputExtension
[ 20709.440] (II) Initializing extension XTEST
[ 20709.440] (II) Initializing extension BIG-REQUESTS
[ 20709.440] (II) Initializing extension SYNC
[ 20709.440] (II) Initializing extension XKEYBOARD
[ 20709.441] (II) Initializing extension XC-MISC
[ 20709.441] (II) Initializing extension SECURITY
[ 20709.441] (II) Initializing extension XFIXES
[ 20709.441] (II) Initializing extension RENDER
[ 20709.441] (II) Initializing extension RANDR
[ 20709.441] (II) Initializing extension COMPOSITE
[ 20709.441] (II) Initializing extension DAMAGE
[ 20709.441] (II) Initializing extension MIT-SCREEN-SAVER
[ 20709.442] (II) Initializing extension DOUBLE-BUFFER
[ 20709.442] (II) Initializing extension RECORD
[ 20709.442] (II) Initializing extension DPMS
[ 20709.442] (II) Initializing extension Present
[ 20709.442] (II) Initializing extension DRI3
[ 20709.442] (II) Initializing extension X-Resource
[ 20709.442] (II) Initializing extension XVideo
[ 20709.442] (II) Initializing extension XVideo-MotionCompensation
[ 20709.442] (II) Initializing extension GLX
[ 20709.442] (II) Initializing extension GLX
[ 20709.442] (II) Indirect GLX disabled.
[ 20709.442] (II) GLX: Another vendor is already registered for screen 0
[ 20709.442] (II) Initializing extension XFree86-VidModeExtension
[ 20709.443] (II) Initializing extension XFree86-DGA
[ 20709.443] (II) Initializing extension XFree86-DRI
[ 20709.443] (II) Initializing extension DRI2
[ 20709.443] (II) Initializing extension NV-GLX
[ 20709.443] (II) Initializing extension NV-CONTROL
[ 20709.443] (II) Initializing extension XINERAMA
[ 20709.523] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 20709.523] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 20709.523] (II) LoadModule: "libinput"
[ 20709.524] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 20709.525] (II) Module libinput: vendor="X.Org Foundation"
[ 20709.525] 	compiled for 1.20.8, module version = 0.30.0
[ 20709.525] 	Module class: X.Org XInput Driver
[ 20709.525] 	ABI class: X.Org XInput driver, version 24.1
[ 20709.525] (II) Using input driver 'libinput' for 'Power Button'
[ 20709.526] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 31 paused 0
[ 20709.526] (**) Power Button: always reports core events
[ 20709.526] (**) Option "Device" "/dev/input/event1"
[ 20709.526] (**) Option "_source" "server/udev"
[ 20709.528] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 20709.528] (II) event1  - Power Button: device is a keyboard
[ 20709.528] (II) event1  - Power Button: device removed
[ 20709.528] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[ 20709.528] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 20709.529] (II) event1  - Power Button: is tagged by udev as: Keyboard
[ 20709.529] (II) event1  - Power Button: device is a keyboard
[ 20709.529] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[ 20709.529] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 20709.530] (II) Using input driver 'libinput' for 'Power Button'
[ 20709.531] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 34 paused 0
[ 20709.531] (**) Power Button: always reports core events
[ 20709.531] (**) Option "Device" "/dev/input/event0"
[ 20709.531] (**) Option "_source" "server/udev"
[ 20709.532] (II) event0  - Power Button: is tagged by udev as: Keyboard
[ 20709.532] (II) event0  - Power Button: device is a keyboard
[ 20709.532] (II) event0  - Power Button: device removed
[ 20709.532] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[ 20709.532] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[ 20709.533] (II) event0  - Power Button: is tagged by udev as: Keyboard
[ 20709.533] (II) event0  - Power Button: device is a keyboard
[ 20709.534] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event10)
[ 20709.534] (II) No input driver specified, ignoring this device.
[ 20709.534] (II) This device may have been added with another device file.
[ 20709.534] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event11)
[ 20709.534] (II) No input driver specified, ignoring this device.
[ 20709.534] (II) This device may have been added with another device file.
[ 20709.534] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event12)
[ 20709.534] (II) No input driver specified, ignoring this device.
[ 20709.534] (II) This device may have been added with another device file.
[ 20709.534] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event13)
[ 20709.534] (II) No input driver specified, ignoring this device.
[ 20709.535] (II) This device may have been added with another device file.
[ 20709.535] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=10 (/dev/input/event14)
[ 20709.535] (II) No input driver specified, ignoring this device.
[ 20709.535] (II) This device may have been added with another device file.
[ 20709.535] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=11 (/dev/input/event15)
[ 20709.535] (II) No input driver specified, ignoring this device.
[ 20709.535] (II) This device may have been added with another device file.
[ 20709.536] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard (/dev/input/event2)
[ 20709.536] (**) Corsair Corsair Gaming K55 RGB Keyboard: Applying InputClass "libinput keyboard catchall"
[ 20709.536] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming K55 RGB Keyboard'
[ 20709.537] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 35 paused 0
[ 20709.537] (**) Corsair Corsair Gaming K55 RGB Keyboard: always reports core events
[ 20709.537] (**) Option "Device" "/dev/input/event2"
[ 20709.537] (**) Option "_source" "server/udev"
[ 20709.539] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: is tagged by udev as: Keyboard
[ 20709.539] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device is a keyboard
[ 20709.539] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device removed
[ 20709.539] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.0/0003:1B1C:1B3D.0001/input/input2/event2"
[ 20709.539] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming K55 RGB Keyboard" (type: KEYBOARD, id 8)
[ 20709.540] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: is tagged by udev as: Keyboard
[ 20709.540] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device is a keyboard
[ 20709.541] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard Consumer Control (/dev/input/event3)
[ 20709.541] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 20709.541] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming K55 RGB Keyboard Consumer Control'
[ 20709.543] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 36 paused 0
[ 20709.543] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: always reports core events
[ 20709.543] (**) Option "Device" "/dev/input/event3"
[ 20709.543] (**) Option "_source" "server/udev"
[ 20709.544] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: is tagged by udev as: Keyboard
[ 20709.544] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device is a keyboard
[ 20709.545] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device removed
[ 20709.545] (II) libinput: Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: needs a virtual subdevice
[ 20709.545] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.0/0003:1B1C:1B3D.0001/input/input3/event3"
[ 20709.545] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming K55 RGB Keyboard Consumer Control" (type: MOUSE, id 9)
[ 20709.545] (**) Option "AccelerationScheme" "none"
[ 20709.545] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: (accel) selected scheme none/0
[ 20709.545] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: (accel) acceleration factor: 2.000
[ 20709.545] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: (accel) acceleration threshold: 4
[ 20709.546] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: is tagged by udev as: Keyboard
[ 20709.546] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device is a keyboard
[ 20709.547] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard (/dev/input/event4)
[ 20709.547] (II) No input driver specified, ignoring this device.
[ 20709.547] (II) This device may have been added with another device file.
[ 20709.548] (II) config/udev: Adding input device Corsair Corsair Gaming K55 RGB Keyboard (/dev/input/event5)
[ 20709.548] (II) No input driver specified, ignoring this device.
[ 20709.548] (II) This device may have been added with another device file.
[ 20709.548] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/event6)
[ 20709.548] (**) Corsair Corsair Gaming HARPOON RGB Mouse: Applying InputClass "libinput pointer catchall"
[ 20709.548] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming HARPOON RGB Mouse'
[ 20709.550] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 37 paused 0
[ 20709.550] (**) Corsair Corsair Gaming HARPOON RGB Mouse: always reports core events
[ 20709.550] (**) Option "Device" "/dev/input/event6"
[ 20709.550] (**) Option "_source" "server/udev"
[ 20709.551] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: is tagged by udev as: Mouse
[ 20709.551] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device is a pointer
[ 20709.551] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device removed
[ 20709.551] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-5/7-5:1.0/0003:1B1C:1B3C.0003/input/input6/event6"
[ 20709.551] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming HARPOON RGB Mouse" (type: MOUSE, id 10)
[ 20709.552] (**) Option "AccelerationScheme" "none"
[ 20709.552] (**) Corsair Corsair Gaming HARPOON RGB Mouse: (accel) selected scheme none/0
[ 20709.552] (**) Corsair Corsair Gaming HARPOON RGB Mouse: (accel) acceleration factor: 2.000
[ 20709.552] (**) Corsair Corsair Gaming HARPOON RGB Mouse: (accel) acceleration threshold: 4
[ 20709.553] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: is tagged by udev as: Mouse
[ 20709.553] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device is a pointer
[ 20709.554] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/js0)
[ 20709.554] (II) No input driver specified, ignoring this device.
[ 20709.554] (II) This device may have been added with another device file.
[ 20709.554] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/mouse0)
[ 20709.554] (II) No input driver specified, ignoring this device.
[ 20709.554] (II) This device may have been added with another device file.
[ 20709.555] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/event7)
[ 20709.555] (II) No input driver specified, ignoring this device.
[ 20709.555] (II) This device may have been added with another device file.
[ 20709.555] (II) config/udev: Adding input device Corsair Corsair Gaming HARPOON RGB Mouse (/dev/input/event8)
[ 20709.555] (II) No input driver specified, ignoring this device.
[ 20709.555] (II) This device may have been added with another device file.
[ 20709.556] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event16)
[ 20709.556] (II) No input driver specified, ignoring this device.
[ 20709.556] (II) This device may have been added with another device file.
[ 20709.556] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event17)
[ 20709.556] (II) No input driver specified, ignoring this device.
[ 20709.556] (II) This device may have been added with another device file.
[ 20709.556] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event18)
[ 20709.556] (II) No input driver specified, ignoring this device.
[ 20709.556] (II) This device may have been added with another device file.
[ 20709.557] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event19)
[ 20709.557] (II) No input driver specified, ignoring this device.
[ 20709.557] (II) This device may have been added with another device file.
[ 20709.557] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event20)
[ 20709.557] (II) No input driver specified, ignoring this device.
[ 20709.557] (II) This device may have been added with another device file.
[ 20709.557] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event21)
[ 20709.557] (II) No input driver specified, ignoring this device.
[ 20709.557] (II) This device may have been added with another device file.
[ 20709.558] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event22)
[ 20709.558] (II) No input driver specified, ignoring this device.
[ 20709.558] (II) This device may have been added with another device file.
[ 20709.558] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event23)
[ 20709.558] (II) No input driver specified, ignoring this device.
[ 20709.558] (II) This device may have been added with another device file.
[ 20709.558] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
[ 20709.558] (II) No input driver specified, ignoring this device.
[ 20709.558] (II) This device may have been added with another device file.
[ 20709.562] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: Applying InputClass "libinput keyboard catchall"
[ 20709.562] (II) Using input driver 'libinput' for 'Corsair Corsair Gaming K55 RGB Keyboard Consumer Control'
[ 20709.562] (II) systemd-logind: returning pre-existing fd for /dev/input/event3 13:67
[ 20709.562] (**) Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: always reports core events
[ 20709.562] (**) Option "Device" "/dev/input/event3"
[ 20709.562] (**) Option "_source" "_driver/libinput"
[ 20709.562] (II) libinput: Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: is a virtual subdevice
[ 20709.562] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb7/7-4/7-4:1.0/0003:1B1C:1B3D.0001/input/input3/event3"
[ 20709.562] (II) XINPUT: Adding extended input device "Corsair Corsair Gaming K55 RGB Keyboard Consumer Control" (type: KEYBOARD, id 11)
[ 20713.493] (**) Option "fd" "31"
[ 20713.493] (II) event1  - Power Button: device removed
[ 20713.493] (**) Option "fd" "34"
[ 20713.493] (II) event0  - Power Button: device removed
[ 20713.493] (**) Option "fd" "35"
[ 20713.493] (II) event2  - Corsair Corsair Gaming K55 RGB Keyboard: device removed
[ 20713.494] (**) Option "fd" "36"
[ 20713.494] (**) Option "fd" "37"
[ 20713.494] (II) event6  - Corsair Corsair Gaming HARPOON RGB Mouse: device removed
[ 20713.494] (**) Option "fd" "36"
[ 20713.494] (II) event3  - Corsair Corsair Gaming K55 RGB Keyboard Consumer Control: device removed
[ 20713.497] (II) UnloadModule: "libinput"
[ 20713.497] (II) systemd-logind: not releasing fd for 13:67, still in use
[ 20713.497] (II) UnloadModule: "libinput"
[ 20713.497] (II) systemd-logind: releasing fd for 13:70
[ 20713.566] (II) UnloadModule: "libinput"
[ 20713.566] (II) systemd-logind: releasing fd for 13:67
[ 20713.606] (II) UnloadModule: "libinput"
[ 20713.606] (II) systemd-logind: releasing fd for 13:66
[ 20713.632] (II) UnloadModule: "libinput"
[ 20713.632] (II) systemd-logind: releasing fd for 13:64
[ 20713.673] (II) UnloadModule: "libinput"
[ 20713.673] (II) systemd-logind: releasing fd for 13:65
[ 20713.900] (II) NVIDIA(GPU-0): Deleting GPU-0
[ 20713.905] (II) Server terminated successfully (0). Closing log file.

Offline

#4 2020-06-14 15:47:10

seth
Member
Registered: 2012-09-03
Posts: 50,957

Re: [SOLVED] Help with Xorg 50-systemd-user.sh and xf86EnableIOPorts

It will go away if you set "needs_root_rights = no" in /etc/X11/Xwrapper.config which will make Xorg run as root.
It's unlikely to cause any problems, though https://lists.x.org/archives/xorg-devel … 57899.html
The function itself should™ be no longer relevant on linux, I guess the nvidia driver calls it in some generic code (it seems still relevant on solaris)

If it calms your mind: make X11 require root rights, start the server, see whether the message is gone.
If so, feel brave enough to unrequire the root rights and proceed with your adventures. If you should ever stumble over this, you know how to sidestep it.

Offline

#5 2020-06-21 23:10:52

ffilho
Member
Registered: 2020-06-07
Posts: 21

Re: [SOLVED] Help with Xorg 50-systemd-user.sh and xf86EnableIOPorts

I would like to thanks for seth support in this matter. Since then, I've KDE Desktop Environment flawless running, with no warnings or errors popping out on Xorg logs. I'll mark this topic as resolved.

Offline

Board footer

Powered by FluxBB