You are not logged in.

#1 2021-07-13 17:25:38

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

startx unable to open WM session without a Display/Login Manager

Hello everyone smile this is my first post on forums. Firstly i want to mention that i am using a VM (VirtualBox) during this process.
distro env : virtualbox-guest-utils installed, VGA = VMware SVGA graphics, EFI boot

My problem :
I have installed arch using the arch wiki it went all good. Then installed XOrg (xorg, xorg-xinit, xterm).
Steps i did to startup xorg (startx)
1. $ cp /etc/X11/xinit/xinitrc ~/.xinitrc     (kept the default config with 3 xterm windows)
2. $ startx                                              (correctly opens 3 xterm windows in twm)
3. $ sudo pacman -S qtile                     (using/installing qtile as my WM of choice)
4. $ nano ~/.xinitrc                                (change default config to : exec qtile)
5. $ startx                                              (starts and closes immediately)
6. $ qtile                                                (ERROR: $DISPLAY not set)
7. $ startx                                              (starts and closes immediately, obviously qtile giving error $DISPLAY not set)
THE QTILE SESSION NEVER STARTED BUT DEFAULT ~/.xinitrc (default one, with twm and exec xterm ) WORKS FINE

How i fixed it :
1. $ sudo pacman -S lightdm lightdm-webkit2-greeter    (install a display/login manager)
2. $ sudo nano /etc/lightdm/lightdm.conf                         (configured lightdm as directed in archwiki)
3. $ sudo systemctl enable lightdm                                 (start lightdm service)
4. $ reboot
5. shows a login window (as expected),
6. enters credentials > LOGS IN to qtile *O*
SO IT SEEMS, IT NEEDS A 3rd PARTY DISPLAY/LOGIN MANAGER  (i don't want that X()

What I want : I just want to use startx at tty to keep my distro as minimal as possible. (turn ON > tty login > tty shell > $ startx > runs qtile)
i watched a lot and many people were able to do this using startx.... but those were very old posts/videos (3-6 yrs.) i don't know what is the problem here.

What I have tried :
1. using ~/.bash_profile to start startx just after login (same error as same as that of step 7)
2. checking for $XDG_VTNR, $DISPLAY, tty and then startx in ~/.bash_profile (same as step 7)

i'm just a newb smile any logs you need please do mention commands smile

Offline

#2 2021-07-13 17:46:38

loqs
Member
Registered: 2014-03-06
Posts: 19,009

Re: startx unable to open WM session without a Display/Login Manager

Please post the contents .xinitrc as it is now , Xorg.0.log and the output of dmesg.  Xorg.0.log will be in either ~/.local/share/xorg/ or /var/log.
See the tip box from pastebin to post the outputs from the console.

Offline

#3 2021-07-14 03:17:50

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

current ~/ directory
http://ix.io/3sVH

current ~/.xinitrc
http://ix.io/3sVI

Xorg.0.log
http://ix.io/3sVR

dmesg
http://ix.io/3sVQ

output of : $ startx
http://ix.io/3sVS

output of : $ qtile
http://ix.io/3sVV

Edit:
also just want to mention, this problem ($DISPLAY not set) is not only specific to qtile, openbox also did gave the same error.

Last edited by pritam_poseidon (2021-07-14 03:45:52)

Offline

#4 2021-07-14 07:44:57

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

The X11 server runs for a couple of seconds and then terminates cleanly.

[  1940.600] (II) vmware(0): Initialized VMWARE_CTRL extension version 0.2
[  1940.647] (WW) vmware(0): Failed to initialize Gallium3D Xa. No render acceleration available.
[  1940.647] (WW) vmware(0): Skipped initialization of direct rendering due to lack of render acceleration.
[  1940.647] (--) vmware(0): Render acceleration is disabled.
[  1940.647] (==) vmware(0): Rendercheck mode is disabled.
[  1940.647] (--) vmware(0): Direct rendering (DRI2 3D) is disabled.
[  1940.647] (--) vmware(0): Direct rendering (DRI3 3D) is disabled.
[  1940.647] (==) vmware(0): Backing store enabled
[  1940.647] (==) vmware(0): Silken mouse disabled
[  1940.648] (==) vmware(0): DPMS enabled
[  1940.648] (II) vmware(0): No 3D acceleration. Not setting up textured video.
[  1940.648] (WW) vmware(0): Disabling Xv because no adaptors could be initialized.

Smells like https://wiki.archlinux.org/title/Xinit#xserverrc (re-use the active VT)

Edit:
Though

systemd-logind: took control of session /org/freedesktop/login1/session/_31

Can you please post the xorg log from a DM activated session?

Last edited by seth (2021-07-14 07:46:30)

Offline

#5 2021-07-14 08:41:49

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

as you have asked, i installed LightDM as the DM (as directed in archwiki)

$ sudo pacman -S lightdm lightdm-webkit2-greeter

editted : /etc/lightdm/lightdm.conf
[Seat*]
user-session=qtile
greeter-session=lightdm-webkit2-greeter

$ sudo systemctl enable lightdm

after logging in successfully to qtile session using LighDM,
the Xorg.0.log (/var/log/Xorg.0.log because ~/.local/share/xorg/Xorg.0.log is still the old one) : -
http://ix.io/3sWR

Last edited by pritam_poseidon (2021-07-14 11:40:27)

Offline

#6 2021-07-14 11:43:31

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

Try the xserverrc still.
If it doesn't work, create /etc/X11/Xwrapper.config containing a line "needs_root_rights = yes" - the vmware driver might not support rootless X11

Offline

#7 2021-07-14 12:18:22

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

I have had already tried xserverrc as you had mentioned earlier, didn't work. sad
using Xwrapper.config also didn't work
both of them gives result similar to http://ix.io/3sVS

EDIT:
if this helps : i have tried using the

$ xrdb ~/.Xresources 
xrdb: no such file or directory (ofcourse there is none by default)
xrdb: Can't open display ' ' 

Last edited by pritam_poseidon (2021-07-14 12:31:40)

Offline

#8 2021-07-14 12:27:51

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

Not "similar", please post the exact Xorg logs.
Running Xorg w/ root permissions *cannot* produce a similar log (and also you linked the output, which is rather worthless here)

Edit: also remove xf86-video-vesa to unclutter the log a bit.
Edit #2: xrdb requires a running X11 server and is irrelevant itr.

Last edited by seth (2021-07-14 12:33:19)

Offline

#9 2021-07-14 12:37:47

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

using startx with root (starts twm with 3 xterm windows) produces /var/log/Xorg.0.log :

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

[  1221.970] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[  1221.970] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1221.970] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[  1221.972] (--) PCI:*(0@0:2:0) 15ad:0405:15ad:0405 rev 0, Mem @ 0xe0000000/268435456, 0xf0400000/2097152, I/O @ 0x0000c170/16, BIOS @ 0x????????/131072
[  1221.972] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[  1221.972] (II) LoadModule: "glx"
[  1221.972] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1221.972] (II) Module glx: vendor="X.Org Foundation"
[  1221.972] 	compiled for 1.20.12, module version = 1.0.0
[  1221.972] 	ABI class: X.Org Server Extension, version 10.0
[  1221.972] (==) Matched vmware as autoconfigured driver 0
[  1221.972] (==) Matched modesetting as autoconfigured driver 1
[  1221.972] (==) Matched fbdev as autoconfigured driver 2
[  1221.972] (==) Matched vesa as autoconfigured driver 3
[  1221.972] (==) Assigned the driver to the xf86ConfigLayout
[  1221.972] (II) LoadModule: "vmware"
[  1221.972] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
[  1221.980] (II) Module vmware: vendor="X.Org Foundation"
[  1221.980] 	compiled for 1.20.8, module version = 13.3.0
[  1221.980] 	Module class: X.Org Video Driver
[  1221.980] 	ABI class: X.Org Video Driver, version 24.1
[  1221.980] (II) LoadModule: "modesetting"
[  1221.980] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[  1221.980] (II) Module modesetting: vendor="X.Org Foundation"
[  1221.980] 	compiled for 1.20.12, module version = 1.20.12
[  1221.980] 	Module class: X.Org Video Driver
[  1221.980] 	ABI class: X.Org Video Driver, version 24.1
[  1221.980] (II) LoadModule: "fbdev"
[  1221.980] (WW) Warning, couldn't open module fbdev
[  1221.980] (EE) Failed to load module "fbdev" (module does not exist, 0)
[  1221.980] (II) LoadModule: "vesa"
[  1221.981] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[  1221.981] (II) Module vesa: vendor="X.Org Foundation"
[  1221.981] 	compiled for 1.20.9, module version = 2.5.0
[  1221.981] 	Module class: X.Org Video Driver
[  1221.981] 	ABI class: X.Org Video Driver, version 24.1
[  1221.981] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
[  1221.981] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[  1221.981] (II) VESA: driver for VESA chipsets: vesa
[  1221.981] (WW) Falling back to old probe method for modesetting
[  1221.981] (II) vmware(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[  1221.981] (--) vmware(0): DRM driver version is 2.18.0
[  1221.981] (==) vmware(0): Depth 24, (--) framebuffer bpp 32
[  1221.981] (==) vmware(0): RGB weight 888
[  1221.981] (==) vmware(0): Default visual is TrueColor
[  1221.981] (--) vmware(0): Min width 1, Max Width 8192.
[  1221.981] (--) vmware(0): Min height 1, Max Height 8192.
[  1221.981] (II) vmware(0): Output Virtual1 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual2 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual3 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual4 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual5 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual6 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual7 has no monitor section
[  1221.981] (II) vmware(0): Output Virtual8 has no monitor section
[  1221.981] (II) vmware(0): Printing probed modes for output Virtual1
[  1221.981] (II) vmware(0): Modeline "1027x771"x60.0   65.04  1027 1077 1127 1177  771 821 871 921 -hsync +vsync (55.3 kHz eP)
[  1221.981] (II) vmware(0): Modeline "2560x1600"x60.0  348.50  2560 2752 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz e)
[  1221.981] (II) vmware(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz e)
[  1221.981] (II) vmware(0): Modeline "1856x1392"x60.0  218.25  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.3 kHz e)
[  1221.981] (II) vmware(0): Modeline "1792x1344"x60.0  204.75  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.6 kHz e)
[  1221.981] (II) vmware(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz e)
[  1221.981] (II) vmware(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[  1221.981] (II) vmware(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[  1221.981] (II) vmware(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
[  1221.981] (II) vmware(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[  1221.981] (II) vmware(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[  1221.981] (II) vmware(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[  1221.981] (II) vmware(0): Modeline "1360x768"x60.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz e)
[  1221.981] (II) vmware(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[  1221.981] (II) vmware(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[  1221.981] (II) vmware(0): Modeline "1280x768"x59.9   79.50  1280 1344 1472 1664  768 771 778 798 -hsync +vsync (47.8 kHz e)
[  1221.981] (II) vmware(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[  1221.981] (II) vmware(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[  1221.981] (II) vmware(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[  1221.981] (II) vmware(0): EDID for output Virtual2
[  1221.981] (II) vmware(0): EDID for output Virtual3
[  1221.981] (II) vmware(0): EDID for output Virtual4
[  1221.981] (II) vmware(0): EDID for output Virtual5
[  1221.981] (II) vmware(0): EDID for output Virtual6
[  1221.981] (II) vmware(0): EDID for output Virtual7
[  1221.981] (II) vmware(0): EDID for output Virtual8
[  1221.981] (II) vmware(0): Output Virtual1 connected
[  1221.981] (II) vmware(0): Output Virtual2 disconnected
[  1221.981] (II) vmware(0): Output Virtual3 disconnected
[  1221.981] (II) vmware(0): Output Virtual4 disconnected
[  1221.981] (II) vmware(0): Output Virtual5 disconnected
[  1221.981] (II) vmware(0): Output Virtual6 disconnected
[  1221.981] (II) vmware(0): Output Virtual7 disconnected
[  1221.981] (II) vmware(0): Output Virtual8 disconnected
[  1221.981] (II) vmware(0): Using exact sizes for initial modes
[  1221.981] (II) vmware(0): Output Virtual1 using initial mode 1027x771 +0+0
[  1221.981] (==) vmware(0): DPI set to (96, 96)
[  1221.981] (==) vmware(0): Using gamma correction (1.0, 1.0, 1.0)
[  1221.981] (II) Loading sub module "fb"
[  1221.981] (II) LoadModule: "fb"
[  1221.981] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1221.981] (II) Module fb: vendor="X.Org Foundation"
[  1221.981] 	compiled for 1.20.12, module version = 1.0.0
[  1221.981] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1221.981] (II) Loading sub module "dri2"
[  1221.981] (II) LoadModule: "dri2"
[  1221.981] (II) Module "dri2" already built-in
[  1221.981] (II) Loading sub module "dri3"
[  1221.981] (II) LoadModule: "dri3"
[  1221.981] (II) Module "dri3" already built-in
[  1221.981] (II) UnloadModule: "modesetting"
[  1221.981] (II) Unloading modesetting
[  1221.981] (II) UnloadModule: "vesa"
[  1221.981] (II) Unloading vesa
[  1221.981] (II) vmware(0): Initialized VMWARE_CTRL extension version 0.2
[  1221.983] (WW) vmware(0): Failed to initialize Gallium3D Xa. No render acceleration available.
[  1221.983] (WW) vmware(0): Skipped initialization of direct rendering due to lack of render acceleration.
[  1221.983] (--) vmware(0): Render acceleration is disabled.
[  1221.983] (==) vmware(0): Rendercheck mode is disabled.
[  1221.983] (--) vmware(0): Direct rendering (DRI2 3D) is disabled.
[  1221.983] (--) vmware(0): Direct rendering (DRI3 3D) is disabled.
[  1221.983] (==) vmware(0): Backing store enabled
[  1221.983] (==) vmware(0): Silken mouse disabled
[  1221.983] (==) vmware(0): DPMS enabled
[  1221.983] (II) vmware(0): No 3D acceleration. Not setting up textured video.
[  1221.983] (WW) vmware(0): Disabling Xv because no adaptors could be initialized.
[  1221.983] (II) Initializing extension Generic Event Extension
[  1221.983] (II) Initializing extension SHAPE
[  1221.983] (II) Initializing extension MIT-SHM
[  1221.983] (II) Initializing extension XInputExtension
[  1221.983] (II) Initializing extension XTEST
[  1221.983] (II) Initializing extension BIG-REQUESTS
[  1221.983] (II) Initializing extension SYNC
[  1221.983] (II) Initializing extension XKEYBOARD
[  1221.983] (II) Initializing extension XC-MISC
[  1221.983] (II) Initializing extension SECURITY
[  1221.983] (II) Initializing extension XFIXES
[  1221.983] (II) Initializing extension RENDER
[  1221.983] (II) Initializing extension RANDR
[  1221.983] (II) Initializing extension COMPOSITE
[  1221.983] (II) Initializing extension DAMAGE
[  1221.983] (II) Initializing extension MIT-SCREEN-SAVER
[  1221.983] (II) Initializing extension DOUBLE-BUFFER
[  1221.983] (II) Initializing extension RECORD
[  1221.983] (II) Initializing extension DPMS
[  1221.983] (II) Initializing extension Present
[  1221.983] (II) Initializing extension DRI3
[  1221.983] (II) Initializing extension X-Resource
[  1221.983] (II) Initializing extension XVideo
[  1221.983] (II) Initializing extension XVideo-MotionCompensation
[  1221.983] (II) Initializing extension GLX
[  1221.983] (II) AIGLX: Screen 0 is not DRI2 capable
[  1222.034] (II) IGLX: Loaded and initialized swrast
[  1222.034] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[  1222.034] (II) Initializing extension XFree86-VidModeExtension
[  1222.034] (II) Initializing extension XFree86-DGA
[  1222.034] (II) Initializing extension XFree86-DRI
[  1222.034] (II) Initializing extension DRI2
[  1222.039] (II) vmware(0): Setting screen physical size to 271 x 203
[  1222.077] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[  1222.077] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[  1222.077] (II) LoadModule: "libinput"
[  1222.077] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[  1222.078] (II) Module libinput: vendor="X.Org Foundation"
[  1222.078] 	compiled for 1.20.11, module version = 1.1.0
[  1222.078] 	Module class: X.Org XInput Driver
[  1222.078] 	ABI class: X.Org XInput driver, version 24.1
[  1222.078] (II) Using input driver 'libinput' for 'Power Button'
[  1222.078] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 16 paused 0
[  1222.078] (**) Power Button: always reports core events
[  1222.078] (**) Option "Device" "/dev/input/event0"
[  1222.079] (**) Option "_source" "server/udev"
[  1222.079] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  1222.080] (II) event0  - Power Button: device is a keyboard
[  1222.080] (II) event0  - Power Button: device removed
[  1222.080] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0/event0"
[  1222.080] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[  1222.080] (II) event0  - Power Button: is tagged by udev as: Keyboard
[  1222.080] (II) event0  - Power Button: device is a keyboard
[  1222.080] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[  1222.080] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[  1222.080] (II) Using input driver 'libinput' for 'Sleep Button'
[  1222.081] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 19 paused 0
[  1222.081] (**) Sleep Button: always reports core events
[  1222.081] (**) Option "Device" "/dev/input/event1"
[  1222.081] (**) Option "_source" "server/udev"
[  1222.081] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[  1222.081] (II) event1  - Sleep Button: device is a keyboard
[  1222.081] (II) event1  - Sleep Button: device removed
[  1222.081] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSLPBN:00/input/input1/event1"
[  1222.081] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
[  1222.081] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[  1222.081] (II) event1  - Sleep Button: device is a keyboard
[  1222.082] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[  1222.082] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[  1222.082] (II) Using input driver 'libinput' for 'Video Bus'
[  1222.082] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 20 paused 0
[  1222.082] (**) Video Bus: always reports core events
[  1222.082] (**) Option "Device" "/dev/input/event3"
[  1222.082] (**) Option "_source" "server/udev"
[  1222.082] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[  1222.082] (II) event3  - Video Bus: device is a keyboard
[  1222.082] (II) event3  - Video Bus: device removed
[  1222.082] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input4/event3"
[  1222.082] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[  1222.083] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[  1222.083] (II) event3  - Video Bus: device is a keyboard
[  1222.083] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/event5)
[  1222.083] (**) VirtualBox mouse integration: Applying InputClass "libinput pointer catchall"
[  1222.083] (II) Using input driver 'libinput' for 'VirtualBox mouse integration'
[  1222.084] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
[  1222.084] (**) VirtualBox mouse integration: always reports core events
[  1222.084] (**) Option "Device" "/dev/input/event5"
[  1222.084] (**) Option "_source" "server/udev"
[  1222.084] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[  1222.084] (II) event5  - VirtualBox mouse integration: device is a pointer
[  1222.084] (II) event5  - VirtualBox mouse integration: device removed
[  1222.084] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/input/input7/event5"
[  1222.084] (II) XINPUT: Adding extended input device "VirtualBox mouse integration" (type: MOUSE, id 9)
[  1222.084] (**) Option "AccelerationScheme" "none"
[  1222.084] (**) VirtualBox mouse integration: (accel) selected scheme none/0
[  1222.084] (**) VirtualBox mouse integration: (accel) acceleration factor: 2.000
[  1222.084] (**) VirtualBox mouse integration: (accel) acceleration threshold: 4
[  1222.084] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[  1222.085] (II) event5  - VirtualBox mouse integration: device is a pointer
[  1222.085] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/js0)
[  1222.085] (II) No input driver specified, ignoring this device.
[  1222.085] (II) This device may have been added with another device file.
[  1222.085] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/mouse0)
[  1222.085] (II) No input driver specified, ignoring this device.
[  1222.085] (II) This device may have been added with another device file.
[  1222.085] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[  1222.085] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[  1222.085] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[  1222.085] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 22 paused 0
[  1222.085] (**) AT Translated Set 2 keyboard: always reports core events
[  1222.085] (**) Option "Device" "/dev/input/event2"
[  1222.085] (**) Option "_source" "server/udev"
[  1222.086] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[  1222.086] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[  1222.086] (II) event2  - AT Translated Set 2 keyboard: device removed
[  1222.086] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[  1222.086] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[  1222.087] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[  1222.087] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[  1222.087] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/event6)
[  1222.087] (**) ImExPS/2 Generic Explorer Mouse: Applying InputClass "libinput pointer catchall"
[  1222.087] (II) Using input driver 'libinput' for 'ImExPS/2 Generic Explorer Mouse'
[  1222.087] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 23 paused 0
[  1222.087] (**) ImExPS/2 Generic Explorer Mouse: always reports core events
[  1222.087] (**) Option "Device" "/dev/input/event6"
[  1222.087] (**) Option "_source" "server/udev"
[  1222.088] (II) event6  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[  1222.088] (II) event6  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[  1222.088] (II) event6  - ImExPS/2 Generic Explorer Mouse: device removed
[  1222.088] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
[  1222.088] (II) XINPUT: Adding extended input device "ImExPS/2 Generic Explorer Mouse" (type: MOUSE, id 11)
[  1222.088] (**) Option "AccelerationScheme" "none"
[  1222.088] (**) ImExPS/2 Generic Explorer Mouse: (accel) selected scheme none/0
[  1222.088] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration factor: 2.000
[  1222.088] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration threshold: 4
[  1222.088] (II) event6  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[  1222.088] (II) event6  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[  1222.089] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/mouse1)
[  1222.089] (II) No input driver specified, ignoring this device.
[  1222.089] (II) This device may have been added with another device file.
[  1222.089] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[  1222.089] (II) No input driver specified, ignoring this device.
[  1222.089] (II) This device may have been added with another device file.

Offline

#10 2021-07-14 12:40:10

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

That server didn't terminate?
Edit…
Do NOT! run X11 as root - the XWrapper.config thing makes Xorg run suid - even if you call startx as your regular user.

Last edited by seth (2021-07-14 12:41:23)

Offline

#11 2021-07-14 12:48:41

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

seth wrote:

That server didn't terminate?
Edit…
Do NOT! run X11 as root - the XWrapper.config thing makes Xorg run suid - even if you call startx as your regular user.

removed xf86-video-vesa, current Xorg.0.log (./local/share/xorg/)

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

[    40.552] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    40.552] (II) xfree86: Adding drm device (/dev/dri/card0)
[    40.553] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[    40.553] (--) PCI:*(0@0:2:0) 15ad:0405:15ad:0405 rev 0, Mem @ 0xe0000000/268435456, 0xf0400000/2097152, I/O @ 0x0000c170/16, BIOS @ 0x????????/131072
[    40.553] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    40.553] (II) LoadModule: "glx"
[    40.607] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    40.702] (II) Module glx: vendor="X.Org Foundation"
[    40.702] 	compiled for 1.20.12, module version = 1.0.0
[    40.702] 	ABI class: X.Org Server Extension, version 10.0
[    40.702] (==) Matched vmware as autoconfigured driver 0
[    40.702] (==) Matched modesetting as autoconfigured driver 1
[    40.702] (==) Matched fbdev as autoconfigured driver 2
[    40.702] (==) Matched vesa as autoconfigured driver 3
[    40.702] (==) Assigned the driver to the xf86ConfigLayout
[    40.702] (II) LoadModule: "vmware"
[    40.702] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
[    42.512] (II) Module vmware: vendor="X.Org Foundation"
[    42.512] 	compiled for 1.20.8, module version = 13.3.0
[    42.512] 	Module class: X.Org Video Driver
[    42.512] 	ABI class: X.Org Video Driver, version 24.1
[    42.512] (II) LoadModule: "modesetting"
[    42.512] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    42.607] (II) Module modesetting: vendor="X.Org Foundation"
[    42.607] 	compiled for 1.20.12, module version = 1.20.12
[    42.607] 	Module class: X.Org Video Driver
[    42.607] 	ABI class: X.Org Video Driver, version 24.1
[    42.607] (II) LoadModule: "fbdev"
[    42.607] (WW) Warning, couldn't open module fbdev
[    42.607] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    42.607] (II) LoadModule: "vesa"
[    42.607] (WW) Warning, couldn't open module vesa
[    42.607] (EE) Failed to load module "vesa" (module does not exist, 0)
[    42.607] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
[    42.607] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    42.607] (WW) Falling back to old probe method for modesetting
[    42.608] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[    42.608] (II) vmware(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    42.608] (--) vmware(0): DRM driver version is 2.18.0
[    42.608] (==) vmware(0): Depth 24, (--) framebuffer bpp 32
[    42.608] (==) vmware(0): RGB weight 888
[    42.608] (==) vmware(0): Default visual is TrueColor
[    42.608] (--) vmware(0): Min width 1, Max Width 8192.
[    42.608] (--) vmware(0): Min height 1, Max Height 8192.
[    42.608] (II) vmware(0): Output Virtual1 has no monitor section
[    42.608] (II) vmware(0): Output Virtual2 has no monitor section
[    42.608] (II) vmware(0): Output Virtual3 has no monitor section
[    42.608] (II) vmware(0): Output Virtual4 has no monitor section
[    42.608] (II) vmware(0): Output Virtual5 has no monitor section
[    42.608] (II) vmware(0): Output Virtual6 has no monitor section
[    42.608] (II) vmware(0): Output Virtual7 has no monitor section
[    42.608] (II) vmware(0): Output Virtual8 has no monitor section
[    42.608] (II) vmware(0): Printing probed modes for output Virtual1
[    42.608] (II) vmware(0): Modeline "1027x771"x60.0   65.04  1027 1077 1127 1177  771 821 871 921 -hsync +vsync (55.3 kHz eP)
[    42.608] (II) vmware(0): Modeline "2560x1600"x60.0  348.50  2560 2752 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz e)
[    42.608] (II) vmware(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz e)
[    42.608] (II) vmware(0): Modeline "1856x1392"x60.0  218.25  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.3 kHz e)
[    42.608] (II) vmware(0): Modeline "1792x1344"x60.0  204.75  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.6 kHz e)
[    42.608] (II) vmware(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz e)
[    42.608] (II) vmware(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    42.608] (II) vmware(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    42.608] (II) vmware(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
[    42.608] (II) vmware(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    42.608] (II) vmware(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    42.608] (II) vmware(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    42.608] (II) vmware(0): Modeline "1360x768"x60.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz e)
[    42.608] (II) vmware(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    42.608] (II) vmware(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    42.608] (II) vmware(0): Modeline "1280x768"x59.9   79.50  1280 1344 1472 1664  768 771 778 798 -hsync +vsync (47.8 kHz e)
[    42.608] (II) vmware(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    42.608] (II) vmware(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    42.608] (II) vmware(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[    42.608] (II) vmware(0): EDID for output Virtual2
[    42.608] (II) vmware(0): EDID for output Virtual3
[    42.608] (II) vmware(0): EDID for output Virtual4
[    42.608] (II) vmware(0): EDID for output Virtual5
[    42.608] (II) vmware(0): EDID for output Virtual6
[    42.608] (II) vmware(0): EDID for output Virtual7
[    42.608] (II) vmware(0): EDID for output Virtual8
[    42.608] (II) vmware(0): Output Virtual1 connected
[    42.608] (II) vmware(0): Output Virtual2 disconnected
[    42.608] (II) vmware(0): Output Virtual3 disconnected
[    42.608] (II) vmware(0): Output Virtual4 disconnected
[    42.608] (II) vmware(0): Output Virtual5 disconnected
[    42.608] (II) vmware(0): Output Virtual6 disconnected
[    42.608] (II) vmware(0): Output Virtual7 disconnected
[    42.608] (II) vmware(0): Output Virtual8 disconnected
[    42.608] (II) vmware(0): Using exact sizes for initial modes
[    42.608] (II) vmware(0): Output Virtual1 using initial mode 1027x771 +0+0
[    42.608] (==) vmware(0): DPI set to (96, 96)
[    42.608] (==) vmware(0): Using gamma correction (1.0, 1.0, 1.0)
[    42.608] (II) Loading sub module "fb"
[    42.608] (II) LoadModule: "fb"
[    42.608] (II) Loading /usr/lib/xorg/modules/libfb.so
[    42.609] (II) Module fb: vendor="X.Org Foundation"
[    42.609] 	compiled for 1.20.12, module version = 1.0.0
[    42.609] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    42.609] (II) Loading sub module "dri2"
[    42.609] (II) LoadModule: "dri2"
[    42.609] (II) Module "dri2" already built-in
[    42.609] (II) Loading sub module "dri3"
[    42.609] (II) LoadModule: "dri3"
[    42.609] (II) Module "dri3" already built-in
[    42.609] (II) UnloadModule: "modesetting"
[    42.609] (II) Unloading modesetting
[    42.610] (II) vmware(0): Initialized VMWARE_CTRL extension version 0.2
[    42.675] (WW) vmware(0): Failed to initialize Gallium3D Xa. No render acceleration available.
[    42.675] (WW) vmware(0): Skipped initialization of direct rendering due to lack of render acceleration.
[    42.675] (--) vmware(0): Render acceleration is disabled.
[    42.675] (==) vmware(0): Rendercheck mode is disabled.
[    42.675] (--) vmware(0): Direct rendering (DRI2 3D) is disabled.
[    42.675] (--) vmware(0): Direct rendering (DRI3 3D) is disabled.
[    42.675] (==) vmware(0): Backing store enabled
[    42.675] (==) vmware(0): Silken mouse disabled
[    42.676] (==) vmware(0): DPMS enabled
[    42.676] (II) vmware(0): No 3D acceleration. Not setting up textured video.
[    42.676] (WW) vmware(0): Disabling Xv because no adaptors could be initialized.
[    42.676] (II) Initializing extension Generic Event Extension
[    42.676] (II) Initializing extension SHAPE
[    42.676] (II) Initializing extension MIT-SHM
[    42.676] (II) Initializing extension XInputExtension
[    42.677] (II) Initializing extension XTEST
[    42.677] (II) Initializing extension BIG-REQUESTS
[    42.677] (II) Initializing extension SYNC
[    42.677] (II) Initializing extension XKEYBOARD
[    42.677] (II) Initializing extension XC-MISC
[    42.677] (II) Initializing extension SECURITY
[    42.677] (II) Initializing extension XFIXES
[    42.677] (II) Initializing extension RENDER
[    42.677] (II) Initializing extension RANDR
[    42.677] (II) Initializing extension COMPOSITE
[    42.677] (II) Initializing extension DAMAGE
[    42.677] (II) Initializing extension MIT-SCREEN-SAVER
[    42.677] (II) Initializing extension DOUBLE-BUFFER
[    42.677] (II) Initializing extension RECORD
[    42.677] (II) Initializing extension DPMS
[    42.677] (II) Initializing extension Present
[    42.677] (II) Initializing extension DRI3
[    42.677] (II) Initializing extension X-Resource
[    42.677] (II) Initializing extension XVideo
[    42.677] (II) Initializing extension XVideo-MotionCompensation
[    42.677] (II) Initializing extension GLX
[    42.677] (II) AIGLX: Screen 0 is not DRI2 capable
[    43.238] (II) IGLX: Loaded and initialized swrast
[    43.238] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[    43.238] (II) Initializing extension XFree86-VidModeExtension
[    43.238] (II) Initializing extension XFree86-DGA
[    43.238] (II) Initializing extension XFree86-DRI
[    43.238] (II) Initializing extension DRI2
[    43.242] (II) vmware(0): Setting screen physical size to 271 x 203
[    43.594] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    43.594] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    43.594] (II) LoadModule: "libinput"
[    43.594] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    43.658] (II) Module libinput: vendor="X.Org Foundation"
[    43.658] 	compiled for 1.20.11, module version = 1.1.0
[    43.658] 	Module class: X.Org XInput Driver
[    43.658] 	ABI class: X.Org XInput driver, version 24.1
[    43.658] (II) Using input driver 'libinput' for 'Power Button'
[    43.659] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 13 paused 0
[    43.659] (**) Power Button: always reports core events
[    43.659] (**) Option "Device" "/dev/input/event0"
[    43.667] (**) Option "_source" "server/udev"
[    43.675] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    43.675] (II) event0  - Power Button: device is a keyboard
[    43.676] (II) event0  - Power Button: device removed
[    43.676] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0/event0"
[    43.676] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    43.676] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    43.676] (II) event0  - Power Button: device is a keyboard
[    43.676] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    43.676] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    43.676] (II) Using input driver 'libinput' for 'Sleep Button'
[    43.677] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 16 paused 0
[    43.677] (**) Sleep Button: always reports core events
[    43.677] (**) Option "Device" "/dev/input/event1"
[    43.677] (**) Option "_source" "server/udev"
[    43.677] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[    43.677] (II) event1  - Sleep Button: device is a keyboard
[    43.677] (II) event1  - Sleep Button: device removed
[    43.677] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSLPBN:00/input/input1/event1"
[    43.677] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
[    43.677] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[    43.677] (II) event1  - Sleep Button: device is a keyboard
[    43.678] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    43.678] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    43.678] (II) Using input driver 'libinput' for 'Video Bus'
[    43.678] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
[    43.678] (**) Video Bus: always reports core events
[    43.678] (**) Option "Device" "/dev/input/event3"
[    43.678] (**) Option "_source" "server/udev"
[    43.678] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    43.678] (II) event3  - Video Bus: device is a keyboard
[    43.678] (II) event3  - Video Bus: device removed
[    43.678] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input4/event3"
[    43.678] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    43.679] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    43.679] (II) event3  - Video Bus: device is a keyboard
[    43.679] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/event5)
[    43.679] (**) VirtualBox mouse integration: Applying InputClass "libinput pointer catchall"
[    43.679] (II) Using input driver 'libinput' for 'VirtualBox mouse integration'
[    43.680] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 18 paused 0
[    43.680] (**) VirtualBox mouse integration: always reports core events
[    43.680] (**) Option "Device" "/dev/input/event5"
[    43.680] (**) Option "_source" "server/udev"
[    43.680] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[    43.680] (II) event5  - VirtualBox mouse integration: device is a pointer
[    43.680] (II) event5  - VirtualBox mouse integration: device removed
[    43.680] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/input/input7/event5"
[    43.680] (II) XINPUT: Adding extended input device "VirtualBox mouse integration" (type: MOUSE, id 9)
[    43.680] (**) Option "AccelerationScheme" "none"
[    43.680] (**) VirtualBox mouse integration: (accel) selected scheme none/0
[    43.680] (**) VirtualBox mouse integration: (accel) acceleration factor: 2.000
[    43.680] (**) VirtualBox mouse integration: (accel) acceleration threshold: 4
[    43.681] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[    43.681] (II) event5  - VirtualBox mouse integration: device is a pointer
[    43.681] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/js0)
[    43.681] (II) No input driver specified, ignoring this device.
[    43.681] (II) This device may have been added with another device file.
[    43.681] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/mouse0)
[    43.681] (II) No input driver specified, ignoring this device.
[    43.681] (II) This device may have been added with another device file.
[    43.681] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    43.681] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    43.681] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    43.682] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 19 paused 0
[    43.682] (**) AT Translated Set 2 keyboard: always reports core events
[    43.682] (**) Option "Device" "/dev/input/event2"
[    43.682] (**) Option "_source" "server/udev"
[    43.682] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    43.682] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    43.682] (II) event2  - AT Translated Set 2 keyboard: device removed
[    43.682] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    43.682] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[    43.683] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    43.683] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    43.683] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/event6)
[    43.683] (**) ImExPS/2 Generic Explorer Mouse: Applying InputClass "libinput pointer catchall"
[    43.683] (II) Using input driver 'libinput' for 'ImExPS/2 Generic Explorer Mouse'
[    43.683] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 20 paused 0
[    43.684] (**) ImExPS/2 Generic Explorer Mouse: always reports core events
[    43.684] (**) Option "Device" "/dev/input/event6"
[    43.684] (**) Option "_source" "server/udev"
[    43.684] (II) event6  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[    43.684] (II) event6  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[    43.684] (II) event6  - ImExPS/2 Generic Explorer Mouse: device removed
[    43.684] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event6"
[    43.684] (II) XINPUT: Adding extended input device "ImExPS/2 Generic Explorer Mouse" (type: MOUSE, id 11)
[    43.684] (**) Option "AccelerationScheme" "none"
[    43.684] (**) ImExPS/2 Generic Explorer Mouse: (accel) selected scheme none/0
[    43.684] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration factor: 2.000
[    43.684] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration threshold: 4
[    43.684] (II) event6  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[    43.685] (II) event6  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[    43.685] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/mouse1)
[    43.685] (II) No input driver specified, ignoring this device.
[    43.685] (II) This device may have been added with another device file.
[    43.685] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[    43.685] (II) No input driver specified, ignoring this device.
[    43.685] (II) This device may have been added with another device file.
[    46.690] (**) Option "fd" "13"
[    46.690] (II) event0  - Power Button: device removed
[    46.690] (**) Option "fd" "16"
[    46.690] (II) event1  - Sleep Button: device removed
[    46.690] (**) Option "fd" "17"
[    46.690] (II) event3  - Video Bus: device removed
[    46.690] (**) Option "fd" "18"
[    46.690] (II) event5  - VirtualBox mouse integration: device removed
[    46.690] (**) Option "fd" "19"
[    46.690] (II) event2  - AT Translated Set 2 keyboard: device removed
[    46.690] (**) Option "fd" "20"
[    46.690] (II) event6  - ImExPS/2 Generic Explorer Mouse: device removed
[    46.691] (II) UnloadModule: "libinput"
[    46.691] (II) systemd-logind: releasing fd for 13:70
[    46.713] (II) UnloadModule: "libinput"
[    46.713] (II) systemd-logind: releasing fd for 13:66
[    46.734] (II) UnloadModule: "libinput"
[    46.734] (II) systemd-logind: releasing fd for 13:69
[    46.763] (II) UnloadModule: "libinput"
[    46.763] (II) systemd-logind: releasing fd for 13:67
[    46.818] (II) UnloadModule: "libinput"
[    46.818] (II) systemd-logind: releasing fd for 13:65
[    46.838] (II) UnloadModule: "libinput"
[    46.838] (II) systemd-logind: releasing fd for 13:64
[    47.115] (II) Server terminated successfully (0). Closing log file.

Offline

#12 2021-07-14 12:54:04

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

If the /etc/X11/Xwrapper.config thing had worked, the log should™ be in /var/log/

stat /etc/X11/Xwrapper.config
cat /etc/X11/Xwrapper.config

Offline

#13 2021-07-14 13:09:11

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

there were no Xwrapper.config, so i had to create one (no idea if anything else needed to be put in there)

$ stat /etc/X11/Xwrapper.config
  File: /etc/X11/Xwrapper.config
  Size: 24        	Blocks: 8          IO Block: 4096   regular file
Device: 802h/2050d	Inode: 263186      Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2021-07-14 18:29:34.790897432 +0530
Modify: 2021-07-14 18:29:34.790897432 +0530
Change: 2021-07-14 18:29:34.790897432 +0530
 Birth: 2021-07-14 18:29:34.790897432 +0530
$ cat /etc/X11/Xwrapper.config
needs_root_rights = yes

/var/log/Xorg.0.log

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

[    52.350] (II) systemd-logind: took control of session /org/freedesktop/login1/session/_31
[    52.350] (II) xfree86: Adding drm device (/dev/dri/card0)
[    52.351] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[    52.352] (--) PCI:*(0@0:2:0) 15ad:0405:15ad:0405 rev 0, Mem @ 0xe0000000/268435456, 0xf0400000/2097152, I/O @ 0x0000c170/16, BIOS @ 0x????????/131072
[    52.352] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
[    52.352] (II) LoadModule: "glx"
[    52.352] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    52.352] (II) Module glx: vendor="X.Org Foundation"
[    52.352] 	compiled for 1.20.12, module version = 1.0.0
[    52.352] 	ABI class: X.Org Server Extension, version 10.0
[    52.352] (==) Matched vmware as autoconfigured driver 0
[    52.352] (==) Matched modesetting as autoconfigured driver 1
[    52.352] (==) Matched fbdev as autoconfigured driver 2
[    52.352] (==) Matched vesa as autoconfigured driver 3
[    52.352] (==) Assigned the driver to the xf86ConfigLayout
[    52.352] (II) LoadModule: "vmware"
[    52.352] (II) Loading /usr/lib/xorg/modules/drivers/vmware_drv.so
[    52.361] (II) Module vmware: vendor="X.Org Foundation"
[    52.361] 	compiled for 1.20.8, module version = 13.3.0
[    52.361] 	Module class: X.Org Video Driver
[    52.361] 	ABI class: X.Org Video Driver, version 24.1
[    52.361] (II) LoadModule: "modesetting"
[    52.361] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    52.361] (II) Module modesetting: vendor="X.Org Foundation"
[    52.361] 	compiled for 1.20.12, module version = 1.20.12
[    52.361] 	Module class: X.Org Video Driver
[    52.361] 	ABI class: X.Org Video Driver, version 24.1
[    52.361] (II) LoadModule: "fbdev"
[    52.361] (WW) Warning, couldn't open module fbdev
[    52.361] (EE) Failed to load module "fbdev" (module does not exist, 0)
[    52.361] (II) LoadModule: "vesa"
[    52.361] (WW) Warning, couldn't open module vesa
[    52.361] (EE) Failed to load module "vesa" (module does not exist, 0)
[    52.361] (II) vmware: driver for VMware SVGA: vmware0405, vmware0710
[    52.361] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    52.361] (WW) Falling back to old probe method for modesetting
[    52.361] (II) vmware(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    52.361] (--) vmware(0): DRM driver version is 2.18.0
[    52.361] (==) vmware(0): Depth 24, (--) framebuffer bpp 32
[    52.361] (==) vmware(0): RGB weight 888
[    52.361] (==) vmware(0): Default visual is TrueColor
[    52.361] (--) vmware(0): Min width 1, Max Width 8192.
[    52.361] (--) vmware(0): Min height 1, Max Height 8192.
[    52.361] (II) vmware(0): Output Virtual1 has no monitor section
[    52.361] (II) vmware(0): Output Virtual2 has no monitor section
[    52.361] (II) vmware(0): Output Virtual3 has no monitor section
[    52.361] (II) vmware(0): Output Virtual4 has no monitor section
[    52.361] (II) vmware(0): Output Virtual5 has no monitor section
[    52.361] (II) vmware(0): Output Virtual6 has no monitor section
[    52.361] (II) vmware(0): Output Virtual7 has no monitor section
[    52.361] (II) vmware(0): Output Virtual8 has no monitor section
[    52.361] (II) vmware(0): Printing probed modes for output Virtual1
[    52.361] (II) vmware(0): Modeline "1027x771"x60.0   65.04  1027 1077 1127 1177  771 821 871 921 -hsync +vsync (55.3 kHz eP)
[    52.361] (II) vmware(0): Modeline "2560x1600"x60.0  348.50  2560 2752 3032 3504  1600 1603 1609 1658 -hsync +vsync (99.5 kHz e)
[    52.361] (II) vmware(0): Modeline "1920x1440"x60.0  234.00  1920 2048 2256 2600  1440 1441 1444 1500 -hsync +vsync (90.0 kHz e)
[    52.361] (II) vmware(0): Modeline "1856x1392"x60.0  218.25  1856 1952 2176 2528  1392 1393 1396 1439 -hsync +vsync (86.3 kHz e)
[    52.361] (II) vmware(0): Modeline "1792x1344"x60.0  204.75  1792 1920 2120 2448  1344 1345 1348 1394 -hsync +vsync (83.6 kHz e)
[    52.361] (II) vmware(0): Modeline "1920x1200"x59.9  193.25  1920 2056 2256 2592  1200 1203 1209 1245 -hsync +vsync (74.6 kHz e)
[    52.361] (II) vmware(0): Modeline "1600x1200"x60.0  162.00  1600 1664 1856 2160  1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
[    52.361] (II) vmware(0): Modeline "1680x1050"x60.0  146.25  1680 1784 1960 2240  1050 1053 1059 1089 -hsync +vsync (65.3 kHz e)
[    52.361] (II) vmware(0): Modeline "1400x1050"x60.0  121.75  1400 1488 1632 1864  1050 1053 1057 1089 -hsync +vsync (65.3 kHz e)
[    52.361] (II) vmware(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
[    52.361] (II) vmware(0): Modeline "1440x900"x59.9  106.50  1440 1520 1672 1904  900 903 909 934 -hsync +vsync (55.9 kHz e)
[    52.361] (II) vmware(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz e)
[    52.361] (II) vmware(0): Modeline "1360x768"x60.0   85.50  1360 1424 1536 1792  768 771 777 795 +hsync +vsync (47.7 kHz e)
[    52.361] (II) vmware(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 +hsync -vsync (49.7 kHz e)
[    52.361] (II) vmware(0): Modeline "1152x864"x75.0  108.00  1152 1216 1344 1600  864 865 868 900 +hsync +vsync (67.5 kHz e)
[    52.361] (II) vmware(0): Modeline "1280x768"x59.9   79.50  1280 1344 1472 1664  768 771 778 798 -hsync +vsync (47.8 kHz e)
[    52.361] (II) vmware(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz e)
[    52.361] (II) vmware(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz e)
[    52.361] (II) vmware(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 489 492 525 -hsync -vsync (31.5 kHz e)
[    52.361] (II) vmware(0): EDID for output Virtual2
[    52.361] (II) vmware(0): EDID for output Virtual3
[    52.361] (II) vmware(0): EDID for output Virtual4
[    52.361] (II) vmware(0): EDID for output Virtual5
[    52.361] (II) vmware(0): EDID for output Virtual6
[    52.361] (II) vmware(0): EDID for output Virtual7
[    52.361] (II) vmware(0): EDID for output Virtual8
[    52.361] (II) vmware(0): Output Virtual1 connected
[    52.361] (II) vmware(0): Output Virtual2 disconnected
[    52.361] (II) vmware(0): Output Virtual3 disconnected
[    52.361] (II) vmware(0): Output Virtual4 disconnected
[    52.361] (II) vmware(0): Output Virtual5 disconnected
[    52.361] (II) vmware(0): Output Virtual6 disconnected
[    52.361] (II) vmware(0): Output Virtual7 disconnected
[    52.361] (II) vmware(0): Output Virtual8 disconnected
[    52.361] (II) vmware(0): Using exact sizes for initial modes
[    52.361] (II) vmware(0): Output Virtual1 using initial mode 1027x771 +0+0
[    52.362] (==) vmware(0): DPI set to (96, 96)
[    52.362] (==) vmware(0): Using gamma correction (1.0, 1.0, 1.0)
[    52.362] (II) Loading sub module "fb"
[    52.362] (II) LoadModule: "fb"
[    52.362] (II) Loading /usr/lib/xorg/modules/libfb.so
[    52.362] (II) Module fb: vendor="X.Org Foundation"
[    52.362] 	compiled for 1.20.12, module version = 1.0.0
[    52.362] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    52.362] (II) Loading sub module "dri2"
[    52.362] (II) LoadModule: "dri2"
[    52.362] (II) Module "dri2" already built-in
[    52.362] (II) Loading sub module "dri3"
[    52.362] (II) LoadModule: "dri3"
[    52.362] (II) Module "dri3" already built-in
[    52.362] (II) UnloadModule: "modesetting"
[    52.362] (II) Unloading modesetting
[    52.362] (II) vmware(0): Initialized VMWARE_CTRL extension version 0.2
[    52.363] (WW) vmware(0): Failed to initialize Gallium3D Xa. No render acceleration available.
[    52.363] (WW) vmware(0): Skipped initialization of direct rendering due to lack of render acceleration.
[    52.363] (--) vmware(0): Render acceleration is disabled.
[    52.363] (==) vmware(0): Rendercheck mode is disabled.
[    52.363] (--) vmware(0): Direct rendering (DRI2 3D) is disabled.
[    52.363] (--) vmware(0): Direct rendering (DRI3 3D) is disabled.
[    52.363] (==) vmware(0): Backing store enabled
[    52.363] (==) vmware(0): Silken mouse disabled
[    52.364] (==) vmware(0): DPMS enabled
[    52.364] (II) vmware(0): No 3D acceleration. Not setting up textured video.
[    52.364] (WW) vmware(0): Disabling Xv because no adaptors could be initialized.
[    52.364] (II) Initializing extension Generic Event Extension
[    52.364] (II) Initializing extension SHAPE
[    52.364] (II) Initializing extension MIT-SHM
[    52.364] (II) Initializing extension XInputExtension
[    52.364] (II) Initializing extension XTEST
[    52.364] (II) Initializing extension BIG-REQUESTS
[    52.364] (II) Initializing extension SYNC
[    52.364] (II) Initializing extension XKEYBOARD
[    52.364] (II) Initializing extension XC-MISC
[    52.364] (II) Initializing extension SECURITY
[    52.364] (II) Initializing extension XFIXES
[    52.364] (II) Initializing extension RENDER
[    52.364] (II) Initializing extension RANDR
[    52.364] (II) Initializing extension COMPOSITE
[    52.364] (II) Initializing extension DAMAGE
[    52.364] (II) Initializing extension MIT-SCREEN-SAVER
[    52.364] (II) Initializing extension DOUBLE-BUFFER
[    52.364] (II) Initializing extension RECORD
[    52.364] (II) Initializing extension DPMS
[    52.364] (II) Initializing extension Present
[    52.364] (II) Initializing extension DRI3
[    52.364] (II) Initializing extension X-Resource
[    52.364] (II) Initializing extension XVideo
[    52.364] (II) Initializing extension XVideo-MotionCompensation
[    52.364] (II) Initializing extension GLX
[    52.364] (II) AIGLX: Screen 0 is not DRI2 capable
[    52.396] (II) IGLX: Loaded and initialized swrast
[    52.396] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[    52.396] (II) Initializing extension XFree86-VidModeExtension
[    52.396] (II) Initializing extension XFree86-DGA
[    52.396] (II) Initializing extension XFree86-DRI
[    52.396] (II) Initializing extension DRI2
[    52.399] (II) vmware(0): Setting screen physical size to 271 x 203
[    52.437] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    52.437] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[    52.437] (II) LoadModule: "libinput"
[    52.437] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[    52.438] (II) Module libinput: vendor="X.Org Foundation"
[    52.438] 	compiled for 1.20.11, module version = 1.1.0
[    52.438] 	Module class: X.Org XInput Driver
[    52.438] 	ABI class: X.Org XInput driver, version 24.1
[    52.438] (II) Using input driver 'libinput' for 'Power Button'
[    52.438] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 16 paused 0
[    52.438] (**) Power Button: always reports core events
[    52.438] (**) Option "Device" "/dev/input/event0"
[    52.438] (**) Option "_source" "server/udev"
[    52.439] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    52.439] (II) event0  - Power Button: device is a keyboard
[    52.439] (II) event0  - Power Button: device removed
[    52.439] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input0/event0"
[    52.439] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    52.439] (II) event0  - Power Button: is tagged by udev as: Keyboard
[    52.439] (II) event0  - Power Button: device is a keyboard
[    52.440] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    52.440] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[    52.440] (II) Using input driver 'libinput' for 'Sleep Button'
[    52.440] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 19 paused 0
[    52.440] (**) Sleep Button: always reports core events
[    52.440] (**) Option "Device" "/dev/input/event1"
[    52.440] (**) Option "_source" "server/udev"
[    52.440] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[    52.440] (II) event1  - Sleep Button: device is a keyboard
[    52.440] (II) event1  - Sleep Button: device removed
[    52.440] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSLPBN:00/input/input1/event1"
[    52.440] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 7)
[    52.441] (II) event1  - Sleep Button: is tagged by udev as: Keyboard
[    52.441] (II) event1  - Sleep Button: device is a keyboard
[    52.441] (II) config/udev: Adding input device Video Bus (/dev/input/event3)
[    52.441] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[    52.441] (II) Using input driver 'libinput' for 'Video Bus'
[    52.441] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 20 paused 0
[    52.441] (**) Video Bus: always reports core events
[    52.441] (**) Option "Device" "/dev/input/event3"
[    52.441] (**) Option "_source" "server/udev"
[    52.442] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    52.442] (II) event3  - Video Bus: device is a keyboard
[    52.442] (II) event3  - Video Bus: device removed
[    52.442] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input4/event3"
[    52.442] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    52.442] (II) event3  - Video Bus: is tagged by udev as: Keyboard
[    52.442] (II) event3  - Video Bus: device is a keyboard
[    52.443] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/event5)
[    52.443] (**) VirtualBox mouse integration: Applying InputClass "libinput pointer catchall"
[    52.443] (II) Using input driver 'libinput' for 'VirtualBox mouse integration'
[    52.443] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 21 paused 0
[    52.443] (**) VirtualBox mouse integration: always reports core events
[    52.443] (**) Option "Device" "/dev/input/event5"
[    52.443] (**) Option "_source" "server/udev"
[    52.443] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[    52.444] (II) event5  - VirtualBox mouse integration: device is a pointer
[    52.444] (II) event5  - VirtualBox mouse integration: device removed
[    52.444] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:04.0/input/input6/event5"
[    52.444] (II) XINPUT: Adding extended input device "VirtualBox mouse integration" (type: MOUSE, id 9)
[    52.444] (**) Option "AccelerationScheme" "none"
[    52.444] (**) VirtualBox mouse integration: (accel) selected scheme none/0
[    52.444] (**) VirtualBox mouse integration: (accel) acceleration factor: 2.000
[    52.444] (**) VirtualBox mouse integration: (accel) acceleration threshold: 4
[    52.444] (II) event5  - VirtualBox mouse integration: is tagged by udev as: Mouse
[    52.444] (II) event5  - VirtualBox mouse integration: device is a pointer
[    52.444] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/js0)
[    52.444] (II) No input driver specified, ignoring this device.
[    52.444] (II) This device may have been added with another device file.
[    52.444] (II) config/udev: Adding input device VirtualBox mouse integration (/dev/input/mouse0)
[    52.444] (II) No input driver specified, ignoring this device.
[    52.444] (II) This device may have been added with another device file.
[    52.445] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    52.445] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[    52.445] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[    52.445] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 22 paused 0
[    52.445] (**) AT Translated Set 2 keyboard: always reports core events
[    52.445] (**) Option "Device" "/dev/input/event2"
[    52.445] (**) Option "_source" "server/udev"
[    52.445] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    52.445] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    52.446] (II) event2  - AT Translated Set 2 keyboard: device removed
[    52.446] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    52.446] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[    52.446] (II) event2  - AT Translated Set 2 keyboard: is tagged by udev as: Keyboard
[    52.446] (II) event2  - AT Translated Set 2 keyboard: device is a keyboard
[    52.447] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/event6)
[    52.447] (**) ImExPS/2 Generic Explorer Mouse: Applying InputClass "libinput pointer catchall"
[    52.447] (II) Using input driver 'libinput' for 'ImExPS/2 Generic Explorer Mouse'
[    52.447] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 23 paused 0
[    52.447] (**) ImExPS/2 Generic Explorer Mouse: always reports core events
[    52.447] (**) Option "Device" "/dev/input/event6"
[    52.447] (**) Option "_source" "server/udev"
[    52.447] (II) event6  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[    52.447] (II) event6  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[    52.447] (II) event6  - ImExPS/2 Generic Explorer Mouse: device removed
[    52.447] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input7/event6"
[    52.447] (II) XINPUT: Adding extended input device "ImExPS/2 Generic Explorer Mouse" (type: MOUSE, id 11)
[    52.448] (**) Option "AccelerationScheme" "none"
[    52.448] (**) ImExPS/2 Generic Explorer Mouse: (accel) selected scheme none/0
[    52.448] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration factor: 2.000
[    52.448] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration threshold: 4
[    52.448] (II) event6  - ImExPS/2 Generic Explorer Mouse: is tagged by udev as: Mouse
[    52.448] (II) event6  - ImExPS/2 Generic Explorer Mouse: device is a pointer
[    52.448] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/mouse1)
[    52.448] (II) No input driver specified, ignoring this device.
[    52.448] (II) This device may have been added with another device file.
[    52.448] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[    52.448] (II) No input driver specified, ignoring this device.
[    52.448] (II) This device may have been added with another device file.
[   316.021] (**) Option "fd" "16"
[   316.021] (II) event0  - Power Button: device removed
[   316.021] (**) Option "fd" "19"
[   316.021] (II) event1  - Sleep Button: device removed
[   316.021] (**) Option "fd" "20"
[   316.021] (II) event3  - Video Bus: device removed
[   316.021] (**) Option "fd" "21"
[   316.021] (II) event5  - VirtualBox mouse integration: device removed
[   316.021] (**) Option "fd" "22"
[   316.021] (II) event2  - AT Translated Set 2 keyboard: device removed
[   316.021] (**) Option "fd" "23"
[   316.021] (II) event6  - ImExPS/2 Generic Explorer Mouse: device removed
[   316.021] (II) UnloadModule: "libinput"
[   316.021] (II) systemd-logind: releasing fd for 13:70
[   316.034] (II) UnloadModule: "libinput"
[   316.034] (II) systemd-logind: releasing fd for 13:66
[   316.083] (II) UnloadModule: "libinput"
[   316.083] (II) systemd-logind: releasing fd for 13:69
[   316.124] (II) UnloadModule: "libinput"
[   316.124] (II) systemd-logind: releasing fd for 13:67
[   316.158] (II) UnloadModule: "libinput"
[   316.158] (II) systemd-logind: releasing fd for 13:65
[   316.177] (II) UnloadModule: "libinput"
[   316.177] (II) systemd-logind: releasing fd for 13:64
[   316.196] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[   316.196] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[   316.196] (WW) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[   316.197] (II) Server terminated successfully (0). Closing log file.

the time in the log file didn't change (should have been 18:33....):

[    52.348] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jul 14 17:50:54 2021

Offline

#14 2021-07-14 13:14:49

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

make xinitrc run "exec xterm" (but not twm) and then try to run either qtile or openbox from that xterm.
Does that work?

Offline

#15 2021-07-14 13:18:28

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

no it didnt work... sad
the xterm did open but

$ qtile start
segmentation fault (core dumped)
$

Offline

#16 2021-07-14 13:20:48

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

That's actually a very good thing.
Check "coredumpctl"

Offline

#17 2021-07-14 13:29:14

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

seth wrote:

That's actually a very good thing.

yikes

$ coredumpctl -1
TIME                        PID UID GID SIG     COREFILE     EXE                SIZE
Wed 2021-07-14 18:46:44 IST 371   0   0 SIGSEGV inaccessible /usr/bin/python3.9  n/a
$ coredumpctl info
           PID: 371 (qtile)
           UID: 0 (root)
           GID: 0 (root)
        Signal: 11 (SEGV)
     Timestamp: Wed 2021-07-14 18:46:44 IST (12min ago)
  Command Line: /usr/bin/python /usr/bin/qtile start
    Executable: /usr/bin/python3.9
 Control Group: /user.slice/user-1000.slice/session-1.scope
          Unit: session-1.scope
         Slice: user-1000.slice
       Session: 1
     Owner UID: 1000 (poseidon)
       Boot ID: d77f5dfa177a400f81eb2f97ac832be4
    Machine ID: 4e3f394e5fdd43fc95d66c1183af9763
      Hostname: arch
       Storage: /var/lib/systemd/coredump/core.qtile.0.d77f5dfa177a400f81eb2f97ac832be4.371.1626268604000000.zst (inaccessible)
       Message: Process 371 (qtile) of user 0 dumped core.
                
                Found module linux-vdso.so.1 with build-id: 581bfd6488519395b6a2f6b6d72da5daf689fa5d
                Found module libgpg-error.so.0 with build-id: ba85170c2d9343ea05eea8fa2048c212ff4ef552
                Found module libgcrypt.so.20 with build-id: 4a114f6a371dee16ad6e01023b0b3c654b8582a3
                Found module libcap.so.2 with build-id: d3d0ddf2f54f554fb280d7eb41a06dd39173009e
                Found module liblz4.so.1 with build-id: e63600ab23b2f6997f42fac2fa56e1f02ce159a1
                Found module libsystemd.so.0 with build-id: 15e863a1804ee74d4dd4c79ada848c6f1facb2d2
                Found module libdbus-1.so.3 with build-id: 74f2ab9c60512f3a93c932c3f627564d42e0b11e
                Found module _dbus_bindings.so with build-id: e4a22f338b241c425d6893b3e17fea34fb57a4d7
                Found module pyexpat.cpython-39-x86_64-linux-gnu.so with build-id: 1769c13f282b219121fff4e33efce4f24e669ca9
                Found module _datetime.cpython-39-x86_64-linux-gnu.so with build-id: 11ee989ea4b12fcad6025976369604141be41f0c
                Found module _curses.cpython-39-x86_64-linux-gnu.so with build-id: 13c51eee6e67d0430c02953a5148f0607d195d98
                Found module termios.cpython-39-x86_64-linux-gnu.so with build-id: 477487245814ed0e212dd5521bc0cfb2997c7d21
                Found module libncursesw.so.6 with build-id: 4118a7b0a2a0de8f6359df5b61c6c59a9e13a4d5
                Found module libreadline.so.8 with build-id: 50c2746af3cf9fa7373e6ba6d9b2bc0a2ef7735a
                Found module readline.cpython-39-x86_64-linux-gnu.so with build-id: e4c6087261be608e94424a5fef152d534a4704de
                Found module libpangoft2-1.0.so.0 with build-id: 704dc3cd81d2ea50cc4d8589b59c42ff6da55fa3
                Found module libpangocairo-1.0.so.0 with build-id: 2554be0474a6ee311b6e9aa4fd79a244167cdcfd
                Found module libdatrie.so.1 with build-id: 6fe3b6ece2c8e7d11869fa051375128d8f808f58
                Found module libthai.so.0 with build-id: 3fdce1a7db2b94d9168eea540dbf5ff5caa3b8ad
                Found module libfribidi.so.0 with build-id: e29e3b231f961d49e628d43ddd1237a8364f788c
                Found module libpango-1.0.so.0 with build-id: 68d673371ec32a28694d83dc9c8d6b348c91bb4e
                Found module _json.cpython-39-x86_64-linux-gnu.so with build-id: 0643a2d8b7fb25b491d796f79e3e088a86986396
                Found module fcntl.cpython-39-x86_64-linux-gnu.so with build-id: aeaa9fb742b73eaa752f58b003cd6069af545b39
                Found module _cffi_backend.cpython-39-x86_64-linux-gnu.so with build-id: acd181d70c18e4b0dbd8f3142666011bcd8d9406
                Found module _ctypes.cpython-39-x86_64-linux-gnu.so with build-id: 518498c024589f0785f4ba5d6bdd4e25ff334615
                Found module _asyncio.cpython-39-x86_64-linux-gnu.so with build-id: 19a883a473068968df79071aca1a5754f6181be8
                Found module _contextvars.cpython-39-x86_64-linux-gnu.so with build-id: aa2ee418de65d4154ef2f542458d8423ca1bb88f
                Found module _opcode.cpython-39-x86_64-linux-gnu.so with build-id: cf7a919137738cf461a1c27a793c617e6251d040
                Found module libcrypto.so.1.1 with build-id: 81b77a8e0b6e1c0db19644a5f120890f02762021
                Found module libssl.so.1.1 with build-id: 99394a6653d9c107f2e9b730bbbfd18ed43ae3b9
                Found module _ssl.cpython-39-x86_64-linux-gnu.so with build-id: 7169f78bea0f1e5bbad0ac608a4310c2fb0d3fa6
                Found module libnotify.so.4 with build-id: b9a8b678aa4bf781e0b640ecd7e4128e08568990
                Found module libzstd.so.1 with build-id: 4b10444c1560ebc574af4d5f488b7408b22d450e
                Found module libtiff.so.5 with build-id: e8d89a0fb0847641ddb75c5f03fa89d68155a75d
                Found module libjpeg.so.8 with build-id: 2b2ee5daa1e21c0586419b05282528a6556259b2
                Found module libgdk_pixbuf-2.0.so.0 with build-id: e93795f419fcfe7aba6fdf6923dc9d02a61a6d5a
                Found module libgraphite2.so.3 with build-id: 47761dc11e553f519cde97ed9ee985be12ccdae2
                Found module libXdmcp.so.6 with build-id: 8ca0792d23c8b8b4c0864297512349292bea5955
                Found module libXau.so.6 with build-id: 1c67764663e07bec24d8951e5fd93f4d165979ff
                Found module libharfbuzz.so.0 with build-id: 193a18a69d9e71d9988c6795c000fea51a2ac500
                Found module libexpat.so.1 with build-id: 8850138eae6d9d4d43c5c4b2ac48393bc4279037
                Found module libpixman-1.so.0 with build-id: 341f793dcada3a48a306a793d265a517e3f2e7d6
                Found module libxcb-shm.so.0 with build-id: fb797f299a446f559a95afcc168227482cc800d1
                Found module libxcb-render.so.0 with build-id: a37bdb37744b508be9dd29fd9ccb9bb0170d

Offline

#18 2021-07-14 13:32:47

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

           UID: 0 (root)
           GID: 0 (root)

DO! NOT! RUN! XORG! AS! ROOT!

Offline

#19 2021-07-14 13:38:39

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

seth wrote:
           UID: 0 (root)
           GID: 0 (root)

DO! NOT! RUN! XORG! AS! ROOT!

sorry, actually that was when i ran qtile start with sudo,

here is coredumpctl of qtile start with user:

$ coredumpctl info
           PID: 431 (qtile)
           UID: 1000 (poseidon)
           GID: 1000 (poseidon)
        Signal: 11 (SEGV)
     Timestamp: Wed 2021-07-14 19:04:10 IST (3min 27s ago)
  Command Line: /usr/bin/python /usr/bin/qtile start
    Executable: /usr/bin/python3.9
 Control Group: /user.slice/user-1000.slice/session-1.scope
          Unit: session-1.scope
         Slice: user-1000.slice
       Session: 1
     Owner UID: 1000 (poseidon)
       Boot ID: d77f5dfa177a400f81eb2f97ac832be4
    Machine ID: 4e3f394e5fdd43fc95d66c1183af9763
      Hostname: arch
       Storage: /var/lib/systemd/coredump/core.qtile.1000.d77f5dfa177a400f81eb2f97ac832be4.431.1626269650000000.zst (present)
     Disk Size: 5.0M
       Message: Process 431 (qtile) of user 1000 dumped core.
                
                Found module linux-vdso.so.1 with build-id: 581bfd6488519395b6a2f6b6d72da5daf689fa5d
                Found module libgpg-error.so.0 with build-id: ba85170c2d9343ea05eea8fa2048c212ff4ef552
                Found module libgcrypt.so.20 with build-id: 4a114f6a371dee16ad6e01023b0b3c654b8582a3
                Found module libcap.so.2 with build-id: d3d0ddf2f54f554fb280d7eb41a06dd39173009e
                Found module liblz4.so.1 with build-id: e63600ab23b2f6997f42fac2fa56e1f02ce159a1
                Found module libsystemd.so.0 with build-id: 15e863a1804ee74d4dd4c79ada848c6f1facb2d2
                Found module libdbus-1.so.3 with build-id: 74f2ab9c60512f3a93c932c3f627564d42e0b11e
                Found module _dbus_bindings.so with build-id: e4a22f338b241c425d6893b3e17fea34fb57a4d7
                Found module pyexpat.cpython-39-x86_64-linux-gnu.so with build-id: 1769c13f282b219121fff4e33efce4f24e669ca9
                Found module _datetime.cpython-39-x86_64-linux-gnu.so with build-id: 11ee989ea4b12fcad6025976369604141be41f0c
                Found module _curses.cpython-39-x86_64-linux-gnu.so with build-id: 13c51eee6e67d0430c02953a5148f0607d195d98
                Found module termios.cpython-39-x86_64-linux-gnu.so with build-id: 477487245814ed0e212dd5521bc0cfb2997c7d21
                Found module libncursesw.so.6 with build-id: 4118a7b0a2a0de8f6359df5b61c6c59a9e13a4d5
                Found module libreadline.so.8 with build-id: 50c2746af3cf9fa7373e6ba6d9b2bc0a2ef7735a
                Found module readline.cpython-39-x86_64-linux-gnu.so with build-id: e4c6087261be608e94424a5fef152d534a4704de
                Found module libpangoft2-1.0.so.0 with build-id: 704dc3cd81d2ea50cc4d8589b59c42ff6da55fa3
                Found module libpangocairo-1.0.so.0 with build-id: 2554be0474a6ee311b6e9aa4fd79a244167cdcfd
                Found module libdatrie.so.1 with build-id: 6fe3b6ece2c8e7d11869fa051375128d8f808f58
                Found module libthai.so.0 with build-id: 3fdce1a7db2b94d9168eea540dbf5ff5caa3b8ad
                Found module libfribidi.so.0 with build-id: e29e3b231f961d49e628d43ddd1237a8364f788c
                Found module libpango-1.0.so.0 with build-id: 68d673371ec32a28694d83dc9c8d6b348c91bb4e
                Found module _json.cpython-39-x86_64-linux-gnu.so with build-id: 0643a2d8b7fb25b491d796f79e3e088a86986396
                Found module fcntl.cpython-39-x86_64-linux-gnu.so with build-id: aeaa9fb742b73eaa752f58b003cd6069af545b39
                Found module _cffi_backend.cpython-39-x86_64-linux-gnu.so with build-id: acd181d70c18e4b0dbd8f3142666011bcd8d9406
                Found module _ctypes.cpython-39-x86_64-linux-gnu.so with build-id: 518498c024589f0785f4ba5d6bdd4e25ff334615
                Found module _asyncio.cpython-39-x86_64-linux-gnu.so with build-id: 19a883a473068968df79071aca1a5754f6181be8
                Found module _contextvars.cpython-39-x86_64-linux-gnu.so with build-id: aa2ee418de65d4154ef2f542458d8423ca1bb88f
                Found module _opcode.cpython-39-x86_64-linux-gnu.so with build-id: cf7a919137738cf461a1c27a793c617e6251d040
                Found module libcrypto.so.1.1 with build-id: 81b77a8e0b6e1c0db19644a5f120890f02762021
                Found module libssl.so.1.1 with build-id: 99394a6653d9c107f2e9b730bbbfd18ed43ae3b9
                Found module _ssl.cpython-39-x86_64-linux-gnu.so with build-id: 7169f78bea0f1e5bbad0ac608a4310c2fb0d3fa6
                Found module libnotify.so.4 with build-id: b9a8b678aa4bf781e0b640ecd7e4128e08568990
                Found module libzstd.so.1 with build-id: 4b10444c1560ebc574af4d5f488b7408b22d450e
                Found module libtiff.so.5 with build-id: e8d89a0fb0847641ddb75c5f03fa89d68155a75d
                Found module libjpeg.so.8 with build-id: 2b2ee5daa1e21c0586419b05282528a6556259b2
                Found module libgdk_pixbuf-2.0.so.0 with build-id: e93795f419fcfe7aba6fdf6923dc9d02a61a6d5a
                Found module libgraphite2.so.3 with build-id: 47761dc11e553f519cde97ed9ee985be12ccdae2
                Found module libXdmcp.so.6 with build-id: 8ca0792d23c8b8b4c0864297512349292bea5955
                Found module libXau.so.6 with build-id: 1c67764663e07bec24d8951e5fd93f4d165979ff
                Found module libharfbuzz.so.0 with build-id: 193a18a69d9e71d9988c6795c000fea51a2ac500
                Found module libexpat.so.1 with build-id: 8850138eae6d9d4d43c5c4b2ac48393bc4279037
                Found module libpixman-1.so.0 with build-id: 341f793dcada3a48a306a793d265a517e3f2e7d6
                Found module libxcb-shm.so.0 with build-id: fb797f299a446f559a95afcc168227482cc800d1
                Found module libxcb-render.so.0 with build-id: a37bdb37744b508be9dd29fd9ccb9bb01

Offline

#20 2021-07-14 13:52:51

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

Ok. Unfortunately we're left w/ a rather meaningless python dump.
openbox will (eiter work or) rather produce a more insightful backtrace.

Offline

#21 2021-07-14 14:01:16

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

openbox-session dump :

           PID: 414 (openbox)
           UID: 1000 (poseidon)
           GID: 1000 (poseidon)
        Signal: 6 (ABRT)
     Timestamp: Wed 2021-07-14 19:29:12 IST (21s ago)
  Command Line: /usr/bin/openbox --startup $'/usr/lib/openbox/openbox-autostart OPENBOX'
    Executable: /usr/bin/openbox
 Control Group: /user.slice/user-1000.slice/session-1.scope
          Unit: session-1.scope
         Slice: user-1000.slice
       Session: 1
     Owner UID: 1000 (poseidon)
       Boot ID: dd46251637094cd0b3f3be48901aa8c7
    Machine ID: 4e3f394e5fdd43fc95d66c1183af9763
      Hostname: arch
       Storage: /var/lib/systemd/coredump/core.openbox.1000.dd46251637094cd0b3f3be48901aa8c7.414.1626271152000000.zst (present)
     Disk Size: 721.1K
       Message: Process 414 (openbox) of user 1000 dumped core.
                
                Found module linux-vdso.so.1 with build-id: 581bfd6488519395b6a2f6b6d72da5daf689fa5d
                Found module libp11-kit.so.0 with build-id: 5314ec746546ada6f442b6fdfae15eab9f6d3cdc
                Found module libcrypto.so.1.1 with build-id: 81b77a8e0b6e1c0db19644a5f120890f02762021
                Found module libcrypt.so.2 with build-id: 088849faac982ef8d22c655121576f98e49734b5
                Found module libnss_systemd.so.2 with build-id: 22990ff716d182c427e26b7a3cf94048b55b3e75
                Found module libnss_files.so.2 with build-id: 1a36dfc01d3a1010b2ee79766a24a8090a3266d5
                Found module libstdc++.so.6 with build-id: 8ab0e57054dd1dcba681f217016afc6a4e639783
                Found module libicudata.so.69 with build-id: 0ab994a49ef1848499c4af333b3266f28432a922
                Found module libzstd.so.1 with build-id: 4b10444c1560ebc574af4d5f488b7408b22d450e
                Found module librt.so.1 with build-id: 75484da2d6f1515189eefa076e0a40328834cd16
                Found module libblkid.so.1 with build-id: c8025d3fd3c6cb96954e815c81ab398a5f1cf7b9
                Found module libdatrie.so.1 with build-id: 6fe3b6ece2c8e7d11869fa051375128d8f808f58
                Found module liblzma.so.5 with build-id: f8d607153b2b315f1aaa1c8e12553d544e661f2d
                Found module libicuuc.so.69 with build-id: 5cf18c56e2f64efdac32cf61fb9c0c48e9bb1797
                Found module libpixman-1.so.0 with build-id: 341f793dcada3a48a306a793d265a517e3f2e7d6
                Found module libxcb-render.so.0 with build-id: a37bdb37744b508be9dd29fd9ccb9bb0170d43e5
                Found module libffi.so.7 with build-id: de60e99f39569d11d09160bbdcd486cedc87d2b6
                Found module libtiff.so.5 with build-id: e8d89a0fb0847641ddb75c5f03fa89d68155a75d
                Found module libjpeg.so.8 with build-id: 2b2ee5daa1e21c0586419b05282528a6556259b2
                Found module libresolv.so.2 with build-id: c915c72668282861a813f7ea3c0780f37b681dc0
                Found module libmount.so.1 with build-id: 03cb4d49246c496b0809aa7ad71a017bd671a80d
                Found module libgmodule-2.0.so.0 with build-id: 1c305e1a08706be35604a78f8d99a567274a0217
                Found module libgcc_s.so.1 with build-id: 7f8508bb914546ada778809b64b99d234337d835
                Found module libpangocairo-1.0.so.0 with build-id: 2554be0474a6ee311b6e9aa4fd79a244167cdcfd
                Found module libcairo-gobject.so.2 with build-id: abbf5a8a182ea1b8b7d68540df5c2e25c0bdae0c
                Found module libxcb-shm.so.0 with build-id: fb797f299a446f559a95afcc168227482cc800d1
                Found module libz.so.1 with build-id: 81bf6e728a6d6f5b105b0f8b25f6c614ce10452a
                Found module libpng16.so.16 with build-id: 2dc0bce07f199bf983c07a05fb95a6f4af83a9b3
                Found module libbz2.so.1.0 with build-id: 919597c477c9b2cb9cdbb7745ed6494ac0e6da60
                Found module libexpat.so.1 with build-id: 8850138eae6d9d4d43c5c4b2ac48393bc4279037
                Found module libgraphite2.so.3 with build-id: 47761dc11e553f519cde97ed9ee985be12ccdae2
                Found module libthai.so.0 with build-id: 3fdce1a7db2b94d9168eea540dbf5ff5caa3b8ad
                Found module libfribidi.so.0 with build-id: e29e3b231f961d49e628d43ddd1237a8364f788c
                Found module libXdmcp.so.6 with build-id: 8ca0792d23c8b8b4c0864297512349292bea5955
                Found module libXau.so.6 with build-id: 1c67764663e07bec24d8951e5fd93f4d165979ff
                Found module ld-linux-x86-64.so.2 with build-id: 040cc3dd10461562f177df39e3be2f3704258c3c
                Found module libpthread.so.0 with build-id: 07c8f95b4f3251d08550217ad8a1f31066229996
                Found module libpcre.so.1 with build-id: 845483dd0acba86de9f0313102bebbaf3ce52767
                Found module libdl.so.2 with build-id: 5abc547e7b0949f89f3c0e21ab0c8331a7440a8a
                Found module libuuid.so.1 with build-id: 3e0a931014de70a2cbd418ebade0715d9ed4166b
                Found module libxml2.so.2 with build-id: fe447813db6ae9c70345a25ec4c7d79d82cabb0c
                Found module libcairo.so.2 with build-id: 06820af9cf79c2deb207d9533a61caf04e67a8ad
                Found module libgobject-2.0.so.0 with build-id: a6d338dd0fd6bb335a4010b838f5173c6cbf953a
                Found module libgdk_pixbuf-2.0.so.0 with build-id: e93795f419fcfe7aba6fdf6923dc9d02a61a6d5a
                Found module libgio-2.0.so.0 with build-id: 451ca85a17a8e53e563a4a878f7f44901bd5a1e1
                Found module libm.so.6 with build-id: 2b8fd1f869ecab4e0b55e92f2f151897f6818acf
                Found module librsvg-2.so.2 with build-id: 25ea7d4ce2ab875330c04c0e1c5b6830f81e565b
                Found module libImlib2.so.1 with build-id: f97e98ae12640974b4440f0753d6ab

Offline

#22 2021-07-14 14:07:47

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

There's no backtrace??
(Did you call the backtrace for qtile? Do you have gdb installed?)

https://wiki.archlinux.org/title/Core_d … _core_dump

Offline

#23 2021-07-14 14:33:24

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

seth wrote:

There's no backtrace??
(Did you call the backtrace for qtile? Do you have gdb installed?)

https://wiki.archlinux.org/title/Core_d … _core_dump

please bear with me, it my 1st time going through these log inspection and all, please do mention exact commands & wiki links. smile

backtraces :
https://imgur.com/a/OzV6srF

Offline

#24 2021-07-14 14:44:13

seth
Member
From: Won't reply 2 private help req
Registered: 2012-09-03
Posts: 77,438

Re: startx unable to open WM session without a Display/Login Manager

It dies in pango…
Output of "localectl; locale -a; locale"?

Offline

#25 2021-07-14 14:50:22

pritam_poseidon
Member
Registered: 2021-07-13
Posts: 21

Re: startx unable to open WM session without a Display/Login Manager

$ localectl
   System Locale: LANG=C
       VC Keymap: n/a
      X11 Layout: n/a
$ locale -a
C
POSIX
en_US.utf8
$ locale
LANG=C
LC_CTYPE="C"
LC_NUMERIC="C"
LC_TIME="C"
LC_COLLATE="C"
LC_MONETARY="C"
LC_MESSAGES="C"
LC_PAPER="C"
LC_NAME="C"
LC_ADDRESS="C"
LC_TELEPHONE="C"
LC_MEASUREMENT="C"
LC_IDENTIFICATION="C"
LC_ALL=

Offline

Board footer

Powered by FluxBB