You are not logged in.
I am planning to get rid of plasma and install tiling window manager. But before I do it, I have already encountered a problem. My startx works fine, it will load plasma, but not on login. Arch loads as expected, I enter my username and password, type startx and plasma is ready. The only problem is, that it won't start automatically. I followed wiki, but I am doing something wrong, and I do not know what.I have also disabled sddm.service.
ad4ms3@archlinux ~ $ pgrep Xorg
499
ad4ms3@archlinux ~ :( $ echo $XDG_VTNR
1
ad4ms3@archlinux ~ $ loginctl
SESSION UID USER SEAT TTY
1 1000 ad4ms3 seat0 tty1
1 sessions listed.
ad4ms3@archlinux ~ $ uname -a
Linux archlinux 5.4.49-1-lts #1 SMP Thu, 25 Jun 2020 00:14:43 +0000 x86_64 GNU/Linux
ad4ms3@archlinux ~ $ echo $0
/bin/bash~/.bash_profile (it only contains this, nothing else): if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
exec startx
fi.xinitrc:
#!/bin/sh
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
export DESKTOP_SESSION=plasma
exec startplasma-x11
# 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 loginXorg log:
[ 33.166] (WW) Failed to open protocol names file lib/xorg/protocol.txt
[ 33.167]
X.Org X Server 1.20.8
X Protocol Version 11, Revision 0
[ 33.167] Build Operating System: Linux Arch Linux
[ 33.167] Current Operating System: Linux archlinux 5.4.49-1-lts #1 SMP Thu, 25 Jun 2020 00:14:43 +0000 x86_64
[ 33.167] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux-lts root=UUID=c04c4512-f430-4597-85a1-290ac480d78b rw quiet apparmor=1 security=apparmor
[ 33.167] Build Date: 05 May 2020 05:08:17AM
[ 33.167]
[ 33.167] Current version of pixman: 0.40.0
[ 33.167] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 33.167] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 33.168] (==) Log file: "/home/ad4ms3/.local/share/xorg/Xorg.0.log", Time: Thu Jul 2 15:42:57 2020
[ 33.169] (==) Using config directory: "/etc/X11/xorg.conf.d"
[ 33.169] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 33.170] (==) No Layout section. Using the first Screen section.
[ 33.170] (==) No screen section available. Using defaults.
[ 33.170] (**) |-->Screen "Default Screen Section" (0)
[ 33.170] (**) | |-->Monitor "<default monitor>"
[ 33.171] (==) No device specified for screen "Default Screen Section".
Using the first device section listed.
[ 33.171] (**) | |-->Device "Intel Graphics"
[ 33.171] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 33.171] (==) Automatically adding devices
[ 33.171] (==) Automatically enabling devices
[ 33.171] (==) Automatically adding GPU devices
[ 33.171] (==) Automatically binding GPU devices
[ 33.171] (==) Max clients allowed: 256, resource mask: 0x1fffff
[ 33.171] (WW) The directory "/usr/share/fonts/misc" does not exist.
[ 33.171] Entry deleted from font path.
[ 33.172] (WW) The directory "/usr/share/fonts/OTF" does not exist.
[ 33.172] Entry deleted from font path.
[ 33.172] (WW) The directory "/usr/share/fonts/Type1" does not exist.
[ 33.172] Entry deleted from font path.
[ 33.173] (==) FontPath set to:
/usr/share/fonts/TTF,
/usr/share/fonts/100dpi,
/usr/share/fonts/75dpi
[ 33.173] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 33.173] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 33.173] (II) Module ABI versions:
[ 33.173] X.Org ANSI C Emulation: 0.4
[ 33.173] X.Org Video Driver: 24.1
[ 33.173] X.Org XInput driver : 24.1
[ 33.173] X.Org Server Extension : 10.0
[ 33.174] (++) using VT number 1
[ 33.176] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[ 33.177] (II) xfree86: Adding drm device (/dev/dri/card0)
[ 33.178] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[ 33.181] (--) PCI:*(0@0:2:0) 8086:0106:103c:1841 rev 9, Mem @ 0xc2000000/4194304, 0xb0000000/268435456, I/O @ 0x00004000/64, BIOS @ 0x????????/131072
[ 33.181] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[ 33.181] (II) LoadModule: "glx"
[ 33.183] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 33.195] (II) Module glx: vendor="X.Org Foundation"
[ 33.195] compiled for 1.20.8, module version = 1.0.0
[ 33.195] ABI class: X.Org Server Extension, version 10.0
[ 33.195] (II) LoadModule: "intel"
[ 33.200] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 33.204] (II) Module intel: vendor="X.Org Foundation"
[ 33.205] compiled for 1.20.8, module version = 2.99.917
[ 33.205] Module class: X.Org Video Driver
[ 33.205] ABI class: X.Org Video Driver, version 24.1
[ 33.205] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[ 33.205] (II) intel: Driver for Intel(R) HD Graphics
[ 33.205] (II) intel: Driver for Intel(R) Iris(TM) Graphics
[ 33.205] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics
[ 33.205] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[ 33.206] (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20190822
[ 33.206] (II) intel(0): SNA compiled from 2.99.917-908-g7181c5a4
[ 33.227] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[ 33.228] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 2000
[ 33.228] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2; using a maximum of 2 threads
[ 33.228] (II) intel(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 33.228] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[ 33.228] (==) intel(0): RGB weight 888
[ 33.228] (==) intel(0): Default visual is TrueColor
[ 33.228] (**) intel(0): Option "AccelMethod" "sna"
[ 33.229] (**) intel(0): Option "TearFree" "true"
[ 33.230] (II) intel(0): Output LVDS1 has no monitor section
[ 33.231] (**) intel(0): Found backlight control interface intel_backlight (type 'raw') for output LVDS1
[ 33.231] (II) intel(0): Enabled output LVDS1
[ 33.231] (II) intel(0): Output VGA1 has no monitor section
[ 33.231] (II) intel(0): Enabled output VGA1
[ 33.231] (II) intel(0): Output HDMI1 has no monitor section
[ 33.232] (II) intel(0): Enabled output HDMI1
[ 33.232] (II) intel(0): Output DP1 has no monitor section
[ 33.232] (II) intel(0): Enabled output DP1
[ 33.232] (--) intel(0): Using a maximum size of 256x256 for hardware cursors
[ 33.232] (II) intel(0): Output VIRTUAL1 has no monitor section
[ 33.232] (II) intel(0): Enabled output VIRTUAL1
[ 33.232] (--) intel(0): Output LVDS1 using initial mode 1366x768 on pipe 0
[ 33.233] (**) intel(0): TearFree enabled
[ 33.234] (==) intel(0): Using gamma correction (1.0, 1.0, 1.0)
[ 33.234] (==) intel(0): DPI set to (96, 96)
[ 33.234] (II) Loading sub module "dri3"
[ 33.234] (II) LoadModule: "dri3"
[ 33.234] (II) Module "dri3" already built-in
[ 33.234] (II) Loading sub module "dri2"
[ 33.234] (II) LoadModule: "dri2"
[ 33.234] (II) Module "dri2" already built-in
[ 33.234] (II) Loading sub module "present"
[ 33.234] (II) LoadModule: "present"
[ 33.234] (II) Module "present" already built-in
[ 33.238] (II) intel(0): SNA initialized with Sandybridge (gen6, gt1) backend
[ 33.238] (==) intel(0): Backing store enabled
[ 33.238] (==) intel(0): Silken mouse disabled
[ 33.238] (II) intel(0): HW Cursor enabled
[ 33.240] (==) intel(0): DPMS enabled
[ 33.241] (==) intel(0): Display hotplug detection enabled
[ 33.241] (II) intel(0): [DRI2] Setup complete
[ 33.241] (II) intel(0): [DRI2] DRI driver: i965
[ 33.241] (II) intel(0): [DRI2] VDPAU driver: va_gl
[ 33.241] (II) intel(0): direct rendering: DRI2 DRI3 enabled
[ 33.241] (II) intel(0): hardware support for Present enabled
[ 33.241] (II) Initializing extension Generic Event Extension
[ 33.241] (II) Initializing extension SHAPE
[ 33.241] (II) Initializing extension MIT-SHM
[ 33.241] (II) Initializing extension XInputExtension
[ 33.242] (II) Initializing extension XTEST
[ 33.242] (II) Initializing extension BIG-REQUESTS
[ 33.242] (II) Initializing extension SYNC
[ 33.242] (II) Initializing extension XKEYBOARD
[ 33.242] (II) Initializing extension XC-MISC
[ 33.242] (II) Initializing extension SECURITY
[ 33.242] (II) Initializing extension XFIXES
[ 33.242] (II) Initializing extension RENDER
[ 33.242] (II) Initializing extension RANDR
[ 33.242] (II) Initializing extension COMPOSITE
[ 33.242] (II) Initializing extension DAMAGE
[ 33.242] (II) Initializing extension MIT-SCREEN-SAVER
[ 33.242] (II) Initializing extension DOUBLE-BUFFER
[ 33.242] (II) Initializing extension RECORD
[ 33.242] (II) Initializing extension DPMS
[ 33.242] (II) Initializing extension Present
[ 33.242] (II) Initializing extension DRI3
[ 33.242] (II) Initializing extension X-Resource
[ 33.242] (II) Initializing extension XVideo
[ 33.242] (II) Initializing extension XVideo-MotionCompensation
[ 33.242] (II) Initializing extension GLX
[ 33.314] (II) AIGLX: Loaded and initialized i965
[ 33.314] (II) GLX: Initialized DRI2 GL provider for screen 0
[ 33.314] (II) Initializing extension XFree86-VidModeExtension
[ 33.314] (II) Initializing extension XFree86-DGA
[ 33.314] (II) Initializing extension XFree86-DRI
[ 33.314] (II) Initializing extension DRI2
[ 33.320] (II) intel(0): switch to mode 1366x768@60.0 on LVDS1 using pipe 0, position (0, 0), rotation normal, reflection none
[ 33.334] (II) intel(0): Setting screen physical size to 361 x 203
[ 33.474] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[ 33.474] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 33.474] (**) Power Button: Applying InputClass "system-keyboard"
[ 33.474] (II) LoadModule: "libinput"
[ 33.474] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[ 33.480] (II) Module libinput: vendor="X.Org Foundation"
[ 33.480] compiled for 1.20.8, module version = 0.30.0
[ 33.480] Module class: X.Org XInput Driver
[ 33.480] ABI class: X.Org XInput driver, version 24.1
[ 33.480] (II) Using input driver 'libinput' for 'Power Button'
[ 33.481] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 16 paused 0
[ 33.481] (**) Power Button: always reports core events
[ 33.481] (**) Option "Device" "/dev/input/event2"
[ 33.482] (**) Option "_source" "server/udev"
[ 33.494] (II) event2 - Power Button: is tagged by udev as: Keyboard
[ 33.494] (II) event2 - Power Button: device is a keyboard
[ 33.494] (II) event2 - Power Button: device removed
[ 33.494] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[ 33.494] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[ 33.494] (**) Option "xkb_layout" "pl,gb"
[ 33.494] (**) Option "xkb_variant" ","
[ 33.536] (II) event2 - Power Button: is tagged by udev as: Keyboard
[ 33.536] (II) event2 - Power Button: device is a keyboard
[ 33.537] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[ 33.537] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[ 33.537] (**) Video Bus: Applying InputClass "system-keyboard"
[ 33.538] (II) Using input driver 'libinput' for 'Video Bus'
[ 33.539] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 19 paused 0
[ 33.539] (**) Video Bus: always reports core events
[ 33.539] (**) Option "Device" "/dev/input/event3"
[ 33.539] (**) Option "_source" "server/udev"
[ 33.541] (II) event3 - Video Bus: is tagged by udev as: Keyboard
[ 33.541] (II) event3 - Video Bus: device is a keyboard
[ 33.541] (II) event3 - Video Bus: device removed
[ 33.541] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input3/event3"
[ 33.541] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[ 33.541] (**) Option "xkb_layout" "pl,gb"
[ 33.541] (**) Option "xkb_variant" ","
[ 33.543] (II) event3 - Video Bus: is tagged by udev as: Keyboard
[ 33.544] (II) event3 - Video Bus: device is a keyboard
[ 33.544] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[ 33.544] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[ 33.544] (**) Power Button: Applying InputClass "system-keyboard"
[ 33.545] (II) Using input driver 'libinput' for 'Power Button'
[ 33.546] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 20 paused 0
[ 33.546] (**) Power Button: always reports core events
[ 33.546] (**) Option "Device" "/dev/input/event1"
[ 33.546] (**) Option "_source" "server/udev"
[ 33.548] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 33.548] (II) event1 - Power Button: device is a keyboard
[ 33.548] (II) event1 - Power Button: device removed
[ 33.548] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1/event1"
[ 33.548] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
[ 33.548] (**) Option "xkb_layout" "pl,gb"
[ 33.548] (**) Option "xkb_variant" ","
[ 33.550] (II) event1 - Power Button: is tagged by udev as: Keyboard
[ 33.550] (II) event1 - Power Button: device is a keyboard
[ 33.551] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[ 33.551] (II) No input driver specified, ignoring this device.
[ 33.551] (II) This device may have been added with another device file.
[ 33.552] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event5)
[ 33.552] (**) Logitech USB Optical Mouse: Applying InputClass "libinput pointer catchall"
[ 33.552] (II) Using input driver 'libinput' for 'Logitech USB Optical Mouse'
[ 33.554] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
[ 33.554] (**) Logitech USB Optical Mouse: always reports core events
[ 33.554] (**) Option "Device" "/dev/input/event5"
[ 33.554] (**) Option "_source" "server/udev"
[ 33.556] (II) event5 - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[ 33.556] (II) event5 - Logitech USB Optical Mouse: device is a pointer
[ 33.556] (II) event5 - Logitech USB Optical Mouse: device removed
[ 33.556] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-1/1-1:1.0/0003:046D:C077.0001/input/input6/event5"
[ 33.556] (II) XINPUT: Adding extended input device "Logitech USB Optical Mouse" (type: MOUSE, id 9)
[ 33.556] (**) Option "AccelerationScheme" "none"
[ 33.556] (**) Logitech USB Optical Mouse: (accel) selected scheme none/0
[ 33.556] (**) Logitech USB Optical Mouse: (accel) acceleration factor: 2.000
[ 33.556] (**) Logitech USB Optical Mouse: (accel) acceleration threshold: 4
[ 33.558] (II) event5 - Logitech USB Optical Mouse: is tagged by udev as: Mouse
[ 33.558] (II) event5 - Logitech USB Optical Mouse: device is a pointer
[ 33.559] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse0)
[ 33.559] (II) No input driver specified, ignoring this device.
[ 33.559] (II) This device may have been added with another device file.
[ 33.560] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event11)
[ 33.560] (II) No input driver specified, ignoring this device.
[ 33.560] (II) This device may have been added with another device file.
[ 33.560] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event12)
[ 33.560] (II) No input driver specified, ignoring this device.
[ 33.560] (II) This device may have been added with another device file.
[ 33.561] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event13)
[ 33.561] (II) No input driver specified, ignoring this device.
[ 33.561] (II) This device may have been added with another device file.
[ 33.561] (II) config/udev: Adding input device HDA Intel PCH HDMI/DP,pcm=3 (/dev/input/event14)
[ 33.561] (II) No input driver specified, ignoring this device.
[ 33.561] (II) This device may have been added with another device file.
[ 33.562] (II) config/udev: Adding input device HP Webcam-50: HP Webcam-50 (/dev/input/event15)
[ 33.562] (**) HP Webcam-50: HP Webcam-50: Applying InputClass "libinput keyboard catchall"
[ 33.562] (**) HP Webcam-50: HP Webcam-50: Applying InputClass "system-keyboard"
[ 33.562] (II) Using input driver 'libinput' for 'HP Webcam-50: HP Webcam-50'
[ 33.564] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 22 paused 0
[ 33.564] (**) HP Webcam-50: HP Webcam-50: always reports core events
[ 33.564] (**) Option "Device" "/dev/input/event15"
[ 33.564] (**) Option "_source" "server/udev"
[ 33.566] (II) event15 - HP Webcam-50: HP Webcam-50: is tagged by udev as: Keyboard
[ 33.566] (II) event15 - HP Webcam-50: HP Webcam-50: device is a keyboard
[ 33.566] (II) event15 - HP Webcam-50: HP Webcam-50: device removed
[ 33.566] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.5/4-1.5:1.0/input/input16/event15"
[ 33.566] (II) XINPUT: Adding extended input device "HP Webcam-50: HP Webcam-50" (type: KEYBOARD, id 10)
[ 33.566] (**) Option "xkb_layout" "pl,gb"
[ 33.566] (**) Option "xkb_variant" ","
[ 33.568] (II) event15 - HP Webcam-50: HP Webcam-50: is tagged by udev as: Keyboard
[ 33.568] (II) event15 - HP Webcam-50: HP Webcam-50: device is a keyboard
[ 33.569] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event4)
[ 33.569] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[ 33.569] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[ 33.569] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[ 33.570] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 23 paused 0
[ 33.570] (**) AT Translated Set 2 keyboard: always reports core events
[ 33.570] (**) Option "Device" "/dev/input/event4"
[ 33.571] (**) Option "_source" "server/udev"
[ 33.573] (II) event4 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 33.573] (II) event4 - AT Translated Set 2 keyboard: device is a keyboard
[ 33.575] (II) event4 - AT Translated Set 2 keyboard: device removed
[ 33.575] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input4/event4"
[ 33.575] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[ 33.575] (**) Option "xkb_layout" "pl,gb"
[ 33.575] (**) Option "xkb_variant" ","
[ 33.578] (II) event4 - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[ 33.578] (II) event4 - AT Translated Set 2 keyboard: device is a keyboard
[ 33.580] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event9)
[ 33.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[ 33.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[ 33.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[ 33.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[ 33.580] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[ 33.580] (II) LoadModule: "synaptics"
[ 33.580] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[ 33.581] (II) Module synaptics: vendor="X.Org Foundation"
[ 33.581] compiled for 1.20.8, module version = 1.9.1
[ 33.581] Module class: X.Org XInput Driver
[ 33.581] ABI class: X.Org XInput driver, version 24.1
[ 33.581] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[ 33.583] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 24 paused 0
[ 33.583] (**) SynPS/2 Synaptics TouchPad: always reports core events
[ 33.583] (**) Option "Device" "/dev/input/event9"
[ 33.583] (II) synaptics: SynPS/2 Synaptics TouchPad: ignoring touch events for semi-multitouch device
[ 33.583] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1222 - 5734 (res 48)
[ 33.583] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 910 - 4974 (res 95)
[ 33.583] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[ 33.583] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[ 33.584] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left right double triple
[ 33.584] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[ 33.584] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[ 33.584] (**) SynPS/2 Synaptics TouchPad: always reports core events
[ 33.584] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input10/event9"
[ 33.584] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 12)
[ 33.584] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[ 33.584] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[ 33.584] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.033
[ 33.584] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[ 33.584] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[ 33.584] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[ 33.584] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[ 33.584] (**) Option "TransformationMatrix" "1 0 0 0 0.443181 0 0 0 1"
[ 33.584] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[ 33.585] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse1)
[ 33.585] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[ 33.586] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/event7)
[ 33.586] (II) No input driver specified, ignoring this device.
[ 33.586] (II) This device may have been added with another device file.
[ 33.587] (II) config/udev: Adding input device ST LIS3LV02DL Accelerometer (/dev/input/js0)
[ 33.587] (II) No input driver specified, ignoring this device.
[ 33.587] (II) This device may have been added with another device file.
[ 33.587] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[ 33.587] (II) No input driver specified, ignoring this device.
[ 33.587] (II) This device may have been added with another device file.
[ 33.588] (II) config/udev: Adding input device HP WMI hotkeys (/dev/input/event10)
[ 33.588] (**) HP WMI hotkeys: Applying InputClass "libinput keyboard catchall"
[ 33.588] (**) HP WMI hotkeys: Applying InputClass "system-keyboard"
[ 33.588] (II) Using input driver 'libinput' for 'HP WMI hotkeys'
[ 33.590] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 25 paused 0
[ 33.590] (**) HP WMI hotkeys: always reports core events
[ 33.590] (**) Option "Device" "/dev/input/event10"
[ 33.590] (**) Option "_source" "server/udev"
[ 33.592] (II) event10 - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
[ 33.592] (II) event10 - HP WMI hotkeys: device is a keyboard
[ 33.592] (II) event10 - HP WMI hotkeys: device removed
[ 33.592] (**) Option "config_info" "udev:/sys/devices/virtual/input/input11/event10"
[ 33.592] (II) XINPUT: Adding extended input device "HP WMI hotkeys" (type: KEYBOARD, id 13)
[ 33.592] (**) Option "xkb_layout" "pl,gb"
[ 33.592] (**) Option "xkb_variant" ","
[ 33.595] (II) event10 - HP WMI hotkeys: is tagged by udev as: Keyboard Switch
[ 33.595] (II) event10 - HP WMI hotkeys: device is a keyboard
[ 33.596] (II) config/udev: Adding input device HP Wireless hotkeys (/dev/input/event6)
[ 33.596] (**) HP Wireless hotkeys: Applying InputClass "libinput keyboard catchall"
[ 33.596] (**) HP Wireless hotkeys: Applying InputClass "system-keyboard"
[ 33.596] (II) Using input driver 'libinput' for 'HP Wireless hotkeys'
[ 33.598] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 26 paused 0
[ 33.598] (**) HP Wireless hotkeys: always reports core events
[ 33.598] (**) Option "Device" "/dev/input/event6"
[ 33.598] (**) Option "_source" "server/udev"
[ 33.599] (II) event6 - HP Wireless hotkeys: is tagged by udev as: Keyboard
[ 33.600] (II) event6 - HP Wireless hotkeys: device is a keyboard
[ 33.600] (II) event6 - HP Wireless hotkeys: device removed
[ 33.600] (**) Option "config_info" "udev:/sys/devices/virtual/input/input7/event6"
[ 33.600] (II) XINPUT: Adding extended input device "HP Wireless hotkeys" (type: KEYBOARD, id 14)
[ 33.600] (**) Option "xkb_layout" "pl,gb"
[ 33.600] (**) Option "xkb_variant" ","
[ 33.602] (II) event6 - HP Wireless hotkeys: is tagged by udev as: Keyboard
[ 33.602] (II) event6 - HP Wireless hotkeys: device is a keyboard
[ 35.103] (II) intel(0): EDID vendor "LGD", prod id 754
[ 35.103] (II) intel(0): Printing DDC gathered Modelines:
[ 35.103] (II) intel(0): Modeline "1366x768"x0.0 76.30 1366 1402 1442 1610 768 771 776 790 -hsync -vsync (47.4 kHz eP)
[ 35.103] (II) intel(0): Modeline "1366x768"x0.0 50.87 1366 1402 1442 1610 768 771 776 790 -hsync -vsync (31.6 kHz e)
[ 11850.699] (EE) client bug: timer event5 debounce short: scheduled expiry is in the past (-5ms), your system is too slowLast edited by ad4ms3 (2020-07-03 19:50:37)
Offline
Your ~/.xinitrc is incorrect. Everything after the first exec line will be ignored.
Offline
export DESKTOP_SESSION=plasma
startplasma-x11replaced
twm &
xclock -geometry 50x50-1+1 &
xterm -geometry 80x50+494+51 &
xterm -geometry 80x20+494-0 &But no changes.
Offline
$ systemctl get-defaultIf it lists multi-user.target as output, you'll have to change the test you use in bash_profile .
Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.
clean chroot building not flexible enough ?
Try clean chroot manager by graysky
Offline
Lone_Wolf gave me a hint:
$ sudo systemctl set-default graphical.targetsolved the problem
now, after entering the username and password startx runs automatically.
Offline