You are not logged in.

#1 2015-09-25 14:01:15

devwurm
Member
Registered: 2015-09-25
Posts: 12

Installing GNOME on New Arch installation causes GNOME error Window

Hi smile

I'm a completely new user of Arch Linux. I installed the system nearly like described by the German beginners guide. The most important things according this problem:
Bootmanager: GRUB
Installed

nvidia

, otherwise booting fails, because my GPU is incompatible with nouveau
Installed

intel-ucode

Installed

xorg-server xorg-xinit xorg-utils xorg-server-utils

Installed

gnome gnome-extra

Added GNOME to systemd with

systemctl enable gdm

When booting everything is OK, until the boot process reaches the target

Graphial user interface

. Then the screen gets black and after a few seconds the GNOME error screen appears saying:

Oh no! Something has gone wrong. A problem has occurred and the system can't recover. Please log out and try again.

When clicking on the Log out button, displayed under this massage, the screen gets dark again and the error screen reappears after a few seconds.
The system is still available through the tty consoles

I also tried to enable GNOME with the

~/.xinitrc

and

startx

but the same error occurred.

I also tried to install Lxde for figuring out what the failure could be. In this case the boot process stops at the target

Graphial user interface

I searched for 2h in different forums, but nothing I found matched my problem.

Please help me, I really want to use Arch and learn about my system!
If you need more info just ask.

Thank you
DevWurm

Offline

#2 2015-09-25 14:09:54

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,564
Website

Re: Installing GNOME on New Arch installation causes GNOME error Window

Welcome to the forums - and thanks for taking the time to put together a detailed and organized post.

I think the following is the right idea as gnome seems disturbingly hard to debug (those "oops" error messages are useless):

devwurm wrote:

I also tried to install Lxde for figuring out what the failure could be.

But perhaps start even simpler.  I suspect the problem may be in configuring the graphic driver(s).  Open source drivers tend to work "out of the box" but the nvidia proprietary driver - while it does have performance benefits - can be tricker to get configured.

So to start simpler, I'd recommend following the Xorg page of the wiki to test TWM ... actually, unless I'm missing it that section seems to have been removed from the Xorg page, see here instead.  This is a very simple WM only, so we can identify whether the problem is with the core functions of X, or if there is something more complex getting in the way.

To do this test, first please *disable* GDM and any other display manager serverices (LXDM) and boot to a tty, then after installing twm and making an ~/.xinitrc as advised in the twm page, just use `startx` from the tty.  This will also allow you to see useful error messages if something goes wrong.

In the mean time, could you also post the output of the following command:

lspci | grep -e VGA -e 3D

I'm wondering whether you have "pure" nvidia, or if it is a hybrid setup.


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#3 2015-09-25 14:25:08

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

Thank you Trilby for your fast help smile

I disabled GDM and now I'm trying your proposal of installing TWM.

Here is the output of

lspci | grep -e VGA -e 3D
-------------------------------
00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
01:00.0 3D controller: NVIDIA Corporation GM107M [GeForce GTX 860M] (rev a2)

It's a hybrid system of an Intel and a nvidia GPU. The status LED on my notebook shows, that the nvidia GPU is in  use.

Offline

#4 2015-09-25 14:37:46

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

Now I installed TWM like described on the page you linked.
After calling

startx

the screen goes black and stays black.
I also installed the

xf86-intel-video

package, but there is no difference.

Last edited by devwurm (2015-09-25 14:41:40)

Offline

#5 2015-09-25 14:40:18

Trilby
Inspector Parrot
Registered: 2011-11-29
Posts: 29,564
Website

Re: Installing GNOME on New Arch installation causes GNOME error Window

Odd - that's definitely not one of the likely outcomes.

But as this is a hybrid graphics setup, I think you need to follow This page.  Unforunately I have absolutely no experience with hyrbid graphics, but I believe you do need to configure both drivers, or disable one or the other card in BIOS (I'm not sure the integrated intel card can be disabled, I know the NVIDIA card can, but that's probably not what you want).


"UNIX is simple and coherent..." - Dennis Ritchie, "GNU's Not UNIX" -  Richard Stallman

Offline

#6 2015-09-27 08:04:51

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

I figured out, why GNOME crashed:
The X-Server didn't use the nvidia drivers (correctly).
When explicitly setting the nvidia driver in the xorg.conf it boots to the GNOME login manager.
How to configure the X-Server:

/etc/X11/xorg.conf      or      /etc/X11/xorg.conf.d/20-nvidia.conf
-----------------------------------------
Section "Device"
            Identifier         "NVIDIA Card"
            Driver              "nvidia"      #this is the essential line
            Vendor            "NVIDIA Corporation"
            BusID              "PCI:01:00.0"      #you can explicitly set the correct GPU via its Bus ID if you  think the X-Server doesn't mal this configuration to the correct device
EndSection

or you create the xorg.conf, matching your system, by creating it automatically via the nvidia driver tool

nvidia-xconfig


Now it shows me an graphical login menue, but when I try to login it leads me back to the login again. In the settings of the login menue I can set the used Desktop environment:
When using GNOME, GNOME Classic or LXDE it fails.
When using GNOME under Wayland it works and the GNOME Desktop starts.

Has anybody an idea why the regular GNOME fails? I don't want to use GNOME under Wayland yet.

Last edited by devwurm (2015-09-27 08:05:27)

Offline

#7 2015-09-27 19:23:00

Atsuri
Member
Registered: 2015-09-27
Posts: 3

Re: Installing GNOME on New Arch installation causes GNOME error Window

As far as I know, Wayland is still under active development and certain things are bound to fail. As Trilby wrote, the error messages are completely uninformative.

When you get to the GDM login screen and continue to any of the available desktop environments, by 'it fails' do you mean that the screen turns black and it stays that way?

Could you also provide us with the /var/log/Xorg.0.log file content? That would be the most informative in our case smile.

Based on the current information I can tell that you need bumblebee for switching between the integrated Intel GPU and the discreet nVidia GPU. The nVidia card cannot access the display directly, hence the desktop fails to load. I noticed that login managers often run on a framebuffer or in general do not require GLX libraries, hence that's as far as we can go right now.

Also as Trilby suggested, I would definitely start all of the troubleshooting from the complete ground-up - a tiling window manager (TWM) or even X window server with a plain terminal (lxterminal, xterm, etc.). GNOME3 is troublesome and adding GDM to it only makes things orders of magnitude more complex sad.

Offline

#8 2015-09-28 15:32:14

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

So it got a bit weird (when deleting all Xorg config files I suddenly was able to login in the regular GNOME, but of course no input devices worked anymore etc. [in this case the GPU was controlled by nouveau]) so I cleaned up a bit:
I removed everything regarding GNOME and LXDE. Now I only have TWM installed.
Because TWM doesn't support a systemd service I start it via ~/.xinitrc.

~/.xinitrc
---------------
exec twm

My xorg.conf is generated by

nvidia-xconfig

.

/etc/X11/xorg.conf
---------------------------------
# nvidia-xconfig: X configuration file generated by nvidia-xconfig
# nvidia-xconfig:  version 352.41  (buildmeister@swio-display-x64-rhel04-11)  Sat Aug 22 00:01:10 PDT 2015


Section "ServerLayout"
    Identifier     "Default Layout"
    Screen         "Default Screen" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "keyboard"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "NVIDIA GPU"
    Driver         "nvidia"
EndSection

Section "Screen"
    Identifier     "Default Screen"
    Device         "NVIDIA GPU"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "nvidia-auto-select"
    EndSubSection
EndSection

When starting the X-server this is the output:

startx
----------------


X.Org X Server 1.17.2
Release Date: 2015-06-16
X Protocol Version 11, Revision 0
Build Operating System: Linux 4.0.4-2-ARCH x86_64
Current Operating System: Linux Workbook 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015 x86_64
Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=69480d8f-cf35-4658-a307-6bdbb5dc6887 rw cryptdevice=/dev/sdb4:cryptroot root=/dev/mapper/cryptroot quiet
Build Date: 17 July 2015  05:38:19PM

Current version of pixman: 0.32.6
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: "/home/devwurm/.local/share/xorg/Xorg.0.log", Time: Mon Sep 28 17:02:32 2015
(==) Using config file: "/etc/X11/xorg.conf"
(==) Using config directory: "/etc/X11/xorg.conf.d"
(==) Using system config directory "/usr/share/X11/xorg.conf.d"
(EE)
Fatal server error:
(EE) xf86OpenConsole: Cannot open /dev/tty0 (No such file or directory)
(EE)
(EE)
Please consult the The X.Org Foundation support
     at http://wiki.x.org
for help.
(EE) Please also check the log file at "/home/devwurm/.local/share/xorg/Xorg.0.log" for additional information.
(EE)
(EE) Server terminated with error (1). Closing log file.
xinit: giving up
xinit: unable to connect to X server: Connection refused
xinit: server error

And the log file contains this:

~/.local/share/xorg/Xorg.0.log
------------------------------------------------
[  1176.038]
X.Org X Server 1.17.2
Release Date: 2015-06-16
[  1176.040] X Protocol Version 11, Revision 0
[  1176.040] Build Operating System: Linux 4.0.4-2-ARCH x86_64
[  1176.041] Current Operating System: Linux Workbook 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015 x86_64
[  1176.041] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=69480d8f-cf35-4658-a307-6bdbb5dc6887 rw cryptdevice=/dev/sdb4:cryptroot root=/dev/mapper/cryptroot quiet
[  1176.043] Build Date: 17 July 2015  05:38:19PM
[  1176.044] 
[  1176.045] Current version of pixman: 0.32.6
[  1176.047]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[  1176.047] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1176.052] (==) Log file: "/home/devwurm/.local/share/xorg/Xorg.0.log", Time: Mon Sep 28 17:00:27 2015
[  1176.053] (==) Using config file: "/etc/X11/xorg.conf"
[  1176.054] (==) Using config directory: "/etc/X11/xorg.conf.d"
[  1176.055] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1176.056] (==) ServerLayout "Default Layout"
[  1176.056] (**) |-->Screen "Default Screen" (0)
[  1176.056] (**) |   |-->Monitor "Monitor0"
[  1176.056] (**) |   |-->Device "NVIDIA GPU"
[  1176.056] (**) |-->Input Device "Keyboard0"
[  1176.056] (**) |-->Input Device "Mouse0"
[  1176.056] (==) Automatically adding devices
[  1176.056] (==) Automatically enabling devices
[  1176.056] (==) Automatically adding GPU devices
[  1176.056] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[  1176.056]     Entry deleted from font path.
[  1176.056]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[  1176.056] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[  1176.056]     Entry deleted from font path.
[  1176.056]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[  1176.056] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
[  1176.056] (==) ModulePath set to "/usr/lib/xorg/modules"
[  1176.056] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[  1176.056] (WW) Disabling Keyboard0
[  1176.056] (WW) Disabling Mouse0
[  1176.056] (II) Loader magic: 0x817d60
[  1176.056] (II) Module ABI versions:
[  1176.056]     X.Org ANSI C Emulation: 0.4
[  1176.056]     X.Org Video Driver: 19.0
[  1176.056]     X.Org XInput driver : 21.1
[  1176.056]     X.Org Server Extension : 9.0
[  1176.061] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1
[  1176.061] (II) xfree86: Adding drm device (/dev/dri/card0)
[  1176.062] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0
[  1176.065] (--) PCI:*(0:0:2:0) 8086:0416:1462:1107 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[  1176.065] (--) PCI: (0:1:0:0) 10de:1392:1462:1107 rev 162, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[  1176.065] (II) Open ACPI successful (/var/run/acpid.socket)
[  1176.065] (II) LoadModule: "glx"
[  1176.065] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[  1176.067] (II) Module glx: vendor="X.Org Foundation"
[  1176.067]     compiled for 1.17.2, module version = 1.0.0
[  1176.067]     ABI class: X.Org Server Extension, version 9.0
[  1176.067] (==) AIGLX enabled
[  1176.067] (II) LoadModule: "nvidia"
[  1176.067] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[  1176.067] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1176.067]     compiled for 4.0.2, module version = 1.0.0
[  1176.067]     Module class: X.Org Video Driver
[  1176.067] (II) NVIDIA dlloader X Driver  352.41  Fri Aug 21 22:14:01 PDT 2015
[  1176.067] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1176.068] (EE)
Fatal server error:
[  1176.068] (EE) xf86OpenConsole: Cannot open /dev/tty0 (No such file or directory)
[  1176.068] (EE)
[  1176.068] (EE)
Please consult the The X.Org Foundation support
     at http://wiki.x.org
for help.
[  1176.068] (EE) Please also check the log file at "/home/devwurm/.local/share/xorg/Xorg.0.log" for additional information.
[  1176.068] (EE)

And when checking the driver status with

lspci -k

it shows me, that my NVIDIA GPU is controlled by nvidia and nouveau.

With 'it fails' in this case I mean, that the screen gets black for a second and then the login screen reappears.

Thank you guys for your help yet! smile

Last edited by devwurm (2015-09-28 17:48:35)

Offline

#9 2015-09-30 19:44:44

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

Hey smile

I tried a bit in the last days, especially eith the help of the NVIDIA Optimus Wiki Page.
It seems like Atsuri wrote:
When I use the NVIDIA Crad as the only configured device it is not able to reach the monitor, because it hasn't an direct connection.
When configuring both cards and setting the NVIDIA card as default the login doesn't stuck directly, but it moves to a black screen where is stucks.
When setting the Intel card as default everything works perfectly.

So here are my current config and log files:

/etc/X11/xorg.conf
--------------------------
Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection
Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration" "Yes"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "none"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

/var/log/Xorg.0.log
---------------------------
[   140.165]
X.Org X Server 1.17.2
Release Date: 2015-06-16
[   140.165] X Protocol Version 11, Revision 0
[   140.165] Build Operating System: Linux 4.0.4-2-ARCH x86_64
[   140.165] Current Operating System: Linux Workbook 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015 x86_64
[   140.165] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=69480d8f-cf35-4658-a307-6bdbb5dc6887 rw cryptdevice=/dev/sdb4:cryptroot root=/dev/mapper/cryptroot quiet
[   140.165] Build Date: 17 July 2015  05:38:19PM
[   140.165] 
[   140.165] Current version of pixman: 0.32.6
[   140.165]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[   140.165] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   140.165] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Sep 30 11:01:07 2015
[   140.165] (==) Using config file: "/etc/X11/xorg.conf"
[   140.165] (==) Using config directory: "/etc/X11/xorg.conf.d"
[   140.165] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   140.165] (==) ServerLayout "layout"
[   140.165] (**) |-->Screen "nvidia" (0)
[   140.165] (**) |   |-->Monitor "<default monitor>"
[   140.166] (**) |   |-->Device "nvidia"
[   140.166] (==) No monitor specified for screen "nvidia".
    Using a default monitor configuration.
[   140.166] (**) |-->Inactive Device "intel"
[   140.166] (==) Automatically adding devices
[   140.166] (==) Automatically enabling devices
[   140.166] (==) Automatically adding GPU devices
[   140.166] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   140.166]     Entry deleted from font path.
[   140.166]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   140.166] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   140.166]     Entry deleted from font path.
[   140.166]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   140.166] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
[   140.166] (==) ModulePath set to "/usr/lib/xorg/modules"
[   140.166] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
[   140.166] (II) Loader magic: 0x817d60
[   140.166] (II) Module ABI versions:
[   140.166]     X.Org ANSI C Emulation: 0.4
[   140.166]     X.Org Video Driver: 19.0
[   140.166]     X.Org XInput driver : 21.1
[   140.166]     X.Org Server Extension : 9.0
[   140.168] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c4
[   140.168] (II) xfree86: Adding drm device (/dev/dri/card1)
[   140.168] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 8 paused 0
[   140.169] (II) xfree86: Adding drm device (/dev/dri/card0)
[   140.169] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 9 paused 0
[   140.171] (--) PCI:*(0:0:2:0) 8086:0416:1462:1107 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[   140.171] (--) PCI: (0:1:0:0) 10de:1392:1462:1107 rev 162, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[   140.171] (II) Open ACPI successful (/var/run/acpid.socket)
[   140.171] (II) LoadModule: "glx"
[   140.171] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   140.172] (II) Module glx: vendor="X.Org Foundation"
[   140.172]     compiled for 1.17.2, module version = 1.0.0
[   140.172]     ABI class: X.Org Server Extension, version 9.0
[   140.172] (==) AIGLX enabled
[   140.172] (II) LoadModule: "nvidia"
[   140.172] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   140.172] (II) Module nvidia: vendor="NVIDIA Corporation"
[   140.172]     compiled for 4.0.2, module version = 1.0.0
[   140.172]     Module class: X.Org Video Driver
[   140.172] (II) LoadModule: "modesetting"
[   140.172] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[   140.172] (II) Module modesetting: vendor="X.Org Foundation"
[   140.172]     compiled for 1.17.2, module version = 1.17.2
[   140.172]     Module class: X.Org Video Driver
[   140.172]     ABI class: X.Org Video Driver, version 19.0
[   140.172] (II) NVIDIA dlloader X Driver  352.41  Fri Aug 21 22:14:01 PDT 2015
[   140.172] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   140.172] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[   140.172] (++) using VT number 4

[   140.172] (II) Loading sub module "fb"
[   140.172] (II) LoadModule: "fb"
[   140.172] (II) Loading /usr/lib/xorg/modules/libfb.so
[   140.173] (II) Module fb: vendor="X.Org Foundation"
[   140.173]     compiled for 1.17.2, module version = 1.0.0
[   140.173]     ABI class: X.Org ANSI C Emulation, version 0.4
[   140.173] (II) Loading sub module "wfb"
[   140.173] (II) LoadModule: "wfb"
[   140.173] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   140.173] (II) Module wfb: vendor="X.Org Foundation"
[   140.173]     compiled for 1.17.2, module version = 1.0.0
[   140.173]     ABI class: X.Org ANSI C Emulation, version 0.4
[   140.173] (II) Loading sub module "ramdac"
[   140.173] (II) LoadModule: "ramdac"
[   140.173] (II) Module "ramdac" already built-in
[   140.173] (II) modeset(G0): using drv /dev/dri/card0
[   140.173] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "nvidia" for depth/fbbpp 24/32
[   140.173] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[   140.173] (==) NVIDIA(0): RGB weight 888
[   140.173] (==) NVIDIA(0): Default visual is TrueColor
[   140.173] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   140.173] (**) NVIDIA(0): Option "AllowEmptyInitialConfiguration" "Yes"
[   140.173] (**) NVIDIA(0): Enabling 2D acceleration
[   140.173] (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
[   140.173] (EE) NVIDIA(0):     log file that the GLX module has been loaded in your X
[   140.173] (EE) NVIDIA(0):     server, and that the module is the NVIDIA GLX module.  If
[   140.173] (EE) NVIDIA(0):     you continue to encounter problems, Please try
[   140.173] (EE) NVIDIA(0):     reinstalling the NVIDIA driver.
[   140.362] (II) NVIDIA: Allocated GPU:0 (GPU-021b846b-6d02-21cc-28c6-97c45f7279de) @
[   140.362] (II) NVIDIA:     PCI:0000:01:00.0
[   140.362] (II) NVIDIA: Freed GPU:0 (GPU-021b846b-6d02-21cc-28c6-97c45f7279de) @
[   140.362] (II) NVIDIA:     PCI:0000:01:00.0
[   140.362] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
[   140.363] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 860M (GM107-A) at PCI:1:0:0 (GPU-0)
[   140.363] (--) NVIDIA(0): Memory: 2097152 kBytes
[   140.363] (--) NVIDIA(0): VideoBIOS: 82.07.34.00.03
[   140.363] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[   140.363] (II) NVIDIA(0): Validated MetaModes:
[   140.363] (II) NVIDIA(0):     "NULL"
[   140.363] (II) NVIDIA(0): Virtual screen size determined to be 640 x 480
[   140.363] (WW) NVIDIA(0): Unable to get display device for DPI computation.
[   140.363] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[   140.363] (==) modeset(G0): Depth 24, (==) framebuffer bpp 32
[   140.363] (**) modeset(G0): Option "AccelMethod" "none"
[   140.363] (==) modeset(G0): RGB weight 888
[   140.363] (==) modeset(G0): Default visual is TrueColor
[   140.363] (**) modeset(G0): glamor disabled
[   140.363] (II) modeset(G0): ShadowFB: preferred YES, enabled YES
[   140.364] (II) modeset(G0): Output eDP-1-0 has no monitor section
[   140.365] (II) modeset(G0): Output VGA-1-0 has no monitor section
[   140.365] (II) modeset(G0): Output HDMI-1-0 has no monitor section
[   140.366] (II) modeset(G0): EDID for output eDP-1-0
[   140.366] (II) modeset(G0): Manufacturer: SDC  Model: 324c  Serial#: 0
[   140.366] (II) modeset(G0): Year: 2013  Week: 0
[   140.366] (II) modeset(G0): EDID Version: 1.4
[   140.366] (II) modeset(G0): Digital Display Input
[   140.366] (II) modeset(G0): 6 bits per channel
[   140.366] (II) modeset(G0): Digital interface is DisplayPort
[   140.366] (II) modeset(G0): Max Image Size [cm]: horiz.: 34  vert.: 19
[   140.366] (II) modeset(G0): Gamma: 2.20
[   140.366] (II) modeset(G0): No DPMS capabilities specified
[   140.366] (II) modeset(G0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[   140.366] (II) modeset(G0): First detailed timing is preferred mode
[   140.366] (II) modeset(G0): Preferred mode is native pixel format and refresh rate
[   140.366] (II) modeset(G0): redX: 0.620 redY: 0.355   greenX: 0.300 greenY: 0.580
[   140.366] (II) modeset(G0): blueX: 0.150 blueY: 0.090   whiteX: 0.313 whiteY: 0.329
[   140.366] (II) modeset(G0): Manufacturer's mask: 0
[   140.366] (II) modeset(G0): Supported detailed timing:
[   140.366] (II) modeset(G0): clock: 143.0 MHz   Image Size:  344 x 194 mm
[   140.366] (II) modeset(G0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[   140.366] (II) modeset(G0): v_active: 1080  v_sync: 1082  v_sync_end 1087 v_blanking: 1144 v_border: 0
[   140.366] (II) modeset(G0): Unknown vendor-specific block f
[   140.366] (II) modeset(G0):  SAMSUNG
[   140.366] (II) modeset(G0):  156HL01-102
[   140.366] (II) modeset(G0): EDID (in hex):
[   140.366] (II) modeset(G0):     00ffffffffffff004c834c3200000000
[   140.366] (II) modeset(G0):     00170104952213780ace859e5b4c9426
[   140.366] (II) modeset(G0):     17505400000001010101010101010101
[   140.366] (II) modeset(G0):     010101010101dc3780a0703840403020
[   140.366] (II) modeset(G0):     250058c2100000190000000f00000000
[   140.366] (II) modeset(G0):     00000000001e82105200000000fe0053
[   140.366] (II) modeset(G0):     414d53554e470a2020202020000000fe
[   140.366] (II) modeset(G0):     00313536484c30312d3130320a2000d1
[   140.367] (II) modeset(G0): Printing probed modes for output eDP-1-0
[   140.367] (II) modeset(G0): Modeline "1920x1080"x60.1  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   140.367] (II) modeset(G0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[   140.367] (II) modeset(G0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[   140.367] (II) modeset(G0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[   140.367] (II) modeset(G0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[   140.367] (II) modeset(G0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[   140.367] (II) modeset(G0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[   140.367] (II) modeset(G0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[   140.367] (II) modeset(G0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[   140.367] (II) modeset(G0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[   140.367] (II) modeset(G0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[   140.367] (II) modeset(G0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[   140.367] (II) modeset(G0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[   140.367] (II) modeset(G0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[   140.367] (II) modeset(G0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[   140.367] (II) modeset(G0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[   140.367] (II) modeset(G0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[   140.367] (II) modeset(G0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[   140.367] (II) modeset(G0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[   140.367] (II) modeset(G0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[   140.368] (II) modeset(G0): EDID for output VGA-1-0
[   140.368] (II) modeset(G0): EDID for output HDMI-1-0
[   140.368] (II) modeset(G0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[   140.368] (==) modeset(G0): DPI set to (96, 96)
[   140.368] (II) Loading sub module "fb"
[   140.368] (II) LoadModule: "fb"
[   140.368] (II) Loading /usr/lib/xorg/modules/libfb.so
[   140.368] (II) Module fb: vendor="X.Org Foundation"
[   140.368]     compiled for 1.17.2, module version = 1.0.0
[   140.368]     ABI class: X.Org ANSI C Emulation, version 0.4
[   140.368] (II) Loading sub module "shadow"
[   140.368] (II) LoadModule: "shadow"
[   140.368] (II) Loading /usr/lib/xorg/modules/libshadow.so
[   140.368] (II) Module shadow: vendor="X.Org Foundation"
[   140.368]     compiled for 1.17.2, module version = 1.1.0
[   140.369]     ABI class: X.Org ANSI C Emulation, version 0.4
[   140.369] (--) Depth 24 pixmap format is 32 bpp
[   140.369] (==) modeset(G0): Backing store enabled
[   140.369] (==) modeset(G0): Silken mouse enabled
[   140.369] (II) modeset(G0): RandR 1.2 enabled, ignore the following RandR disabled message.
[   140.369] (==) modeset(G0): DPMS enabled
[   140.369] (WW) modeset(G0): Option "AllowEmptyInitialConfiguration" is not used
[   140.652] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[   140.652] (II) NVIDIA:     access.
[   140.702] (II) NVIDIA(0): Built-in logo is bigger than the screen.
[   140.703] (II) NVIDIA(0): Setting mode "NULL"
[   140.706] (==) NVIDIA(0): Disabling shared memory pixmaps
[   140.706] (==) NVIDIA(0): Backing store enabled
[   140.706] (==) NVIDIA(0): Silken mouse enabled
[   140.706] (==) NVIDIA(0): DPMS enabled
[   140.706] (II) Loading sub module "dri2"
[   140.706] (II) LoadModule: "dri2"
[   140.706] (II) Module "dri2" already built-in
[   140.706] (II) NVIDIA(0): [DRI2] Setup complete
[   140.706] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[   140.706] (--) RandR disabled
[   140.709] (II) AIGLX: Screen 0 is not DRI2 capable
[   140.709] (EE) AIGLX: reverting to software rendering
[   140.720] (II) AIGLX: Loaded and initialized swrast
[   140.720] (II) GLX: Initialized DRISWRAST GL provider for screen 0
[   140.721] (II) modeset(G0): Damage tracking initialized
[   140.744] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[   140.744] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   140.744] (**) Power Button: Applying InputClass "system-keyboard"
[   140.744] (II) LoadModule: "evdev"
[   140.744] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   140.744] (II) Module evdev: vendor="X.Org Foundation"
[   140.744]     compiled for 1.17.1, module version = 2.9.2
[   140.744]     Module class: X.Org XInput Driver
[   140.744]     ABI class: X.Org XInput driver, version 21.0
[   140.744] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 27 paused 0
[   140.744] (II) Using input driver 'evdev' for 'Power Button'
[   140.744] (**) Power Button: always reports core events
[   140.744] (**) evdev: Power Button: Device: "/dev/input/event3"
[   140.745] (--) evdev: Power Button: Vendor 0 Product 0x1
[   140.745] (--) evdev: Power Button: Found keys
[   140.745] (II) evdev: Power Button: Configuring as keyboard
[   140.745] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
[   140.745] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   140.745] (**) Option "xkb_rules" "evdev"
[   140.745] (**) Option "xkb_model" "pc105"
[   140.745] (**) Option "xkb_layout" "de"
[   140.745] (**) Option "xkb_variant" "nodeadkeys"
[   140.757] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
[   140.757] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   140.757] (**) Video Bus: Applying InputClass "system-keyboard"
[   140.758] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 28 paused 0
[   140.758] (II) Using input driver 'evdev' for 'Video Bus'
[   140.758] (**) Video Bus: always reports core events
[   140.758] (**) evdev: Video Bus: Device: "/dev/input/event10"
[   140.758] (--) evdev: Video Bus: Vendor 0 Product 0x6
[   140.758] (--) evdev: Video Bus: Found keys
[   140.758] (II) evdev: Video Bus: Configuring as keyboard
[   140.758] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input12/event10"
[   140.758] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[   140.758] (**) Option "xkb_rules" "evdev"
[   140.758] (**) Option "xkb_model" "pc105"
[   140.758] (**) Option "xkb_layout" "de"
[   140.758] (**) Option "xkb_variant" "nodeadkeys"
[   140.758] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[   140.758] (II) No input driver specified, ignoring this device.
[   140.758] (II) This device may have been added with another device file.
[   140.758] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[   140.758] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[   140.758] (**) Video Bus: Applying InputClass "system-keyboard"
[   140.759] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 29 paused 0
[   140.759] (II) Using input driver 'evdev' for 'Video Bus'
[   140.759] (**) Video Bus: always reports core events
[   140.759] (**) evdev: Video Bus: Device: "/dev/input/event9"
[   140.759] (--) evdev: Video Bus: Vendor 0 Product 0x6
[   140.759] (--) evdev: Video Bus: Found keys
[   140.759] (II) evdev: Video Bus: Configuring as keyboard
[   140.759] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:44/LNXVIDEO:00/input/input11/event9"
[   140.759] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[   140.759] (**) Option "xkb_rules" "evdev"
[   140.759] (**) Option "xkb_model" "pc105"
[   140.759] (**) Option "xkb_layout" "de"
[   140.759] (**) Option "xkb_variant" "nodeadkeys"
[   140.759] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[   140.759] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   140.759] (**) Power Button: Applying InputClass "system-keyboard"
[   140.760] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 30 paused 0
[   140.760] (II) Using input driver 'evdev' for 'Power Button'
[   140.760] (**) Power Button: always reports core events
[   140.760] (**) evdev: Power Button: Device: "/dev/input/event2"
[   140.760] (--) evdev: Power Button: Vendor 0 Product 0x1
[   140.760] (--) evdev: Power Button: Found keys
[   140.760] (II) evdev: Power Button: Configuring as keyboard
[   140.760] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3/event2"
[   140.760] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[   140.760] (**) Option "xkb_rules" "evdev"
[   140.760] (**) Option "xkb_model" "pc105"
[   140.760] (**) Option "xkb_layout" "de"
[   140.760] (**) Option "xkb_variant" "nodeadkeys"
[   140.761] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event11)
[   140.761] (II) No input driver specified, ignoring this device.
[   140.761] (II) This device may have been added with another device file.
[   140.761] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event12)
[   140.761] (II) No input driver specified, ignoring this device.
[   140.761] (II) This device may have been added with another device file.
[   140.761] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event13)
[   140.761] (II) No input driver specified, ignoring this device.
[   140.761] (II) This device may have been added with another device file.
[   140.761] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
[   140.761] (II) No input driver specified, ignoring this device.
[   140.761] (II) This device may have been added with another device file.
[   140.761] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event6)
[   140.761] (II) No input driver specified, ignoring this device.
[   140.761] (II) This device may have been added with another device file.
[   140.762] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event7)
[   140.762] (II) No input driver specified, ignoring this device.
[   140.762] (II) This device may have been added with another device file.
[   140.762] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[   140.762] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   140.762] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[   140.762] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 31 paused 0
[   140.762] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[   140.762] (**) AT Translated Set 2 keyboard: always reports core events
[   140.762] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[   140.762] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[   140.762] (--) evdev: AT Translated Set 2 keyboard: Found keys
[   140.762] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[   140.762] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[   140.762] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[   140.762] (**) Option "xkb_rules" "evdev"
[   140.762] (**) Option "xkb_model" "pc105"
[   140.762] (**) Option "xkb_layout" "de"
[   140.762] (**) Option "xkb_variant" "nodeadkeys"
[   140.763] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event14)
[   140.763] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
[   140.763] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 32 paused 0
[   140.763] (II) Using input driver 'evdev' for 'ETPS/2 Elantech Touchpad'
[   140.763] (**) ETPS/2 Elantech Touchpad: always reports core events
[   140.763] (**) evdev: ETPS/2 Elantech Touchpad: Device: "/dev/input/event14"
[   140.763] (--) evdev: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
[   140.763] (--) evdev: ETPS/2 Elantech Touchpad: Found 1 mouse buttons
[   140.763] (--) evdev: ETPS/2 Elantech Touchpad: Found absolute axes
[   140.763] (--) evdev: ETPS/2 Elantech Touchpad: Found absolute multitouch axes
[   140.763] (--) evdev: ETPS/2 Elantech Touchpad: Found x and y absolute axes
[   140.763] (--) evdev: ETPS/2 Elantech Touchpad: Found absolute touchpad.
[   140.763] (II) evdev: ETPS/2 Elantech Touchpad: Configuring as touchpad
[   140.763] (**) evdev: ETPS/2 Elantech Touchpad: YAxisMapping: buttons 4 and 5
[   140.763] (**) evdev: ETPS/2 Elantech Touchpad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   140.763] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event14"
[   140.763] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 11)
[   140.763] (II) evdev: ETPS/2 Elantech Touchpad: initialized for absolute axes.
[   140.763] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
[   140.763] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 0
[   140.763] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[   140.763] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[   140.763] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[   140.763] (II) No input driver specified, ignoring this device.
[   140.763] (II) This device may have been added with another device file.
[   140.763] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[   140.763] (II) No input driver specified, ignoring this device.
[   140.763] (II) This device may have been added with another device file.
[   140.764] (II) config/udev: Adding input device MSI WMI hotkeys (/dev/input/event8)
[   140.764] (**) MSI WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[   140.764] (**) MSI WMI hotkeys: Applying InputClass "system-keyboard"
[   140.764] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 33 paused 0
[   140.764] (II) Using input driver 'evdev' for 'MSI WMI hotkeys'
[   140.764] (**) MSI WMI hotkeys: always reports core events
[   140.764] (**) evdev: MSI WMI hotkeys: Device: "/dev/input/event8"
[   140.764] (--) evdev: MSI WMI hotkeys: Vendor 0 Product 0
[   140.764] (--) evdev: MSI WMI hotkeys: Found keys
[   140.764] (II) evdev: MSI WMI hotkeys: Configuring as keyboard
[   140.764] (**) Option "config_info" "udev:/sys/devices/virtual/input/input10/event8"
[   140.764] (II) XINPUT: Adding extended input device "MSI WMI hotkeys" (type: KEYBOARD, id 12)
[   140.764] (**) Option "xkb_rules" "evdev"
[   140.764] (**) Option "xkb_model" "pc105"
[   140.764] (**) Option "xkb_layout" "de"
[   140.764] (**) Option "xkb_variant" "nodeadkeys"
[   140.820] (II) systemd-logind: got pause for 13:72
[   140.820] (II) systemd-logind: got pause for 13:74
[   140.820] (II) systemd-logind: got pause for 13:64
[   140.820] (II) systemd-logind: got pause for 226:0
[   140.820] (II) systemd-logind: got pause for 13:78
[   140.820] (II) systemd-logind: got pause for 13:67
[   140.820] (II) systemd-logind: got pause for 13:66
[   140.820] (II) systemd-logind: got pause for 226:1
[   140.820] (II) systemd-logind: got pause for 13:73
[   140.850] (II) systemd-logind: got resume for 13:72
[   140.876] (II) systemd-logind: got resume for 13:74
[   140.916] (II) systemd-logind: got resume for 13:64
[   140.917] (II) systemd-logind: got resume for 226:0
[   140.943] (II) systemd-logind: got resume for 13:78
[   140.970] (II) systemd-logind: got resume for 13:67
[   140.997] (II) systemd-logind: got resume for 13:66
[   140.997] (II) systemd-logind: got resume for 226:1
[   140.997] (II) Open ACPI successful (/var/run/acpid.socket)
[   141.036] (II) NVIDIA(0): Setting mode "NULL"
[   141.390] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   141.390] (II) modeset(G0): Printing DDC gathered Modelines:
[   141.390] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   141.620] (II) systemd-logind: got resume for 13:73
[   141.620] (II) systemd-logind: got pause for 13:72
[   141.620] (II) systemd-logind: got pause for 13:74
[   141.620] (II) systemd-logind: got pause for 13:64
[   141.620] (II) systemd-logind: got pause for 226:0
[   141.620] (II) systemd-logind: got pause for 13:78
[   141.620] (II) systemd-logind: got pause for 13:67
[   141.620] (II) systemd-logind: got pause for 13:66
[   141.620] (II) systemd-logind: got pause for 226:1
[   141.620] (II) systemd-logind: got pause for 13:73
[   141.670] (II) systemd-logind: got resume for 13:72
[   141.690] (II) systemd-logind: got resume for 13:74
[   141.716] (II) systemd-logind: got resume for 13:64
[   141.717] (II) systemd-logind: got resume for 226:0
[   141.743] (II) systemd-logind: got resume for 13:78
[   141.783] (II) systemd-logind: got resume for 13:67
[   141.810] (II) systemd-logind: got resume for 13:66
[   141.810] (II) systemd-logind: got resume for 226:1
[   141.810] (II) Open ACPI successful (/var/run/acpid.socket)
[   141.848] (II) NVIDIA(0): Setting mode "NULL"
[   142.890] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   142.890] (II) modeset(G0): Printing DDC gathered Modelines:
[   142.890] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   142.900] (II) systemd-logind: got resume for 13:73
[   142.900] (II) systemd-logind: got pause for 13:72
[   142.900] (II) systemd-logind: got pause for 13:74
[   142.901] (II) systemd-logind: got pause for 13:64
[   142.901] (II) systemd-logind: got pause for 226:0
[   142.901] (II) systemd-logind: got pause for 13:78
[   142.901] (II) systemd-logind: got pause for 13:67
[   142.901] (II) systemd-logind: got pause for 13:66
[   142.901] (II) systemd-logind: got pause for 226:1
[   142.901] (II) systemd-logind: got pause for 13:73
[   142.943] (II) systemd-logind: got resume for 13:72
[   142.970] (II) systemd-logind: got resume for 13:74
[   142.996] (II) systemd-logind: got resume for 13:64
[   142.997] (II) systemd-logind: got resume for 226:0
[   143.023] (II) systemd-logind: got resume for 13:78
[   143.050] (II) systemd-logind: got resume for 13:67
[   143.076] (II) systemd-logind: got resume for 13:66
[   143.077] (II) systemd-logind: got resume for 226:1
[   143.077] (II) Open ACPI successful (/var/run/acpid.socket)
[   143.114] (II) NVIDIA(0): Setting mode "NULL"
[   143.119] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   143.119] (II) modeset(G0): Printing DDC gathered Modelines:
[   143.119] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   143.128] (II) systemd-logind: got resume for 13:73
[   143.128] (II) systemd-logind: got pause for 13:72
[   143.128] (II) systemd-logind: got pause for 13:74
[   143.128] (II) systemd-logind: got pause for 13:64
[   143.128] (II) systemd-logind: got pause for 226:0
[   143.128] (II) systemd-logind: got pause for 13:78
[   143.128] (II) systemd-logind: got pause for 13:67
[   143.128] (II) systemd-logind: got pause for 13:66
[   143.128] (II) systemd-logind: got pause for 226:1
[   143.129] (II) systemd-logind: got pause for 13:73
[   143.153] (II) systemd-logind: got resume for 13:72
[   143.170] (II) systemd-logind: got resume for 13:74
[   143.193] (II) systemd-logind: got resume for 13:64
[   143.193] (II) systemd-logind: got resume for 226:0
[   143.203] (II) systemd-logind: got resume for 13:78
[   143.236] (II) systemd-logind: got resume for 13:67
[   143.270] (II) systemd-logind: got resume for 13:66
[   143.270] (II) systemd-logind: got resume for 226:1
[   143.270] (II) Open ACPI successful (/var/run/acpid.socket)
[   143.308] (II) NVIDIA(0): Setting mode "NULL"
[   143.312] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   143.312] (II) modeset(G0): Printing DDC gathered Modelines:
[   143.312] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   143.322] (II) systemd-logind: got resume for 13:73
[   143.322] (II) systemd-logind: got pause for 13:72
[   143.322] (II) systemd-logind: got pause for 13:74
[   143.322] (II) systemd-logind: got pause for 13:64
[   143.322] (II) systemd-logind: got pause for 226:0
[   143.322] (II) systemd-logind: got pause for 13:78
[   143.322] (II) systemd-logind: got pause for 13:67
[   143.322] (II) systemd-logind: got pause for 13:66
[   143.322] (II) systemd-logind: got pause for 226:1
[   143.322] (II) systemd-logind: got pause for 13:73
[   143.370] (II) systemd-logind: got resume for 13:72
[   143.403] (II) systemd-logind: got resume for 13:74
[   143.423] (II) systemd-logind: got resume for 13:64
[   143.423] (II) systemd-logind: got resume for 226:0
[   143.463] (II) systemd-logind: got resume for 13:78
[   143.480] (II) systemd-logind: got resume for 13:67
[   143.503] (II) systemd-logind: got resume for 13:66
[   143.503] (II) systemd-logind: got resume for 226:1
[   143.503] (II) Open ACPI successful (/var/run/acpid.socket)
[   143.542] (II) NVIDIA(0): Setting mode "NULL"
[   143.546] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   143.546] (II) modeset(G0): Printing DDC gathered Modelines:
[   143.546] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   143.550] (II) systemd-logind: got resume for 13:73
[   143.561] (II) systemd-logind: got pause for 13:72
[   143.561] (II) systemd-logind: got pause for 13:74
[   143.561] (II) systemd-logind: got pause for 13:64
[   143.561] (II) systemd-logind: got pause for 226:0
[   143.561] (II) systemd-logind: got pause for 13:78
[   143.561] (II) systemd-logind: got pause for 13:67
[   143.561] (II) systemd-logind: got pause for 13:66
[   143.561] (II) systemd-logind: got pause for 226:1
[   143.561] (II) systemd-logind: got pause for 13:73
[   143.613] (II) systemd-logind: got resume for 13:72
[   143.650] (II) systemd-logind: got resume for 13:74
[   143.677] (II) systemd-logind: got resume for 13:64
[   143.677] (II) systemd-logind: got resume for 226:0
[   143.703] (II) systemd-logind: got resume for 13:78
[   143.730] (II) systemd-logind: got resume for 13:67
[   143.757] (II) systemd-logind: got resume for 13:66
[   143.757] (II) systemd-logind: got resume for 226:1
[   143.757] (II) Open ACPI successful (/var/run/acpid.socket)
[   143.794] (II) NVIDIA(0): Setting mode "NULL"
[   143.799] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   143.799] (II) modeset(G0): Printing DDC gathered Modelines:
[   143.799] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   143.803] (II) systemd-logind: got resume for 13:73
[   143.822] (II) systemd-logind: got pause for 13:72
[   143.822] (II) systemd-logind: got pause for 13:74
[   143.822] (II) systemd-logind: got pause for 13:64
[   143.822] (II) systemd-logind: got pause for 226:0
[   143.823] (II) systemd-logind: got pause for 13:78
[   143.823] (II) systemd-logind: got pause for 13:67
[   143.823] (II) systemd-logind: got pause for 13:66
[   143.823] (II) systemd-logind: got pause for 226:1
[   143.823] (II) systemd-logind: got pause for 13:73
[   143.863] (II) systemd-logind: got resume for 13:72
[   143.903] (II) systemd-logind: got resume for 13:74
[   143.943] (II) systemd-logind: got resume for 13:64
[   143.943] (II) systemd-logind: got resume for 226:0
[   143.970] (II) systemd-logind: got resume for 13:78
[   143.996] (II) systemd-logind: got resume for 13:67
[   144.023] (II) systemd-logind: got resume for 13:66
[   144.023] (II) systemd-logind: got resume for 226:1
[   144.023] (II) Open ACPI successful (/var/run/acpid.socket)
[   144.061] (II) NVIDIA(0): Setting mode "NULL"
[   144.066] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   144.066] (II) modeset(G0): Printing DDC gathered Modelines:
[   144.066] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   144.069] (II) systemd-logind: got resume for 13:73
[   144.082] (II) systemd-logind: got pause for 13:72
[   144.082] (II) systemd-logind: got pause for 13:74
[   144.082] (II) systemd-logind: got pause for 13:64
[   144.082] (II) systemd-logind: got pause for 226:0
[   144.082] (II) systemd-logind: got pause for 13:78
[   144.082] (II) systemd-logind: got pause for 13:67
[   144.082] (II) systemd-logind: got pause for 13:66
[   144.082] (II) systemd-logind: got pause for 226:1
[   144.082] (II) systemd-logind: got pause for 13:73
[   144.116] (II) systemd-logind: got resume for 13:72
[   144.143] (II) systemd-logind: got resume for 13:74
[   144.170] (II) systemd-logind: got resume for 13:64
[   144.170] (II) systemd-logind: got resume for 226:0
[   144.196] (II) systemd-logind: got resume for 13:78
[   144.220] (II) systemd-logind: got resume for 13:67
[   144.250] (II) systemd-logind: got resume for 13:66
[   144.250] (II) systemd-logind: got resume for 226:1
[   144.250] (II) Open ACPI successful (/var/run/acpid.socket)
[   144.287] (II) NVIDIA(0): Setting mode "NULL"
[   144.292] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   144.292] (II) modeset(G0): Printing DDC gathered Modelines:
[   144.292] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   144.301] (II) systemd-logind: got resume for 13:73
[   144.301] (II) systemd-logind: got pause for 13:72
[   144.301] (II) systemd-logind: got pause for 13:74
[   144.301] (II) systemd-logind: got pause for 13:64
[   144.302] (II) systemd-logind: got pause for 226:0
[   144.302] (II) systemd-logind: got pause for 13:78
[   144.302] (II) systemd-logind: got pause for 13:67
[   144.302] (II) systemd-logind: got pause for 13:66
[   144.302] (II) systemd-logind: got pause for 226:1
[   144.302] (II) systemd-logind: got pause for 13:73
[   144.333] (II) systemd-logind: got resume for 13:72
[   144.370] (II) systemd-logind: got resume for 13:74
[   144.397] (II) systemd-logind: got resume for 13:64
[   144.397] (II) systemd-logind: got resume for 226:0
[   144.423] (II) systemd-logind: got resume for 13:78
[   144.450] (II) systemd-logind: got resume for 13:67
[   144.476] (II) systemd-logind: got resume for 13:66
[   144.477] (II) systemd-logind: got resume for 226:1
[   144.477] (II) Open ACPI successful (/var/run/acpid.socket)
[   144.514] (II) NVIDIA(0): Setting mode "NULL"
[   144.519] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   144.519] (II) modeset(G0): Printing DDC gathered Modelines:
[   144.519] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   144.523] (II) systemd-logind: got resume for 13:73
[   144.544] (II) systemd-logind: got pause for 13:72
[   144.544] (II) systemd-logind: got pause for 13:74
[   144.544] (II) systemd-logind: got pause for 13:64
[   144.544] (II) systemd-logind: got pause for 226:0
[   144.544] (II) systemd-logind: got pause for 13:78
[   144.544] (II) systemd-logind: got pause for 13:67
[   144.544] (II) systemd-logind: got pause for 13:66
[   144.544] (II) systemd-logind: got pause for 226:1
[   144.544] (II) systemd-logind: got pause for 13:73
[   144.570] (II) systemd-logind: got resume for 13:72
[   144.590] (II) systemd-logind: got resume for 13:74
[   144.616] (II) systemd-logind: got resume for 13:64
[   144.616] (II) systemd-logind: got resume for 226:0
[   144.650] (II) systemd-logind: got resume for 13:78
[   144.676] (II) systemd-logind: got resume for 13:67
[   144.703] (II) systemd-logind: got resume for 13:66
[   144.703] (II) systemd-logind: got resume for 226:1
[   144.703] (II) Open ACPI successful (/var/run/acpid.socket)
[   144.741] (II) NVIDIA(0): Setting mode "NULL"
[   144.746] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   144.746] (II) modeset(G0): Printing DDC gathered Modelines:
[   144.746] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   144.749] (II) systemd-logind: got resume for 13:73
[   144.770] (II) systemd-logind: got pause for 13:72
[   144.770] (II) systemd-logind: got pause for 13:74
[   144.770] (II) systemd-logind: got pause for 13:64
[   144.770] (II) systemd-logind: got pause for 226:0
[   144.770] (II) systemd-logind: got pause for 13:78
[   144.770] (II) systemd-logind: got pause for 13:67
[   144.770] (II) systemd-logind: got pause for 13:66
[   144.770] (II) systemd-logind: got pause for 226:1
[   144.770] (II) systemd-logind: got pause for 13:73
[   144.836] (II) systemd-logind: got resume for 13:72
[   144.876] (II) systemd-logind: got resume for 13:74
[   144.903] (II) systemd-logind: got resume for 13:64
[   144.903] (II) systemd-logind: got resume for 226:0
[   144.930] (II) systemd-logind: got resume for 13:78
[   144.956] (II) systemd-logind: got resume for 13:67
[   144.983] (II) systemd-logind: got resume for 13:66
[   144.983] (II) systemd-logind: got resume for 226:1
[   144.983] (II) Open ACPI successful (/var/run/acpid.socket)
[   145.021] (II) NVIDIA(0): Setting mode "NULL"
[   145.026] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   145.026] (II) modeset(G0): Printing DDC gathered Modelines:
[   145.026] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   145.029] (II) systemd-logind: got resume for 13:73
[   145.048] (II) systemd-logind: got pause for 13:72
[   145.048] (II) systemd-logind: got pause for 13:74
[   145.049] (II) systemd-logind: got pause for 13:64
[   145.049] (II) systemd-logind: got pause for 226:0
[   145.049] (II) systemd-logind: got pause for 13:78
[   145.049] (II) systemd-logind: got pause for 13:67
[   145.049] (II) systemd-logind: got pause for 13:66
[   145.049] (II) systemd-logind: got pause for 226:1
[   145.049] (II) systemd-logind: got pause for 13:73
[   145.090] (II) systemd-logind: got resume for 13:72
[   145.116] (II) systemd-logind: got resume for 13:74
[   145.156] (II) systemd-logind: got resume for 13:64
[   145.157] (II) systemd-logind: got resume for 226:0
[   145.183] (II) systemd-logind: got resume for 13:78
[   145.206] (II) systemd-logind: got resume for 13:67
[   145.236] (II) systemd-logind: got resume for 13:66
[   145.236] (II) systemd-logind: got resume for 226:1
[   145.236] (II) Open ACPI successful (/var/run/acpid.socket)
[   145.274] (II) NVIDIA(0): Setting mode "NULL"
[   145.279] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   145.279] (II) modeset(G0): Printing DDC gathered Modelines:
[   145.279] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   145.283] (II) systemd-logind: got resume for 13:73
[   145.303] (II) systemd-logind: got pause for 13:72
[   145.303] (II) systemd-logind: got pause for 13:74
[   145.303] (II) systemd-logind: got pause for 13:64
[   145.303] (II) systemd-logind: got pause for 226:0
[   145.303] (II) systemd-logind: got pause for 13:78
[   145.303] (II) systemd-logind: got pause for 13:67
[   145.303] (II) systemd-logind: got pause for 13:66
[   145.303] (II) systemd-logind: got pause for 226:1
[   145.303] (II) systemd-logind: got pause for 13:73
[   145.330] (II) systemd-logind: got resume for 13:72
[   145.360] (II) systemd-logind: got resume for 13:74
[   145.393] (II) systemd-logind: got resume for 13:64
[   145.393] (II) systemd-logind: got resume for 226:0
[   145.423] (II) systemd-logind: got resume for 13:78
[   145.450] (II) systemd-logind: got resume for 13:67
[   145.477] (II) systemd-logind: got resume for 13:66
[   145.477] (II) systemd-logind: got resume for 226:1
[   145.477] (II) Open ACPI successful (/var/run/acpid.socket)
[   145.514] (II) NVIDIA(0): Setting mode "NULL"
[   145.519] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   145.519] (II) modeset(G0): Printing DDC gathered Modelines:
[   145.519] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   145.523] (II) systemd-logind: got resume for 13:73
[   145.544] (II) systemd-logind: got pause for 13:72
[   145.544] (II) systemd-logind: got pause for 13:74
[   145.544] (II) systemd-logind: got pause for 13:64
[   145.544] (II) systemd-logind: got pause for 226:0
[   145.544] (II) systemd-logind: got pause for 13:78
[   145.544] (II) systemd-logind: got pause for 13:67
[   145.544] (II) systemd-logind: got pause for 13:66
[   145.544] (II) systemd-logind: got pause for 226:1
[   145.544] (II) systemd-logind: got pause for 13:73
[   145.597] (II) systemd-logind: got resume for 13:72
[   145.623] (II) systemd-logind: got resume for 13:74
[   145.650] (II) systemd-logind: got resume for 13:64
[   145.650] (II) systemd-logind: got resume for 226:0
[   145.673] (II) systemd-logind: got resume for 13:78
[   145.703] (II) systemd-logind: got resume for 13:67
[   145.730] (II) systemd-logind: got resume for 13:66
[   145.730] (II) systemd-logind: got resume for 226:1
[   145.730] (II) Open ACPI successful (/var/run/acpid.socket)
[   145.768] (II) NVIDIA(0): Setting mode "NULL"
[   145.772] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   145.772] (II) modeset(G0): Printing DDC gathered Modelines:
[   145.772] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   145.776] (II) systemd-logind: got resume for 13:73
[   145.787] (II) systemd-logind: got pause for 13:72
[   145.787] (II) systemd-logind: got pause for 13:74
[   145.787] (II) systemd-logind: got pause for 13:64
[   145.787] (II) systemd-logind: got pause for 226:0
[   145.787] (II) systemd-logind: got pause for 13:78
[   145.787] (II) systemd-logind: got pause for 13:67
[   145.787] (II) systemd-logind: got pause for 13:66
[   145.787] (II) systemd-logind: got pause for 226:1
[   145.787] (II) systemd-logind: got pause for 13:73
[   145.836] (II) systemd-logind: got resume for 13:72
[   145.876] (II) systemd-logind: got resume for 13:74
[   145.914] (II) systemd-logind: got resume for 13:64
[   145.914] (II) systemd-logind: got resume for 226:0
[   145.943] (II) systemd-logind: got resume for 13:78
[   145.966] (II) systemd-logind: got resume for 13:67
[   145.983] (II) systemd-logind: got resume for 13:66
[   145.983] (II) systemd-logind: got resume for 226:1
[   145.983] (II) Open ACPI successful (/var/run/acpid.socket)
[   146.021] (II) NVIDIA(0): Setting mode "NULL"
[   146.026] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   146.026] (II) modeset(G0): Printing DDC gathered Modelines:
[   146.026] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   146.030] (II) systemd-logind: got resume for 13:73
[   146.040] (II) systemd-logind: got pause for 13:72
[   146.040] (II) systemd-logind: got pause for 13:74
[   146.040] (II) systemd-logind: got pause for 13:64
[   146.040] (II) systemd-logind: got pause for 226:0
[   146.040] (II) systemd-logind: got pause for 13:78
[   146.040] (II) systemd-logind: got pause for 13:67
[   146.040] (II) systemd-logind: got pause for 13:66
[   146.040] (II) systemd-logind: got pause for 226:1
[   146.040] (II) systemd-logind: got pause for 13:73
[   146.066] (II) systemd-logind: got resume for 13:72
[   146.093] (II) systemd-logind: got resume for 13:74
[   146.130] (II) systemd-logind: got resume for 13:64
[   146.130] (II) systemd-logind: got resume for 226:0
[   146.156] (II) systemd-logind: got resume for 13:78
[   146.183] (II) systemd-logind: got resume for 13:67
[   146.194] (II) systemd-logind: got resume for 13:66
[   146.194] (II) systemd-logind: got resume for 226:1
[   146.194] (II) Open ACPI successful (/var/run/acpid.socket)
[   146.231] (II) NVIDIA(0): Setting mode "NULL"
[   146.236] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   146.236] (II) modeset(G0): Printing DDC gathered Modelines:
[   146.236] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   146.245] (II) systemd-logind: got resume for 13:73
[   146.245] (II) systemd-logind: got pause for 13:72
[   146.245] (II) systemd-logind: got pause for 13:74
[   146.245] (II) systemd-logind: got pause for 13:64
[   146.245] (II) systemd-logind: got pause for 226:0
[   146.245] (II) systemd-logind: got pause for 13:78
[   146.245] (II) systemd-logind: got pause for 13:67
[   146.245] (II) systemd-logind: got pause for 13:66
[   146.246] (II) systemd-logind: got pause for 226:1
[   146.246] (II) systemd-logind: got pause for 13:73
[   146.317] (II) systemd-logind: got resume for 13:72
[   146.356] (II) systemd-logind: got resume for 13:74
[   146.383] (II) systemd-logind: got resume for 13:64
[   146.383] (II) systemd-logind: got resume for 226:0
[   146.410] (II) systemd-logind: got resume for 13:78
[   146.436] (II) systemd-logind: got resume for 13:67
[   146.463] (II) systemd-logind: got resume for 13:66
[   146.463] (II) systemd-logind: got resume for 226:1
[   146.463] (II) Open ACPI successful (/var/run/acpid.socket)
[   146.501] (II) NVIDIA(0): Setting mode "NULL"
[   146.505] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   146.505] (II) modeset(G0): Printing DDC gathered Modelines:
[   146.505] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   146.515] (II) systemd-logind: got resume for 13:73
[   146.515] (II) systemd-logind: got pause for 13:72
[   146.515] (II) systemd-logind: got pause for 13:74
[   146.515] (II) systemd-logind: got pause for 13:64
[   146.515] (II) systemd-logind: got pause for 226:0
[   146.515] (II) systemd-logind: got pause for 13:78
[   146.515] (II) systemd-logind: got pause for 13:67
[   146.515] (II) systemd-logind: got pause for 13:66
[   146.515] (II) systemd-logind: got pause for 226:1
[   146.515] (II) systemd-logind: got pause for 13:73
[   146.557] (II) systemd-logind: got resume for 13:72
[   146.596] (II) systemd-logind: got resume for 13:74
[   146.623] (II) systemd-logind: got resume for 13:64
[   146.623] (II) systemd-logind: got resume for 226:0
[   146.650] (II) systemd-logind: got resume for 13:78
[   146.676] (II) systemd-logind: got resume for 13:67
[   146.703] (II) systemd-logind: got resume for 13:66
[   146.703] (II) systemd-logind: got resume for 226:1
[   146.703] (II) Open ACPI successful (/var/run/acpid.socket)
[   146.741] (II) NVIDIA(0): Setting mode "NULL"
[   146.746] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   146.746] (II) modeset(G0): Printing DDC gathered Modelines:
[   146.746] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   146.749] (II) systemd-logind: got resume for 13:73
[   146.761] (II) systemd-logind: got pause for 13:72
[   146.761] (II) systemd-logind: got pause for 13:74
[   146.761] (II) systemd-logind: got pause for 13:64
[   146.761] (II) systemd-logind: got pause for 226:0
[   146.762] (II) systemd-logind: got pause for 13:78
[   146.762] (II) systemd-logind: got pause for 13:67
[   146.762] (II) systemd-logind: got pause for 13:66
[   146.762] (II) systemd-logind: got pause for 226:1
[   146.762] (II) systemd-logind: got pause for 13:73
[   146.823] (II) systemd-logind: got resume for 13:72
[   146.863] (II) systemd-logind: got resume for 13:74
[   146.890] (II) systemd-logind: got resume for 13:64
[   146.890] (II) systemd-logind: got resume for 226:0
[   146.916] (II) systemd-logind: got resume for 13:78
[   146.943] (II) systemd-logind: got resume for 13:67
[   146.967] (II) systemd-logind: got resume for 13:66
[   146.967] (II) systemd-logind: got resume for 226:1
[   146.967] (II) Open ACPI successful (/var/run/acpid.socket)
[   147.004] (II) NVIDIA(0): Setting mode "NULL"
[   147.009] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   147.009] (II) modeset(G0): Printing DDC gathered Modelines:
[   147.009] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   147.013] (II) systemd-logind: got resume for 13:73
[   147.034] (II) systemd-logind: got pause for 13:72
[   147.034] (II) systemd-logind: got pause for 13:74
[   147.034] (II) systemd-logind: got pause for 13:64
[   147.034] (II) systemd-logind: got pause for 226:0
[   147.034] (II) systemd-logind: got pause for 13:78
[   147.034] (II) systemd-logind: got pause for 13:67
[   147.034] (II) systemd-logind: got pause for 13:66
[   147.034] (II) systemd-logind: got pause for 226:1
[   147.034] (II) systemd-logind: got pause for 13:73
[   147.060] (II) systemd-logind: got resume for 13:72
[   147.077] (II) systemd-logind: got resume for 13:74
[   147.116] (II) systemd-logind: got resume for 13:64
[   147.116] (II) systemd-logind: got resume for 226:0
[   147.140] (II) systemd-logind: got resume for 13:78
[   147.163] (II) systemd-logind: got resume for 13:67
[   147.187] (II) systemd-logind: got resume for 13:66
[   147.187] (II) systemd-logind: got resume for 226:1
[   147.187] (II) Open ACPI successful (/var/run/acpid.socket)
[   147.224] (II) NVIDIA(0): Setting mode "NULL"
[   147.229] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   147.229] (II) modeset(G0): Printing DDC gathered Modelines:
[   147.229] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   147.233] (II) systemd-logind: got resume for 13:73
[   147.254] (II) systemd-logind: got pause for 13:72
[   147.254] (II) systemd-logind: got pause for 13:74
[   147.254] (II) systemd-logind: got pause for 13:64
[   147.254] (II) systemd-logind: got pause for 226:0
[   147.254] (II) systemd-logind: got pause for 13:78
[   147.254] (II) systemd-logind: got pause for 13:67
[   147.254] (II) systemd-logind: got pause for 13:66
[   147.254] (II) systemd-logind: got pause for 226:1
[   147.254] (II) systemd-logind: got pause for 13:73
[   147.310] (II) systemd-logind: got resume for 13:72
[   147.330] (II) systemd-logind: got resume for 13:74
[   147.356] (II) systemd-logind: got resume for 13:64
[   147.357] (II) systemd-logind: got resume for 226:0
[   147.383] (II) systemd-logind: got resume for 13:78
[   147.410] (II) systemd-logind: got resume for 13:67
[   147.437] (II) systemd-logind: got resume for 13:66
[   147.437] (II) systemd-logind: got resume for 226:1
[   147.437] (II) Open ACPI successful (/var/run/acpid.socket)
[   147.475] (II) NVIDIA(0): Setting mode "NULL"
[   147.480] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   147.480] (II) modeset(G0): Printing DDC gathered Modelines:
[   147.480] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   147.484] (II) systemd-logind: got resume for 13:73
[   147.506] (II) systemd-logind: got pause for 13:72
[   147.506] (II) systemd-logind: got pause for 13:74
[   147.506] (II) systemd-logind: got pause for 13:64
[   147.506] (II) systemd-logind: got pause for 226:0
[   147.506] (II) systemd-logind: got pause for 13:78
[   147.506] (II) systemd-logind: got pause for 13:67
[   147.506] (II) systemd-logind: got pause for 13:66
[   147.506] (II) systemd-logind: got pause for 226:1
[   147.506] (II) systemd-logind: got pause for 13:73
[   147.570] (II) systemd-logind: got resume for 13:72
[   147.610] (II) systemd-logind: got resume for 13:74
[   147.637] (II) systemd-logind: got resume for 13:64
[   147.637] (II) systemd-logind: got resume for 226:0
[   147.663] (II) systemd-logind: got resume for 13:78
[   147.687] (II) systemd-logind: got resume for 13:67
[   147.710] (II) systemd-logind: got resume for 13:66
[   147.710] (II) systemd-logind: got resume for 226:1
[   147.710] (II) Open ACPI successful (/var/run/acpid.socket)
[   147.748] (II) NVIDIA(0): Setting mode "NULL"
[   147.752] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   147.752] (II) modeset(G0): Printing DDC gathered Modelines:
[   147.752] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   147.756] (II) systemd-logind: got resume for 13:73
[   147.775] (II) systemd-logind: got pause for 13:72
[   147.776] (II) systemd-logind: got pause for 13:74
[   147.776] (II) systemd-logind: got pause for 13:64
[   147.776] (II) systemd-logind: got pause for 226:0
[   147.776] (II) systemd-logind: got pause for 13:78
[   147.776] (II) systemd-logind: got pause for 13:67
[   147.776] (II) systemd-logind: got pause for 13:66
[   147.776] (II) systemd-logind: got pause for 226:1
[   147.776] (II) systemd-logind: got pause for 13:73
[   147.810] (II) systemd-logind: got resume for 13:72
[   147.833] (II) systemd-logind: got resume for 13:74
[   147.850] (II) systemd-logind: got resume for 13:64
[   147.850] (II) systemd-logind: got resume for 226:0
[   147.876] (II) systemd-logind: got resume for 13:78
[   147.903] (II) systemd-logind: got resume for 13:67
[   147.930] (II) systemd-logind: got resume for 13:66
[   147.930] (II) systemd-logind: got resume for 226:1
[   147.930] (II) Open ACPI successful (/var/run/acpid.socket)
[   147.967] (II) NVIDIA(0): Setting mode "NULL"
[   147.972] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   147.972] (II) modeset(G0): Printing DDC gathered Modelines:
[   147.972] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   147.976] (II) systemd-logind: got resume for 13:73
[   148.002] (II) systemd-logind: got pause for 13:72
[   148.002] (II) systemd-logind: got pause for 13:74
[   148.003] (II) systemd-logind: got pause for 13:64
[   148.003] (II) systemd-logind: got pause for 226:0
[   148.003] (II) systemd-logind: got pause for 13:78
[   148.003] (II) systemd-logind: got pause for 13:67
[   148.003] (II) systemd-logind: got pause for 13:66
[   148.003] (II) systemd-logind: got pause for 226:1
[   148.003] (II) systemd-logind: got pause for 13:73
[   148.050] (II) systemd-logind: got resume for 13:72
[   148.090] (II) systemd-logind: got resume for 13:74
[   148.116] (II) systemd-logind: got resume for 13:64
[   148.117] (II) systemd-logind: got resume for 226:0
[   148.143] (II) systemd-logind: got resume for 13:78
[   148.170] (II) systemd-logind: got resume for 13:67
[   148.196] (II) systemd-logind: got resume for 13:66
[   148.196] (II) systemd-logind: got resume for 226:1
[   148.196] (II) Open ACPI successful (/var/run/acpid.socket)
[   148.234] (II) NVIDIA(0): Setting mode "NULL"
[   148.239] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   148.239] (II) modeset(G0): Printing DDC gathered Modelines:
[   148.239] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   148.243] (II) systemd-logind: got resume for 13:73
[   148.264] (II) systemd-logind: got pause for 13:72
[   148.264] (II) systemd-logind: got pause for 13:74
[   148.264] (II) systemd-logind: got pause for 13:64
[   148.264] (II) systemd-logind: got pause for 226:0
[   148.264] (II) systemd-logind: got pause for 13:78
[   148.264] (II) systemd-logind: got pause for 13:67
[   148.264] (II) systemd-logind: got pause for 13:66
[   148.264] (II) systemd-logind: got pause for 226:1
[   148.264] (II) systemd-logind: got pause for 13:73
[   148.317] (II) systemd-logind: got resume for 13:72
[   148.343] (II) systemd-logind: got resume for 13:74
[   148.377] (II) systemd-logind: got resume for 13:64
[   148.377] (II) systemd-logind: got resume for 226:0
[   148.410] (II) systemd-logind: got resume for 13:78
[   148.436] (II) systemd-logind: got resume for 13:67
[   148.463] (II) systemd-logind: got resume for 13:66
[   148.463] (II) systemd-logind: got resume for 226:1
[   148.463] (II) Open ACPI successful (/var/run/acpid.socket)
[   148.501] (II) NVIDIA(0): Setting mode "NULL"
[   148.505] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   148.506] (II) modeset(G0): Printing DDC gathered Modelines:
[   148.506] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   148.509] (II) systemd-logind: got resume for 13:73
[   148.525] (II) systemd-logind: got pause for 13:72
[   148.525] (II) systemd-logind: got pause for 13:74
[   148.525] (II) systemd-logind: got pause for 13:64
[   148.525] (II) systemd-logind: got pause for 226:0
[   148.525] (II) systemd-logind: got pause for 13:78
[   148.525] (II) systemd-logind: got pause for 13:67
[   148.525] (II) systemd-logind: got pause for 13:66
[   148.525] (II) systemd-logind: got pause for 226:1
[   148.525] (II) systemd-logind: got pause for 13:73
[   148.583] (II) systemd-logind: got resume for 13:72
[   148.623] (II) systemd-logind: got resume for 13:74
[   148.650] (II) systemd-logind: got resume for 13:64
[   148.650] (II) systemd-logind: got resume for 226:0
[   148.676] (II) systemd-logind: got resume for 13:78
[   148.703] (II) systemd-logind: got resume for 13:67
[   148.730] (II) systemd-logind: got resume for 13:66
[   148.730] (II) systemd-logind: got resume for 226:1
[   148.730] (II) Open ACPI successful (/var/run/acpid.socket)
[   148.768] (II) NVIDIA(0): Setting mode "NULL"
[   148.772] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   148.772] (II) modeset(G0): Printing DDC gathered Modelines:
[   148.772] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   148.776] (II) systemd-logind: got resume for 13:73
[   148.798] (II) systemd-logind: got pause for 13:72
[   148.798] (II) systemd-logind: got pause for 13:74
[   148.798] (II) systemd-logind: got pause for 13:64
[   148.798] (II) systemd-logind: got pause for 226:0
[   148.798] (II) systemd-logind: got pause for 13:78
[   148.798] (II) systemd-logind: got pause for 13:67
[   148.798] (II) systemd-logind: got pause for 13:66
[   148.798] (II) systemd-logind: got pause for 226:1
[   148.798] (II) systemd-logind: got pause for 13:73
[   148.843] (II) systemd-logind: got resume for 13:72
[   148.863] (II) systemd-logind: got resume for 13:74
[   148.890] (II) systemd-logind: got resume for 13:64
[   148.890] (II) systemd-logind: got resume for 226:0
[   148.916] (II) systemd-logind: got resume for 13:78
[   148.941] (II) systemd-logind: got resume for 13:67
[   148.970] (II) systemd-logind: got resume for 13:66
[   148.970] (II) systemd-logind: got resume for 226:1
[   148.970] (II) Open ACPI successful (/var/run/acpid.socket)
[   149.007] (II) NVIDIA(0): Setting mode "NULL"
[   149.012] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   149.012] (II) modeset(G0): Printing DDC gathered Modelines:
[   149.012] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   149.016] (II) systemd-logind: got resume for 13:73
[   149.037] (II) systemd-logind: got pause for 13:72
[   149.037] (II) systemd-logind: got pause for 13:74
[   149.037] (II) systemd-logind: got pause for 13:64
[   149.037] (II) systemd-logind: got pause for 226:0
[   149.037] (II) systemd-logind: got pause for 13:78
[   149.037] (II) systemd-logind: got pause for 13:67
[   149.037] (II) systemd-logind: got pause for 13:66
[   149.037] (II) systemd-logind: got pause for 226:1
[   149.037] (II) systemd-logind: got pause for 13:73
[   149.063] (II) systemd-logind: got resume for 13:72
[   149.116] (II) systemd-logind: got resume for 13:74
[   149.156] (II) systemd-logind: got resume for 13:64
[   149.157] (II) systemd-logind: got resume for 226:0
[   149.183] (II) systemd-logind: got resume for 13:78
[   149.210] (II) systemd-logind: got resume for 13:67
[   149.237] (II) systemd-logind: got resume for 13:66
[   149.237] (II) systemd-logind: got resume for 226:1
[   149.237] (II) Open ACPI successful (/var/run/acpid.socket)
[   149.275] (II) NVIDIA(0): Setting mode "NULL"
[   149.279] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   149.279] (II) modeset(G0): Printing DDC gathered Modelines:
[   149.279] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   149.283] (II) systemd-logind: got resume for 13:73
[   149.305] (II) systemd-logind: got pause for 13:72
[   149.305] (II) systemd-logind: got pause for 13:74
[   149.305] (II) systemd-logind: got pause for 13:64
[   149.305] (II) systemd-logind: got pause for 226:0
[   149.305] (II) systemd-logind: got pause for 13:78
[   149.305] (II) systemd-logind: got pause for 13:67
[   149.305] (II) systemd-logind: got pause for 13:66
[   149.305] (II) systemd-logind: got pause for 226:1
[   149.306] (II) systemd-logind: got pause for 13:73
[   149.356] (II) systemd-logind: got resume for 13:72
[   149.383] (II) systemd-logind: got resume for 13:74
[   149.410] (II) systemd-logind: got resume for 13:64
[   149.410] (II) systemd-logind: got resume for 226:0
[   149.436] (II) systemd-logind: got resume for 13:78
[   149.463] (II) systemd-logind: got resume for 13:67
[   149.490] (II) systemd-logind: got resume for 13:66
[   149.490] (II) systemd-logind: got resume for 226:1
[   149.490] (II) Open ACPI successful (/var/run/acpid.socket)
[   149.527] (II) NVIDIA(0): Setting mode "NULL"
[   149.532] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   149.532] (II) modeset(G0): Printing DDC gathered Modelines:
[   149.532] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   149.536] (II) systemd-logind: got resume for 13:73
[   149.543] (II) systemd-logind: got pause for 13:72
[   149.543] (II) systemd-logind: got pause for 13:74
[   149.543] (II) systemd-logind: got pause for 13:64
[   149.543] (II) systemd-logind: got pause for 226:0
[   149.543] (II) systemd-logind: got pause for 13:78
[   149.543] (II) systemd-logind: got pause for 13:67
[   149.543] (II) systemd-logind: got pause for 13:66
[   149.543] (II) systemd-logind: got pause for 226:1
[   149.543] (II) systemd-logind: got pause for 13:73
[   149.596] (II) systemd-logind: got resume for 13:72
[   149.623] (II) systemd-logind: got resume for 13:74
[   149.650] (II) systemd-logind: got resume for 13:64
[   149.650] (II) systemd-logind: got resume for 226:0
[   149.690] (II) systemd-logind: got resume for 13:78
[   149.716] (II) systemd-logind: got resume for 13:67
[   149.743] (II) systemd-logind: got resume for 13:66
[   149.743] (II) systemd-logind: got resume for 226:1
[   149.743] (II) Open ACPI successful (/var/run/acpid.socket)
[   149.781] (II) NVIDIA(0): Setting mode "NULL"
[   149.786] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   149.786] (II) modeset(G0): Printing DDC gathered Modelines:
[   149.786] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   149.790] (II) systemd-logind: got resume for 13:73
[   149.800] (II) systemd-logind: got pause for 13:72
[   149.800] (II) systemd-logind: got pause for 13:74
[   149.800] (II) systemd-logind: got pause for 13:64
[   149.800] (II) systemd-logind: got pause for 226:0
[   149.800] (II) systemd-logind: got pause for 13:78
[   149.800] (II) systemd-logind: got pause for 13:67
[   149.801] (II) systemd-logind: got pause for 13:66
[   149.801] (II) systemd-logind: got pause for 226:1
[   149.801] (II) systemd-logind: got pause for 13:73
[   149.836] (II) systemd-logind: got resume for 13:72
[   149.850] (II) systemd-logind: got resume for 13:74
[   149.876] (II) systemd-logind: got resume for 13:64
[   149.876] (II) systemd-logind: got resume for 226:0
[   149.903] (II) systemd-logind: got resume for 13:78
[   149.930] (II) systemd-logind: got resume for 13:67
[   149.957] (II) systemd-logind: got resume for 13:66
[   149.957] (II) systemd-logind: got resume for 226:1
[   149.957] (II) Open ACPI successful (/var/run/acpid.socket)
[   149.994] (II) NVIDIA(0): Setting mode "NULL"
[   149.999] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   149.999] (II) modeset(G0): Printing DDC gathered Modelines:
[   149.999] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   150.003] (II) systemd-logind: got resume for 13:73
[   150.011] (II) systemd-logind: got pause for 13:72
[   150.011] (II) systemd-logind: got pause for 13:74
[   150.011] (II) systemd-logind: got pause for 13:64
[   150.011] (II) systemd-logind: got pause for 226:0
[   150.011] (II) systemd-logind: got pause for 13:78
[   150.011] (II) systemd-logind: got pause for 13:67
[   150.011] (II) systemd-logind: got pause for 13:66
[   150.011] (II) systemd-logind: got pause for 226:1
[   150.011] (II) systemd-logind: got pause for 13:73
[   150.036] (II) systemd-logind: got resume for 13:72
[   150.063] (II) systemd-logind: got resume for 13:74
[   150.103] (II) systemd-logind: got resume for 13:64
[   150.103] (II) systemd-logind: got resume for 226:0
[   150.130] (II) systemd-logind: got resume for 13:78
[   150.156] (II) systemd-logind: got resume for 13:67
[   150.183] (II) systemd-logind: got resume for 13:66
[   150.183] (II) systemd-logind: got resume for 226:1
[   150.183] (II) Open ACPI successful (/var/run/acpid.socket)
[   150.221] (II) NVIDIA(0): Setting mode "NULL"
[   150.226] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   150.226] (II) modeset(G0): Printing DDC gathered Modelines:
[   150.226] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   150.229] (II) systemd-logind: got resume for 13:73
[   150.249] (II) systemd-logind: got pause for 13:72
[   150.249] (II) systemd-logind: got pause for 13:74
[   150.249] (II) systemd-logind: got pause for 13:64
[   150.249] (II) systemd-logind: got pause for 226:0
[   150.249] (II) systemd-logind: got pause for 13:78
[   150.249] (II) systemd-logind: got pause for 13:67
[   150.249] (II) systemd-logind: got pause for 13:66
[   150.249] (II) systemd-logind: got pause for 226:1
[   150.249] (II) systemd-logind: got pause for 13:73
[   150.303] (II) systemd-logind: got resume for 13:72
[   150.356] (II) systemd-logind: got resume for 13:74
[   150.383] (II) systemd-logind: got resume for 13:64
[   150.383] (II) systemd-logind: got resume for 226:0
[   150.410] (II) systemd-logind: got resume for 13:78
[   150.436] (II) systemd-logind: got resume for 13:67
[   150.463] (II) systemd-logind: got resume for 13:66
[   150.463] (II) systemd-logind: got resume for 226:1
[   150.463] (II) Open ACPI successful (/var/run/acpid.socket)
[   150.501] (II) NVIDIA(0): Setting mode "NULL"
[   150.506] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   150.506] (II) modeset(G0): Printing DDC gathered Modelines:
[   150.506] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   150.509] (II) systemd-logind: got resume for 13:73
[   150.522] (II) systemd-logind: got pause for 13:72
[   150.522] (II) systemd-logind: got pause for 13:74
[   150.522] (II) systemd-logind: got pause for 13:64
[   150.522] (II) systemd-logind: got pause for 226:0
[   150.522] (II) systemd-logind: got pause for 13:78
[   150.522] (II) systemd-logind: got pause for 13:67
[   150.522] (II) systemd-logind: got pause for 13:66
[   150.522] (II) systemd-logind: got pause for 226:1
[   150.522] (II) systemd-logind: got pause for 13:73
[   150.556] (II) systemd-logind: got resume for 13:72
[   150.583] (II) systemd-logind: got resume for 13:74
[   150.610] (II) systemd-logind: got resume for 13:64
[   150.610] (II) systemd-logind: got resume for 226:0
[   150.636] (II) systemd-logind: got resume for 13:78
[   150.663] (II) systemd-logind: got resume for 13:67
[   150.689] (II) systemd-logind: got resume for 13:66
[   150.689] (II) systemd-logind: got resume for 226:1
[   150.689] (II) Open ACPI successful (/var/run/acpid.socket)
[   150.727] (II) NVIDIA(0): Setting mode "NULL"
[   150.731] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   150.731] (II) modeset(G0): Printing DDC gathered Modelines:
[   150.731] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   150.735] (II) systemd-logind: got resume for 13:73
[   150.749] (II) systemd-logind: got pause for 13:72
[   150.749] (II) systemd-logind: got pause for 13:74
[   150.749] (II) systemd-logind: got pause for 13:64
[   150.749] (II) systemd-logind: got pause for 226:0
[   150.749] (II) systemd-logind: got pause for 13:78
[   150.749] (II) systemd-logind: got pause for 13:67
[   150.749] (II) systemd-logind: got pause for 13:66
[   150.749] (II) systemd-logind: got pause for 226:1
[   150.749] (II) systemd-logind: got pause for 13:73
[   150.797] (II) systemd-logind: got resume for 13:72
[   150.823] (II) systemd-logind: got resume for 13:74
[   150.850] (II) systemd-logind: got resume for 13:64
[   150.850] (II) systemd-logind: got resume for 226:0
[   150.876] (II) systemd-logind: got resume for 13:78
[   150.900] (II) systemd-logind: got resume for 13:67
[   150.930] (II) systemd-logind: got resume for 13:66
[   150.930] (II) systemd-logind: got resume for 226:1
[   150.930] (II) Open ACPI successful (/var/run/acpid.socket)
[   150.968] (II) NVIDIA(0): Setting mode "NULL"
[   150.972] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   150.972] (II) modeset(G0): Printing DDC gathered Modelines:
[   150.972] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   150.976] (II) systemd-logind: got resume for 13:73
[   150.988] (II) systemd-logind: got pause for 13:72
[   150.988] (II) systemd-logind: got pause for 13:74
[   150.988] (II) systemd-logind: got pause for 13:64
[   150.988] (II) systemd-logind: got pause for 226:0
[   150.988] (II) systemd-logind: got pause for 13:78
[   150.988] (II) systemd-logind: got pause for 13:67
[   150.988] (II) systemd-logind: got pause for 13:66
[   150.989] (II) systemd-logind: got pause for 226:1
[   150.989] (II) systemd-logind: got pause for 13:73
[   151.023] (II) systemd-logind: got resume for 13:72
[   151.050] (II) systemd-logind: got resume for 13:74
[   151.076] (II) systemd-logind: got resume for 13:64
[   151.077] (II) systemd-logind: got resume for 226:0
[   151.103] (II) systemd-logind: got resume for 13:78
[   151.130] (II) systemd-logind: got resume for 13:67
[   151.156] (II) systemd-logind: got resume for 13:66
[   151.157] (II) systemd-logind: got resume for 226:1
[   151.157] (II) Open ACPI successful (/var/run/acpid.socket)
[   151.194] (II) NVIDIA(0): Setting mode "NULL"
[   151.199] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   151.199] (II) modeset(G0): Printing DDC gathered Modelines:
[   151.199] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   151.208] (II) systemd-logind: got resume for 13:73
[   151.208] (II) systemd-logind: got pause for 13:72
[   151.208] (II) systemd-logind: got pause for 13:74
[   151.208] (II) systemd-logind: got pause for 13:64
[   151.208] (II) systemd-logind: got pause for 226:0
[   151.208] (II) systemd-logind: got pause for 13:78
[   151.208] (II) systemd-logind: got pause for 13:67
[   151.208] (II) systemd-logind: got pause for 13:66
[   151.208] (II) systemd-logind: got pause for 226:1
[   151.208] (II) systemd-logind: got pause for 13:73
[   151.263] (II) systemd-logind: got resume for 13:72
[   151.294] (II) systemd-logind: got resume for 13:74
[   151.330] (II) systemd-logind: got resume for 13:64
[   151.330] (II) systemd-logind: got resume for 226:0
[   151.356] (II) systemd-logind: got resume for 13:78
[   151.383] (II) systemd-logind: got resume for 13:67
[   151.410] (II) systemd-logind: got resume for 13:66
[   151.410] (II) systemd-logind: got resume for 226:1
[   151.410] (II) Open ACPI successful (/var/run/acpid.socket)
[   151.448] (II) NVIDIA(0): Setting mode "NULL"
[   151.453] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   151.453] (II) modeset(G0): Printing DDC gathered Modelines:
[   151.453] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   151.457] (II) systemd-logind: got resume for 13:73
[   151.476] (II) systemd-logind: got pause for 13:72
[   151.477] (II) systemd-logind: got pause for 13:74
[   151.477] (II) systemd-logind: got pause for 13:64
[   151.477] (II) systemd-logind: got pause for 226:0
[   151.477] (II) systemd-logind: got pause for 13:78
[   151.477] (II) systemd-logind: got pause for 13:67
[   151.477] (II) systemd-logind: got pause for 13:66
[   151.477] (II) systemd-logind: got pause for 226:1
[   151.477] (II) systemd-logind: got pause for 13:73
[   151.543] (II) systemd-logind: got resume for 13:72
[   151.570] (II) systemd-logind: got resume for 13:74
[   151.597] (II) systemd-logind: got resume for 13:64
[   151.597] (II) systemd-logind: got resume for 226:0
[   151.623] (II) systemd-logind: got resume for 13:78
[   151.650] (II) systemd-logind: got resume for 13:67
[   151.677] (II) systemd-logind: got resume for 13:66
[   151.677] (II) systemd-logind: got resume for 226:1
[   151.677] (II) Open ACPI successful (/var/run/acpid.socket)
[   151.715] (II) NVIDIA(0): Setting mode "NULL"
[   151.720] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   151.720] (II) modeset(G0): Printing DDC gathered Modelines:
[   151.720] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   151.724] (II) systemd-logind: got resume for 13:73
[   151.744] (II) systemd-logind: got pause for 13:72
[   151.744] (II) systemd-logind: got pause for 13:74
[   151.744] (II) systemd-logind: got pause for 13:64
[   151.744] (II) systemd-logind: got pause for 226:0
[   151.744] (II) systemd-logind: got pause for 13:78
[   151.744] (II) systemd-logind: got pause for 13:67
[   151.744] (II) systemd-logind: got pause for 13:66
[   151.744] (II) systemd-logind: got pause for 226:1
[   151.744] (II) systemd-logind: got pause for 13:73
[   151.796] (II) systemd-logind: got resume for 13:72
[   151.823] (II) systemd-logind: got resume for 13:74
[   151.863] (II) systemd-logind: got resume for 13:64
[   151.863] (II) systemd-logind: got resume for 226:0
[   151.883] (II) systemd-logind: got resume for 13:78
[   151.916] (II) systemd-logind: got resume for 13:67
[   151.943] (II) systemd-logind: got resume for 13:66
[   151.943] (II) systemd-logind: got resume for 226:1
[   151.943] (II) Open ACPI successful (/var/run/acpid.socket)
[   151.981] (II) NVIDIA(0): Setting mode "NULL"
[   151.986] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   151.986] (II) modeset(G0): Printing DDC gathered Modelines:
[   151.986] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   151.991] (II) systemd-logind: got resume for 13:73
[   152.011] (II) systemd-logind: got pause for 13:72
[   152.011] (II) systemd-logind: got pause for 13:74
[   152.011] (II) systemd-logind: got pause for 13:64
[   152.011] (II) systemd-logind: got pause for 226:0
[   152.011] (II) systemd-logind: got pause for 13:78
[   152.011] (II) systemd-logind: got pause for 13:67
[   152.011] (II) systemd-logind: got pause for 13:66
[   152.011] (II) systemd-logind: got pause for 226:1
[   152.011] (II) systemd-logind: got pause for 13:73
[   152.063] (II) systemd-logind: got resume for 13:72
[   152.103] (II) systemd-logind: got resume for 13:74
[   152.130] (II) systemd-logind: got resume for 13:64
[   152.130] (II) systemd-logind: got resume for 226:0
[   152.156] (II) systemd-logind: got resume for 13:78
[   152.183] (II) systemd-logind: got resume for 13:67
[   152.210] (II) systemd-logind: got resume for 13:66
[   152.210] (II) systemd-logind: got resume for 226:1
[   152.210] (II) Open ACPI successful (/var/run/acpid.socket)
[   152.248] (II) NVIDIA(0): Setting mode "NULL"
[   152.253] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   152.253] (II) modeset(G0): Printing DDC gathered Modelines:
[   152.253] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   152.257] (II) systemd-logind: got resume for 13:73
[   152.270] (II) systemd-logind: got pause for 13:72
[   152.270] (II) systemd-logind: got pause for 13:74
[   152.270] (II) systemd-logind: got pause for 13:64
[   152.270] (II) systemd-logind: got pause for 226:0
[   152.270] (II) systemd-logind: got pause for 13:78
[   152.270] (II) systemd-logind: got pause for 13:67
[   152.270] (II) systemd-logind: got pause for 13:66
[   152.270] (II) systemd-logind: got pause for 226:1
[   152.270] (II) systemd-logind: got pause for 13:73
[   152.290] (II) systemd-logind: got resume for 13:72
[   152.316] (II) systemd-logind: got resume for 13:74
[   152.347] (II) systemd-logind: got resume for 13:64
[   152.347] (II) systemd-logind: got resume for 226:0
[   152.383] (II) systemd-logind: got resume for 13:78
[   152.410] (II) systemd-logind: got resume for 13:67
[   152.437] (II) systemd-logind: got resume for 13:66
[   152.437] (II) systemd-logind: got resume for 226:1
[   152.437] (II) Open ACPI successful (/var/run/acpid.socket)
[   152.475] (II) NVIDIA(0): Setting mode "NULL"
[   152.479] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   152.479] (II) modeset(G0): Printing DDC gathered Modelines:
[   152.479] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   152.484] (II) systemd-logind: got resume for 13:73
[   152.495] (II) systemd-logind: got pause for 13:72
[   152.495] (II) systemd-logind: got pause for 13:74
[   152.495] (II) systemd-logind: got pause for 13:64
[   152.495] (II) systemd-logind: got pause for 226:0
[   152.495] (II) systemd-logind: got pause for 13:78
[   152.495] (II) systemd-logind: got pause for 13:67
[   152.496] (II) systemd-logind: got pause for 13:66
[   152.496] (II) systemd-logind: got pause for 226:1
[   152.496] (II) systemd-logind: got pause for 13:73
[   152.543] (II) systemd-logind: got resume for 13:72
[   152.596] (II) systemd-logind: got resume for 13:74
[   152.623] (II) systemd-logind: got resume for 13:64
[   152.623] (II) systemd-logind: got resume for 226:0
[   152.650] (II) systemd-logind: got resume for 13:78
[   152.676] (II) systemd-logind: got resume for 13:67
[   152.703] (II) systemd-logind: got resume for 13:66
[   152.703] (II) systemd-logind: got resume for 226:1
[   152.703] (II) Open ACPI successful (/var/run/acpid.socket)
[   152.742] (II) NVIDIA(0): Setting mode "NULL"
[   152.747] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   152.747] (II) modeset(G0): Printing DDC gathered Modelines:
[   152.747] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   152.751] (II) systemd-logind: got resume for 13:73
[   152.762] (II) systemd-logind: got pause for 13:72
[   152.762] (II) systemd-logind: got pause for 13:74
[   152.762] (II) systemd-logind: got pause for 13:64
[   152.762] (II) systemd-logind: got pause for 226:0
[   152.762] (II) systemd-logind: got pause for 13:78
[   152.762] (II) systemd-logind: got pause for 13:67
[   152.762] (II) systemd-logind: got pause for 13:66
[   152.762] (II) systemd-logind: got pause for 226:1
[   152.762] (II) systemd-logind: got pause for 13:73
[   152.820] (II) systemd-logind: got resume for 13:72
[   152.846] (II) systemd-logind: got resume for 13:74
[   152.863] (II) systemd-logind: got resume for 13:64
[   152.863] (II) systemd-logind: got resume for 226:0
[   152.890] (II) systemd-logind: got resume for 13:78
[   152.916] (II) systemd-logind: got resume for 13:67
[   152.943] (II) systemd-logind: got resume for 13:66
[   152.943] (II) systemd-logind: got resume for 226:1
[   152.943] (II) Open ACPI successful (/var/run/acpid.socket)
[   152.981] (II) NVIDIA(0): Setting mode "NULL"
[   152.986] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   152.986] (II) modeset(G0): Printing DDC gathered Modelines:
[   152.986] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   152.996] (II) systemd-logind: got resume for 13:73
[   152.996] (II) systemd-logind: got pause for 13:72
[   152.996] (II) systemd-logind: got pause for 13:74
[   152.996] (II) systemd-logind: got pause for 13:64
[   152.996] (II) systemd-logind: got pause for 226:0
[   152.996] (II) systemd-logind: got pause for 13:78
[   152.996] (II) systemd-logind: got pause for 13:67
[   152.996] (II) systemd-logind: got pause for 13:66
[   152.996] (II) systemd-logind: got pause for 226:1
[   152.996] (II) systemd-logind: got pause for 13:73
[   153.023] (II) systemd-logind: got resume for 13:72
[   153.050] (II) systemd-logind: got resume for 13:74
[   153.076] (II) systemd-logind: got resume for 13:64
[   153.077] (II) systemd-logind: got resume for 226:0
[   153.103] (II) systemd-logind: got resume for 13:78
[   153.130] (II) systemd-logind: got resume for 13:67
[   153.157] (II) systemd-logind: got resume for 13:66
[   153.157] (II) systemd-logind: got resume for 226:1
[   153.157] (II) Open ACPI successful (/var/run/acpid.socket)
[   153.195] (II) NVIDIA(0): Setting mode "NULL"
[   153.200] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   153.200] (II) modeset(G0): Printing DDC gathered Modelines:
[   153.200] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   153.204] (II) systemd-logind: got resume for 13:73
[   153.223] (II) systemd-logind: got pause for 13:72
[   153.223] (II) systemd-logind: got pause for 13:74
[   153.223] (II) systemd-logind: got pause for 13:64
[   153.223] (II) systemd-logind: got pause for 226:0
[   153.223] (II) systemd-logind: got pause for 13:78
[   153.223] (II) systemd-logind: got pause for 13:67
[   153.223] (II) systemd-logind: got pause for 13:66
[   153.223] (II) systemd-logind: got pause for 226:1
[   153.223] (II) systemd-logind: got pause for 13:73
[   153.263] (II) systemd-logind: got resume for 13:72
[   153.303] (II) systemd-logind: got resume for 13:74
[   153.336] (II) systemd-logind: got resume for 13:64
[   153.337] (II) systemd-logind: got resume for 226:0
[   153.370] (II) systemd-logind: got resume for 13:78
[   153.396] (II) systemd-logind: got resume for 13:67
[   153.423] (II) systemd-logind: got resume for 13:66
[   153.423] (II) systemd-logind: got resume for 226:1
[   153.423] (II) Open ACPI successful (/var/run/acpid.socket)
[   153.461] (II) NVIDIA(0): Setting mode "NULL"
[   153.466] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   153.466] (II) modeset(G0): Printing DDC gathered Modelines:
[   153.466] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   153.470] (II) systemd-logind: got resume for 13:73
[   153.492] (II) systemd-logind: got pause for 13:72
[   153.492] (II) systemd-logind: got pause for 13:74
[   153.492] (II) systemd-logind: got pause for 13:64
[   153.492] (II) systemd-logind: got pause for 226:0
[   153.492] (II) systemd-logind: got pause for 13:78
[   153.492] (II) systemd-logind: got pause for 13:67
[   153.492] (II) systemd-logind: got pause for 13:66
[   153.492] (II) systemd-logind: got pause for 226:1
[   153.492] (II) systemd-logind: got pause for 13:73
[   153.530] (II) systemd-logind: got resume for 13:72
[   153.560] (II) systemd-logind: got resume for 13:74
[   153.597] (II) systemd-logind: got resume for 13:64
[   153.597] (II) systemd-logind: got resume for 226:0
[   153.623] (II) systemd-logind: got resume for 13:78
[   153.650] (II) systemd-logind: got resume for 13:67
[   153.677] (II) systemd-logind: got resume for 13:66
[   153.677] (II) systemd-logind: got resume for 226:1
[   153.677] (II) Open ACPI successful (/var/run/acpid.socket)
[   153.715] (II) NVIDIA(0): Setting mode "NULL"
[   153.720] (II) modeset(G0): EDID vendor "SDC", prod id 12876
[   153.720] (II) modeset(G0): Printing DDC gathered Modelines:
[   153.720] (II) modeset(G0): Modeline "1920x1080"x0.0  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[   153.726] (II) evdev: MSI WMI hotkeys: Close
[   153.726] (II) UnloadModule: "evdev"
[   153.726] (II) systemd-logind: releasing fd for 13:72
[   153.727] (EE) systemd-logind: failed to release device: Connection was disconnected before a reply was received
[   153.727] (II) evdev: ETPS/2 Elantech Touchpad: Close
[   153.727] (II) UnloadModule: "evdev"
[   153.727] (II) systemd-logind: releasing fd for 13:78
[   153.727] (EE) systemd-logind: failed to release device: Connection is closed
[   153.727] (II) evdev: AT Translated Set 2 keyboard: Close
[   153.727] (II) UnloadModule: "evdev"
[   153.727] (II) systemd-logind: releasing fd for 13:64
[   153.727] (EE) systemd-logind: failed to release device: Connection is closed
[   153.727] (II) evdev: Power Button: Close
[   153.727] (II) UnloadModule: "evdev"
[   153.727] (II) systemd-logind: releasing fd for 13:66
[   153.727] (EE) systemd-logind: failed to release device: Connection is closed
[   153.727] (II) evdev: Video Bus: Close
[   153.727] (II) UnloadModule: "evdev"
[   153.727] (II) systemd-logind: releasing fd for 13:74
[   153.727] (EE) systemd-logind: failed to release device: Connection is closed
[   153.727] (II) evdev: Power Button: Close
[   153.727] (II) UnloadModule: "evdev"
[   153.727] (II) systemd-logind: releasing fd for 13:67
[   153.727] (EE) systemd-logind: failed to release device: Connection is closed
[   153.727] (II) evdev: Video Bus: Close
[   153.727] (II) UnloadModule: "evdev"
[   153.727] (II) systemd-logind: releasing fd for 13:73
[   153.727] (EE) systemd-logind: failed to release device: Connection is closed
[   153.756] (II) NVIDIA(GPU-0): Deleting GPU-0
[   153.757] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[   153.757] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[   153.757] (EE)
Fatal server error:
[   153.757] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[   153.757] (EE)
[   153.757] (EE)
Please consult the The X.Org Foundation support
     at http://wiki.x.org
for help.
[   153.757] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[   153.757] (EE)
[   153.757] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[   153.757] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[   153.757] (EE)
FatalError re-entered, aborting
[   153.757] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[   153.757] (EE)

If you have any idea what I clould try or look for please help me! smile

Offline

#10 2015-10-01 19:09:17

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

Hey guys smile

I'm having a lot of trouble getting an graphical interface to my Notebook on Arch.
The steps I took until now are described in this forum question. I decided to move the topic to this ctagory now.

It's a hybrid graphics system of an Intel GPU and an NVIDIA GPU. Thats why I followed the steps in the NVIDIA Optimus Wiki Page.
I want to use the propertitary nvidia drivers and GNOME so I installed:

nvidia
intel-ucode
xorg-server xorg-xinit xorg-utils xorg-server-utils
gnome gnome-extra

and I added GNOME to systemd:

systemctl enable gdm

When booting, with the NVIDIA GPU configuread as main device, the login screen is showed, but after login in, the screen gets black and stays like that.
If I use the Intel GPU as main device, everything works.

My current X config:

/etc/X11/xorg.conf
----------------------------
Section "ServerLayout"
    Identifier "layout"
    Screen 0 "nvidia"
    Inactive "intel"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard0"
    Driver         "keyboard"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "Device"
    Identifier "nvidia"
    Driver "nvidia"
    BusID "PCI:1:0:0"
EndSection
Section "Screen"
    Identifier "nvidia"
    Device "nvidia"
    Option "AllowEmptyInitialConfiguration" "Yes"
EndSection

Section "Device"
    Identifier "intel"
    Driver "modesetting"
    BusID "PCI:0:2:0"
    Option "AccelMethod" "none"
EndSection

Section "Screen"
    Identifier "intel"
    Device "intel"
EndSection

Section "Files"
#    ModulePath "/usr/lib/nvidia/xorg"
    ModulePath "/usr/lib/xorg/modules"
EndSection

I started GNOME also via the xstart command to genrate a Xorg.0.log:

/var/log/Xorg.0.log
------------------------------
[    44.552]
X.Org X Server 1.17.2
Release Date: 2015-06-16
[    44.552] X Protocol Version 11, Revision 0
[    44.552] Build Operating System: Linux 4.0.4-2-ARCH x86_64
[    44.552] Current Operating System: Linux Workbook 4.1.6-1-ARCH #1 SMP PREEMPT Mon Aug 17 08:52:28 CEST 2015 x86_64
[    44.552] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=69480d8f-cf35-4658-a307-6bdbb5dc6887 rw cryptdevice=/dev/sdb4:cryptroot root=/dev/mapper/cryptroot quiet
[    44.552] Build Date: 17 July 2015  05:38:19PM
[    44.552] 
[    44.552] Current version of pixman: 0.32.6
[    44.552]     Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
[    44.552] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    44.552] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct  1 20:46:57 2015
[    44.552] (==) Using config file: "/etc/X11/xorg.conf"
[    44.552] (==) Using config directory: "/etc/X11/xorg.conf.d"
[    44.552] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    44.552] (==) ServerLayout "layout"
[    44.552] (**) |-->Screen "intel" (0)
[    44.552] (**) |   |-->Monitor "<default monitor>"
[    44.552] (**) |   |-->Device "intel"
[    44.552] (==) No monitor specified for screen "intel".
    Using a default monitor configuration.
[    44.552] (**) |-->Inactive Device "nvidia"
[    44.552] (**) |-->Input Device "Keyboard0"
[    44.552] (**) |-->Input Device "Mouse0"
[    44.552] (==) Automatically adding devices
[    44.552] (==) Automatically enabling devices
[    44.552] (==) Automatically adding GPU devices
[    44.552] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[    44.552]     Entry deleted from font path.
[    44.552]     (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[    44.552] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[    44.552]     Entry deleted from font path.
[    44.552]     (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[    44.552] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/OTF/,
    /usr/share/fonts/Type1/
[    44.552] (**) ModulePath set to "/usr/lib64/nvidia/xorg,/usr/lib/xorg/modules"
[    44.552] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    44.552] (WW) Disabling Keyboard0
[    44.552] (WW) Disabling Mouse0
[    44.552] (II) Loader magic: 0x817d60
[    44.552] (II) Module ABI versions:
[    44.552]     X.Org ANSI C Emulation: 0.4
[    44.552]     X.Org Video Driver: 19.0
[    44.552]     X.Org XInput driver : 21.1
[    44.552]     X.Org Server Extension : 9.0
[    44.554] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c3
[    44.554] (II) xfree86: Adding drm device (/dev/dri/card1)
[    44.554] (II) systemd-logind: got fd for /dev/dri/card1 226:1 fd 9 paused 0
[    44.555] (II) xfree86: Adding drm device (/dev/dri/card0)
[    44.555] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 10 paused 0
[    44.556] (--) PCI:*(0:0:2:0) 8086:0416:1462:1107 rev 6, Mem @ 0xf7400000/4194304, 0xd0000000/268435456, I/O @ 0x0000f000/64
[    44.556] (--) PCI: (0:1:0:0) 10de:1392:1462:1107 rev 162, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf0000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[    44.556] (II) Open ACPI successful (/var/run/acpid.socket)
[    44.556] (II) LoadModule: "glx"
[    44.556] (II) Loading /usr/lib64/nvidia/xorg/modules/extensions/libglx.so
[    44.563] (II) Module glx: vendor="NVIDIA Corporation"
[    44.563]     compiled for 4.0.2, module version = 1.0.0
[    44.563]     Module class: X.Org Server Extension
[    44.563] (II) NVIDIA GLX Module  352.41  Fri Aug 21 22:40:16 PDT 2015
[    44.563] (II) LoadModule: "modesetting"
[    44.563] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    44.563] (II) Module modesetting: vendor="X.Org Foundation"
[    44.563]     compiled for 1.17.2, module version = 1.17.2
[    44.563]     Module class: X.Org Video Driver
[    44.563]     ABI class: X.Org Video Driver, version 19.0
[    44.563] (II) LoadModule: "nvidia"
[    44.563] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[    44.564] (II) Module nvidia: vendor="NVIDIA Corporation"
[    44.564]     compiled for 4.0.2, module version = 1.0.0
[    44.564]     Module class: X.Org Video Driver
[    44.564] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    44.564] (II) NVIDIA dlloader X Driver  352.41  Fri Aug 21 22:14:01 PDT 2015
[    44.564] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    44.564] (++) using VT number 2

[    44.564] (II) modeset(0): using drv /dev/dri/card0
[    44.564] (II) Loading sub module "fb"
[    44.564] (II) LoadModule: "fb"
[    44.564] (II) Loading /usr/lib/xorg/modules/libfb.so
[    44.564] (II) Module fb: vendor="X.Org Foundation"
[    44.564]     compiled for 1.17.2, module version = 1.0.0
[    44.564]     ABI class: X.Org ANSI C Emulation, version 0.4
[    44.564] (II) Loading sub module "wfb"
[    44.564] (II) LoadModule: "wfb"
[    44.564] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    44.564] (II) Module wfb: vendor="X.Org Foundation"
[    44.564]     compiled for 1.17.2, module version = 1.0.0
[    44.564]     ABI class: X.Org ANSI C Emulation, version 0.4
[    44.564] (II) Loading sub module "ramdac"
[    44.564] (II) LoadModule: "ramdac"
[    44.564] (II) Module "ramdac" already built-in
[    44.564] (II) modeset(0): Creating default Display subsection in Screen section
    "intel" for depth/fbbpp 24/32
[    44.564] (==) modeset(0): Depth 24, (==) framebuffer bpp 32
[    44.564] (**) modeset(0): Option "AccelMethod" "none"
[    44.564] (==) modeset(0): RGB weight 888
[    44.564] (==) modeset(0): Default visual is TrueColor
[    44.564] (**) modeset(0): glamor disabled
[    44.564] (II) modeset(0): ShadowFB: preferred YES, enabled YES
[    44.565] (II) modeset(0): Output eDP-0 has no monitor section
[    44.566] (II) modeset(0): Output VGA-0 has no monitor section
[    44.567] (II) modeset(0): Output HDMI-0 has no monitor section
[    44.567] (II) modeset(0): EDID for output eDP-0
[    44.567] (II) modeset(0): Manufacturer: SDC  Model: 324c  Serial#: 0
[    44.567] (II) modeset(0): Year: 2013  Week: 0
[    44.567] (II) modeset(0): EDID Version: 1.4
[    44.567] (II) modeset(0): Digital Display Input
[    44.567] (II) modeset(0): 6 bits per channel
[    44.567] (II) modeset(0): Digital interface is DisplayPort
[    44.567] (II) modeset(0): Max Image Size [cm]: horiz.: 34  vert.: 19
[    44.567] (II) modeset(0): Gamma: 2.20
[    44.567] (II) modeset(0): No DPMS capabilities specified
[    44.567] (II) modeset(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[    44.567] (II) modeset(0): First detailed timing is preferred mode
[    44.567] (II) modeset(0): Preferred mode is native pixel format and refresh rate
[    44.567] (II) modeset(0): redX: 0.620 redY: 0.355   greenX: 0.300 greenY: 0.580
[    44.567] (II) modeset(0): blueX: 0.150 blueY: 0.090   whiteX: 0.313 whiteY: 0.329
[    44.567] (II) modeset(0): Manufacturer's mask: 0
[    44.567] (II) modeset(0): Supported detailed timing:
[    44.567] (II) modeset(0): clock: 143.0 MHz   Image Size:  344 x 194 mm
[    44.567] (II) modeset(0): h_active: 1920  h_sync: 1968  h_sync_end 2000 h_blank_end 2080 h_border: 0
[    44.567] (II) modeset(0): v_active: 1080  v_sync: 1082  v_sync_end 1087 v_blanking: 1144 v_border: 0
[    44.567] (II) modeset(0): Unknown vendor-specific block f
[    44.567] (II) modeset(0):  SAMSUNG
[    44.567] (II) modeset(0):  156HL01-102
[    44.567] (II) modeset(0): EDID (in hex):
[    44.567] (II) modeset(0):     00ffffffffffff004c834c3200000000
[    44.568] (II) modeset(0):     00170104952213780ace859e5b4c9426
[    44.568] (II) modeset(0):     17505400000001010101010101010101
[    44.568] (II) modeset(0):     010101010101dc3780a0703840403020
[    44.568] (II) modeset(0):     250058c2100000190000000f00000000
[    44.568] (II) modeset(0):     00000000001e82105200000000fe0053
[    44.568] (II) modeset(0):     414d53554e470a2020202020000000fe
[    44.568] (II) modeset(0):     00313536484c30312d3130320a2000d1
[    44.568] (II) modeset(0): Printing probed modes for output eDP-0
[    44.568] (II) modeset(0): Modeline "1920x1080"x60.1  143.00  1920 1968 2000 2080  1080 1082 1087 1144 -hsync -vsync (68.8 kHz eP)
[    44.568] (II) modeset(0): Modeline "1400x1050"x60.0  122.00  1400 1488 1640 1880  1050 1052 1064 1082 +hsync +vsync (64.9 kHz d)
[    44.568] (II) modeset(0): Modeline "1280x1024"x60.0  108.00  1280 1328 1440 1688  1024 1025 1028 1066 +hsync +vsync (64.0 kHz d)
[    44.568] (II) modeset(0): Modeline "1280x960"x60.0  108.00  1280 1376 1488 1800  960 961 964 1000 +hsync +vsync (60.0 kHz d)
[    44.568] (II) modeset(0): Modeline "1024x768"x120.1  133.47  1024 1100 1212 1400  768 768 770 794 doublescan -hsync +vsync (95.3 kHz d)
[    44.568] (II) modeset(0): Modeline "1024x768"x60.0   65.00  1024 1048 1184 1344  768 771 777 806 -hsync -vsync (48.4 kHz d)
[    44.568] (II) modeset(0): Modeline "960x720"x120.0  117.00  960 1024 1128 1300  720 720 722 750 doublescan -hsync +vsync (90.0 kHz d)
[    44.568] (II) modeset(0): Modeline "928x696"x120.1  109.15  928 976 1088 1264  696 696 698 719 doublescan -hsync +vsync (86.4 kHz d)
[    44.568] (II) modeset(0): Modeline "896x672"x120.0  102.40  896 960 1060 1224  672 672 674 697 doublescan -hsync +vsync (83.7 kHz d)
[    44.568] (II) modeset(0): Modeline "800x600"x120.0   81.00  800 832 928 1080  600 600 602 625 doublescan +hsync +vsync (75.0 kHz d)
[    44.568] (II) modeset(0): Modeline "800x600"x60.3   40.00  800 840 968 1056  600 601 605 628 +hsync +vsync (37.9 kHz d)
[    44.568] (II) modeset(0): Modeline "800x600"x56.2   36.00  800 824 896 1024  600 601 603 625 +hsync +vsync (35.2 kHz d)
[    44.568] (II) modeset(0): Modeline "700x525"x120.0   61.00  700 744 820 940  525 526 532 541 doublescan +hsync +vsync (64.9 kHz d)
[    44.568] (II) modeset(0): Modeline "640x512"x120.0   54.00  640 664 720 844  512 512 514 533 doublescan +hsync +vsync (64.0 kHz d)
[    44.568] (II) modeset(0): Modeline "640x480"x120.0   54.00  640 688 744 900  480 480 482 500 doublescan +hsync +vsync (60.0 kHz d)
[    44.568] (II) modeset(0): Modeline "640x480"x59.9   25.18  640 656 752 800  480 490 492 525 -hsync -vsync (31.5 kHz d)
[    44.568] (II) modeset(0): Modeline "512x384"x120.0   32.50  512 524 592 672  384 385 388 403 doublescan -hsync -vsync (48.4 kHz d)
[    44.568] (II) modeset(0): Modeline "400x300"x120.6   20.00  400 420 484 528  300 300 302 314 doublescan +hsync +vsync (37.9 kHz d)
[    44.568] (II) modeset(0): Modeline "400x300"x112.7   18.00  400 412 448 512  300 300 301 312 doublescan +hsync +vsync (35.2 kHz d)
[    44.568] (II) modeset(0): Modeline "320x240"x120.1   12.59  320 328 376 400  240 245 246 262 doublescan -hsync -vsync (31.5 kHz d)
[    44.569] (II) modeset(0): EDID for output VGA-0
[    44.569] (II) modeset(0): EDID for output HDMI-0
[    44.569] (II) modeset(0): Output eDP-0 connected
[    44.569] (II) modeset(0): Output VGA-0 disconnected
[    44.569] (II) modeset(0): Output HDMI-0 disconnected
[    44.569] (II) modeset(0): Using exact sizes for initial modes
[    44.569] (II) modeset(0): Output eDP-0 using initial mode 1920x1080
[    44.569] (II) modeset(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
[    44.569] (==) modeset(0): DPI set to (96, 96)
[    44.569] (II) Loading sub module "fb"
[    44.569] (II) LoadModule: "fb"
[    44.569] (II) Loading /usr/lib/xorg/modules/libfb.so
[    44.569] (II) Module fb: vendor="X.Org Foundation"
[    44.569]     compiled for 1.17.2, module version = 1.0.0
[    44.569]     ABI class: X.Org ANSI C Emulation, version 0.4
[    44.569] (II) Loading sub module "shadow"
[    44.569] (II) LoadModule: "shadow"
[    44.569] (II) Loading /usr/lib/xorg/modules/libshadow.so
[    44.569] (II) Module shadow: vendor="X.Org Foundation"
[    44.569]     compiled for 1.17.2, module version = 1.1.0
[    44.569]     ABI class: X.Org ANSI C Emulation, version 0.4
[    44.569] (==) Depth 24 pixmap format is 32 bpp
[    44.570] (==) modeset(0): Backing store enabled
[    44.570] (==) modeset(0): Silken mouse enabled
[    44.570] (II) modeset(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    44.570] (==) modeset(0): DPMS enabled
[    44.586] (--) RandR disabled
[    44.589] (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
[    44.590] (II) modeset(0): Setting screen physical size to 508 x 285
[    44.611] (II) config/udev: Adding input device Power Button (/dev/input/event3)
[    44.611] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    44.611] (**) Power Button: Applying InputClass "system-keyboard"
[    44.611] (II) LoadModule: "evdev"
[    44.611] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    44.611] (II) Module evdev: vendor="X.Org Foundation"
[    44.611]     compiled for 1.17.1, module version = 2.9.2
[    44.611]     Module class: X.Org XInput Driver
[    44.611]     ABI class: X.Org XInput driver, version 21.0
[    44.612] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 17 paused 0
[    44.612] (II) Using input driver 'evdev' for 'Power Button'
[    44.612] (**) Power Button: always reports core events
[    44.612] (**) evdev: Power Button: Device: "/dev/input/event3"
[    44.612] (--) evdev: Power Button: Vendor 0 Product 0x1
[    44.612] (--) evdev: Power Button: Found keys
[    44.612] (II) evdev: Power Button: Configuring as keyboard
[    44.612] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input4/event3"
[    44.612] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    44.612] (**) Option "xkb_rules" "evdev"
[    44.612] (**) Option "xkb_model" "pc105"
[    44.612] (**) Option "xkb_layout" "de"
[    44.612] (**) Option "xkb_variant" "nodeadkeys"
[    44.624] (II) config/udev: Adding input device Video Bus (/dev/input/event10)
[    44.624] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    44.624] (**) Video Bus: Applying InputClass "system-keyboard"
[    44.624] (II) systemd-logind: got fd for /dev/input/event10 13:74 fd 18 paused 0
[    44.624] (II) Using input driver 'evdev' for 'Video Bus'
[    44.624] (**) Video Bus: always reports core events
[    44.624] (**) evdev: Video Bus: Device: "/dev/input/event10"
[    44.624] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    44.624] (--) evdev: Video Bus: Found keys
[    44.624] (II) evdev: Video Bus: Configuring as keyboard
[    44.624] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:01/input/input12/event10"
[    44.624] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    44.624] (**) Option "xkb_rules" "evdev"
[    44.624] (**) Option "xkb_model" "pc105"
[    44.624] (**) Option "xkb_layout" "de"
[    44.624] (**) Option "xkb_variant" "nodeadkeys"
[    44.625] (II) config/udev: Adding input device Lid Switch (/dev/input/event1)
[    44.625] (II) No input driver specified, ignoring this device.
[    44.625] (II) This device may have been added with another device file.
[    44.625] (II) config/udev: Adding input device Video Bus (/dev/input/event9)
[    44.625] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    44.625] (**) Video Bus: Applying InputClass "system-keyboard"
[    44.625] (II) systemd-logind: got fd for /dev/input/event9 13:73 fd 19 paused 0
[    44.625] (II) Using input driver 'evdev' for 'Video Bus'
[    44.625] (**) Video Bus: always reports core events
[    44.625] (**) evdev: Video Bus: Device: "/dev/input/event9"
[    44.625] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    44.625] (--) evdev: Video Bus: Found keys
[    44.625] (II) evdev: Video Bus: Configuring as keyboard
[    44.625] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:44/LNXVIDEO:00/input/input11/event9"
[    44.625] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 8)
[    44.625] (**) Option "xkb_rules" "evdev"
[    44.625] (**) Option "xkb_model" "pc105"
[    44.625] (**) Option "xkb_layout" "de"
[    44.625] (**) Option "xkb_variant" "nodeadkeys"
[    44.626] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    44.626] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    44.626] (**) Power Button: Applying InputClass "system-keyboard"
[    44.626] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 20 paused 0
[    44.626] (II) Using input driver 'evdev' for 'Power Button'
[    44.626] (**) Power Button: always reports core events
[    44.626] (**) evdev: Power Button: Device: "/dev/input/event2"
[    44.626] (--) evdev: Power Button: Vendor 0 Product 0x1
[    44.626] (--) evdev: Power Button: Found keys
[    44.626] (II) evdev: Power Button: Configuring as keyboard
[    44.626] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input3/event2"
[    44.626] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 9)
[    44.626] (**) Option "xkb_rules" "evdev"
[    44.626] (**) Option "xkb_model" "pc105"
[    44.626] (**) Option "xkb_layout" "de"
[    44.626] (**) Option "xkb_variant" "nodeadkeys"
[    44.627] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event11)
[    44.627] (II) No input driver specified, ignoring this device.
[    44.627] (II) This device may have been added with another device file.
[    44.627] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event12)
[    44.627] (II) No input driver specified, ignoring this device.
[    44.627] (II) This device may have been added with another device file.
[    44.627] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event13)
[    44.627] (II) No input driver specified, ignoring this device.
[    44.627] (II) This device may have been added with another device file.
[    44.627] (II) config/udev: Adding input device Logitech M705 (/dev/input/event15)
[    44.627] (**) Logitech M705: Applying InputClass "evdev pointer catchall"
[    44.628] (II) systemd-logind: got fd for /dev/input/event15 13:79 fd 21 paused 0
[    44.628] (II) Using input driver 'evdev' for 'Logitech M705'
[    44.628] (**) Logitech M705: always reports core events
[    44.628] (**) evdev: Logitech M705: Device: "/dev/input/event15"
[    44.628] (--) evdev: Logitech M705: Vendor 0x46d Product 0x101b
[    44.628] (--) evdev: Logitech M705: Found 20 mouse buttons
[    44.628] (--) evdev: Logitech M705: Found scroll wheel(s)
[    44.628] (--) evdev: Logitech M705: Found relative axes
[    44.628] (--) evdev: Logitech M705: Found x and y relative axes
[    44.628] (II) evdev: Logitech M705: Configuring as mouse
[    44.628] (II) evdev: Logitech M705: Adding scrollwheel support
[    44.628] (**) evdev: Logitech M705: YAxisMapping: buttons 4 and 5
[    44.628] (**) evdev: Logitech M705: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    44.628] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.2/0003:046D:C52B.0004/0003:046D:101B.0005/input/input16/event15"
[    44.628] (II) XINPUT: Adding extended input device "Logitech M705" (type: MOUSE, id 10)
[    44.628] (II) evdev: Logitech M705: initialized for relative axes.
[    44.628] (**) Logitech M705: (accel) keeping acceleration scheme 1
[    44.628] (**) Logitech M705: (accel) acceleration profile 0
[    44.628] (**) Logitech M705: (accel) acceleration factor: 2.000
[    44.628] (**) Logitech M705: (accel) acceleration threshold: 4
[    44.628] (II) config/udev: Adding input device Logitech M705 (/dev/input/mouse1)
[    44.628] (II) No input driver specified, ignoring this device.
[    44.628] (II) This device may have been added with another device file.
[    44.628] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
[    44.628] (II) No input driver specified, ignoring this device.
[    44.628] (II) This device may have been added with another device file.
[    44.629] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event6)
[    44.629] (II) No input driver specified, ignoring this device.
[    44.629] (II) This device may have been added with another device file.
[    44.629] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event7)
[    44.629] (II) No input driver specified, ignoring this device.
[    44.629] (II) This device may have been added with another device file.
[    44.629] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event0)
[    44.629] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    44.629] (**) AT Translated Set 2 keyboard: Applying InputClass "system-keyboard"
[    44.629] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 22 paused 0
[    44.629] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    44.629] (**) AT Translated Set 2 keyboard: always reports core events
[    44.629] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event0"
[    44.629] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    44.629] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    44.629] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    44.629] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input0/event0"
[    44.629] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[    44.629] (**) Option "xkb_rules" "evdev"
[    44.629] (**) Option "xkb_model" "pc105"
[    44.629] (**) Option "xkb_layout" "de"
[    44.629] (**) Option "xkb_variant" "nodeadkeys"
[    44.630] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/event14)
[    44.630] (**) ETPS/2 Elantech Touchpad: Applying InputClass "evdev touchpad catchall"
[    44.630] (II) systemd-logind: got fd for /dev/input/event14 13:78 fd 23 paused 0
[    44.630] (II) Using input driver 'evdev' for 'ETPS/2 Elantech Touchpad'
[    44.630] (**) ETPS/2 Elantech Touchpad: always reports core events
[    44.630] (**) evdev: ETPS/2 Elantech Touchpad: Device: "/dev/input/event14"
[    44.630] (--) evdev: ETPS/2 Elantech Touchpad: Vendor 0x2 Product 0xe
[    44.630] (--) evdev: ETPS/2 Elantech Touchpad: Found 1 mouse buttons
[    44.630] (--) evdev: ETPS/2 Elantech Touchpad: Found absolute axes
[    44.630] (--) evdev: ETPS/2 Elantech Touchpad: Found absolute multitouch axes
[    44.630] (--) evdev: ETPS/2 Elantech Touchpad: Found x and y absolute axes
[    44.630] (--) evdev: ETPS/2 Elantech Touchpad: Found absolute touchpad.
[    44.630] (II) evdev: ETPS/2 Elantech Touchpad: Configuring as touchpad
[    44.630] (**) evdev: ETPS/2 Elantech Touchpad: YAxisMapping: buttons 4 and 5
[    44.630] (**) evdev: ETPS/2 Elantech Touchpad: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    44.630] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input6/event14"
[    44.630] (II) XINPUT: Adding extended input device "ETPS/2 Elantech Touchpad" (type: TOUCHPAD, id 12)
[    44.630] (II) evdev: ETPS/2 Elantech Touchpad: initialized for absolute axes.
[    44.630] (**) ETPS/2 Elantech Touchpad: (accel) keeping acceleration scheme 1
[    44.630] (**) ETPS/2 Elantech Touchpad: (accel) acceleration profile 0
[    44.630] (**) ETPS/2 Elantech Touchpad: (accel) acceleration factor: 2.000
[    44.630] (**) ETPS/2 Elantech Touchpad: (accel) acceleration threshold: 4
[    44.630] (II) config/udev: Adding input device ETPS/2 Elantech Touchpad (/dev/input/mouse0)
[    44.630] (II) No input driver specified, ignoring this device.
[    44.630] (II) This device may have been added with another device file.
[    44.631] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[    44.631] (II) No input driver specified, ignoring this device.
[    44.631] (II) This device may have been added with another device file.
[    44.631] (II) config/udev: Adding input device MSI WMI hotkeys (/dev/input/event8)
[    44.631] (**) MSI WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[    44.631] (**) MSI WMI hotkeys: Applying InputClass "system-keyboard"
[    44.631] (II) systemd-logind: got fd for /dev/input/event8 13:72 fd 24 paused 0
[    44.631] (II) Using input driver 'evdev' for 'MSI WMI hotkeys'
[    44.631] (**) MSI WMI hotkeys: always reports core events
[    44.631] (**) evdev: MSI WMI hotkeys: Device: "/dev/input/event8"
[    44.631] (--) evdev: MSI WMI hotkeys: Vendor 0 Product 0
[    44.631] (--) evdev: MSI WMI hotkeys: Found keys
[    44.631] (II) evdev: MSI WMI hotkeys: Configuring as keyboard
[    44.631] (**) Option "config_info" "udev:/sys/devices/virtual/input/input10/event8"
[    44.631] (II) XINPUT: Adding extended input device "MSI WMI hotkeys" (type: KEYBOARD, id 13)
[    44.631] (**) Option "xkb_rules" "evdev"
[    44.631] (**) Option "xkb_model" "pc105"
[    44.631] (**) Option "xkb_layout" "de"
[    44.631] (**) Option "xkb_variant" "nodeadkeys"
[    50.765] (II) systemd-logind: got pause for 13:72
[    50.765] (II) systemd-logind: got pause for 13:67
[    50.765] (II) systemd-logind: got pause for 13:74
[    50.765] (II) systemd-logind: got pause for 13:78
[    50.765] (II) systemd-logind: got pause for 226:0
[    50.765] (II) systemd-logind: got pause for 13:64
[    50.765] (II) systemd-logind: got pause for 13:66
[    50.765] (II) systemd-logind: got pause for 13:79
[    50.765] (II) systemd-logind: got pause for 226:1
[    50.765] (II) systemd-logind: got pause for 13:73
[    96.118] (II) evdev: MSI WMI hotkeys: Close
[    96.118] (II) UnloadModule: "evdev"
[    96.118] (II) systemd-logind: releasing fd for 13:72
[    96.121] (EE) systemd-logind: failed to release device: Connection was disconnected before a reply was received
[    96.121] (II) evdev: ETPS/2 Elantech Touchpad: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:78
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.121] (II) evdev: AT Translated Set 2 keyboard: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:64
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.121] (II) evdev: Logitech M705: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:79
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.121] (II) evdev: Power Button: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:66
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.121] (II) evdev: Video Bus: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:73
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.121] (II) evdev: Video Bus: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:74
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.121] (II) evdev: Power Button: Close
[    96.121] (II) UnloadModule: "evdev"
[    96.121] (II) systemd-logind: releasing fd for 13:67
[    96.121] (EE) systemd-logind: failed to release device: Connection is closed
[    96.122] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[    96.122] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[    96.122] (EE)
Fatal server error:
[    96.122] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[    96.122] (EE)
[    96.122] (EE)
Please consult the The X.Org Foundation support
     at http://wiki.x.org
for help.
[    96.123] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    96.123] (EE)
[    96.123] (WW) xf86CloseConsole: KDSETMODE failed: Input/output error
[    96.123] (WW) xf86CloseConsole: VT_GETMODE failed: Input/output error
[    96.123] (EE)
FatalError re-entered, aborting
[    96.123] (EE) xf86CloseConsole: VT_ACTIVATE failed: Input/output error
[    96.123] (EE)

I allready read a lot of forums and articles and tried for one week already. Please help me, if you have any idea! smile

Last edited by devwurm (2015-10-01 19:15:40)

Offline

#11 2015-10-01 19:12:16

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

I moved this topic to the Kernel and Hardware section of the forum, because it semms like it's not that trivial wink
Look here

Offline

#12 2015-10-01 19:22:00

brebs
Member
Registered: 2007-04-03
Posts: 3,742

Re: Installing GNOME on New Arch installation causes GNOME error Window

devwurm wrote:

It's a hybrid graphics system of an Intel GPU and an NVIDIA GPU.

OK - but that's not enough info, to know which setup is going to work.

As a sensible first start - identify your laptop make & model, and google to see other Linux users' experiences of what works on that particular model.

Also check Nvidia's forum.

Offline

#13 2015-10-01 19:33:34

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

Its an MSI GE60 2PE Apache Pro with an Intel HD Graphics 4600 and an NVIDIA GTX860M GPU smile

I allready searched about it, but it I wasn't able to find an helpful answer.

Offline

#14 2015-10-02 00:21:15

jasonwryan
Anarchist
From: .nz
Registered: 2009-05-09
Posts: 30,424
Website

Re: Installing GNOME on New Arch installation causes GNOME error Window

devwurm wrote:

I moved this topic to the Kernel and Hardware section of the forum, because it semms like it's not that trivial wink
Look here

Don't do that: it is crossposting https://wiki.archlinux.org/index.php/Fo … ss-posting

Now there is effort from the community split across two threads...


Arch + dwm   •   Mercurial repos  •   Surfraw

Registered Linux User #482438

Offline

#15 2015-10-02 04:51:50

devwurm
Member
Registered: 2015-09-25
Posts: 12

Re: Installing GNOME on New Arch installation causes GNOME error Window

jasonwryan wrote:
devwurm wrote:

I moved this topic to the Kernel and Hardware section of the forum, because it semms like it's not that trivial wink
Look here

Don't do that: it is crossposting https://wiki.archlinux.org/index.php/Fo … ss-posting

Now there is effort from the community split across two threads...

Sorry for that! I didn't knew hmm
And thanks for merging the topics.

But could you please move the topic to the Kernel/Hardware Forum? I think it isn't a real newby question.
I can't find a move option, so I guess that I'm not able to.

Offline

Board footer

Powered by FluxBB