Page 2 of 6 FirstFirst 1234 ... LastLast
Results 11 to 20 of 52

Thread: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

  1. #11
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    I did that config and its the same as before. I need compositing for gnome 3 and compiz. with this config, it defaults to gnome classic, instead of gnome 3 with effects.
    Teardrop on the fire.... Fearless on my breath....

  2. #12
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    I assume you mean you removed the keyboard and mouse and commented out the Extensions section. And that didn't change anything. Compiz still won't function.

    What happens when you comment out the glx or Module section?

  3. #13
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    yes. I removed the keyb and mouse stuff. I added the config you posted. But I do need compiz to function. Any ideas on how to do this?
    Teardrop on the fire.... Fearless on my breath....

  4. #14
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    dont I need the glx stuff in the module section for compositing to work and compiz/gnome3 to play nice?
    Teardrop on the fire.... Fearless on my breath....

  5. #15
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    Don't know for sure. That's why I'm asking you to comment it and Extensions out rather than remove them. Trying to find out what the baseline is for the 3 monitors working, although without compositing. That way we'll know what changes are needed for compositing if you figure it out.

    The Nvidia dev.s still configure a lot of deprecated stuff because Xorg still supports it. The mouse and keyboard are examples. I understand why, they don't want to clutter the code with conditionals checking which X Server they're in. Makes the code easier to maintain, less likely to break, and makes backward compatability easier.

    But remember the guy I linked you too before: http://ubuntuforums.org/showpost.php...7&postcount=11 has:
    Code:
    Section "Module"
    	Load           "dbe"
    	Load           "extmod"
    	Load           "type1"
    	Load           "freetype"
    	Load	"glx"
    EndSection
    
    Section "Extensions"
    	Option         "Composite" "Enable"
    EndSection
    Notice the "Composite" "Enable". Plus extra entries in "ServerLayout":
    Code:
    	Option         "AIGLX" "true"
    	Option         "RenderAccel" "true"
    	Option         "AllowGLXWithComposite" "true"
    	Option         "XGL" "true"
    While he doesn't explicitly state it he seems to have compositing.

  6. #16
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    I tried to comment the module section and the extensions section, and it made the screens (left, center) hooked to the GT 240 have blank screens, and the 3rd screen on the 8600 (right screen) has the gnome 3 running with compiz, but the mouse will not click on the images. I have to use the mouse on the far left screen to make it click on the 3rd screen. Basically, my mouse still thinks monitor0 (left) is the right one, but monitor2 (right) shows the output.

    This is what I had:

    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" RightOf "Screen1"
    Option "Xinerama" "1"
    EndSection

    Section "Files"
    EndSection

    #Section "Module"
    #Load "glx"
    #EndSection

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

    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Acer"
    ModelName "20 Inch"
    HorizSync 24.0 - 82.0
    VertRefresh 48.0 - 76.0
    Option "DPMS"
    EndSection

    Section "Monitor"
    Identifier "Monitor1"
    VendorName "HP"
    ModelName "MidPuta"
    HorizSync 24.0 - 82.0
    VertRefresh 48.0 - 76.0
    Option "DPMS"
    EndSection

    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Samsung"
    ModelName "10 Inch"
    HorizSync 24.0 - 82.0
    VertRefresh 48.0 - 76.0
    Option "DPMS"
    EndSection

    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GT 240"
    BusID "PCI:3:0:0"
    Screen 0
    EndSection

    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GT 240"
    BusID "PCI:3:0:0"
    Screen 1
    EndSection

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

    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "DFP-1: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection


    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "CRT-1: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection

    Section "Screen"
    Identifier "Screen2"
    Device "Device2"
    Monitor "Monitor2"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "DFP-0: nvidia-auto-select +0+0"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    Teardrop on the fire.... Fearless on my breath....

  7. #17
    Join Date
    Nov 2008
    Beans
    9,635
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    OK try the other way:
    Code:
    Section "Module"
    Load "glx"
    EndSection
    
    Section "Extensions"
    Option "Composite" "Enabled"
    EndSection
    If that seems to work, but still without compositing try adding to "ServerLayout"
    Code:
    	Option         "AllowGLXWithComposite" "true"

  8. #18
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    Ok. Im trying it right now. Here is my log file for xorg.conf. Maybe this will help?

    Code:
    [  1869.983] 
    X.Org X Server 1.11.3
    Release Date: 2011-12-16
    [  1869.983] X Protocol Version 11, Revision 0
    [  1869.984] Build Operating System: Linux 2.6.42-23-generic x86_64 Ubuntu
    [  1869.984] Current Operating System: Linux TIFA 3.2.0-32-generic #51-Ubuntu SMP Wed Sep 26 21:33:09 UTC 2012 x86_64
    [  1869.984] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-32-generic root=UUID=cffe6d68-aaae-462f-9d3a-10f563f553d9 ro quiet splash vt.handoff=7
    [  1869.984] Build Date: 29 August 2012  12:12:33AM
    [  1869.984] xorg-server 2:1.11.4-0ubuntu10.8 (For technical support please see http://www.ubuntu.com/support) 
    [  1869.984] Current version of pixman: 0.24.4
    [  1869.984] 	Before reporting problems, check http://wiki.x.org
    	to make sure that you have the latest version.
    [  1869.984] Markers: (--) probed, (**) from config file, (==) default setting,
    	(++) from command line, (!!) notice, (II) informational,
    	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [  1869.984] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 14 12:29:04 2012
    [  1869.984] (==) Using config file: "/etc/X11/xorg.conf"
    [  1869.984] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [  1869.984] (==) ServerLayout "Layout0"
    [  1869.984] (**) |-->Screen "Screen0" (0)
    [  1869.984] (**) |   |-->Monitor "Monitor0"
    [  1869.984] (**) |   |-->Device "Device0"
    [  1869.984] (**) |-->Screen "Screen1" (1)
    [  1869.984] (**) |   |-->Monitor "Monitor1"
    [  1869.984] (**) |   |-->Device "Device1"
    [  1869.984] (**) |-->Screen "Screen2" (2)
    [  1869.984] (**) |   |-->Monitor "Monitor2"
    [  1869.984] (**) |   |-->Device "Device2"
    [  1869.984] (**) Option "Xinerama" "1"
    [  1869.984] (**) Option "AIGLX" "true"
    [  1869.984] (==) Automatically adding devices
    [  1869.984] (==) Automatically enabling devices
    [  1869.984] (**) Xinerama: enabled
    [  1869.984] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
    [  1869.984] 	Entry deleted from font path.
    [  1869.984] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
    [  1869.985] 	Entry deleted from font path.
    [  1869.985] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
    [  1869.985] 	Entry deleted from font path.
    [  1869.985] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
    [  1869.985] 	Entry deleted from font path.
    [  1869.985] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
    [  1869.985] 	Entry deleted from font path.
    [  1869.985] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
    [  1869.985] 	Entry deleted from font path.
    [  1869.985] (==) FontPath set to:
    	/usr/share/fonts/X11/misc,
    	/usr/share/fonts/X11/Type1,
    	built-ins
    [  1869.985] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
    [  1869.985] (**) Extension "Composite" is disabled
    [  1869.985] (II) The server relies on udev to provide the list of input devices.
    	If no devices become available, reconfigure udev or disable AutoAddDevices.
    [  1869.985] (II) Loader magic: 0x7fa6ad5e4b00
    [  1869.985] (II) Module ABI versions:
    [  1869.985] 	X.Org ANSI C Emulation: 0.4
    [  1869.985] 	X.Org Video Driver: 11.0
    [  1869.985] 	X.Org XInput driver : 16.0
    [  1869.985] 	X.Org Server Extension : 6.0
    [  1869.986] (--) PCI:*(0:3:0:0) 10de:0ca3:196e:0789 rev 162, Mem @ 0xec000000/16777216, 0xb0000000/268435456, 0xce000000/33554432, I/O @ 0x0000dc00/128, BIOS @ 0x????????/524288
    [  1869.986] (--) PCI: (0:6:0:0) 10de:0402:196e:043a rev 161, Mem @ 0xea000000/16777216, 0x80000000/536870912, 0xe8000000/33554432, I/O @ 0x0000ac00/128, BIOS @ 0x????????/131072
    [  1869.986] (II) Open ACPI successful (/var/run/acpid.socket)
    [  1869.986] (II) "extmod" will be loaded. This was enabled by default and also specified in the config file.
    [  1869.986] (II) "dbe" will be loaded. This was enabled by default and also specified in the config file.
    [  1869.986] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [  1869.986] (II) "record" will be loaded by default.
    [  1869.986] (II) "dri" will be loaded by default.
    [  1869.986] (II) "dri2" will be loaded by default.
    [  1869.986] (II) LoadModule: "dbe"
    [  1869.986] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [  1869.986] (II) Module dbe: vendor="X.Org Foundation"
    [  1869.986] 	compiled for 1.11.3, module version = 1.0.0
    [  1869.986] 	Module class: X.Org Server Extension
    [  1869.986] 	ABI class: X.Org Server Extension, version 6.0
    [  1869.986] (II) Loading extension DOUBLE-BUFFER
    [  1869.986] (II) LoadModule: "extmod"
    [  1869.986] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [  1869.986] (II) Module extmod: vendor="X.Org Foundation"
    [  1869.986] 	compiled for 1.11.3, module version = 1.0.0
    [  1869.986] 	Module class: X.Org Server Extension
    [  1869.986] 	ABI class: X.Org Server Extension, version 6.0
    [  1869.986] (II) Loading extension MIT-SCREEN-SAVER
    [  1869.986] (II) Loading extension XFree86-VidModeExtension
    [  1869.986] (II) Loading extension XFree86-DGA
    [  1869.986] (II) Loading extension DPMS
    [  1869.986] (II) Loading extension XVideo
    [  1869.986] (II) Loading extension XVideo-MotionCompensation
    [  1869.986] (II) Loading extension X-Resource
    [  1869.986] (II) LoadModule: "glx"
    [  1869.987] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/libglx.so
    [  1870.000] (II) Module glx: vendor="NVIDIA Corporation"
    [  1870.000] 	compiled for 4.0.2, module version = 1.0.0
    [  1870.000] 	Module class: X.Org Server Extension
    [  1870.000] (II) NVIDIA GLX Module  295.40  Thu Apr  5 21:57:38 PDT 2012
    [  1870.000] (II) Loading extension GLX
    [  1870.000] (II) LoadModule: "record"
    [  1870.000] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [  1870.000] (II) Module record: vendor="X.Org Foundation"
    [  1870.000] 	compiled for 1.11.3, module version = 1.13.0
    [  1870.000] 	Module class: X.Org Server Extension
    [  1870.000] 	ABI class: X.Org Server Extension, version 6.0
    [  1870.000] (II) Loading extension RECORD
    [  1870.000] (II) LoadModule: "dri"
    [  1870.000] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [  1870.001] (II) Module dri: vendor="X.Org Foundation"
    [  1870.001] 	compiled for 1.11.3, module version = 1.0.0
    [  1870.001] 	ABI class: X.Org Server Extension, version 6.0
    [  1870.001] (II) Loading extension XFree86-DRI
    [  1870.001] (II) LoadModule: "dri2"
    [  1870.001] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [  1870.001] (II) Module dri2: vendor="X.Org Foundation"
    [  1870.001] 	compiled for 1.11.3, module version = 1.2.0
    [  1870.001] 	ABI class: X.Org Server Extension, version 6.0
    [  1870.001] (II) Loading extension DRI2
    [  1870.001] (II) LoadModule: "nvidia"
    [  1870.001] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [  1870.001] (II) Module nvidia: vendor="NVIDIA Corporation"
    [  1870.001] 	compiled for 4.0.2, module version = 1.0.0
    [  1870.001] 	Module class: X.Org Video Driver
    [  1870.001] (II) NVIDIA dlloader X Driver  295.40  Thu Apr  5 21:38:35 PDT 2012
    [  1870.001] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [  1870.001] (++) using VT number 7
    
    [  1870.001] (II) Loading sub module "fb"
    [  1870.001] (II) LoadModule: "fb"
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libfb.so
    [  1870.002] (II) Module fb: vendor="X.Org Foundation"
    [  1870.002] 	compiled for 1.11.3, module version = 1.0.0
    [  1870.002] 	ABI class: X.Org ANSI C Emulation, version 0.4
    [  1870.002] (II) Loading sub module "wfb"
    [  1870.002] (II) LoadModule: "wfb"
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [  1870.002] (II) Module wfb: vendor="X.Org Foundation"
    [  1870.002] 	compiled for 1.11.3, module version = 1.0.0
    [  1870.002] 	ABI class: X.Org ANSI C Emulation, version 0.4
    [  1870.002] (II) Loading sub module "ramdac"
    [  1870.002] (II) LoadModule: "ramdac"
    [  1870.002] (II) Module "ramdac" already built-in
    [  1870.002] (WW) NVIDIA: Xinerama is enabled, so RandR has likely been disabled by the
    [  1870.002] (WW) NVIDIA:     X server.
    [  1870.002] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libfb.so
    [  1870.002] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libfb.so
    [  1870.002] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [  1870.002] (II) Loading /usr/lib/xorg/modules/libfb.so
    [  1870.002] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [  1870.002] (==) NVIDIA(0): RGB weight 888
    [  1870.002] (==) NVIDIA(0): Default visual is TrueColor
    [  1870.002] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [  1870.002] (**) NVIDIA(0): Option "TwinView" "0"
    [  1870.002] (**) NVIDIA(0): Option "MetaModes" "DFP-1: nvidia-auto-select +0+0"
    [  1870.002] (**) NVIDIA(0): Option "AddARGBGLXVisuals" "True"
    [  1870.002] (**) NVIDIA(0): Enabling 2D acceleration
    [  1870.022] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1
    [  1870.039] (II) NVIDIA(GPU-0): Display (Acer X193W+ (DFP-1)) does not support NVIDIA 3D
    [  1870.039] (II) NVIDIA(GPU-0):     Vision stereo.
    [  1870.041] (II) NVIDIA(0): NVIDIA GPU GeForce GT 240 (GT215) at PCI:3:0:0 (GPU-0)
    [  1870.041] (--) NVIDIA(0): Memory: 1048576 kBytes
    [  1870.041] (--) NVIDIA(0): VideoBIOS: 70.15.20.00.51
    [  1870.041] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [  1870.041] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [  1870.043] (--) NVIDIA(0): Connected display device(s) on GeForce GT 240 at PCI:3:0:0
    [  1870.043] (--) NVIDIA(0):     CRT-1
    [  1870.043] (--) NVIDIA(0):     Acer X193W+ (DFP-1)
    [  1870.043] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [  1870.043] (--) NVIDIA(0): Acer X193W+ (DFP-1): 165.0 MHz maximum pixel clock
    [  1870.043] (--) NVIDIA(0): Acer X193W+ (DFP-1): Internal Single Link TMDS
    [  1870.043] (II) NVIDIA(0): Display Device found referenced in MetaMode: DFP-1
    [  1870.043] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [  1870.043] (**) NVIDIA(0):     device Acer X193W+ (DFP-1) (Using EDID frequencies has
    [  1870.043] (**) NVIDIA(0):     been enabled on all display devices.)
    [  1870.111] (II) NVIDIA(0): Assigned Display Device: DFP-1
    [  1870.111] (II) NVIDIA(0): Validated modes:
    [  1870.111] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select+0+0"
    [  1870.111] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
    [  1870.138] (--) NVIDIA(0): DPI set to (104, 102); computed from "UseEdidDpi" X config
    [  1870.138] (--) NVIDIA(0):     option
    [  1870.138] (WW) NVIDIA(0): 32-bit ARGB GLX visuals require the Composite extension.
    [  1870.138] (WW) NVIDIA(0): 32-bit ARGB GLX visuals are not currently supported with the
    [  1870.138] (WW) NVIDIA(0):     Xinerama extension.
    [  1870.138] (WW) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    [  1870.138] (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
    [  1870.138] (==) NVIDIA(1): RGB weight 888
    [  1870.138] (==) NVIDIA(1): Default visual is TrueColor
    [  1870.138] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    [  1870.138] (**) NVIDIA(1): Option "TwinView" "0"
    [  1870.138] (**) NVIDIA(1): Option "MetaModes" "CRT-1: nvidia-auto-select +0+0"
    [  1870.138] (**) NVIDIA(1): Option "AddARGBGLXVisuals" "True"
    [  1870.138] (II) NVIDIA(1): NVIDIA GPU GeForce GT 240 (GT215) at PCI:3:0:0 (GPU-0)
    [  1870.138] (--) NVIDIA(1): Memory: 1048576 kBytes
    [  1870.138] (--) NVIDIA(1): VideoBIOS: 70.15.20.00.51
    [  1870.138] (II) NVIDIA(1): Detected PCI Express Link width: 16X
    [  1870.138] (--) NVIDIA(1): Interlaced video modes are supported on this GPU
    [  1870.140] (--) NVIDIA(1): Connected display device(s) on GeForce GT 240 at PCI:3:0:0
    [  1870.140] (--) NVIDIA(1):     CRT-1
    [  1870.140] (--) NVIDIA(1):     Acer X193W+ (DFP-1)
    [  1870.140] (--) NVIDIA(1): CRT-1: 400.0 MHz maximum pixel clock
    [  1870.140] (--) NVIDIA(1): Acer X193W+ (DFP-1): 165.0 MHz maximum pixel clock
    [  1870.140] (--) NVIDIA(1): Acer X193W+ (DFP-1): Internal Single Link TMDS
    [  1870.140] (II) NVIDIA(1): Display Device found referenced in MetaMode: CRT-1
    [  1870.140] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
    [  1870.140] (**) NVIDIA(1):     device CRT-1 (Using EDID frequencies has been enabled on
    [  1870.140] (**) NVIDIA(1):     all display devices.)
    [  1870.155] (II) NVIDIA(1): Assigned Display Device: CRT-1
    [  1870.155] (II) NVIDIA(1): Validated modes:
    [  1870.155] (II) NVIDIA(1):     "CRT-1:nvidia-auto-select+0+0"
    [  1870.155] (II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
    [  1870.158] (WW) NVIDIA(1): Unable to get display device CRT-1's EDID; cannot compute DPI
    [  1870.158] (WW) NVIDIA(1):     from CRT-1's EDID.
    [  1870.158] (==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
    [  1870.158] (WW) NVIDIA(1): 32-bit ARGB GLX visuals require the Composite extension.
    [  1870.158] (WW) NVIDIA(1): 32-bit ARGB GLX visuals are not currently supported with the
    [  1870.158] (WW) NVIDIA(1):     Xinerama extension.
    [  1870.158] (WW) NVIDIA(1): Disabling 32-bit ARGB GLX visuals.
    [  1870.158] (**) NVIDIA(2): Depth 24, (--) framebuffer bpp 32
    [  1870.158] (==) NVIDIA(2): RGB weight 888
    [  1870.158] (==) NVIDIA(2): Default visual is TrueColor
    [  1870.158] (==) NVIDIA(2): Using gamma correction (1.0, 1.0, 1.0)
    [  1870.158] (**) NVIDIA(2): Option "TwinView" "0"
    [  1870.158] (**) NVIDIA(2): Option "MetaModes" "DFP-0: nvidia-auto-select +0+0"
    [  1870.158] (**) NVIDIA(2): Option "AddARGBGLXVisuals" "True"
    [  1870.158] (**) NVIDIA(2): Enabling 2D acceleration
    [  1870.303] (II) NVIDIA(GPU-1): Display (Samsung SyncMaster (DFP-0)) does not support NVIDIA
    [  1870.303] (II) NVIDIA(GPU-1):     3D Vision stereo.
    [  1870.307] (II) NVIDIA(2): NVIDIA GPU GeForce 8600 GT (G84) at PCI:6:0:0 (GPU-1)
    [  1870.307] (--) NVIDIA(2): Memory: 524288 kBytes
    [  1870.307] (--) NVIDIA(2): VideoBIOS: 60.84.34.00.51
    [  1870.307] (II) NVIDIA(2): Detected PCI Express Link width: 16X
    [  1870.307] (--) NVIDIA(2): Interlaced video modes are supported on this GPU
    [  1870.311] (--) NVIDIA(2): Connected display device(s) on GeForce 8600 GT at PCI:6:0:0
    [  1870.311] (--) NVIDIA(2):     Samsung SyncMaster (DFP-0)
    [  1870.311] (--) NVIDIA(2): Samsung SyncMaster (DFP-0): 330.0 MHz maximum pixel clock
    [  1870.311] (--) NVIDIA(2): Samsung SyncMaster (DFP-0): Internal Dual Link TMDS
    [  1870.311] (II) NVIDIA(2): Display Device found referenced in MetaMode: DFP-0
    [  1870.311] (**) NVIDIA(2): Using HorizSync/VertRefresh ranges from the EDID for display
    [  1870.311] (**) NVIDIA(2):     device Samsung SyncMaster (DFP-0) (Using EDID frequencies
    [  1870.311] (**) NVIDIA(2):     has been enabled on all display devices.)
    [  1870.370] (II) NVIDIA(2): Assigned Display Device: DFP-0
    [  1870.370] (II) NVIDIA(2): Validated modes:
    [  1870.370] (II) NVIDIA(2):     "DFP-0:nvidia-auto-select+0+0"
    [  1870.370] (II) NVIDIA(2): Virtual screen size determined to be 1440 x 900
    [  1870.378] (--) NVIDIA(2): DPI set to (89, 87); computed from "UseEdidDpi" X config
    [  1870.378] (--) NVIDIA(2):     option
    [  1870.378] (WW) NVIDIA(2): 32-bit ARGB GLX visuals require the Composite extension.
    [  1870.378] (WW) NVIDIA(2): 32-bit ARGB GLX visuals are not currently supported with the
    [  1870.378] (WW) NVIDIA(2):     Xinerama extension.
    [  1870.378] (WW) NVIDIA(2): Disabling 32-bit ARGB GLX visuals.
    [  1870.378] (--) Depth 24 pixmap format is 32 bpp
    [  1870.378] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [  1870.385] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select+0+0"
    [  1870.420] (II) Loading extension NV-GLX
    [  1870.455] (==) NVIDIA(0): Disabling shared memory pixmaps
    [  1870.455] (==) NVIDIA(0): Backing store disabled
    [  1870.455] (==) NVIDIA(0): Silken mouse enabled
    [  1870.455] (**) NVIDIA(0): DPMS enabled
    [  1870.455] (II) Loading extension NV-CONTROL
    [  1870.455] (II) Loading sub module "dri2"
    [  1870.455] (II) LoadModule: "dri2"
    [  1870.455] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [  1870.455] (II) Module dri2: vendor="X.Org Foundation"
    [  1870.455] 	compiled for 1.11.3, module version = 1.2.0
    [  1870.455] 	ABI class: X.Org Server Extension, version 6.0
    [  1870.455] (II) NVIDIA(0): [DRI2] Setup complete
    [  1870.455] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
    [  1870.455] (==) RandR enabled
    [  1870.460] (II) NVIDIA(1): Setting mode "CRT-1:nvidia-auto-select+0+0"
    [  1870.666] (==) NVIDIA(1): Disabling shared memory pixmaps
    [  1870.666] (==) NVIDIA(1): Backing store disabled
    [  1870.666] (==) NVIDIA(1): Silken mouse enabled
    [  1870.666] (**) NVIDIA(1): DPMS enabled
    [  1870.667] (II) Loading sub module "dri2"
    [  1870.667] (II) LoadModule: "dri2"
    [  1870.667] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [  1870.667] (II) Module dri2: vendor="X.Org Foundation"
    [  1870.667] 	compiled for 1.11.3, module version = 1.2.0
    [  1870.667] 	ABI class: X.Org Server Extension, version 6.0
    [  1870.667] (II) NVIDIA(1): [DRI2] Setup complete
    [  1870.667] (II) NVIDIA(1): [DRI2]   VDPAU driver: nvidia
    [  1870.667] (==) RandR enabled
    [  1870.678] (II) NVIDIA(2): Setting mode "DFP-0:nvidia-auto-select+0+0"
    [  1870.763] (==) NVIDIA(2): Disabling shared memory pixmaps
    [  1870.763] (==) NVIDIA(2): Backing store disabled
    [  1870.763] (==) NVIDIA(2): Silken mouse enabled
    [  1870.763] (**) NVIDIA(2): DPMS enabled
    [  1870.763] (II) Loading sub module "dri2"
    [  1870.763] (II) LoadModule: "dri2"
    [  1870.763] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [  1870.763] (II) Module dri2: vendor="X.Org Foundation"
    [  1870.763] 	compiled for 1.11.3, module version = 1.2.0
    [  1870.763] 	ABI class: X.Org Server Extension, version 6.0
    [  1870.764] (II) NVIDIA(2): [DRI2] Setup complete
    [  1870.764] (II) NVIDIA(2): [DRI2]   VDPAU driver: nvidia
    [  1870.764] (==) RandR enabled
    [  1870.764] (II) Initializing built-in extension Generic Event Extension
    [  1870.764] (II) Initializing built-in extension SHAPE
    [  1870.764] (II) Initializing built-in extension MIT-SHM
    [  1870.764] (II) Initializing built-in extension XInputExtension
    [  1870.764] (II) Initializing built-in extension XTEST
    [  1870.764] (II) Initializing built-in extension BIG-REQUESTS
    [  1870.764] (II) Initializing built-in extension SYNC
    [  1870.764] (II) Initializing built-in extension XKEYBOARD
    [  1870.764] (II) Initializing built-in extension XC-MISC
    [  1870.764] (II) Initializing built-in extension SECURITY
    [  1870.764] (II) Initializing built-in extension XINERAMA
    [  1870.764] (II) Initializing built-in extension XFIXES
    [  1870.764] (II) Initializing built-in extension RENDER
    [  1870.764] (II) Initializing built-in extension RANDR
    [  1870.764] (II) Initializing built-in extension COMPOSITE
    [  1870.764] (II) Initializing built-in extension DAMAGE
    [  1870.765] (II) Initializing extension GLX
    [  1870.869] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
    [  1870.871] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [  1870.871] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [  1870.871] (II) LoadModule: "evdev"
    [  1870.871] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [  1870.871] (II) Module evdev: vendor="X.Org Foundation"
    [  1870.871] 	compiled for 1.11.3, module version = 2.7.0
    [  1870.871] 	Module class: X.Org XInput Driver
    [  1870.871] 	ABI class: X.Org XInput driver, version 16.0
    [  1870.871] (II) Using input driver 'evdev' for 'Power Button'
    [  1870.871] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [  1870.871] (**) Power Button: always reports core events
    [  1870.871] (**) evdev: Power Button: Device: "/dev/input/event1"
    [  1870.871] (--) evdev: Power Button: Vendor 0 Product 0x1
    [  1870.871] (--) evdev: Power Button: Found keys
    [  1870.871] (II) evdev: Power Button: Configuring as keyboard
    [  1870.871] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [  1870.871] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [  1870.871] (**) Option "xkb_rules" "evdev"
    [  1870.871] (**) Option "xkb_model" "pc105"
    [  1870.871] (**) Option "xkb_layout" "us"
    [  1870.872] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [  1870.872] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [  1870.872] (II) Using input driver 'evdev' for 'Power Button'
    [  1870.872] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [  1870.872] (**) Power Button: always reports core events
    [  1870.872] (**) evdev: Power Button: Device: "/dev/input/event0"
    [  1870.872] (--) evdev: Power Button: Vendor 0 Product 0x1
    [  1870.872] (--) evdev: Power Button: Found keys
    [  1870.872] (II) evdev: Power Button: Configuring as keyboard
    [  1870.872] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [  1870.872] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [  1870.872] (**) Option "xkb_rules" "evdev"
    [  1870.872] (**) Option "xkb_model" "pc105"
    [  1870.872] (**) Option "xkb_layout" "us"
    [  1870.872] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event4)
    [  1870.872] (II) No input driver specified, ignoring this device.
    [  1870.872] (II) This device may have been added with another device file.
    [  1870.873] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
    [  1870.873] (II) No input driver specified, ignoring this device.
    [  1870.873] (II) This device may have been added with another device file.
    [  1870.873] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event6)
    [  1870.873] (II) No input driver specified, ignoring this device.
    [  1870.873] (II) This device may have been added with another device file.
    [  1870.873] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event7)
    [  1870.873] (II) No input driver specified, ignoring this device.
    [  1870.873] (II) This device may have been added with another device file.
    [  1870.873] (II) config/udev: Adding input device Logitech USB Trackball (/dev/input/event3)
    [  1870.873] (**) Logitech USB Trackball: Applying InputClass "evdev pointer catchall"
    [  1870.873] (II) Using input driver 'evdev' for 'Logitech USB Trackball'
    [  1870.873] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [  1870.873] (**) Logitech USB Trackball: always reports core events
    [  1870.873] (**) evdev: Logitech USB Trackball: Device: "/dev/input/event3"
    [  1870.873] (--) evdev: Logitech USB Trackball: Vendor 0x46d Product 0xc408
    [  1870.873] (--) evdev: Logitech USB Trackball: Found 9 mouse buttons
    [  1870.873] (--) evdev: Logitech USB Trackball: Found relative axes
    [  1870.873] (--) evdev: Logitech USB Trackball: Found x and y relative axes
    [  1870.873] (II) evdev: Logitech USB Trackball: Configuring as mouse
    [  1870.873] (**) evdev: Logitech USB Trackball: YAxisMapping: buttons 4 and 5
    [  1870.873] (**) evdev: Logitech USB Trackball: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [  1870.873] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:0b.0/usb2/2-9/2-9:1.0/input/input3/event3"
    [  1870.873] (II) XINPUT: Adding extended input device "Logitech USB Trackball" (type: MOUSE, id 8)
    [  1870.873] (II) evdev: Logitech USB Trackball: initialized for relative axes.
    [  1870.874] (**) Logitech USB Trackball: (accel) keeping acceleration scheme 1
    [  1870.874] (**) Logitech USB Trackball: (accel) acceleration profile 0
    [  1870.874] (**) Logitech USB Trackball: (accel) acceleration factor: 2.000
    [  1870.874] (**) Logitech USB Trackball: (accel) acceleration threshold: 4
    [  1870.874] (II) config/udev: Adding input device Logitech USB Trackball (/dev/input/mouse0)
    [  1870.874] (II) No input driver specified, ignoring this device.
    [  1870.874] (II) This device may have been added with another device file.
    [  1870.874] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
    [  1870.874] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [  1870.874] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [  1870.874] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [  1870.874] (**) AT Translated Set 2 keyboard: always reports core events
    [  1870.874] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2"
    [  1870.874] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [  1870.874] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [  1870.874] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [  1870.874] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
    [  1870.874] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [  1870.874] (**) Option "xkb_rules" "evdev"
    [  1870.874] (**) Option "xkb_model" "pc105"
    [  1870.874] (**) Option "xkb_layout" "us"
    [  1876.570] (II) XKB: reuse xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
    [  2042.013] (II) XKB: reuse xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
    [  4006.094] (II) XKB: reuse xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
    [  5086.007] (II) XKB: reuse xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
    [  5532.018] (II) XKB: reuse xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
    Teardrop on the fire.... Fearless on my breath....

  9. #19
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    ok. So, with composite enabled, It will show an image on the right screen, but the center and left screen are black, even though I can move my house to the center and black one and see the mouse cursor.

    So, here is what its like:


    GT240-DFP-1
    #Left Monitor### -
    Blank
    Mouse pointer
    visible
    Clicking on
    this screen
    causes clicks
    on the right
    screen




    GT240-CRT-1
    ###Center Monitor###-
    Blank
    Mouse Pointer
    visible
    clicking here
    does nothing




    8600GT-DFP-0
    #Right Monitor###
    Full composite
    right 1/3 of screen
    is cut off
    clicking here does
    nothing, but keyboard
    shortcuts work.


    I believe we are getting on the right track. Compositing now will work, but the 2 screens on the GT240 do not show anything except for a mouse pointer, although, the mouse goes screen to screen in order.

    I think that the screen that is all of the way to the right needs to be pushed to the left screen, and it should work.

    Here is my current xorg.conf that I use for this:

    Code:
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" RightOf "Screen1"
    Option "Xinerama" "1"
    #	Option         "AIGLX" "true"
    #	Option         "RenderAccel" "true"
    	Option         "AllowGLXWithComposite" "true"
    #	Option         "XGL" "true"
    EndSection
    
    Section "Module"
    #	Load           "dbe"
    #	Load           "extmod"
    #	Load           "type1"
    #	Load           "freetype"
    	Load	       "glx"
    	Load           "dri"
    EndSection
    
    Section "DRI"
        Mode 0666
    EndSection
    
    Section "Extensions"
    	Option         "Composite" "enabled"
    EndSection
    
    ############################################################################
    ############################# Monitors
    ##############################################################################
    
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Acer"
    ModelName "20 Inch"
    HorizSync 24.0 - 82.0
    VertRefresh 48.0 - 76.0
    Option "DPMS"
    EndSection
    
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "HP"
    ModelName "MidPuta"
    HorizSync 24.0 - 82.0
    VertRefresh 48.0 - 76.0
    Option "DPMS"
    EndSection
    
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Samsung"
    ModelName "10 Inch"
    HorizSync 24.0 - 82.0
    VertRefresh 48.0 - 76.0
    Option "DPMS"
    EndSection
    
    ##########################################################################################
    ################################ Devices
    ############################################################################################3
    
    Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GT 240"
    BusID "PCI:3:0:0"
    Screen 0
    EndSection
    
    Section "Device"
    Identifier "Device1"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "GT 240"
    BusID "PCI:3:0:0"
    Screen 1
    EndSection
    
    Section "Device"
    Identifier "Device2"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BoardName "8600 GT"
    BusID "PCI:6:0:0"
    Screen 0
    EndSection
    
    #############################################################################
    ######################### Screens
    ############################################################################
    
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "DFP-1: nvidia-auto-select +0+0"
    Option         "AddARGBGLXVisuals" "True"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    
    
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "CRT-1: nvidia-auto-select +0+0"
    Option         "AddARGBGLXVisuals" "True"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    
    Section "Screen"
    Identifier "Screen2"
    Device "Device2"
    Monitor "Monitor2"
    DefaultDepth 24
    Option "TwinView" "0"
    Option "metamodes" "DFP-0: nvidia-auto-select +0+0"
    Option         "AddARGBGLXVisuals" "True"
    SubSection "Display"
    Depth 24
    EndSubSection
    EndSection
    And here is my current xorg.0.log

    Code:
    [    23.126] 
    X.Org X Server 1.11.3
    Release Date: 2011-12-16
    [    23.126] X Protocol Version 11, Revision 0
    [    23.126] Build Operating System: Linux 2.6.42-23-generic x86_64 Ubuntu
    [    23.126] Current Operating System: Linux TIFA 3.2.0-32-generic #51-Ubuntu SMP Wed Sep 26 21:33:09 UTC 2012 x86_64
    [    23.126] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-32-generic root=UUID=cffe6d68-aaae-462f-9d3a-10f563f553d9 ro quiet splash vt.handoff=7
    [    23.126] Build Date: 29 August 2012  12:12:33AM
    [    23.126] xorg-server 2:1.11.4-0ubuntu10.8 (For technical support please see http://www.ubuntu.com/support) 
    [    23.126] Current version of pixman: 0.24.4
    [    23.126] 	Before reporting problems, check http://wiki.x.org
    	to make sure that you have the latest version.
    [    23.126] Markers: (--) probed, (**) from config file, (==) default setting,
    	(++) from command line, (!!) notice, (II) informational,
    	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [    23.126] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Oct 14 14:18:59 2012
    [    23.126] (==) Using config file: "/etc/X11/xorg.conf"
    [    23.126] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
    [    23.126] (==) ServerLayout "Layout0"
    [    23.126] (**) |-->Screen "Screen0" (0)
    [    23.126] (**) |   |-->Monitor "Monitor0"
    [    23.126] (**) |   |-->Device "Device0"
    [    23.126] (**) |-->Screen "Screen1" (1)
    [    23.126] (**) |   |-->Monitor "Monitor1"
    [    23.127] (**) |   |-->Device "Device1"
    [    23.127] (**) |-->Screen "Screen2" (2)
    [    23.127] (**) |   |-->Monitor "Monitor2"
    [    23.127] (**) |   |-->Device "Device2"
    [    23.127] (**) Option "Xinerama" "1"
    [    23.127] (==) Automatically adding devices
    [    23.127] (==) Automatically enabling devices
    [    23.127] (**) Xinerama: enabled
    [    23.127] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
    [    23.127] 	Entry deleted from font path.
    [    23.127] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
    [    23.127] 	Entry deleted from font path.
    [    23.127] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
    [    23.127] 	Entry deleted from font path.
    [    23.127] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
    [    23.127] 	Entry deleted from font path.
    [    23.127] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
    [    23.127] 	Entry deleted from font path.
    [    23.127] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
    [    23.127] 	Entry deleted from font path.
    [    23.127] (==) FontPath set to:
    	/usr/share/fonts/X11/misc,
    	/usr/share/fonts/X11/Type1,
    	built-ins
    [    23.127] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
    [    23.127] (**) Extension "Composite" is enabled
    [    23.127] (II) The server relies on udev to provide the list of input devices.
    	If no devices become available, reconfigure udev or disable AutoAddDevices.
    [    23.127] (II) Loader magic: 0x7ff5e8062b00
    [    23.127] (II) Module ABI versions:
    [    23.127] 	X.Org ANSI C Emulation: 0.4
    [    23.127] 	X.Org Video Driver: 11.0
    [    23.127] 	X.Org XInput driver : 16.0
    [    23.127] 	X.Org Server Extension : 6.0
    [    23.128] (--) PCI:*(0:3:0:0) 10de:0ca3:196e:0789 rev 162, Mem @ 0xec000000/16777216, 0xb0000000/268435456, 0xce000000/33554432, I/O @ 0x0000dc00/128, BIOS @ 0x????????/524288
    [    23.128] (--) PCI: (0:6:0:0) 10de:0402:196e:043a rev 161, Mem @ 0xea000000/16777216, 0x80000000/536870912, 0xe8000000/33554432, I/O @ 0x0000ac00/128, BIOS @ 0x????????/131072
    [    23.128] (II) Open ACPI successful (/var/run/acpid.socket)
    [    23.128] (II) "extmod" will be loaded by default.
    [    23.128] (II) "dbe" will be loaded by default.
    [    23.128] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
    [    23.128] (II) "record" will be loaded by default.
    [    23.128] (II) "dri" will be loaded. This was enabled by default and also specified in the config file.
    [    23.128] (II) "dri2" will be loaded by default.
    [    23.128] (II) LoadModule: "glx"
    [    23.128] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/libglx.so
    [    23.139] (II) Module glx: vendor="NVIDIA Corporation"
    [    23.139] 	compiled for 4.0.2, module version = 1.0.0
    [    23.139] 	Module class: X.Org Server Extension
    [    23.139] (II) NVIDIA GLX Module  295.40  Thu Apr  5 21:57:38 PDT 2012
    [    23.139] (II) Loading extension GLX
    [    23.139] (II) LoadModule: "dri"
    [    23.140] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [    23.140] (II) Module dri: vendor="X.Org Foundation"
    [    23.140] 	compiled for 1.11.3, module version = 1.0.0
    [    23.140] 	ABI class: X.Org Server Extension, version 6.0
    [    23.140] (II) Loading extension XFree86-DRI
    [    23.140] (II) LoadModule: "extmod"
    [    23.140] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [    23.140] (II) Module extmod: vendor="X.Org Foundation"
    [    23.140] 	compiled for 1.11.3, module version = 1.0.0
    [    23.140] 	Module class: X.Org Server Extension
    [    23.140] 	ABI class: X.Org Server Extension, version 6.0
    [    23.140] (II) Loading extension MIT-SCREEN-SAVER
    [    23.140] (II) Loading extension XFree86-VidModeExtension
    [    23.140] (II) Loading extension XFree86-DGA
    [    23.140] (II) Loading extension DPMS
    [    23.140] (II) Loading extension XVideo
    [    23.140] (II) Loading extension XVideo-MotionCompensation
    [    23.140] (II) Loading extension X-Resource
    [    23.140] (II) LoadModule: "dbe"
    [    23.140] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [    23.140] (II) Module dbe: vendor="X.Org Foundation"
    [    23.140] 	compiled for 1.11.3, module version = 1.0.0
    [    23.140] 	Module class: X.Org Server Extension
    [    23.140] 	ABI class: X.Org Server Extension, version 6.0
    [    23.140] (II) Loading extension DOUBLE-BUFFER
    [    23.140] (II) LoadModule: "record"
    [    23.140] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [    23.140] (II) Module record: vendor="X.Org Foundation"
    [    23.140] 	compiled for 1.11.3, module version = 1.13.0
    [    23.140] 	Module class: X.Org Server Extension
    [    23.140] 	ABI class: X.Org Server Extension, version 6.0
    [    23.140] (II) Loading extension RECORD
    [    23.141] (II) LoadModule: "dri2"
    [    23.141] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [    23.141] (II) Module dri2: vendor="X.Org Foundation"
    [    23.141] 	compiled for 1.11.3, module version = 1.2.0
    [    23.141] 	ABI class: X.Org Server Extension, version 6.0
    [    23.141] (II) Loading extension DRI2
    [    23.141] (II) LoadModule: "nvidia"
    [    23.141] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [    23.141] (II) Module nvidia: vendor="NVIDIA Corporation"
    [    23.141] 	compiled for 4.0.2, module version = 1.0.0
    [    23.141] 	Module class: X.Org Video Driver
    [    23.141] (II) NVIDIA dlloader X Driver  295.40  Thu Apr  5 21:38:35 PDT 2012
    [    23.141] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    [    23.141] (++) using VT number 7
    
    [    23.141] (II) Loading sub module "fb"
    [    23.141] (II) LoadModule: "fb"
    [    23.142] (II) Loading /usr/lib/xorg/modules/libfb.so
    [    23.142] (II) Module fb: vendor="X.Org Foundation"
    [    23.142] 	compiled for 1.11.3, module version = 1.0.0
    [    23.142] 	ABI class: X.Org ANSI C Emulation, version 0.4
    [    23.142] (II) Loading sub module "wfb"
    [    23.142] (II) LoadModule: "wfb"
    [    23.170] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [    23.170] (II) Module wfb: vendor="X.Org Foundation"
    [    23.170] 	compiled for 1.11.3, module version = 1.0.0
    [    23.170] 	ABI class: X.Org ANSI C Emulation, version 0.4
    [    23.170] (II) Loading sub module "ramdac"
    [    23.170] (II) LoadModule: "ramdac"
    [    23.170] (II) Module "ramdac" already built-in
    [    23.170] (WW) NVIDIA: The Composite and Xinerama extensions are both enabled, which
    [    23.170] (WW) NVIDIA:     is an unsupported configuration.  The driver will continue
    [    23.170] (WW) NVIDIA:     to load, but may behave strangely.
    [    23.170] (WW) NVIDIA: Xinerama is enabled, so RandR has likely been disabled by the
    [    23.170] (WW) NVIDIA:     X server.
    [    23.170] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [    23.170] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [    23.170] (II) Loading /usr/lib/xorg/modules/libfb.so
    [    23.170] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [    23.170] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [    23.170] (II) Loading /usr/lib/xorg/modules/libfb.so
    [    23.170] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
    [    23.170] (II) Loading /usr/lib/xorg/modules/libwfb.so
    [    23.170] (II) Loading /usr/lib/xorg/modules/libfb.so
    [    23.170] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
    [    23.170] (==) NVIDIA(0): RGB weight 888
    [    23.170] (==) NVIDIA(0): Default visual is TrueColor
    [    23.170] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    [    23.170] (**) NVIDIA(0): Option "TwinView" "0"
    [    23.170] (**) NVIDIA(0): Option "MetaModes" "DFP-1: nvidia-auto-select +0+0"
    [    23.170] (**) NVIDIA(0): Option "AddARGBGLXVisuals" "True"
    [    23.170] (**) NVIDIA(0): Enabling 2D acceleration
    [    24.691] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1
    [    24.708] (II) NVIDIA(GPU-0): Display (Acer X193W+ (DFP-1)) does not support NVIDIA 3D
    [    24.708] (II) NVIDIA(GPU-0):     Vision stereo.
    [    24.709] (II) NVIDIA(0): NVIDIA GPU GeForce GT 240 (GT215) at PCI:3:0:0 (GPU-0)
    [    24.709] (--) NVIDIA(0): Memory: 1048576 kBytes
    [    24.709] (--) NVIDIA(0): VideoBIOS: 70.15.20.00.51
    [    24.709] (II) NVIDIA(0): Detected PCI Express Link width: 16X
    [    24.709] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
    [    24.711] (--) NVIDIA(0): Connected display device(s) on GeForce GT 240 at PCI:3:0:0
    [    24.711] (--) NVIDIA(0):     CRT-1
    [    24.711] (--) NVIDIA(0):     Acer X193W+ (DFP-1)
    [    24.711] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock
    [    24.711] (--) NVIDIA(0): Acer X193W+ (DFP-1): 165.0 MHz maximum pixel clock
    [    24.711] (--) NVIDIA(0): Acer X193W+ (DFP-1): Internal Single Link TMDS
    [    24.711] (II) NVIDIA(0): Display Device found referenced in MetaMode: DFP-1
    [    24.711] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
    [    24.711] (**) NVIDIA(0):     device Acer X193W+ (DFP-1) (Using EDID frequencies has
    [    24.711] (**) NVIDIA(0):     been enabled on all display devices.)
    [    24.768] (II) NVIDIA(0): Assigned Display Device: DFP-1
    [    24.768] (II) NVIDIA(0): Validated modes:
    [    24.768] (II) NVIDIA(0):     "DFP-1:nvidia-auto-select+0+0"
    [    24.768] (II) NVIDIA(0): Virtual screen size determined to be 1680 x 1050
    [    24.790] (--) NVIDIA(0): DPI set to (104, 102); computed from "UseEdidDpi" X config
    [    24.790] (--) NVIDIA(0):     option
    [    24.790] (WW) NVIDIA(0): 32-bit ARGB GLX visuals are not currently supported with the
    [    24.790] (WW) NVIDIA(0):     Xinerama extension.
    [    24.790] (WW) NVIDIA(0): Disabling 32-bit ARGB GLX visuals.
    [    24.790] (**) NVIDIA(1): Depth 24, (--) framebuffer bpp 32
    [    24.790] (==) NVIDIA(1): RGB weight 888
    [    24.790] (==) NVIDIA(1): Default visual is TrueColor
    [    24.790] (==) NVIDIA(1): Using gamma correction (1.0, 1.0, 1.0)
    [    24.790] (**) NVIDIA(1): Option "TwinView" "0"
    [    24.790] (**) NVIDIA(1): Option "MetaModes" "CRT-1: nvidia-auto-select +0+0"
    [    24.790] (**) NVIDIA(1): Option "AddARGBGLXVisuals" "True"
    [    24.791] (II) NVIDIA(1): NVIDIA GPU GeForce GT 240 (GT215) at PCI:3:0:0 (GPU-0)
    [    24.791] (--) NVIDIA(1): Memory: 1048576 kBytes
    [    24.791] (--) NVIDIA(1): VideoBIOS: 70.15.20.00.51
    [    24.791] (II) NVIDIA(1): Detected PCI Express Link width: 16X
    [    24.791] (--) NVIDIA(1): Interlaced video modes are supported on this GPU
    [    24.792] (--) NVIDIA(1): Connected display device(s) on GeForce GT 240 at PCI:3:0:0
    [    24.792] (--) NVIDIA(1):     CRT-1
    [    24.792] (--) NVIDIA(1):     Acer X193W+ (DFP-1)
    [    24.792] (--) NVIDIA(1): CRT-1: 400.0 MHz maximum pixel clock
    [    24.792] (--) NVIDIA(1): Acer X193W+ (DFP-1): 165.0 MHz maximum pixel clock
    [    24.792] (--) NVIDIA(1): Acer X193W+ (DFP-1): Internal Single Link TMDS
    [    24.792] (II) NVIDIA(1): Display Device found referenced in MetaMode: CRT-1
    [    24.792] (**) NVIDIA(1): Using HorizSync/VertRefresh ranges from the EDID for display
    [    24.792] (**) NVIDIA(1):     device CRT-1 (Using EDID frequencies has been enabled on
    [    24.792] (**) NVIDIA(1):     all display devices.)
    [    24.803] (II) NVIDIA(1): Assigned Display Device: CRT-1
    [    24.803] (II) NVIDIA(1): Validated modes:
    [    24.803] (II) NVIDIA(1):     "CRT-1:nvidia-auto-select+0+0"
    [    24.803] (II) NVIDIA(1): Virtual screen size determined to be 1024 x 768
    [    24.806] (WW) NVIDIA(1): Unable to get display device CRT-1's EDID; cannot compute DPI
    [    24.806] (WW) NVIDIA(1):     from CRT-1's EDID.
    [    24.806] (==) NVIDIA(1): DPI set to (75, 75); computed from built-in default
    [    24.806] (WW) NVIDIA(1): 32-bit ARGB GLX visuals are not currently supported with the
    [    24.806] (WW) NVIDIA(1):     Xinerama extension.
    [    24.806] (WW) NVIDIA(1): Disabling 32-bit ARGB GLX visuals.
    [    24.806] (**) NVIDIA(2): Depth 24, (--) framebuffer bpp 32
    [    24.806] (==) NVIDIA(2): RGB weight 888
    [    24.806] (==) NVIDIA(2): Default visual is TrueColor
    [    24.806] (==) NVIDIA(2): Using gamma correction (1.0, 1.0, 1.0)
    [    24.806] (**) NVIDIA(2): Option "TwinView" "0"
    [    24.806] (**) NVIDIA(2): Option "MetaModes" "DFP-0: nvidia-auto-select +0+0"
    [    24.806] (**) NVIDIA(2): Option "AddARGBGLXVisuals" "True"
    [    24.806] (**) NVIDIA(2): Enabling 2D acceleration
    [    25.896] (II) NVIDIA(GPU-1): Display (Samsung SyncMaster (DFP-0)) does not support NVIDIA
    [    25.896] (II) NVIDIA(GPU-1):     3D Vision stereo.
    [    25.901] (II) NVIDIA(2): NVIDIA GPU GeForce 8600 GT (G84) at PCI:6:0:0 (GPU-1)
    [    25.901] (--) NVIDIA(2): Memory: 524288 kBytes
    [    25.901] (--) NVIDIA(2): VideoBIOS: 60.84.34.00.51
    [    25.901] (II) NVIDIA(2): Detected PCI Express Link width: 16X
    [    25.901] (--) NVIDIA(2): Interlaced video modes are supported on this GPU
    [    25.905] (--) NVIDIA(2): Connected display device(s) on GeForce 8600 GT at PCI:6:0:0
    [    25.905] (--) NVIDIA(2):     Samsung SyncMaster (DFP-0)
    [    25.905] (--) NVIDIA(2): Samsung SyncMaster (DFP-0): 330.0 MHz maximum pixel clock
    [    25.905] (--) NVIDIA(2): Samsung SyncMaster (DFP-0): Internal Dual Link TMDS
    [    25.905] (II) NVIDIA(2): Display Device found referenced in MetaMode: DFP-0
    [    25.905] (**) NVIDIA(2): Using HorizSync/VertRefresh ranges from the EDID for display
    [    25.905] (**) NVIDIA(2):     device Samsung SyncMaster (DFP-0) (Using EDID frequencies
    [    25.905] (**) NVIDIA(2):     has been enabled on all display devices.)
    [    25.963] (II) NVIDIA(2): Assigned Display Device: DFP-0
    [    25.963] (II) NVIDIA(2): Validated modes:
    [    25.963] (II) NVIDIA(2):     "DFP-0:nvidia-auto-select+0+0"
    [    25.963] (II) NVIDIA(2): Virtual screen size determined to be 1440 x 900
    [    25.971] (--) NVIDIA(2): DPI set to (89, 87); computed from "UseEdidDpi" X config
    [    25.971] (--) NVIDIA(2):     option
    [    25.971] (WW) NVIDIA(2): 32-bit ARGB GLX visuals are not currently supported with the
    [    25.971] (WW) NVIDIA(2):     Xinerama extension.
    [    25.971] (WW) NVIDIA(2): Disabling 32-bit ARGB GLX visuals.
    [    25.971] (--) Depth 24 pixmap format is 32 bpp
    [    25.971] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
    [    25.977] (II) NVIDIA(0): Setting mode "DFP-1:nvidia-auto-select+0+0"
    [    26.012] (II) Loading extension NV-GLX
    [    26.061] (==) NVIDIA(0): Disabling shared memory pixmaps
    [    26.061] (==) NVIDIA(0): Backing store disabled
    [    26.061] (==) NVIDIA(0): Silken mouse enabled
    [    26.062] (**) NVIDIA(0): DPMS enabled
    [    26.062] (II) Loading extension NV-CONTROL
    [    26.062] (II) Loading sub module "dri2"
    [    26.062] (II) LoadModule: "dri2"
    [    26.062] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [    26.062] (II) Module dri2: vendor="X.Org Foundation"
    [    26.062] 	compiled for 1.11.3, module version = 1.2.0
    [    26.062] 	ABI class: X.Org Server Extension, version 6.0
    [    26.062] (II) NVIDIA(0): [DRI2] Setup complete
    [    26.062] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
    [    26.062] (==) RandR enabled
    [    26.066] (II) NVIDIA(1): Setting mode "CRT-1:nvidia-auto-select+0+0"
    [    26.242] (==) NVIDIA(1): Disabling shared memory pixmaps
    [    26.242] (==) NVIDIA(1): Backing store disabled
    [    26.242] (==) NVIDIA(1): Silken mouse enabled
    [    26.242] (**) NVIDIA(1): DPMS enabled
    [    26.243] (II) Loading sub module "dri2"
    [    26.243] (II) LoadModule: "dri2"
    [    26.243] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [    26.243] (II) Module dri2: vendor="X.Org Foundation"
    [    26.243] 	compiled for 1.11.3, module version = 1.2.0
    [    26.243] 	ABI class: X.Org Server Extension, version 6.0
    [    26.243] (II) NVIDIA(1): [DRI2] Setup complete
    [    26.243] (II) NVIDIA(1): [DRI2]   VDPAU driver: nvidia
    [    26.243] (==) RandR enabled
    [    26.252] (II) NVIDIA(2): Setting mode "DFP-0:nvidia-auto-select+0+0"
    [    26.354] (==) NVIDIA(2): Disabling shared memory pixmaps
    [    26.354] (==) NVIDIA(2): Backing store disabled
    [    26.354] (==) NVIDIA(2): Silken mouse enabled
    [    26.354] (**) NVIDIA(2): DPMS enabled
    [    26.355] (II) Loading sub module "dri2"
    [    26.355] (II) LoadModule: "dri2"
    [    26.355] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [    26.355] (II) Module dri2: vendor="X.Org Foundation"
    [    26.355] 	compiled for 1.11.3, module version = 1.2.0
    [    26.355] 	ABI class: X.Org Server Extension, version 6.0
    [    26.355] (II) NVIDIA(2): [DRI2] Setup complete
    [    26.355] (II) NVIDIA(2): [DRI2]   VDPAU driver: nvidia
    [    26.355] (==) RandR enabled
    [    26.355] (II) Initializing built-in extension Generic Event Extension
    [    26.355] (II) Initializing built-in extension SHAPE
    [    26.355] (II) Initializing built-in extension MIT-SHM
    [    26.355] (II) Initializing built-in extension XInputExtension
    [    26.355] (II) Initializing built-in extension XTEST
    [    26.355] (II) Initializing built-in extension BIG-REQUESTS
    [    26.355] (II) Initializing built-in extension SYNC
    [    26.355] (II) Initializing built-in extension XKEYBOARD
    [    26.355] (II) Initializing built-in extension XC-MISC
    [    26.355] (II) Initializing built-in extension SECURITY
    [    26.355] (II) Initializing built-in extension XINERAMA
    [    26.355] (II) Initializing built-in extension XFIXES
    [    26.355] (II) Initializing built-in extension RENDER
    [    26.355] (II) Initializing built-in extension RANDR
    [    26.355] (II) Initializing built-in extension COMPOSITE
    [    26.355] (II) Initializing built-in extension DAMAGE
    [    26.355] (II) Initializing extension GLX
    [    26.456] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
    [    26.458] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [    26.458] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [    26.458] (II) LoadModule: "evdev"
    [    26.458] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [    26.459] (II) Module evdev: vendor="X.Org Foundation"
    [    26.459] 	compiled for 1.11.3, module version = 2.7.0
    [    26.459] 	Module class: X.Org XInput Driver
    [    26.459] 	ABI class: X.Org XInput driver, version 16.0
    [    26.459] (II) Using input driver 'evdev' for 'Power Button'
    [    26.459] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [    26.459] (**) Power Button: always reports core events
    [    26.459] (**) evdev: Power Button: Device: "/dev/input/event1"
    [    26.459] (--) evdev: Power Button: Vendor 0 Product 0x1
    [    26.459] (--) evdev: Power Button: Found keys
    [    26.459] (II) evdev: Power Button: Configuring as keyboard
    [    26.459] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [    26.459] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [    26.459] (**) Option "xkb_rules" "evdev"
    [    26.459] (**) Option "xkb_model" "pc105"
    [    26.459] (**) Option "xkb_layout" "us"
    [    26.459] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [    26.459] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [    26.459] (II) Using input driver 'evdev' for 'Power Button'
    [    26.459] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [    26.459] (**) Power Button: always reports core events
    [    26.459] (**) evdev: Power Button: Device: "/dev/input/event0"
    [    26.459] (--) evdev: Power Button: Vendor 0 Product 0x1
    [    26.459] (--) evdev: Power Button: Found keys
    [    26.459] (II) evdev: Power Button: Configuring as keyboard
    [    26.459] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [    26.459] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [    26.459] (**) Option "xkb_rules" "evdev"
    [    26.459] (**) Option "xkb_model" "pc105"
    [    26.459] (**) Option "xkb_layout" "us"
    [    26.460] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=9 (/dev/input/event4)
    [    26.460] (II) No input driver specified, ignoring this device.
    [    26.460] (II) This device may have been added with another device file.
    [    26.460] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=8 (/dev/input/event5)
    [    26.460] (II) No input driver specified, ignoring this device.
    [    26.460] (II) This device may have been added with another device file.
    [    26.460] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=7 (/dev/input/event6)
    [    26.460] (II) No input driver specified, ignoring this device.
    [    26.460] (II) This device may have been added with another device file.
    [    26.460] (II) config/udev: Adding input device HDA NVidia HDMI/DP,pcm=3 (/dev/input/event7)
    [    26.460] (II) No input driver specified, ignoring this device.
    [    26.460] (II) This device may have been added with another device file.
    [    26.461] (II) config/udev: Adding input device Logitech USB Trackball (/dev/input/event3)
    [    26.461] (**) Logitech USB Trackball: Applying InputClass "evdev pointer catchall"
    [    26.461] (II) Using input driver 'evdev' for 'Logitech USB Trackball'
    [    26.461] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [    26.461] (**) Logitech USB Trackball: always reports core events
    [    26.461] (**) evdev: Logitech USB Trackball: Device: "/dev/input/event3"
    [    26.461] (--) evdev: Logitech USB Trackball: Vendor 0x46d Product 0xc408
    [    26.461] (--) evdev: Logitech USB Trackball: Found 9 mouse buttons
    [    26.461] (--) evdev: Logitech USB Trackball: Found relative axes
    [    26.461] (--) evdev: Logitech USB Trackball: Found x and y relative axes
    [    26.461] (II) evdev: Logitech USB Trackball: Configuring as mouse
    [    26.461] (**) evdev: Logitech USB Trackball: YAxisMapping: buttons 4 and 5
    [    26.461] (**) evdev: Logitech USB Trackball: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [    26.461] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:0b.0/usb2/2-9/2-9:1.0/input/input3/event3"
    [    26.461] (II) XINPUT: Adding extended input device "Logitech USB Trackball" (type: MOUSE, id 8)
    [    26.461] (II) evdev: Logitech USB Trackball: initialized for relative axes.
    [    26.461] (**) Logitech USB Trackball: (accel) keeping acceleration scheme 1
    [    26.461] (**) Logitech USB Trackball: (accel) acceleration profile 0
    [    26.461] (**) Logitech USB Trackball: (accel) acceleration factor: 2.000
    [    26.461] (**) Logitech USB Trackball: (accel) acceleration threshold: 4
    [    26.461] (II) config/udev: Adding input device Logitech USB Trackball (/dev/input/mouse0)
    [    26.461] (II) No input driver specified, ignoring this device.
    [    26.461] (II) This device may have been added with another device file.
    [    26.461] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
    [    26.461] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    [    26.461] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    [    26.461] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [    26.461] (**) AT Translated Set 2 keyboard: always reports core events
    [    26.461] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2"
    [    26.461] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    [    26.461] (--) evdev: AT Translated Set 2 keyboard: Found keys
    [    26.461] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    [    26.461] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
    [    26.461] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 9)
    [    26.461] (**) Option "xkb_rules" "evdev"
    [    26.461] (**) Option "xkb_model" "pc105"
    [    26.461] (**) Option "xkb_layout" "us"
    [    39.795] (II) XKB: reuse xkmfile /var/lib/xkb/server-03AF3717FF3AB439A4BAABA686CCB40771CDF520.xkm
    Last edited by DJYoshaBYD; October 14th, 2012 at 10:46 PM.
    Teardrop on the fire.... Fearless on my breath....

  10. #20
    Join Date
    Apr 2008
    Beans
    226

    Re: 3 Monitors, Ubuntu 12.04, Gnome 3, 2 nvidia cards, WITH xrandr or xinerama?

    Maybe there is a way to change the layout of the screens in server layout? or is this something that would be better handled my metamodes?
    Teardrop on the fire.... Fearless on my breath....

Page 2 of 6 FirstFirst 1234 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •