The officially official Devuan Forum!

You are not logged in.

#1 2023-01-19 16:20:03

boughtonp
Member
From: UK
Registered: 2023-01-19
Posts: 201  
Website

[SOLVED] No keyboard or mouse after starting IceWM as non-root user.

Hello, I'm finally making the switch to Devuan from Debian.

I performed an offline install of Chimaera, deselecting the default xfce/desktop options during install to give me a terminal-based install.

Subsequently, I downloaded & installed "icewm" package (and dependencies), but that didn't give me X, so I also installed "xorg".

If I run startx as regular user, IceWM launches but the keyboard and trackpad do not work - the system hasn't frozen because the clock is updating - but Ctrl-Alt-[Fx] do not respond, nor do Alt+SysRq+[Key] do anything, so I need to hard power off and on again.

If I startx as root, IceWM launches and seems to work fine - keyboard and trackpad both working as expected - so I guess there's some kind of permission issue...?

Do I need to install some other package instead of, or as well as, xorg?

Shouldn't the icewm package have relevant dependencies, such that apt install icewm is all I needed?


3.1415P265E589T932E846R64338

Offline

#2 2023-01-19 16:45:34

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: [SOLVED] No keyboard or mouse after starting IceWM as non-root user.

Hello Peter, welcome to the forums :-)

Is elogind installed and running?

loginctl --no-pager list-sessions

I think working login session is needed for the relevant permissions.

I'm not sure if SysRq is enabled by default in Devuan — the content of /proc/sys/kernel/sysrq will show the status. I know systemd defaults to 0x10 (16) but I don't know about the alternative init systems.


Brianna Ghey — Rest In Power

Offline

#3 2023-01-19 17:46:56

boughtonp
Member
From: UK
Registered: 2023-01-19
Posts: 201  
Website

Re: [SOLVED] No keyboard or mouse after starting IceWM as non-root user.

Thanks. :)

Head_on_a_Stick wrote:

Is elogind installed and running?

loginctl --no-pager list-sessions

I think working login session is needed for the relevant permissions.

No elogind installed - after installing it, that command gives...

# loginctl --no-pager list-sessions
No sessions.

...but the issue remains.

I found a Debian thread with a similar issue stating xserver-xorg-input-all and xserver-xorg-input-evdev needed to be installed - the first already was, the second wasn't - but installing that didn't have any effect either.

-

I'm not sure if SysRq is enabled by default in Devuan — the content of /proc/sys/kernel/sysrq will show the status. I know systemd defaults to 0x10 (16) but I don't know about the alternative init systems.

It's not fully enabled/working - but before startx, Alt-SysRq-H switches to tty1 but doesn't display any help. Actually, it seems to toggle between current and previous tty, which is odd.

Value of /proc/sys/kernel/sysrq is 438 (which is Debian default I think even with systemd), but it still behaved the same after setting to 1.

My assumption was that being kernel-level it should get priority over whatever is hijacking/ignoring input, but even when fully enabled Alt-SysRq-H doesn't react when pressed inside IceWM running as root, so I guess I was wrong about that.

-

Checking Xorg.0.log there's a bunch of these (for different eventX devices) :

[   128.739] (**) Option "Device" "/dev/input/event0"
[   128.739] (**) Option "_source" "server/udev"
[   128.740] (EE) xf86OpenSerial: Cannot open device /dev/input/event0
    Permission denied.
[   128.740] (II) event0: opening input device '/dev/input/event0' failed (Permission denied).
[   128.740] (II) event0  - failed to create input device '/dev/input/event0'.
[   128.740] (EE) libinput: AT Translated Set 2 keyboard: Failed to create a device for /dev/input/event0
[   128.740] (EE) PreInit returned 2 for "AT Translated Set 2 keyboard"
[   128.740] (II) UnloadModule: "libinput"

Grepping the file for "(EE)" also returned this...

[   128.446] (EE) systemd-logind: failed to get session: PID 1497 does not belong to any known session

... but searching for that suggests it may be a red herring that can be ignored.


3.1415P265E589T932E846R64338

Offline

#4 2023-01-19 17:57:36

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: [SOLVED] No keyboard or mouse after starting IceWM as non-root user.

boughtonp wrote:

No elogind installed - after installing it, that command gives...

# loginctl --no-pager list-sessions
No sessions.

If there are no sessions then it probably isn't running.

Try enabling it:

# update-rc.d elogind defaults

Then reboot.

boughtonp wrote:

Checking Xorg.0.log

Was that under ~/.local/share/xorg/? If not then you're just reading the log from the root session. It's probably best to share the full content of the user X.Org log.


Brianna Ghey — Rest In Power

Offline

#5 2023-01-19 20:05:37

boughtonp
Member
From: UK
Registered: 2023-01-19
Posts: 201  
Website

Re: [SOLVED] No keyboard or mouse after starting IceWM as non-root user.

Head_on_a_Stick wrote:

If there are no sessions then it probably isn't running.

The output on tty1 lists it after runlevel 2:

Starting session management daemon: elogind

Anyway, I ran update-rc.d elogind defaults and restarted to be sure - still not working.

I noticed there's a /var/log/daemon.log and whilst testing different loginctl options, I see that when executing loginctl user-status it adds a line stating:

Could not get properties: Is a directory

Searching on that message finds a Gentoo discussion also related to elogind not running properly:
https://linux.gentoo.user.narkive.com/d … atus-fails

My /run/systemd/sessions/ dir is also empty, whilst ps -A | grep elogin does show elogind-daemon running.

Wondering if it is worth purging elogind and installing seatd instead, or if that's still too new?

-

Was that under ~/.local/share/xorg/?

Yes, it's the user's log file. (The root one also has the systemd-logind error, confirming that as unrelated to this issue, but not the /dev/input/eventX ones.)

It's probably best to share the full content of the user X.Org log.

Perhaps, but since it'll be a bit of faff transferring it, and I have an alarm telling me to go do other stuff, I will do that at a later point.


3.1415P265E589T932E846R64338

Offline

#6 2023-01-20 06:50:08

Head_on_a_Stick
Member
From: London
Registered: 2019-03-24
Posts: 3,125  
Website

Re: [SOLVED] No keyboard or mouse after starting IceWM as non-root user.

boughtonp wrote:

Wondering if it is worth purging elogind and installing seatd instead, or if that's still too new?

That works for me under Alpine Linux with sway but I have to add my user to the audio, video & seat groups. Membership of the video & audio groups is not secure for a multi-user system though.

I think adding your user to the input group will let you access the input devices but that is also inappropriate if you have several users because it allows input snooping.

As a sanity check: is xserver-xorg-input-libinput installed? That should support all input devices.

boughtonp wrote:

it'll be a bit of faff transferring it

Not really:

curl -F 'file=@-' 0x0.st < ~/.local/share/xorg/Xorg.0.log

Then post the returned URL.


Brianna Ghey — Rest In Power

Offline

#7 2023-01-22 22:29:15

boughtonp
Member
From: UK
Registered: 2023-01-19
Posts: 201  
Website

Re: [SOLVED] No keyboard or mouse after starting IceWM as non-root user.

That works for me under Alpine Linux with sway but I have to add my user to the audio, video & seat groups. Membership of the video & audio groups is not secure for a multi-user system though.

I think adding your user to the input group will let you access the input devices but that is also inappropriate if you have several users because it allows input snooping.

Yes, thanks, doing usermod -aG input myusername allows keyboard and mouse to work.

Also remained working after removing xserver-xorg-input-evdev and elogind packages.

It's a single-person machine - there will probably be different users for certain software (e.g. local servers, etc), but only one main/GUI user.

-

As a sanity check: is xserver-xorg-input-libinput installed? That should support all input devices.

Yes.

# dpkg-query -W xserver-xorg-input-*
xserver-xorg-input-all	1:7.7+22
xserver-xorg-input-evdev	1:2.10.6-2
xserver-xorg-input-evtouch	
xserver-xorg-input-libinput	0.30.0-1
xserver-xorg-input-vmmouse	
xserver-xorg-input-wacom	

-

boughtonp wrote:

it'll be a bit of faff transferring it

Not really:

I was referring to it being an offline machine, and not just a quick single operation.

Anyhow, here's the Xorg.0.log from the other day, but assuming the input group method is only an issue when multiple human users I'm happy to consider this solved.

[   128.435] 
X.Org X Server 1.20.11
X Protocol Version 11, Revision 0
[   128.435] Build Operating System: linux Debian
[   128.435] Current Operating System: Linux think 5.10.0-9-amd64 #1 SMP Debian 5.10.70-1 (2021-09-30) x86_64
[   128.435] Kernel command line: BOOT_IMAGE=/vmlinuz-5.10.0-9-amd64 root=/dev/mapper/think--vg-root ro quiet
[   128.435] Build Date: 11 November 2022  12:37:52PM
[   128.435] xorg-server 2:1.20.11-1+deb11u3 (https://www.debian.org/support) 
[   128.435] Current version of pixman: 0.40.0
[   128.435] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   128.435] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   128.435] (==) Log file: "/home/user/.local/share/xorg/Xorg.0.log", Time: Thu Jan 19 17:01:10 2023
[   128.437] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   128.438] (==) No Layout section.  Using the first Screen section.
[   128.438] (==) No screen section available. Using defaults.
[   128.438] (**) |-->Screen "Default Screen Section" (0)
[   128.438] (**) |   |-->Monitor "<default monitor>"
[   128.439] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[   128.439] (==) Automatically adding devices
[   128.439] (==) Automatically enabling devices
[   128.439] (==) Automatically adding GPU devices
[   128.439] (==) Max clients allowed: 256, resource mask: 0x1fffff
[   128.442] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[   128.442] 	Entry deleted from font path.
[   128.444] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	built-ins
[   128.445] (==) ModulePath set to "/usr/lib/xorg/modules"
[   128.445] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[   128.445] (II) Loader magic: 0x557d8ffe1e40
[   128.445] (II) Module ABI versions:
[   128.445] 	X.Org ANSI C Emulation: 0.4
[   128.445] 	X.Org Video Driver: 24.1
[   128.445] 	X.Org XInput driver : 24.1
[   128.445] 	X.Org Server Extension : 10.0
[   128.445] (++) using VT number 3

[   128.446] (EE) systemd-logind: failed to get session: PID 1497 does not belong to any known session
[   128.446] (II) xfree86: Adding drm device (/dev/dri/card0)
[   128.465] (--) PCI:*(0@0:2:0) 8086:0046:17aa:215a rev 2, Mem @ 0xf2000000/4194304, 0xd0000000/268435456, I/O @ 0x00001800/8, BIOS @ 0x????????/131072
[   128.465] (II) LoadModule: "glx"
[   128.466] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   128.476] (II) Module glx: vendor="X.Org Foundation"
[   128.476] 	compiled for 1.20.11, module version = 1.0.0
[   128.476] 	ABI class: X.Org Server Extension, version 10.0
[   128.476] (==) Matched modesetting as autoconfigured driver 0
[   128.476] (==) Matched fbdev as autoconfigured driver 1
[   128.476] (==) Matched vesa as autoconfigured driver 2
[   128.476] (==) Assigned the driver to the xf86ConfigLayout
[   128.476] (II) LoadModule: "modesetting"
[   128.477] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[   128.478] (II) Module modesetting: vendor="X.Org Foundation"
[   128.478] 	compiled for 1.20.11, module version = 1.20.11
[   128.478] 	Module class: X.Org Video Driver
[   128.478] 	ABI class: X.Org Video Driver, version 24.1
[   128.478] (II) LoadModule: "fbdev"
[   128.478] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[   128.479] (II) Module fbdev: vendor="X.Org Foundation"
[   128.479] 	compiled for 1.20.0, module version = 0.5.0
[   128.479] 	Module class: X.Org Video Driver
[   128.479] 	ABI class: X.Org Video Driver, version 24.0
[   128.479] (II) LoadModule: "vesa"
[   128.479] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[   128.480] (II) Module vesa: vendor="X.Org Foundation"
[   128.480] 	compiled for 1.20.9, module version = 2.5.0
[   128.480] 	Module class: X.Org Video Driver
[   128.480] 	ABI class: X.Org Video Driver, version 24.1
[   128.480] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   128.480] (II) FBDEV: driver for framebuffer: fbdev
[   128.480] (II) VESA: driver for VESA chipsets: vesa
[   128.480] xf86EnableIOPorts: failed to set IOPL for I/O (Operation not permitted)
[   128.495] (II) modeset(0): using drv /dev/dri/card0
[   128.495] (WW) Falling back to old probe method for fbdev
[   128.495] (II) Loading sub module "fbdevhw"
[   128.495] (II) LoadModule: "fbdevhw"
[   128.495] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[   128.496] (II) Module fbdevhw: vendor="X.Org Foundation"
[   128.496] 	compiled for 1.20.11, module version = 0.0.2
[   128.496] 	ABI class: X.Org Video Driver, version 24.1
[   128.496] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support
[   128.496] (II) modeset(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[   128.496] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[   128.496] (==) modeset(0): RGB weight 888
[   128.496] (==) modeset(0): Default visual is TrueColor
[   128.496] (II) Loading sub module "glamoregl"
[   128.496] (II) LoadModule: "glamoregl"
[   128.496] (II) Loading /usr/lib/xorg/modules/libglamoregl.so
[   128.506] (II) Module glamoregl: vendor="X.Org Foundation"
[   128.506] 	compiled for 1.20.11, module version = 1.0.1
[   128.506] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   128.588] (II) modeset(0): glamor X acceleration enabled on Mesa DRI Intel(R) HD Graphics (ILK)
[   128.588] (II) modeset(0): glamor initialized
[   128.588] (II) modeset(0): Output LVDS-1 has no monitor section
[   128.589] (II) modeset(0): Output VGA-1 has no monitor section
[   128.591] (II) modeset(0): Output HDMI-1 has no monitor section
[   128.591] (II) modeset(0): Output DP-1 has no monitor section
[   128.591] (II) modeset(0): EDID for output LVDS-1
[   128.591] (II) modeset(0): Manufacturer: LEN  Model: 4011  Serial#: 0
[   128.591] (II) modeset(0): Year: 2009  Week: 0
[   128.591] (II) modeset(0): EDID Version: 1.3
[   128.591] (II) modeset(0): Digital Display Input
[   128.591] (II) modeset(0): Max Image Size [cm]: horiz.: 26  vert.: 16
[   128.591] (II) modeset(0): Gamma: 2.20
[   128.591] (II) modeset(0): DPMS capabilities: StandBy Suspend Off
[   128.591] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4 
[   128.591] (II) modeset(0): First detailed timing is preferred mode
[   128.591] (II) modeset(0): redX: 0.575 redY: 0.360   greenX: 0.370 greenY: 0.555
[   128.591] (II) modeset(0): blueX: 0.155 blueY: 0.110   whiteX: 0.313 whiteY: 0.329
[   128.591] (II) modeset(0): Manufacturer's mask: 0
[   128.591] (II) modeset(0): Supported detailed timing:
[   128.591] (II) modeset(0): clock: 68.9 MHz   Image Size:  261 x 163 mm
[   128.591] (II) modeset(0): h_active: 1280  h_sync: 1296  h_sync_end 1344 h_blank_end 1408 h_border: 0
[   128.591] (II) modeset(0): v_active: 800  v_sync: 801  v_sync_end 804 v_blanking: 816 v_border: 0
[   128.591] (II) modeset(0): Supported detailed timing:
[   128.591] (II) modeset(0): clock: 61.0 MHz   Image Size:  261 x 163 mm
[   128.591] (II) modeset(0): h_active: 1280  h_sync: 1328  h_sync_end 1360 h_blank_end 1478 h_border: 0
[   128.591] (II) modeset(0): v_active: 800  v_sync: 803  v_sync_end 809 v_blanking: 825 v_border: 0
[   128.591] (II) modeset(0): Unknown vendor-specific block f
[   128.591] (II) modeset(0):  LTN121AT07L02
[   128.591] (II) modeset(0): EDID (in hex):
[   128.591] (II) modeset(0): 	00ffffffffffff0030ae114000000000
[   128.591] (II) modeset(0): 	00130103801a1078ea5cd5935c5e8e27
[   128.591] (II) modeset(0): 	1c505400000001010101010101010101
[   128.591] (II) modeset(0): 	010101010101ee1a0080502010301030
[   128.591] (II) modeset(0): 	130005a310000019d01700c650201930
[   128.591] (II) modeset(0): 	3020360005a3100000190000000f0081
[   128.591] (II) modeset(0): 	0a3c810a321609004ca34154000000fe
[   128.591] (II) modeset(0): 	004c544e313231415430374c30320038
[   128.592] (II) modeset(0): Printing probed modes for output LVDS-1
[   128.592] (II) modeset(0): Modeline "1280x800"x60.0   68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz eP)
[   128.592] (II) modeset(0): Modeline "1280x800"x120.0  174.25  1280 1380 1516 1752  800 801 804 829 doublescan -hsync +vsync (99.5 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x800"x119.9  134.25  1280 1304 1320 1360  800 801 804 823 doublescan +hsync -vsync (98.7 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x800"x59.8   83.50  1280 1352 1480 1680  800 803 809 831 -hsync +vsync (49.7 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x800"x59.9   71.00  1280 1328 1360 1440  800 803 809 823 +hsync -vsync (49.3 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x800"x50.0   60.96  1280 1328 1360 1478  800 803 809 825 -hsync -vsync (41.2 kHz e)
[   128.592] (II) modeset(0): Modeline "1280x720"x120.0  156.12  1280 1376 1512 1744  720 721 724 746 doublescan -hsync +vsync (89.5 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x720"x120.0  120.75  1280 1304 1320 1360  720 721 724 740 doublescan +hsync -vsync (88.8 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x720"x59.9   74.50  1280 1344 1472 1664  720 723 728 748 -hsync +vsync (44.8 kHz d)
[   128.592] (II) modeset(0): Modeline "1280x720"x59.7   63.75  1280 1328 1360 1440  720 723 728 741 +hsync -vsync (44.3 kHz d)
[   128.592] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[   128.592] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[   128.592] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[   128.592] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[   128.592] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[   128.592] (II) modeset(0): Modeline "1024x576"x119.9   98.50  1024 1092 1200 1376  576 577 580 597 doublescan -hsync +vsync (71.6 kHz d)
[   128.592] (II) modeset(0): Modeline "1024x576"x119.9   78.38  1024 1048 1064 1104  576 577 580 592 doublescan +hsync -vsync (71.0 kHz d)
[   128.592] (II) modeset(0): Modeline "1024x576"x59.9   46.50  1024 1064 1160 1296  576 579 584 599 -hsync +vsync (35.9 kHz d)
[   128.592] (II) modeset(0): Modeline "1024x576"x59.8   42.00  1024 1072 1104 1184  576 579 584 593 +hsync -vsync (35.5 kHz d)
[   128.592] (II) modeset(0): Modeline "960x600"x119.9   96.62  960 1028 1128 1296  600 601 604 622 doublescan -hsync +vsync (74.6 kHz d)
[   128.592] (II) modeset(0): Modeline "960x600"x120.0   77.00  960 984 1000 1040  600 601 604 617 doublescan +hsync -vsync (74.0 kHz d)
[   128.592] (II) modeset(0): Modeline "960x540"x119.9   86.50  960 1024 1124 1288  540 541 544 560 doublescan -hsync +vsync (67.2 kHz d)
[   128.592] (II) modeset(0): Modeline "960x540"x120.0   69.25  960 984 1000 1040  540 541 544 555 doublescan +hsync -vsync (66.6 kHz d)
[   128.592] (II) modeset(0): Modeline "960x540"x59.6   40.75  960 992 1088 1216  540 543 548 562 -hsync +vsync (33.5 kHz d)
[   128.592] (II) modeset(0): Modeline "960x540"x59.8   37.25  960 1008 1040 1120  540 543 548 556 +hsync -vsync (33.3 kHz d)
[   128.592] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[   128.592] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[   128.592] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   128.592] (II) modeset(0): Modeline "840x525"x120.0   73.12  840 892 980 1120  525 526 529 544 doublescan -hsync +vsync (65.3 kHz d)
[   128.592] (II) modeset(0): Modeline "840x525"x119.8   59.50  840 864 880 920  525 526 529 540 doublescan +hsync -vsync (64.7 kHz d)
[   128.592] (II) modeset(0): Modeline "864x486"x59.9   32.50  864 888 968 1072  486 489 494 506 -hsync +vsync (30.3 kHz d)
[   128.592] (II) modeset(0): Modeline "864x486"x59.6   30.50  864 912 944 1024  486 489 494 500 +hsync -vsync (29.8 kHz d)
[   128.592] (II) modeset(0): Modeline "800x512"x120.3   51.56  800 800 828 832  512 512 514 515 doublescan +hsync +vsync (62.0 kHz d)
[   128.592] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[   128.592] (II) modeset(0): Modeline "800x450"x119.9   59.12  800 848 928 1056  450 451 454 467 doublescan -hsync +vsync (56.0 kHz d)
[   128.592] (II) modeset(0): Modeline "800x450"x119.6   48.75  800 824 840 880  450 451 454 463 doublescan +hsync -vsync (55.4 kHz d)
[   128.592] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[   128.592] (II) modeset(0): Modeline "720x450"x119.8   53.25  720 760 836 952  450 451 454 467 doublescan -hsync +vsync (55.9 kHz d)
[   128.592] (II) modeset(0): Modeline "700x450"x119.9   51.75  700 740 812 924  450 451 456 467 doublescan -hsync +vsync (56.0 kHz d)
[   128.592] (II) modeset(0): Modeline "700x450"x119.8   43.25  700 724 740 780  450 451 456 463 doublescan +hsync -vsync (55.4 kHz d)
[   128.592] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[   128.592] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[   128.592] (II) modeset(0): Modeline "720x405"x59.5   22.50  720 744 808 896  405 408 413 422 -hsync +vsync (25.1 kHz d)
[   128.592] (II) modeset(0): Modeline "720x405"x59.0   21.75  720 768 800 880  405 408 413 419 +hsync -vsync (24.7 kHz d)
[   128.592] (II) modeset(0): Modeline "684x384"x119.8   42.62  684 720 788 892  384 385 390 399 doublescan -hsync +vsync (47.8 kHz d)
[   128.592] (II) modeset(0): Modeline "684x384"x119.7   36.12  684 708 724 764  384 385 390 395 doublescan +hsync -vsync (47.3 kHz d)
[   128.592] (II) modeset(0): Modeline "680x384"x119.6   42.38  680 716 784 888  384 385 390 399 doublescan -hsync +vsync (47.7 kHz d)
[   128.592] (II) modeset(0): Modeline "680x384"x119.9   36.00  680 704 720 760  384 385 390 395 doublescan +hsync -vsync (47.4 kHz d)
[   128.592] (II) modeset(0): Modeline "640x400"x119.8   41.75  640 676 740 840  400 401 404 415 doublescan -hsync +vsync (49.7 kHz d)
[   128.592] (II) modeset(0): Modeline "640x400"x120.0   35.50  640 664 680 720  400 401 404 411 doublescan +hsync -vsync (49.3 kHz d)
[   128.592] (II) modeset(0): Modeline "576x432"x120.1   40.81  576 608 668 760  432 432 434 447 doublescan -hsync +vsync (53.7 kHz d)
[   128.592] (II) modeset(0): Modeline "640x360"x119.7   37.25  640 672 736 832  360 361 364 374 doublescan -hsync +vsync (44.8 kHz d)
[   128.592] (II) modeset(0): Modeline "640x360"x119.7   31.88  640 664 680 720  360 361 364 370 doublescan +hsync -vsync (44.3 kHz d)
[   128.592] (II) modeset(0): Modeline "640x360"x59.8   18.00  640 664 720 800  360 363 368 376 -hsync +vsync (22.5 kHz d)
[   128.592] (II) modeset(0): Modeline "640x360"x59.3   17.75  640 688 720 800  360 363 368 374 +hsync -vsync (22.2 kHz d)
[   128.592] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[   128.592] (II) modeset(0): Modeline "512x288"x120.0   23.25  512 532 580 648  288 289 292 299 doublescan -hsync +vsync (35.9 kHz d)
[   128.592] (II) modeset(0): Modeline "512x288"x119.8   21.00  512 536 552 592  288 289 292 296 doublescan +hsync -vsync (35.5 kHz d)
[   128.592] (II) modeset(0): Modeline "480x270"x119.3   20.38  480 496 544 608  270 271 274 281 doublescan -hsync +vsync (33.5 kHz d)
[   128.592] (II) modeset(0): Modeline "480x270"x119.6   18.62  480 504 520 560  270 271 274 278 doublescan +hsync -vsync (33.3 kHz d)
[   128.592] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[   128.592] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[   128.592] (II) modeset(0): Modeline "432x243"x119.8   16.25  432 444 484 536  243 244 247 253 doublescan -hsync +vsync (30.3 kHz d)
[   128.592] (II) modeset(0): Modeline "432x243"x119.1   15.25  432 456 472 512  243 244 247 250 doublescan +hsync -vsync (29.8 kHz d)
[   128.592] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[   128.592] (II) modeset(0): Modeline "360x202"x119.0   11.25  360 372 404 448  202 204 206 211 doublescan -hsync +vsync (25.1 kHz d)
[   128.592] (II) modeset(0): Modeline "360x202"x118.3   10.88  360 384 400 440  202 204 206 209 doublescan +hsync -vsync (24.7 kHz d)
[   128.592] (II) modeset(0): Modeline "320x180"x119.7    9.00  320 332 360 400  180 181 184 188 doublescan -hsync +vsync (22.5 kHz d)
[   128.592] (II) modeset(0): Modeline "320x180"x118.6    8.88  320 344 360 400  180 181 184 187 doublescan +hsync -vsync (22.2 kHz d)
[   128.593] (II) modeset(0): EDID for output VGA-1
[   128.595] (II) modeset(0): EDID for output HDMI-1
[   128.595] (II) modeset(0): EDID for output DP-1
[   128.595] (II) modeset(0): Output LVDS-1 connected
[   128.595] (II) modeset(0): Output VGA-1 disconnected
[   128.595] (II) modeset(0): Output HDMI-1 disconnected
[   128.595] (II) modeset(0): Output DP-1 disconnected
[   128.595] (II) modeset(0): Using exact sizes for initial modes
[   128.595] (II) modeset(0): Output LVDS-1 using initial mode 1280x800 +0+0
[   128.595] (==) modeset(0): Using gamma correction (1.0, 1.0, 1.0)
[   128.595] (==) modeset(0): DPI set to (96, 96)
[   128.595] (II) Loading sub module "fb"
[   128.595] (II) LoadModule: "fb"
[   128.595] (II) Loading /usr/lib/xorg/modules/libfb.so
[   128.596] (II) Module fb: vendor="X.Org Foundation"
[   128.596] 	compiled for 1.20.11, module version = 1.0.0
[   128.596] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   128.596] (II) UnloadModule: "fbdev"
[   128.596] (II) Unloading fbdev
[   128.596] (II) UnloadSubModule: "fbdevhw"
[   128.596] (II) Unloading fbdevhw
[   128.596] (II) UnloadModule: "vesa"
[   128.596] (II) Unloading vesa
[   128.625] (==) modeset(0): Backing store enabled
[   128.625] (==) modeset(0): Silken mouse enabled
[   128.645] (II) modeset(0): Initializing kms color map for depth 24, 8 bpc.
[   128.645] (==) modeset(0): DPMS enabled
[   128.645] (II) modeset(0): [DRI2] Setup complete
[   128.645] (II) modeset(0): [DRI2]   DRI driver: i965
[   128.645] (II) modeset(0): [DRI2]   VDPAU driver: va_gl
[   128.645] (II) Initializing extension Generic Event Extension
[   128.645] (II) Initializing extension SHAPE
[   128.646] (II) Initializing extension MIT-SHM
[   128.646] (II) Initializing extension XInputExtension
[   128.646] (II) Initializing extension XTEST
[   128.646] (II) Initializing extension BIG-REQUESTS
[   128.647] (II) Initializing extension SYNC
[   128.647] (II) Initializing extension XKEYBOARD
[   128.647] (II) Initializing extension XC-MISC
[   128.647] (II) Initializing extension SECURITY
[   128.647] (II) Initializing extension XFIXES
[   128.647] (II) Initializing extension RENDER
[   128.647] (II) Initializing extension RANDR
[   128.647] (II) Initializing extension COMPOSITE
[   128.648] (II) Initializing extension DAMAGE
[   128.648] (II) Initializing extension MIT-SCREEN-SAVER
[   128.648] (II) Initializing extension DOUBLE-BUFFER
[   128.648] (II) Initializing extension RECORD
[   128.648] (II) Initializing extension DPMS
[   128.648] (II) Initializing extension Present
[   128.648] (II) Initializing extension DRI3
[   128.648] (II) Initializing extension X-Resource
[   128.648] (II) Initializing extension XVideo
[   128.648] (II) Initializing extension XVideo-MotionCompensation
[   128.649] (II) Initializing extension SELinux
[   128.649] (II) SELinux: Disabled on system
[   128.649] (II) Initializing extension GLX
[   128.656] (II) AIGLX: Loaded and initialized i965
[   128.656] (II) GLX: Initialized DRI2 GL provider for screen 0
[   128.656] (II) Initializing extension XFree86-VidModeExtension
[   128.657] (II) Initializing extension XFree86-DGA
[   128.657] (II) Initializing extension XFree86-DRI
[   128.657] (II) Initializing extension DRI2
[   128.670] (II) modeset(0): Damage tracking initialized
[   128.670] (II) modeset(0): Setting screen physical size to 338 x 211
[   128.722] (II) config/udev: Adding input device Power Button (/dev/input/event5)
[   128.723] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   128.723] (**) Power Button: Applying InputClass "libinput keyboard catchall"
[   128.723] (II) LoadModule: "libinput"
[   128.723] (II) Loading /usr/lib/xorg/modules/input/libinput_drv.so
[   128.727] (II) Module libinput: vendor="X.Org Foundation"
[   128.727] 	compiled for 1.20.8, module version = 0.30.0
[   128.727] 	Module class: X.Org XInput Driver
[   128.727] 	ABI class: X.Org XInput driver, version 24.1
[   128.727] (II) Using input driver 'libinput' for 'Power Button'
[   128.727] (**) Power Button: always reports core events
[   128.727] (**) Option "Device" "/dev/input/event5"
[   128.728] (**) Option "_source" "server/udev"
[   128.733] (EE) xf86OpenSerial: Cannot open device /dev/input/event5
	Permission denied.
[   128.733] (II) event5: opening input device '/dev/input/event5' failed (Permission denied).
[   128.733] (II) event5  - failed to create input device '/dev/input/event5'.
[   128.734] (EE) libinput: Power Button: Failed to create a device for /dev/input/event5
[   128.734] (EE) PreInit returned 2 for "Power Button"
[   128.734] (II) UnloadModule: "libinput"
[   128.734] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[   128.734] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   128.734] (**) Video Bus: Applying InputClass "libinput keyboard catchall"
[   128.734] (II) Using input driver 'libinput' for 'Video Bus'
[   128.734] (**) Video Bus: always reports core events
[   128.734] (**) Option "Device" "/dev/input/event9"
[   128.734] (**) Option "_source" "server/udev"
[   128.735] (EE) xf86OpenSerial: Cannot open device /dev/input/event9
	Permission denied.
[   128.735] (II) event9: opening input device '/dev/input/event9' failed (Permission denied).
[   128.735] (II) event9  - failed to create input device '/dev/input/event9'.
[   128.735] (EE) libinput: Video Bus: Failed to create a device for /dev/input/event9
[   128.735] (EE) PreInit returned 2 for "Video Bus"
[   128.735] (II) UnloadModule: "libinput"
[   128.735] (II) config/udev: Adding input device Lid Switch (/dev/input/event3)
[   128.735] (II) No input driver specified, ignoring this device.
[   128.735] (II) This device may have been added with another device file.
[   128.735] (II) config/udev: Adding input device Sleep Button (/dev/input/event4)
[   128.735] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[   128.735] (**) Sleep Button: Applying InputClass "libinput keyboard catchall"
[   128.735] (II) Using input driver 'libinput' for 'Sleep Button'
[   128.735] (**) Sleep Button: always reports core events
[   128.735] (**) Option "Device" "/dev/input/event4"
[   128.735] (**) Option "_source" "server/udev"
[   128.736] (EE) xf86OpenSerial: Cannot open device /dev/input/event4
	Permission denied.
[   128.736] (II) event4: opening input device '/dev/input/event4' failed (Permission denied).
[   128.736] (II) event4  - failed to create input device '/dev/input/event4'.
[   128.736] (EE) libinput: Sleep Button: Failed to create a device for /dev/input/event4
[   128.736] (EE) PreInit returned 2 for "Sleep Button"
[   128.736] (II) UnloadModule: "libinput"
[   128.737] (II) config/udev: Adding input device Integrated Camera: Integrated C (/dev/input/event7)
[   128.737] (**) Integrated Camera: Integrated C: Applying InputClass "evdev keyboard catchall"
[   128.737] (**) Integrated Camera: Integrated C: Applying InputClass "libinput keyboard catchall"
[   128.737] (II) Using input driver 'libinput' for 'Integrated Camera: Integrated C'
[   128.737] (**) Integrated Camera: Integrated C: always reports core events
[   128.737] (**) Option "Device" "/dev/input/event7"
[   128.737] (**) Option "_source" "server/udev"
[   128.738] (EE) xf86OpenSerial: Cannot open device /dev/input/event7
	Permission denied.
[   128.738] (II) event7: opening input device '/dev/input/event7' failed (Permission denied).
[   128.738] (II) event7  - failed to create input device '/dev/input/event7'.
[   128.738] (EE) libinput: Integrated Camera: Integrated C: Failed to create a device for /dev/input/event7
[   128.738] (EE) PreInit returned 2 for "Integrated Camera: Integrated C"
[   128.738] (II) UnloadModule: "libinput"
[   128.738] (II) config/udev: Adding input device HDA Intel MID Mic (/dev/input/event10)
[   128.738] (II) No input driver specified, ignoring this device.
[   128.738] (II) This device may have been added with another device file.
[   128.738] (II) config/udev: Adding input device HDA Intel MID Dock Mic (/dev/input/event11)
[   128.738] (II) No input driver specified, ignoring this device.
[   128.738] (II) This device may have been added with another device file.
[   128.738] (II) config/udev: Adding input device HDA Intel MID Dock Headphone (/dev/input/event12)
[   128.738] (II) No input driver specified, ignoring this device.
[   128.738] (II) This device may have been added with another device file.
[   128.738] (II) config/udev: Adding input device HDA Intel MID Headphone (/dev/input/event13)
[   128.738] (II) No input driver specified, ignoring this device.
[   128.738] (II) This device may have been added with another device file.
[   128.739] (II) config/udev: Adding input device HDA Intel MID HDMI/DP,pcm=3 (/dev/input/event14)
[   128.739] (II) No input driver specified, ignoring this device.
[   128.739] (II) This device may have been added with another device file.
[   128.739] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[   128.739] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   128.739] (**) AT Translated Set 2 keyboard: Applying InputClass "libinput keyboard catchall"
[   128.739] (II) Using input driver 'libinput' for 'AT Translated Set 2 keyboard'
[   128.739] (**) AT Translated Set 2 keyboard: always reports core events
[   128.739] (**) Option "Device" "/dev/input/event0"
[   128.739] (**) Option "_source" "server/udev"
[   128.740] (EE) xf86OpenSerial: Cannot open device /dev/input/event0
	Permission denied.
[   128.740] (II) event0: opening input device '/dev/input/event0' failed (Permission denied).
[   128.740] (II) event0  - failed to create input device '/dev/input/event0'.
[   128.740] (EE) libinput: AT Translated Set 2 keyboard: Failed to create a device for /dev/input/event0
[   128.740] (EE) PreInit returned 2 for "AT Translated Set 2 keyboard"
[   128.740] (II) UnloadModule: "libinput"
[   128.740] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event1)
[   128.740] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[   128.740] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "libinput touchpad catchall"
[   128.740] (II) Using input driver 'libinput' for 'SynPS/2 Synaptics TouchPad'
[   128.740] (**) SynPS/2 Synaptics TouchPad: always reports core events
[   128.740] (**) Option "Device" "/dev/input/event1"
[   128.740] (**) Option "_source" "server/udev"
[   128.741] (EE) xf86OpenSerial: Cannot open device /dev/input/event1
	Permission denied.
[   128.741] (II) event1: opening input device '/dev/input/event1' failed (Permission denied).
[   128.741] (II) event1  - failed to create input device '/dev/input/event1'.
[   128.741] (EE) libinput: SynPS/2 Synaptics TouchPad: Failed to create a device for /dev/input/event1
[   128.741] (EE) PreInit returned 2 for "SynPS/2 Synaptics TouchPad"
[   128.741] (II) UnloadModule: "libinput"
[   128.741] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[   128.741] (II) No input driver specified, ignoring this device.
[   128.741] (II) This device may have been added with another device file.
[   128.741] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event2)
[   128.741] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
[   128.741] (**) TPPS/2 IBM TrackPoint: Applying InputClass "libinput pointer catchall"
[   128.741] (II) Using input driver 'libinput' for 'TPPS/2 IBM TrackPoint'
[   128.741] (**) TPPS/2 IBM TrackPoint: always reports core events
[   128.741] (**) Option "Device" "/dev/input/event2"
[   128.741] (**) Option "_source" "server/udev"
[   128.742] (EE) xf86OpenSerial: Cannot open device /dev/input/event2
	Permission denied.
[   128.742] (II) event2: opening input device '/dev/input/event2' failed (Permission denied).
[   128.742] (II) event2  - failed to create input device '/dev/input/event2'.
[   128.742] (EE) libinput: TPPS/2 IBM TrackPoint: Failed to create a device for /dev/input/event2
[   128.742] (EE) PreInit returned 2 for "TPPS/2 IBM TrackPoint"
[   128.742] (II) UnloadModule: "libinput"
[   128.743] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse1)
[   128.743] (II) No input driver specified, ignoring this device.
[   128.743] (II) This device may have been added with another device file.
[   128.743] (II) config/udev: Adding input device PC Speaker (/dev/input/event8)
[   128.743] (II) No input driver specified, ignoring this device.
[   128.743] (II) This device may have been added with another device file.
[   128.743] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event6)
[   128.743] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
[   128.743] (**) ThinkPad Extra Buttons: Applying InputClass "libinput keyboard catchall"
[   128.743] (II) Using input driver 'libinput' for 'ThinkPad Extra Buttons'
[   128.743] (**) ThinkPad Extra Buttons: always reports core events
[   128.743] (**) Option "Device" "/dev/input/event6"
[   128.743] (**) Option "_source" "server/udev"
[   128.744] (EE) xf86OpenSerial: Cannot open device /dev/input/event6
	Permission denied.
[   128.744] (II) event6: opening input device '/dev/input/event6' failed (Permission denied).
[   128.744] (II) event6  - failed to create input device '/dev/input/event6'.
[   128.744] (EE) libinput: ThinkPad Extra Buttons: Failed to create a device for /dev/input/event6
[   128.744] (EE) PreInit returned 2 for "ThinkPad Extra Buttons"
[   128.744] (II) UnloadModule: "libinput"
[   128.969] (II) modeset(0): EDID vendor "LEN", prod id 16401
[   128.970] (II) modeset(0): Printing DDC gathered Modelines:
[   128.970] (II) modeset(0): Modeline "1280x800"x0.0   68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz eP)
[   128.970] (II) modeset(0): Modeline "1280x800"x0.0   60.96  1280 1328 1360 1478  800 803 809 825 -hsync -vsync (41.2 kHz e)
[   128.977] (II) modeset(0): EDID vendor "LEN", prod id 16401
[   128.977] (II) modeset(0): Printing DDC gathered Modelines:
[   128.977] (II) modeset(0): Modeline "1280x800"x0.0   68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz eP)
[   128.977] (II) modeset(0): Modeline "1280x800"x0.0   60.96  1280 1328 1360 1478  800 803 809 825 -hsync -vsync (41.2 kHz e)
[   128.985] (II) modeset(0): EDID vendor "LEN", prod id 16401
[   128.986] (II) modeset(0): Printing DDC gathered Modelines:
[   128.986] (II) modeset(0): Modeline "1280x800"x0.0   68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz eP)
[   128.986] (II) modeset(0): Modeline "1280x800"x0.0   60.96  1280 1328 1360 1478  800 803 809 825 -hsync -vsync (41.2 kHz e)
[   129.107] (II) modeset(0): EDID vendor "LEN", prod id 16401
[   129.107] (II) modeset(0): Printing DDC gathered Modelines:
[   129.107] (II) modeset(0): Modeline "1280x800"x0.0   68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz eP)
[   129.107] (II) modeset(0): Modeline "1280x800"x0.0   60.96  1280 1328 1360 1478  800 803 809 825 -hsync -vsync (41.2 kHz e)
[   129.199] (II) modeset(0): EDID vendor "LEN", prod id 16401
[   129.199] (II) modeset(0): Printing DDC gathered Modelines:
[   129.199] (II) modeset(0): Modeline "1280x800"x0.0   68.94  1280 1296 1344 1408  800 801 804 816 -hsync -vsync (49.0 kHz eP)
[   129.199] (II) modeset(0): Modeline "1280x800"x0.0   60.96  1280 1328 1360 1478  800 803 809 825 -hsync -vsync (41.2 kHz e)
[   223.282] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[   223.282] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[   223.282] (WW) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[   223.282] (II) Server terminated successfully (0). Closing log file.

3.1415P265E589T932E846R64338

Offline

Board footer