Multiseat with Dualhead

Based on the tutorial of Netpatia, I have successfully managed to setup multiseat with a dualhead (VGA, DVI) card in Archlinux. It involves installing 1 package, creating 2 files, and editing 2 existing files. This tutorial assumes you have gdm and a choice of your favorite desktop environment or window manager. For the time being, it's best that you use similar resolutions for both monitors. Next:
1. Install wmctrl.
2. Create these two files:
#!/bin/bash
# /usr/sbin/Xephyr-login.sh
XAUTH_BASE=/var/lib/gdm/:0.Xauth
DISPL_BASE=:0
XEP=$(XAUTHORITY=$XAUTH_BASE xwininfo -root -children -display :0 | grep "Xephyr on :1" --max-count=1)
echo ${XEP} >> /tmp/logXephyrLogin
# assign values to positional parameters to obtain the id (first parameter) of the Xephyr window
set ${XEP}
DISPLAY=$DISPL_BASE XAUTHORITY=$XAUTH_BASE wmctrl -i -r $1 -e 0,0,768,-1,-1
# echo $1 >> /tmp/logXephyrLogin_1
/usr/lib/gdm/gdmlogin
Make sure that the number "768" in the file Xephyr-login.sh matches the rightside video mode of the resolution you intend to use. For example, if you intend to use 1280x800, choose 800. If you intend to use 1366x768, choose 768.
#!/bin/bash
# /usr/sbin/Xephyr-path.sh
trap "" usr1
XEPHYR=/usr/bin/Xephyr
DISPLAY=:0
XAUTHORITY=/var/lib/gdm/:0.Xauth
args=()
while [ ! -z "$1" ]; do
if [[ "$1" == "-kbdpath" ]]; then
shift
if [ ! -z "$1" ]; then
args=("${args[@]}" "-keybd")
args=("${args[@]}" "evdev,,device=/dev/input/by-path/$1,xkbrules=xorg,xkbmodel=evdev,xkblayout=us")
fi
elif [[ "$1" == "-mousepath" ]]; then
shift
if [ ! -z "$1" ]; then
args=("${args[@]}" "-mouse")
args=("${args[@]}" "evdev,,device=/dev/input/by-path/$1")
fi
else
args=("${args[@]}" "$1")
# echo "+++ args $1 +++" >> /tmp/logXephyr
fi
shift
done
# Next line is just to create a log file with the invocation parameters, for debug purposes
echo $XEPHYR "${args[@]}" >> /tmp/logXephyr
exec $XEPHYR "${args[@]}"
And then issue these commands:
chmod 744 /usr/sbin/Xephyr-login.sh
chmod 744 /usr/sbin/Xephyr-path.sh
chown gdm:gdm /usr/sbin/Xephyr-login.sh
3. Backup your xorg.conf, and replace it with this one while changing what you need to change (Driver, BusID, Modes, Virtual):
Section "Device"
Identifier "Card0"
BoardName "Mobility Radeon HD 3450"
Driver "radeon"
BusID "PCI:2:0:0"
Option "Monitor-VGA-0" "Mon-VGA"
Option "Monitor-DVI-0" "Mon-DVI"
EndSection
Section "Monitor"
Identifier "Mon-VGA"
Option "DPMS"
EndSection
Section "Monitor"
Identifier "Mon-DVI"
Option "DPMS"
Option "Below" "Mon-VGA"
EndSection
Section "Screen"
Identifier "Screen-base"
Device "Card0"
Monitor "Mon-VGA"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1024x768"
Virtual 1024 1536
EndSubSection
EndSection
Section "ServerFlags"
Option "AllowMouseOpenFail" "yes"
Option "DontVTSwitch" "yes"
Option "DontZap" "yes"
EndSection
Backup the file /etc/gdm/custom.conf and replace it with this one:
[servers]
0=Xephyr0
1=Xephyr1
2=Xephyr2
[server-Xephyr0]
name=Xephyr0
command=/usr/bin/X -br -dpms -s 0
handled=false
flexible=false
[server-Xephyr1]
name=Xephyr1
command=/usr/sbin/Xephyr-path.sh -br -screen 1024x768 -kbdpath pci-0000:00:02.0-usb-0:2:1.0-event-kbd -mousepath pci-0000:00:02.0-usb-0:1:1.0-event-mouse
handled=true
flexible=false
[server-Xephyr2]
name=Xephyr2
command=/usr/sbin/Xephyr-path.sh -br -screen 1024x768 -kbdpath pci-0000:00:02.0-usb-0:3:1.0-event-kbd -mousepath pci-0000:00:02.0-usb-0:4:1.0-event-mouse
handled=true
flexible=false
[daemon]
Greeter=/usr/sbin/Xephyr-login.sh
Change the resolutions (1024x768) in the file above with the same one in xorg.conf. Also, change keyboard and mouse paths in the file with the ones that match yours. You can get that from these commands:
ls -la /dev/input/by-path/ | grep event | grep kbd
ls -la /dev/input/by-path/ | grep event | grep mouse

Very nice! Gotta have to try it out!
Should be wikified!

Similar Messages

  • Multiseat with Lightdm broken after updating Mesa

    Hi,
    I've been using a multiseat configuration for months now, and it was working almost perfectly (almost - multiseating is far from being really stable yet IMHO, but anyway).
    I updated mesa-libgl a few days ago and confirmed packages replacement, but right after rebooting my second seat didn't work anymore. The display stays black and no login screen shows up, although I suppose a signal is still sent as the monitor doesn't go into sleep mode. The first seat on the other side is working as usual, no difference noted.
    In the processes, I can only see one Xorg instance (used by the first seat), when I'm supposed to have tow instances, one for each seat and with different parameters. It's like the second seat is crashing, but I can see no trace of such crash in the logs (kernel.log or everything.log). Even the Xorg.1.log contains all the informations as if the display was running fine.
    The day after updating Mesa, I also updated Lightdm but it didn't change anything (I had a brief hope for a moment).
    My configuration is the following :
        - Nvidia GTX 760: used on seat0 as dual-head with Nouveau driver (Layout-Main in Xorg)
        - Intel GMA: used on seat1 on single-head with Intel driver (Layout-Aux in Xorg)
    I'm using Lightdm with this configuration:
    [LightDM]
    minimum-vt=1
    run-directory=/run/lightdm
    [SeatDefaults]
    greeter-session=lightdm-gtk-greeter
    greeter-show-manual-login=true
    session-wrapper=/etc/lightdm/Xsession
    greeter-setup-script=/usr/bin/numlockx on
    [Seat:0]
    xserver-command=/usr/bin/X :0 -sharevts
    xserver-layout=Layout-Main
    [Seat:1]
    xserver-command=/usr/bin/X :1 -sharevts -novtswitch
    xserver-layout=Layout-Aux
    The Xorg configuration for the seats is divided into two files:
    /etc/X11/xorg.conf.d/50-serverlayout-main.conf
    Section "ServerLayout"
    Identifier "Layout-Main"
    Screen "Screen-Main" 0 0
    InputDevice "Logitech-Illuminated" "CoreKeyboard"
    InputDevice "Logitech-G100S" "CorePointer"
    Option "AllowEmptyInput" "true"
    EndSection
    Section "InputDevice"
    Identifier "Logitech-G100S"
    Driver "evdev"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/by-id/usb-Logitech_G100s_Optical_Gaming_Mouse-event-mouse"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    Option "GrabDevice" "on" # prevent send event to other X-servers
    EndSection
    Section "InputDevice"
    Identifier "Logitech-Illuminated"
    Driver "evdev"
    Option "XkbLayout" "fr"
    Option "XkbModel" "pc104"
    Option "Device" "/dev/input/by-id/usb-Logitech_Logitech_Illuminated_Keyboard-event-kbd"
    Option "GrabDevice" "on" # prevent send event to other X-servers
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Samsung"
    ModelName "Samsung SyncMaster 2433"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 60.0
    Option "DPMS"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Samsung"
    ModelName "Samsung SyncMaster 2333sw"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 60.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "NVIDIA-GTX760"
    Driver "nouveau"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce GTX 760"
    EndSection
    Section "Screen"
    Identifier "Screen-Main"
    Device "NVIDIA-GTX760"
    Monitor "Monitor0"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    /etc/X11/xorg.conf.d/51-serverlayout-aux.conf
    Section "ServerLayout"
    Identifier "Layout-Aux"
    Screen "Screen-Aux" 0 0
    InputDevice "K400r-keyboard" "CoreKeyboard"
    InputDevice "K400r-keyboard-multimedia" "SendCoreEvents"
    InputDevice "K400r-mouse" "CorePointer"
    Option "AllowEmptyInput" "true"
    EndSection
    Section "InputDevice"
    Identifier "K400r-mouse"
    Driver "evdev"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-if02-mouse"
    Option "Emulate3Buttons" "no"
    Option "ZAxisMapping" "4 5"
    Option "GrabDevice" "on" # prevent send event to other X-servers
    EndSection
    Section "InputDevice"
    Identifier "K400r-keyboard"
    Driver "evdev"
    Option "XkbLayout" "fr"
    Option "XkbModel" "pc104"
    Option "Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-if02-event-mouse"
    Option "GrabDevice" "on" # prevent send event to other X-servers
    EndSection
    Section "InputDevice"
    Identifier "K400r-keyboard-multimedia"
    Driver "evdev"
    Option "Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-if02-event-mouse"
    Option "XkbModel" "evdev"
    Option "GrabDevice" "on"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Compaq"
    ModelName "Compaq Q2159"
    HorizSync 30.0 - 81.0
    VertRefresh 56.0 - 60.0
    Option "DPMS"
    EndSection
    Section "Device"
    Identifier "Intel-I915"
    Driver "intel"
    VendorName "Intel"
    BoardName "Intel IGP"
    BusID "PCI:0:2:0"
    # Option "NoAccel" "True"
    # Option "DRI" "False"
    # Option "TearFree" "true"
    # Option "AccelMethod" "sna"
    EndSection
    Section "Screen"
    Identifier "Screen-Aux"
    Device "Intel-I915"
    Monitor "Monitor1"
    DefaultDepth 24
    EndSection
    When I disable the primary seat configuration in Xorg files (I just prevent the file from being loaded), and after I restart Lightm via
    # systemctl restart lightdm
    the display shows up correctly on the secondary seat (and not on the primary, which is logical so far). So in the end it seems I just cannot have both seat running at the same time, but individually they work fine.
    My logical assumption is that the recent upgrade of the Mesa packages somehow broke this configuration, but I cannot find why and how.
    FYI, here's what I tried:
    - play with Intel drivers options in Xorg (NoAccel, DRI, ...)
    - play with Xorg options on the command line of each seat (-sharevts, -novtswitch)
    - switch to Nvidia proprietary drivers (but here also, only the primary seat works, but that may be for a totally different reason, which is why I used Nouveau ever since I set up this configuration)
    Here are the Xorg log files:
    Xorg.0.log
    X.Org X Server 1.16.1
    Release Date: 2014-09-21
    [ 6.853] X Protocol Version 11, Revision 0
    [ 6.853] Build Operating System: Linux 3.16.1-1-ARCH x86_64
    [ 6.853] Current Operating System: Linux leto 3.16.3-1-ARCH #1 SMP PREEMPT Wed Sep 17 21:54:13 CEST 2014 x86_64
    [ 6.854] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=83e16b30-5b35-4b15-9bce-5ec87c00d46d rw quiet
    [ 6.854] Build Date: 21 September 2014 10:53:13AM
    [ 6.854]
    [ 6.854] Current version of pixman: 0.32.6
    [ 6.854] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 6.854] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 6.854] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Oct 3 23:21:15 2014
    [ 6.855] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 6.855] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [ 6.857] (==) ServerLayout "Layout-Main"
    [ 6.857] (**) |-->Screen "Screen-Main" (0)
    [ 6.857] (**) | |-->Monitor "Monitor0"
    [ 6.857] (**) | |-->Device "NVIDIA-GTX760"
    [ 6.857] (**) |-->Input Device "Logitech-Illuminated"
    [ 6.857] (**) |-->Input Device "Logitech-G100S"
    [ 6.857] (==) Automatically adding devices
    [ 6.857] (==) Automatically enabling devices
    [ 6.857] (==) Automatically adding GPU devices
    [ 6.858] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 6.858] Entry deleted from font path.
    [ 6.859] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 6.860] Entry deleted from font path.
    [ 6.860] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 6.860] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 6.860] Entry deleted from font path.
    [ 6.860] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 6.860] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/
    [ 6.860] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 6.860] (II) Loader magic: 0x818d80
    [ 6.860] (II) Module ABI versions:
    [ 6.860] X.Org ANSI C Emulation: 0.4
    [ 6.860] X.Org Video Driver: 18.0
    [ 6.860] X.Org XInput driver : 21.0
    [ 6.860] X.Org Server Extension : 8.0
    [ 6.861] (EE) systemd-logind: failed to get session: PID 656 does not belong to any known session
    [ 6.861] (II) xfree86: Adding drm device (/dev/dri/card0)
    [ 6.861] (II) xfree86: Adding drm device (/dev/dri/card1)
    [ 6.862] (--) PCI: (0:0:2:0) 8086:0412:1458:d000 rev 6, Mem @ 0xdb400000/4194304, 0xc0000000/268435456, I/O @ 0x0000f000/64
    [ 6.862] (--) PCI:*(0:1:0:0) 10de:1187:1462:2848 rev 161, Mem @ 0xda000000/16777216, 0xd0000000/134217728, 0xd8000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
    [ 6.862] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 6.862] (II) LoadModule: "glx"
    [ 6.863] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 6.873] (II) Module glx: vendor="X.Org Foundation"
    [ 6.873] compiled for 1.16.1, module version = 1.0.0
    [ 6.873] ABI class: X.Org Server Extension, version 8.0
    [ 6.873] (==) AIGLX enabled
    [ 6.873] (II) LoadModule: "nouveau"
    [ 6.874] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 6.875] (II) Module nouveau: vendor="X.Org Foundation"
    [ 6.875] compiled for 1.16.1, module version = 1.0.11
    [ 6.875] Module class: X.Org Video Driver
    [ 6.875] ABI class: X.Org Video Driver, version 18.0
    [ 6.875] (II) LoadModule: "evdev"
    [ 6.875] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 6.877] (II) Module evdev: vendor="X.Org Foundation"
    [ 6.877] compiled for 1.16.0, module version = 2.9.0
    [ 6.877] Module class: X.Org XInput Driver
    [ 6.877] ABI class: X.Org XInput driver, version 21.0
    [ 6.877] (II) NOUVEAU driver
    [ 6.877] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 6.877] RIVA TNT (NV04)
    [ 6.877] RIVA TNT2 (NV05)
    [ 6.877] GeForce 256 (NV10)
    [ 6.877] GeForce 2 (NV11, NV15)
    [ 6.877] GeForce 4MX (NV17, NV18)
    [ 6.877] GeForce 3 (NV20)
    [ 6.877] GeForce 4Ti (NV25, NV28)
    [ 6.878] GeForce FX (NV3x)
    [ 6.878] GeForce 6 (NV4x)
    [ 6.878] GeForce 7 (G7x)
    [ 6.878] GeForce 8 (G8x)
    [ 6.878] GeForce GTX 200 (NVA0)
    [ 6.878] GeForce GTX 400 (NVC0)
    [ 6.878] (++) using VT number 1
    [ 6.878] (II) [drm] nouveau interface version: 1.1.2
    [ 6.878] (II) Loading sub module "dri2"
    [ 6.878] (II) LoadModule: "dri2"
    [ 6.878] (II) Module "dri2" already built-in
    [ 6.878] (--) NOUVEAU(0): Chipset: "NVIDIA NVE4"
    [ 6.878] (**) NOUVEAU(0): Depth 24, (--) framebuffer bpp 32
    [ 6.878] (==) NOUVEAU(0): RGB weight 888
    [ 6.878] (==) NOUVEAU(0): Default visual is TrueColor
    [ 6.878] (==) NOUVEAU(0): Using HW cursor
    [ 6.878] (==) NOUVEAU(0): GLX sync to VBlank enabled.
    [ 6.878] (==) NOUVEAU(0): Page flipping enabled
    [ 6.878] (==) NOUVEAU(0): Swap limit set to 1 [Max allowed 2]
    [ 6.878] (==) NOUVEAU(0): Page flipping synced to vblank by kernel.
    [ 6.878] (II) NOUVEAU(0): Initializing outputs ...
    [ 6.935] (II) NOUVEAU(0): Output DVI-I-1 using monitor section Monitor0
    [ 6.965] (II) NOUVEAU(0): Output DVI-D-1 has no monitor section
    [ 6.967] (II) NOUVEAU(0): Output HDMI-1 has no monitor section
    [ 7.073] (II) NOUVEAU(0): Output DP-1 has no monitor section
    [ 7.073] (II) NOUVEAU(0): 4 crtcs needed for screen.
    [ 7.076] (II) NOUVEAU(0): Allocated crtc nr. 0 to this screen.
    [ 7.076] (II) NOUVEAU(0): Allocated crtc nr. 1 to this screen.
    [ 7.076] (II) NOUVEAU(0): Allocated crtc nr. 2 to this screen.
    [ 7.076] (II) NOUVEAU(0): Allocated crtc nr. 3 to this screen.
    [ 7.134] (II) NOUVEAU(0): EDID for output DVI-I-1
    [ 7.134] (II) NOUVEAU(0): Manufacturer: SAM Model: 5c8 Serial#: 1129132596
    [ 7.134] (II) NOUVEAU(0): Year: 2009 Week: 46
    [ 7.134] (II) NOUVEAU(0): EDID Version: 1.3
    [ 7.134] (II) NOUVEAU(0): Digital Display Input
    [ 7.134] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 52 vert.: 29
    [ 7.134] (II) NOUVEAU(0): Gamma: 2.20
    [ 7.134] (II) NOUVEAU(0): DPMS capabilities: Off
    [ 7.134] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 7.134] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 7.134] (II) NOUVEAU(0): redX: 0.647 redY: 0.334 greenX: 0.284 greenY: 0.607
    [ 7.134] (II) NOUVEAU(0): blueX: 0.151 blueY: 0.071 whiteX: 0.312 whiteY: 0.329
    [ 7.134] (II) NOUVEAU(0): Supported established timings:
    [ 7.134] (II) NOUVEAU(0): 640x480@60Hz
    [ 7.134] (II) NOUVEAU(0): 800x600@56Hz
    [ 7.134] (II) NOUVEAU(0): 800x600@60Hz
    [ 7.134] (II) NOUVEAU(0): 1024x768@60Hz
    [ 7.134] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 7.134] (II) NOUVEAU(0): Supported standard timings:
    [ 7.134] (II) NOUVEAU(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 7.134] (II) NOUVEAU(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 7.134] (II) NOUVEAU(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 7.134] (II) NOUVEAU(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 7.134] (II) NOUVEAU(0): #4: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 7.134] (II) NOUVEAU(0): #5: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 7.134] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.134] (II) NOUVEAU(0): clock: 148.5 MHz Image Size: 521 x 293 mm
    [ 7.134] (II) NOUVEAU(0): h_active: 1920 h_sync: 2008 h_sync_end 2052 h_blank_end 2200 h_border: 0
    [ 7.134] (II) NOUVEAU(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 7.134] (II) NOUVEAU(0): Ranges: V min: 56 V max: 60 Hz, H min: 30 H max: 81 kHz, PixClock max 175 MHz
    [ 7.134] (II) NOUVEAU(0): Monitor name: SyncMaster
    [ 7.134] (II) NOUVEAU(0): Serial No: H9XSB06266
    [ 7.134] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.134] (II) NOUVEAU(0): clock: 148.5 MHz Image Size: 521 x 293 mm
    [ 7.134] (II) NOUVEAU(0): h_active: 1920 h_sync: 2448 h_sync_end 2492 h_blank_end 2640 h_border: 0
    [ 7.134] (II) NOUVEAU(0): v_active: 1080 v_sync: 1084 v_sync_end 1089 v_blanking: 1125 v_border: 0
    [ 7.134] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.134] (II) NOUVEAU(0): clock: 74.2 MHz Image Size: 521 x 293 mm
    [ 7.134] (II) NOUVEAU(0): h_active: 1280 h_sync: 1390 h_sync_end 1430 h_blank_end 1650 h_border: 0
    [ 7.134] (II) NOUVEAU(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 7.134] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.134] (II) NOUVEAU(0): clock: 74.2 MHz Image Size: 521 x 293 mm
    [ 7.134] (II) NOUVEAU(0): h_active: 1280 h_sync: 1720 h_sync_end 1760 h_blank_end 1980 h_border: 0
    [ 7.134] (II) NOUVEAU(0): v_active: 720 v_sync: 725 v_sync_end 730 v_blanking: 750 v_border: 0
    [ 7.134] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.134] (II) NOUVEAU(0): clock: 27.0 MHz Image Size: 521 x 293 mm
    [ 7.134] (II) NOUVEAU(0): h_active: 720 h_sync: 732 h_sync_end 796 h_blank_end 864 h_border: 0
    [ 7.134] (II) NOUVEAU(0): v_active: 576 v_sync: 581 v_sync_end 586 v_blanking: 625 v_border: 0
    [ 7.134] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.134] (II) NOUVEAU(0): clock: 27.0 MHz Image Size: 521 x 293 mm
    [ 7.134] (II) NOUVEAU(0): h_active: 720 h_sync: 736 h_sync_end 798 h_blank_end 858 h_border: 0
    [ 7.134] (II) NOUVEAU(0): v_active: 480 v_sync: 489 v_sync_end 495 v_blanking: 525 v_border: 0
    [ 7.134] (II) NOUVEAU(0): Number of EDID sections to follow: 1
    [ 7.134] (II) NOUVEAU(0): EDID (in hex):
    [ 7.134] (II) NOUVEAU(0): 00ffffffffffff004c2dc80534324d43
    [ 7.134] (II) NOUVEAU(0): 2e13010380341d782aeed1a555489b26
    [ 7.134] (II) NOUVEAU(0): 1250542308008100814081809500a940
    [ 7.134] (II) NOUVEAU(0): b30001010101023a801871382d40582c
    [ 7.134] (II) NOUVEAU(0): 450009252100001e000000fd00383c1e
    [ 7.134] (II) NOUVEAU(0): 5111000a202020202020000000fc0053
    [ 7.134] (II) NOUVEAU(0): 796e634d61737465720a2020000000ff
    [ 7.134] (II) NOUVEAU(0): 00483958534230363236360a20200111
    [ 7.134] (II) NOUVEAU(0): 02010400023a80d072382d40102c4580
    [ 7.134] (II) NOUVEAU(0): 09252100001e011d007251d01e206e28
    [ 7.134] (II) NOUVEAU(0): 550009252100001e011d00bc52d01e20
    [ 7.134] (II) NOUVEAU(0): b828554009252100001e8c0ad0902040
    [ 7.134] (II) NOUVEAU(0): 31200c4055000925210000188c0ad08a
    [ 7.134] (II) NOUVEAU(0): 20e02d10103e96000925210000180000
    [ 7.134] (II) NOUVEAU(0): 00000000000000000000000000000000
    [ 7.134] (II) NOUVEAU(0): 0000000000000000000000000000005e
    [ 7.134] (II) NOUVEAU(0): Not using mode "1920x1080" (vrefresh out of range)
    [ 7.134] (II) NOUVEAU(0): Not using mode "1280x720" (vrefresh out of range)
    [ 7.134] (II) NOUVEAU(0): Not using mode "720x576" (vrefresh out of range)
    [ 7.134] (II) NOUVEAU(0): Printing probed modes for output DVI-I-1
    [ 7.134] (II) NOUVEAU(0): Modeline "1920x1080"x60.0 148.50 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.5 kHz eP)
    [ 7.134] (II) NOUVEAU(0): Modeline "1920x1080"x59.9 148.35 1920 2008 2052 2200 1080 1084 1089 1125 +hsync +vsync (67.4 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1280x720"x60.0 74.25 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1280x720"x59.9 74.18 1280 1390 1430 1650 720 725 730 750 +hsync +vsync (45.0 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "720x480"x60.0 27.03 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "720x480"x59.9 27.00 720 736 798 858 480 489 495 525 -hsync -vsync (31.5 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.134] (II) NOUVEAU(0): Modeline "640x480"x59.9 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.164] (II) NOUVEAU(0): EDID for output DVI-D-1
    [ 7.164] (II) NOUVEAU(0): Manufacturer: SAM Model: 4de Serial#: 1129132595
    [ 7.164] (II) NOUVEAU(0): Year: 2009 Week: 6
    [ 7.164] (II) NOUVEAU(0): EDID Version: 1.3
    [ 7.164] (II) NOUVEAU(0): Digital Display Input
    [ 7.164] (II) NOUVEAU(0): Max Image Size [cm]: horiz.: 51 vert.: 29
    [ 7.164] (II) NOUVEAU(0): Gamma: 2.20
    [ 7.164] (II) NOUVEAU(0): DPMS capabilities: Off
    [ 7.164] (II) NOUVEAU(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 7.164] (II) NOUVEAU(0): First detailed timing is preferred mode
    [ 7.164] (II) NOUVEAU(0): redX: 0.640 redY: 0.330 greenX: 0.300 greenY: 0.600
    [ 7.164] (II) NOUVEAU(0): blueX: 0.150 blueY: 0.060 whiteX: 0.312 whiteY: 0.329
    [ 7.164] (II) NOUVEAU(0): Supported established timings:
    [ 7.164] (II) NOUVEAU(0): 640x480@60Hz
    [ 7.164] (II) NOUVEAU(0): 800x600@56Hz
    [ 7.164] (II) NOUVEAU(0): 800x600@60Hz
    [ 7.164] (II) NOUVEAU(0): 1024x768@60Hz
    [ 7.164] (II) NOUVEAU(0): Manufacturer's mask: 0
    [ 7.164] (II) NOUVEAU(0): Supported standard timings:
    [ 7.164] (II) NOUVEAU(0): #0: hsize: 1280 vsize 800 refresh: 60 vid: 129
    [ 7.164] (II) NOUVEAU(0): #1: hsize: 1280 vsize 960 refresh: 60 vid: 16513
    [ 7.164] (II) NOUVEAU(0): #2: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 7.164] (II) NOUVEAU(0): #3: hsize: 1440 vsize 900 refresh: 60 vid: 149
    [ 7.164] (II) NOUVEAU(0): #4: hsize: 1680 vsize 1050 refresh: 60 vid: 179
    [ 7.164] (II) NOUVEAU(0): #5: hsize: 1600 vsize 1200 refresh: 60 vid: 16553
    [ 7.164] (II) NOUVEAU(0): Supported detailed timing:
    [ 7.164] (II) NOUVEAU(0): clock: 138.5 MHz Image Size: 477 x 268 mm
    [ 7.164] (II) NOUVEAU(0): h_active: 1920 h_sync: 1968 h_sync_end 2000 h_blank_end 2080 h_border: 0
    [ 7.164] (II) NOUVEAU(0): v_active: 1080 v_sync: 1083 v_sync_end 1088 v_blanking: 1111 v_border: 0
    [ 7.164] (II) NOUVEAU(0): Ranges: V min: 56 V max: 61 Hz, H min: 30 H max: 75 kHz, PixClock max 175 MHz
    [ 7.164] (II) NOUVEAU(0): Monitor name: SyncMaster
    [ 7.164] (II) NOUVEAU(0): Serial No: H9XS201897
    [ 7.164] (II) NOUVEAU(0): EDID (in hex):
    [ 7.164] (II) NOUVEAU(0): 00ffffffffffff004c2dde0433324d43
    [ 7.164] (II) NOUVEAU(0): 0613010380331d782aee91a3544c9926
    [ 7.164] (II) NOUVEAU(0): 0f50542308008100814081809500b300
    [ 7.164] (II) NOUVEAU(0): a940010101011a3680a070381f403020
    [ 7.164] (II) NOUVEAU(0): 3500dd0c1100001a000000fd00383d1e
    [ 7.164] (II) NOUVEAU(0): 4b11000a202020202020000000fc0053
    [ 7.164] (II) NOUVEAU(0): 796e634d61737465720a2020000000ff
    [ 7.164] (II) NOUVEAU(0): 00483958533230313839370a2020008b
    [ 7.164] (II) NOUVEAU(0): Printing probed modes for output DVI-D-1
    [ 7.164] (II) NOUVEAU(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 7.164] (II) NOUVEAU(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 7.164] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.166] (II) NOUVEAU(0): EDID for output HDMI-1
    [ 7.270] (II) NOUVEAU(0): EDID for output DP-1
    [ 7.270] (II) NOUVEAU(0): Output DVI-I-1 connected
    [ 7.270] (II) NOUVEAU(0): Output DVI-D-1 connected
    [ 7.270] (II) NOUVEAU(0): Output HDMI-1 disconnected
    [ 7.270] (II) NOUVEAU(0): Output DP-1 disconnected
    [ 7.270] (II) NOUVEAU(0): Using exact sizes for initial modes
    [ 7.270] (II) NOUVEAU(0): Output DVI-I-1 using initial mode 1920x1080
    [ 7.270] (II) NOUVEAU(0): Output DVI-D-1 using initial mode 1920x1080
    [ 7.270] (II) NOUVEAU(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 7.270] (--) NOUVEAU(0): Virtual size is 1920x1080 (pitch 0)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1920x1080": 138.5 MHz (scaled from 0.0 MHz), 66.6 kHz, 59.9 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1920x1080"x59.9 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1600x1200": 162.0 MHz (scaled from 0.0 MHz), 75.0 kHz, 60.0 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1600x1200"x60.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1680x1050": 119.0 MHz (scaled from 0.0 MHz), 64.7 kHz, 59.9 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1280x1024": 108.0 MHz (scaled from 0.0 MHz), 64.0 kHz, 60.0 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1440x900": 88.8 MHz (scaled from 0.0 MHz), 55.5 kHz, 59.9 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1440x900"x59.9 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1280x960": 108.0 MHz (scaled from 0.0 MHz), 60.0 kHz, 60.0 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1280x960"x60.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1280x800": 71.0 MHz (scaled from 0.0 MHz), 49.3 kHz, 59.9 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1280x800"x59.9 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "1024x768": 65.0 MHz (scaled from 0.0 MHz), 48.4 kHz, 60.0 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "800x600": 40.0 MHz (scaled from 0.0 MHz), 37.9 kHz, 60.3 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "800x600": 36.0 MHz (scaled from 0.0 MHz), 35.2 kHz, 56.2 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "800x600"x56.2 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 7.270] (**) NOUVEAU(0): Driver mode "640x480": 25.2 MHz (scaled from 0.0 MHz), 31.5 kHz, 60.0 Hz
    [ 7.270] (II) NOUVEAU(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 7.270] (==) NOUVEAU(0): DPI set to (96, 96)
    [ 7.270] (II) Loading sub module "fb"
    [ 7.270] (II) LoadModule: "fb"
    [ 7.270] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 7.272] (II) Module fb: vendor="X.Org Foundation"
    [ 7.272] compiled for 1.16.1, module version = 1.0.0
    [ 7.272] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 7.272] (II) Loading sub module "shadowfb"
    [ 7.272] (II) LoadModule: "shadowfb"
    [ 7.272] (II) Loading /usr/lib/xorg/modules/libshadowfb.so
    [ 7.272] (II) Module shadowfb: vendor="X.Org Foundation"
    [ 7.272] compiled for 1.16.1, module version = 1.0.0
    [ 7.272] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 7.272] (--) Depth 24 pixmap format is 32 bpp
    [ 7.278] (II) NOUVEAU(0): Channel setup complete.
    [ 7.279] (II) NOUVEAU(0): [COPY] async initialised.
    [ 7.280] (II) NOUVEAU(0): [DRI2] Setup complete
    [ 7.280] (II) NOUVEAU(0): [DRI2] DRI driver: nouveau
    [ 7.280] (II) NOUVEAU(0): [DRI2] VDPAU driver: nouveau
    [ 7.281] (II) Loading sub module "exa"
    [ 7.281] (II) LoadModule: "exa"
    [ 7.281] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 7.281] (II) Module exa: vendor="X.Org Foundation"
    [ 7.281] compiled for 1.16.1, module version = 2.6.0
    [ 7.281] ABI class: X.Org Video Driver, version 18.0
    [ 7.281] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 7.281] (II) EXA(0): Driver registered support for the following operations:
    [ 7.281] (II) Solid
    [ 7.281] (II) Copy
    [ 7.281] (II) Composite (RENDER acceleration)
    [ 7.281] (II) UploadToScreen
    [ 7.281] (II) DownloadFromScreen
    [ 7.281] (==) NOUVEAU(0): Backing store enabled
    [ 7.281] (==) NOUVEAU(0): Silken mouse enabled
    [ 7.282] (II) NOUVEAU(0): [XvMC] Associated with Nouveau GeForce 8/9 Textured Video.
    [ 7.282] (II) NOUVEAU(0): [XvMC] Extension initialized.
    [ 7.282] (**) NOUVEAU(0): DPMS enabled
    [ 7.282] (II) NOUVEAU(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 7.282] (--) RandR disabled
    [ 7.363] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 7.363] (II) AIGLX: enabled GLX_ARB_create_context
    [ 7.363] (II) AIGLX: enabled GLX_ARB_create_context_profile
    [ 7.363] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
    [ 7.363] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 7.363] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 7.363] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
    [ 7.363] (II) AIGLX: enabled GLX_ARB_fbconfig_float
    [ 7.363] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 7.363] (II) AIGLX: Loaded and initialized nouveau
    [ 7.363] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 7.365] (II) NOUVEAU(0): NVEnterVT is called.
    [ 7.420] (II) NOUVEAU(0): Setting screen physical size to 508 x 285
    [ 7.420] resize called 1920 1080
    [ 7.445] (II) Using input driver 'evdev' for 'Logitech-Illuminated'
    [ 7.445] (**) Option "CoreKeyboard"
    [ 7.445] (**) Logitech-Illuminated: always reports core events
    [ 7.445] (**) evdev: Logitech-Illuminated: Device: "/dev/input/by-id/usb-Logitech_Logitech_Illuminated_Keyboard-event-kbd"
    [ 7.503] (--) evdev: Logitech-Illuminated: Vendor 0x46d Product 0xc318
    [ 7.503] (--) evdev: Logitech-Illuminated: Found keys
    [ 7.503] (II) evdev: Logitech-Illuminated: Configuring as keyboard
    [ 7.503] (II) XINPUT: Adding extended input device "Logitech-Illuminated" (type: KEYBOARD, id 6)
    [ 7.503] (**) Option "xkb_rules" "evdev"
    [ 7.503] (**) Option "xkb_model" "pc104"
    [ 7.503] (**) Option "xkb_layout" "fr"
    [ 7.513] (II) Using input driver 'evdev' for 'Logitech-G100S'
    [ 7.513] (**) Option "CorePointer"
    [ 7.513] (**) Logitech-G100S: always reports core events
    [ 7.513] (**) evdev: Logitech-G100S: Device: "/dev/input/by-id/usb-Logitech_G100s_Optical_Gaming_Mouse-event-mouse"
    [ 7.583] (--) evdev: Logitech-G100S: Vendor 0x46d Product 0xc247
    [ 7.583] (--) evdev: Logitech-G100S: Found 12 mouse buttons
    [ 7.583] (--) evdev: Logitech-G100S: Found scroll wheel(s)
    [ 7.583] (--) evdev: Logitech-G100S: Found relative axes
    [ 7.583] (--) evdev: Logitech-G100S: Found x and y relative axes
    [ 7.583] (II) evdev: Logitech-G100S: Configuring as mouse
    [ 7.583] (II) evdev: Logitech-G100S: Adding scrollwheel support
    [ 7.583] (**) Option "Emulate3Buttons" "no"
    [ 7.583] (**) evdev: Logitech-G100S: YAxisMapping: buttons 4 and 5
    [ 7.583] (**) evdev: Logitech-G100S: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.583] (II) XINPUT: Adding extended input device "Logitech-G100S" (type: MOUSE, id 7)
    [ 7.583] (II) evdev: Logitech-G100S: initialized for relative axes.
    [ 7.583] (**) Logitech-G100S: (accel) keeping acceleration scheme 1
    [ 7.583] (**) Logitech-G100S: (accel) acceleration profile 0
    [ 7.583] (**) Logitech-G100S: (accel) acceleration factor: 2.000
    [ 7.583] (**) Logitech-G100S: (accel) acceleration threshold: 4
    [ 7.584] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 7.584] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.584] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.584] (**) Power Button: Applying InputClass "system-keyboard"
    [ 7.584] (II) Using input driver 'evdev' for 'Power Button'
    [ 7.584] (**) Power Button: always reports core events
    [ 7.584] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 7.584] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 7.584] (--) evdev: Power Button: Found keys
    [ 7.584] (II) evdev: Power Button: Configuring as keyboard
    [ 7.584] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input3/event1"
    [ 7.584] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 8)
    [ 7.584] (**) Option "xkb_rules" "evdev"
    [ 7.584] (**) Option "xkb_model" "pc104"
    [ 7.584] (**) Option "xkb_layout" "fr"
    [ 7.584] (II) config/udev: Adding input device Video Bus (/dev/input/event11)
    [ 7.584] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 7.584] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
    [ 7.584] (**) Video Bus: Applying InputClass "system-keyboard"
    [ 7.584] (II) Using input driver 'evdev' for 'Video Bus'
    [ 7.584] (**) Video Bus: always reports core events
    [ 7.584] (**) evdev: Video Bus: Device: "/dev/input/event11"
    [ 7.584] (--) evdev: Video Bus: Vendor 0 Product 0x6
    [ 7.584] (--) evdev: Video Bus: Found keys
    [ 7.584] (II) evdev: Video Bus: Configuring as keyboard
    [ 7.584] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input14/event11"
    [ 7.584] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 9)
    [ 7.584] (**) Option "xkb_rules" "evdev"
    [ 7.584] (**) Option "xkb_model" "pc104"
    [ 7.584] (**) Option "xkb_layout" "fr"
    [ 7.584] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 7.584] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.584] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 7.584] (**) Power Button: Applying InputClass "system-keyboard"
    [ 7.584] (II) Using input driver 'evdev' for 'Power Button'
    [ 7.584] (**) Power Button: always reports core events
    [ 7.584] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 7.584] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 7.584] (--) evdev: Power Button: Found keys
    [ 7.584] (II) evdev: Power Button: Configuring as keyboard
    [ 7.584] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2/event0"
    [ 7.584] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 10)
    [ 7.584] (**) Option "xkb_rules" "evdev"
    [ 7.584] (**) Option "xkb_model" "pc104"
    [ 7.584] (**) Option "xkb_layout" "fr"
    [ 7.585] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event15)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event16)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event17)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event18)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event12)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event13)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event14)
    [ 7.585] (II) No input driver specified, ignoring this device.
    [ 7.585] (II) This device may have been added with another device file.
    [ 7.585] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4024 (/dev/input/event23)
    [ 7.585] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev pointer catchall"
    [ 7.585] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev keyboard catchall"
    [ 7.585] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev pointer catchall"
    [ 7.585] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev keyboard catchall"
    [ 7.585] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "system-keyboard"
    [ 7.585] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:4024'
    [ 7.585] (**) Logitech Unifying Device. Wireless PID:4024: always reports core events
    [ 7.585] (**) evdev: Logitech Unifying Device. Wireless PID:4024: Device: "/dev/input/event23"
    [ 7.585] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Vendor 0x46d Product 0xc52b
    [ 7.586] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found 20 mouse buttons
    [ 7.586] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found scroll wheel(s)
    [ 7.586] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found relative axes
    [ 7.586] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found x and y relative axes
    [ 7.586] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found absolute axes
    [ 7.586] (II) evdev: Logitech Unifying Device. Wireless PID:4024: Forcing absolute x/y axes to exist.
    [ 7.586] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found keys
    [ 7.586] (II) evdev: Logitech Unifying Device. Wireless PID:4024: Configuring as mouse
    [ 7.586] (II) evdev: Logitech Unifying Device. Wireless PID:4024: Configuring as keyboard
    [ 7.586] (II) evdev: Logitech Unifying Device. Wireless PID:4024: Adding scrollwheel support
    [ 7.586] (**) evdev: Logitech Unifying Device. Wireless PID:4024: YAxisMapping: buttons 4 and 5
    [ 7.586] (**) evdev: Logitech Unifying Device. Wireless PID:4024: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.586] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11.1/1-11.1:1.2/0003:046D:C52B.0006/0003:046D:C52B.0008/input/input26/event23"
    [ 7.586] (II) XINPUT: Adding extended input device "Logitech Unifying Device. Wireless PID:4024" (type: KEYBOARD, id 11)
    [ 7.586] (**) Option "xkb_rules" "evdev"
    [ 7.586] (**) Option "xkb_model" "pc104"
    [ 7.586] (**) Option "xkb_layout" "fr"
    [ 7.586] (II) evdev: Logitech Unifying Device. Wireless PID:4024: initialized for relative axes.
    [ 7.586] (WW) evdev: Logitech Unifying Device. Wireless PID:4024: ignoring absolute axes.
    [ 7.586] (**) Logitech Unifying Device. Wireless PID:4024: (accel) keeping acceleration scheme 1
    [ 7.586] (**) Logitech Unifying Device. Wireless PID:4024: (accel) acceleration profile 0
    [ 7.586] (**) Logitech Unifying Device. Wireless PID:4024: (accel) acceleration factor: 2.000
    [ 7.586] (**) Logitech Unifying Device. Wireless PID:4024: (accel) acceleration threshold: 4
    [ 7.586] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4024 (/dev/input/mouse1)
    [ 7.586] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "system-keyboard"
    [ 7.586] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:4024'
    [ 7.586] (**) Logitech Unifying Device. Wireless PID:4024: always reports core events
    [ 7.586] (**) evdev: Logitech Unifying Device. Wireless PID:4024: Device: "/dev/input/mouse1"
    [ 7.586] (EE) evdev: Logitech Unifying Device. Wireless PID:4024: Unable to query fd: Inappropriate ioctl for device
    [ 7.630] (EE) PreInit returned 2 for "Logitech Unifying Device. Wireless PID:4024"
    [ 7.630] (II) UnloadModule: "evdev"
    [ 7.630] (II) config/udev: Adding input device HD Webcam C525 (/dev/input/event25)
    [ 7.630] (**) HD Webcam C525: Applying InputClass "evdev keyboard catchall"
    [ 7.630] (**) HD Webcam C525: Applying InputClass "evdev keyboard catchall"
    [ 7.630] (**) HD Webcam C525: Applying InputClass "system-keyboard"
    [ 7.630] (II) Using input driver 'evdev' for 'HD Webcam C525'
    [ 7.630] (**) HD Webcam C525: always reports core events
    [ 7.630] (**) evdev: HD Webcam C525: Device: "/dev/input/event25"
    [ 7.630] (--) evdev: HD Webcam C525: Vendor 0x46d Product 0x826
    [ 7.630] (--) evdev: HD Webcam C525: Found keys
    [ 7.630] (II) evdev: HD Webcam C525: Configuring as keyboard
    [ 7.630] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-11/1-11.2/1-11.2.1/1-11.2.1:1.2/input/input28/event25"
    [ 7.630] (II) XINPUT: Adding extended input device "HD Webcam C525" (type: KEYBOARD, id 12)
    [ 7.630] (**) Option "xkb_rules" "evdev"
    [ 7.630] (**) Option "xkb_model" "pc104"
    [ 7.630] (**) Option "xkb_layout" "fr"
    [ 7.630] (II) config/udev: Adding input device Microsoft X-Box 360 pad (/dev/input/event24)
    [ 7.630] (II) No input driver specified, ignoring this device.
    [ 7.630] (II) This device may have been added with another device file.
    [ 7.630] (II) config/udev: Adding input device Microsoft X-Box 360 pad (/dev/input/js1)
    [ 7.630] (II) No input driver specified, ignoring this device.
    [ 7.630] (II) This device may have been added with another device file.
    [ 7.630] (II) config/udev: Adding input device Logitech Logitech(R) Precision(TM) Gamepad (/dev/input/event22)
    [ 7.630] (II) No input driver specified, ignoring this device.
    [ 7.630] (II) This device may have been added with another device file.
    [ 7.630] (II) config/udev: Adding input device Logitech Logitech(R) Precision(TM) Gamepad (/dev/input/js0)
    [ 7.630] (II) No input driver specified, ignoring this device.
    [ 7.630] (II) This device may have been added with another device file.
    [ 7.631] (II) config/udev: Adding input device Logitech Logitech Illuminated Keyboard (/dev/input/event19)
    [ 7.631] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 7.631] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 7.631] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "system-keyboard"
    [ 7.631] (II) Using input driver 'evdev' for 'Logitech Logitech Illuminated Keyboard'
    [ 7.631] (**) Logitech Logitech Illuminated Keyboard: always reports core events
    [ 7.631] (**) evdev: Logitech Logitech Illuminated Keyboard: Device: "/dev/input/event19"
    [ 7.631] (WW) evdev: Logitech Logitech Illuminated Keyboard: device file is duplicate. Ignoring.
    [ 7.663] (EE) PreInit returned 8 for "Logitech Logitech Illuminated Keyboard"
    [ 7.663] (II) UnloadModule: "evdev"
    [ 7.663] (II) config/udev: Adding input device Logitech Logitech Illuminated Keyboard (/dev/input/event20)
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: Applying InputClass "system-keyboard"
    [ 7.663] (II) Using input driver 'evdev' for 'Logitech Logitech Illuminated Keyboard'
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: always reports core events
    [ 7.663] (**) evdev: Logitech Logitech Illuminated Keyboard: Device: "/dev/input/event20"
    [ 7.663] (--) evdev: Logitech Logitech Illuminated Keyboard: Vendor 0x46d Product 0xc318
    [ 7.663] (--) evdev: Logitech Logitech Illuminated Keyboard: Found 1 mouse buttons
    [ 7.663] (--) evdev: Logitech Logitech Illuminated Keyboard: Found scroll wheel(s)
    [ 7.663] (--) evdev: Logitech Logitech Illuminated Keyboard: Found relative axes
    [ 7.663] (II) evdev: Logitech Logitech Illuminated Keyboard: Forcing relative x/y axes to exist.
    [ 7.663] (--) evdev: Logitech Logitech Illuminated Keyboard: Found absolute axes
    [ 7.663] (II) evdev: Logitech Logitech Illuminated Keyboard: Forcing absolute x/y axes to exist.
    [ 7.663] (--) evdev: Logitech Logitech Illuminated Keyboard: Found keys
    [ 7.663] (II) evdev: Logitech Logitech Illuminated Keyboard: Configuring as mouse
    [ 7.663] (II) evdev: Logitech Logitech Illuminated Keyboard: Configuring as keyboard
    [ 7.663] (II) evdev: Logitech Logitech Illuminated Keyboard: Adding scrollwheel support
    [ 7.663] (**) evdev: Logitech Logitech Illuminated Keyboard: YAxisMapping: buttons 4 and 5
    [ 7.663] (**) evdev: Logitech Logitech Illuminated Keyboard: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 7.663] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13:1.1/0003:046D:C318.0002/input/input23/event20"
    [ 7.663] (II) XINPUT: Adding extended input device "Logitech Logitech Illuminated Keyboard" (type: KEYBOARD, id 13)
    [ 7.663] (**) Option "xkb_rules" "evdev"
    [ 7.663] (**) Option "xkb_model" "pc104"
    [ 7.663] (**) Option "xkb_layout" "fr"
    [ 7.663] (II) evdev: Logitech Logitech Illuminated Keyboard: initialized for relative axes.
    [ 7.663] (WW) evdev: Logitech Logitech Illuminated Keyboard: ignoring absolute axes.
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: (accel) keeping acceleration scheme 1
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: (accel) acceleration profile 0
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: (accel) acceleration factor: 2.000
    [ 7.663] (**) Logitech Logitech Illuminated Keyboard: (accel) acceleration threshold: 4
    [ 7.663] (II) config/udev: Adding input device Logitech G100s Optical Gaming Mouse (/dev/input/event21)
    [ 7.663] (**) Logitech G100s Optical Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 7.663] (**) Logitech G100s Optical Gaming Mouse: Applying InputClass "evdev pointer catchall"
    [ 7.664] (II) Using input driver 'evdev' for 'Logitech G100s Optical Gaming Mouse'
    [ 7.664] (**) Logitech G100s Optical Gaming Mouse: always reports core events
    [ 7.664] (**) evdev: Logitech G100s Optical Gaming Mouse: Device: "/dev/input/event21"
    [ 7.664] (WW) evdev: Logitech G100s Optical Gaming Mouse: device file is duplicate. Ignoring.
    [ 7.690] (EE) PreInit returned 8 for "Logitech G100s Optical Gaming Mouse"
    [ 7.690] (II) UnloadModule: "evdev"
    [ 7.690] (II) config/udev: Adding input device Logitech G100s Optical Gaming Mouse (/dev/input/mouse0)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event3)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Line Out Front (/dev/input/event7)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Line Out Surround (/dev/input/event8)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Line Out CLFE (/dev/input/event9)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Front Headphone (/dev/input/event10)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Front Mic (/dev/input/event4)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Rear Mic (/dev/input/event5)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.690] (II) config/udev: Adding input device HDA Intel PCH Line (/dev/input/event6)
    [ 7.690] (II) No input driver specified, ignoring this device.
    [ 7.690] (II) This device may have been added with another device file.
    [ 7.691] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 7.691] (II) No input driver specified, ignoring this device.
    [ 7.691] (II) This device may have been added with another device file.
    [ 14.821] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 14.821] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 14.821] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 14.821] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 14.821] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 14.821] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 14.821] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 14.963] resize called 3840 1080
    [ 15.466] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 15.466] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 15.466] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 15.466] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 15.466] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 15.466] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 15.466] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 15.747] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 15.747] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 15.747] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 15.747] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 15.747] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 15.747] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 15.747] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 15.947] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 15.947] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 15.947] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 15.947] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 15.947] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 15.947] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 15.947] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 16.180] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 16.180] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 16.180] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 16.180] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 16.180] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 16.180] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 16.180] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 16.398] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 16.398] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 16.398] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 16.398] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 16.398] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 16.398] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 16.398] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 16.705] (II) NOUVEAU(0): EDID vendor "SAM", prod id 1246
    [ 16.705] (II) NOUVEAU(0): Using hsync ranges from config file
    [ 16.705] (II) NOUVEAU(0): Using vrefresh ranges from config file
    [ 16.705] (II) NOUVEAU(0): Printing DDC gathered Modelines:
    [ 16.705] (II) NOUVEAU(0): Modeline "1920x1080"x0.0 138.50 1920 1968 2000 2080 1080 1083 1088 1111 +hsync -vsync (66.6 kHz eP)
    [ 16.705] (II) NOUVEAU(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "800x600"x0.0 36.00 800 824 896 1024 600 601 603 625 +hsync +vsync (35.2 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1280x800"x0.0 71.00 1280 1328 1360 1440 800 803 809 823 +hsync -vsync (49.3 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1280x960"x0.0 108.00 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync (60.0 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1440x900"x0.0 88.75 1440 1488 1520 1600 900 903 909 926 +hsync -vsync (55.5 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz e)
    [ 16.705] (II) NOUVEAU(0): Modeline "1600x1200"x0.0 162.00 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync (75.0 kHz e)
    [ 3613.510] (II) config/udev: removing device Logitech Unifying Device. Wireless PID:4024
    [ 3613.557] (II) evdev: Logitech Unifying Device. Wireless PID:4024: Close
    [ 3613.557] (II) UnloadModule: "evdev"
    [ 3613.617] (II) config/udev: removing device HD Webcam C525
    [ 3613.647] (II) evdev: HD Webcam C525: Close
    [ 3613.647] (II) UnloadModule: "evdev"
    [ 3614.988] (II) config/udev: Adding input device Logitech Logitech(R) Precision(TM) Gamepad (/dev/input/js0)
    [ 3614.988] (II) No input driver specified, ignoring this device.
    [ 3614.988] (II) This device may have been added with another device file.
    [ 3614.988] (II) config/udev: Adding input device Logitech Logitech(R) Precision(TM) Gamepad (/dev/input/event23)
    [ 3614.988] (II) No input driver specified, ignoring this device.
    [ 3614.988] (II) This device may have been added with another device file.
    [ 3614.989] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4024 (/dev/input/mouse1)
    [ 3614.989] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "system-keyboard"
    [ 3614.989] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:4024'
    [ 3614.989] (**) Logitech Unifying Device. Wireless PID:4024: always reports core events
    [ 3614.989] (**) evdev: Logitech Unifying Device. Wireless PID:4024: Device: "/dev/input/mouse1"
    [ 3614.989] (EE) evdev: Logitech Unifying Device. Wireless PID:4024: Unable to query fd: Inappropriate ioctl for device
    [ 3615.023] (EE) PreInit returned 2 for "Logitech Unifying Device. Wireless PID:4024"
    [ 3615.023] (II) UnloadModule: "evdev"
    [ 3615.023] (II) config/udev: Adding input device Logitech Unifying Device. Wireless PID:4024 (/dev/input/event22)
    [ 3615.023] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev pointer catchall"
    [ 3615.023] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev keyboard catchall"
    [ 3615.023] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev pointer catchall"
    [ 3615.023] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "evdev keyboard catchall"
    [ 3615.023] (**) Logitech Unifying Device. Wireless PID:4024: Applying InputClass "system-keyboard"
    [ 3615.023] (II) Using input driver 'evdev' for 'Logitech Unifying Device. Wireless PID:4024'
    [ 3615.023] (**) Logitech Unifying Device. Wireless PID:4024: always reports core events
    [ 3615.023] (**) evdev: Logitech Unifying Device. Wireless PID:4024: Device: "/dev/input/event22"
    [ 3615.023] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Vendor 0x46d Product 0xc52b
    [ 3615.023] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found 20 mouse buttons
    [ 3615.023] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found scroll wheel(s)
    [ 3615.023] (--) evdev: Logitech Unifying Device. Wireless PID:4024: Found relative axes
    [ 3615.02

    shillshocked wrote:Since version 1.12, LightDM now relies on systemd-logind for seat
    management. It means LightDM van load seats automatically as they are added
    from logind.
    Ha! I searched something like that during my investigations, I was wondering if it wasn't about the recent logind changes, but I gave up due to the lack of documentation

  • Systemd multiseat with NVidia card and Intel integrated graphics

    I'm trying to set up multiseat Gnome 3 on a system running the nvidia proprietary drivers. The first seat on the nvidia GPU is working fine. For the second seat I'm trying to use an integrated Intel GPU, but all I get is the GDM "Oh no, something has gone wrong" screen. I'm not sure why, but I suspect it could be because the intel driver is also trying to load nvidia's libglx.so:
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: X.Org X Server 1.16.1
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Release Date: 2014-09-21
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: X Protocol Version 11, Revision 0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Build Operating System: Linux 3.16.1-1-ARCH x86_64
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Current Operating System: Linux comp1 3.16.4-1-ARCH #1 SMP PREEMPT Mon Oct 6 08:22:27 CEST 2014 x86_64
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-linux root=UUID=4ed01629-9f62-4642-8815-66a9ef652965 rw quiet
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Build Date: 21 September 2014 10:53:13AM
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Current version of pixman: 0.32.6
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Before reporting problems, check http://wiki.x.org
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: to make sure that you have the latest version.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Markers: (--) probed, (**) from config file, (==) default setting,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (++) from command line, (!!) notice, (II) informational,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (++) Log file: "/dev/null", Time: Wed Oct 15 21:47:02 2014
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (++) Using config file: "/run/systemd/multi-session-x/seat1"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Using config directory: "/etc/X11/xorg.conf.d"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) No Layout section. Using the first Screen section.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) No screen section available. Using defaults.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (**) |-->Screen "Default Screen Section" (0)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (**) | |-->Monitor "<default monitor>"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) No monitor specified for screen "Default Screen Section".
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Using a default monitor configuration.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (**) Option "DontVTSwitch" "True"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (**) Option "AutoAddDevices" "True"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (**) Automatically adding devices
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Automatically enabling devices
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Automatically adding GPU devices
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Entry deleted from font path.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Entry deleted from font path.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Entry deleted from font path.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) FontPath set to:
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: /usr/share/fonts/misc/,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: /usr/share/fonts/TTF/,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: /usr/share/fonts/Type1/
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) ModulePath set to "/usr/lib/xorg/modules"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) The server relies on udev to provide the list of input devices.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: If no devices become available, reconfigure udev or disable AutoAddDevices.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Loader magic: 0x818d80
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Module ABI versions:
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: X.Org ANSI C Emulation: 0.4
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: X.Org Video Driver: 18.0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: X.Org XInput driver : 21.0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: X.Org Server Extension : 8.0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (EE) systemd-logind: failed to get session: PID 323 does not belong to any known session
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) xfree86: Adding drm device (/dev/dri/card0)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "glx"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Module glx: vendor="NVIDIA Corporation"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: compiled for 4.0.2, module version = 1.0.0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Module class: X.Org Server Extension
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) NVIDIA GLX Module 343.22 Thu Sep 11 15:55:13 PDT 2014
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Matched intel as autoconfigured driver 0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Matched modesetting as autoconfigured driver 1
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Matched fbdev as autoconfigured driver 2
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Matched vesa as autoconfigured driver 3
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Assigned the driver to the xf86ConfigLayout
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "intel"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Module intel: vendor="X.Org Foundation"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: compiled for 1.16.1, module version = 2.99.916
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Module class: X.Org Video Driver
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: ABI class: X.Org Video Driver, version 18.0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "modesetting"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) Warning, couldn't open module modesetting
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) UnloadModule: "modesetting"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Unloading modesetting
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (EE) Failed to load module "modesetting" (module does not exist, 0)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "fbdev"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) Warning, couldn't open module fbdev
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) UnloadModule: "fbdev"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Unloading fbdev
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (EE) Failed to load module "fbdev" (module does not exist, 0)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "vesa"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Module vesa: vendor="X.Org Foundation"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: compiled for 1.16.0, module version = 2.3.2
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Module class: X.Org Video Driver
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: ABI class: X.Org Video Driver, version 18.0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: 915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) VESA: driver for VESA chipsets: vesa
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Using Kernel Mode Setting driver: i915, version 1.6.0 20080730
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (WW) Falling back to old probe method for vesa
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 2000
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Creating default Display subsection in Screen section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: "Default Screen Section" for depth/fbbpp 24/32
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): Depth 24, (--) framebuffer bpp 32
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): RGB weight 888
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): Default visual is TrueColor
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output VGA1 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output VGA1
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output HDMI1 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output HDMI1
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output DP1 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output DP1
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output HDMI2 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output HDMI2
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output HDMI3 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output HDMI3
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output DP2 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output DP2
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output DP3 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output DP3
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (--) intel(0): Using a maximum size of 256x256 for hardware cursors
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Output VIRTUAL1 has no monitor section
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Enabled output VIRTUAL1
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (--) intel(0): Output HDMI1 using initial mode 1280x1024 on pipe 0
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): TearFree disabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): DPI set to (96, 96)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Loading sub module "dri2"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "dri2"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Module "dri2" already built-in
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Loading sub module "present"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) LoadModule: "present"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Module "present" already built-in
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) UnloadModule: "vesa"
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) Unloading vesa
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) Depth 24 pixmap format is 32 bpp
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): SNA initialized with Sandybridge (gen6, gt1) backend
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): Backing store enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): Silken mouse enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): HW Cursor enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): DPMS enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): [DRI2] Setup complete
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): [DRI2] DRI driver: i965
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): [DRI2] VDPAU driver: i965
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): direct rendering: DRI2 enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): hardware support for Present enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (==) intel(0): display hotplug detection enabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (--) RandR disabled
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (EE) Failed to initialize GLX extension (Compatible NVIDIA X driver not found)
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): switch to mode [email protected] on HDMI1 using pipe 0, position (0, 0), rotation normal, reflection none
    Oct 15 21:47:02 comp1 gdm-Xorg-:1[323]: (II) intel(0): Setting screen physical size to 338 x 270
    Unfortunately the config file for the second X server is /run/systemd/multi-session-x/seat1, which is not persistent. Is there any other way to get a different config file to the second X server, so I can force it to load the default libglx.so?
    For completeness, output of seat-status is as follows:
    seat1
    Sessions: *c1
    Devices:
    ├─/sys/devices/pci0000:00/0000:00:02.0/drm/card0
    │ drm:card0
    └─/sys/devices/pci0000:00/0000:00:02.0/graphics/fb1
    [MASTER] graphics:fb1 "inteldrmfb"

    One thing you can do to ensure highest perfomance on games is go to the Nvidia Control Panel, Manage 3D Settings, Programs, then find the game you want and set it to use only NVIDIA High Performance (or Discrete) graphics. You can't use both cards at the same time as of writing this (DirectX 11), but with the arrival of Windows 10 and DirectX 12 on July 29 you will be able to use both at once to increase performance. Until then, though, it is simply not possible to use both at once. The best option is to just use the GTX 860M.

  • Matrox MGA 450 MMS with dualhead on MSI Neo 875FISR2 Board

    Hi,
    i use a MSI 875PE NEO-FISR2 Board with a P4 Intel Processor and 512 MB DDR RAM.I have the latest bios on my mainboard.As OS W2K SP4.I wanna use the Matrox MGA 450 MMS with the newest Driver.I can install the driver as well,but the card wont work,i cant switch to another mode.is there a problem with old Matrox Cards in MSI Boards?All Hardware was tested on 2 other systems and they works fine.
    System:
    MSI 875PE Neo-FISR2
    Intel P4 2,6Ghz
    512 MB DDR Corsair Memory
    80 GB SATA Seagate HD
    130 GB Maxtor IDE HD
    OS Windows 2000 SP4 uptodate

  • 2 screens and tv-out

    Hi there..
    I have nvidia geforce fx5200 with dualhead and tv-out. I have two DFP's connected and now I want to use the tv-out at the same time. Is that possible?, if so please help me, cause i cannot figure it out.
    Thanks

    This should be possible.
    I have only one crt and tv out connected but maybe this part of my /etc/X11/xorg.conf will help you too:
    Section "Monitor"
    Identifier "Philips109MP"
    HorizSync 30-107
    VertRefresh 50-160
    DisplaySize 365 273
    EndSection
    Section "Monitor"
    Identifier "SonyTv29"
    HorizSync 30-50
    VertRefresh 60
    EndSection
    Section "Device"
    Identifier "NvidiaGeForce4MX440"
    Driver "nvidia"
    Option "NoLogo" "true"
    Screen 0
    BusID "PCI:01:00:0"
    EndSection
    Section "Device"
    Identifier "NvidiaGeForce4MX440TvOut"
    Driver "nvidia"
    Option "NoLogo" "true"
    Screen 1
    BusID "PCI:01:00:0"
    EndSection
    Section "Screen"
    Identifier "MonitorPhilips"
    Device "NvidiaGeForce4MX440"
    Monitor "Philips109MP"
    DefaultDepth 24
    Subsection "Display"
    Depth 8
    Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
    Depth 16
    Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection "Display"
    Depth 24
    Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "TvSony"
    Device "NvidiaGeForce4MX440TvOut"
    Monitor "SonyTv29"
    DefaultDepth 24
    Subsection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubsection
    EndSection
    Section "ServerLayout"
    Identifier "MonitorTV"
    Screen 0 "MonitorPhilips"
    Screen 1 "TvSony" LeftOf "MonitorPhilips"
    InputDevice "LogitechMX700" "CorePointer"
    InputDevice "LogitechCordlessDesktopMX" "CoreKeyboard"
    EndSection
    X creates two screens (0 and 1) on one display (:0.0 and :0.1) and you can have different resolutions (and WMs) which is what I needed (max resolution for the tv is 1024x768 and fullscreen mode is working better). It doesn't use tweenview mode. Important part is BusId (you can find it with lspci).

  • Problem with lightdm and multiseat

    Hi everybody,
    so I'm trying to setup a multiseat desktop but I'm completely stuck.
    I've followed the wiki for the part regarding xorg.conf and tried to grab from the internet the part for lightdm.conf.
    Btw what happens is that the computer starts and give me two login screen on both monitor.
    In each of the screen the input devices are correct.
    The problem is that I cant access, namely if I put the password the screen becomes black and brings me back to the login screen.
    So I've tried to start manually with
    X -layout seat{0|1}
    and the screen becomes black.
    So I cannot understand if the problem is in xorg.conf or in lightdm.conf.
    Here xorg.conf:
    Section "ServerFlags"
    #Option "AutoAddDevices" "false"
    #Option "AutoEnableDevices" "false"
    Option "AllowMouseOpenFail" "on"
    #Option "AllowEmptyInput" "on"
    #Option "ZapWarning" "on"
    #Option "HandleSpecialKeys" "off" # Zapping on
    #Option "DRI2" "on"
    Option "Xinerama" "false"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "evdev"
    Option "Device" "/dev/input/by-id/usb-04d9_2517-event-kbd"
    Option "XkbRules" "xorg"
    EndSection
    Section "InputDevice"
    Identifier "Mouse1"
    Driver "evdev"
    Option "Protocol" "IMPS/2"
    Option "Device" "/dev/input/by-id/usb-04d9_2517-if01-event-mouse"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "evdev"
    Option "Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-event-kbd"
    Option "XkbRules" "xorg"
    EndSection
    Section "InputDevice"
    Identifier "mouse0"
    Driver "evdev"
    Option "Protocol" "IMPS/2"
    Option "Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-if01-event-mouse"
    EndSection
    Section "Device"
    Identifier "nvidia0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 210"
    BusId "PCI:01:00:0"
    Option "NoLogo" "1"
    Option "ProbeAllGpus" "false"
    EndSection
    Section "Device"
    Identifier "nvidia1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 650"
    BusId "PCI:06:00:0"
    Option "NoLogo" "1"
    Option "ProbeAllGpus" "false"
    EndSection
    Section "Device"
    Identifier "nvidia1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GeForce 650"
    BusId "PCI:06:00:0"
    Option "NoLogo" "1"
    Option "ProbeAllGpus" "false"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor0"
    VendorName "Unknown"
    ModelName "Acer AL1916W"
    HorizSync 31.0 - 84.0
    VertRefresh 56.0 - 76.0
    Option "DPMS" "1"
    EndSection
    Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier "Monitor1"
    VendorName "Unknown"
    ModelName "DELL U2412M"
    HorizSync 30.0 - 83.0
    VertRefresh 50.0 - 61.0
    Option "DPMS" "1"
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "nvidia1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "metamodes" "CRT: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "nvidia0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "Stereo" "0"
    Option "metamodes" "nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Section "ServerLayout"
    Identifier "seat0"
    Screen "Screen0" 0 0
    InputDevice "mouse0" "CorePointer"
    InputDevice "keyboard0" "CoreKeyboard"
    Option "AutoAddDevices" "off"
    Option "Xinerama" "0"
    EndSection
    Section "ServerLayout"
    Identifier "seat1"
    Screen "Screen1" 0 0
    InputDevice "mouse1" "CorePointer"
    InputDevice "keyboard1" "CoreKeyboard"
    Option "AutoAddDevices" "off"
    Option "Xinerama" "0"
    EndSection
    and here's lightdm.conf
    [LightDM]
    #start-default-seat=true
    #greeter-user=lightdm
    #minimum-display-number=0
    minimum-vt=7
    #lock-memory=true
    #user-authority-in-system-dir=false
    #guest-account-script=guest-account
    log-directory=/var/log/lightdm
    run-directory=/run/lightdm
    #cache-directory=/var/cache/lightdm
    #xsessions-directory=/usr/share/xsessions
    #remote-sessions-directory=/usr/share/lightdm/remote-sessions
    #xgreeters-directory=/usr/share/xgreeters
    [SeatDefaults]
    #type=xlocal
    xserver-command=X
    #xserver-layout=
    #xserver-config=
    #xserver-allow-tcp=false
    #xdmcp-manager=
    #xdmcp-port=177
    #xdmcp-key=
    greeter-session=lightdm-gtk-greeter
    #greeter-hide-users=false
    #greeter-allow-guest=true
    #greeter-show-manual-login=false
    #greeter-show-remote-login=true
    #user-session=default
    #allow-guest=true
    #guest-session=UNIMPLEMENTED
    session-wrapper=/etc/lightdm/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
    pam-service=lightdm-autologin
    #exit-on-failure=false
    [Seat:0]
    xserver-command=/usr/bin/X
    xserver-layout=seat0
    [Seat:1]
    xserver-command=/usr/bin/X :1 -sharevts
    xserver-layout=seat1
    Thanks to who'll be able to help!

    scar wrote:
    If your lightdm install is a bit older, this can be related to recent changes in lightdm.
    See this:
    https://bbs.archlinux.org/viewtopic.php?id=169552
    In this case you can overwrite your /etc/lightdm.conf with /etc/lightdm.conf.pacnew, and re-configure it as you wish.
    If this was not the case, sorry. (But the symptoms are quite familiar to me)
    Thank you for your answer, that was part of the problem. Now I'm able to login but there's only one monitor working!
    Before there were two seats and I wasn't able to login, now there's only one and I'm able to login.
    Could it be a problem of the VGAs? Seems strange, I really think that I can't configure well lightdm, but if I want to install gdm it pulls all
    gnome-shell, and I use xfce..
    What a mess..

  • "Multiseat" gaming with multi-pointer X

    Hello Arch gaming community,
    recently I've discovered a decent way to play multiplayer games in multiseat (or pseudo split-screen) manner. It really works - I use it to play Myth II: Soulblighter (on Wine) with my brother
    Short explanation:
    In recent versions of Xorg (>= 1.7), there's a nice feature - it lets you plug another mouse and make it control a second pointer on the screen. Plug another keyboard, assign it to this pointer, and you can independently work with two windows at a time (each pointer getting it's own focus). Now, if you connect a second physical display and configure it to be a separate X screen belonging to the same X server, you can send your second pointer to that screen, virtually allowing both sets to be used independently. Now, run some game on first screen, then another instance on another, and you can play it multiplayer with your friend
    What makes this approach better than a "true" multiseat:
    Configuring a proper multiseat system (where each "seat" get's it's own login screen) is not easy, to start with. Often it won't let you use hardware acceleration on both displays unless they're connected to two separate video cards. Mutli-pointer approach lets you use both screens with hardware acceleration with just one dual-head graphics card (like most laptops have). Besides, it's much less painful to set up.
    The downsides:
    The multi-pointer feature of Xorg is still fairly new, and is not supported by any window manager that I know. Thankfully, it doesn't have to be explicitly supported by a WM in order to be used with it, but most WMs tend to get confused by it. Also, sometimes keyboard focus is not automatically assigned for the second pointer, and you have to explicitly assign it via command-line for the keyobard input to work.
    So, how to do it?
    The basic steps are:
    Prepare an alternative xorg configuration file for both displays (if you don't use both already)
    Start another X server with "xinit /usr/bin/xterm -- :1 vt8 -config [your dual screen xorg config file]" (so that when something goes bad, your main desktop won't suffer)
    Set up a secondary pointer with xinput utility
    Launch two instances of some game, one on each screen
    Use xinput with "set-cp" option to assign a second pointer to the window that will be operated by it
    Play!
    You'll have to repeat all steps (except the first one) each time you want to play in this configuration. As you can see, it requires some tedious typing each time, so right now I'm writing scripts that automate the setup.
    Here's one that lets you choose a mouse and keyobard and assign a second pointer to them (uses zenity, but can be adapted to use CLI only):
    #/bin/bash
    # vim: si ts=4 sw=4
    shopt -s extglob
    IFS=$'\n' DEVICE_LIST=( $(xinput list --short) )
    for (( I=0; I<${#DEVICE_LIST[@]}; I++ )); do
    IFS=$'\t' INFO=( ${DEVICE_LIST[$I]} )
    [ "${INFO[2]:1:1}" = "s" ] || continue
    NAME="${INFO[0]:6}"
    NAME="${NAME%%*([[:blank:]])}"
    ID="${INFO[1]#id=}"
    [[ "$NAME" != *XTEST* ]] || continue
    case "${INFO[2]:8:1}" in
    "p" )
    POINTERS+=( "$ID"$'\t'"$NAME" )
    "k" )
    KEYBOARDS+=( "$ID"$'\t'"$NAME" )
    esac
    done
    POINTER="$( IFS=$'\t' zenity --title="Select device" --list --text="Choose a pointer" --column="Id" --column="Name" ${POINTERS[@]} )"
    KEYBOARD="$( IFS=$'\t' zenity --title="Select device" --list --text="Choose a keyboard" --column="Id" --column="Name" ${KEYBOARDS[@]} )"
    [ -n "$POINTER" ] && [ -n "$KEYBOARD" ] || exit 1
    MASTER_NAME="second"
    xinput create-master "$MASTER_NAME"
    xinput reattach "$POINTER" "$MASTER_NAME pointer"
    xinput reattach "$KEYBOARD" "$MASTER_NAME keyboard"
    Don't ask me for more detailed instructions - I'll provide them when I have time.
    Now I'm looking for suggestions where I could place them. Maybe a wiki page would be a good idea? I think it would also be easier to join efforts there. What do you think?

    Yes, most of WMs get confused by multiple pointers, because they don't recognize mutliple focuses. That's one of the reasons why I run games in a dedicated X server with a bare-bones TWM setup. I launch it with:
    xinit ./xinitrc.dual -- :1 vt8 -config xorg.conf.dual
    xinitrc.dual:
    twm -f twmrc &
    DISPLAY=:1.1 xterm &
    xterm
    twmrc (compacted):
    NoDefaults
    NoIconManagers
    NoTitleFocus
    NoTitleHighlight
    NoHighlight
    RandomPlacement
    UsePPosition "on"
    OpaqueMove
    DontMoveOff
    NoTitle
    BorderWidth 0
    NoMenuShadows
    # Bindings
    Button1 = m4 : window|icon : f.move
    Button3 = m4 : window : f.resize
    Button1 = : icon : f.deiconify
    "1" = m4 : all : f.warptoscreen "0"
    "2" = m4 : all : f.warptoscreen "1"
    "f" = m4 : all : f.focus
    "Tab" = m4 : all : f.circleup
    "Tab" = m4|s : all : f.circledown
    "n" = m4 : window : f.iconify
    In this config there are no window decorations, and "Super" (the windows-logo key) is the general window-handling modifier.
    Bindings explained:
    Super+LMB - drag windows around
    Super+RMB - resize windows
    Super+1/2 - warp pointer to screen 0 or 1
    Super+f - lock/unlock focus
    Super[+Shift]+Tab - cycle between windows (more precisely, cycle their stacking order)
    Super+n - iconify (minimize) window; iconified windows are restored by clicking on icons.
    Why do I see two entries for the USB keyboard ? (ID8 / ID9)
    It seems that some devices report themselves that way. Maybe they have some functions that should be logically separated, or something like that. Then, I think it's best to keep them under the same master device to avoid confusion. I've updated my zenity script to allow selecting more than one device:
    #/bin/bash
    # vim: si ts=4 sw=4
    shopt -s extglob
    IFS=$'\n' DEVICE_LIST=( $(xinput list --short) )
    for (( I=0; I<${#DEVICE_LIST[@]}; I++ )); do
    IFS=$'\t' INFO=( ${DEVICE_LIST[$I]} )
    [ "${INFO[2]:1:1}" = "s" ] || continue
    NAME="${INFO[0]:6}"
    NAME="${NAME%%*([[:blank:]])}"
    ID="${INFO[1]#id=}"
    [[ "$NAME" != *XTEST* ]] || continue
    case "${INFO[2]:8:1}" in
    "p" )
    POINTERS+=( "$ID"$'\t'"$NAME" )
    "k" )
    KEYBOARDS+=( "$ID"$'\t'"$NAME" )
    esac
    done
    MASTER_NAME="$( zenity --title="Enter name" --entry --text="Enter name for new master" )"
    [ -n "$MASTER_NAME" ] || exit 1
    POINTER="$( IFS=$'\t' zenity --title="Select device" --list --multiple --text="Choose a pointer" --column="Id" --column="Name" ${POINTERS[@]} )"
    [ -n "$POINTER" ] || exit 1
    KEYBOARD="$( IFS=$'\t' zenity --title="Select device" --list --multiple --text="Choose a keyboard" --column="Id" --column="Name" ${KEYBOARDS[@]} )"
    [ -n "$KEYBOARD" ] || exit 1
    xinput create-master "$MASTER_NAME"
    IFS="|"
    for ID in $POINTER; do
    xinput reattach "$ID" "$MASTER_NAME pointer"
    done
    for ID in $KEYBOARD; do
    xinput reattach "$ID" "$MASTER_NAME keyboard"
    done
    @Darksoul71
    This should be all you need. You can adapt my xorg.conf.dual (it's in one of my previous posts), but the way of configuring multiple screens can differ between display drivers, so you'll have to find out how to do it in your case.
    EDIT: Forgot to mention:
    @Darksoul71
    As to you keyboard problem - do you set the client pointer for the second instance's window?
    Last edited by Rad3k (2010-09-29 22:06:08)

  • Xorg.conf for a dualhead setup with an ATI/AMD graphic card

    Hello Guys
    first I would mention that I've searched for a solution but I've not found one
    now back to the problem. I would configure my system so that I can work with two displays like Xinerama. But when I use
    $ startx
    then my two monitors have a white screen for a second, then the bigger one goes off (no signal) and the little stay with the white screen. The mouse pointer is not visible and no window manager is used.
    I have a SyncMaster P2250 (22") and a Eizo FlexScan L568 (17")
    my graphic card is an AMD/ATI Redwood (Radeon HD 5670) and the fglrx driver from the catalyst repository
    and finally my xorg.conf
    #Server Layout
    Section "ServerLayout"
    Identifier "Main_Layout"
    Screen 0 "Screen_Samsung" 0 0
    Screen "Screen_Eizo" RightOf "Screen_Samsung"
    EndSection
    #Device Section
    Section "Device"
    Identifier "Device_Samsung"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device_Eizo"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    #Monitor Sections (contains 2 monitors)
    Section "Monitor"
    Identifier "Monitor_Samsung"
    Option "DPMS" "true"
    Option "TargetRefresh" "59.9"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Monitor"
    Identifier "Monitor_Eizo"
    Option "DPMS" "true"
    Option "TargetRefresh" "60"
    Option "Position" "1680 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1280x1024"
    EndSection
    #Screen Sections
    Section "Screen"
    Identifier "Screen_Samsung"
    Device "Device_Eizo"
    Monitor "Monitor_Samsung"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1680x1050_59.90"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen_Eizo"
    Device "Device_Eizo"
    Monitor "Monitor_Eizo"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024_60.00"
    EndSubSection
    EndSection
    I would be very grateful if somebody can help me
    greez Troopa

    Hello Guys
    first I would mention that I've searched for a solution but I've not found one
    now back to the problem. I would configure my system so that I can work with two displays like Xinerama. But when I use
    $ startx
    then my two monitors have a white screen for a second, then the bigger one goes off (no signal) and the little stay with the white screen. The mouse pointer is not visible and no window manager is used.
    I have a SyncMaster P2250 (22") and a Eizo FlexScan L568 (17")
    my graphic card is an AMD/ATI Redwood (Radeon HD 5670) and the fglrx driver from the catalyst repository
    and finally my xorg.conf
    #Server Layout
    Section "ServerLayout"
    Identifier "Main_Layout"
    Screen 0 "Screen_Samsung" 0 0
    Screen "Screen_Eizo" RightOf "Screen_Samsung"
    EndSection
    #Device Section
    Section "Device"
    Identifier "Device_Samsung"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    Screen 0
    EndSection
    Section "Device"
    Identifier "Device_Eizo"
    Driver "fglrx"
    BusID "PCI:1:0:0"
    Screen 1
    EndSection
    #Monitor Sections (contains 2 monitors)
    Section "Monitor"
    Identifier "Monitor_Samsung"
    Option "DPMS" "true"
    Option "TargetRefresh" "59.9"
    Option "Position" "0 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Monitor"
    Identifier "Monitor_Eizo"
    Option "DPMS" "true"
    Option "TargetRefresh" "60"
    Option "Position" "1680 0"
    Option "Rotate" "normal"
    Option "Disable" "false"
    Option "PreferredMode" "1280x1024"
    EndSection
    #Screen Sections
    Section "Screen"
    Identifier "Screen_Samsung"
    Device "Device_Eizo"
    Monitor "Monitor_Samsung"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1680x1050_59.90"
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen_Eizo"
    Device "Device_Eizo"
    Monitor "Monitor_Eizo"
    DefaultDepth 24
    SubSection "Display"
    Depth 24
    Modes "1280x1024_60.00"
    EndSubSection
    EndSection
    I would be very grateful if somebody can help me
    greez Troopa

  • Dualhead display with multiples resolutions

    I'm currently trying to setup dualhead displays on my SunRay clients.
    When I use two screens that have the same size, it works perfectly. But, recently, I've tried to setup a 22inch screen and a 19inch screen.
    The first monitor must be in 1680x1050, and the second one in 1280x1024.
    My SRSS is a 3.1, and I've read that SRSS 3.1 and earliers does not allow independent screen resolutions for multihead secondary screens.
    Does someone tried to do this ? is there any way to succeed?
    Thanks

    All of the X screens in a multihead Sun Ray session have the same dimensions. The timings being driven to the monitors can be different. If the monitor timing doesn't exactly match the dimensions of the (virtual) X screen then the result will be that the desktop will occupy only a portion of the monitor or will need to pan (as the mouse is moved) to allow you to traverse the entire desktop. There is no way, currently, to configure different screen sizes for different X screens in a multihead group.

  • Dualhead problems with nvidia-340xx

    I'm trying to get the tv to work with my laptop. I've tried with nvidia-settings and xrandr. Here is some output
    $ xrandr
    Screen 0: minimum 8 x 8, current 3840 x 1080, maximum 8192 x 8192
    VGA-0 connected (normal left inverted right x axis y axis)
    1920x1080 59.94 + 50.00
    LVDS-0 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 360mm x 200mm
    1920x1080 59.94*+ 50.00
    HDMI-0 connected primary 1920x1080+1920+0 (normal left inverted right x axis y axis) 360mm x 200mm
    1920x1080 59.94*+ 50.00
    $ xrandr --output LVDS-0 --auto --output HDMI-0 --auto --right-of LVDS-0 --output VGA-0 --off
    $ xrandr --output LVDS-0 --auto --output HDMI-0 --auto --right-of LVDS-0
    This is my setup xorg.conf.d/20-nvidia.conf:
    Section "Device"
    Identifier "Nvidia Card"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    Option "NoLogo" "true"
    #Option "UseEDID" "false"
    #Option "ConnectedMonitor" "DFP"
    EndSection
    I have  GeForce GT 330. My setup worked before the change to nvidia-340xx.
    Is there a way to check if there is something wrong with my hdmi port on the laptop? I've tried different kinds of setup, through receiver, directly to tv, different hdmi cables.
    Last edited by plitter (2014-11-20 17:06:02)

    I have the G84M [GeForce 8600M GT] and had problems with the nvidia-340xx driver crashing my system at boot, and not being able to start X. Did you read the news bulletin on the Arch home page about nvidia and the 340xx driver? Anyway I didn't feel like 'testing' it so I purged all nvidia drivers and libraries and installed the open source 'nouveau' driver and then re-installed Xorg-server. Its not as optimal as the nvidia but I just wanted to get things up and running you know?
    Last edited by dawja (2014-11-21 14:08:32)

  • Multiseat problems and questions

    I am trying to get a multiseat configuration running, so I used the wiki to set one up. I used a combination of existing configurations that are in my xorg.conf and the configurations found in the wiki to make a new configuration named xorg.cfg.x2. At first i thought the new configuration worked (the other gpu and monitor activated and displayed the screen correctly), until i tried to use my keyboard and mouse. The keyboard and mouse seem to do random things when they are used at all.  Thankfully some of the random things got me back in a position to kill the misbehaving x-server and get the log it dumped.
    this command is used to activate seat1, seat0 has the exact same problem
    startx -- -layout u1 -config xorg.cfg.x2
    this is xorg.cfg.x2
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "ServerFlags"
    # Option "AutoAddDevices" "false"
    # Option "AutoEnableDevices" "false"
    Option "AllowMouseOpenFail" "true"
    # Option "AllowEmptyInput" "on"
    # Option "ZapWarning" "on"
    # Option "HandleSepcialKeys" "off" # Zapping on
    # Option "DRI2" "on"
    Option "Xinerama" "0"
    EndSection
    Section "InputDevice"
    Identifier "keyboard0"
    Driver "kbd"
    Option "Device" "/dev/input/by-id/usb-Logitech_USB_Receiver-event-kbd"
    # Option "GrabDevice" "on" # prevent send event to other X-servers
    EndSection
    Section "InputDevice"
    Identifier "keyboard1"
    Driver "kbd"
    Option "Device" "/dev/input/by-id/usb-Dell_Dell_USB_Keyboard-event-kbd"
    # Option "GrabDevice" "on" # prevent send event to other X-servers
    EndSection
    Section "InputDevice"
    Identifier "mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/by-id/usb-Microsoft_Microsoft®_Nano_Transceiver_v2.0-if01-event-mouse"
    # Option "GrabDevice" "on" # prevent send event to other X-servers
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "InputDevice"
    Identifier "mouse1"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/by-id/usb-Areson_USB_Device-event-mouse"
    # Option "GrabDevice" "on" # prevent send event to other X-servers
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Device"
    Identifier "gpu0"
    Driver "nvidia"
    Option "NoLogo" "1"
    BusId "PCI:1:0:0"
    Option "ProbeAllGpus" "false" # Only required for nvidia
    EndSection
    Section "Device"
    Identifier "gpu1"
    Driver "nvidia"
    Option "NoLogo" "1"
    BusId "PCI:6:0:0"
    Option "ProbeAllGpus" "false" # Only required for nvidia
    EndSection
    Section "Monitor"
    Identifier "m0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "m1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Screen"
    Identifier "screen0"
    Device "gpu0"
    Monitor "m0"
    Subsection "Display"
    Depth 24
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "screen1"
    Device "gpu1"
    Monitor "m1"
    Subsection "Display"
    Depth 24
    EndSubsection
    EndSection
    Section "ServerLayout"
    Identifier "u0"
    Screen "screen0" 0 0
    InputDevice "mouse0" "CorePointer"
    InputDevice "keyboard0" "CoreKeyboard"
    # Option "Clone" "off"
    Option "AutoAddDevices" "off"
    # Option "DisableModInDev" "true"
    Option "SingleCard" "on" # use this to simplfied isolatedevice option
    EndSection
    Section "ServerLayout"
    Identifier "u1"
    Screen "screen1" 0 0
    InputDevice "mouse1" "CorePointer"
    InputDevice "keyboard1" "CoreKeyboard"
    # Option "Clone" "off"
    Option "AutoAddDevices" "off"
    # Option "DisableModInDev" "true"
    Option "SingleCard" "on" # use this to simplfied isolatedevice option
    EndSection
    this is the working xorg.conf that i currently use
    # nvidia-xconfig: X configuration file generated by nvidia-xconfig
    # nvidia-xconfig: version 310.19 ([email protected]) Thu Nov 8 02:09:12 PST 2012
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" RightOf "Screen1"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "SWcursor" # [<bool>]
    #Option "HWcursor" # [<bool>]
    #Option "NoAccel" # [<bool>]
    #Option "ShadowFB" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "Rotate" # [<str>]
    #Option "VideoKey" # <i>
    #Option "FlatPanel" # [<bool>]
    #Option "FPDither" # [<bool>]
    #Option "CrtcNumber" # <i>
    #Option "FPScale" # [<bool>]
    #Option "FPTweak" # <i>
    #Option "DualHead" # [<bool>]
    Identifier "Card0"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "Rotate" # <str>
    #Option "fbdev" # <str>
    #Option "debug" # [<bool>]
    Identifier "Card1"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "DefaultRefresh" # [<bool>]
    #Option "ModeSetClearScreen" # [<bool>]
    Identifier "Card2"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "Card2"
    Monitor "Monitor2"
    SubSection "Display"
    Viewport 0 0
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    this is the logfile for the failed multiseat attempt
    [ 1307.736]
    X.Org X Server 1.13.1
    Release Date: 2012-12-13
    [ 1307.736] X Protocol Version 11, Revision 0
    [ 1307.736] Build Operating System: Linux 3.7.0-1-ARCH x86_64
    [ 1307.736] Current Operating System: Linux FX-l0vot 3.7.1-2-ARCH #1 SMP PREEMPT Thu Dec 20 17:57:00 CET 2012 x86_64
    [ 1307.737] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=aade275d-e863-44be-b27a-e41e2fca2c30 ro quiet init=/usr/lib/systemd/systemd
    [ 1307.737] Build Date: 16 December 2012 04:45:14PM
    [ 1307.737]
    [ 1307.737] Current version of pixman: 0.28.2
    [ 1307.737] Before reporting problems, check [url]http://wiki.x.org[/url]
    to make sure that you have the latest version.
    [ 1307.737] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 1307.738] (==) Log file: "/var/log/Xorg.1.log", Time: Fri Jan 4 14:30:57 2013
    [ 1307.763] (++) Using config file: "xorg.cfg.x2"
    [ 1307.763] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 1307.775] (++) ServerLayout "u1"
    [ 1307.775] (**) |-->Screen "screen1" (0)
    [ 1307.775] (**) | |-->Monitor "m1"
    [ 1307.775] (**) | |-->Device "gpu1"
    [ 1307.775] (**) |-->Input Device "mouse1"
    [ 1307.775] (**) |-->Input Device "keyboard1"
    [ 1307.775] (**) Option "SingleCard" "on"
    [ 1307.776] (**) Option "AllowMouseOpenFail" "true"
    [ 1307.776] (**) Option "Xinerama" "0"
    [ 1307.776] (**) Not automatically adding devices
    [ 1307.776] (==) Automatically enabling devices
    [ 1307.776] (==) Automatically adding GPU devices
    [ 1307.776] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1307.776] Entry deleted from font path.
    [ 1307.776] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 1307.776] Entry deleted from font path.
    [ 1307.776] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 1307.776] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 1307.776] (II) Loader magic: 0x7fcc40
    [ 1307.776] (II) Module ABI versions:
    [ 1307.776] X.Org ANSI C Emulation: 0.4
    [ 1307.776] X.Org Video Driver: 13.1
    [ 1307.776] X.Org XInput driver : 18.0
    [ 1307.776] X.Org Server Extension : 7.0
    [ 1307.779] (--) PCI:*(0:6:0:0) 10de:10c3:3842:1303 rev 162, Mem @ 0xf9000000/16777216, 0xa0000000/268435456, 0xbe000000/33554432, I/O @ 0x00009f00/128, BIOS @ 0x????????/524288
    [ 1307.779] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 1307.779] Initializing built-in extension Generic Event Extension
    [ 1307.779] Initializing built-in extension SHAPE
    [ 1307.779] Initializing built-in extension MIT-SHM
    [ 1307.780] Initializing built-in extension XInputExtension
    [ 1307.780] Initializing built-in extension XTEST
    [ 1307.780] Initializing built-in extension BIG-REQUESTS
    [ 1307.780] Initializing built-in extension SYNC
    [ 1307.780] Initializing built-in extension XKEYBOARD
    [ 1307.780] Initializing built-in extension XC-MISC
    [ 1307.780] Initializing built-in extension SECURITY
    [ 1307.780] Initializing built-in extension XINERAMA
    [ 1307.780] Initializing built-in extension XFIXES
    [ 1307.780] Initializing built-in extension RENDER
    [ 1307.780] Initializing built-in extension RANDR
    [ 1307.781] Initializing built-in extension COMPOSITE
    [ 1307.781] Initializing built-in extension DAMAGE
    [ 1307.781] Initializing built-in extension MIT-SCREEN-SAVER
    [ 1307.781] Initializing built-in extension DOUBLE-BUFFER
    [ 1307.781] Initializing built-in extension RECORD
    [ 1307.781] Initializing built-in extension DPMS
    [ 1307.781] Initializing built-in extension X-Resource
    [ 1307.781] Initializing built-in extension XVideo
    [ 1307.781] Initializing built-in extension XVideo-MotionCompensation
    [ 1307.781] Initializing built-in extension XFree86-VidModeExtension
    [ 1307.781] Initializing built-in extension XFree86-DGA
    [ 1307.782] Initializing built-in extension XFree86-DRI
    [ 1307.782] Initializing built-in extension DRI2
    [ 1307.782] (II) LoadModule: "glx"
    [ 1307.782] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 1307.794] (II) Module glx: vendor="NVIDIA Corporation"
    [ 1307.794] compiled for 4.0.2, module version = 1.0.0
    [ 1307.794] Module class: X.Org Server Extension
    [ 1307.794] (II) NVIDIA GLX Module 310.19 Thu Nov 8 01:12:43 PST 2012
    [ 1307.794] Loading extension GLX
    [ 1307.794] (II) LoadModule: "nvidia"
    [ 1307.794] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 1307.795] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 1307.795] compiled for 4.0.2, module version = 1.0.0
    [ 1307.795] Module class: X.Org Video Driver
    [ 1307.795] (II) LoadModule: "mouse"
    [ 1307.795] (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    [ 1307.805] (II) Module mouse: vendor="X.Org Foundation"
    [ 1307.805] compiled for 1.13.0, module version = 1.8.1
    [ 1307.805] Module class: X.Org XInput Driver
    [ 1307.806] ABI class: X.Org XInput driver, version 18.0
    [ 1307.806] (II) LoadModule: "kbd"
    [ 1307.806] (II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
    [ 1307.812] (II) Module kbd: vendor="X.Org Foundation"
    [ 1307.812] compiled for 1.13.0, module version = 1.6.2
    [ 1307.812] Module class: X.Org XInput Driver
    [ 1307.812] ABI class: X.Org XInput driver, version 18.0
    [ 1307.812] (II) NVIDIA dlloader X Driver 310.19 Thu Nov 8 00:53:33 PST 2012
    [ 1307.812] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 1307.812] (--) using VT number 2
    [ 1307.831] (II) Loading sub module "wfb"
    [ 1307.832] (II) LoadModule: "wfb"
    [ 1307.832] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 1307.832] (II) Module wfb: vendor="X.Org Foundation"
    [ 1307.832] compiled for 1.13.1, module version = 1.0.0
    [ 1307.832] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 1307.832] (II) Loading sub module "ramdac"
    [ 1307.832] (II) LoadModule: "ramdac"
    [ 1307.832] (II) Module "ramdac" already built-in
    [ 1307.832] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 1307.832] (==) NVIDIA(0): RGB weight 888
    [ 1307.833] (==) NVIDIA(0): Default visual is TrueColor
    [ 1307.833] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 1307.833] (**) NVIDIA(0): Option "NoLogo" "1"
    [ 1307.833] (**) NVIDIA(0): Option "ProbeAllGpus" "false"
    [ 1307.833] (**) NVIDIA(0): Enabling 2D acceleration
    [ 1307.908] (II) NVIDIA(GPU-0): Display (DELL E193FP (CRT-1)) does not support NVIDIA 3D
    [ 1307.908] (II) NVIDIA(GPU-0): Vision stereo.
    [ 1307.910] (II) NVIDIA(0): NVIDIA GPU GeForce 8400GS (GT218) at PCI:6:0:0 (GPU-0)
    [ 1307.910] (--) NVIDIA(0): Memory: 1048576 kBytes
    [ 1307.910] (--) NVIDIA(0): VideoBIOS: 70.18.5f.00.00
    [ 1307.910] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 1307.919] (--) NVIDIA(0): Valid display device(s) on GeForce 8400GS at PCI:6:0:0
    [ 1307.919] (--) NVIDIA(0): CRT-0
    [ 1307.919] (--) NVIDIA(0): DELL E193FP (CRT-1) (connected)
    [ 1307.919] (--) NVIDIA(0): DFP-0
    [ 1307.919] (--) NVIDIA(0): DFP-1
    [ 1307.919] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 1307.919] (--) NVIDIA(0): DELL E193FP (CRT-1): 400.0 MHz maximum pixel clock
    [ 1307.919] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
    [ 1307.919] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS
    [ 1307.919] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
    [ 1307.919] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 1307.919] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 1307.919] (**) NVIDIA(0): device DELL E193FP (CRT-1) (Using EDID frequencies has
    [ 1307.919] (**) NVIDIA(0): been enabled on all display devices.)
    [ 1307.921] (==) NVIDIA(0):
    [ 1307.921] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 1307.921] (==) NVIDIA(0): will be used as the requested mode.
    [ 1307.921] (==) NVIDIA(0):
    [ 1307.921] (II) NVIDIA(0): Validated MetaModes:
    [ 1307.921] (II) NVIDIA(0): "CRT-1:nvidia-auto-select"
    [ 1307.921] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    [ 1307.931] (--) NVIDIA(0): DPI set to (85, 86); computed from "UseEdidDpi" X config
    [ 1307.931] (--) NVIDIA(0): option
    [ 1307.931] (--) Depth 24 pixmap format is 32 bpp
    [ 1307.931] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [ 1307.939] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon
    [ 1307.939] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X
    [ 1307.939] (II) NVIDIA(0): configuration option may not be set correctly. When the
    [ 1307.939] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will
    [ 1307.939] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For
    [ 1307.939] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and
    [ 1307.939] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X
    [ 1307.939] (II) NVIDIA(0): Config Options in the README.
    [ 1307.948] (II) NVIDIA(0): Setting mode "CRT-1:nvidia-auto-select"
    [ 1307.978] Loading extension NV-GLX
    [ 1307.996] (==) NVIDIA(0): Disabling shared memory pixmaps
    [ 1307.996] (==) NVIDIA(0): Backing store disabled
    [ 1307.996] (==) NVIDIA(0): Silken mouse enabled
    [ 1307.997] (==) NVIDIA(0): DPMS enabled
    [ 1307.997] Loading extension NV-CONTROL
    [ 1307.997] Loading extension XINERAMA
    [ 1307.997] (II) Loading sub module "dri2"
    [ 1307.997] (II) LoadModule: "dri2"
    [ 1307.997] (II) Module "dri2" already built-in
    [ 1307.997] (II) NVIDIA(0): [DRI2] Setup complete
    [ 1307.997] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia
    [ 1307.997] (--) RandR disabled
    [ 1308.001] (II) Initializing extension GLX
    [ 1308.153] (II) Using input driver 'mouse' for 'mouse1'
    [ 1308.153] (**) Option "CorePointer"
    [ 1308.153] (**) mouse1: always reports core events
    [ 1308.153] (**) Option "Protocol" "auto"
    [ 1308.153] (**) Option "Device" "/dev/input/by-id/usb-Areson_USB_Device-event-mouse"
    [ 1308.154] (II) mouse1: Setting mouse protocol to "PS/2"
    [ 1308.154] (**) mouse1: Protocol: "auto"
    [ 1308.154] (**) mouse1: always reports core events
    [ 1308.160] (==) mouse1: Emulate3Buttons, Emulate3Timeout: 50
    [ 1308.160] (**) Option "ZAxisMapping" "4 5 6 7"
    [ 1308.160] (**) mouse1: ZAxisMapping: buttons 4, 5, 6 and 7
    [ 1308.160] (**) mouse1: Buttons: 11
    [ 1308.160] (II) XINPUT: Adding extended input device "mouse1" (type: MOUSE, id 6)
    [ 1308.160] (**) mouse1: (accel) keeping acceleration scheme 1
    [ 1308.160] (**) mouse1: (accel) acceleration profile 0
    [ 1308.160] (**) mouse1: (accel) acceleration factor: 2.000
    [ 1308.160] (**) mouse1: (accel) acceleration threshold: 4
    [ 1308.163] (II) mouse1: Setting mouse protocol to "PS/2"
    [ 1313.423] (II) Using input driver 'kbd' for 'keyboard1'
    [ 1313.423] (**) Option "CoreKeyboard"
    [ 1313.423] (**) keyboard1: always reports core events
    [ 1313.423] (**) keyboard1: always reports core events
    [ 1313.423] (**) Option "Protocol" "standard"
    [ 1313.423] (**) Option "Device" "/dev/input/by-id/usb-Dell_Dell_USB_Keyboard-event-kbd"
    [ 1313.423] (**) Option "XkbRules" "base"
    [ 1313.423] (**) Option "XkbModel" "pc105"
    [ 1313.423] (**) Option "XkbLayout" "us"
    [ 1313.423] (II) XINPUT: Adding extended input device "keyboard1" (type: KEYBOARD, id 7)
    [ 1313.427] (II) config/udev: Adding input device Power Button (/dev/input/event8)
    [ 1313.427] (II) AutoAddDevices is off - not adding device.
    [ 1313.428] (II) config/udev: Adding input device Power Button (/dev/input/event7)
    [ 1313.428] (II) AutoAddDevices is off - not adding device.
    [ 1313.428] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event18)
    [ 1313.428] (II) AutoAddDevices is off - not adding device.
    [ 1313.428] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event19)
    [ 1313.428] (II) AutoAddDevices is off - not adding device.
    [ 1313.429] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event20)
    [ 1313.429] (II) AutoAddDevices is off - not adding device.
    [ 1313.429] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event21)
    [ 1313.429] (II) AutoAddDevices is off - not adding device.
    [ 1313.430] (II) config/udev: Adding input device Dell Dell USB Keyboard (/dev/input/event0)
    [ 1313.430] (II) AutoAddDevices is off - not adding device.
    [ 1313.430] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event1)
    [ 1313.430] (II) AutoAddDevices is off - not adding device.
    [ 1313.431] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/event2)
    [ 1313.431] (II) AutoAddDevices is off - not adding device.
    [ 1313.431] (II) config/udev: Adding input device Logitech USB Receiver (/dev/input/mouse0)
    [ 1313.431] (II) AutoAddDevices is off - not adding device.
    [ 1313.432] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v2.0 (/dev/input/event3)
    [ 1313.432] (II) AutoAddDevices is off - not adding device.
    [ 1313.432] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v2.0 (/dev/input/event4)
    [ 1313.432] (II) AutoAddDevices is off - not adding device.
    [ 1313.433] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v2.0 (/dev/input/mouse1)
    [ 1313.433] (II) AutoAddDevices is off - not adding device.
    [ 1313.433] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v2.0 (/dev/input/event5)
    [ 1313.433] (II) AutoAddDevices is off - not adding device.
    [ 1313.434] (II) config/udev: Adding input device Microsoft Microsoft® Nano Transceiver v2.0 (/dev/input/js0)
    [ 1313.434] (II) AutoAddDevices is off - not adding device.
    [ 1313.434] (II) config/udev: Adding input device Areson USB Device (/dev/input/event6)
    [ 1313.434] (II) AutoAddDevices is off - not adding device.
    [ 1313.435] (II) config/udev: Adding input device Areson USB Device (/dev/input/mouse2)
    [ 1313.435] (II) AutoAddDevices is off - not adding device.
    [ 1313.435] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event10)
    [ 1313.435] (II) AutoAddDevices is off - not adding device.
    [ 1313.436] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event11)
    [ 1313.436] (II) AutoAddDevices is off - not adding device.
    [ 1313.436] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event12)
    [ 1313.436] (II) AutoAddDevices is off - not adding device.
    [ 1313.436] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event13)
    [ 1313.436] (II) AutoAddDevices is off - not adding device.
    [ 1313.437] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event14)
    [ 1313.437] (II) AutoAddDevices is off - not adding device.
    [ 1313.437] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event15)
    [ 1313.437] (II) AutoAddDevices is off - not adding device.
    [ 1313.437] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event16)
    [ 1313.438] (II) AutoAddDevices is off - not adding device.
    [ 1313.438] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event17)
    [ 1313.438] (II) AutoAddDevices is off - not adding device.
    [ 1313.438] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event22)
    [ 1313.438] (II) AutoAddDevices is off - not adding device.
    [ 1313.439] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event23)
    [ 1313.439] (II) AutoAddDevices is off - not adding device.
    [ 1313.439] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event24)
    [ 1313.439] (II) AutoAddDevices is off - not adding device.
    [ 1313.439] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event25)
    [ 1313.440] (II) AutoAddDevices is off - not adding device.
    [ 1313.440] (II) config/udev: Adding input device PC Speaker (/dev/input/event9)
    [ 1313.440] (II) AutoAddDevices is off - not adding device.
    [ 1313.687] (II) NVIDIA(GPU-0): Display (DELL E193FP (CRT-1)) does not support NVIDIA 3D
    [ 1313.687] (II) NVIDIA(GPU-0): Vision stereo.
    [ 1313.687] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 1313.687] (**) NVIDIA(0): device DELL E193FP (CRT-1) (Using EDID frequencies has
    [ 1313.687] (**) NVIDIA(0): been enabled on all display devices.)
    [ 1313.724] (II) NVIDIA(GPU-0): Display (DELL E193FP (CRT-1)) does not support NVIDIA 3D
    [ 1313.724] (II) NVIDIA(GPU-0): Vision stereo.
    [ 1313.724] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 1313.724] (**) NVIDIA(0): device DELL E193FP (CRT-1) (Using EDID frequencies has
    [ 1313.724] (**) NVIDIA(0): been enabled on all display devices.)
    [ 1313.761] (II) NVIDIA(GPU-0): Display (DELL E193FP (CRT-1)) does not support NVIDIA 3D
    [ 1313.761] (II) NVIDIA(GPU-0): Vision stereo.
    [ 1313.761] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 1313.761] (**) NVIDIA(0): device DELL E193FP (CRT-1) (Using EDID frequencies has
    [ 1313.762] (**) NVIDIA(0): been enabled on all display devices.)
    (EE) BUG: triggered 'if (inSignalContext)'
    (EE) BUG: log.c:484 in LogVMessageVerb()
    (EE) Warning: attempting to log data in a signal unsafe manner while in signal context.
    Please update to check inSignalContext and/or use LogMessageVerbSigSafe() or ErrorFSigSafe().
    The offending log format message is:
    3rd Button detected: disabling emulate3Button
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (LogVMessageVerb+0x195) [0x595765]
    (EE) 2: /usr/bin/X (xf86Msg+0x8f) [0x48283f]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7742) [0x7fac34707742]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (II) 3rd Button detected: disabling emulate3Button
    (EE) BUG: triggered 'if (inSignalContext)'
    (EE) BUG: log.c:484 in LogVMessageVerb()
    (EE) Warning: attempting to log data in a signal unsafe manner while in signal context.
    Please update to check inSignalContext and/or use LogMessageVerbSigSafe() or ErrorFSigSafe().
    The offending log format message is:
    Option "%s"
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (LogVMessageVerb+0x195) [0x595765]
    (EE) 2: /usr/bin/X (xf86DrvMsgVerb+0x7d) [0x48116d]
    (EE) 3: /usr/bin/X (0x400000+0x7742b) [0x47742b]
    (EE) 4: /usr/bin/X (0x400000+0x77a15) [0x477a15]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x89e3) [0x7fac347089e3]
    (EE) 6: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x55ad) [0x7fac347055ad]
    (EE) 7: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x67ef) [0x7fac347067ef]
    (EE) 8: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x43f6) [0x7fac347043f6]
    (EE) 9: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 10: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 11: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 12: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 13: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 14: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 15: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 16: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 17: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) BUG: triggered 'if (inSignalContext)'
    (EE) BUG: log.c:484 in LogVMessageVerb()
    (EE) Warning: attempting to log data in a signal unsafe manner while in signal context.
    Please update to check inSignalContext and/or use LogMessageVerbSigSafe() or ErrorFSigSafe().
    The offending log format message is:
    %s: Setting mouse protocol to "%s"
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (LogVMessageVerb+0x195) [0x595765]
    (EE) 2: /usr/bin/X (xf86Msg+0x8f) [0x48283f]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x8c35) [0x7fac34708c35]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x55ad) [0x7fac347055ad]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x67ef) [0x7fac347067ef]
    (EE) 6: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x43f6) [0x7fac347043f6]
    (EE) 7: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 8: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 9: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 10: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 11: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 12: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 13: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 14: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 15: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (WW) Warned 3 times about sigsafe logging. Will be quiet now.
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) 3rd Button detected: disabling emulate3Button
    (II) Mouse autoprobe: selecting PS/2 protocol
    (EE) [mi] EQ overflowing. Additional events will be discarded until existing events are processed.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (mieqEnqueue+0x26b) [0x56b78b]
    (EE) 2: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 3: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 6: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 7: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 8: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 9: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 10: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 11: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 12: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 13: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 14: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 15: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] These backtraces from mieqEnqueue may point to a culprit higher up the stack.
    (EE) [mi] mieq is *NOT* the cause. It is a victim.
    (EE) [mi] EQ overflow continuing. 100 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 200 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 300 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 400 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 500 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostMotionEvent+0xd0) [0x485a60]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7497) [0x7fac34707497]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 600 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostMotionEvent+0xd0) [0x485a60]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7497) [0x7fac34707497]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 700 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostMotionEvent+0xd0) [0x485a60]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7497) [0x7fac34707497]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 800 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (EE) [mi] EQ overflow continuing. 900 events have been dropped.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) 3rd Button detected: disabling emulate3Button
    (EE) [mi] EQ overflow continuing. 1000 events have been dropped.
    (EE) [mi] No further overflow reports will be reported until the clog is cleared.
    (EE)
    (EE) Backtrace:
    (EE) 0: /usr/bin/X (xorg_backtrace+0x36) [0x58a426]
    (EE) 1: /usr/bin/X (0x400000+0x4c632) [0x44c632]
    (EE) 2: /usr/bin/X (xf86PostButtonEvent+0xd6) [0x485f26]
    (EE) 3: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7251) [0x7fac34707251]
    (EE) 4: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x7a3b) [0x7fac34707a3b]
    (EE) 5: /usr/lib/xorg/modules/input/mouse_drv.so (0x7fac34700000+0x432d) [0x7fac3470432d]
    (EE) 6: /usr/bin/X (0x400000+0x75b97) [0x475b97]
    (EE) 7: /usr/bin/X (0x400000+0x9f258) [0x49f258]
    (EE) 8: /usr/lib/libpthread.so.0 (0x7fac3a418000+0xf1e0) [0x7fac3a4271e0]
    (EE) 9: /usr/lib/libc.so.6 (__select+0x13) [0x7fac39149d33]
    (EE) 10: /usr/bin/X (WaitForSomething+0x190) [0x587850]
    (EE) 11: /usr/bin/X (0x400000+0x37bb1) [0x437bb1]
    (EE) 12: /usr/bin/X (0x400000+0x2696a) [0x42696a]
    (EE) 13: /usr/lib/libc.so.6 (__libc_start_main+0xf5) [0x7fac39089a15]
    (EE) 14: /usr/bin/X (0x400000+0x26cad) [0x426cad]
    (EE)
    (II) Mouse autoprobe: selecting PS/2 protocol
    (II) mouse1: Setting mouse protocol to "PS/2"
    (II) mouse1: Setting mouse protocol to "PS/2"
    [ 1330.150] [mi] Increasing EQ size to 512 to prevent dropped events.
    [ 1330.151] [mi] EQ processing has resumed after 1558 dropped events.
    [ 1330.151] [mi] This may be caused my a misbehaving driver monopolizing the server's resources.
    [ 1365.538] (II) UnloadModule: "kbd"
    [ 1365.538] (II) UnloadModule: "mouse"
    [ 1365.554] Server terminated successfully (0). Closing log file.
    Any help would be appreciated.
    Last edited by l0vot (2013-01-04 23:15:53)

    I used the endev driver for all of the input devices, and now the mice and keyboards work, however the arrow keys are mapped to other random keys on both keyboards. The up arrow on both keyboards is mapped to print screen, I may be able to fix that with xmodmap.
    I can't seem to start seat 0 and 1 at the same time, and endev does weird things to my Logitech keyboard, so I used a roundabout way of starting both seats: first I activate seat one, and then switch to a different vt, which causes the x server to stop sending video to monitor one, but seat1 still grabbed keyboard1 and mouse1, then i use startx without any additional arguments, which activates screen0 by default and then hotplugs keyboard0 and mouse0 because they are available, but it does not interfere with seat1 because seat1 already grabbed all of it's devices. I open a terminal on seat0 and try to start seat1, which is already active, just not being displayed, so seat1 starts sending video to moniter1,  it appears trying to start an x server on a screen that is already in use will fail, and drop you back into the vt that you tried to start it from, in this case it put me back in screen0 while allowing screen1 to be active.
    This is a very crude method of getting both seats to work at the same time, and i stumbled upon this solution by accident, originally i made a multi-threaded program that should have activated both seats at the same time from the same vt, that did not work for some reason, so i will have to use my crude solution until i can find a better one. an answer to question 3 would probably help, i will do some more research on question3.
    Last edited by l0vot (2013-01-05 20:26:54)

  • Xorg cannot find screens with nvidia module

    I know that this question is very common, but I cannot find solution,
    I should use "nvidia" drivers on Lenovo notebook with two videocards (work with Cuda technology).
    Xorg cannot load nvidia module with this xorg.conf. Can anybody help?
    Thanks.
    lspci | grep VGA
    00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
    01:00.0 VGA compatible controller: NVIDIA Corporation GF108 [GeForce GT 630M] (rev a1)
    xorg.conf:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    # Screen 0 "Screen1" 0 0
    # Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc/"
    FontPath "/usr/share/fonts/TTF/"
    FontPath "/usr/share/fonts/OTF/"
    FontPath "/usr/share/fonts/Type1/"
    FontPath "/usr/share/fonts/100dpi/"
    FontPath "/usr/share/fonts/75dpi/"
    EndSection
    Section "Module"
    Load "glx"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Monitor Vendor"
    ModelName "Monitor Model"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "SWcursor" # [<bool>]
    #Option "HWcursor" # [<bool>]
    #Option "NoAccel" # [<bool>]
    #Option "ShadowFB" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "Rotate" # [<str>]
    #Option "VideoKey" # <i>
    #Option "FlatPanel" # [<bool>]
    #Option "FPDither" # [<bool>]
    #Option "CrtcNumber" # <i>
    #Option "FPScale" # [<bool>]
    #Option "FPTweak" # <i>
    #Option "DualHead" # [<bool>]
    Identifier "Card0"
    Driver "nvidia"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz",
    ### <percent>: "<f>%"
    ### [arg]: arg optional
    #Option "NoAccel" # [<bool>]
    #Option "AccelMethod" # <str>
    #Option "Backlight" # <str>
    #Option "DRI" # [<bool>]
    #Option "ColorKey" # <i>
    #Option "VideoKey" # <i>
    #Option "Tiling" # [<bool>]
    #Option "LinearFramebuffer" # [<bool>]
    #Option "SwapbuffersWait" # [<bool>]
    #Option "XvPreferOverlay" # [<bool>]
    #Option "HotPlug" # [<bool>]
    #Option "RelaxedFencing" # [<bool>]
    #Option "XvMC" # [<bool>]
    #Option "Throttle" # [<bool>]
    #Option "ZaphodHeads" # <str>
    #Option "DelayedFlush" # [<bool>]
    #Option "TearFree" # [<bool>]
    #Option "PerCrtcPixmaps" # [<bool>]
    #Option "FallbackDebug" # [<bool>]
    #Option "DebugFlushBatches" # [<bool>]
    #Option "DebugFlushCaches" # [<bool>]
    #Option "DebugWait" # [<bool>]
    #Option "BufferCache" # [<bool>]
    #Option "TripleBuffer" # [<bool>]
    Identifier "Card1"
    Driver "intel"
    BusID "PCI:0:2:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1366x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1366x768"
    EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 32
    # Modes "1366x768"
    # EndSubSection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Card1"
    Monitor "Monitor1"
    SubSection "Display"
    Viewport 0 0
    Depth 16
    Modes "1366x768"
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1366x768"
    EndSubSection
    # SubSection "Display"
    # Viewport 0 0
    # Depth 32
    # Modes "1366x768"
    # EndSubSection
    EndSection
    Xorg.0.log:
    [ 27.732]
    X.Org X Server 1.13.0
    Release Date: 2012-09-05
    [ 27.732] X Protocol Version 11, Revision 0
    [ 27.732] Build Operating System: Linux 3.6.2-1-ARCH x86_64
    [ 27.732] Current Operating System: Linux kot_dymok 3.5.6-1-ARCH #1 SMP PREEMPT Sun Oct 7 19:30:49 CEST 2012 x86_64
    [ 27.732] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fc9d19b7-8701-471d-bf1f-867196c6d392 resume=/dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff ro quiet
    [ 27.732] Build Date: 19 October 2012 03:54:56PM
    [ 27.732]
    [ 27.732] Current version of pixman: 0.26.2
    [ 27.732] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 27.732] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 27.732] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Oct 26 01:54:00 2012
    [ 27.732] (==) Using config file: "/etc/X11/xorg.conf"
    [ 27.732] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 27.732] (==) ServerLayout "X.org Configured"
    [ 27.732] (**) |-->Screen "Screen0" (0)
    [ 27.732] (**) | |-->Monitor "Monitor0"
    [ 27.732] (**) | |-->Device "Card0"
    [ 27.732] (**) |-->Input Device "Mouse0"
    [ 27.733] (**) |-->Input Device "Keyboard0"
    [ 27.733] (==) Automatically adding devices
    [ 27.733] (==) Automatically enabling devices
    [ 27.733] (==) Automatically adding GPU devices
    [ 27.733] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 27.733] Entry deleted from font path.
    [ 27.733] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 27.733] Entry deleted from font path.
    [ 27.733] (**) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/,
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 27.733] (**) ModulePath set to "/usr/lib/xorg/modules"
    [ 27.733] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
    [ 27.733] (WW) Disabling Mouse0
    [ 27.733] (WW) Disabling Keyboard0
    [ 27.733] (II) Loader magic: 0x7fcc20
    [ 27.733] (II) Module ABI versions:
    [ 27.733] X.Org ANSI C Emulation: 0.4
    [ 27.733] X.Org Video Driver: 13.0
    [ 27.733] X.Org XInput driver : 18.0
    [ 27.733] X.Org Server Extension : 7.0
    [ 27.733] (II) config/udev: Adding drm device (/dev/dri/card0)
    [ 27.734] (--) PCI:*(0:0:2:0) 8086:0166:17aa:3901 rev 9, Mem @ 0xd3400000/4194304, 0xe0000000/268435456, I/O @ 0x00004000/64
    [ 27.734] (--) PCI: (0:1:0:0) 10de:0de9:17aa:3901 rev 161, Mem @ 0xd2000000/16777216, 0xc0000000/268435456, 0xd0000000/33554432, I/O @ 0x00003000/128, BIOS @ 0x????????/524288
    [ 27.734] (II) Open ACPI successful (/var/run/acpid.socket)
    [ 27.734] Initializing built-in extension Generic Event Extension
    [ 27.734] Initializing built-in extension SHAPE
    [ 27.734] Initializing built-in extension MIT-SHM
    [ 27.734] Initializing built-in extension XInputExtension
    [ 27.734] Initializing built-in extension XTEST
    [ 27.734] Initializing built-in extension BIG-REQUESTS
    [ 27.734] Initializing built-in extension SYNC
    [ 27.734] Initializing built-in extension XKEYBOARD
    [ 27.734] Initializing built-in extension XC-MISC
    [ 27.734] Initializing built-in extension SECURITY
    [ 27.734] Initializing built-in extension XINERAMA
    [ 27.734] Initializing built-in extension XFIXES
    [ 27.734] Initializing built-in extension RENDER
    [ 27.734] Initializing built-in extension RANDR
    [ 27.734] Initializing built-in extension COMPOSITE
    [ 27.734] Initializing built-in extension DAMAGE
    [ 27.734] Initializing built-in extension MIT-SCREEN-SAVER
    [ 27.734] Initializing built-in extension DOUBLE-BUFFER
    [ 27.734] Initializing built-in extension RECORD
    [ 27.734] Initializing built-in extension DPMS
    [ 27.735] Initializing built-in extension X-Resource
    [ 27.735] Initializing built-in extension XVideo
    [ 27.735] Initializing built-in extension XVideo-MotionCompensation
    [ 27.735] Initializing built-in extension XFree86-VidModeExtension
    [ 27.735] Initializing built-in extension XFree86-DGA
    [ 27.735] Initializing built-in extension XFree86-DRI
    [ 27.735] Initializing built-in extension DRI2
    [ 27.735] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [ 27.735] (II) LoadModule: "glx"
    [ 27.735] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 27.741] (II) Module glx: vendor="NVIDIA Corporation"
    [ 27.741] compiled for 4.0.2, module version = 1.0.0
    [ 27.741] Module class: X.Org Server Extension
    [ 27.741] (II) NVIDIA GLX Module 304.43 Sun Aug 19 20:34:01 PDT 2012
    [ 27.741] Loading extension GLX
    [ 27.741] (II) LoadModule: "nvidia"
    [ 27.741] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 27.742] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 27.742] compiled for 4.0.2, module version = 1.0.0
    [ 27.742] Module class: X.Org Video Driver
    [ 27.815] (EE) NVIDIA: Failed to load the NVIDIA kernel module. Please check your
    [ 27.815] (EE) NVIDIA: system's kernel log for additional error messages.
    [ 27.815] (II) UnloadModule: "nvidia"
    [ 27.815] (II) Unloading nvidia
    [ 27.815] (EE) Failed to load module "nvidia" (module-specific error, 0)
    [ 27.815] (EE) No drivers available.
    [ 27.815]
    Fatal server error:
    [ 27.815] no screens found
    [ 27.815] (EE)
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 27.815] (EE) Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 27.815] (EE)
    dmesg.log
    [ 0.000000] Initializing cgroup subsys cpuset
    [ 0.000000] Initializing cgroup subsys cpu
    [ 0.000000] Linux version 3.5.6-1-ARCH (tobias@T-POWA-LX) (gcc version 4.7.1 20120721 (prerelease) (GCC) ) #1 SMP PREEMPT Sun Oct 7 19:30:49 CEST 2012
    [ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fc9d19b7-8701-471d-bf1f-867196c6d392 resume=/dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff ro quiet
    [ 0.000000] e820: BIOS-provided physical RAM map:
    [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d7ff] usable
    [ 0.000000] BIOS-e820: [mem 0x000000000009d800-0x000000000009ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x0000000040003fff] usable
    [ 0.000000] BIOS-e820: [mem 0x0000000040004000-0x0000000040004fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000040005000-0x00000000baabefff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000baabf000-0x00000000baebefff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000baebf000-0x00000000bafbefff] ACPI NVS
    [ 0.000000] BIOS-e820: [mem 0x00000000bafbf000-0x00000000baffefff] ACPI data
    [ 0.000000] BIOS-e820: [mem 0x00000000bafff000-0x00000000baffffff] usable
    [ 0.000000] BIOS-e820: [mem 0x00000000bb000000-0x00000000bf9fffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
    [ 0.000000] BIOS-e820: [mem 0x00000000ffb80000-0x00000000ffffffff] reserved
    [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000013f5fffff] usable
    [ 0.000000] NX (Execute Disable) protection: active
    [ 0.000000] DMI 2.7 present.
    [ 0.000000] DMI: LENOVO Lenovo G580/Product Name, BIOS 5ECN33WW(V2.03) 06/06/2012
    [ 0.000000] e820: update [mem 0x00000000-0x0000ffff] usable ==> reserved
    [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
    [ 0.000000] No AGP bridge found
    [ 0.000000] e820: last_pfn = 0x13f600 max_arch_pfn = 0x400000000
    [ 0.000000] MTRR default type: uncachable
    [ 0.000000] MTRR fixed ranges enabled:
    [ 0.000000] 00000-9FFFF write-back
    [ 0.000000] A0000-BFFFF uncachable
    [ 0.000000] C0000-E7FFF write-protect
    [ 0.000000] E8000-EFFFF write-combining
    [ 0.000000] F0000-FFFFF write-protect
    [ 0.000000] MTRR variable ranges enabled:
    [ 0.000000] 0 base 000000000 mask F80000000 write-back
    [ 0.000000] 1 base 080000000 mask FC0000000 write-back
    [ 0.000000] 2 base 0BB000000 mask FFF000000 uncachable
    [ 0.000000] 3 base 0BC000000 mask FFC000000 uncachable
    [ 0.000000] 4 base 0FFC00000 mask FFFC00000 write-protect
    [ 0.000000] 5 base 100000000 mask FC0000000 write-back
    [ 0.000000] 6 base 13F600000 mask FFFE00000 uncachable
    [ 0.000000] 7 base 13F800000 mask FFF800000 uncachable
    [ 0.000000] 8 disabled
    [ 0.000000] 9 disabled
    [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
    [ 0.000000] e820: last_pfn = 0xbb000 max_arch_pfn = 0x400000000
    [ 0.000000] found SMP MP-table at [mem 0x000fe1b0-0x000fe1bf] mapped at [ffff8800000fe1b0]
    [ 0.000000] initial memory mapped: [mem 0x00000000-0x1fffffff]
    [ 0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
    [ 0.000000] init_memory_mapping: [mem 0x00000000-0xbaffffff]
    [ 0.000000] [mem 0x00000000-0xbaffffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0xbaffffff @ [mem 0x1fa24000-0x1fffffff]
    [ 0.000000] init_memory_mapping: [mem 0x100000000-0x13f5fffff]
    [ 0.000000] [mem 0x100000000-0x13f5fffff] page 2M
    [ 0.000000] kernel direct mapping tables up to 0x13f5fffff @ [mem 0xbaab9000-0xbaabefff]
    [ 0.000000] RAMDISK: [mem 0x37a12000-0x37d00fff]
    [ 0.000000] ACPI: RSDP 00000000000fe020 00024 (v02 LENOVO)
    [ 0.000000] ACPI: XSDT 00000000baffe210 00094 (v01 LENOVO CB-01 00000001 01000013)
    [ 0.000000] ACPI: FACP 00000000baffb000 000F4 (v04 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: DSDT 00000000bafee000 09755 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FACS 00000000bafbb000 00040
    [ 0.000000] ACPI: UEFI 00000000baffd000 00236 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASF! 00000000baffc000 000A5 (v32 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: HPET 00000000baffa000 00038 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: APIC 00000000baff9000 0008C (v02 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: MCFG 00000000baff8000 0003C (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SLIC 00000000bafed000 00176 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafec000 006FE (v01 LENOVO CB-01 00001000 ACPI 00040000)
    [ 0.000000] ACPI: BOOT 00000000bafea000 00028 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: ASPT 00000000bafe5000 00034 (v07 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: FPDT 00000000bafe3000 00044 (v01 LENOVO CB-01 00000001 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafe2000 00968 (v01 LENOVO CB-01 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafe1000 00A92 (v01 LENOVO CB-01 00003000 ACPI 00040000)
    [ 0.000000] ACPI: SSDT 00000000bafdf000 01EDD (v01 LENOVO CB-01 00001000 ACPI 00040000)
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] No NUMA configuration found
    [ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000013f5fffff]
    [ 0.000000] Initmem setup node 0 [mem 0x00000000-0x13f5fffff]
    [ 0.000000] NODE_DATA [mem 0x13f5fc000-0x13f5fffff]
    [ 0.000000] [ffffea0000000000-ffffea0004ffffff] PMD -> [ffff88013ac00000-ffff88013ebfffff] on node 0
    [ 0.000000] Zone ranges:
    [ 0.000000] DMA [mem 0x00010000-0x00ffffff]
    [ 0.000000] DMA32 [mem 0x01000000-0xffffffff]
    [ 0.000000] Normal [mem 0x100000000-0x13f5fffff]
    [ 0.000000] Movable zone start for each node
    [ 0.000000] Early memory node ranges
    [ 0.000000] node 0: [mem 0x00010000-0x0009cfff]
    [ 0.000000] node 0: [mem 0x00100000-0x1fffffff]
    [ 0.000000] node 0: [mem 0x20200000-0x40003fff]
    [ 0.000000] node 0: [mem 0x40005000-0xbaabefff]
    [ 0.000000] node 0: [mem 0xbafff000-0xbaffffff]
    [ 0.000000] node 0: [mem 0x100000000-0x13f5fffff]
    [ 0.000000] On node 0 totalpages: 1023564
    [ 0.000000] DMA zone: 64 pages used for memmap
    [ 0.000000] DMA zone: 6 pages reserved
    [ 0.000000] DMA zone: 3911 pages, LIFO batch:0
    [ 0.000000] DMA32 zone: 16320 pages used for memmap
    [ 0.000000] DMA32 zone: 743679 pages, LIFO batch:31
    [ 0.000000] Normal zone: 4056 pages used for memmap
    [ 0.000000] Normal zone: 255528 pages, LIFO batch:31
    [ 0.000000] ACPI: PM-Timer IO Port: 0x408
    [ 0.000000] ACPI: Local APIC address 0xfee00000
    [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
    [ 0.000000] ACPI: IOAPIC (id[0x00] address[0xfec00000] gsi_base[0])
    [ 0.000000] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
    [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
    [ 0.000000] ACPI: IRQ0 used by override.
    [ 0.000000] ACPI: IRQ2 used by override.
    [ 0.000000] ACPI: IRQ9 used by override.
    [ 0.000000] Using ACPI (MADT) for SMP configuration information
    [ 0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
    [ 0.000000] SMP: Allowing 8 CPUs, 4 hotplug CPUs
    [ 0.000000] nr_irqs_gsi: 40
    [ 0.000000] PM: Registered nosave memory: 000000000009d000 - 000000000009e000
    [ 0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
    [ 0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e0000
    [ 0.000000] PM: Registered nosave memory: 00000000000e0000 - 0000000000100000
    [ 0.000000] PM: Registered nosave memory: 0000000020000000 - 0000000020200000
    [ 0.000000] PM: Registered nosave memory: 0000000040004000 - 0000000040005000
    [ 0.000000] PM: Registered nosave memory: 00000000baabf000 - 00000000baebf000
    [ 0.000000] PM: Registered nosave memory: 00000000baebf000 - 00000000bafbf000
    [ 0.000000] PM: Registered nosave memory: 00000000bafbf000 - 00000000bafff000
    [ 0.000000] PM: Registered nosave memory: 00000000bb000000 - 00000000bfa00000
    [ 0.000000] PM: Registered nosave memory: 00000000bfa00000 - 00000000f0000000
    [ 0.000000] PM: Registered nosave memory: 00000000f0000000 - 00000000f4000000
    [ 0.000000] PM: Registered nosave memory: 00000000f4000000 - 00000000feb00000
    [ 0.000000] PM: Registered nosave memory: 00000000feb00000 - 00000000feb04000
    [ 0.000000] PM: Registered nosave memory: 00000000feb04000 - 00000000fec00000
    [ 0.000000] PM: Registered nosave memory: 00000000fec00000 - 00000000fec01000
    [ 0.000000] PM: Registered nosave memory: 00000000fec01000 - 00000000fed10000
    [ 0.000000] PM: Registered nosave memory: 00000000fed10000 - 00000000fed1a000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1a000 - 00000000fed1c000
    [ 0.000000] PM: Registered nosave memory: 00000000fed1c000 - 00000000fed20000
    [ 0.000000] PM: Registered nosave memory: 00000000fed20000 - 00000000fee00000
    [ 0.000000] PM: Registered nosave memory: 00000000fee00000 - 00000000fee01000
    [ 0.000000] PM: Registered nosave memory: 00000000fee01000 - 00000000ffb80000
    [ 0.000000] PM: Registered nosave memory: 00000000ffb80000 - 0000000100000000
    [ 0.000000] e820: [mem 0xbfa00000-0xefffffff] available for PCI devices
    [ 0.000000] Booting paravirtualized kernel on bare hardware
    [ 0.000000] setup_percpu: NR_CPUS:64 nr_cpumask_bits:64 nr_cpu_ids:8 nr_node_ids:1
    [ 0.000000] PERCPU: Embedded 28 pages/cpu @ffff88013f200000 s83392 r8192 d23104 u262144
    [ 0.000000] pcpu-alloc: s83392 r8192 d23104 u262144 alloc=1*2097152
    [ 0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
    [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 1003118
    [ 0.000000] Policy zone: Normal
    [ 0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-linux root=UUID=fc9d19b7-8701-471d-bf1f-867196c6d392 resume=/dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff ro quiet
    [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
    [ 0.000000] __ex_table already sorted, skipping sort
    [ 0.000000] xsave/xrstor: enabled xstate_bv 0x7, cntxt size 0x340
    [ 0.000000] Checking aperture...
    [ 0.000000] No AGP bridge found
    [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
    [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
    [ 0.000000] Memory: 3947540k/5232640k available (4661k kernel code, 1138384k absent, 146716k reserved, 4191k data, 760k init)
    [ 0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
    [ 0.000000] Preemptible hierarchical RCU implementation.
    [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
    [ 0.000000] Dump stacks of tasks blocking RCU-preempt GP.
    [ 0.000000] NR_IRQS:4352 nr_irqs:744 16
    [ 0.000000] Console: colour dummy device 80x25
    [ 0.000000] console [tty0] enabled
    [ 0.000000] allocated 16777216 bytes of page_cgroup
    [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
    [ 0.000000] hpet clockevent registered
    [ 0.000000] Fast TSC calibration using PIT
    [ 0.003333] Detected 2494.278 MHz processor.
    [ 0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 4990.41 BogoMIPS (lpj=8314260)
    [ 0.000004] pid_max: default: 32768 minimum: 301
    [ 0.000025] Security Framework initialized
    [ 0.000028] AppArmor: AppArmor disabled by boot time parameter
    [ 0.000250] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
    [ 0.001230] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
    [ 0.001662] Mount-cache hash table entries: 256
    [ 0.001817] Initializing cgroup subsys cpuacct
    [ 0.001818] Initializing cgroup subsys memory
    [ 0.001825] Initializing cgroup subsys devices
    [ 0.001826] Initializing cgroup subsys freezer
    [ 0.001827] Initializing cgroup subsys net_cls
    [ 0.001828] Initializing cgroup subsys blkio
    [ 0.001850] CPU: Physical Processor ID: 0
    [ 0.001850] CPU: Processor Core ID: 0
    [ 0.001854] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
    ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
    [ 0.002211] mce: CPU supports 7 MCE banks
    [ 0.002221] CPU0: Thermal monitoring enabled (TM1)
    [ 0.002227] using mwait in idle threads.
    [ 0.003141] ACPI: Core revision 20120320
    [ 0.021624] ftrace: allocating 18032 entries in 71 pages
    [ 0.029975] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
    [ 0.062936] CPU0: Intel(R) Core(TM) i5-3210M CPU @ 2.50GHz stepping 09
    [ 0.166795] Performance Events: PEBS fmt1+, 16-deep LBR, SandyBridge events, Intel PMU driver.
    [ 0.166800] ... version: 3
    [ 0.166801] ... bit width: 48
    [ 0.166802] ... generic registers: 4
    [ 0.166803] ... value mask: 0000ffffffffffff
    [ 0.166804] ... max period: 000000007fffffff
    [ 0.166804] ... fixed-purpose events: 3
    [ 0.166805] ... event mask: 000000070000000f
    [ 0.186863] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
    [ 0.200098] Booting Node 0, Processors #1 #2 #3
    [ 0.266902] Brought up 4 CPUs
    [ 0.266905] Total of 4 processors activated (19962.65 BogoMIPS).
    [ 0.269981] devtmpfs: initialized
    [ 0.270796] PM: Registering ACPI NVS region [mem 0xbaebf000-0xbafbefff] (1048576 bytes)
    [ 0.271536] NET: Registered protocol family 16
    [ 0.271635] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
    [ 0.271637] ACPI: bus type pci registered
    [ 0.271695] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
    [ 0.271697] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
    [ 0.277539] PCI: Using configuration type 1 for base access
    [ 0.277665] mtrr: your CPUs had inconsistent variable MTRR settings
    [ 0.277666] mtrr: probably your BIOS does not setup all CPUs.
    [ 0.277666] mtrr: corrected configuration.
    [ 0.277952] bio: create slab <bio-0> at 0
    [ 0.277994] ACPI: Added _OSI(Module Device)
    [ 0.277995] ACPI: Added _OSI(Processor Device)
    [ 0.277996] ACPI: Added _OSI(3.0 _SCP Extensions)
    [ 0.277997] ACPI: Added _OSI(Processor Aggregator Device)
    [ 0.279372] ACPI: EC: Look up EC in DSDT
    [ 0.280773] ACPI: Executed 1 blocks of module-level executable AML code
    [ 0.283353] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
    [ 0.284330] ACPI: SSDT 00000000bae18018 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20100121)
    [ 0.284681] ACPI: Dynamic OEM Table Load:
    [ 0.284683] ACPI: SSDT (null) 0083B (v01 PmRef Cpu0Cst 00003001 INTL 20100121)
    [ 0.284902] ACPI: SSDT 00000000bae19a98 00303 (v01 PmRef ApIst 00003000 INTL 20100121)
    [ 0.285275] ACPI: Dynamic OEM Table Load:
    [ 0.285277] ACPI: SSDT (null) 00303 (v01 PmRef ApIst 00003000 INTL 20100121)
    [ 0.285380] ACPI: SSDT 00000000bae17d98 00119 (v01 PmRef ApCst 00003000 INTL 20100121)
    [ 0.285725] ACPI: Dynamic OEM Table Load:
    [ 0.285726] ACPI: SSDT (null) 00119 (v01 PmRef ApCst 00003000 INTL 20100121)
    [ 0.286579] ACPI: Interpreter enabled
    [ 0.286581] ACPI: (supports S0 S3 S4 S5)
    [ 0.286600] ACPI: Using IOAPIC for interrupt routing
    [ 0.409275] ACPI: EC: GPE = 0x17, I/O: command/status = 0x66, data = 0x62
    [ 0.409424] ACPI: No dock devices found.
    [ 0.409427] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
    [ 0.409682] \_SB_.PCI0:_OSC invalid UUID
    [ 0.409683] _OSC request data:1 8 1f
    [ 0.409687] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
    [ 0.410085] pci_root PNP0A08:00: >host bridge window [io 0x0000-0x0cf7]
    [ 0.410087] pci_root PNP0A08:00: >host bridge window [io 0x0d00-0xffff]
    [ 0.410089] pci_root PNP0A08:00: >host bridge window [mem 0x000a0000-0x000bffff]
    [ 0.410091] pci_root PNP0A08:00: >host bridge window [mem 0xbfa00000-0xfeafffff]
    [ 0.410117] PCI host bridge to bus 0000:00
    [ 0.410119] pci_bus 0000:00: >root bus resource [io 0x0000-0x0cf7]
    [ 0.410121] pci_bus 0000:00: >root bus resource [io 0x0d00-0xffff]
    [ 0.410122] pci_bus 0000:00: >root bus resource [mem 0x000a0000-0x000bffff]
    [ 0.410123] pci_bus 0000:00: >root bus resource [mem 0xbfa00000-0xfeafffff]
    [ 0.410131] pci 0000:00:00.0: >[8086:0154] type 00 class 0x060000
    [ 0.410164] pci 0000:00:01.0: >[8086:0151] type 01 class 0x060400
    [ 0.410192] pci 0000:00:01.0: >PME# supported from D0 D3hot D3cold
    [ 0.410210] pci 0000:00:02.0: >[8086:0166] type 00 class 0x030000
    [ 0.410220] pci 0000:00:02.0: >reg 10: [mem 0xd3400000-0xd37fffff 64bit]
    [ 0.410226] pci 0000:00:02.0: >reg 18: [mem 0xe0000000-0xefffffff 64bit pref]
    [ 0.410231] pci 0000:00:02.0: >reg 20: [io 0x4000-0x403f]
    [ 0.410281] pci 0000:00:14.0: >[8086:1e31] type 00 class 0x0c0330
    [ 0.410303] pci 0000:00:14.0: >reg 10: [mem 0xd3a00000-0xd3a0ffff 64bit]
    [ 0.410373] pci 0000:00:14.0: >PME# supported from D3hot D3cold
    [ 0.410396] pci 0000:00:16.0: >[8086:1e3a] type 00 class 0x078000
    [ 0.410419] pci 0000:00:16.0: >reg 10: [mem 0xd3a14000-0xd3a1400f 64bit]
    [ 0.410494] pci 0000:00:16.0: >PME# supported from D0 D3hot D3cold
    [ 0.410528] pci 0000:00:1a.0: >[8086:1e2d] type 00 class 0x0c0320
    [ 0.410779] pci 0000:00:1a.0: >reg 10: [mem 0xd3a19000-0xd3a193ff]
    [ 0.412197] pci 0000:00:1a.0: >PME# supported from D0 D3hot D3cold
    [ 0.412223] pci 0000:00:1b.0: >[8086:1e20] type 00 class 0x040300
    [ 0.412237] pci 0000:00:1b.0: >reg 10: [mem 0xd3a10000-0xd3a13fff 64bit]
    [ 0.412305] pci 0000:00:1b.0: >PME# supported from D0 D3hot D3cold
    [ 0.412329] pci 0000:00:1c.0: >[8086:1e10] type 01 class 0x060400
    [ 0.412408] pci 0000:00:1c.0: >PME# supported from D0 D3hot D3cold
    [ 0.412433] pci 0000:00:1c.1: >[8086:1e12] type 01 class 0x060400
    [ 0.412512] pci 0000:00:1c.1: >PME# supported from D0 D3hot D3cold
    [ 0.412546] pci 0000:00:1d.0: >[8086:1e26] type 00 class 0x0c0320
    [ 0.412788] pci 0000:00:1d.0: >reg 10: [mem 0xd3a18000-0xd3a183ff]
    [ 0.414203] pci 0000:00:1d.0: >PME# supported from D0 D3hot D3cold
    [ 0.414230] pci 0000:00:1f.0: >[8086:1e59] type 00 class 0x060100
    [ 0.414353] pci 0000:00:1f.2: >[8086:1e03] type 00 class 0x010601
    [ 0.414371] pci 0000:00:1f.2: >reg 10: [io 0x4088-0x408f]
    [ 0.414379] pci 0000:00:1f.2: >reg 14: [io 0x4094-0x4097]
    [ 0.414387] pci 0000:00:1f.2: >reg 18: [io 0x4080-0x4087]
    [ 0.414396] pci 0000:00:1f.2: >reg 1c: [io 0x4090-0x4093]
    [ 0.414404] pci 0000:00:1f.2: >reg 20: [io 0x4060-0x407f]
    [ 0.414412] pci 0000:00:1f.2: >reg 24: [mem 0xd3a17000-0xd3a177ff]
    [ 0.414457] pci 0000:00:1f.2: >PME# supported from D3hot
    [ 0.414475] pci 0000:00:1f.3: >[8086:1e22] type 00 class 0x0c0500
    [ 0.414491] pci 0000:00:1f.3: >reg 10: [mem 0xd3a15000-0xd3a150ff 64bit]
    [ 0.414512] pci 0000:00:1f.3: >reg 20: [io 0x4040-0x405f]
    [ 0.414568] pci 0000:01:00.0: >[10de:0de9] type 00 class 0x030000
    [ 0.414578] pci 0000:01:00.0: >reg 10: [mem 0xd2000000-0xd2ffffff]
    [ 0.414589] pci 0000:01:00.0: >reg 14: [mem 0xc0000000-0xcfffffff 64bit pref]
    [ 0.414600] pci 0000:01:00.0: >reg 1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
    [ 0.414607] pci 0000:01:00.0: >reg 24: [io 0x3000-0x307f]
    [ 0.414615] pci 0000:01:00.0: >reg 30: [mem 0xfff80000-0xffffffff pref]
    [ 0.419807] pci 0000:00:01.0: >PCI bridge to [bus 01-01]
    [ 0.419812] pci 0000:00:01.0: > bridge window [io 0x3000-0x3fff]
    [ 0.419816] pci 0000:00:01.0: > bridge window [mem 0xd2000000-0xd30fffff]
    [ 0.419834] pci 0000:00:01.0: > bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.419945] pci 0000:02:00.0: >[1969:1090] type 00 class 0x020000
    [ 0.420065] pci 0000:02:00.0: >reg 10: [mem 0xd3900000-0xd393ffff 64bit]
    [ 0.420115] pci 0000:02:00.0: >reg 18: [io 0x2000-0x207f]
    [ 0.420574] pci 0000:02:00.0: >PME# supported from D0 D1 D2 D3hot D3cold
    [ 0.426507] pci 0000:00:1c.0: >PCI bridge to [bus 02-02]
    [ 0.426512] pci 0000:00:1c.0: > bridge window [io 0x2000-0x2fff]
    [ 0.426516] pci 0000:00:1c.0: > bridge window [mem 0xd3900000-0xd39fffff]
    [ 0.426588] pci 0000:03:00.0: >[168c:002b] type 00 class 0x028000
    [ 0.426615] pci 0000:03:00.0: >reg 10: [mem 0xd3800000-0xd380ffff 64bit]
    [ 0.426744] pci 0000:03:00.0: >supports D1
    [ 0.426746] pci 0000:03:00.0: >PME# supported from D0 D1 D3hot
    [ 0.433127] pci 0000:00:1c.1: >PCI bridge to [bus 03-03]
    [ 0.433150] pci 0000:00:1c.1: > bridge window [mem 0xd3800000-0xd38fffff]
    [ 0.433170] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
    [ 0.433258] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP01._PRT]
    [ 0.433280] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.RP02._PRT]
    [ 0.433313] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEG0._PRT]
    [ 0.433378] \_SB_.PCI0:_OSC invalid UUID
    [ 0.433379] _OSC request data:1 1f 1f
    [ 0.433382] pci0000:00: >Requesting ACPI _OSC control (0x1d)
    [ 0.433416] \_SB_.PCI0:_OSC invalid UUID
    [ 0.433417] _OSC request data:1 0 1d
    [ 0.433420] pci0000:00: >ACPI _OSC request failed (AE_ERROR), returned control mask: 0x1d
    [ 0.433421] ACPI _OSC control for PCIe not granted, disabling ASPM
    [ 0.435631] ACPI: PCI Interrupt Link [LNKA] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.435669] ACPI: PCI Interrupt Link [LNKB] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.435705] ACPI: PCI Interrupt Link [LNKC] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.435740] ACPI: PCI Interrupt Link [LNKD] (IRQs 1 3 4 5 6 *10 11 12 14 15)
    [ 0.435774] ACPI: PCI Interrupt Link [LNKE] (IRQs 1 3 4 5 6 10 11 12 14 15) *0, disabled.
    [ 0.435809] ACPI: PCI Interrupt Link [LNKF] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    [ 0.435844] ACPI: PCI Interrupt Link [LNKG] (IRQs 1 3 4 5 6 10 11 12 14 15) *7
    [ 0.435879] ACPI: PCI Interrupt Link [LNKH] (IRQs 1 3 4 5 6 10 *11 12 14 15)
    [ 0.435945] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
    [ 0.435951] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=none,locks=none
    [ 0.435952] vgaarb: loaded
    [ 0.435953] vgaarb: bridge control possible 0000:01:00.0
    [ 0.435954] vgaarb: no bridge control possible 0000:00:02.0
    [ 0.435977] PCI: Using ACPI for IRQ routing
    [ 0.437526] PCI: pci_cache_line_size set to 64 bytes
    [ 0.437598] e820: reserve RAM buffer [mem 0x0009d800-0x0009ffff]
    [ 0.437599] e820: reserve RAM buffer [mem 0x40004000-0x43ffffff]
    [ 0.437600] e820: reserve RAM buffer [mem 0xbaabf000-0xbbffffff]
    [ 0.437602] e820: reserve RAM buffer [mem 0xbb000000-0xbbffffff]
    [ 0.437603] e820: reserve RAM buffer [mem 0x13f600000-0x13fffffff]
    [ 0.437671] NetLabel: Initializing
    [ 0.437672] NetLabel: domain hash size = 128
    [ 0.437673] NetLabel: protocols = UNLABELED CIPSOv4
    [ 0.437681] NetLabel: unlabeled traffic allowed by default
    [ 0.437696] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
    [ 0.437700] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
    [ 0.439709] Switching to clocksource hpet
    [ 0.443743] pnp: PnP ACPI init
    [ 0.443758] ACPI: bus type pnp registered
    [ 0.444001] pnp 00:00: >[bus 00-3e]
    [ 0.444004] pnp 00:00: >[io 0x0000-0x0cf7 window]
    [ 0.444005] pnp 00:00: >[io 0x0cf8-0x0cff]
    [ 0.444007] pnp 00:00: >[io 0x0d00-0xffff window]
    [ 0.444008] pnp 00:00: >[mem 0x000a0000-0x000bffff window]
    [ 0.444010] pnp 00:00: >[mem 0x000c0000-0x000c3fff window]
    [ 0.444011] pnp 00:00: >[mem 0x000c4000-0x000c7fff window]
    [ 0.444012] pnp 00:00: >[mem 0x000c8000-0x000cbfff window]
    [ 0.444013] pnp 00:00: >[mem 0x000cc000-0x000cffff window]
    [ 0.444015] pnp 00:00: >[mem 0x000d0000-0x000d3fff window]
    [ 0.444016] pnp 00:00: >[mem 0x000d4000-0x000d7fff window]
    [ 0.444017] pnp 00:00: >[mem 0x000d8000-0x000dbfff window]
    [ 0.444019] pnp 00:00: >[mem 0x000dc000-0x000dffff window]
    [ 0.444021] pnp 00:00: >[mem 0x000e0000-0x000e3fff window]
    [ 0.444023] pnp 00:00: >[mem 0x000e4000-0x000e7fff window]
    [ 0.444024] pnp 00:00: >[mem 0x000e8000-0x000ebfff window]
    [ 0.444025] pnp 00:00: >[mem 0x000ec000-0x000effff window]
    [ 0.444027] pnp 00:00: >[mem 0x000f0000-0x000fffff window]
    [ 0.444028] pnp 00:00: >[mem 0xbfa00000-0xfeafffff window]
    [ 0.444029] pnp 00:00: >[mem 0x00010000-0x0001ffff window]
    [ 0.444084] pnp 00:00: >Plug and Play ACPI device, IDs PNP0a08 PNP0a03 (active)
    [ 0.444094] pnp 00:01: >[io 0x0000-0x001f]
    [ 0.444095] pnp 00:01: >[io 0x0081-0x0091]
    [ 0.444096] pnp 00:01: >[io 0x0093-0x009f]
    [ 0.444097] pnp 00:01: >[io 0x00c0-0x00df]
    [ 0.444099] pnp 00:01: >[dma 4]
    [ 0.444115] pnp 00:01: >Plug and Play ACPI device, IDs PNP0200 (active)
    [ 0.444121] pnp 00:02: >[mem 0xff010000-0xffffffff]
    [ 0.444135] pnp 00:02: >Plug and Play ACPI device, IDs INT0800 (active)
    [ 0.444191] pnp 00:03: >[mem 0xfed00000-0xfed003ff]
    [ 0.444207] pnp 00:03: >Plug and Play ACPI device, IDs PNP0103 (active)
    [ 0.444214] pnp 00:04: >[io 0x00f0]
    [ 0.444222] pnp 00:04: >[irq 13]
    [ 0.444238] pnp 00:04: >Plug and Play ACPI device, IDs PNP0c04 (active)
    [ 0.444246] pnp 00:05: >[io 0x002e-0x002f]
    [ 0.444247] pnp 00:05: >[io 0x004e-0x004f]
    [ 0.444248] pnp 00:05: >[io 0x0061]
    [ 0.444249] pnp 00:05: >[io 0x0063]
    [ 0.444251] pnp 00:05: >[io 0x0065]
    [ 0.444252] pnp 00:05: >[io 0x0067]
    [ 0.444253] pnp 00:05: >[io 0x0070]
    [ 0.444254] pnp 00:05: >[io 0x0080]
    [ 0.444255] pnp 00:05: >[io 0x0092]
    [ 0.444256] pnp 00:05: >[io 0x00b2-0x00b3]
    [ 0.444257] pnp 00:05: >[io 0x0680-0x069f]
    [ 0.444259] pnp 00:05: >[io 0x1000-0x100f]
    [ 0.444260] pnp 00:05: >[io 0xffff]
    [ 0.444261] pnp 00:05: >[io 0xffff]
    [ 0.444262] pnp 00:05: >[io 0x0400-0x0453]
    [ 0.444263] pnp 00:05: >[io 0x0458-0x047f]
    [ 0.444264] pnp 00:05: >[io 0x0500-0x057f]
    [ 0.444266] pnp 00:05: >[io 0x164e-0x164f]
    [ 0.444267] pnp 00:05: >[io 0xfd60-0xfd63]
    [ 0.444300] system 00:05: >[io 0x0680-0x069f] has been reserved
    [ 0.444302] system 00:05: >[io 0x1000-0x100f] has been reserved
    [ 0.444303] system 00:05: >[io 0xffff] has been reserved
    [ 0.444305] system 00:05: >[io 0xffff] has been reserved
    [ 0.444306] system 00:05: >[io 0x0400-0x0453] has been reserved
    [ 0.444308] system 00:05: >[io 0x0458-0x047f] has been reserved
    [ 0.444309] system 00:05: >[io 0x0500-0x057f] has been reserved
    [ 0.444311] system 00:05: >[io 0x164e-0x164f] has been reserved
    [ 0.444312] system 00:05: >[io 0xfd60-0xfd63] has been reserved
    [ 0.444315] system 00:05: >Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.444322] pnp 00:06: >[io 0x0070-0x0077]
    [ 0.444327] pnp 00:06: >[irq 8]
    [ 0.444341] pnp 00:06: >Plug and Play ACPI device, IDs PNP0b00 (active)
    [ 0.444360] pnp 00:07: >[io 0x0454-0x0457]
    [ 0.444385] system 00:07: >[io 0x0454-0x0457] has been reserved
    [ 0.444387] system 00:07: >Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
    [ 0.444394] pnp 00:08: >[io 0x0060]
    [ 0.444396] pnp 00:08: >[io 0x0064]
    [ 0.444400] pnp 00:08: >[irq 1]
    [ 0.444416] pnp 00:08: >Plug and Play ACPI device, IDs PNP0303 (active)
    [ 0.444460] pnp 00:09: >[irq 12]
    [ 0.444479] pnp 00:09: >Plug and Play ACPI device, IDs ETD0613 ETD0001 PNP0f13 (active)
    [ 0.503108] pnp 00:0a: >[mem 0xfed1c000-0xfed1ffff]
    [ 0.503110] pnp 00:0a: >[mem 0xfed10000-0xfed17fff]
    [ 0.503111] pnp 00:0a: >[mem 0xfed18000-0xfed18fff]
    [ 0.503113] pnp 00:0a: >[mem 0xfed19000-0xfed19fff]
    [ 0.503114] pnp 00:0a: >[mem 0xf0000000-0xf3ffffff]
    [ 0.503115] pnp 00:0a: >[mem 0xfed20000-0xfed3ffff]
    [ 0.503116] pnp 00:0a: >[mem 0xfed90000-0xfed93fff]
    [ 0.503117] pnp 00:0a: >[mem 0xff000000-0xff000fff]
    [ 0.503119] pnp 00:0a: >[mem 0xff010000-0xffffffff]
    [ 0.503120] pnp 00:0a: >[mem 0xfee00000-0xfeefffff]
    [ 0.503121] pnp 00:0a: >[mem 0xbfa00000-0xbfa00fff]
    [ 0.503153] system 00:0a: >[mem 0xfed1c000-0xfed1ffff] has been reserved
    [ 0.503154] system 00:0a: >[mem 0xfed10000-0xfed17fff] has been reserved
    [ 0.503156] system 00:0a: >[mem 0xfed18000-0xfed18fff] has been reserved
    [ 0.503159] system 00:0a: >[mem 0xfed19000-0xfed19fff] has been reserved
    [ 0.503161] system 00:0a: >[mem 0xf0000000-0xf3ffffff] has been reserved
    [ 0.503162] system 00:0a: >[mem 0xfed20000-0xfed3ffff] has been reserved
    [ 0.503164] system 00:0a: >[mem 0xfed90000-0xfed93fff] has been reserved
    [ 0.503165] system 00:0a: >[mem 0xff000000-0xff000fff] has been reserved
    [ 0.503167] system 00:0a: >[mem 0xff010000-0xffffffff] could not be reserved
    [ 0.503169] system 00:0a: >[mem 0xfee00000-0xfeefffff] could not be reserved
    [ 0.503170] system 00:0a: >[mem 0xbfa00000-0xbfa00fff] has been reserved
    [ 0.503173] system 00:0a: >Plug and Play ACPI device, IDs PNP0c02 (active)
    [ 0.503426] pnp 00:0b: >[mem 0x20000000-0x201fffff]
    [ 0.503428] pnp 00:0b: >[mem 0x40004000-0x40004fff]
    [ 0.503467] system 00:0b: >[mem 0x20000000-0x201fffff] has been reserved
    [ 0.503469] system 00:0b: >[mem 0x40004000-0x40004fff] has been reserved
    [ 0.503471] system 00:0b: >Plug and Play ACPI device, IDs PNP0c01 (active)
    [ 0.503484] pnp: PnP ACPI: found 12 devices
    [ 0.503485] ACPI: ACPI bus type pnp unregistered
    [ 0.509719] pci 0000:01:00.0: >no compatible bridge window for [mem 0xfff80000-0xffffffff pref]
    [ 0.509749] pci 0000:01:00.0: >BAR 6: assigned [mem 0xd3000000-0xd307ffff pref]
    [ 0.509751] pci 0000:00:01.0: >PCI bridge to [bus 01-01]
    [ 0.509753] pci 0000:00:01.0: > bridge window [io 0x3000-0x3fff]
    [ 0.509756] pci 0000:00:01.0: > bridge window [mem 0xd2000000-0xd30fffff]
    [ 0.509758] pci 0000:00:01.0: > bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.509761] pci 0000:00:1c.0: >PCI bridge to [bus 02-02]
    [ 0.509764] pci 0000:00:1c.0: > bridge window [io 0x2000-0x2fff]
    [ 0.509769] pci 0000:00:1c.0: > bridge window [mem 0xd3900000-0xd39fffff]
    [ 0.509778] pci 0000:00:1c.1: >PCI bridge to [bus 03-03]
    [ 0.509783] pci 0000:00:1c.1: > bridge window [mem 0xd3800000-0xd38fffff]
    [ 0.509815] pci_bus 0000:00: >resource 4 [io 0x0000-0x0cf7]
    [ 0.509816] pci_bus 0000:00: >resource 5 [io 0x0d00-0xffff]
    [ 0.509818] pci_bus 0000:00: >resource 6 [mem 0x000a0000-0x000bffff]
    [ 0.509819] pci_bus 0000:00: >resource 7 [mem 0xbfa00000-0xfeafffff]
    [ 0.509821] pci_bus 0000:01: >resource 0 [io 0x3000-0x3fff]
    [ 0.509822] pci_bus 0000:01: >resource 1 [mem 0xd2000000-0xd30fffff]
    [ 0.509824] pci_bus 0000:01: >resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
    [ 0.509825] pci_bus 0000:02: >resource 0 [io 0x2000-0x2fff]
    [ 0.509827] pci_bus 0000:02: >resource 1 [mem 0xd3900000-0xd39fffff]
    [ 0.509828] pci_bus 0000:03: >resource 1 [mem 0xd3800000-0xd38fffff]
    [ 0.509849] NET: Registered protocol family 2
    [ 0.509940] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
    [ 0.510462] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
    [ 0.511934] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
    [ 0.512121] TCP: Hash tables configured (established 524288 bind 65536)
    [ 0.512123] TCP: reno registered
    [ 0.512131] UDP hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.512148] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
    [ 0.512215] NET: Registered protocol family 1
    [ 0.512227] pci 0000:00:02.0: >Boot video device
    [ 0.539686] PCI: CLS 64 bytes, default 64
    [ 0.539720] Unpacking initramfs...
    [ 0.587463] Freeing initrd memory: 3004k freed
    [ 0.587782] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
    [ 0.587786] software IO TLB [mem 0xb6ab9000-0xbaab8fff] (64MB) mapped at [ffff8800b6ab9000-ffff8800baab8fff]
    [ 0.587808] Simple Boot Flag at 0x44 set to 0x1
    [ 0.588188] audit: initializing netlink socket (disabled)
    [ 0.588201] type=2000 audit(1351239412.473:1): initialized
    [ 0.598216] HugeTLB registered 2 MB page size, pre-allocated 0 pages
    [ 0.599469] VFS: Disk quotas dquot_6.5.2
    [ 0.599501] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
    [ 0.599601] msgmni has been set to 7715
    [ 0.599760] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
    [ 0.599785] io scheduler noop registered
    [ 0.599786] io scheduler deadline registered
    [ 0.599824] io scheduler cfq registered (default)
    [ 0.599901] pcieport 0000:00:01.0: >irq 40 for MSI/MSI-X
    [ 0.600058] vesafb: mode is 1366x768x32, linelength=5504, pages=0
    [ 0.600059] vesafb: scrolling: redraw
    [ 0.600061] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
    [ 0.600464] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005100000, using 4160k, total 4160k
    [ 0.667429] Console: switching to colour frame buffer device 170x48
    [ 0.734140] fb0: VESA VGA frame buffer device
    [ 0.734147] intel_idle: does not run on family 6 model 58
    [ 0.734170] GHES: HEST is not enabled!
    [ 0.734209] Serial: 8250/16550 driver, 4 ports, IRQ sharing disabled
    [ 0.734579] Linux agpgart interface v0.103
    [ 0.734634] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:MSS4] at 0x60,0x64 irq 1,12
    [ 0.748568] serio: i8042 KBD port at 0x60,0x64 irq 1
    [ 0.748578] serio: i8042 AUX port at 0x60,0x64 irq 12
    [ 0.748663] mousedev: PS/2 mouse device common for all mice
    [ 0.748692] rtc_cmos 00:06: >RTC can wake from S4
    [ 0.748829] rtc_cmos 00:06: >rtc core: registered rtc_cmos as rtc0
    [ 0.748861] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
    [ 0.748868] cpuidle: using governor ladder
    [ 0.748870] cpuidle: using governor menu
    [ 0.748966] drop_monitor: Initializing network drop monitor service
    [ 0.749023] TCP: cubic registered
    [ 0.749094] NET: Registered protocol family 10
    [ 0.749220] NET: Registered protocol family 17
    [ 0.749227] Key type dns_resolver registered
    [ 0.749314] PM: Checking hibernation image partition /dev/disk/by-uuid/007e49dc-18dc-442a-89c8-ab927e6a17ff
    [ 0.762323] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input0
    [ 0.775385] PM: Hibernation image not present or could not be loaded.
    [ 0.775393] registered taskstats version 1
    [ 0.775839] rtc_cmos 00:06: >setting system clock to 2012-10-26 08:16:53 UTC (1351239413)
    [ 0.776874] Freeing unused kernel memory: 760k freed
    [ 0.776957] Write protecting the kernel read-only data: 8192k
    [ 0.780137] Freeing unused kernel memory: 1472k freed
    [ 0.781606] Freeing unused kernel memory: 608k freed
    [ 0.787240] systemd-udevd[47]: starting version 194
    [ 0.813888] ACPI: bus type usb registered
    [ 0.813910] usbcore: registered new interface driver usbfs
    [ 0.813918] usbcore: registered new interface driver hub
    [ 0.813955] usbcore: registered new device driver usb
    [ 0.815211] SCSI subsystem initialized
    [ 0.816356] libata version 3.00 loaded.
    [ 0.816442] xhci_hcd 0000:00:14.0: >setting latency timer to 64
    [ 0.816447] xhci_hcd 0000:00:14.0: >xHCI Host Controller
    [ 0.816456] xhci_hcd 0000:00:14.0: >new USB bus registered, assigned bus number 1
    [ 0.816560] xhci_hcd 0000:00:14.0: >cache line size of 64 is not supported
    [ 0.816578] xhci_hcd 0000:00:14.0: >irq 21, io mem 0xd3a00000
    [ 0.816632] xhci_hcd 0000:00:14.0: >irq 41 for MSI/MSI-X
    [ 0.816791] xHCI xhci_add_endpoint called for root hub
    [ 0.816793] xHCI xhci_check_bandwidth called for root hub
    [ 0.816874] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
    [ 0.816904] hub 1-0:1.0: >USB hub found
    [ 0.816914] hub 1-0:1.0: >4 ports detected
    [ 0.817280] xhci_hcd 0000:00:14.0: >xHCI Host Controller
    [ 0.817286] xhci_hcd 0000:00:14.0: >new USB bus registered, assigned bus number 2
    [ 0.817469] xHCI xhci_add_endpoint called for root hub
    [ 0.817471] xHCI xhci_check_bandwidth called for root hub
    [ 0.817493] hub 2-0:1.0: >USB hub found
    [ 0.817500] hub 2-0:1.0: >4 ports detected
    [ 0.822755] ehci_hcd 0000:00:1a.0: >setting latency timer to 64
    [ 0.822761] ehci_hcd 0000:00:1a.0: >EHCI Host Controller
    [ 0.822768] ehci_hcd 0000:00:1a.0: >new USB bus registered, assigned bus number 3
    [ 0.822798] ehci_hcd 0000:00:1a.0: >debug port 2
    [ 0.826690] ehci_hcd 0000:00:1a.0: >cache line size of 64 is not supported
    [ 0.826709] ehci_hcd 0000:00:1a.0: >irq 16, io mem 0xd3a19000
    [ 0.835913] ehci_hcd 0000:00:1a.0: >USB 2.0 started, EHCI 1.00
    [ 0.836049] hub 3-0:1.0: >USB hub found
    [ 0.836052] hub 3-0:1.0: >2 ports detected
    [ 0.836166] ehci_hcd 0000:00:1d.0: >setting latency timer to 64
    [ 0.836170] ehci_hcd 0000:00:1d.0: >EHCI Host Controller
    [ 0.836177] ehci_hcd 0000:00:1d.0: >new USB bus registered, assigned bus number 4
    [ 0.836203] ehci_hcd 0000:00:1d.0: >debug port 2
    [ 0.840097] ehci_hcd 0000:00:1d.0: >cache line size of 64 is not supported
    [ 0.840110] ehci_hcd 0000:00:1d.0: >irq 23, io mem 0xd3a18000
    [ 0.849231] ehci_hcd 0000:00:1d.0: >USB 2.0 started, EHCI 1.00
    [ 0.849353] hub 4-0:1.0: >USB hub found
    [ 0.849356] hub 4-0:1.0: >2 ports detected
    [ 0.849406] ahci 0000:00:1f.2: >version 3.0
    [ 0.849473] ahci 0000:00:1f.2: >irq 42 for MSI/MSI-X
    [ 0.849524] ahci: SSS flag set, parallel bus scan disabled
    [ 0.862579] ahci 0000:00:1f.2: >AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x5 impl SATA mode
    [ 0.862582] ahci 0000:00:1f.2: >flags: 64bit ncq stag pm led clo pio slum part ems apst
    [ 0.862586] ahci 0000:00:1f.2: >setting latency timer to 64
    [ 0.869649] scsi0 : ahci
    [ 0.869722] scsi1 : ahci
    [ 0.869780] scsi2 : ahci
    [ 0.869834] scsi3 : ahci
    [ 0.869889] scsi4 : ahci
    [ 0.869943] scsi5 : ahci
    [ 0.870010] ata1: SATA max UDMA/133 abar m2048@0xd3a17000 port 0xd3a17100 irq 42
    [ 0.870011] ata2: DUMMY
    [ 0.870014] ata3: SATA max UDMA/133 abar m2048@0xd3a17000 port 0xd3a17200 irq 42
    [ 0.870015] ata4: DUMMY
    [ 0.870016] ata5: DUMMY
    [ 0.870016] ata6: DUMMY
    [ 1.142189] usb 3-1: >new high-speed USB device number 2 using ehci_hcd
    [ 1.188798] ata1: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
    [ 1.242364] ata1.00: ATA-8: ST9500325AS, 0011LVM1, max UDMA/100
    [ 1.242367] ata1.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 31/32)
    [ 1.244122] ata1.00: configured for UDMA/100
    [ 1.244233] scsi 0:0:0:0: >Direct-Access ATA ST9500325AS 0011 PQ: 0 ANSI: 5
    [ 1.265963] hub 3-1:1.0: >USB hub found
    [ 1.266053] hub 3-1:1.0: >6 ports detected
    [ 1.371886] usb 4-1: >new high-speed USB device number 2 using ehci_hcd
    [ 1.495531] hub 4-1:1.0: >USB hub found
    [ 1.495628] hub 4-1:1.0: >6 ports detected
    [ 1.561668] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
    [ 1.561806] usb 3-1.3: >new full-speed USB device number 3 using ehci_hcd
    [ 1.566490] ata3.00: ATAPI: PLDS DVD-RW DS8A8SH, KL31, max UDMA/100
    [ 1.567395] ata3.00: configured for UDMA/100
    [ 1.569763] scsi 2:0:0:0: >CD-ROM PLDS DVD-RW DS8A8SH KL31 PQ: 0 ANSI: 5
    [ 1.572713] sd 0:0:0:0: >[sda] 976773168 512-byte logical blocks: (500 GB/465 GiB)
    [ 1.572771] sd 0:0:0:0: >[sda] Write Protect is off
    [ 1.572774] sd 0:0:0:0: >[sda] Mode Sense: 00 3a 00 00
    [ 1.572806] sd 0:0:0:0: >[sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
    [ 1.579557] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
    [ 1.579561] cdrom: Uniform CD-ROM driver Revision: 3.20
    [ 1.579683] sr 2:0:0:0: >Attached scsi CD-ROM sr0
    [ 1.588282] Refined TSC clocksource calibration: 2494.333 MHz.
    [ 1.588300] Switching to clocksource tsc
    [ 1.646147] sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 sda8 sda9 >
    [ 1.646510] sd 0:0:0:0: >[sda] Attached SCSI disk
    [ 1.711612] usb 3-1.4: >new high-speed USB device number 4 using ehci_hcd
    [ 1.861415] usb 4-1.6: >new high-speed USB device number 3 using ehci_hcd
    [ 3.905748] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
    [ 6.297029] systemd-udevd[165]: starting version 194
    [ 6.879435] ACPI: Requesting acpi_cpufreq
    [ 6.901533] Monitor-Mwait will be used to enter C-1 state
    [ 6.901538] Monitor-Mwait will be used to enter C-2 state
    [ 6.901542] ACPI: acpi_idle registered with cpuidle
    [ 7.242423] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0C:00/input/input1
    [ 7.242428] ACPI: Power Button [PWRB]
    [ 7.243055] ACPI: AC Adapter [ACAD] (on-line)
    [ 7.243224] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:02/PNP0C0E:00/input/input2
    [ 7.243227] ACPI: Sleep Button [SLPB]
    [ 7.243264] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input3
    [ 7.243282] ACPI: Lid Switch [LID0]
    [ 7.243312] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input4
    [ 7.243314] ACPI: Power Button [PWRF]
    [ 7.250773] thermal LNXTHERM:00: >registered as thermal_zone0
    [ 7.250778] ACPI: Thermal Zone [TZ00] (54 C)
    [ 7.450794] ACPI: Battery Slot [BAT1] (battery present)
    [ 7.582945] microcode: CPU0 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612108] microcode: CPU1 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612381] microcode: CPU2 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612637] microcode: CPU3 sig=0x306a9, pf=0x10, revision=0x12
    [ 7.612948] microcode: Microcode Update Driver: v2.00 <[email protected]>, Peter Oruba
    [ 7.634516] input: Ideapad extra buttons as /devices/platform/ideapad/input/input5
    [ 7.648434] Compat-wireless backport release: compat-wireless-v3.6-rc6-1-npc
    [ 7.648436] Backport based on linux-stable.git v3.6-rc6
    [ 7.648436] compat.git: linux-stable.git
    [ 7.734886] ACPI Warning: 0x0000000000000428-0x000000000000042f SystemIO conflicts with Region \PMIO 1 (20120320/utaddress-251)
    [ 7.734890] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.734893] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \GPIO 1 (20120320/utaddress-251)
    [ 7.734896] ACPI Warning: 0x0000000000000500-0x000000000000053f SystemIO conflicts with Region \_SB_.PCI0.PEG0.PEGP.GPIO 2 (20120320/utaddress-251)
    [ 7.734898] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 7.734899] lpc_ich: Resource conflict(s) found affecting gpio_ich
    [ 7.737294] mei 0000:00:16.0: >setting latency timer to 64
    [ 7.737362] mei 0000:00:16.0: >irq 43 for MSI/MSI-X
    [ 7.743686] mei 0000:00:16.0: >wd: failed to find the client
    [ 7.757142] agpgart-intel 0000:00:00.0: >Intel Ivybridge Chipset
    [ 7.757223] agpgart-intel 0000:00:00.0: >detected gtt size: 2097152K total, 262144K mappable
    [ 7.758105] agpgart-intel 0000:00:00.0: >detected 65536K stolen memory
    [ 7.758213] agpgart-intel 0000:00:00.0: >AGP aperture is 256M @ 0xe0000000
    [ 7.972440] Qualcomm Atheros(R) AR813x/AR815x/AR816x PCI-E Ethernet Network Driver
    [ 7.972474] alx 0000:02:00.0: >DMA to 64-BIT addresses
    [ 7.972555] alx 0000:02:00.0: >(unregistered net_device): HW Flags = 0x15
    [ 7.973019] alx 0000:02:00.0: >(unregistered net_device): reset PHY, pws = 1, az = 0, ptp = 0
    [ 7.974361] alx 0000:02:00.0: >(unregistered net_device): speed = 0x2f, autoneg = 1
    [ 7.975707] alx 0000:02:00.0: >irq 44 for MSI/MSI-X
    [ 7.975824] alx: Atheros Gigabit Network Connection
    [ 7.977650] snd_hda_intel 0000:00:1b.0: >irq 45 for MSI/MSI-X
    [ 8.008080] [drm] Initialized drm 1.1.0 20060810
    [ 8.066122] iTCO_vendor_support: vendor-support=0
    [ 8.075437] rts5139: module is from the staging directory, the quality is unknown, you have been warned.
    [ 8.078855] scsi6 : SCSI emulation for RTS5139 USB card reader
    [ 8.078971] scsi 6:0:0:0: >Direct-Access Generic- xD/SD/M.S. 1.00 PQ: 0 ANSI: 0 CCS
    [ 8.080194] sd 6:0:0:0: >[sdb] Attached SCSI removable disk
    [ 8.080898] usbcore: registered new interface driver rts5139
    [ 8.166428] cfg80211: Calling CRDA to update world regulatory domain
    [ 8.175247] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.07
    [ 8.175288] iTCO_wdt: Found a Panther Point TCO device (Version=2, TCOBASE=0x0460)
    [ 8.175343] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
    [ 8.188460] Linux media interface: v0.10
    [ 8.307532] Linux video capture interface: v2.00
    [ 8.337832] uvcvideo: Found UVC 1.00 device Lenovo EasyCamera (04f2:b2e2)
    [ 8.339661] input: Lenovo EasyCamera as /devices/pci0000:00/0000:00:1d.0/usb4/4-1/4-1.6/4-1.6:1.0/input/input6
    [ 8.339707] usbcore: registered new interface driver uvcvideo
    [ 8.339708] USB Video Class driver (1.1.1)
    [ 8.477762] Bluetooth: Core ver 2.16
    [ 8.477776] NET: Registered protocol family 31
    [ 8.477777] Bluetooth: HCI device and connection manager initialized
    [ 8.477779] Bluetooth: HCI socket layer initialized
    [ 8.477780] Bluetooth: L2CAP socket layer initialized
    [ 8.477784] Bluetooth: SCO socket layer initialized
    [ 8.491954] usbcore: registered new interface driver btusb
    [ 8.639211] hda_codec: CX20590: BIOS auto-probing.
    [ 8.640020] input: HDA Digital PCBeep as /devices/pci0000:00/0000:00:1b.0/input/input7
    [ 8.672690] psmouse serio1: >elantech: assuming hardware version 3 (with firmware version 0x450f02)
    [ 8.697264] psmouse serio1: >elantech: Synaptics capabilities query result 0x78, 0x17, 0x0b.
    [ 8.709692] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input8
    [ 8.709766] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input9
    [ 8.709813] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input10
    [ 8.710242] ACPI Warning: 0x0000000000004040-0x000000000000405f SystemIO conflicts with Region \_SB_.PCI0.SBUS.SMBI 1 (20120320/utaddress-251)
    [ 8.710247] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
    [ 8.710479] checking generic (e0000000 410000) vs hw (e0000000 10000000)
    [ 8.710481] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
    [ 8.710502] Console: switching to colour dummy device 80x25
    [ 8.710580] i915 0000:00:02.0: >setting latency timer to 64
    [ 8.744483] i915 0000:00:02.0: >irq 46 for MSI/MSI-X
    [ 8.744490] [drm] Supports vblank timestamp caching Rev 1 (10.10.2010).
    [ 8.744491] [drm] Driver supports precise vblank timestamp query.
    [ 8.745029] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=none:owns=io+mem
    [ 8.745030] vgaarb: transferring owner from PCI:0000:00:02.0 to PCI:0000:01:00.0
    [ 8.825185] input: ETPS/2 Elantech Touchpad as /devices/platform/i8042/serio1/input/input11
    [ 9.132101] nvidia: disagrees about version of symbol module_layout
    [ 9.243757] usbcore: registered new interface driver ath3k
    [ 9.265032] usb 3-1.3: >USB disconnect, device number 3
    [ 9.265920] systemd-udevd[329]: failed to execute '/opt/VirtualBox/VBoxCreateUSBNode.sh' '/opt/VirtualBox/VBoxCreateUSBNode.sh --remove 189 258': No such file or directory
    [ 9.273016] [drm] Enabling RC6 states: RC6 on, RC6p on, RC6pp off
    [ 9.400084] ath: EEPROM regdomain: 0x65
    [ 9.400085] ath: EEPROM indicates we should expect a direct regpair map
    [ 9.400087] ath: Country alpha2 being used: 00
    [ 9.400088] ath: Regpair used: 0x65
    [ 9.421060] fbcon: inteldrmfb (fb0) is primary device
    [ 9.487637] ieee80211 phy0: >Selected rate control algorithm 'ath9k_rate_control'
    [ 9.487781] Registered led device: ath9k-phy0
    [ 9.487785] ieee80211 phy0: >Atheros AR9285 Rev:2 mem=0xffffc900050e0000, irq=17
    [ 9.552614] kvm: disabled by bios
    [ 9.556577] kvm: disabled by bios
    [ 9.601270] Console: switching to colour frame buffer device 170x48
    [ 9.602975] fb0: inteldrmfb frame buffer device
    [ 9.602976] drm: registered panic notifier
    [ 9.603101] [Firmware Bug]: ACPI(PEGP) defines _DOD but not _DOS
    [ 9.605310] acpi device:38: >registered as cooling_device4
    [ 9.605524] ACPI: Video Device [PEGP] (multi-head: yes rom: yes post: no)
    [ 9.605938] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/device:36/LNXVIDEO:00/input/input12
    [ 9.611483] acpi device:44: >registered as cooling_device5
    [ 9.611810] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
    [ 9.611971] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:01/input/input13
    [ 9.612048] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
    [ 9.960891] usb 3-1.3: >new full-speed USB device number 5 using ehci_hcd
    [ 10.048160] systemd-udevd[343]: failed to execute '/opt/VirtualBox/VBoxCreateUSBNode.sh' '/opt/VirtualBox/VBoxCreateUSBNode.sh 189 260 e0': No such file or directory
    [ 11.761061] EXT4-fs (sda7): re-mounted. Opts: data=ordered
    [ 11.956330] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 12.074341] EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: data=ordered
    [ 12.321742] fuse init (API version 7.19)
    [ 12.703502] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.770085] EXT4-fs (sda3): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.840886] EXT4-fs (sda9): mounted filesystem with ordered data mode. Opts: (null)
    [ 12.906640] Adding 16016768k swap on /dev/sda6. Priority:-1 extents:1 across:16016768k
    I'm sorry for my English.
    Last edited by Kot Dymok (2012-10-26 08:29:53)

    I don't see any messages of loading nvidia ("NVRM") or nouveau. Are you sure that you have installed a module that is compatible with your current kernel?
    You'll also need to patch your ACPI handle or the nouveau/nvidia driver will refuse to load at all, see https://github.com/Bumblebee-Project/bbswitch/issues/2 (this is specific to some machines, your Lenovo G580 machine included)
    Last edited by Lekensteyn (2012-10-29 14:52:55)

  • Problem with installing nvidia drivers, like to keep existing kernel *

    Hi All
    I download and install the NVIDIA-Linux-x86-173.14.12-pkg1.run from the nvidia web site because when I try to download from pacman
    it said the following
    [rombel@marclinux ~]$ sudo pacman -S nvidia-173xx
    resolving dependencies...
    looking for inter-conflicts...
    :: nvidia-173xx-utils conflicts with libgl. Remove libgl? [Y/n] y
    Remove (1): libgl-7.2-1 
    Total Removed Size:   2.75 MB
    Targets (8): klibc-1.5.15-1  klibc-extras-2.5-2  klibc-udev-135-2  filesystem-2009.01-1  mkinitcpio-0.5.23-1  kernel26-2.6.28.5-1  nvidia-173xx-utils-173.14.12-1 
                 nvidia-173xx-173.14.12-3 
    Total Download Size:    27.97 MB
    Total Installed Size:   137.78 MB
    so you see it want to upgrade my kernel which I dont want. because my kile and k3b programs gives Segmentation fault when i try to start them.
    However after installing miro i start to get  Xlib: extension "GLX" missing on display ":0 error. See below a copy of my rc.conf, xorg, section of the /var/log/Xorg.0.log files  and error messages from running glxinfo and glxgears.
    Message from the /var/log/Xorg.0.log
    (II) Loading /usr/lib/xorg/modules/extensions//libglx.so
    dlopen: /usr/lib/xorg/modules/extensions//libglx.so: cannot open shared object file: No such file or directory
    (EE) Failed to load /usr/lib/xorg/modules/extensions//libglx.so
    (II) UnloadModule: "glx"
    (EE) Failed to load module "glx" (loader failed, 7)
    (II) LoadModule: "dbe"
    (EE) NVIDIA(0): Failed to initialize the GLX module; please check in your X
    (EE) NVIDIA(0): log file that the GLX module has been loaded in your X
    (EE) NVIDIA(0): server, and that the module is the NVIDIA GLX module. If
    (EE) NVIDIA(0): you continue to encounter problems, Please try
    (EE) NVIDIA(0): reinstalling the NVIDIA driver.
    (II) NVIDIA(0): NVIDIA GPU GeForce FX Go5200 (NV34) at PCI:1:0:0 (GPU-0)
    (--) NVIDIA(0): Memory: 32768 kBytes
    (--) NVIDIA(0): VideoBIOS: 04.34.20.42.c1
    [u]My xorg file[/u]
    Section "Module"
    Load "extmod"
    Load "glx"
    Load "dbe"
    # Load "record"
    Load "xtrap"
    Load "freetype"
    Load "synaptics"
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "SWcursor" # [<bool>]
    #Option "HWcursor" # [<bool>]
    #Option "NoAccel" # [<bool>]
    #Option "ShadowFB" # [<bool>]
    #Option "UseFBDev" # [<bool>]
    #Option "Rotate" # [<str>]
    #Option "VideoKey" # <i>
    #Option "FlatPanel" # [<bool>]
    #Option "FPDither" # [<bool>]
    #Option "CrtcNumber" # <i>
    #Option "FPScale" # [<bool>]
    #Option "FPTweak" # <i>
    #Option "DualHead" # [<bool>]
    Option "AllowGLXWithComposite" "True"
    #Driver "nv"
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NV34M [GeForce FX Go5200 64M]"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "NoLogo" "True"
    Option "RenderAccel" "True"
    Option "AddARGBGVisuals" "True"
    Option "AddARGBGLXVisuals" "True"
    Option "NvAGP" "3"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    Modes "1680x1050"
    EndSubSection
    EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    EndSection
    [rombel@marclinux ~]$ glxgears
    Xlib: extension "GLX" missing on display ":0.0".
    Error: couldn't get an RGB, Double-buffered visual
    [rombel@marclinux ~]$ glxinfo
    name of display: :0.0
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Error: couldn't find RGB GLX visual or fbconfig
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    Xlib: extension "GLX" missing on display ":0.0".
    3 GLXFBConfigs:
    visual x bf lv rg d st colorbuffer ax dp st accumbuffer ms cav
    id dep cl sp sz l ci b ro r g b a bf th cl r g b a ns b eat
    Segmentation fault
    My rc.conf file
    MOD_AUTOLOAD="yes"
    MOD_BLACKLIST=(intel_agp) #deprecated
    MODULES=(b44 mii ipw2100 ac97_bus snd-mixer-oss acpi-cpufreq snd-pcm-oss snd-page-alloc snd-pcm snd-timer snd autofs4 snd-ac97-codec snd-intel8x0 snd-intel8x0m soundcore nvidia )
    I have google and read some of the forums with machine of similar problems. ANY HELP PLEASE.
    Last edited by B (2009-02-16 20:53:47)

    Hi all
    I try to compile the package as you suggested but with no luck see the steps I did below:
    Note: in the PKBUILD file i change every instants of 2.6.28 to 2.6.25
    [rombel@marclinux ~]$ cd abs/
    [rombel@marclinux abs]$ ls
    nvidia-173xx
    [rombel@marclinux abs]$ cd nvidia-173xx/
    [rombel@marclinux nvidia-173xx]$ ls
    2.6.28.patch  NVIDIA_173.14.12_2.6.27.patch  PKGBUILD  nvidia.install
    [rombel@marclinux nvidia-173xx]$ nano PKGBUILD
    [rombel@marclinux nvidia-173xx]$ nano PKGBUILD
    This is the PKBUILD file
    # $Id: PKGBUILD 8436 2008-08-11 04:51:52Z tpowa $
    # Maintainer : Thomas Baechler <[email protected]>
    pkgname=nvidia-173xx
    pkgver=173.14.12
    _kernver='2.6.25-ARCH'
    pkgrel=3
    pkgdesc="NVIDIA legacy drivers for kernel26, 173xx branch"
    arch=('i686' 'x86_64')
    [ "$CARCH" = "i686"   ] && ARCH=x86
    [ "$CARCH" = "x86_64" ] && ARCH=x86_64
    url="http://www.nvidia.com/"
    depends=('kernel26>=2.6.25' 'kernel26<2.6.29' 'nvidia-173xx-utils')
    conflicts=('nvidia' 'nvidia-96xx' 'nvidia-71xx' 'nvidia-legacy')
    license=('custom')
    install=nvidia.install
    source=(http://us.download.nvidia.com/XFree86/Linux-$ARCH/${pkgver}/NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run
            NVIDIA_173.14.12_2.6.25.patch
        2.6.25.patch)
    md5sums=('76b8eba1b14fc273a1a4044705b0aa56'
             'cd4a68b5a88be6976b90cd0df6bfe89e'
             '460d52dc0a27d64f881cbacd1e7220b5')
    [ "$CARCH" = "x86_64" ] && md5sums=('8675e4ca65033b343c8c77b2ce82e71d'
                                        'cd4a68b5a88be6976b90cd0df6bfe89e'
                                        '460d52dc0a27d64f881cbacd1e7220b5')
    build()
      # Extract
      cd $startdir/src/
      sh NVIDIA-Linux-$ARCH-${pkgver}-pkg0.run --extract-only
      cd NVIDIA-Linux-$ARCH-${pkgver}-pkg0
      # Any extra patches are applied in here...
      patch -Np1 -i ../NVIDIA_173.14.12_2.6.27.patch || return 1
      patch -Np0 -i ../2.6.25.patch || return 1
      cd usr/src/nv/
      ln -s Makefile.kbuild Makefile
      make SYSSRC=/lib/modules/${_kernver}/build module || return 1
      # install kernel module
      mkdir -p $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
      install -m644 nvidia.ko $startdir/pkg/lib/modules/${_kernver}/kernel/drivers/video/
      sed -i -e "s/KERNEL_VERSION='.*'/KERNEL_VERSION='${_kernver}'/" $startdir/*.install
    [rombel@marclinux nvidia-173xx]$ makepkg -s
    ==> Making package: nvidia-173xx 173.14.12-3 i686 (Sun Feb 15 15:14:35 EST 2009)
    ==> Checking Runtime Dependencies...
    ==> Installing missing dependencies...
    Password:
    resolving dependencies...
    looking for inter-conflicts...
    Targets (1): nvidia-173xx-utils-173.14.12-1 
    Total Download Size:    0.00 MB
    Total Installed Size:   23.70 MB
    Proceed with installation? [Y/n] y
    checking package integrity...
    (1/1) checking for file conflicts                   [###################################################] 100%
    error: could not prepare transaction
    error: failed to commit transaction (conflicting files)
    nvidia-173xx-utils: /usr/bin/nvidia-bug-report.sh exists in filesystem
    nvidia-173xx-utils: /usr/bin/nvidia-settings exists in filesystem
    nvidia-173xx-utils: /usr/bin/nvidia-xconfig exists in filesystem
    nvidia-173xx-utils: /usr/lib/libGL.so.1 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libGL.so.173.14.12 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libGLcore.so.1 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libGLcore.so.173.14.12 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libXvMCNVIDIA.a exists in filesystem
    nvidia-173xx-utils: /usr/lib/libXvMCNVIDIA.so.173.14.12 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libXvMCNVIDIA_dynamic.so.1 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libnvidia-cfg.so.1 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libnvidia-cfg.so.173.14.12 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libnvidia-tls.so.1 exists in filesystem
    nvidia-173xx-utils: /usr/lib/libnvidia-tls.so.173.14.12 exists in filesystem
    nvidia-173xx-utils: /usr/lib/xorg/modules/drivers/nvidia_drv.so exists in filesystem
    nvidia-173xx-utils: /usr/lib/xorg/modules/extensions/libglx.so.173.14.12 exists in filesystem
    nvidia-173xx-utils: /usr/share/applications/nvidia-settings.desktop exists in filesystem
    Errors occurred, no packages were upgraded.
    ==> ERROR: Pacman failed to install missing dependencies.

  • Dual-Monitor wacom setup with nvidia proprietary driver

    Hello dear ArchLinux community. I'm new to this forum and very happy to join this great community.
    I'll cut right to the chase.
    I want to buy a Wacom Cintiq (tablet with integrated monitor) in the near future, and am therefore looking into issues I might have with the setup.
    The desired configuration would have the tablet as well as a 24" screen hooked up to my geforce gtx275 in dualhead mode, with the input from the tablet mapped to the screen area of the tablet.
    I've done a bit of testing for that matter with my old Wacom Bamboo and a second monitor.
    Mapping a tablets input to a screen is very simple IN THEORY.
    With the linuxwacom drivers you can map the tablet to one X screen (as displayed by xrandr).
    The problem is that nvidia uses Twinview for dualheaded systems, which presents X with only one big screen, rather that two individual ones.
    (mind you, this all worked like a charm with fglrx/intel)
    I tried switching to nouveau, but this doesn't work for two reasons:
    1.: Nouveau presents two individual screens to X when dualheaded, so I can use linuxwacom's MapToOuput.
    What happens then is that, as soon as I use the stylus, the mapping starts to shift rapidly between one screen and the whole area. I haven't figured out, what exactly does that, but it makes it impossible to do anything with the tablet
    2.: Nouveau, even with mesa, just has no 3d acceleration for my card. Since I do a lot of 3d work it just doesn't work for me.
    Three other possibilities would be
    1.: To try and disable Twinview/use something else. I have no idea if or how this works, though.
    2.: To restrict the mapping area of the tablet in some other way. Again, no idea how to do this.
    3.: To use two X sessions - one for either monitor. As far as I know this robs me of the ability to drag windows from one screen to another. Also, I don't know how Gnome3 would react to it AND I don't know how to properly configure it. PLEASE ADVISE
    A last resort would be to buy an ATI card along with the Tablet (after all, if I'm going to shell out $2000 for a tablet I might as well add $150 to make sure it works).
    With this I run into another problem, though, because Gnome3 and fglrx WON'T COOPERATE (please correct me if I'm wrong. I would LOVE to see a solution to these graphical glitches)
    The actual question to you, fellow Arch users, is which of these solutions - if any - I should go for, and how to best execute it.
    Any other suggestions would be great, too.
    Thank you very much in advance.
    Sincerely,
    Gabriel [liveag].

    You may not be SOL with TwinView. Do either of these links help?
    Linuxwacom HOWTO - (ctrl-f 'TwinView')
    HOWTO: Multimonitor

  • Can no longer run multiseat w/ 2 nvidia cards

    Hello,
    I've had a working multiseat configuration for a while now, though I haven't used it in about 3 months. I switched to this configuration a few days ago (by uncommenting lines in the Xservers file, like I always do). The problem is now I am getting this error in Xorg where the first seat that should start does not, instead it displays no video (and the monitor goes to sleep as if it wasn't connected but still powered on), while the second seat starts and runs normally. Here is the Xorg log with the errors toward the end:
    [ 11.413]
    X.Org X Server 1.12.3
    Release Date: 2012-07-09
    [ 11.413] X Protocol Version 11, Revision 0
    [ 11.413] Build Operating System: Linux 3.4.4-3-ARCH x86_64
    [ 11.413] Current Operating System: Linux teetor-arch 3.4.6-1-ARCH #1 SMP PREEMPT Fri Jul 20 08:21:26 CEST 2012 x86_64
    [ 11.413] Kernel command line: root=/dev/disk/by-uuid/24d47fe5-5483-4a0e-83b9-2f9f259daa32 ro
    [ 11.413] Build Date: 09 July 2012 03:59:39PM
    [ 11.413]
    [ 11.413] Current version of pixman: 0.26.2
    [ 11.413] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 11.413] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 11.414] (==) Log file: "/var/log/Xorg.0.log", Time: Tue Jul 24 23:51:01 2012
    [ 11.414] (++) Using config file: "/etc/X11/multiseat-1.conf"
    [ 11.414] (++) Using config directory: "/etc/X11/xorg.conf.multiseat.d"
    [ 11.414] (==) No Layout section. Using the first Screen section.
    [ 11.414] (==) No screen section available. Using defaults.
    [ 11.414] (**) |-->Screen "Default Screen Section" (0)
    [ 11.414] (**) | |-->Monitor "<default monitor>"
    [ 11.414] (==) No device specified for screen "Default Screen Section".
    Using the first device section listed.
    [ 11.414] (**) | |-->Device "GeForce 460"
    [ 11.414] (==) No monitor specified for screen "Default Screen Section".
    Using a default monitor configuration.
    [ 11.414] (==) Automatically adding devices
    [ 11.414] (==) Automatically enabling devices
    [ 11.414] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 11.414] Entry deleted from font path.
    [ 11.414] (WW) The directory "/usr/share/fonts/Type1/" does not exist.
    [ 11.414] Entry deleted from font path.
    [ 11.414] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
    [ 11.414] Entry deleted from font path.
    [ 11.414] (Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
    [ 11.414] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
    [ 11.414] Entry deleted from font path.
    [ 11.414] (Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
    [ 11.414] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/
    [ 11.414] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 11.414] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 11.414] (II) Loader magic: 0x7c8b00
    [ 11.414] (II) Module ABI versions:
    [ 11.414] X.Org ANSI C Emulation: 0.4
    [ 11.414] X.Org Video Driver: 12.0
    [ 11.414] X.Org XInput driver : 16.0
    [ 11.414] X.Org Server Extension : 6.0
    [ 11.415] (--) PCI:*(0:1:0:0) 10de:1205:1458:34fc rev 161, Mem @ 0xf6000000/33554432, 0xd8000000/134217728, 0xe4000000/67108864, I/O @ 0x0000ef00/128, BIOS @ 0x????????/524288
    [ 11.415] (--) PCI: (0:2:0:0) 10de:0dc4:10de:085a rev 161, Mem @ 0xf2000000/33554432, 0xc8000000/134217728, 0xd4000000/67108864, I/O @ 0x0000df00/128, BIOS @ 0x????????/524288
    [ 11.415] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 11.415] (II) LoadModule: "extmod"
    [ 11.416] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 11.416] (II) Module extmod: vendor="X.Org Foundation"
    [ 11.416] compiled for 1.12.3, module version = 1.0.0
    [ 11.416] Module class: X.Org Server Extension
    [ 11.416] ABI class: X.Org Server Extension, version 6.0
    [ 11.416] (II) Loading extension MIT-SCREEN-SAVER
    [ 11.416] (II) Loading extension XFree86-VidModeExtension
    [ 11.416] (II) Loading extension XFree86-DGA
    [ 11.416] (II) Loading extension DPMS
    [ 11.416] (II) Loading extension XVideo
    [ 11.416] (II) Loading extension XVideo-MotionCompensation
    [ 11.416] (II) Loading extension X-Resource
    [ 11.416] (II) LoadModule: "dbe"
    [ 11.416] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 11.416] (II) Module dbe: vendor="X.Org Foundation"
    [ 11.416] compiled for 1.12.3, module version = 1.0.0
    [ 11.416] Module class: X.Org Server Extension
    [ 11.416] ABI class: X.Org Server Extension, version 6.0
    [ 11.416] (II) Loading extension DOUBLE-BUFFER
    [ 11.416] (II) LoadModule: "glx"
    [ 11.416] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 11.425] (II) Module glx: vendor="NVIDIA Corporation"
    [ 11.425] compiled for 4.0.2, module version = 1.0.0
    [ 11.425] Module class: X.Org Server Extension
    [ 11.425] (II) NVIDIA GLX Module 302.17 Tue Jun 12 16:22:45 PDT 2012
    [ 11.425] (II) Loading extension GLX
    [ 11.425] (II) LoadModule: "record"
    [ 11.425] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 11.425] (II) Module record: vendor="X.Org Foundation"
    [ 11.425] compiled for 1.12.3, module version = 1.13.0
    [ 11.425] Module class: X.Org Server Extension
    [ 11.425] ABI class: X.Org Server Extension, version 6.0
    [ 11.425] (II) Loading extension RECORD
    [ 11.425] (II) LoadModule: "dri"
    [ 11.425] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 11.426] (II) Module dri: vendor="X.Org Foundation"
    [ 11.426] compiled for 1.12.3, module version = 1.0.0
    [ 11.426] ABI class: X.Org Server Extension, version 6.0
    [ 11.426] (II) Loading extension XFree86-DRI
    [ 11.426] (II) LoadModule: "dri2"
    [ 11.426] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 11.426] (II) Module dri2: vendor="X.Org Foundation"
    [ 11.426] compiled for 1.12.3, module version = 1.2.0
    [ 11.426] ABI class: X.Org Server Extension, version 6.0
    [ 11.426] (II) Loading extension DRI2
    [ 11.426] (II) LoadModule: "nvidia"
    [ 11.426] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    [ 11.426] (II) Module nvidia: vendor="NVIDIA Corporation"
    [ 11.426] compiled for 4.0.2, module version = 1.0.0
    [ 11.426] Module class: X.Org Video Driver
    [ 11.426] (II) NVIDIA dlloader X Driver 302.17 Tue Jun 12 16:04:53 PDT 2012
    [ 11.426] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [ 11.426] (++) using VT number 7
    [ 11.426] (WW) xf86OpenConsole: setpgid failed: Operation not permitted
    [ 11.426] (WW) xf86OpenConsole: setsid failed: Operation not permitted
    [ 11.428] (II) Loading sub module "fb"
    [ 11.428] (II) LoadModule: "fb"
    [ 11.428] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 11.428] (II) Module fb: vendor="X.Org Foundation"
    [ 11.428] compiled for 1.12.3, module version = 1.0.0
    [ 11.428] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.428] (II) Loading sub module "wfb"
    [ 11.428] (II) LoadModule: "wfb"
    [ 11.428] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [ 11.429] (II) Module wfb: vendor="X.Org Foundation"
    [ 11.429] compiled for 1.12.3, module version = 1.0.0
    [ 11.429] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 11.429] (II) Loading sub module "ramdac"
    [ 11.429] (II) LoadModule: "ramdac"
    [ 11.429] (II) Module "ramdac" already built-in
    [ 11.429] (II) NVIDIA(0): Creating default Display subsection in Screen section
    "Default Screen Section" for depth/fbbpp 24/32
    [ 11.429] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    [ 11.429] (==) NVIDIA(0): RGB weight 888
    [ 11.429] (==) NVIDIA(0): Default visual is TrueColor
    [ 11.429] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [ 11.429] (**) NVIDIA(0): Option "Coolbits" "4"
    [ 11.429] (**) NVIDIA(0): Enabling 2D acceleration
    [ 11.465] (II) NVIDIA(GPU-0): Display (Acer S231HL (DFP-0)) does not support NVIDIA 3D
    [ 11.465] (II) NVIDIA(GPU-0): Vision stereo.
    [ 11.499] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 460 v2 (GF114) at PCI:1:0:0 (GPU-0)
    [ 11.499] (--) NVIDIA(0): Memory: 1048576 kBytes
    [ 11.499] (--) NVIDIA(0): VideoBIOS: 70.24.25.00.02
    [ 11.499] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [ 11.499] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [ 11.501] (--) NVIDIA(0): Valid display device(s) on GeForce GTX 460 v2 at PCI:1:0:0
    [ 11.501] (--) NVIDIA(0): CRT-0
    [ 11.501] (--) NVIDIA(0): CRT-1
    [ 11.501] (--) NVIDIA(0): Acer S231HL (DFP-0) (connected)
    [ 11.501] (--) NVIDIA(0): DFP-1
    [ 11.501] (--) NVIDIA(0): DFP-2
    [ 11.501] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
    [ 11.501] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [ 11.501] (--) NVIDIA(0): Acer S231HL (DFP-0): 330.0 MHz maximum pixel clock
    [ 11.501] (--) NVIDIA(0): Acer S231HL (DFP-0): Internal Dual Link TMDS
    [ 11.501] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
    [ 11.501] (--) NVIDIA(0): DFP-1: Internal Single Link TMDS
    [ 11.501] (--) NVIDIA(0): DFP-2: 330.0 MHz maximum pixel clock
    [ 11.501] (--) NVIDIA(0): DFP-2: Internal Single Link TMDS
    [ 11.501] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [ 11.501] (**) NVIDIA(0): device Acer S231HL (DFP-0) (Using EDID frequencies has
    [ 11.501] (**) NVIDIA(0): been enabled on all display devices.)
    [ 11.503] (==) NVIDIA(0):
    [ 11.503] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    [ 11.503] (==) NVIDIA(0): will be used as the requested mode.
    [ 11.503] (==) NVIDIA(0):
    [ 11.503] (II) NVIDIA(0): Validated modes:
    [ 11.503] (II) NVIDIA(0): "DFP-0:nvidia-auto-select"
    [ 11.503] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
    [ 11.506] (--) NVIDIA(0): DPI set to (95, 94); computed from "UseEdidDpi" X config
    [ 11.506] (--) NVIDIA(0): option
    [ 11.506] (--) Depth 24 pixmap format is 32 bpp
    [ 11.547] (II) NVIDIA(GPU-1): Display (VIZ VO370M (DFP-1)) does not support NVIDIA 3D Vision
    [ 11.547] (II) NVIDIA(GPU-1): stereo.
    [ 11.550] (EE) NVIDIA(GPU-1): EVO Push buffer channel allocation failed
    [ 11.550] (EE) *** Aborting ***
    [ 11.550] (EE) NVIDIA(GPU-1): Failed to allocate EVO core DMA push buffer
    [ 11.550] (EE) *** Aborting ***
    [ 11.551]
    [ 11.551] Backtrace:
    [ 11.552] 0: /usr/bin/X (xorg_backtrace+0x36) [0x560306]
    [ 11.552] 1: /usr/bin/X (0x400000+0x164039) [0x564039]
    [ 11.552] 2: /lib/libpthread.so.0 (0x7f950b2f5000+0xf170) [0x7f950b304170]
    [ 11.552] 3: /lib/libc.so.6 (cfree+0x14) [0x7f950a1feef4]
    [ 11.552] 4: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7f9504ecb000+0xd9d98) [0x7f9504fa4d98]
    [ 11.552] 5: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7f9504ecb000+0x786a8) [0x7f9504f436a8]
    [ 11.552] 6: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7f9504ecb000+0xe4acd) [0x7f9504fafacd]
    [ 11.552] 7: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7f9504ecb000+0x4f6537) [0x7f95053c1537]
    [ 11.552] 8: /usr/lib/xorg/modules/drivers/nvidia_drv.so (0x7f9504ecb000+0x4ed510) [0x7f95053b8510]
    [ 11.552] 9: /usr/bin/X (AddScreen+0x189) [0x4348c9]
    [ 11.552] 10: /usr/bin/X (InitOutput+0x28e) [0x472a6e]
    [ 11.552] 11: /usr/bin/X (0x400000+0x23476) [0x423476]
    [ 11.552] 12: /lib/libc.so.6 (__libc_start_main+0xf5) [0x7f950a1a4725]
    [ 11.552] 13: /usr/bin/X (0x400000+0x238ed) [0x4238ed]
    [ 11.552]
    [ 11.552] Segmentation fault at address 0x458
    [ 11.552]
    Fatal server error:
    [ 11.552] Caught signal 11 (Segmentation fault). Server aborting
    [ 11.552]
    [ 11.552]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 11.552] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 11.552]
    [ 11.553] Server terminated with error (1). Closing log file.
    [    11.550] (EE) NVIDIA(GPU-1): EVO Push buffer channel allocation failed
    [    11.550] (EE)  *** Aborting ***
    [    11.550] (EE) NVIDIA(GPU-1): Failed to allocate EVO core DMA push buffer
    [    11.550] (EE)  *** Aborting ***
    It looks like this is the issue ^, I have googled it with nothing interesting to show. I don't know what it is , but I have a feeling it might be a bug in the nvidia drivers since I have updated them since I last ran my multiseat. Also I think it is interesting how the errors seem to be happening on GPU-1, even though GPU-0 is the one that goes blank. Please I appreciate any help.

    I have the same exact problem with Kubuntu 11.10 and 3 NVidia cards. My multiseat starts correctly on all 3 displays, but after I logout from seat 2 or 3 I get there
    [ 37769.447] (EE) NVIDIA(GPU-1): EVO Push buffer channel allocation failed
    [ 37769.447] (EE)  *** Aborting ***
    [ 37769.447] (EE) NVIDIA(GPU-1): Failed to allocate EVO core DMA push buffer
    [ 37769.447] (EE)  *** Aborting ***
    [ 37769.450]
    Backtrace:
    [ 37769.450] 0: /usr/bin/X2 (xorg_backtrace+0x26) [0x460566]
    [ 37769.450] 1: /usr/bin/X2 (0x400000+0x64b7a) [0x464b7a]
    [ 37769.450] 2: /lib/x86_64-linux-gnu/libpthread.so.0 (0x7fdd0e5ff000+0x10060) [0x7fdd0e60f060]
    [ 37769.450] 3: /lib/x86_64-linux-gnu/libc.so.6 (cfree+0x19) [0x7fdd0d596979]
    [ 37769.450] 4: /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so (0x7fdd08282000+0xd9d98) [0x7fdd0835bd98]
    [ 37769.450] 5: /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so (0x7fdd08282000+0x786a8) [0x7fdd082fa6a8]
    [ 37769.450] 6: /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so (0x7fdd08282000+0xe4acd) [0x7fdd08366acd]
    [ 37769.450] 7: /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so (0x7fdd08282000+0x44f2d7) [0x7fdd086d12d7]
    [ 37769.450] 8: /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so (0x7fdd08282000+0x446300) [0x7fdd086c8300]
    [ 37769.450] 9: /usr/bin/X2 (AddScreen+0x171) [0x42fed1]
    [ 37769.450] 10: /usr/bin/X2 (InitOutput+0x29c) [0x473b9c]
    [ 37769.450] 11: /usr/bin/X2 (0x400000+0x23143) [0x423143]
    [ 37769.450] 12: /lib/x86_64-linux-gnu/libc.so.6 (__libc_start_main+0xed) [0x7fdd0d53930d]
    [ 37769.450] 13: /usr/bin/X2 (0x400000+0x235ed) [0x4235ed]
    [ 37769.450] Segmentation fault at address 0x458
    [ 37769.450]
    Caught signal 11 (Segmentation fault). Server aborting
    [ 37769.450]
    Please consult the The X.Org Foundation support
             at http://wiki.x.org
    for help.
    [ 37769.450] Please also check the log file at "/var/log/Xorg.2.log" for additional information.
    [ 37769.450]
    [ 37769.450]  ddxSigGiveUp: Closing log

Maybe you are looking for