Hi Debian
I try to upgrade my working multi-seat installation to wheezy. I have
nvidia graphic cards. In squeeze I used gdm. It was working OK. I had
following entries in gdm.conf:
8<--------------------------------->8
[servers]
0=Standard0
1=Standard1
[server-Standard0]
name=Standard server
command=/usr/bin/X -novtswitch -sharevts vt8 -isolateDevice PCI:2:0:0
-layout seat0
flexible=false
[server-Standard1]
name=Standard server
command=/usr/bin/X -novtswitch -sharevts vt8 -isolateDevice PCI:3:0:0
-layout seat1
flexible=false
8<--------------------------------->8
Nothing special...
Wheezy does not have gdm. There is gdm3, but Google tells that it does
not support multi-seat. So, I took lightdm. Here is first lightdm.conf
(copy-paste from gdm):
8<--------------------------------->8
[LightDM]
minimum-display-number=0
minimum-vt=7
xserver-allow-tcp=false
[SeatDefaults]
xserver-command=/usr/bin/X
xserver-allow-tcp=false
greeter-session=lightdm-greeter
session-wrapper=/etc/X11/Xsession
[Seat:0]
command=/usr/bin/X -novtswitch -sharevts vt8 -isolateDevice PCI:2:0:0
xserver-layout=seat0
[Seat:1]
command=/usr/bin/X -novtswitch -sharevts vt8 -isolateDevice PCI:3:0:0
xserver-layout=seat1
8<--------------------------------->8
This does not work. I reduced X command as much as possible. When I look
at ps output, I can see that isolateDevice is filtered by lightdm. Also
lightdm adds his own options to X, so reduced command line looks like
the following:
[Seat:0]
command=/usr/bin/X
xserver-layout=seat1
[Seat:1]
command=/usr/bin/X -sharevts
xserver-layout=seat0
After reboot I get login screen on one of the seat. Seat0 alternate with
seat1. First time I get seat1 next time seat0, then again seat1 and so
on. Another display always stays black.
If I get seat1 running, I get both X server in process list:
$ ps a| grep X
3494 tty7 Ss+ 0:00 /usr/bin/X :0 -layout seat1 -auth
/var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
3496 tty8 Ss+ 0:13 /usr/bin/X :1 -layout seat0 -auth
/var/run/lightdm/root/:1 -nolisten tcp vt8 -novtswitch
If I get seat0 running, I get only one X server. Another just exits or
sometimes crashes.
I do not see errors or something unusual in log files.
Interesting is that sharevts option is always filtered by lightdm and is
not passed to X server, as well as isolateDevice option.
I am attaching config files, but there is nothing special there.
xorg.conf is working in squeeze. Log files do not show any error.
What I tried:
1. Switched order of seats in lightdm - no effect
2. Added Option "ProbeAllGpus" "FALSE" to all nvidia sections - no effect
I did not file bug report yet.
--
Best regards, Sergey Spiridonov
#
# General configuration
#
# start-default-seat = True to always start one seat if none are defined in the
configuration
# greeter-user = User to run greeter as
# minimum-display-number = Minimum display number to use for X servers
# minimum-vt = First VT to run displays on
# user-authority-in-system-dir = True if session authority should be in the
system location
# guest-account-script = Script to be run to setup guest account
# log-directory = Directory to log information to
# run-directory = Directory to put running state in
# cache-directory = Directory to cache to
# xsessions-directory = Directory to find X sessions
# xgreeters-directory = Directory to find X greeters
#
[LightDM]
#start-default-seat=true
#greeter-user=lightdm
minimum-display-number=0
minimum-vt=7
#user-authority-in-system-dir=false
#guest-account-script=guest-account
#log-directory=/var/log/lightdm
#run-directory=/var/run/lightdm
#cache-directory=/var/cache/lightdm
#xsessions-directory=/usr/share/xsessions
#xgreeters-directory=/usr/share/xgreeters
#
# Seat defaults
#
# xserver-command = X server command to run (can also contain arguments e.g. X
-special-option)
# xserver-layout = Layout to pass to X server
# xserver-config = Config file to pass to X server
# xserver-allow-tcp = True if TCP/IP connections are allowed to this X server
# xdmcp-manager = XDMCP manager to connect to (implies xserver-allow-tcp=true)
# xdmcp-port = XDMCP UDP/IP port to communicate on
# xdmcp-key = Authentication key to use for XDM-AUTHENTICATION-1 (stored in
keys.conf)
# greeter-session = Session to load for greeter
# greeter-hide-users = True to hide the user list
# greeter-allow-guest = True if the greeter should show a guest login option
# greeter-show-manual-login = True if the greeter should offer a manual login
option
# user-session = Session to load for users
# allow-guest = True if guest login is allowed
# guest-session = Session to load for guests (overrides user-session)
# session-wrapper = Wrapper script to run session with
# display-setup-script = Script to run when starting a greeter session (runs as
root)
# greeter-setup-script = Script to run when starting a greeter (runs as root)
# session-setup-script = Script to run when starting a user session (runs as
root)
# session-cleanup-script = Script to run when quitting a user session (runs as
root)
# autologin-guest = True to log in as guest by default
# autologin-user = User to log in with by default (overrides autologin-guest)
# autologin-user-timeout = Number of seconds to wait before loading default user
# autologin-session = Session to load for automatic login (overrides
user-session)
# exit-on-failure = True if the daemon should exit if this seat fails
#
[SeatDefaults]
xserver-command=/usr/bin/X
#xserver-layout=
#xserver-config=
xserver-allow-tcp=false
#xdmcp-manager=
#xdmcp-port=177
#xdmcp-key=
greeter-session=lightdm-greeter
greeter-hide-users=false
#greeter-allow-guest=true
#greeter-show-manual-login=false
#user-session=default
#allow-guest=true
#guest-session=UNIMPLEMENTED
session-wrapper=/etc/X11/Xsession
#display-setup-script=
#greeter-setup-script=
#session-setup-script=
#session-cleanup-script=
#autologin-guest=false
#autologin-user=
#autologin-user-timeout=0
#autologin-session=UNIMPLEMENTED
#exit-on-failure=false
#
# Seat configuration
#
# Each seat must start with "Seat:".
# Uses settings from [SeatDefaults], any of these can be overriden by setting
them in this section.
#
[Seat:0]
#isolateDevice PCI:3:0:0
command=/usr/bin/X
xserver-layout=seat1
[Seat:1]
#-isolateDevice PCI:2:0:0
command=/usr/bin/X -sharevts
xserver-layout=seat0
#
# XDMCP Server configuration
#
# enabled = True if XDMCP connections should be allowed
# port = UDP/IP port to listen for connections on
# key = Authentication key to use for XDM-AUTHENTICATION-1 or blank to not use
authentication (stored in keys.conf)
#
# The authentication key is a 56 bit DES key specified in hex as
0xnnnnnnnnnnnnnn. Alternatively
# it can be a word and the first 7 characters are used as the key.
#
[XDMCPServer]
#enabled=false
#port=177
#key=
#
# VNC Server configuration
#
# enabled = True if VNC connections should be allowed
# port = TCP/IP port to listen for connections on
#
[VNCServer]
#enabled=false
#port=5900
#width=1024
#height=768
#depth=8
# xorg.conf (X.Org X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the xorg.conf manual page.
# (Type "man xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
# sudo dpkg-reconfigure -phigh xserver-xorg
Section "ServerFlags"
Option "DefaultServerLayout" "alltogether"
Option "AllowMouseOpenFail" "true"
Option "AIGLX" "true" ### want AIGLX so put it here
Option "AllowEmptyInput" "true"
Option "AutoAddDevices" "false"
Option "AutoEnableDevices" "false"
Option "DontZap" "false"
EndSection
Section "ServerLayout"
Identifier "alltogether"
Screen 0 "Screen0-0" 0 0
# ....
# Screen N "ScreenN" RightOf "ScreenN-1"
Screen 1 "Screen1-0" RightOf "Screen0-0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "DRI"
Mode 0666
EndSection
######## seat 0 ########
Section "ServerLayout"
Identifier "seat0"
Screen 0 "Screen0-0" 0 0
# Screen 1 "Screen1-1" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
EndSection
Section "Screen"
Identifier "Screen0-0"
Device "nvprop0-0"
Monitor "Monitor0-0"
DefaultDepth 24
Option "TwinView" "0"
Option "metamodes" "DFP: 1280x1024 +0+0"
SubSection "Display"
Depth 24
Modes "1280x1024"
EndSubSection
EndSection
Section "Monitor"
Identifier "Monitor0-0"
VendorName "Belinea"
ModelName "Maxdata (RogenTech) B1970 S1-P"
HorizSync 31.0 - 81.0
VertRefresh 56.0 - 75.0
Option "DPMS"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "evdev"
Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.3:1.0-event-kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "evdev"
Option "XkbLayout" "us,ru"
Option "XkbOptions"
"grp:menu_toggle,grp:lwin_switch,grp_led:scroll"
# Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
Option "XkbVariant" "intl,"
Option "Pass" "3"
Option "evBits" "+1"
Option "keyBits" "~1-255 ~352-511"
# Option "GrabDevice" "True"
EndSection
Section "InputDevice"
Identifier "Mouse0"
# Driver "mouse"
# MatchIsPointer "on"
Driver "evdev"
# Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.2:1.0-event"
Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.2:1.0-event-mouse"
# MatchDevicePath
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.1:1.0-event"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
# Option "GrabDevice" "True"
EndSection
Section "Device"
Identifier "nvprop0-0"
Driver "nvidia"
# Option "SyncToVBlank" "1"
Option "BackingStore" "True"
BusID "PCI:2:0:0"
# Option "ProbeAllGpus" "FALSE"
# Screen 0
EndSection
######## seat 1 ########
Section "ServerLayout"
Identifier "seat1"
Screen 0 "Screen1-0"
# Screen 1 "Screen1-1"
## Screen 0 "Screen1-0" 0 0
## Screen 1 "Screen1-1" 0 0
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Keyboard2"
InputDevice "Mouse0" "CorePointer"
EndSection
Section "InputDevice"
Identifier "Keyboard1"
Driver "evdev"
# Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.4:1.0-event-kbd"
Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.4:1.0-event-kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "evdev"
Option "XkbLayout" "us,ru"
Option "XkbOptions"
"grp:menu_toggle,grp:lwin_switch,grp_led:scroll"
# Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
Option "XkbVariant" "intl,"
Option "Pass" "3"
Option "evBits" "+1"
Option "keyBits" "~1-255 ~352-511"
# Option "GrabDevice" "True"
EndSection
Section "InputDevice"
Identifier "Keyboard2"
Driver "evdev"
Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.4:1.0-event-kbd"
# Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:1.4:1.0-event-kbd"
# Option "Device"
"/devices/pci0000:00/0000:00:02.1/usb1/1-1/1-1.4/1-1.4:1.0/input/input15"
Option "XkbRules" "xorg"
Option "XkbModel" "evdev"
Option "XkbLayout" "us,ru"
Option "XkbOptions"
"grp:menu_toggle,grp:lwin_switch,grp_led:scroll"
# Option "XkbOptions" "grp:alt_shift_toggle,grp_led:scroll"
Option "XkbVariant" "intl,"
Option "Pass" "3"
Option "evBits" "+1"
Option "keyBits" "~1-255 ~352-511"
# Option "GrabDevice" "True"
EndSection
Section "InputDevice"
Identifier "Mouse1"
# Driver "mouse"
Driver "evdev"
# Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.1:1.0-event"
Option "Device"
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.1:1.0-event-mouse"
# MatchIsPointer "on"
# MatchDevicePath
"/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.2:1.0-event"
Option "Protocol" "ImPS/2"
Option "ZAxisMapping" "4 5"
EndSection
Section "Monitor"
Identifier "Monitor1-1"
VendorName "VGA2Video"
ModelName "CRT-1"
HorizSync 28.0 - 55.0
VertRefresh 43.0 - 72.0
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Monitor1-0"
VendorName "Belinea"
ModelName "Maxdata (RogenTech) B1970 S1-P"
HorizSync 31.0 - 81.0
VertRefresh 56.0 - 75.0
Option "DPMS"
EndSection
Section "Device"
Identifier "nvprop1-0"
Driver "nvidia"
Option "BackingStore" "True"
BoardName "GeForce 9500 GT"
# Option "SyncToVBlank" "1"
BusID "PCI:3:0:0"
Screen 0
# Option "ProbeAllGpus" "FALSE"
EndSection
Section "Device"
Identifier "nvprop1-1"
Driver "nvidia"
Option "BackingStore" "True"
BoardName "GeForce 9500 GT"
# Option "SyncToVBlank" "1"
BusID "PCI:3:0:0"
Screen 1
# Option "ProbeAllGpus" "FALSE"
EndSection
Section "Screen"
Identifier "Screen1-1"
Device "nvprop1-1"
Monitor "Monitor1-1"
DefaultDepth 24
Option "TwinView" "0"
Option "metamodes" "CRT: 1920x1200"
# Option "metamodes" "CRT: 1024x768 +0+0"
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1-0"
Device "nvprop1-0"
Monitor "Monitor1-0"
DefaultDepth 24
Option "TwinView" "0"
Option "metamodes" "DFP: 1920x1200"
# Option "metamodes" "DFP: 1280x1024 +0+0"
SubSection "Display"
Depth 24
EndSubSection
EndSection
#########################
#Section "InputDevice"
# Identifier "Generic Keyboard"
# Driver "kbd"
# Option "XkbRules" "xorg"
# Option "XkbModel" "pc105"
# Option "XkbLayout" "us,ru"
# Option "XkbVariant" "intl,"
# Option "XkbOptions" "grp:menu_toggle,grl_led:scroll"
#EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
Device "nvprop0"
EndSection
[ 29.191]
X.Org X Server 1.12.4
Release Date: 2012-08-27
[ 29.191] X Protocol Version 11, Revision 0
[ 29.191] Build Operating System: Linux 3.2.0-4.drm-amd64 x86_64 Debian
[ 29.191] Current Operating System: Linux believer 3.2.0-4-amd64 #1 SMP Debian 3.2.35-2 x86_64
[ 29.191] Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/bvg64-broot ro quiet
[ 29.191] Build Date: 29 November 2012 07:18:16PM
[ 29.191] xorg-server 2:1.12.4-4 (Julien Cristau <jcris...@debian.org>)
[ 29.191] Current version of pixman: 0.26.0
[ 29.191] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 29.191] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 29.192] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Feb 17 23:38:38 2013
[ 29.213] (==) Using config file: "/etc/X11/xorg.conf"
[ 29.213] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 29.242] (**) Option "defaultserverlayout" "alltogether"
[ 29.242] (++) ServerLayout "seat1"
[ 29.242] (**) |-->Screen "Screen1-0" (0)
[ 29.242] (**) | |-->Monitor "Monitor1-0"
[ 29.243] (**) | |-->Device "nvprop1-0"
[ 29.243] (**) |-->Input Device "Keyboard1"
[ 29.243] (**) |-->Input Device "Keyboard2"
[ 29.243] (**) |-->Input Device "Mouse0"
[ 29.243] (**) Option "DontZap" "false"
[ 29.243] (**) Option "AllowMouseOpenFail" "true"
[ 29.243] (**) Option "AIGLX" "true"
[ 29.243] (**) Option "AutoAddDevices" "false"
[ 29.243] (**) Option "AutoEnableDevices" "false"
[ 29.243] (**) Not automatically adding devices
[ 29.243] (**) Not automatically enabling devices
[ 29.369] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 29.369] Entry deleted from font path.
[ 29.375] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[ 29.375] Entry deleted from font path.
[ 29.375] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 29.375] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 29.375] (II) Loader magic: 0x7fb7ae4d4ae0
[ 29.375] (II) Module ABI versions:
[ 29.375] X.Org ANSI C Emulation: 0.4
[ 29.375] X.Org Video Driver: 12.1
[ 29.375] X.Org XInput driver : 16.0
[ 29.375] X.Org Server Extension : 6.0
[ 29.379] (--) PCI: (0:2:0:0) 10de:0848:1043:82e2 rev 162, Mem @ 0xfb000000/16777216, 0xe0000000/134217728, 0xee000000/33554432, I/O @ 0x0000dc00/128, BIOS @ 0x????????/131072
[ 29.379] (--) PCI:*(0:3:0:0) 10de:0640:10b0:1401 rev 161, Mem @ 0xf8000000/16777216, 0xd0000000/268435456, 0xf6000000/33554432, I/O @ 0x0000cc00/128, BIOS @ 0x????????/524288
[ 29.379] (II) Open ACPI successful (/var/run/acpid.socket)
[ 29.379] (II) LoadModule: "extmod"
[ 29.668] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 29.748] (II) Module extmod: vendor="X.Org Foundation"
[ 29.748] compiled for 1.12.4, module version = 1.0.0
[ 29.748] Module class: X.Org Server Extension
[ 29.748] ABI class: X.Org Server Extension, version 6.0
[ 29.748] (II) Loading extension SELinux
[ 29.748] (II) Loading extension MIT-SCREEN-SAVER
[ 29.748] (II) Loading extension XFree86-VidModeExtension
[ 29.748] (II) Loading extension XFree86-DGA
[ 29.748] (II) Loading extension DPMS
[ 29.748] (II) Loading extension XVideo
[ 29.748] (II) Loading extension XVideo-MotionCompensation
[ 29.748] (II) Loading extension X-Resource
[ 29.748] (II) LoadModule: "dbe"
[ 29.749] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 29.763] (II) Module dbe: vendor="X.Org Foundation"
[ 29.763] compiled for 1.12.4, module version = 1.0.0
[ 29.763] Module class: X.Org Server Extension
[ 29.763] ABI class: X.Org Server Extension, version 6.0
[ 29.763] (II) Loading extension DOUBLE-BUFFER
[ 29.763] (II) LoadModule: "glx"
[ 29.763] (II) Loading /usr/lib/xorg/modules/linux/libglx.so
[ 31.225] (II) Module glx: vendor="NVIDIA Corporation"
[ 31.322] compiled for 4.0.2, module version = 1.0.0
[ 31.322] Module class: X.Org Server Extension
[ 31.322] (II) NVIDIA GLX Module 304.64 Tue Oct 30 11:18:32 PDT 2012
[ 31.322] (II) Loading extension GLX
[ 31.322] (II) LoadModule: "record"
[ 31.323] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 31.471] (II) Module record: vendor="X.Org Foundation"
[ 31.472] compiled for 1.12.4, module version = 1.13.0
[ 31.472] Module class: X.Org Server Extension
[ 31.472] ABI class: X.Org Server Extension, version 6.0
[ 31.472] (II) Loading extension RECORD
[ 31.472] (II) LoadModule: "dri"
[ 31.472] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 31.486] (II) Module dri: vendor="X.Org Foundation"
[ 31.486] compiled for 1.12.4, module version = 1.0.0
[ 31.486] ABI class: X.Org Server Extension, version 6.0
[ 31.486] (II) Loading extension XFree86-DRI
[ 31.486] (II) LoadModule: "dri2"
[ 31.486] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 31.488] (II) Module dri2: vendor="X.Org Foundation"
[ 31.488] compiled for 1.12.4, module version = 1.2.0
[ 31.488] ABI class: X.Org Server Extension, version 6.0
[ 31.488] (II) Loading extension DRI2
[ 31.488] (II) LoadModule: "nvidia"
[ 31.609] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 31.781] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 31.781] compiled for 4.0.2, module version = 1.0.0
[ 31.781] Module class: X.Org Video Driver
[ 31.809] (II) LoadModule: "evdev"
[ 32.234] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 32.329] (II) Module evdev: vendor="X.Org Foundation"
[ 32.329] compiled for 1.12.1, module version = 2.7.0
[ 32.329] Module class: X.Org XInput Driver
[ 32.329] ABI class: X.Org XInput driver, version 16.0
[ 32.329] (II) NVIDIA dlloader X Driver 304.64 Tue Oct 30 10:59:51 PDT 2012
[ 32.329] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 32.370] (++) using VT number 7
[ 29.191]
X.Org X Server 1.12.4
Release Date: 2012-08-27
[ 29.191] X Protocol Version 11, Revision 0
[ 29.191] Build Operating System: Linux 3.2.0-4.drm-amd64 x86_64 Debian
[ 29.191] Current Operating System: Linux believer 3.2.0-4-amd64 #1 SMP Debian 3.2.35-2 x86_64
[ 29.191] Kernel command line: BOOT_IMAGE=/vmlinuz-3.2.0-4-amd64 root=/dev/mapper/bvg64-broot ro quiet
[ 29.191] Build Date: 29 November 2012 07:18:16PM
[ 29.191] xorg-server 2:1.12.4-4 (Julien Cristau <jcris...@debian.org>)
[ 29.191] Current version of pixman: 0.26.0
[ 29.191] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 29.191] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 29.192] (==) Log file: "/var/log/Xorg.1.log", Time: Sun Feb 17 23:38:38 2013
[ 29.213] (==) Using config file: "/etc/X11/xorg.conf"
[ 29.213] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 29.242] (**) Option "defaultserverlayout" "alltogether"
[ 29.242] (++) ServerLayout "seat0"
[ 29.242] (**) |-->Screen "Screen0-0" (0)
[ 29.242] (**) | |-->Monitor "Monitor0-0"
[ 29.243] (**) | |-->Device "nvprop0-0"
[ 29.243] (**) |-->Input Device "Keyboard0"
[ 29.243] (**) |-->Input Device "Mouse1"
[ 29.243] (**) Option "DontZap" "false"
[ 29.243] (**) Option "AllowMouseOpenFail" "true"
[ 29.243] (**) Option "AIGLX" "true"
[ 29.243] (**) Option "AutoAddDevices" "false"
[ 29.243] (**) Option "AutoEnableDevices" "false"
[ 29.243] (**) Not automatically adding devices
[ 29.243] (**) Not automatically enabling devices
[ 29.369] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[ 29.369] Entry deleted from font path.
[ 29.375] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[ 29.375] Entry deleted from font path.
[ 29.375] (==) FontPath set to:
/usr/share/fonts/X11/misc,
/usr/share/fonts/X11/100dpi/:unscaled,
/usr/share/fonts/X11/75dpi/:unscaled,
/usr/share/fonts/X11/Type1,
/usr/share/fonts/X11/100dpi,
/usr/share/fonts/X11/75dpi,
built-ins
[ 29.375] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 29.375] (II) Loader magic: 0x7f939b604ae0
[ 29.375] (II) Module ABI versions:
[ 29.375] X.Org ANSI C Emulation: 0.4
[ 29.375] X.Org Video Driver: 12.1
[ 29.375] X.Org XInput driver : 16.0
[ 29.375] X.Org Server Extension : 6.0
[ 29.379] (--) PCI: (0:2:0:0) 10de:0848:1043:82e2 rev 162, Mem @ 0xfb000000/16777216, 0xe0000000/134217728, 0xee000000/33554432, I/O @ 0x0000dc00/128, BIOS @ 0x????????/131072
[ 29.379] (--) PCI:*(0:3:0:0) 10de:0640:10b0:1401 rev 161, Mem @ 0xf8000000/16777216, 0xd0000000/268435456, 0xf6000000/33554432, I/O @ 0x0000cc00/128, BIOS @ 0x????????/524288
[ 29.379] (II) Open ACPI successful (/var/run/acpid.socket)
[ 29.379] (II) LoadModule: "extmod"
[ 29.668] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 29.748] (II) Module extmod: vendor="X.Org Foundation"
[ 29.748] compiled for 1.12.4, module version = 1.0.0
[ 29.748] Module class: X.Org Server Extension
[ 29.748] ABI class: X.Org Server Extension, version 6.0
[ 29.748] (II) Loading extension SELinux
[ 29.748] (II) Loading extension MIT-SCREEN-SAVER
[ 29.748] (II) Loading extension XFree86-VidModeExtension
[ 29.748] (II) Loading extension XFree86-DGA
[ 29.748] (II) Loading extension DPMS
[ 29.748] (II) Loading extension XVideo
[ 29.748] (II) Loading extension XVideo-MotionCompensation
[ 29.748] (II) Loading extension X-Resource
[ 29.748] (II) LoadModule: "dbe"
[ 29.749] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 29.763] (II) Module dbe: vendor="X.Org Foundation"
[ 29.763] compiled for 1.12.4, module version = 1.0.0
[ 29.763] Module class: X.Org Server Extension
[ 29.763] ABI class: X.Org Server Extension, version 6.0
[ 29.763] (II) Loading extension DOUBLE-BUFFER
[ 29.763] (II) LoadModule: "glx"
[ 29.763] (II) Loading /usr/lib/xorg/modules/linux/libglx.so
[ 31.225] (II) Module glx: vendor="NVIDIA Corporation"
[ 31.322] compiled for 4.0.2, module version = 1.0.0
[ 31.322] Module class: X.Org Server Extension
[ 31.322] (II) NVIDIA GLX Module 304.64 Tue Oct 30 11:18:32 PDT 2012
[ 31.322] (II) Loading extension GLX
[ 31.322] (II) LoadModule: "record"
[ 31.322] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 31.472] (II) Module record: vendor="X.Org Foundation"
[ 31.472] compiled for 1.12.4, module version = 1.13.0
[ 31.472] Module class: X.Org Server Extension
[ 31.472] ABI class: X.Org Server Extension, version 6.0
[ 31.472] (II) Loading extension RECORD
[ 31.472] (II) LoadModule: "dri"
[ 31.472] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 31.486] (II) Module dri: vendor="X.Org Foundation"
[ 31.486] compiled for 1.12.4, module version = 1.0.0
[ 31.486] ABI class: X.Org Server Extension, version 6.0
[ 31.486] (II) Loading extension XFree86-DRI
[ 31.486] (II) LoadModule: "dri2"
[ 31.486] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 31.488] (II) Module dri2: vendor="X.Org Foundation"
[ 31.488] compiled for 1.12.4, module version = 1.2.0
[ 31.488] ABI class: X.Org Server Extension, version 6.0
[ 31.488] (II) Loading extension DRI2
[ 31.488] (II) LoadModule: "nvidia"
[ 31.609] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[ 31.781] (II) Module nvidia: vendor="NVIDIA Corporation"
[ 31.781] compiled for 4.0.2, module version = 1.0.0
[ 31.781] Module class: X.Org Video Driver
[ 31.809] (II) LoadModule: "evdev"
[ 32.234] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[ 32.329] (II) Module evdev: vendor="X.Org Foundation"
[ 32.329] compiled for 1.12.1, module version = 2.7.0
[ 32.329] Module class: X.Org XInput Driver
[ 32.329] ABI class: X.Org XInput driver, version 16.0
[ 32.329] (II) NVIDIA dlloader X Driver 304.64 Tue Oct 30 10:59:51 PDT 2012
[ 32.329] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[ 32.370] (++) using VT number 8
[ 32.397] (II) Loading sub module "fb"
[ 32.397] (II) LoadModule: "fb"
[ 32.398] (II) Loading /usr/lib/xorg/modules/libfb.so
[ 32.405] (II) Module fb: vendor="X.Org Foundation"
[ 32.405] compiled for 1.12.4, module version = 1.0.0
[ 32.405] ABI class: X.Org ANSI C Emulation, version 0.4
[ 32.405] (II) Loading sub module "wfb"
[ 32.405] (II) LoadModule: "wfb"
[ 32.406] (II) Loading /usr/lib/xorg/modules/libwfb.so
[ 32.422] (II) Module wfb: vendor="X.Org Foundation"
[ 32.422] compiled for 1.12.4, module version = 1.0.0
[ 32.422] ABI class: X.Org ANSI C Emulation, version 0.4
[ 32.422] (II) Loading sub module "ramdac"
[ 32.422] (II) LoadModule: "ramdac"
[ 32.422] (II) Module "ramdac" already built-in
[ 32.506] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[ 32.506] (==) NVIDIA(0): RGB weight 888
[ 32.506] (==) NVIDIA(0): Default visual is TrueColor
[ 32.506] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 32.506] (**) NVIDIA(0): Option "MetaModes" "DFP: 1280x1024 +0+0"
[ 32.506] (**) NVIDIA(0): Enabling 2D acceleration
[ 33.067] (II) NVIDIA(GPU-0): Display (Maxdata/Belinea B1970 S1-P (DFP-0)) does not support
[ 33.067] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
[ 33.141] (II) NVIDIA(0): NVIDIA GPU GeForce 8300 (C77) at PCI:2:0:0 (GPU-0)
[ 33.141] (--) NVIDIA(0): Memory: 524288 kBytes
[ 33.141] (--) NVIDIA(0): VideoBIOS: 62.77.35.00.00
[ 33.141] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[ 33.166] (--) NVIDIA(0): Valid display device(s) on GeForce 8300 at PCI:2:0:0
[ 33.167] (--) NVIDIA(0): CRT-0
[ 33.167] (--) NVIDIA(0): Maxdata/Belinea B1970 S1-P (DFP-0) (connected)
[ 33.167] (--) NVIDIA(0): CRT-0: 300.0 MHz maximum pixel clock
[ 33.167] (--) NVIDIA(0): Maxdata/Belinea B1970 S1-P (DFP-0): 165.0 MHz maximum pixel clock
[ 33.167] (--) NVIDIA(0): Maxdata/Belinea B1970 S1-P (DFP-0): Internal Single Link TMDS
[ 33.167] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 33.167] (**) NVIDIA(0): device Maxdata/Belinea B1970 S1-P (DFP-0) (Using EDID
[ 33.167] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
[ 33.170] (II) NVIDIA(0): Validated MetaModes:
[ 33.170] (II) NVIDIA(0): "DFP:1280x1024+0+0"
[ 33.170] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
[ 33.179] (--) NVIDIA(0): DPI set to (85, 83); computed from "UseEdidDpi" X config
[ 33.179] (--) NVIDIA(0): option
[ 33.179] (--) Depth 24 pixmap format is 32 bpp
[ 34.634] (II) NVIDIA(GPU-1): Display (HP ZR2440w (DFP-0)) does not support NVIDIA 3D Vision
[ 34.634] (II) NVIDIA(GPU-1): stereo.
[ 34.671] (II) NVIDIA(GPU-1): NVIDIA GPU GeForce 9500 GT (G96) at PCI:3:0:0 (GPU-1)
[ 34.671] (--) NVIDIA(GPU-1): Memory: 524288 kBytes
[ 34.671] (--) NVIDIA(GPU-1): VideoBIOS: 62.94.3c.00.00
[ 34.671] (II) NVIDIA(GPU-1): Detected PCI Express Link width: 16X
[ 34.671] (--) NVIDIA(GPU-1): Interlaced video modes are supported on this GPU
[ 34.671] (--) NVIDIA(GPU-1): Valid display device(s) on GeForce 9500 GT at PCI:3:0:0
[ 34.671] (--) NVIDIA(GPU-1): CRT-0
[ 34.671] (--) NVIDIA(GPU-1): CRT-1
[ 34.671] (--) NVIDIA(GPU-1): HP ZR2440w (DFP-0) (connected)
[ 34.671] (--) NVIDIA(GPU-1): DFP-1
[ 34.671] (--) NVIDIA(GPU-1): CRT-0: 400.0 MHz maximum pixel clock
[ 34.671] (--) NVIDIA(GPU-1): CRT-1: 400.0 MHz maximum pixel clock
[ 34.671] (--) NVIDIA(GPU-1): HP ZR2440w (DFP-0): 330.0 MHz maximum pixel clock
[ 34.671] (--) NVIDIA(GPU-1): HP ZR2440w (DFP-0): Internal Dual Link TMDS
[ 34.671] (--) NVIDIA(GPU-1): DFP-1: 165.0 MHz maximum pixel clock
[ 34.671] (--) NVIDIA(GPU-1): DFP-1: Internal Single Link TMDS
[ 34.671] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
[ 34.680] (II) NVIDIA(0): Setting mode "DFP:1280x1024+0+0"
[ 34.735] (II) Loading extension NV-GLX
[ 34.834] (==) NVIDIA(0): Disabling shared memory pixmaps
[ 34.834] (**) NVIDIA(0): Option "BackingStore" "True"
[ 34.834] (**) NVIDIA(0): Backing store enabled
[ 34.834] (==) NVIDIA(0): Silken mouse enabled
[ 34.835] (**) NVIDIA(0): DPMS enabled
[ 34.835] (II) Loading extension NV-CONTROL
[ 34.836] (II) Loading extension XINERAMA
[ 34.836] (WW) NVIDIA(0): Option "TwinView" is not used
[ 34.836] (II) Loading sub module "dri2"
[ 34.836] (II) LoadModule: "dri2"
[ 34.836] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 34.836] (II) Module dri2: vendor="X.Org Foundation"
[ 34.836] compiled for 1.12.4, module version = 1.2.0
[ 34.836] ABI class: X.Org Server Extension, version 6.0
[ 34.836] (II) NVIDIA(0): [DRI2] Setup complete
[ 34.836] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
[ 34.836] (--) RandR disabled
[ 34.836] (II) Initializing built-in extension Generic Event Extension
[ 34.836] (II) Initializing built-in extension SHAPE
[ 34.837] (II) Initializing built-in extension MIT-SHM
[ 34.837] (II) Initializing built-in extension XInputExtension
[ 34.837] (II) Initializing built-in extension XTEST
[ 34.837] (II) Initializing built-in extension BIG-REQUESTS
[ 34.837] (II) Initializing built-in extension SYNC
[ 34.837] (II) Initializing built-in extension XKEYBOARD
[ 34.837] (II) Initializing built-in extension XC-MISC
[ 34.837] (II) Initializing built-in extension SECURITY
[ 34.837] (II) Initializing built-in extension XINERAMA
[ 34.837] (II) Initializing built-in extension XFIXES
[ 34.837] (II) Initializing built-in extension RENDER
[ 34.837] (II) Initializing built-in extension RANDR
[ 34.837] (II) Initializing built-in extension COMPOSITE
[ 34.837] (II) Initializing built-in extension DAMAGE
[ 34.837] (II) SELinux: Disabled on system
[ 34.842] (II) Initializing extension GLX
[ 35.362] (II) Using input driver 'evdev' for 'Keyboard0'
[ 35.362] (**) Option "CoreKeyboard"
[ 35.362] (**) Keyboard0: always reports core events
[ 35.362] (**) evdev: Keyboard0: Device: "/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.3:1.0-event-kbd"
[ 35.362] (--) evdev: Keyboard0: Vendor 0x518 Product 0x1
[ 35.363] (--) evdev: Keyboard0: Found keys
[ 35.363] (II) evdev: Keyboard0: Configuring as keyboard
[ 35.363] (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD, id 6)
[ 35.363] (**) Option "xkb_rules" "evdev"
[ 35.363] (**) Option "xkb_model" "evdev"
[ 35.363] (**) Option "xkb_layout" "us,ru"
[ 35.363] (**) Option "xkb_variant" "intl,"
[ 35.363] (**) Option "xkb_options" "grp:menu_toggle,grp:lwin_switch,grp_led:scroll"
[ 35.414] (II) Using input driver 'evdev' for 'Mouse1'
[ 35.414] (**) Option "CorePointer"
[ 35.414] (**) Mouse1: always reports core events
[ 35.414] (**) evdev: Mouse1: Device: "/dev/input/by-path/pci-0000:00:02.1-usb-0:2.1.1:1.0-event-mouse"
[ 35.414] (--) evdev: Mouse1: Vendor 0x46d Product 0xc00e
[ 35.414] (--) evdev: Mouse1: Found 3 mouse buttons
[ 35.414] (--) evdev: Mouse1: Found scroll wheel(s)
[ 35.414] (--) evdev: Mouse1: Found relative axes
[ 35.414] (--) evdev: Mouse1: Found x and y relative axes
[ 35.414] (II) evdev: Mouse1: Configuring as mouse
[ 35.414] (II) evdev: Mouse1: Adding scrollwheel support
[ 35.414] (**) evdev: Mouse1: YAxisMapping: buttons 4 and 5
[ 35.414] (**) evdev: Mouse1: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[ 35.415] (II) XINPUT: Adding extended input device "Mouse1" (type: MOUSE, id 7)
[ 35.415] (II) evdev: Mouse1: initialized for relative axes.
[ 35.415] (**) Mouse1: (accel) keeping acceleration scheme 1
[ 35.415] (**) Mouse1: (accel) acceleration profile 0
[ 35.415] (**) Mouse1: (accel) acceleration factor: 2.000
[ 35.415] (**) Mouse1: (accel) acceleration threshold: 4
[ 35.420] (II) config/udev: Adding input device Power Button (/dev/input/event10)
[ 35.420] (II) AutoAddDevices is off - not adding device.
[ 35.421] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
[ 35.421] (II) AutoAddDevices is off - not adding device.
[ 35.421] (II) config/udev: Adding input device Power Button (/dev/input/event9)
[ 35.421] (II) AutoAddDevices is off - not adding device.
[ 35.422] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event3)
[ 35.422] (II) AutoAddDevices is off - not adding device.
[ 35.423] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
[ 35.423] (II) AutoAddDevices is off - not adding device.
[ 35.423] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/event4)
[ 35.423] (II) AutoAddDevices is off - not adding device.
[ 35.424] (II) config/udev: Adding input device Logitech USB Optical Mouse (/dev/input/mouse1)
[ 35.424] (II) AutoAddDevices is off - not adding device.
[ 35.424] (II) config/udev: Adding input device Plus More Enterprise LTD. USB-compliant keyboard (/dev/input/event5)
[ 35.424] (II) AutoAddDevices is off - not adding device.
[ 35.424] (II) config/udev: Adding input device Plus More Enterprise LTD. USB-compliant keyboard (/dev/input/event6)
[ 35.424] (II) AutoAddDevices is off - not adding device.
[ 35.424] (II) config/udev: Adding input device Plus More Enterprise LTD. USB-compliant keyboard (/dev/input/mouse2)
[ 35.424] (II) AutoAddDevices is off - not adding device.
[ 35.425] (II) config/udev: Adding input device Plus More Enterprise LTD. USB-compliant keyboard (/dev/input/event7)
[ 35.425] (II) AutoAddDevices is off - not adding device.
[ 35.425] (II) config/udev: Adding input device Plus More Enterprise LTD. USB-compliant keyboard (/dev/input/event8)
[ 35.425] (II) AutoAddDevices is off - not adding device.
[ 35.425] (II) config/udev: Adding input device Plus More Enterprise LTD. USB-compliant keyboard (/dev/input/mouse3)
[ 35.425] (II) AutoAddDevices is off - not adding device.
[ 35.425] (II) config/udev: Adding input device Microsoft Microsoft® SiderWinderTM X4 Keyboard (/dev/input/event0)
[ 35.425] (II) AutoAddDevices is off - not adding device.
[ 35.425] (II) config/udev: Adding input device Microsoft Microsoft® SiderWinderTM X4 Keyboard (/dev/input/event1)
[ 35.425] (II) AutoAddDevices is off - not adding device.
[ 35.425] (II) config/udev: Adding input device USB Headphone Set (/dev/input/event2)
[ 35.425] (II) AutoAddDevices is off - not adding device.
[ 35.426] (II) config/udev: Adding input device UVC Camera (046d:0809) (/dev/input/event13)
[ 35.426] (II) AutoAddDevices is off - not adding device.
[ 35.426] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event14)
[ 35.426] (II) AutoAddDevices is off - not adding device.
[ 35.426] (II) config/udev: Adding input device PC Speaker (/dev/input/event12)
[ 35.426] (II) AutoAddDevices is off - not adding device.
[ 52.031] (II) NVIDIA(GPU-0): Display (Maxdata/Belinea B1970 S1-P (DFP-0)) does not support
[ 52.031] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
[ 52.031] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 52.031] (**) NVIDIA(0): device Maxdata/Belinea B1970 S1-P (DFP-0) (Using EDID
[ 52.031] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
[ 52.061] (II) NVIDIA(GPU-0): Display (Maxdata/Belinea B1970 S1-P (DFP-0)) does not support
[ 52.061] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
[ 52.061] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 52.061] (**) NVIDIA(0): device Maxdata/Belinea B1970 S1-P (DFP-0) (Using EDID
[ 52.061] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
[ 53.700] (II) NVIDIA(GPU-0): Display (Maxdata/Belinea B1970 S1-P (DFP-0)) does not support
[ 53.700] (II) NVIDIA(GPU-0): NVIDIA 3D Vision stereo.
[ 53.700] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[ 53.700] (**) NVIDIA(0): device Maxdata/Belinea B1970 S1-P (DFP-0) (Using EDID
[ 53.700] (**) NVIDIA(0): frequencies has been enabled on all display devices.)
[+0.02s] DEBUG: Logging to /var/log/lightdm/lightdm.log
[+0.02s] DEBUG: Starting Light Display Manager 1.2.2, UID=0 PID=3360
[+0.02s] DEBUG: Loaded configuration from /etc/lightdm/lightdm.conf
[+0.02s] DEBUG: Using D-Bus name org.freedesktop.DisplayManager
[+0.05s] DEBUG: Registered seat module xlocal
[+0.05s] DEBUG: Registered seat module xremote
[+0.05s] DEBUG: Loading seat Seat:0
[+0.05s] DEBUG: Starting seat
[+0.05s] DEBUG: Starting new display for greeter
[+0.05s] DEBUG: Starting local X display
[+0.05s] DEBUG: Could not run plymouth --ping: Failed to execute child process "plymouth" (No such file or directory)
[+0.05s] DEBUG: Using VT 7
[+0.05s] DEBUG: Activating VT 7
[+0.05s] DEBUG: Logging to /var/log/lightdm/x-0.log
[+0.71s] DEBUG: Writing X server authority to /var/run/lightdm/root/:0
[+0.74s] DEBUG: Launching X Server
[+0.74s] DEBUG: Launching process 3494: /usr/bin/X :0 -layout seat1 -auth /var/run/lightdm/root/:0 -nolisten tcp vt7 -novtswitch
[+0.74s] DEBUG: Waiting for ready signal from X server :0
[+0.74s] DEBUG: Loading seat Seat:1
[+0.75s] DEBUG: Starting seat
[+0.75s] DEBUG: Starting new display for greeter
[+0.75s] DEBUG: Starting local X display
[+0.75s] DEBUG: Using VT 8
[+0.75s] DEBUG: Activating VT 8
[+0.75s] DEBUG: Logging to /var/log/lightdm/x-1.log
[+0.75s] DEBUG: Writing X server authority to /var/run/lightdm/root/:1
[+0.75s] DEBUG: Launching X Server
[+0.75s] DEBUG: Launching process 3496: /usr/bin/X :1 -layout seat0 -auth /var/run/lightdm/root/:1 -nolisten tcp vt8 -novtswitch
[+0.75s] DEBUG: Waiting for ready signal from X server :1
[+0.75s] DEBUG: Acquired bus name org.freedesktop.DisplayManager
[+0.75s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat0
[+0.75s] DEBUG: Registering seat with bus path /org/freedesktop/DisplayManager/Seat1
[+8.08s] DEBUG: Got signal 10 from process 3496
[+8.08s] DEBUG: Got signal from X server :1
[+8.08s] DEBUG: Connecting to XServer :1
[+8.08s] DEBUG: Starting greeter
[+8.08s] DEBUG: Started session 3671 with service 'lightdm', username 'lightdm'
[+8.28s] DEBUG: Session 3671 authentication complete with return value 0: Success
[+8.28s] DEBUG: Greeter authorized
[+8.28s] DEBUG: Logging to /var/log/lightdm/x-1-greeter.log
[+8.34s] DEBUG: Session 3671 running command /usr/sbin/lightdm-gtk-greeter
[+8.35s] DEBUG: org.freedesktop.Accounts does not exist, falling back to passwd file
[+9.87s] DEBUG: Greeter connected version=1.2.2
[+9.87s] DEBUG: Greeter connected, display is ready
[+9.87s] DEBUG: New display ready, switching to it
[+9.87s] DEBUG: Activating VT 8
[+12.09s] DEBUG: Greeter start authentication for testuser
[+12.09s] DEBUG: Started session 3865 with service 'lightdm', username 'testuser'
[+12.17s] DEBUG: Session 3865 got 1 message(s) from PAM
[+12.17s] DEBUG: Prompt greeter with 1 message(s)
[+22.56s] DEBUG: Continue authentication
[+22.58s] DEBUG: Session 3865 authentication complete with return value 0: Success
[+22.58s] DEBUG: Authenticate result for user testuser: Success
[+22.58s] DEBUG: User testuser authorized
[+22.59s] DEBUG: Greeter requests session lightdm-xsession
[+22.59s] DEBUG: Using session lightdm-xsession
[+22.59s] DEBUG: Stopping greeter
[+22.59s] DEBUG: Session 3671: Sending SIGTERM
[+22.84s] DEBUG: Greeter closed communication channel
[+22.84s] DEBUG: Session 3671 exited with return value 0
[+22.84s] DEBUG: Greeter quit
[+22.84s] DEBUG: Dropping privileges to uid 1000
[+22.84s] DEBUG: Restoring privileges
[+22.84s] DEBUG: Dropping privileges to uid 1000
[+22.84s] DEBUG: Writing /home/testuser/.dmrc
[+22.90s] DEBUG: Restoring privileges
[+22.97s] DEBUG: Starting session lightdm-xsession as user testuser
[+22.97s] DEBUG: Session 3865 running command /etc/X11/Xsession default
[+23.08s] DEBUG: Registering session with bus path /org/freedesktop/DisplayManager/Session0