You are not logged in.

#1 2015-10-27 14:58:16

StaticPhilly
Member
From: UK
Registered: 2009-05-15
Posts: 53

two gfx cards, 3 monitors = why i cant use linux as my primary

Ok this seems a little strange for me, I thought the days of hardware limitations on Linux compared to windows had passed, but still I cant get a simple two card setup to work with 3 monitors as one nice big desktop.

Basically I have:
NVidia Geforce GTX 680
-- HDMI screen
-- DVI (VGA converted) screen
Nvidia Geforce GT 610
-- DVI (VGA converted) screen

basically I need to use the NVidia driver, I require the 3D acceleration it provides - The opensource driver just does not cut it.

Attempting to setup the displays using Xinerama causes seg faults, in library's like mutter (for gnome based) - I also tried loading in kde (just to test) that also crash's as soon as its loads.
TwinView is not an option due to it only supporting 2 monitors (and I believe they both have to be on the same card)
Base Mosaic, when I even attempt to use base mosaic I get errors saying the GPU is not supported.

so basically, I cant get this configuration to work as one nice desktop, were I can drag windows from one side to the other.
Everything I have read on this matter seems to be usless, even down to the point I read one post saying 'Upgrade your graphics card'..... errrrm no, if I can get all 3 screens working on windows 10 I would of thought it would be possible in linux (despite the different WDDM modes In windows, it still works)

Does anyone have any ideas of anything else to try before I give up the ghost.

cheers


Lightweight software dose not mean less! It just means you have to get your finger out and make it do and look like you want!

Offline

#2 2015-10-28 14:34:34

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 15,167

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

NVidia Geforce GTX 680
-- HDMI screen
-- DVI (VGA converted) screen
Nvidia Geforce GT 610
-- DVI (VGA converted) screen

For clarity, what is the cabling setup for the DVI (VGA converted) screens :
1.  card > dvi output > dvi 2 vga converter > vga input of monitor
or
2.  card > vga output > vga to dvi converter > dvi input of monitor ?


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Online

#3 2015-10-28 14:39:06

StaticPhilly
Member
From: UK
Registered: 2009-05-15
Posts: 53

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

card > dvi output -> converter -> vga input (vga montor)


Lightweight software dose not mean less! It just means you have to get your finger out and make it do and look like you want!

Offline

#4 2015-10-28 15:06:51

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 15,167

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

It's a longshot, but the problems could stem from using 2 vga monitors.
please post an Xorg.0.log along with any xorg configuration files you used during that attempt.


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Online

#5 2015-10-28 15:46:57

StaticPhilly
Member
From: UK
Registered: 2009-05-15
Posts: 53

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

sure thing:

1st set - standard config with both 680 monitors on x-display 0 and the 610 montor on x-display 1 - This works but can only drag betean the 680 monitors and the 610 is seperate
2nd set - xinerama - all monitors on seperate x-displays (HDMI on 0, vga 1, vag 2) - This crashs after login (lightdm works correctly)
3rd set - base-mosaic - only loads 680 monitors and errors in the xorg.log

1st set
xorg.conf

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" 3600 30
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection

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

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LG Electronics 2D FHD LG TV"
    HorizSync       30.0 - 83.0
    VertRefresh     56.0 - 75.0
    Option         "DPMS"
EndSection

Section "Monitor"
    # HorizSync source: unknown, VertRefresh source: unknown
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "DELL E196FP"
    HorizSync       0.0 - 0.0
    VertRefresh     0.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
    BusID          "PCI:1:0:0"
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
    BusID          "PCI:6:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-1"
    Option         "metamodes" "HDMI-0: nvidia-auto-select +0+0, DVI-I-0: nvidia-auto-select +1920+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "nvidia-auto-select +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

xorg.log

[   662.458] 
X.Org X Server 1.17.2
Release Date: 2015-06-16
[   662.458] X Protocol Version 11, Revision 0
[   662.458] Build Operating System: Linux 4.1.6-1-ARCH x86_64 
[   662.458] Current Operating System: Linux NightDreamer 4.2.4-1-ARCH #1 SMP PREEMPT Fri Oct 23 07:32:38 CEST 2015 x86_64
[   662.458] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/mapper/primary-rootvol cryptdevice=/dev/disk/by-id/wwn-0x5000c5002ed43700 cryptkey=../dontBootMe.img rw initrd=../initramfs-linux.img
[   662.458] Build Date: 17 October 2015  11:08:10AM
[   662.458]  
[   662.458] Current version of pixman: 0.32.8
[   662.458] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   662.458] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   662.458] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Oct 28 15:27:03 2015
[   662.458] (==) Using config file: "/etc/X11/xorg.conf"
[   662.458] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   662.458] (==) ServerLayout "Layout0"
[   662.458] (**) |-->Screen "Screen0" (0)
[   662.458] (**) |   |-->Monitor "Monitor0"
[   662.458] (**) |   |-->Device "Device0"
[   662.458] (**) |-->Screen "Screen1" (1)
[   662.458] (**) |   |-->Monitor "Monitor1"
[   662.458] (**) |   |-->Device "Device1"
[   662.458] (**) |-->Input Device "Keyboard0"
[   662.458] (**) |-->Input Device "Mouse0"
[   662.458] (**) Option "Xinerama" "0"
[   662.458] (==) Automatically adding devices
[   662.458] (==) Automatically enabling devices
[   662.458] (==) Automatically adding GPU devices
[   662.458] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   662.458] 	Entry deleted from font path.
[   662.458] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   662.458] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   662.458] 	Entry deleted from font path.
[   662.458] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   662.458] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[   662.458] (==) ModulePath set to "/usr/lib/xorg/modules"
[   662.458] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   662.458] (WW) Disabling Keyboard0
[   662.458] (WW) Disabling Mouse0
[   662.458] (II) Loader magic: 0x817d60
[   662.458] (II) Module ABI versions:
[   662.458] 	X.Org ANSI C Emulation: 0.4
[   662.458] 	X.Org Video Driver: 19.0
[   662.458] 	X.Org XInput driver : 21.1
[   662.458] 	X.Org Server Extension : 9.0
[   662.459] (EE) systemd-logind: failed to get session: PID 29074 does not belong to any known session
[   662.459] (II) xfree86: Adding drm device (/dev/dri/card0)
[   662.459] (II) xfree86: Adding drm device (/dev/dri/card1)
[   662.461] (--) PCI:*(0:1:0:0) 10de:1180:3842:2680 rev 161, Mem @ 0xfd000000/16777216, 0xd0000000/134217728, 0xd8000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[   662.461] (--) PCI: (0:6:0:0) 10de:104a:1462:809f rev 161, Mem @ 0xfb000000/16777216, 0xc0000000/134217728, 0xc8000000/33554432, I/O @ 0x0000b000/128, BIOS @ 0x????????/524288
[   662.461] (II) Open ACPI successful (/var/run/acpid.socket)
[   662.461] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[   662.461] (II) LoadModule: "dbe"
[   662.461] (II) Module "dbe" already built-in
[   662.461] (II) LoadModule: "extmod"
[   662.461] (II) Module "extmod" already built-in
[   662.461] (II) LoadModule: "glx"
[   662.461] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   662.466] (II) Module glx: vendor="NVIDIA Corporation"
[   662.466] 	compiled for 4.0.2, module version = 1.0.0
[   662.466] 	Module class: X.Org Server Extension
[   662.466] (II) NVIDIA GLX Module  355.11  Wed Aug 26 16:02:11 PDT 2015
[   662.466] (II) LoadModule: "nvidia"
[   662.466] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   662.466] (II) Module nvidia: vendor="NVIDIA Corporation"
[   662.466] 	compiled for 4.0.2, module version = 1.0.0
[   662.466] 	Module class: X.Org Video Driver
[   662.466] (II) NVIDIA dlloader X Driver  355.11  Wed Aug 26 15:38:55 PDT 2015
[   662.466] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   662.466] (++) using VT number 7

[   662.470] (II) Loading sub module "fb"
[   662.470] (II) LoadModule: "fb"
[   662.470] (II) Loading /usr/lib/xorg/modules/libfb.so
[   662.470] (II) Module fb: vendor="X.Org Foundation"
[   662.470] 	compiled for 1.17.2, module version = 1.0.0
[   662.470] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   662.470] (II) Loading sub module "wfb"
[   662.470] (II) LoadModule: "wfb"
[   662.470] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   662.471] (II) Module wfb: vendor="X.Org Foundation"
[   662.471] 	compiled for 1.17.2, module version = 1.0.0
[   662.471] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   662.471] (II) Loading sub module "ramdac"
[   662.471] (II) LoadModule: "ramdac"
[   662.471] (II) Module "ramdac" already built-in
[   662.471] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[   662.471] (==) NVIDIA(0): RGB weight 888
[   662.471] (==) NVIDIA(0): Default visual is TrueColor
[   662.471] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   662.471] (**) NVIDIA(0): Option "Stereo" "0"
[   662.471] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-1"
[   662.471] (**) NVIDIA(0): Option "SLI" "Off"
[   662.471] (**) NVIDIA(0): Option "MultiGPU" "Off"
[   662.471] (**) NVIDIA(0): Option "BaseMosaic" "off"
[   662.471] (**) NVIDIA(0): Stereo disabled by request
[   662.471] (**) NVIDIA(0): NVIDIA SLI disabled.
[   662.471] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[   662.471] (**) NVIDIA(0): Option "MetaModes" "HDMI-0: nvidia-auto-select +0+0, DVI-I-0: nvidia-auto-select +1920+0"
[   662.471] (**) NVIDIA(0): Enabling 2D acceleration
[   662.472] (II) NVIDIA: Allocated GPU:0 (GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1) @
[   662.472] (II) NVIDIA:     PCI:0000:01:00.0
[   662.556] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[   662.556] (--) NVIDIA(0):     CRT-0 (boot)
[   662.556] (--) NVIDIA(0):     DFP-0
[   662.556] (--) NVIDIA(0):     DFP-1
[   662.556] (--) NVIDIA(0):     DFP-2
[   662.556] (--) NVIDIA(0):     DFP-3
[   662.556] (--) NVIDIA(0):     DFP-4
[   662.578] (--) NVIDIA(0): AOC N20WB (CRT-0): connected
[   662.578] (--) NVIDIA(0): AOC N20WB (CRT-0): 400.0 MHz maximum pixel clock
[   662.578] (--) NVIDIA(0): 
[   662.588] (--) NVIDIA(0): DFP-0: disconnected
[   662.588] (--) NVIDIA(0): DFP-0: Internal TMDS
[   662.588] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
[   662.588] (--) NVIDIA(0): 
[   662.601] (--) NVIDIA(0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   662.601] (--) NVIDIA(0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   662.601] (--) NVIDIA(0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   662.601] (--) NVIDIA(0): 
[   662.601] (--) NVIDIA(0): DFP-2: disconnected
[   662.601] (--) NVIDIA(0): DFP-2: Internal TMDS
[   662.601] (--) NVIDIA(0): DFP-2: 165.0 MHz maximum pixel clock
[   662.601] (--) NVIDIA(0): 
[   662.601] (--) NVIDIA(0): DFP-3: disconnected
[   662.601] (--) NVIDIA(0): DFP-3: Internal TMDS
[   662.601] (--) NVIDIA(0): DFP-3: 330.0 MHz maximum pixel clock
[   662.601] (--) NVIDIA(0): 
[   662.601] (--) NVIDIA(0): DFP-4: disconnected
[   662.601] (--) NVIDIA(0): DFP-4: Internal DisplayPort
[   662.601] (--) NVIDIA(0): DFP-4: 960.0 MHz maximum pixel clock
[   662.601] (--) NVIDIA(0): 
[   662.602] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
[   662.603] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 680 (GK104) at PCI:1:0:0 (GPU-0)
[   662.603] (--) NVIDIA(0): Memory: 2097152 kBytes
[   662.603] (--) NVIDIA(0): VideoBIOS: 80.04.09.00.80
[   662.603] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[   662.603] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[   662.603] (**) NVIDIA(0):     device AOC N20WB (CRT-0) (Using EDID frequencies has been
[   662.603] (**) NVIDIA(0):     enabled on all display devices.)
[   662.605] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[   662.605] (**) NVIDIA(0):     device LG Electronics 2D FHD LG TV (DFP-1) (Using EDID
[   662.605] (**) NVIDIA(0):     frequencies has been enabled on all display devices.)
[   662.608] (II) NVIDIA(0): Validated MetaModes:
[   662.608] (II) NVIDIA(0):    
[   662.608] (II) NVIDIA(0):     "HDMI-0:nvidia-auto-select+0+0,DVI-I-0:nvidia-auto-select+1920+0"
[   662.608] (II) NVIDIA(0): Virtual screen size determined to be 3600 x 1080
[   662.616] (--) NVIDIA(0): DPI set to (99, 98); computed from "UseEdidDpi" X config
[   662.616] (--) NVIDIA(0):     option
[   662.616] (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
[   662.616] (==) NVIDIA(1): RGB weight 888
[   662.616] (==) NVIDIA(1): Default visual is TrueColor
[   662.616] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
[   662.616] (**) NVIDIA(1): Option "Stereo" "0"
[   662.616] (**) NVIDIA(1): Option "SLI" "Off"
[   662.616] (**) NVIDIA(1): Option "MultiGPU" "Off"
[   662.616] (**) NVIDIA(1): Option "BaseMosaic" "off"
[   662.616] (**) NVIDIA(1): Stereo disabled by request
[   662.616] (**) NVIDIA(1): NVIDIA SLI disabled.
[   662.616] (**) NVIDIA(1): NVIDIA Multi-GPU disabled.
[   662.616] (**) NVIDIA(1): Option "MetaModes" "nvidia-auto-select +0+0"
[   662.616] (**) NVIDIA(1): Enabling 2D acceleration
[   662.617] (II) NVIDIA: Allocated GPU:1 (GPU-28b13547-5a10-8a92-5854-2e9ee970c5a3) @
[   662.617] (II) NVIDIA:     PCI:0000:06:00.0
[   662.651] (--) NVIDIA(0): Valid display device(s) on GPU-1 at PCI:6:0:0
[   662.651] (--) NVIDIA(0):     CRT-0
[   662.651] (--) NVIDIA(0):     CRT-1 (boot)
[   662.651] (--) NVIDIA(0):     DFP-0
[   662.651] (--) NVIDIA(0):     DFP-1
[   662.654] (--) NVIDIA(0): CRT-0: disconnected
[   662.654] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
[   662.654] (--) NVIDIA(0): 
[   662.666] (--) NVIDIA(0): DELL E196FP (CRT-1): connected
[   662.666] (--) NVIDIA(0): DELL E196FP (CRT-1): 400.0 MHz maximum pixel clock
[   662.666] (--) NVIDIA(0): 
[   662.669] (--) NVIDIA(0): DFP-0: disconnected
[   662.669] (--) NVIDIA(0): DFP-0: Internal TMDS
[   662.669] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
[   662.669] (--) NVIDIA(0): 
[   662.669] (--) NVIDIA(0): DFP-1: disconnected
[   662.669] (--) NVIDIA(0): DFP-1: Internal TMDS
[   662.669] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
[   662.669] (--) NVIDIA(0): 
[   662.669] (II) NVIDIA(GPU-1): Found DRM driver nvidia-drm (20150116)
[   662.670] (II) NVIDIA(1): NVIDIA GPU GeForce GT 610 (GF119) at PCI:6:0:0 (GPU-1)
[   662.670] (--) NVIDIA(1): Memory: 1048576 kBytes
[   662.670] (--) NVIDIA(1): VideoBIOS: 75.19.72.00.00
[   662.670] (II) NVIDIA(1): Detected PCI Express Link width: 16X
[   662.670] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
[   662.670] (**) NVIDIA(1):     device DELL E196FP (CRT-1) (Using EDID frequencies has
[   662.670] (**) NVIDIA(1):     been enabled on all display devices.)
[   662.671] (II) NVIDIA(1): Validated MetaModes:
[   662.671] (II) NVIDIA(1):     "nvidia-auto-select+0+0"
[   662.671] (II) NVIDIA(1): Virtual screen size determined to be 1280 x 1024
[   662.676] (--) NVIDIA(1): DPI set to (85, 86); computed from "UseEdidDpi" X config
[   662.676] (--) NVIDIA(1):     option
[   662.676] (--) Depth 24 pixmap format is 32 bpp
[   662.676] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[   662.676] (II) NVIDIA:     access.
[   662.710] (II) NVIDIA(0): Setting mode "HDMI-0:nvidia-auto-select+0+0,DVI-I-0:nvidia-auto-select+1920+0"
[   662.764] (==) NVIDIA(0): Disabling shared memory pixmaps
[   662.764] (==) NVIDIA(0): Backing store enabled
[   662.764] (==) NVIDIA(0): Silken mouse enabled
[   662.764] (**) NVIDIA(0): DPMS enabled
[   662.765] (II) Loading sub module "dri2"
[   662.765] (II) LoadModule: "dri2"
[   662.765] (II) Module "dri2" already built-in
[   662.765] (II) NVIDIA(0): [DRI2] Setup complete
[   662.765] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[   662.765] (--) RandR disabled
[   662.802] (II) NVIDIA(1): Setting mode "nvidia-auto-select+0+0"
[   662.826] (==) NVIDIA(1): Disabling shared memory pixmaps
[   662.826] (==) NVIDIA(1): Backing store enabled
[   662.826] (==) NVIDIA(1): Silken mouse enabled
[   662.827] (**) NVIDIA(1): DPMS enabled
[   662.827] (II) Loading sub module "dri2"
[   662.827] (II) LoadModule: "dri2"
[   662.827] (II) Module "dri2" already built-in
[   662.827] (II) NVIDIA(1): [DRI2] Setup complete
[   662.827] (II) NVIDIA(1): [DRI2]   VDPAU driver: nvidia
[   662.827] (--) RandR disabled
[   662.831] (II) Initializing extension GLX
[   662.831] (II) Indirect GLX disabled.(II) config/udev: Adding input device Power Button (/dev/input/event1)
[   662.873] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   662.873] (II) LoadModule: "evdev"
[   662.873] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   662.873] (II) Module evdev: vendor="X.Org Foundation"
[   662.873] 	compiled for 1.17.1, module version = 2.9.2
[   662.873] 	Module class: X.Org XInput Driver
[   662.873] 	ABI class: X.Org XInput driver, version 21.0
[   662.873] (II) Using input driver 'evdev' for 'Power Button'
[   662.873] (**) Power Button: always reports core events
[   662.874] (**) evdev: Power Button: Device: "/dev/input/event1"
[   662.874] (--) evdev: Power Button: Vendor 0 Product 0x1
[   662.874] (--) evdev: Power Button: Found keys
[   662.874] (II) evdev: Power Button: Configuring as keyboard
[   662.874] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[   662.874] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   662.874] (**) Option "xkb_rules" "evdev"
[   662.874] (**) Option "xkb_model" "pc104"
[   662.874] (**) Option "xkb_layout" "us"
[   662.890] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   662.891] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   662.891] (II) Using input driver 'evdev' for 'Power Button'
[   662.891] (**) Power Button: always reports core events
[   662.891] (**) evdev: Power Button: Device: "/dev/input/event0"
[   662.891] (--) evdev: Power Button: Vendor 0 Product 0x1
[   662.891] (--) evdev: Power Button: Found keys
[   662.891] (II) evdev: Power Button: Configuring as keyboard
[   662.891] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[   662.891] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[   662.891] (**) Option "xkb_rules" "evdev"
[   662.891] (**) Option "xkb_model" "pc104"
[   662.891] (**) Option "xkb_layout" "us"
[   662.891] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event15)
[   662.891] (II) No input driver specified, ignoring this device.
[   662.891] (II) This device may have been added with another device file.
[   662.891] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event16)
[   662.891] (II) No input driver specified, ignoring this device.
[   662.891] (II) This device may have been added with another device file.
[   662.891] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event19)
[   662.892] (II) No input driver specified, ignoring this device.
[   662.892] (II) This device may have been added with another device file.
[   662.892] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event20)
[   662.892] (II) No input driver specified, ignoring this device.
[   662.892] (II) This device may have been added with another device file.
[   662.892] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event17)
[   662.892] (II) No input driver specified, ignoring this device.
[   662.892] (II) This device may have been added with another device file.
[   662.892] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event18)
[   662.892] (II) No input driver specified, ignoring this device.
[   662.892] (II) This device may have been added with another device file.
[   662.893] (II) config/udev: Adding input device Xbox Airflo wired controller (/dev/input/event5)
[   662.893] (II) No input driver specified, ignoring this device.
[   662.893] (II) This device may have been added with another device file.
[   662.893] (II) config/udev: Adding input device Xbox Airflo wired controller (/dev/input/js0)
[   662.893] (II) No input driver specified, ignoring this device.
[   662.893] (II) This device may have been added with another device file.
[   662.893] (II) config/udev: Adding input device VF0610 Live! Cam Socialize HD (/dev/input/event21)
[   662.893] (**) VF0610 Live! Cam Socialize HD: Applying InputClass "evdev keyboard catchall"
[   662.893] (II) Using input driver 'evdev' for 'VF0610 Live! Cam Socialize HD'
[   662.893] (**) VF0610 Live! Cam Socialize HD: always reports core events
[   662.893] (**) evdev: VF0610 Live! Cam Socialize HD: Device: "/dev/input/event21"
[   662.893] (--) evdev: VF0610 Live! Cam Socialize HD: Vendor 0x41e Product 0x4080
[   662.893] (--) evdev: VF0610 Live! Cam Socialize HD: Found keys
[   662.893] (II) evdev: VF0610 Live! Cam Socialize HD: Configuring as keyboard
[   662.893] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4:1.0/input/input21/event21"
[   662.893] (II) XINPUT: Adding extended input device "VF0610 Live! Cam Socialize HD" (type: KEYBOARD, id 8)
[   662.893] (**) Option "xkb_rules" "evdev"
[   662.893] (**) Option "xkb_model" "pc104"
[   662.893] (**) Option "xkb_layout" "us"
[   662.894] (II) config/udev: Adding input device Dell Premium USB Optical Mouse (/dev/input/event3)
[   662.894] (**) Dell Premium USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[   662.894] (II) Using input driver 'evdev' for 'Dell Premium USB Optical Mouse'
[   662.894] (**) Dell Premium USB Optical Mouse: always reports core events
[   662.894] (**) evdev: Dell Premium USB Optical Mouse: Device: "/dev/input/event3"
[   662.946] (--) evdev: Dell Premium USB Optical Mouse: Vendor 0x413c Product 0x3016
[   662.946] (--) evdev: Dell Premium USB Optical Mouse: Found 14 mouse buttons
[   662.946] (--) evdev: Dell Premium USB Optical Mouse: Found scroll wheel(s)
[   662.946] (--) evdev: Dell Premium USB Optical Mouse: Found relative axes
[   662.946] (--) evdev: Dell Premium USB Optical Mouse: Found x and y relative axes
[   662.946] (II) evdev: Dell Premium USB Optical Mouse: Configuring as mouse
[   662.946] (II) evdev: Dell Premium USB Optical Mouse: Adding scrollwheel support
[   662.946] (**) evdev: Dell Premium USB Optical Mouse: YAxisMapping: buttons 4 and 5
[   662.946] (**) evdev: Dell Premium USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   662.946] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb10/10-1/10-1:1.0/0003:413C:3016.0001/input/input3/event3"
[   662.946] (II) XINPUT: Adding extended input device "Dell Premium USB Optical Mouse" (type: MOUSE, id 9)
[   662.946] (II) evdev: Dell Premium USB Optical Mouse: initialized for relative axes.
[   662.947] (**) Dell Premium USB Optical Mouse: (accel) keeping acceleration scheme 1
[   662.947] (**) Dell Premium USB Optical Mouse: (accel) acceleration profile 0
[   662.947] (**) Dell Premium USB Optical Mouse: (accel) acceleration factor: 2.000
[   662.947] (**) Dell Premium USB Optical Mouse: (accel) acceleration threshold: 4
[   662.947] (II) config/udev: Adding input device Dell Premium USB Optical Mouse (/dev/input/mouse0)
[   662.947] (II) No input driver specified, ignoring this device.
[   662.947] (II) This device may have been added with another device file.
[   662.947] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event10)
[   662.947] (II) No input driver specified, ignoring this device.
[   662.947] (II) This device may have been added with another device file.
[   662.947] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event11)
[   662.947] (II) No input driver specified, ignoring this device.
[   662.947] (II) This device may have been added with another device file.
[   662.948] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event12)
[   662.948] (II) No input driver specified, ignoring this device.
[   662.948] (II) This device may have been added with another device file.
[   662.948] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event13)
[   662.948] (II) No input driver specified, ignoring this device.
[   662.948] (II) This device may have been added with another device file.
[   662.948] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event14)
[   662.948] (II) No input driver specified, ignoring this device.
[   662.948] (II) This device may have been added with another device file.
[   662.948] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event7)
[   662.948] (II) No input driver specified, ignoring this device.
[   662.948] (II) This device may have been added with another device file.
[   662.948] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event8)
[   662.948] (II) No input driver specified, ignoring this device.
[   662.948] (II) This device may have been added with another device file.
[   662.949] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event9)
[   662.949] (II) No input driver specified, ignoring this device.
[   662.949] (II) This device may have been added with another device file.
[   662.949] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event6)
[   662.949] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[   662.949] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[   662.949] (**) Eee PC WMI hotkeys: always reports core events
[   662.949] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event6"
[   662.949] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[   662.949] (--) evdev: Eee PC WMI hotkeys: Found keys
[   662.949] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[   662.949] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input6/event6"
[   662.949] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 10)
[   662.949] (**) Option "xkb_rules" "evdev"
[   662.949] (**) Option "xkb_model" "pc104"
[   662.949] (**) Option "xkb_layout" "us"
[   662.949] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[   662.949] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   662.949] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[   662.949] (**) AT Translated Set 2 keyboard: always reports core events
[   662.949] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2"
[   662.949] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[   662.949] (--) evdev: AT Translated Set 2 keyboard: Found keys
[   662.949] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[   662.950] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[   662.950] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[   662.950] (**) Option "xkb_rules" "evdev"
[   662.950] (**) Option "xkb_model" "pc104"
[   662.950] (**) Option "xkb_layout" "us"
[   662.950] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[   662.950] (II) No input driver specified, ignoring this device.
[   662.950] (II) This device may have been added with another device file.
[   672.603] (--) NVIDIA(GPU-0): AOC N20WB (CRT-0): connected
[   672.603] (--) NVIDIA(GPU-0): AOC N20WB (CRT-0): 400.0 MHz maximum pixel clock
[   672.603] (--) NVIDIA(GPU-0): 
[   672.614] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   672.614] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[   672.614] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[   672.614] (--) NVIDIA(GPU-0): 
[   672.626] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   672.626] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   672.626] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   672.626] (--) NVIDIA(GPU-0): 
[   672.626] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   672.626] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[   672.626] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[   672.626] (--) NVIDIA(GPU-0): 
[   672.626] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   672.626] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   672.626] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[   672.626] (--) NVIDIA(GPU-0): 
[   672.626] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   672.626] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[   672.626] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock
[   672.626] (--) NVIDIA(GPU-0): 
[   672.806] (II) NVIDIA(0): Setting mode "DVI-I-0: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}"
[   672.879] (II) NVIDIA(0): Setting mode "DVI-I-0: nvidia-auto-select @1680x1050 +1920+0 {ViewPortIn=1680x1050, ViewPortOut=1680x1050+0+0}, HDMI-0: nvidia-auto-select @1920x1080 +0+0 {ViewPortIn=1920x1080, ViewPortOut=1920x1080+0+0}"
[   674.449] (--) NVIDIA(GPU-0): AOC N20WB (CRT-0): connected
[   674.449] (--) NVIDIA(GPU-0): AOC N20WB (CRT-0): 400.0 MHz maximum pixel clock
[   674.449] (--) NVIDIA(GPU-0): 
[   674.459] (--) NVIDIA(GPU-0): DFP-0: disconnected
[   674.459] (--) NVIDIA(GPU-0): DFP-0: Internal TMDS
[   674.459] (--) NVIDIA(GPU-0): DFP-0: 330.0 MHz maximum pixel clock
[   674.459] (--) NVIDIA(GPU-0): 
[   674.473] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   674.473] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   674.473] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   674.473] (--) NVIDIA(GPU-0): 
[   674.473] (--) NVIDIA(GPU-0): DFP-2: disconnected
[   674.473] (--) NVIDIA(GPU-0): DFP-2: Internal TMDS
[   674.473] (--) NVIDIA(GPU-0): DFP-2: 165.0 MHz maximum pixel clock
[   674.473] (--) NVIDIA(GPU-0): 
[   674.473] (--) NVIDIA(GPU-0): DFP-3: disconnected
[   674.473] (--) NVIDIA(GPU-0): DFP-3: Internal TMDS
[   674.473] (--) NVIDIA(GPU-0): DFP-3: 330.0 MHz maximum pixel clock
[   674.473] (--) NVIDIA(GPU-0): 
[   674.473] (--) NVIDIA(GPU-0): DFP-4: disconnected
[   674.473] (--) NVIDIA(GPU-0): DFP-4: Internal DisplayPort
[   674.474] (--) NVIDIA(GPU-0): DFP-4: 960.0 MHz maximum pixel clock

2nd set
xorg.conf

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    Screen      1  "Screen1" 1920 30
    Screen      2  "Screen2" RightOf "Screen1"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "1"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection

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

Section "InputDevice"
    # generated from default
    Identifier     "Keyboard0"
    Driver         "kbd"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "LG Electronics 2D FHD LG TV"
    HorizSync       30.0 - 83.0
    VertRefresh     56.0 - 75.0
    Option         "DPMS"
EndSection

Section "Monitor"
    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "AOC N20WB"
    HorizSync       30.0 - 83.0
    VertRefresh     50.0 - 76.0
    Option         "DPMS"
EndSection

Section "Monitor"
    # HorizSync source: unknown, VertRefresh source: unknown
    Identifier     "Monitor2"
    VendorName     "Unknown"
    ModelName      "DELL E196FP"
    HorizSync       0.0 - 0.0
    VertRefresh     0.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
    BusID          "PCI:1:0:0"
    Screen          0
EndSection

Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
    BusID          "PCI:1:0:0"
    Screen          1
EndSection

Section "Device"
    Identifier     "Device2"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
    BusID          "PCI:6:0:0"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-1"
    Option         "metamodes" "HDMI-0: nvidia-auto-select +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "DVI-I-0: nvidia-auto-select +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen2"
    Device         "Device2"
    Monitor        "Monitor2"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "nvidia-auto-select +0+0"
    Option         "SLI" "Off"
    Option         "MultiGPU" "Off"
    Option         "BaseMosaic" "off"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

Section "Extensions"
    Option         "Composite" "Disable"
EndSection

xorg.log

[   722.824] 
X.Org X Server 1.17.2
Release Date: 2015-06-16
[   722.824] X Protocol Version 11, Revision 0
[   722.824] Build Operating System: Linux 4.1.6-1-ARCH x86_64 
[   722.824] Current Operating System: Linux NightDreamer 4.2.4-1-ARCH #1 SMP PREEMPT Fri Oct 23 07:32:38 CEST 2015 x86_64
[   722.824] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/mapper/primary-rootvol cryptdevice=/dev/disk/by-id/wwn-0x5000c5002ed43700 cryptkey=../dontBootMe.img rw initrd=../initramfs-linux.img
[   722.825] Build Date: 17 October 2015  11:08:10AM
[   722.825]  
[   722.825] Current version of pixman: 0.32.8
[   722.825] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   722.825] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   722.825] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Oct 28 15:28:03 2015
[   722.825] (==) Using config file: "/etc/X11/xorg.conf"
[   722.825] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   722.825] (==) ServerLayout "Layout0"
[   722.825] (**) |-->Screen "Screen0" (0)
[   722.825] (**) |   |-->Monitor "Monitor0"
[   722.825] (**) |   |-->Device "Device0"
[   722.825] (**) |-->Screen "Screen1" (1)
[   722.825] (**) |   |-->Monitor "Monitor1"
[   722.825] (**) |   |-->Device "Device1"
[   722.825] (**) |-->Screen "Screen2" (2)
[   722.825] (**) |   |-->Monitor "Monitor2"
[   722.825] (**) |   |-->Device "Device2"
[   722.825] (**) |-->Input Device "Keyboard0"
[   722.825] (**) |-->Input Device "Mouse0"
[   722.825] (**) Option "Xinerama" "1"
[   722.825] (==) Automatically adding devices
[   722.825] (==) Automatically enabling devices
[   722.825] (==) Automatically adding GPU devices
[   722.825] (**) Xinerama: enabled
[   722.825] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   722.825] 	Entry deleted from font path.
[   722.825] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   722.825] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   722.825] 	Entry deleted from font path.
[   722.825] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   722.825] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[   722.825] (==) ModulePath set to "/usr/lib/xorg/modules"
[   722.825] (**) Extension "Composite" is disabled
[   722.825] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   722.825] (WW) Disabling Keyboard0
[   722.825] (WW) Disabling Mouse0
[   722.825] (II) Loader magic: 0x817d60
[   722.825] (II) Module ABI versions:
[   722.825] 	X.Org ANSI C Emulation: 0.4
[   722.825] 	X.Org Video Driver: 19.0
[   722.825] 	X.Org XInput driver : 21.1
[   722.825] 	X.Org Server Extension : 9.0
[   722.826] (EE) systemd-logind: failed to get session: PID 29352 does not belong to any known session
[   722.827] (II) xfree86: Adding drm device (/dev/dri/card0)
[   722.827] (II) xfree86: Adding drm device (/dev/dri/card1)
[   722.828] (--) PCI:*(0:1:0:0) 10de:1180:3842:2680 rev 161, Mem @ 0xfd000000/16777216, 0xd0000000/134217728, 0xd8000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[   722.828] (--) PCI: (0:6:0:0) 10de:104a:1462:809f rev 161, Mem @ 0xfb000000/16777216, 0xc0000000/134217728, 0xc8000000/33554432, I/O @ 0x0000b000/128, BIOS @ 0x????????/524288
[   722.828] (II) Open ACPI successful (/var/run/acpid.socket)
[   722.828] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[   722.828] (II) LoadModule: "dbe"
[   722.829] (II) Module "dbe" already built-in
[   722.829] (II) LoadModule: "extmod"
[   722.829] (II) Module "extmod" already built-in
[   722.829] (II) LoadModule: "glx"
[   722.829] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   722.834] (II) Module glx: vendor="NVIDIA Corporation"
[   722.834] 	compiled for 4.0.2, module version = 1.0.0
[   722.834] 	Module class: X.Org Server Extension
[   722.834] (II) NVIDIA GLX Module  355.11  Wed Aug 26 16:02:11 PDT 2015
[   722.834] (II) LoadModule: "nvidia"
[   722.834] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   722.834] (II) Module nvidia: vendor="NVIDIA Corporation"
[   722.834] 	compiled for 4.0.2, module version = 1.0.0
[   722.834] 	Module class: X.Org Video Driver
[   722.834] (II) NVIDIA dlloader X Driver  355.11  Wed Aug 26 15:38:55 PDT 2015
[   722.834] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   722.834] (++) using VT number 7

[   722.841] (II) Loading sub module "fb"
[   722.841] (II) LoadModule: "fb"
[   722.841] (II) Loading /usr/lib/xorg/modules/libfb.so
[   722.841] (II) Module fb: vendor="X.Org Foundation"
[   722.841] 	compiled for 1.17.2, module version = 1.0.0
[   722.842] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   722.842] (II) Loading sub module "wfb"
[   722.842] (II) LoadModule: "wfb"
[   722.842] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   722.842] (II) Module wfb: vendor="X.Org Foundation"
[   722.842] 	compiled for 1.17.2, module version = 1.0.0
[   722.842] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   722.842] (II) Loading sub module "ramdac"
[   722.842] (II) LoadModule: "ramdac"
[   722.842] (II) Module "ramdac" already built-in
[   722.842] (WW) NVIDIA: Xinerama is enabled, so RandR has likely been disabled by the
[   722.842] (WW) NVIDIA:     X server.
[   722.842] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[   722.842] (==) NVIDIA(0): RGB weight 888
[   722.842] (==) NVIDIA(0): Default visual is TrueColor
[   722.842] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   722.842] (**) NVIDIA(0): Option "Stereo" "0"
[   722.842] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-1"
[   722.842] (**) NVIDIA(0): Option "SLI" "Off"
[   722.842] (**) NVIDIA(0): Option "MultiGPU" "Off"
[   722.842] (**) NVIDIA(0): Option "BaseMosaic" "off"
[   722.842] (**) NVIDIA(0): Stereo disabled by request
[   722.842] (**) NVIDIA(0): NVIDIA SLI disabled.
[   722.842] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[   722.842] (**) NVIDIA(0): Option "MetaModes" "HDMI-0: nvidia-auto-select +0+0"
[   722.842] (**) NVIDIA(1): Option "MetaModes" "DVI-I-0: nvidia-auto-select +0+0"
[   722.842] (**) NVIDIA(0): Enabling 2D acceleration
[   723.222] (II) NVIDIA: Allocated GPU:0 (GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1) @
[   723.222] (II) NVIDIA:     PCI:0000:01:00.0
[   723.300] (--) NVIDIA(0): Valid display device(s) on GPU-0 at PCI:1:0:0
[   723.300] (--) NVIDIA(0):     CRT-0 (boot)
[   723.300] (--) NVIDIA(0):     DFP-0
[   723.300] (--) NVIDIA(0):     DFP-1
[   723.300] (--) NVIDIA(0):     DFP-2
[   723.300] (--) NVIDIA(0):     DFP-3
[   723.300] (--) NVIDIA(0):     DFP-4
[   723.321] (--) NVIDIA(0): AOC N20WB (CRT-0): connected
[   723.321] (--) NVIDIA(0): AOC N20WB (CRT-0): 400.0 MHz maximum pixel clock
[   723.321] (--) NVIDIA(0): 
[   723.332] (--) NVIDIA(0): DFP-0: disconnected
[   723.332] (--) NVIDIA(0): DFP-0: Internal TMDS
[   723.332] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
[   723.332] (--) NVIDIA(0): 
[   723.345] (--) NVIDIA(0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   723.345] (--) NVIDIA(0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   723.345] (--) NVIDIA(0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   723.345] (--) NVIDIA(0): 
[   723.345] (--) NVIDIA(0): DFP-2: disconnected
[   723.345] (--) NVIDIA(0): DFP-2: Internal TMDS
[   723.345] (--) NVIDIA(0): DFP-2: 165.0 MHz maximum pixel clock
[   723.345] (--) NVIDIA(0): 
[   723.345] (--) NVIDIA(0): DFP-3: disconnected
[   723.345] (--) NVIDIA(0): DFP-3: Internal TMDS
[   723.345] (--) NVIDIA(0): DFP-3: 330.0 MHz maximum pixel clock
[   723.345] (--) NVIDIA(0): 
[   723.345] (--) NVIDIA(0): DFP-4: disconnected
[   723.345] (--) NVIDIA(0): DFP-4: Internal DisplayPort
[   723.345] (--) NVIDIA(0): DFP-4: 960.0 MHz maximum pixel clock
[   723.345] (--) NVIDIA(0): 
[   723.345] (II) NVIDIA(GPU-0): Found DRM driver nvidia-drm (20150116)
[   723.346] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 680 (GK104) at PCI:1:0:0 (GPU-0)
[   723.346] (--) NVIDIA(0): Memory: 2097152 kBytes
[   723.346] (--) NVIDIA(0): VideoBIOS: 80.04.09.00.80
[   723.346] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[   723.346] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[   723.346] (**) NVIDIA(0):     device LG Electronics 2D FHD LG TV (DFP-1) (Using EDID
[   723.346] (**) NVIDIA(0):     frequencies has been enabled on all display devices.)
[   723.349] (II) NVIDIA(0): Validated MetaModes:
[   723.349] (II) NVIDIA(0):     "HDMI-0:nvidia-auto-select+0+0"
[   723.349] (II) NVIDIA(0): Virtual screen size determined to be 1920 x 1080
[   723.359] (--) NVIDIA(0): DPI set to (95, 94); computed from "UseEdidDpi" X config
[   723.359] (--) NVIDIA(0):     option
[   723.359] (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
[   723.359] (==) NVIDIA(1): RGB weight 888
[   723.359] (==) NVIDIA(1): Default visual is TrueColor
[   723.359] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
[   723.359] (**) NVIDIA(1): Option "Stereo" "0"
[   723.359] (**) NVIDIA(1): Option "SLI" "Off"
[   723.359] (**) NVIDIA(1): Option "MultiGPU" "Off"
[   723.359] (**) NVIDIA(1): Option "BaseMosaic" "off"
[   723.359] (**) NVIDIA(1): Stereo disabled by request
[   723.359] (**) NVIDIA(1): NVIDIA SLI disabled.
[   723.359] (**) NVIDIA(1): NVIDIA Multi-GPU disabled.
[   723.359] (II) NVIDIA(1): NVIDIA GPU GeForce GTX 680 (GK104) at PCI:1:0:0 (GPU-0)
[   723.359] (--) NVIDIA(1): Memory: 2097152 kBytes
[   723.359] (--) NVIDIA(1): VideoBIOS: 80.04.09.00.80
[   723.359] (II) NVIDIA(1): Detected PCI Express Link width: 16X
[   723.359] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
[   723.359] (**) NVIDIA(1):     device AOC N20WB (CRT-0) (Using EDID frequencies has been
[   723.359] (**) NVIDIA(1):     enabled on all display devices.)
[   723.361] (II) NVIDIA(1): Validated MetaModes:
[   723.361] (II) NVIDIA(1):     "DVI-I-0:nvidia-auto-select+0+0"
[   723.361] (II) NVIDIA(1): Virtual screen size determined to be 1680 x 1050
[   723.367] (--) NVIDIA(1): DPI set to (99, 98); computed from "UseEdidDpi" X config
[   723.367] (--) NVIDIA(1):     option
[   723.367] (**) NVIDIA(2): Depth 24, (--) framebuffer bpp 32
[   723.367] (==) NVIDIA(2): RGB weight 888
[   723.367] (==) NVIDIA(2): Default visual is TrueColor
[   723.367] (==) NVIDIA(2): Using gamma correction (1.0, 1.0, 1.0)
[   723.367] (**) NVIDIA(2): Option "Stereo" "0"
[   723.367] (**) NVIDIA(2): Option "SLI" "Off"
[   723.367] (**) NVIDIA(2): Option "MultiGPU" "Off"
[   723.367] (**) NVIDIA(2): Option "BaseMosaic" "off"
[   723.367] (**) NVIDIA(2): Stereo disabled by request
[   723.367] (**) NVIDIA(2): NVIDIA SLI disabled.
[   723.367] (**) NVIDIA(2): NVIDIA Multi-GPU disabled.
[   723.367] (**) NVIDIA(2): Option "MetaModes" "nvidia-auto-select +0+0"
[   723.367] (**) NVIDIA(2): Enabling 2D acceleration
[   723.729] (II) NVIDIA: Allocated GPU:1 (GPU-28b13547-5a10-8a92-5854-2e9ee970c5a3) @
[   723.729] (II) NVIDIA:     PCI:0000:06:00.0
[   723.761] (--) NVIDIA(0): Valid display device(s) on GPU-1 at PCI:6:0:0
[   723.761] (--) NVIDIA(0):     CRT-0
[   723.761] (--) NVIDIA(0):     CRT-1 (boot)
[   723.761] (--) NVIDIA(0):     DFP-0
[   723.761] (--) NVIDIA(0):     DFP-1
[   723.764] (--) NVIDIA(0): CRT-0: disconnected
[   723.764] (--) NVIDIA(0): CRT-0: 400.0 MHz maximum pixel clock
[   723.764] (--) NVIDIA(0): 
[   723.775] (--) NVIDIA(0): DELL E196FP (CRT-1): connected
[   723.775] (--) NVIDIA(0): DELL E196FP (CRT-1): 400.0 MHz maximum pixel clock
[   723.775] (--) NVIDIA(0): 
[   723.777] (--) NVIDIA(0): DFP-0: disconnected
[   723.777] (--) NVIDIA(0): DFP-0: Internal TMDS
[   723.778] (--) NVIDIA(0): DFP-0: 330.0 MHz maximum pixel clock
[   723.778] (--) NVIDIA(0): 
[   723.778] (--) NVIDIA(0): DFP-1: disconnected
[   723.778] (--) NVIDIA(0): DFP-1: Internal TMDS
[   723.778] (--) NVIDIA(0): DFP-1: 165.0 MHz maximum pixel clock
[   723.778] (--) NVIDIA(0): 
[   723.778] (II) NVIDIA(GPU-1): Found DRM driver nvidia-drm (20150116)
[   723.778] (II) NVIDIA(2): NVIDIA GPU GeForce GT 610 (GF119) at PCI:6:0:0 (GPU-1)
[   723.778] (--) NVIDIA(2): Memory: 1048576 kBytes
[   723.778] (--) NVIDIA(2): VideoBIOS: 75.19.72.00.00
[   723.779] (II) NVIDIA(2): Detected PCI Express Link width: 16X
[   723.779] (**) NVIDIA(2): Using HorizSync/VertRefresh ranges from the EDID for display
[   723.779] (**) NVIDIA(2):     device DELL E196FP (CRT-1) (Using EDID frequencies has
[   723.779] (**) NVIDIA(2):     been enabled on all display devices.)
[   723.780] (II) NVIDIA(2): Validated MetaModes:
[   723.780] (II) NVIDIA(2):     "nvidia-auto-select+0+0"
[   723.780] (II) NVIDIA(2): Virtual screen size determined to be 1280 x 1024
[   723.783] (--) NVIDIA(2): DPI set to (85, 86); computed from "UseEdidDpi" X config
[   723.783] (--) NVIDIA(2):     option
[   723.783] (--) Depth 24 pixmap format is 32 bpp
[   723.784] (II) NVIDIA: Using 3072.00 MB of virtual memory for indirect memory
[   723.784] (II) NVIDIA:     access.
[   723.816] (II) NVIDIA(0): Setting mode "HDMI-0:nvidia-auto-select+0+0"
[   723.874] (==) NVIDIA(0): Disabling shared memory pixmaps
[   723.874] (==) NVIDIA(0): Backing store disabled
[   723.874] (==) NVIDIA(0): Silken mouse enabled
[   723.874] (**) NVIDIA(0): DPMS enabled
[   723.874] (II) Loading sub module "dri2"
[   723.874] (II) LoadModule: "dri2"
[   723.874] (II) Module "dri2" already built-in
[   723.874] (II) NVIDIA(0): [DRI2] Setup complete
[   723.874] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[   723.874] (WW) NVIDIA(0): Not registering RandR
[   723.874] (==) RandR enabled
[   723.907] (II) NVIDIA(1): Setting mode "DVI-I-0:nvidia-auto-select+0+0"
[   723.940] (==) NVIDIA(1): Disabling shared memory pixmaps
[   723.940] (==) NVIDIA(1): Backing store disabled
[   723.940] (==) NVIDIA(1): Silken mouse enabled
[   723.940] (**) NVIDIA(1): DPMS enabled
[   723.940] (II) Loading sub module "dri2"
[   723.940] (II) LoadModule: "dri2"
[   723.940] (II) Module "dri2" already built-in
[   723.940] (II) NVIDIA(1): [DRI2] Setup complete
[   723.940] (II) NVIDIA(1): [DRI2]   VDPAU driver: nvidia
[   723.940] (WW) NVIDIA(1): Not registering RandR
[   723.940] (==) RandR enabled
[   723.973] (II) NVIDIA(2): Setting mode "nvidia-auto-select+0+0"
[   723.996] (==) NVIDIA(2): Disabling shared memory pixmaps
[   723.996] (==) NVIDIA(2): Backing store disabled
[   723.996] (==) NVIDIA(2): Silken mouse enabled
[   723.996] (**) NVIDIA(2): DPMS enabled
[   723.996] (II) Loading sub module "dri2"
[   723.996] (II) LoadModule: "dri2"
[   723.996] (II) Module "dri2" already built-in
[   723.996] (II) NVIDIA(2): [DRI2] Setup complete
[   723.996] (II) NVIDIA(2): [DRI2]   VDPAU driver: nvidia
[   723.996] (WW) NVIDIA(2): Not registering RandR
[   723.996] (==) RandR enabled
[   723.999] (II) Initializing extension GLX
[   723.999] (II) Indirect GLX disabled.(WW) NVIDIA(2): The GPU driving screen 2 is incompatible with the rest of the
[   724.117] (WW) NVIDIA(2):     GPUs composing the desktop.  OpenGL and VDPAU rendering
[   724.117] (WW) NVIDIA(2):     will be disabled on screen 2.
[   724.142] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[   724.142] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   724.142] (II) LoadModule: "evdev"
[   724.142] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[   724.142] (II) Module evdev: vendor="X.Org Foundation"
[   724.142] 	compiled for 1.17.1, module version = 2.9.2
[   724.142] 	Module class: X.Org XInput Driver
[   724.142] 	ABI class: X.Org XInput driver, version 21.0
[   724.142] (II) Using input driver 'evdev' for 'Power Button'
[   724.142] (**) Power Button: always reports core events
[   724.142] (**) evdev: Power Button: Device: "/dev/input/event1"
[   724.142] (--) evdev: Power Button: Vendor 0 Product 0x1
[   724.142] (--) evdev: Power Button: Found keys
[   724.142] (II) evdev: Power Button: Configuring as keyboard
[   724.142] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[   724.142] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[   724.142] (**) Option "xkb_rules" "evdev"
[   724.142] (**) Option "xkb_model" "pc104"
[   724.142] (**) Option "xkb_layout" "us"
[   724.160] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[   724.160] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[   724.160] (II) Using input driver 'evdev' for 'Power Button'
[   724.160] (**) Power Button: always reports core events
[   724.160] (**) evdev: Power Button: Device: "/dev/input/event0"
[   724.160] (--) evdev: Power Button: Vendor 0 Product 0x1
[   724.160] (--) evdev: Power Button: Found keys
[   724.160] (II) evdev: Power Button: Configuring as keyboard
[   724.160] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0/event0"
[   724.160] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[   724.160] (**) Option "xkb_rules" "evdev"
[   724.160] (**) Option "xkb_model" "pc104"
[   724.160] (**) Option "xkb_layout" "us"
[   724.160] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event15)
[   724.160] (II) No input driver specified, ignoring this device.
[   724.160] (II) This device may have been added with another device file.
[   724.160] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event16)
[   724.160] (II) No input driver specified, ignoring this device.
[   724.160] (II) This device may have been added with another device file.
[   724.161] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event19)
[   724.161] (II) No input driver specified, ignoring this device.
[   724.161] (II) This device may have been added with another device file.
[   724.161] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event20)
[   724.161] (II) No input driver specified, ignoring this device.
[   724.161] (II) This device may have been added with another device file.
[   724.161] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event17)
[   724.161] (II) No input driver specified, ignoring this device.
[   724.161] (II) This device may have been added with another device file.
[   724.161] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event18)
[   724.161] (II) No input driver specified, ignoring this device.
[   724.161] (II) This device may have been added with another device file.
[   724.162] (II) config/udev: Adding input device Xbox Airflo wired controller (/dev/input/event5)
[   724.162] (II) No input driver specified, ignoring this device.
[   724.162] (II) This device may have been added with another device file.
[   724.162] (II) config/udev: Adding input device Xbox Airflo wired controller (/dev/input/js0)
[   724.162] (II) No input driver specified, ignoring this device.
[   724.162] (II) This device may have been added with another device file.
[   724.162] (II) config/udev: Adding input device VF0610 Live! Cam Socialize HD (/dev/input/event21)
[   724.162] (**) VF0610 Live! Cam Socialize HD: Applying InputClass "evdev keyboard catchall"
[   724.162] (II) Using input driver 'evdev' for 'VF0610 Live! Cam Socialize HD'
[   724.162] (**) VF0610 Live! Cam Socialize HD: always reports core events
[   724.162] (**) evdev: VF0610 Live! Cam Socialize HD: Device: "/dev/input/event21"
[   724.162] (--) evdev: VF0610 Live! Cam Socialize HD: Vendor 0x41e Product 0x4080
[   724.162] (--) evdev: VF0610 Live! Cam Socialize HD: Found keys
[   724.162] (II) evdev: VF0610 Live! Cam Socialize HD: Configuring as keyboard
[   724.162] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:12.2/usb1/1-4/1-4:1.0/input/input21/event21"
[   724.162] (II) XINPUT: Adding extended input device "VF0610 Live! Cam Socialize HD" (type: KEYBOARD, id 8)
[   724.162] (**) Option "xkb_rules" "evdev"
[   724.162] (**) Option "xkb_model" "pc104"
[   724.163] (**) Option "xkb_layout" "us"
[   724.163] (II) config/udev: Adding input device Dell Premium USB Optical Mouse (/dev/input/event3)
[   724.163] (**) Dell Premium USB Optical Mouse: Applying InputClass "evdev pointer catchall"
[   724.163] (II) Using input driver 'evdev' for 'Dell Premium USB Optical Mouse'
[   724.163] (**) Dell Premium USB Optical Mouse: always reports core events
[   724.163] (**) evdev: Dell Premium USB Optical Mouse: Device: "/dev/input/event3"
[   724.216] (--) evdev: Dell Premium USB Optical Mouse: Vendor 0x413c Product 0x3016
[   724.216] (--) evdev: Dell Premium USB Optical Mouse: Found 14 mouse buttons
[   724.216] (--) evdev: Dell Premium USB Optical Mouse: Found scroll wheel(s)
[   724.216] (--) evdev: Dell Premium USB Optical Mouse: Found relative axes
[   724.216] (--) evdev: Dell Premium USB Optical Mouse: Found x and y relative axes
[   724.216] (II) evdev: Dell Premium USB Optical Mouse: Configuring as mouse
[   724.216] (II) evdev: Dell Premium USB Optical Mouse: Adding scrollwheel support
[   724.216] (**) evdev: Dell Premium USB Optical Mouse: YAxisMapping: buttons 4 and 5
[   724.216] (**) evdev: Dell Premium USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[   724.216] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:13.0/usb10/10-1/10-1:1.0/0003:413C:3016.0001/input/input3/event3"
[   724.216] (II) XINPUT: Adding extended input device "Dell Premium USB Optical Mouse" (type: MOUSE, id 9)
[   724.216] (II) evdev: Dell Premium USB Optical Mouse: initialized for relative axes.
[   724.217] (**) Dell Premium USB Optical Mouse: (accel) keeping acceleration scheme 1
[   724.217] (**) Dell Premium USB Optical Mouse: (accel) acceleration profile 0
[   724.217] (**) Dell Premium USB Optical Mouse: (accel) acceleration factor: 2.000
[   724.217] (**) Dell Premium USB Optical Mouse: (accel) acceleration threshold: 4
[   724.217] (II) config/udev: Adding input device Dell Premium USB Optical Mouse (/dev/input/mouse0)
[   724.217] (II) No input driver specified, ignoring this device.
[   724.217] (II) This device may have been added with another device file.
[   724.217] (II) config/udev: Adding input device HDA ATI SB Line Out Front (/dev/input/event10)
[   724.217] (II) No input driver specified, ignoring this device.
[   724.217] (II) This device may have been added with another device file.
[   724.217] (II) config/udev: Adding input device HDA ATI SB Line Out Surround (/dev/input/event11)
[   724.217] (II) No input driver specified, ignoring this device.
[   724.217] (II) This device may have been added with another device file.
[   724.218] (II) config/udev: Adding input device HDA ATI SB Line Out CLFE (/dev/input/event12)
[   724.218] (II) No input driver specified, ignoring this device.
[   724.218] (II) This device may have been added with another device file.
[   724.218] (II) config/udev: Adding input device HDA ATI SB Line Out Side (/dev/input/event13)
[   724.218] (II) No input driver specified, ignoring this device.
[   724.218] (II) This device may have been added with another device file.
[   724.218] (II) config/udev: Adding input device HDA ATI SB Front Headphone (/dev/input/event14)
[   724.218] (II) No input driver specified, ignoring this device.
[   724.218] (II) This device may have been added with another device file.
[   724.218] (II) config/udev: Adding input device HDA ATI SB Front Mic (/dev/input/event7)
[   724.218] (II) No input driver specified, ignoring this device.
[   724.218] (II) This device may have been added with another device file.
[   724.218] (II) config/udev: Adding input device HDA ATI SB Rear Mic (/dev/input/event8)
[   724.218] (II) No input driver specified, ignoring this device.
[   724.219] (II) This device may have been added with another device file.
[   724.219] (II) config/udev: Adding input device HDA ATI SB Line (/dev/input/event9)
[   724.219] (II) No input driver specified, ignoring this device.
[   724.219] (II) This device may have been added with another device file.
[   724.219] (II) config/udev: Adding input device Eee PC WMI hotkeys (/dev/input/event6)
[   724.219] (**) Eee PC WMI hotkeys: Applying InputClass "evdev keyboard catchall"
[   724.219] (II) Using input driver 'evdev' for 'Eee PC WMI hotkeys'
[   724.219] (**) Eee PC WMI hotkeys: always reports core events
[   724.219] (**) evdev: Eee PC WMI hotkeys: Device: "/dev/input/event6"
[   724.219] (--) evdev: Eee PC WMI hotkeys: Vendor 0 Product 0
[   724.219] (--) evdev: Eee PC WMI hotkeys: Found keys
[   724.219] (II) evdev: Eee PC WMI hotkeys: Configuring as keyboard
[   724.219] (**) Option "config_info" "udev:/sys/devices/platform/eeepc-wmi/input/input6/event6"
[   724.219] (II) XINPUT: Adding extended input device "Eee PC WMI hotkeys" (type: KEYBOARD, id 10)
[   724.219] (**) Option "xkb_rules" "evdev"
[   724.219] (**) Option "xkb_model" "pc104"
[   724.219] (**) Option "xkb_layout" "us"
[   724.219] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[   724.219] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[   724.220] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[   724.220] (**) AT Translated Set 2 keyboard: always reports core events
[   724.220] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2"
[   724.220] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[   724.220] (--) evdev: AT Translated Set 2 keyboard: Found keys
[   724.220] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[   724.220] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[   724.220] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 11)
[   724.220] (**) Option "xkb_rules" "evdev"
[   724.220] (**) Option "xkb_model" "pc104"
[   724.220] (**) Option "xkb_layout" "us"
[   724.220] (II) config/udev: Adding input device PC Speaker (/dev/input/event4)
[   724.220] (II) No input driver specified, ignoring this device.
[   724.220] (II) This device may have been added with another device file.
[   725.473] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   725.473] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   725.473] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   725.473] (--) NVIDIA(GPU-0): 
[   725.485] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   725.485] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   725.485] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   725.485] (--) NVIDIA(GPU-0): 
[   727.927] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   727.927] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   727.927] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock
[   727.927] (--) NVIDIA(GPU-0): 
[   727.939] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): connected
[   727.939] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): Internal TMDS
[   727.939] (--) NVIDIA(GPU-0): LG Electronics 2D FHD LG TV (DFP-1): 340.0 MHz maximum pixel clock

3rd set
xorg.conf

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    Option         "Xinerama" "0"
EndSection

Section "Files"
EndSection

Section "Module"
    Load           "dbe"
    Load           "extmod"
    Load           "type1"
    Load           "freetype"
    Load           "glx"
EndSection

Section "InputDevice"

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

Section "InputDevice"

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

Section "Monitor"

    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "AOC N20WB"
    HorizSync       30.0 - 83.0
    VertRefresh     50.0 - 76.0
    Option         "DPMS"
EndSection

Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GTX 680"
    BusID          "PCI:1:0:0"
EndSection

Section "Screen"

# Removed Option "metamodes" "GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.DVI-I-0: nvidia-auto-select +1920+0, GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.HDMI-0: nvidia-auto-select +0+0, GPU-28b13547-5a10-8a92-5854-2e9ee970c5a3.VGA-0: nvidia-auto-select +3600+0"
# Removed Option "metamodes" "GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.HDMI-0: nvidia-auto-select +0+0, GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.DVI-I-0: nvidia-auto-select +1920+0, GPU-28b13547-5a10-8a92-5854-2e9ee970c5a3.VGA-0: nvidia-auto-select +3600+0"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "nvidiaXineramaInfoOrder" "DFP-1"
    Option         "metamodes" "GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.DVI-I-0: nvidia-auto-select +1920+0, GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.HDMI-0: nvidia-auto-select +0+0, GPU-28b13547-5a10-8a92-5854-2e9ee970c5a3.VGA-0: nvidia-auto-select +3600+0"
    Option         "MultiGPU" "Off"
    Option         "SLI" "off"
    Option         "BaseMosaic" "on"
    SubSection     "Display"
        Depth       24
    EndSubSection
EndSection

xorg.log

[   854.803] 
X.Org X Server 1.17.2
Release Date: 2015-06-16
[   854.803] X Protocol Version 11, Revision 0
[   854.803] Build Operating System: Linux 4.1.6-1-ARCH x86_64 
[   854.803] Current Operating System: Linux NightDreamer 4.2.4-1-ARCH #1 SMP PREEMPT Fri Oct 23 07:32:38 CEST 2015 x86_64
[   854.803] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/mapper/primary-rootvol cryptdevice=/dev/disk/by-id/wwn-0x5000c5002ed43700 cryptkey=../dontBootMe.img rw initrd=../initramfs-linux.img
[   854.803] Build Date: 17 October 2015  11:08:10AM
[   854.803]  
[   854.803] Current version of pixman: 0.32.8
[   854.803] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[   854.803] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[   854.804] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Oct 28 15:30:15 2015
[   854.804] (==) Using config file: "/etc/X11/xorg.conf"
[   854.804] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[   854.804] (==) ServerLayout "Layout0"
[   854.804] (**) |-->Screen "Screen0" (0)
[   854.804] (**) |   |-->Monitor "Monitor0"
[   854.804] (**) |   |-->Device "Device0"
[   854.804] (**) |-->Input Device "Keyboard0"
[   854.804] (**) |-->Input Device "Mouse0"
[   854.804] (**) Option "Xinerama" "0"
[   854.804] (==) Automatically adding devices
[   854.804] (==) Automatically enabling devices
[   854.804] (==) Automatically adding GPU devices
[   854.804] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi/".
[   854.804] 	Entry deleted from font path.
[   854.804] 	(Run 'mkfontdir' on "/usr/share/fonts/100dpi/").
[   854.804] (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi/".
[   854.804] 	Entry deleted from font path.
[   854.804] 	(Run 'mkfontdir' on "/usr/share/fonts/75dpi/").
[   854.804] (==) FontPath set to:
	/usr/share/fonts/misc/,
	/usr/share/fonts/TTF/,
	/usr/share/fonts/OTF/,
	/usr/share/fonts/Type1/
[   854.804] (==) ModulePath set to "/usr/lib/xorg/modules"
[   854.804] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[   854.804] (WW) Disabling Keyboard0
[   854.804] (WW) Disabling Mouse0
[   854.804] (II) Loader magic: 0x817d60
[   854.804] (II) Module ABI versions:
[   854.804] 	X.Org ANSI C Emulation: 0.4
[   854.804] 	X.Org Video Driver: 19.0
[   854.804] 	X.Org XInput driver : 21.1
[   854.804] 	X.Org Server Extension : 9.0
[   854.805] (EE) systemd-logind: failed to get session: PID 29721 does not belong to any known session
[   854.805] (II) xfree86: Adding drm device (/dev/dri/card0)
[   854.805] (II) xfree86: Adding drm device (/dev/dri/card1)
[   854.807] (--) PCI:*(0:1:0:0) 10de:1180:3842:2680 rev 161, Mem @ 0xfd000000/16777216, 0xd0000000/134217728, 0xd8000000/33554432, I/O @ 0x0000e000/128, BIOS @ 0x????????/524288
[   854.807] (--) PCI: (0:6:0:0) 10de:104a:1462:809f rev 161, Mem @ 0xfb000000/16777216, 0xc0000000/134217728, 0xc8000000/33554432, I/O @ 0x0000b000/128, BIOS @ 0x????????/524288
[   854.807] (II) Open ACPI successful (/var/run/acpid.socket)
[   854.807] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[   854.807] (II) LoadModule: "dbe"
[   854.807] (II) Module "dbe" already built-in
[   854.807] (II) LoadModule: "extmod"
[   854.807] (II) Module "extmod" already built-in
[   854.807] (II) LoadModule: "glx"
[   854.807] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[   854.812] (II) Module glx: vendor="NVIDIA Corporation"
[   854.812] 	compiled for 4.0.2, module version = 1.0.0
[   854.812] 	Module class: X.Org Server Extension
[   854.812] (II) NVIDIA GLX Module  355.11  Wed Aug 26 16:02:11 PDT 2015
[   854.812] (II) LoadModule: "nvidia"
[   854.812] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
[   854.812] (II) Module nvidia: vendor="NVIDIA Corporation"
[   854.812] 	compiled for 4.0.2, module version = 1.0.0
[   854.812] 	Module class: X.Org Video Driver
[   854.812] (II) NVIDIA dlloader X Driver  355.11  Wed Aug 26 15:38:55 PDT 2015
[   854.812] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[   854.812] (++) using VT number 7

[   854.819] (II) Loading sub module "fb"
[   854.819] (II) LoadModule: "fb"
[   854.819] (II) Loading /usr/lib/xorg/modules/libfb.so
[   854.819] (II) Module fb: vendor="X.Org Foundation"
[   854.819] 	compiled for 1.17.2, module version = 1.0.0
[   854.819] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   854.819] (II) Loading sub module "wfb"
[   854.819] (II) LoadModule: "wfb"
[   854.819] (II) Loading /usr/lib/xorg/modules/libwfb.so
[   854.819] (II) Module wfb: vendor="X.Org Foundation"
[   854.819] 	compiled for 1.17.2, module version = 1.0.0
[   854.819] 	ABI class: X.Org ANSI C Emulation, version 0.4
[   854.819] (II) Loading sub module "ramdac"
[   854.819] (II) LoadModule: "ramdac"
[   854.820] (II) Module "ramdac" already built-in
[   854.820] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[   854.820] (==) NVIDIA(0): RGB weight 888
[   854.820] (==) NVIDIA(0): Default visual is TrueColor
[   854.820] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[   854.820] (**) NVIDIA(0): Option "Stereo" "0"
[   854.820] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "DFP-1"
[   854.820] (**) NVIDIA(0): Option "SLI" "off"
[   854.820] (**) NVIDIA(0): Option "MultiGPU" "Off"
[   854.820] (**) NVIDIA(0): Option "BaseMosaic" "on"
[   854.820] (**) NVIDIA(0): Stereo disabled by request
[   854.820] (**) NVIDIA(0): NVIDIA SLI disabled.
[   854.820] (**) NVIDIA(0): NVIDIA Multi-GPU disabled.
[   854.820] (**) NVIDIA(0): Option "MetaModes" "GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.HDMI-0: nvidia-auto-select +0+0, GPU-827d5f6c-13ce-5010-bf81-0ec8d6ee13c1.DVI-I-0: nvidia-auto-select +1920+0, GPU-28b13547-5a10-8a92-5854-2e9ee970c5a3.VGA-0: nvidia-auto-select +3600+0"
[   854.820] (**) NVIDIA(0): Enabling 2D acceleration
[   855.562] (EE) NVIDIA(GPU-0): Failed to find a valid Base Mosaic configuration.
[   855.562] (EE) NVIDIA(GPU-0): Invalid Base Mosaic configuration 1 of 1:
[   855.562] (EE) NVIDIA(GPU-0): GPUs:
[   855.562] (EE) NVIDIA(GPU-0):     1) NVIDIA GPU at PCI:1:0:0
[   855.562] (EE) NVIDIA(GPU-0):     2) NVIDIA GPU at PCI:6:0:0
[   855.562] (EE) NVIDIA(GPU-0): Errors:
[   855.562] (EE) NVIDIA(GPU-0):     - The video link was not detected
[   855.562] (EE) NVIDIA(GPU-0):     - Unsupported GPU
[   855.562] (EE) NVIDIA(GPU-0):     - Chipset not approved for SLI
[   855.562] (EE) NVIDIA(GPU-0):     - GPU PCI IDs do not match
[   855.562] (WW) NVIDIA(GPU-0): Failed to find a valid Base Mosaic configuration for the
[   855.562] (WW) NVIDIA(GPU-0):     NVIDIA graphics device PCI:1:0:0. Please see Chapter 28:
[   855.563] (WW) NVIDIA(GPU-0):     Configuring SLI and Multi-GPU FrameRendering in the README
[   855.563] (WW) NVIDIA(GPU-0):     for troubleshooting suggestions.

Lightweight software dose not mean less! It just means you have to get your finger out and make it do and look like you want!

Offline

#6 2015-10-28 16:10:13

StaticPhilly
Member
From: UK
Registered: 2009-05-15
Posts: 53

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

just been doing some reading more reading on the xinerama setup - basiclly de's like gnome, kde require full composite, xinerama setups require you do disable composite - hence why its crashing on login
so it looks like xinerama is out of the question...

Last edited by StaticPhilly (2015-10-28 16:10:34)


Lightweight software dose not mean less! It just means you have to get your finger out and make it do and look like you want!

Offline

#7 2015-10-29 13:05:52

Lone_Wolf
Administrator
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 15,167

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

Mosaic :

nvidia 355.11 readmefile wrote:

Base Mosaic is supported on SLI configurations up to  three display devices.
<snip>
28E. HARDWARE REQUIREMENTS

SLI functionality requires:

   o Identical PCI Express graphics cards

That does rule out using Base Mosaic and matches set 3 Xorg log.

--------------------------------
TwinView (set 1 ?)

arch wiki wrote:

You want only one big screen instead of two. Set the TwinView argument to 1. This option should be used if you desire compositing. TwinView only works on a per card basis, when all participating monitors are connected to the same card.

-------------------------
Looks to me like you got these options :
- use compositing WMs (gnome mutter, KDE KWin etc) with set 1
- switch to a non-compositing WM with set 2 / xinerama

- Buy another GTX 680 or GT 610 so you can use sli with compositing

The combination you prefer of composite on 1 big screen using multiple monitors is just not possible with Nvidia cards due to limitations in Nvidia SLI, Twinview and Mosaic protocols.

Last edited by Lone_Wolf (2015-10-29 13:07:16)


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.

clean chroot building not flexible enough ?
Try clean chroot manager by graysky

Online

#8 2015-10-29 13:53:37

StaticPhilly
Member
From: UK
Registered: 2009-05-15
Posts: 53

Re: two gfx cards, 3 monitors = why i cant use linux as my primary

ah that sucks,

thanks for the info long_wolf.
To be honest its looking more and more to me like NVidia is loosing its dual card compat, even on windows in having to use an older windows 8 driver (that doesn't check for windows 10) in order to have both cards working with the wddm issues.

What I might do is wait for NVidia to put in wayland support (looking at the latest beta driver its not going to be long) and see if I can highjack waylands rendering to force it to render into 3 textures, then using two/three full-screen windows draw the final texture.
I'm thinking that the performance hit of doing this is going to be low, yes its going to take up the 3 textures worth of gfx memory but I will then only have to add one small render pass with a 4 vertex x 6 index buffer per screen to draw the texture.

Something I'm going to look into smile

anyway,
Thanks again for the help


Lightweight software dose not mean less! It just means you have to get your finger out and make it do and look like you want!

Offline

Board footer

Powered by FluxBB