[SOLVED]Triple Monitors Xorg with AMD&NVIDIA: XRANDR and Xinerama...

Hello,
I'm trying to set up a tri monitor setup. Unfortunately I must use 2 cards, one an AMD HD4350 and a PCI Geforce FX200. (Old skool I know)
Due to the restrictions, I am forced to use the open source drivers (else nvidia glx will clash).
As I see it, I have 2 solutions available to me:
1: Use XRANDR to span the displays (this is what I did previous to the introduction of the third monitor and nvidia card to my system)
I tried to do this, by setting up a second X screen on the NVIDIA card, disabling Xinerama; but after much googling I can't figure out the syntax for panning across 2 screens (X screens) in XRANDR, even tho it's >1.3, which supposedly supports multi card output.
2:Use Xinerama, sacrificing randr, and composite extensions.
I also attempted to do this, with some limited success. I could get the NVIDIA screen to be right of the ATI, but I couldn't get 2 independent outputs running on the ATI card, even with "ZapohHeads" appended to one of the device sections for my ATI card.
Any suggestions to how I can sort this?
I'm amazed there's not a way to have mixed nvidia/radeon on X11 in 2011.
Thanks,
Chris.
EDIT:
It turns out the xrandr multi card output is an urban myth.
I went the Xinerama route, I've pasted my xorg.conf below.
Section "ServerLayout"
Identifier "Hand Configured"
Screen 0 "LeftScreen" 0 0
Screen 1 "MiddleScreen" RightOf "LeftScreen"
Screen 2 "RightScreen" RightOf "MiddleScreen"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "ServerFlags"
Option "Xinerama" "ON"
Option "RandR" "false"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "glx"
Load "record"
Load "dbe"
Load "dri"
Load "drm"
Load "extmod"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbLayout" "gb"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
EndSection
Section "Monitor"
Identifier "Monitor1"
Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
EndSection
Section "Monitor"
Identifier "Monitor2"
Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
EndSection
Section "Device"
Identifier "Card0"
Driver "radeon"
Option "AccelMethod" "EXA"
Option "DRI" "on"
Option "ColorTiling" "on"
#Screen 0
# Option "ZaphodHeads" "DVI-0"
BusID "PCI:01:00:0"
# Option "DynamicPM" "on"
# Option "ClockGating" "on"
EndSection
Section "Device"
Identifier "Card1"
Driver "radeon"
Option "AccelMethod" "EXA"
Option "DRI" "on"
Option "ColorTiling" "on"
Screen 1
Option "ZaphodHeads" "DVI-0"
BusID "PCI:01:00:0"
# Option "DynamicPM" "on"
# Option "ClockGating" "on"
EndSection
Section "Device"
Identifier "nvidia card"
Driver "nouveau"
BusID "PCI:3:5:0"
#Screen 1
EndSection
Section "Screen"
Identifier "LeftScreen"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
#Virtual 2560 1024
EndSubSection
EndSection
Section "Screen"
Identifier "MiddleScreen"
Device "Card1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
#Virtual 2560 1024
EndSubSection
EndSection
Section "Screen"
Identifier "RightScreen"
Device "nvidia card"
Monitor "Monitor2"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
#Virtual 2560 1024
EndSubSection
EndSection
Last edited by kernel_geek (2011-03-24 18:44:26)

Hello,
I'm trying to set up a tri monitor setup. Unfortunately I must use 2 cards, one an AMD HD4350 and a PCI Geforce FX200. (Old skool I know)
Due to the restrictions, I am forced to use the open source drivers (else nvidia glx will clash).
As I see it, I have 2 solutions available to me:
1: Use XRANDR to span the displays (this is what I did previous to the introduction of the third monitor and nvidia card to my system)
I tried to do this, by setting up a second X screen on the NVIDIA card, disabling Xinerama; but after much googling I can't figure out the syntax for panning across 2 screens (X screens) in XRANDR, even tho it's >1.3, which supposedly supports multi card output.
2:Use Xinerama, sacrificing randr, and composite extensions.
I also attempted to do this, with some limited success. I could get the NVIDIA screen to be right of the ATI, but I couldn't get 2 independent outputs running on the ATI card, even with "ZapohHeads" appended to one of the device sections for my ATI card.
Any suggestions to how I can sort this?
I'm amazed there's not a way to have mixed nvidia/radeon on X11 in 2011.
Thanks,
Chris.
EDIT:
It turns out the xrandr multi card output is an urban myth.
I went the Xinerama route, I've pasted my xorg.conf below.
Section "ServerLayout"
Identifier "Hand Configured"
Screen 0 "LeftScreen" 0 0
Screen 1 "MiddleScreen" RightOf "LeftScreen"
Screen 2 "RightScreen" RightOf "MiddleScreen"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "ServerFlags"
Option "Xinerama" "ON"
Option "RandR" "false"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/100dpi:unscaled"
FontPath "/usr/share/fonts/75dpi:unscaled"
FontPath "/usr/share/fonts/TTF"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "glx"
Load "record"
Load "dbe"
Load "dri"
Load "drm"
Load "extmod"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbLayout" "gb"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
EndSection
Section "Monitor"
Identifier "Monitor1"
Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
EndSection
Section "Monitor"
Identifier "Monitor2"
Modeline "1280x1024@75" 156.43 1280 1312 1904 1936 1024 1043 1056 1076
Modeline "1280x1024@60" 114.98 1280 1312 1744 1776 1024 1045 1055 1076
ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
EndSection
Section "Device"
Identifier "Card0"
Driver "radeon"
Option "AccelMethod" "EXA"
Option "DRI" "on"
Option "ColorTiling" "on"
#Screen 0
# Option "ZaphodHeads" "DVI-0"
BusID "PCI:01:00:0"
# Option "DynamicPM" "on"
# Option "ClockGating" "on"
EndSection
Section "Device"
Identifier "Card1"
Driver "radeon"
Option "AccelMethod" "EXA"
Option "DRI" "on"
Option "ColorTiling" "on"
Screen 1
Option "ZaphodHeads" "DVI-0"
BusID "PCI:01:00:0"
# Option "DynamicPM" "on"
# Option "ClockGating" "on"
EndSection
Section "Device"
Identifier "nvidia card"
Driver "nouveau"
BusID "PCI:3:5:0"
#Screen 1
EndSection
Section "Screen"
Identifier "LeftScreen"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
#Virtual 2560 1024
EndSubSection
EndSection
Section "Screen"
Identifier "MiddleScreen"
Device "Card1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
#Virtual 2560 1024
EndSubSection
EndSection
Section "Screen"
Identifier "RightScreen"
Device "nvidia card"
Monitor "Monitor2"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x1024"
#Virtual 2560 1024
EndSubSection
EndSection
Last edited by kernel_geek (2011-03-24 18:44:26)

Similar Messages

  • [PROGRESS] Three Monitors with AMD/NVIDIA cards Xinerama

    EDIT: These config files are not the current ones, see several posts down!
    Hey guys, trying to get a tri-monitor setup running that I've been working on for a while. I'm fairly close now I think, but I'm getting a Segmentation fault. Here's some info: [EDIT: Added ls /sys/class/drm/]
    [greg@spacebar ~]$ lspci | grep VGA
    00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2)
    02:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV370 5B60 [Radeon X300 (PCIE)]
    [greg@spacebar ~]$ cat Xorg.0.log
    [ 58.529]
    X.Org X Server 1.12.0
    Release Date: 2012-03-04
    [ 58.529] X Protocol Version 11, Revision 0
    [ 58.530] Build Operating System: Linux 3.2.9-1-ARCH x86_64
    [ 58.530] Current Operating System: Linux spacebar 3.2.12-1-ARCH #1 SMP PREEMPT Mon Mar 19 17:50:01 CET 2012 x86_64
    [ 58.530] Kernel command line: root=/dev/disk/by-label/arch ro quiet
    [ 58.530] Build Date: 05 March 2012 05:59:48AM
    [ 58.530]
    [ 58.530] Current version of pixman: 0.24.4
    [ 58.530] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 58.530] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 58.531] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 22 14:32:18 2012
    [ 58.577] (==) Using config file: "/etc/X11/xorg.conf"
    [ 58.577] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 58.620] (==) ServerLayout "Layout0"
    [ 58.620] (**) |-->Screen "Screen0" (0)
    [ 58.620] (**) | |-->Monitor "<default monitor>"
    [ 58.621] (**) | |-->Device "Device0"
    [ 58.621] (==) No monitor specified for screen "Screen0".
    Using a default monitor configuration.
    [ 58.621] (**) |-->Screen "Screen1" (1)
    [ 58.621] (**) | |-->Monitor "<default monitor>"
    [ 58.621] (**) | |-->Device "Device1"
    [ 58.621] (==) No monitor specified for screen "Screen1".
    Using a default monitor configuration.
    [ 58.621] (**) |-->Screen "Screen2" (2)
    [ 58.621] (**) | |-->Monitor "<default monitor>"
    [ 58.621] (**) | |-->Device "Device2"
    [ 58.621] (==) No monitor specified for screen "Screen2".
    Using a default monitor configuration.
    [ 58.621] (**) Option "Xinerama" "on"
    [ 58.621] (==) Automatically adding devices
    [ 58.621] (==) Automatically enabling devices
    [ 58.621] (**) Xinerama: enabled
    [ 58.716] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 58.716] Entry deleted from font path.
    [ 58.799] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 58.799] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 58.799] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 58.799] (II) Loader magic: 0x7cef60
    [ 58.799] (II) Module ABI versions:
    [ 58.799] X.Org ANSI C Emulation: 0.4
    [ 58.799] X.Org Video Driver: 12.0
    [ 58.799] X.Org XInput driver : 16.0
    [ 58.799] X.Org Server Extension : 6.0
    [ 58.800] (--) PCI: (0:0:13:0) 10de:03d0:1458:d000 rev 162, Mem @ 0xe2000000/16777216, 0xc0000000/268435456, 0xe5000000/16777216, BIOS @ 0x????????/131072
    [ 58.800] (--) PCI:*(0:2:0:0) 1002:5b60:1002:0302 rev 0, Mem @ 0xd0000000/134217728, 0xe4000000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/131072
    [ 58.800] (--) PCI: (0:2:0:1) 1002:5b70:1002:0303 rev 0, Mem @ 0xe4010000/65536
    [ 58.800] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 58.800] (II) LoadModule: "extmod"
    [ 58.886] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 58.890] (II) Module extmod: vendor="X.Org Foundation"
    [ 58.890] compiled for 1.12.0, module version = 1.0.0
    [ 58.890] Module class: X.Org Server Extension
    [ 58.890] ABI class: X.Org Server Extension, version 6.0
    [ 58.890] (II) Loading extension MIT-SCREEN-SAVER
    [ 58.890] (II) Loading extension XFree86-VidModeExtension
    [ 58.890] (II) Loading extension XFree86-DGA
    [ 58.890] (II) Loading extension DPMS
    [ 58.890] (II) Loading extension XVideo
    [ 58.890] (II) Loading extension XVideo-MotionCompensation
    [ 58.890] (II) Loading extension X-Resource
    [ 58.890] (II) LoadModule: "dbe"
    [ 58.891] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 58.891] (II) Module dbe: vendor="X.Org Foundation"
    [ 58.891] compiled for 1.12.0, module version = 1.0.0
    [ 58.891] Module class: X.Org Server Extension
    [ 58.891] ABI class: X.Org Server Extension, version 6.0
    [ 58.891] (II) Loading extension DOUBLE-BUFFER
    [ 58.891] (II) LoadModule: "glx"
    [ 58.892] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 58.926] (II) Module glx: vendor="X.Org Foundation"
    [ 58.926] compiled for 1.12.0, module version = 1.0.0
    [ 58.926] ABI class: X.Org Server Extension, version 6.0
    [ 58.926] (==) AIGLX enabled
    [ 58.926] (II) Loading extension GLX
    [ 58.927] (II) LoadModule: "record"
    [ 58.927] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 58.928] (II) Module record: vendor="X.Org Foundation"
    [ 58.928] compiled for 1.12.0, module version = 1.13.0
    [ 58.928] Module class: X.Org Server Extension
    [ 58.928] ABI class: X.Org Server Extension, version 6.0
    [ 58.928] (II) Loading extension RECORD
    [ 58.928] (II) LoadModule: "dri"
    [ 58.928] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 58.929] (II) Module dri: vendor="X.Org Foundation"
    [ 58.929] compiled for 1.12.0, module version = 1.0.0
    [ 58.929] ABI class: X.Org Server Extension, version 6.0
    [ 58.929] (II) Loading extension XFree86-DRI
    [ 58.929] (II) LoadModule: "dri2"
    [ 58.929] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 58.929] (II) Module dri2: vendor="X.Org Foundation"
    [ 58.929] compiled for 1.12.0, module version = 1.2.0
    [ 58.929] ABI class: X.Org Server Extension, version 6.0
    [ 58.929] (II) Loading extension DRI2
    [ 58.929] (II) LoadModule: "radeon"
    [ 58.929] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 58.992] (II) Module radeon: vendor="X.Org Foundation"
    [ 58.992] compiled for 1.11.99.902, module version = 6.14.3
    [ 58.992] Module class: X.Org Video Driver
    [ 58.992] ABI class: X.Org Video Driver, version 12.0
    [ 58.999] (II) LoadModule: "nouveau"
    [ 58.999] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 59.033] (II) Module nouveau: vendor="X.Org Foundation"
    [ 59.033] compiled for 1.11.99.902, module version = 0.0.16
    [ 59.033] Module class: X.Org Video Driver
    [ 59.033] ABI class: X.Org Video Driver, version 12.0
    [ 59.034] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS
    [ 59.036] (II) NOUVEAU driver
    [ 59.036] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 59.036] RIVA TNT (NV04)
    [ 59.036] RIVA TNT2 (NV05)
    [ 59.036] GeForce 256 (NV10)
    [ 59.036] GeForce 2 (NV11, NV15)
    [ 59.036] GeForce 4MX (NV17, NV18)
    [ 59.036] GeForce 3 (NV20)
    [ 59.036] GeForce 4Ti (NV25, NV28)
    [ 59.036] GeForce FX (NV3x)
    [ 59.036] GeForce 6 (NV4x)
    [ 59.036] GeForce 7 (G7x)
    [ 59.036] GeForce 8 (G8x)
    [ 59.036] GeForce GTX 200 (NVA0)
    [ 59.036] GeForce GTX 400 (NVC0)
    [ 59.037] (--) using VT number 7
    [ 59.047] (II) [KMS] Kernel modesetting enabled.
    [ 59.047] (II) [KMS] Kernel modesetting enabled.
    [ 59.047] drmOpenDevice: node name is /dev/dri/card0
    [ 59.047] drmOpenDevice: open result is 7, (OK)
    [ 59.047] drmOpenByBusid: Searching for BusID pci:0000:00:0d.0
    [ 59.047] drmOpenDevice: node name is /dev/dri/card0
    [ 59.047] drmOpenDevice: open result is 7, (OK)
    [ 59.047] drmOpenByBusid: drmOpenMinor returns 7
    [ 59.047] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 59.047] drmOpenDevice: node name is /dev/dri/card1
    [ 59.047] drmOpenDevice: open result is 7, (OK)
    [ 59.047] drmOpenByBusid: drmOpenMinor returns 7
    [ 59.047] drmOpenByBusid: drmGetBusid reports pci:0000:00:0d.0
    [ 59.047] (II) [drm] nouveau interface version: 0.0.16
    [ 59.047] (EE) Screen 2 deleted because of no matching config section.
    [ 59.047] (II) UnloadModule: "nouveau"
    [ 59.048] (**) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 59.048] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 59.048] (==) RADEON(0): Default visual is TrueColor
    [ 59.048] (**) RADEON(0): Option "ZaphodHeads" "DVI-I-1"
    [ 59.048] (==) RADEON(0): RGB weight 888
    [ 59.048] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 59.048] (--) RADEON(0): Chipset: "ATI Radeon X300 (RV370) 5B60 (PCIE)" (ChipID = 0x5b60)
    [ 59.048] (II) RADEON(0): PCIE card detected
    [ 59.048] drmOpenDevice: node name is /dev/dri/card0
    [ 59.048] drmOpenDevice: open result is 8, (OK)
    [ 59.048] drmOpenByBusid: Searching for BusID pci:0000:02:00.0
    [ 59.048] drmOpenDevice: node name is /dev/dri/card0
    [ 59.048] drmOpenDevice: open result is 8, (OK)
    [ 59.048] drmOpenByBusid: drmOpenMinor returns 8
    [ 59.048] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 59.048] (II) Loading sub module "exa"
    [ 59.048] (II) LoadModule: "exa"
    [ 59.079] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 59.092] (II) Module exa: vendor="X.Org Foundation"
    [ 59.092] compiled for 1.12.0, module version = 2.5.0
    [ 59.092] ABI class: X.Org Video Driver, version 12.0
    [ 59.092] (II) RADEON(0): KMS Color Tiling: enabled
    [ 59.092] (II) RADEON(0): KMS Pageflipping: enabled
    [ 59.092] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 59.207] (WW) RADEON(0): No outputs definitely connected, trying again...
    [ 59.207] (WW) RADEON(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
    [ 59.207] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 59.207]
    [ 59.207] Backtrace:
    [ 59.208] 0: /usr/bin/X (xorg_backtrace+0x34) [0x567da4]
    [ 59.208] 1: /usr/bin/X (0x400000+0x16b8b9) [0x56b8b9]
    [ 59.208] 2: /lib/libpthread.so.0 (0x7fe8a4f74000+0xf270) [0x7fe8a4f83270]
    [ 59.208] 3: /usr/bin/X (xf86SetScrnInfoModes+0x254) [0x4a22d4]
    [ 59.208] 4: /usr/bin/X (xf86InitialConfiguration+0x14c4) [0x4a5b74]
    [ 59.208] 5: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7fe8a1f66000+0xdda73) [0x7fe8a2043a73]
    [ 59.208] 6: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7fe8a1f66000+0xd9ff7) [0x7fe8a203fff7]
    [ 59.208] 7: /usr/bin/X (InitOutput+0x83c) [0x4735cc]
    [ 59.208] 8: /usr/bin/X (0x400000+0x22c0d) [0x422c0d]
    [ 59.208] 9: /lib/libc.so.6 (__libc_start_main+0xed) [0x7fe8a3e2a38d]
    [ 59.208] 10: /usr/bin/X (0x400000+0x230cd) [0x4230cd]
    [ 59.208]
    [ 59.208] Segmentation fault at address (nil)
    [ 59.208]
    Fatal server error:
    [ 59.208] Caught signal 11 (Segmentation fault). Server aborting
    [ 59.208]
    [ 59.208]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 59.208] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 59.208]
    [ 59.224] Server terminated with error (1). Closing log file.
    [greg@spacebar ~]$ lspci | grep VGA
    00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2)
    02:00.0 VGA compatible controller: Advanced Micro Devices [AMD] nee ATI RV370 5B60 [Radeon X300 (PCIE)]
    [greg@spacebar ~]$ cat Xorg.0.log
    [ 58.529]
    X.Org X Server 1.12.0
    Release Date: 2012-03-04
    [ 58.529] X Protocol Version 11, Revision 0
    [ 58.530] Build Operating System: Linux 3.2.9-1-ARCH x86_64
    [ 58.530] Current Operating System: Linux spacebar 3.2.12-1-ARCH #1 SMP PREEMPT Mon Mar 19 17:50:01 CET 2012 x86_64
    [ 58.530] Kernel command line: root=/dev/disk/by-label/arch ro quiet
    [ 58.530] Build Date: 05 March 2012 05:59:48AM
    [ 58.530]
    [ 58.530] Current version of pixman: 0.24.4
    [ 58.530] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 58.530] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 58.531] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Mar 22 14:32:18 2012
    [ 58.577] (==) Using config file: "/etc/X11/xorg.conf"
    [ 58.577] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 58.620] (==) ServerLayout "Layout0"
    [ 58.620] (**) |-->Screen "Screen0" (0)
    [ 58.620] (**) | |-->Monitor "<default monitor>"
    [ 58.621] (**) | |-->Device "Device0"
    [ 58.621] (==) No monitor specified for screen "Screen0".
    Using a default monitor configuration.
    [ 58.621] (**) |-->Screen "Screen1" (1)
    [ 58.621] (**) | |-->Monitor "<default monitor>"
    [ 58.621] (**) | |-->Device "Device1"
    [ 58.621] (==) No monitor specified for screen "Screen1".
    Using a default monitor configuration.
    [ 58.621] (**) |-->Screen "Screen2" (2)
    [ 58.621] (**) | |-->Monitor "<default monitor>"
    [ 58.621] (**) | |-->Device "Device2"
    [ 58.621] (==) No monitor specified for screen "Screen2".
    Using a default monitor configuration.
    [ 58.621] (**) Option "Xinerama" "on"
    [ 58.621] (==) Automatically adding devices
    [ 58.621] (==) Automatically enabling devices
    [ 58.621] (**) Xinerama: enabled
    [ 58.716] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 58.716] Entry deleted from font path.
    [ 58.799] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 58.799] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 58.799] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 58.799] (II) Loader magic: 0x7cef60
    [ 58.799] (II) Module ABI versions:
    [ 58.799] X.Org ANSI C Emulation: 0.4
    [ 58.799] X.Org Video Driver: 12.0
    [ 58.799] X.Org XInput driver : 16.0
    [ 58.799] X.Org Server Extension : 6.0
    [ 58.800] (--) PCI: (0:0:13:0) 10de:03d0:1458:d000 rev 162, Mem @ 0xe2000000/16777216, 0xc0000000/268435456, 0xe5000000/16777216, BIOS @ 0x????????/131072
    [ 58.800] (--) PCI:*(0:2:0:0) 1002:5b60:1002:0302 rev 0, Mem @ 0xd0000000/134217728, 0xe4000000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/131072
    [ 58.800] (--) PCI: (0:2:0:1) 1002:5b70:1002:0303 rev 0, Mem @ 0xe4010000/65536
    [ 58.800] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 58.800] (II) LoadModule: "extmod"
    [ 58.886] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 58.890] (II) Module extmod: vendor="X.Org Foundation"
    [ 58.890] compiled for 1.12.0, module version = 1.0.0
    [ 58.890] Module class: X.Org Server Extension
    [ 58.890] ABI class: X.Org Server Extension, version 6.0
    [ 58.890] (II) Loading extension MIT-SCREEN-SAVER
    [ 58.890] (II) Loading extension XFree86-VidModeExtension
    [ 58.890] (II) Loading extension XFree86-DGA
    [ 58.890] (II) Loading extension DPMS
    [ 58.890] (II) Loading extension XVideo
    [ 58.890] (II) Loading extension XVideo-MotionCompensation
    [ 58.890] (II) Loading extension X-Resource
    [ 58.890] (II) LoadModule: "dbe"
    [ 58.891] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 58.891] (II) Module dbe: vendor="X.Org Foundation"
    [ 58.891] compiled for 1.12.0, module version = 1.0.0
    [ 58.891] Module class: X.Org Server Extension
    [ 58.891] ABI class: X.Org Server Extension, version 6.0
    [ 58.891] (II) Loading extension DOUBLE-BUFFER
    [ 58.891] (II) LoadModule: "glx"
    [ 58.892] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 58.926] (II) Module glx: vendor="X.Org Foundation"
    [ 58.926] compiled for 1.12.0, module version = 1.0.0
    [ 58.926] ABI class: X.Org Server Extension, version 6.0
    [ 58.926] (==) AIGLX enabled
    [ 58.926] (II) Loading extension GLX
    [ 58.927] (II) LoadModule: "record"
    [ 58.927] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 58.928] (II) Module record: vendor="X.Org Foundation"
    [ 58.928] compiled for 1.12.0, module version = 1.13.0
    [ 58.928] Module class: X.Org Server Extension
    [ 58.928] ABI class: X.Org Server Extension, version 6.0
    [ 58.928] (II) Loading extension RECORD
    [ 58.928] (II) LoadModule: "dri"
    [ 58.928] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 58.929] (II) Module dri: vendor="X.Org Foundation"
    [ 58.929] compiled for 1.12.0, module version = 1.0.0
    [ 58.929] ABI class: X.Org Server Extension, version 6.0
    [ 58.929] (II) Loading extension XFree86-DRI
    [ 58.929] (II) LoadModule: "dri2"
    [ 58.929] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 58.929] (II) Module dri2: vendor="X.Org Foundation"
    [ 58.929] compiled for 1.12.0, module version = 1.2.0
    [ 58.929] ABI class: X.Org Server Extension, version 6.0
    [ 58.929] (II) Loading extension DRI2
    [ 58.929] (II) LoadModule: "radeon"
    [ 58.929] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 58.992] (II) Module radeon: vendor="X.Org Foundation"
    [ 58.992] compiled for 1.11.99.902, module version = 6.14.3
    [ 58.992] Module class: X.Org Video Driver
    [ 58.992] ABI class: X.Org Video Driver, version 12.0
    [ 58.999] (II) LoadModule: "nouveau"
    [ 58.999] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 59.033] (II) Module nouveau: vendor="X.Org Foundation"
    [ 59.033] compiled for 1.11.99.902, module version = 0.0.16
    [ 59.033] Module class: X.Org Video Driver
    [ 59.033] ABI class: X.Org Video Driver, version 12.0
    [ 59.034] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS
    [ 59.036] (II) NOUVEAU driver
    [ 59.036] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 59.036] RIVA TNT (NV04)
    [ 59.036] RIVA TNT2 (NV05)
    [ 59.036] GeForce 256 (NV10)
    [ 59.036] GeForce 2 (NV11, NV15)
    [ 59.036] GeForce 4MX (NV17, NV18)
    [ 59.036] GeForce 3 (NV20)
    [ 59.036] GeForce 4Ti (NV25, NV28)
    [ 59.036] GeForce FX (NV3x)
    [ 59.036] GeForce 6 (NV4x)
    [ 59.036] GeForce 7 (G7x)
    [ 59.036] GeForce 8 (G8x)
    [ 59.036] GeForce GTX 200 (NVA0)
    [ 59.036] GeForce GTX 400 (NVC0)
    [ 59.037] (--) using VT number 7
    [ 59.047] (II) [KMS] Kernel modesetting enabled.
    [ 59.047] (II) [KMS] Kernel modesetting enabled.
    [ 59.047] drmOpenDevice: node name is /dev/dri/card0
    [ 59.047] drmOpenDevice: open result is 7, (OK)
    [ 59.047] drmOpenByBusid: Searching for BusID pci:0000:00:0d.0
    [ 59.047] drmOpenDevice: node name is /dev/dri/card0
    [ 59.047] drmOpenDevice: open result is 7, (OK)
    [ 59.047] drmOpenByBusid: drmOpenMinor returns 7
    [ 59.047] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 59.047] drmOpenDevice: node name is /dev/dri/card1
    [ 59.047] drmOpenDevice: open result is 7, (OK)
    [ 59.047] drmOpenByBusid: drmOpenMinor returns 7
    [ 59.047] drmOpenByBusid: drmGetBusid reports pci:0000:00:0d.0
    [ 59.047] (II) [drm] nouveau interface version: 0.0.16
    [ 59.047] (EE) Screen 2 deleted because of no matching config section.
    [ 59.047] (II) UnloadModule: "nouveau"
    [ 59.048] (**) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 59.048] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 59.048] (==) RADEON(0): Default visual is TrueColor
    [ 59.048] (**) RADEON(0): Option "ZaphodHeads" "DVI-I-1"
    [ 59.048] (==) RADEON(0): RGB weight 888
    [ 59.048] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 59.048] (--) RADEON(0): Chipset: "ATI Radeon X300 (RV370) 5B60 (PCIE)" (ChipID = 0x5b60)
    [ 59.048] (II) RADEON(0): PCIE card detected
    [ 59.048] drmOpenDevice: node name is /dev/dri/card0
    [ 59.048] drmOpenDevice: open result is 8, (OK)
    [ 59.048] drmOpenByBusid: Searching for BusID pci:0000:02:00.0
    [ 59.048] drmOpenDevice: node name is /dev/dri/card0
    [ 59.048] drmOpenDevice: open result is 8, (OK)
    [ 59.048] drmOpenByBusid: drmOpenMinor returns 8
    [ 59.048] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 59.048] (II) Loading sub module "exa"
    [ 59.048] (II) LoadModule: "exa"
    [ 59.079] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 59.092] (II) Module exa: vendor="X.Org Foundation"
    [ 59.092] compiled for 1.12.0, module version = 2.5.0
    [ 59.092] ABI class: X.Org Video Driver, version 12.0
    [ 59.092] (II) RADEON(0): KMS Color Tiling: enabled
    [ 59.092] (II) RADEON(0): KMS Pageflipping: enabled
    [ 59.092] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 59.207] (WW) RADEON(0): No outputs definitely connected, trying again...
    [ 59.207] (WW) RADEON(0): Unable to find connected outputs - setting 1024x768 initial framebuffer
    [ 59.207] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 59.207]
    [ 59.207] Backtrace:
    [ 59.208] 0: /usr/bin/X (xorg_backtrace+0x34) [0x567da4]
    [ 59.208] 1: /usr/bin/X (0x400000+0x16b8b9) [0x56b8b9]
    [ 59.208] 2: /lib/libpthread.so.0 (0x7fe8a4f74000+0xf270) [0x7fe8a4f83270]
    [ 59.208] 3: /usr/bin/X (xf86SetScrnInfoModes+0x254) [0x4a22d4]
    [ 59.208] 4: /usr/bin/X (xf86InitialConfiguration+0x14c4) [0x4a5b74]
    [ 59.208] 5: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7fe8a1f66000+0xdda73) [0x7fe8a2043a73]
    [ 59.208] 6: /usr/lib/xorg/modules/drivers/radeon_drv.so (0x7fe8a1f66000+0xd9ff7) [0x7fe8a203fff7]
    [ 59.208] 7: /usr/bin/X (InitOutput+0x83c) [0x4735cc]
    [ 59.208] 8: /usr/bin/X (0x400000+0x22c0d) [0x422c0d]
    [ 59.208] 9: /lib/libc.so.6 (__libc_start_main+0xed) [0x7fe8a3e2a38d]
    [ 59.208] 10: /usr/bin/X (0x400000+0x230cd) [0x4230cd]
    [ 59.208]
    [ 59.208] Segmentation fault at address (nil)
    [ 59.208]
    Fatal server error:
    [ 59.208] Caught signal 11 (Segmentation fault). Server aborting
    [ 59.208]
    [ 59.208]
    Please consult the The X.Org Foundation support
    at http://wiki.x.org
    for help.
    [ 59.208] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
    [ 59.208]
    [ 59.224] Server terminated with error (1). Closing log file.
    [greg@spacebar ~]$ cat /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0"
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" RightOf "Screen0"
    Option "Clone" "off"
    Option "Xinerama" "on"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Dell"
    ModelName "20"
    Option "Primary" "true"
    Option "PreferredMode" "1680x1050"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Dell"
    ModelName "17"
    Option "PreferredMode" "1280x1024"
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Samsung"
    ModelName "740n"
    Option "PreferredMode" "1280x1024"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "radeon"
    BusID "PCI:2:0:0"
    # Actual connector - as reported by /sys/class/drm/card0-xx
    Option "Monitor-DVI-I-1" "Monitor0"
    Screen 0
    Option "ZaphodHeads" "DVI-I-1"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "radeon"
    BusID "PCI:2:0:0"
    # Actual connector - as reported by /sys/class/drm/card1-xx
    Option "Monitor-VGA-1" "Monitor1"
    Screen 1
    Option "ZaphodHeads" "VGA-1"
    EndSection
    Section "Device"
    Identifier "Device2"
    Driver "nouveau"
    BusID "PCI:0:13:0"
    # Actual connector - as reported by /sys/class/drm/card0-xx
    Option "Monitor-VGA-2" "Monitor2"
    Screen 2
    Option "ZaphodHeads" "VGA-2"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Subsection "Display"
    Viewport 0 0
    Depth 8
    Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 16
    Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 24
    Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Subsection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "Device2"
    Monitor "Monitor2"
    DefaultDepth 24
    Subsection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    EndSection
    [greg@spacebar ~]$ pacman -Q | grep xf86-video
    xf86-video-ati 6.14.3-2
    xf86-video-nouveau 0.0.16_git20120210-1
    xf86-video-vesa 2.3.0-8
    [greg@spacebar ~]$ cat /etc/mkinitcpio.conf | grep MODULES
    # MODULES
    # MODULES="piix ide_disk reiserfs"
    MODULES="radeon nouveau"
    [greg@spacebar ~]$ ls /sys/class/drm/
    card0@ card0-DVI-I-1@ card0-SVIDEO-1@ card0-VGA-1@ card1@ card1-VGA-2@ controlD64@ controlD65@ ttm@ version
    I'm stumped. If I comment out the ZaphodHeads lines X will start but the monitor orders and positions are messed up, and the single monitor on the nvidia card doesn't start. Any ideas? Missing packages? Anything?
    Last edited by MisterAnderson (2012-03-24 14:50:37)

    PROGRESS
    Hey guys, I've now made progress. I had to first add "fbcon=map:0" to my grub kernel line to stop the framebuffer error. This forces the framebuffer for the console to stay on the first card initialised, rather than swing back and forth. Secondly, ZaphodHeads under radeon requires the outputs be labelled as they would be in xrandr, not as they would be in /sys/class/drm/cardx-xx. Now I have a working two monitors without xrandr (can be seen by typing xrandr in terminal and it posting that it's not enabled). What is NOT working is the third monitor (off the nvidia card) and, when I try to open firefox everything crashes to blank screens (the monitors turn off into powersaving mode) and the keyboard does not appear to function, lock keys won't toggle (terminal doesn't cause this, but other programs may). I can still ssh in and everything is running fine as far as I can tell with nothing obvious visible in the logs anywhere that I can find.
    The (sort of) working xorg.conf:
    [greg@spacebar ~]$ cat /etc/X11/xorg.conf
    Section "ServerLayout"
    Identifier "Layout0"
    # You would need one screen for each monitor
    Screen 0 "Screen0"
    Screen 1 "Screen1" RightOf "Screen0"
    Screen 2 "Screen2" LeftOf "Screen0"
    Option "Clone" "off"
    Option "Xinerama" "on"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Dell"
    ModelName "20"
    Option "Primary" "true"
    EndSection
    Section "Monitor"
    Identifier "Monitor1"
    VendorName "Dell"
    ModelName "17"
    EndSection
    Section "Monitor"
    Identifier "Monitor2"
    VendorName "Samsung"
    ModelName "740n"
    EndSection
    Section "Device"
    Identifier "Device0"
    Driver "radeon"
    BusID "PCI:2:0:0"
    Screen 0
    Option "ZaphodHeads" "DVI-0"
    EndSection
    Section "Device"
    Identifier "Device1"
    Driver "radeon"
    BusID "PCI:2:0:0"
    Screen 1
    Option "ZaphodHeads" "VGA-0"
    EndSection
    Section "Device"
    Identifier "Device2"
    Driver "nouveau"
    BusID "PCI:0:13:0"
    Screen 2
    #### Option "ZaphodHeads" "VGA-2"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Device0"
    Monitor "Monitor0"
    DefaultDepth 24
    Subsection "Display"
    Viewport 0 0
    Depth 8
    Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 16
    Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 24
    Modes "1680x1050" "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "Screen1"
    Device "Device1"
    Monitor "Monitor1"
    DefaultDepth 24
    Subsection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    EndSection
    Section "Screen"
    Identifier "Screen2"
    Device "Device2"
    Monitor "Monitor2"
    DefaultDepth 24
    Subsection "Display"
    Viewport 0 0
    Depth 8
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 16
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    Subsection "Display"
    Viewport 0 0
    Depth 24
    Modes "1280x1024" "1152x864" "1024x768" "800x600" "640x480" "720x400"
    EndSubsection
    EndSection
    And here is the current Xorg.0.log:
    [greg@spacebar ~]$ cat Xorg.0.log
    [ 775.845]
    X.Org X Server 1.12.0
    Release Date: 2012-03-04
    [ 775.851] X Protocol Version 11, Revision 0
    [ 775.853] Build Operating System: Linux 3.2.9-1-ARCH x86_64
    [ 775.856] Current Operating System: Linux spacebar 3.2.12-1-ARCH #1 SMP PREEMPT Mon Mar 19 17:50:01 CET 2012 x86_64
    [ 775.858] Kernel command line: root=/dev/disk/by-label/arch ro quiet fbcon=map:0
    [ 775.860] Build Date: 05 March 2012 05:59:48AM
    [ 775.863]
    [ 775.865] Current version of pixman: 0.24.4
    [ 775.867] Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    [ 775.872] Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    [ 775.880] (==) Log file: "/var/log/Xorg.0.log", Time: Sun Mar 25 00:29:47 2012
    [ 775.882] (==) Using config file: "/etc/X11/xorg.conf"
    [ 775.885] (==) Using config directory: "/etc/X11/xorg.conf.d"
    [ 775.887] (==) ServerLayout "Layout0"
    [ 775.887] (**) |-->Screen "Screen0" (0)
    [ 775.887] (**) | |-->Monitor "Monitor0"
    [ 775.888] (**) | |-->Device "Device0"
    [ 775.888] (**) |-->Screen "Screen1" (1)
    [ 775.888] (**) | |-->Monitor "Monitor1"
    [ 775.888] (**) | |-->Device "Device1"
    [ 775.888] (**) |-->Screen "Screen2" (2)
    [ 775.888] (**) | |-->Monitor "Monitor2"
    [ 775.888] (**) | |-->Device "Device2"
    [ 775.888] (**) Option "Xinerama" "on"
    [ 775.888] (==) Automatically adding devices
    [ 775.888] (==) Automatically enabling devices
    [ 775.888] (**) Xinerama: enabled
    [ 775.888] (WW) The directory "/usr/share/fonts/OTF/" does not exist.
    [ 775.888] Entry deleted from font path.
    [ 775.888] (==) FontPath set to:
    /usr/share/fonts/misc/,
    /usr/share/fonts/TTF/,
    /usr/share/fonts/Type1/,
    /usr/share/fonts/100dpi/,
    /usr/share/fonts/75dpi/
    [ 775.888] (==) ModulePath set to "/usr/lib/xorg/modules"
    [ 775.888] (II) The server relies on udev to provide the list of input devices.
    If no devices become available, reconfigure udev or disable AutoAddDevices.
    [ 775.888] (II) Loader magic: 0x7cef60
    [ 775.888] (II) Module ABI versions:
    [ 775.888] X.Org ANSI C Emulation: 0.4
    [ 775.888] X.Org Video Driver: 12.0
    [ 775.888] X.Org XInput driver : 16.0
    [ 775.888] X.Org Server Extension : 6.0
    [ 775.889] (--) PCI: (0:0:13:0) 10de:03d0:1458:d000 rev 162, Mem @ 0xe2000000/16777216, 0xc0000000/268435456, 0xe5000000/16777216, BIOS @ 0x????????/131072
    [ 775.889] (--) PCI:*(0:2:0:0) 1002:5b60:1002:0302 rev 0, Mem @ 0xd0000000/134217728, 0xe4000000/65536, I/O @ 0x0000a000/256, BIOS @ 0x????????/131072
    [ 775.889] (--) PCI: (0:2:0:1) 1002:5b70:1002:0303 rev 0, Mem @ 0xe4010000/65536
    [ 775.889] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    [ 775.889] (II) LoadModule: "extmod"
    [ 775.890] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    [ 775.890] (II) Module extmod: vendor="X.Org Foundation"
    [ 775.890] compiled for 1.12.0, module version = 1.0.0
    [ 775.890] Module class: X.Org Server Extension
    [ 775.890] ABI class: X.Org Server Extension, version 6.0
    [ 775.890] (II) Loading extension MIT-SCREEN-SAVER
    [ 775.890] (II) Loading extension XFree86-VidModeExtension
    [ 775.890] (II) Loading extension XFree86-DGA
    [ 775.890] (II) Loading extension DPMS
    [ 775.890] (II) Loading extension XVideo
    [ 775.890] (II) Loading extension XVideo-MotionCompensation
    [ 775.890] (II) Loading extension X-Resource
    [ 775.890] (II) LoadModule: "dbe"
    [ 775.890] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    [ 775.890] (II) Module dbe: vendor="X.Org Foundation"
    [ 775.890] compiled for 1.12.0, module version = 1.0.0
    [ 775.890] Module class: X.Org Server Extension
    [ 775.890] ABI class: X.Org Server Extension, version 6.0
    [ 775.890] (II) Loading extension DOUBLE-BUFFER
    [ 775.890] (II) LoadModule: "glx"
    [ 775.890] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    [ 775.890] (II) Module glx: vendor="X.Org Foundation"
    [ 775.890] compiled for 1.12.0, module version = 1.0.0
    [ 775.890] ABI class: X.Org Server Extension, version 6.0
    [ 775.890] (==) AIGLX enabled
    [ 775.890] (II) Loading extension GLX
    [ 775.890] (II) LoadModule: "record"
    [ 775.891] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    [ 775.891] (II) Module record: vendor="X.Org Foundation"
    [ 775.891] compiled for 1.12.0, module version = 1.13.0
    [ 775.891] Module class: X.Org Server Extension
    [ 775.891] ABI class: X.Org Server Extension, version 6.0
    [ 775.891] (II) Loading extension RECORD
    [ 775.891] (II) LoadModule: "dri"
    [ 775.891] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    [ 775.891] (II) Module dri: vendor="X.Org Foundation"
    [ 775.891] compiled for 1.12.0, module version = 1.0.0
    [ 775.891] ABI class: X.Org Server Extension, version 6.0
    [ 775.891] (II) Loading extension XFree86-DRI
    [ 775.891] (II) LoadModule: "dri2"
    [ 775.891] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
    [ 775.891] (II) Module dri2: vendor="X.Org Foundation"
    [ 775.891] compiled for 1.12.0, module version = 1.2.0
    [ 775.891] ABI class: X.Org Server Extension, version 6.0
    [ 775.891] (II) Loading extension DRI2
    [ 775.891] (II) LoadModule: "radeon"
    [ 775.891] (II) Loading /usr/lib/xorg/modules/drivers/radeon_drv.so
    [ 775.892] (II) Module radeon: vendor="X.Org Foundation"
    [ 775.892] compiled for 1.11.99.902, module version = 6.14.3
    [ 775.892] Module class: X.Org Video Driver
    [ 775.892] ABI class: X.Org Video Driver, version 12.0
    [ 775.892] (II) LoadModule: "nouveau"
    [ 775.892] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
    [ 775.937] (II) Module nouveau: vendor="X.Org Foundation"
    [ 775.937] compiled for 1.11.99.902, module version = 0.0.16
    [ 775.937] Module class: X.Org Video Driver
    [ 775.937] ABI class: X.Org Video Driver, version 12.0
    [ 775.937] (II) RADEON: Driver for ATI Radeon chipsets:
    ATI Radeon Mobility X600 (M24) 3150 (PCIE), ATI FireMV 2400 (PCI),
    ATI Radeon Mobility X300 (M24) 3152 (PCIE),
    ATI FireGL M24 GL 3154 (PCIE), ATI FireMV 2400 3155 (PCI),
    ATI Radeon X600 (RV380) 3E50 (PCIE),
    ATI FireGL V3200 (RV380) 3E54 (PCIE), ATI Radeon IGP320 (A3) 4136,
    ATI Radeon IGP330/340/350 (A4) 4137, ATI Radeon 9500 AD (AGP),
    ATI Radeon 9500 AE (AGP), ATI Radeon 9600TX AF (AGP),
    ATI FireGL Z1 AG (AGP), ATI Radeon 9800SE AH (AGP),
    ATI Radeon 9800 AI (AGP), ATI Radeon 9800 AJ (AGP),
    ATI FireGL X2 AK (AGP), ATI Radeon 9600 AP (AGP),
    ATI Radeon 9600SE AQ (AGP), ATI Radeon 9600XT AR (AGP),
    ATI Radeon 9600 AS (AGP), ATI FireGL T2 AT (AGP), ATI Radeon 9650,
    ATI FireGL RV360 AV (AGP), ATI Radeon 7000 IGP (A4+) 4237,
    ATI Radeon 8500 AIW BB (AGP), ATI Radeon IGP320M (U1) 4336,
    ATI Radeon IGP330M/340M/350M (U2) 4337,
    ATI Radeon Mobility 7000 IGP 4437, ATI Radeon 9000/PRO If (AGP/PCI),
    ATI Radeon 9000 Ig (AGP/PCI), ATI Radeon X800 (R420) JH (AGP),
    ATI Radeon X800PRO (R420) JI (AGP),
    ATI Radeon X800SE (R420) JJ (AGP), ATI Radeon X800 (R420) JK (AGP),
    ATI Radeon X800 (R420) JL (AGP), ATI FireGL X3 (R420) JM (AGP),
    ATI Radeon Mobility 9800 (M18) JN (AGP),
    ATI Radeon X800 SE (R420) (AGP), ATI Radeon X800XT (R420) JP (AGP),
    ATI Radeon X800 VE (R420) JT (AGP), ATI Radeon X850 (R480) (AGP),
    ATI Radeon X850 XT (R480) (AGP), ATI Radeon X850 SE (R480) (AGP),
    ATI Radeon X850 PRO (R480) (AGP), ATI Radeon X850 XT PE (R480) (AGP),
    ATI Radeon Mobility M7 LW (AGP),
    ATI Mobility FireGL 7800 M7 LX (AGP),
    ATI Radeon Mobility M6 LY (AGP), ATI Radeon Mobility M6 LZ (AGP),
    ATI FireGL Mobility 9000 (M9) Ld (AGP),
    ATI Radeon Mobility 9000 (M9) Lf (AGP),
    ATI Radeon Mobility 9000 (M9) Lg (AGP), ATI Radeon 9700 Pro ND (AGP),
    ATI Radeon 9700/9500Pro NE (AGP), ATI Radeon 9600TX NF (AGP),
    ATI FireGL X1 NG (AGP), ATI Radeon 9800PRO NH (AGP),
    ATI Radeon 9800 NI (AGP), ATI FireGL X2 NK (AGP),
    ATI Radeon 9800XT NJ (AGP),
    ATI Radeon Mobility 9600/9700 (M10/M11) NP (AGP),
    ATI Radeon Mobility 9600 (M10) NQ (AGP),
    ATI Radeon Mobility 9600 (M11) NR (AGP),
    ATI Radeon Mobility 9600 (M10) NS (AGP),
    ATI FireGL Mobility T2 (M10) NT (AGP),
    ATI FireGL Mobility T2e (M11) NV (AGP), ATI Radeon QD (AGP),
    ATI Radeon QE (AGP), ATI Radeon QF (AGP), ATI Radeon QG (AGP),
    ATI FireGL 8700/8800 QH (AGP), ATI Radeon 8500 QL (AGP),
    ATI Radeon 9100 QM (AGP), ATI Radeon 7500 QW (AGP/PCI),
    ATI Radeon 7500 QX (AGP/PCI), ATI Radeon VE/7000 QY (AGP/PCI),
    ATI Radeon VE/7000 QZ (AGP/PCI), ATI ES1000 515E (PCI),
    ATI Radeon Mobility X300 (M22) 5460 (PCIE),
    ATI Radeon Mobility X600 SE (M24C) 5462 (PCIE),
    ATI FireGL M22 GL 5464 (PCIE), ATI Radeon X800 (R423) UH (PCIE),
    ATI Radeon X800PRO (R423) UI (PCIE),
    ATI Radeon X800LE (R423) UJ (PCIE),
    ATI Radeon X800SE (R423) UK (PCIE),
    ATI Radeon X800 XTP (R430) (PCIE), ATI Radeon X800 XL (R430) (PCIE),
    ATI Radeon X800 SE (R430) (PCIE), ATI Radeon X800 (R430) (PCIE),
    ATI FireGL V7100 (R423) (PCIE), ATI FireGL V5100 (R423) UQ (PCIE),
    ATI FireGL unknown (R423) UR (PCIE),
    ATI FireGL unknown (R423) UT (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility FireGL V5000 (M26) (PCIE),
    ATI Mobility Radeon X700 XL (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Mobility Radeon X700 (M26) (PCIE),
    ATI Radeon X550XTX 5657 (PCIE), ATI Radeon 9100 IGP (A5) 5834,
    ATI Radeon Mobility 9100 IGP (U3) 5835,
    ATI Radeon XPRESS 200 5954 (PCIE),
    ATI Radeon XPRESS 200M 5955 (PCIE), ATI Radeon 9250 5960 (AGP),
    ATI Radeon 9200 5961 (AGP), ATI Radeon 9200 5962 (AGP),
    ATI Radeon 9200SE 5964 (AGP), ATI FireMV 2200 (PCI),
    ATI ES1000 5969 (PCI), ATI Radeon XPRESS 200 5974 (PCIE),
    ATI Radeon XPRESS 200M 5975 (PCIE),
    ATI Radeon XPRESS 200 5A41 (PCIE),
    ATI Radeon XPRESS 200M 5A42 (PCIE),
    ATI Radeon XPRESS 200 5A61 (PCIE),
    ATI Radeon XPRESS 200M 5A62 (PCIE),
    ATI Radeon X300 (RV370) 5B60 (PCIE),
    ATI Radeon X600 (RV370) 5B62 (PCIE),
    ATI Radeon X550 (RV370) 5B63 (PCIE),
    ATI FireGL V3100 (RV370) 5B64 (PCIE),
    ATI FireMV 2200 PCIE (RV370) 5B65 (PCIE),
    ATI Radeon Mobility 9200 (M9+) 5C61 (AGP),
    ATI Radeon Mobility 9200 (M9+) 5C63 (AGP),
    ATI Mobility Radeon X800 XT (M28) (PCIE),
    ATI Mobility FireGL V5100 (M28) (PCIE),
    ATI Mobility Radeon X800 (M28) (PCIE), ATI Radeon X850 5D4C (PCIE),
    ATI Radeon X850 XT PE (R480) (PCIE),
    ATI Radeon X850 SE (R480) (PCIE), ATI Radeon X850 PRO (R480) (PCIE),
    ATI unknown Radeon / FireGL (R480) 5D50 (PCIE),
    ATI Radeon X850 XT (R480) (PCIE),
    ATI Radeon X800XT (R423) 5D57 (PCIE),
    ATI FireGL V5000 (RV410) (PCIE), ATI Radeon X700 XT (RV410) (PCIE),
    ATI Radeon X700 PRO (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X700 (RV410) (PCIE),
    ATI Radeon X700 SE (RV410) (PCIE), ATI Radeon X1800,
    ATI Mobility Radeon X1800 XT, ATI Mobility Radeon X1800,
    ATI Mobility FireGL V7200, ATI FireGL V7200, ATI FireGL V5300,
    ATI Mobility FireGL V7100, ATI Radeon X1800, ATI Radeon X1800,
    ATI Radeon X1800, ATI Radeon X1800, ATI Radeon X1800,
    ATI FireGL V7300, ATI FireGL V7350, ATI Radeon X1600, ATI RV505,
    ATI Radeon X1300/X1550, ATI Radeon X1550, ATI M54-GL,
    ATI Mobility Radeon X1400, ATI Radeon X1300/X1550,
    ATI Radeon X1550 64-bit, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Mobility Radeon X1300,
    ATI Mobility Radeon X1300, ATI Radeon X1300, ATI Radeon X1300,
    ATI RV505, ATI RV505, ATI FireGL V3300, ATI FireGL V3350,
    ATI Radeon X1300, ATI Radeon X1550 64-bit, ATI Radeon X1300/X1550,
    ATI Radeon X1600, ATI Radeon X1300/X1550, ATI Mobility Radeon X1450,
    ATI Radeon X1300/X1550, ATI Mobility Radeon X2300,
    ATI Mobility Radeon X2300, ATI Mobility Radeon X1350,
    ATI Mobility Radeon X1350, ATI Mobility Radeon X1450,
    ATI Radeon X1300, ATI Radeon X1550, ATI Mobility Radeon X1350,
    ATI FireMV 2250, ATI Radeon X1550 64-bit, ATI Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1600, ATI Radeon X1600,
    ATI Mobility FireGL V5200, ATI Mobility Radeon X1600,
    ATI Radeon X1650, ATI Radeon X1650, ATI Radeon X1600,
    ATI Radeon X1300 XT/X1600 Pro, ATI FireGL V3400,
    ATI Mobility FireGL V5250, ATI Mobility Radeon X1700,
    ATI Mobility Radeon X1700 XT, ATI FireGL V5200,
    ATI Mobility Radeon X1700, ATI Radeon X2300HD,
    ATI Mobility Radeon HD 2300, ATI Mobility Radeon HD 2300,
    ATI Radeon X1950, ATI Radeon X1900, ATI Radeon X1950,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI Radeon X1900, ATI Radeon X1900, ATI Radeon X1900,
    ATI AMD Stream Processor, ATI Radeon X1900, ATI Radeon X1950,
    ATI RV560, ATI RV560, ATI Mobility Radeon X1900, ATI RV560,
    ATI Radeon X1950 GT, ATI RV570, ATI RV570, ATI FireGL V7400,
    ATI RV560, ATI Radeon X1650, ATI Radeon X1650, ATI RV560,
    ATI Radeon 9100 PRO IGP 7834, ATI Radeon Mobility 9200 IGP 7835,
    ATI Radeon X1200, ATI Radeon X1200, ATI Radeon X1200,
    ATI Radeon X1200, ATI Radeon X1200, ATI RS740, ATI RS740M, ATI RS740,
    ATI RS740M, ATI Radeon HD 2900 XT, ATI Radeon HD 2900 XT,
    ATI Radeon HD 2900 XT, ATI Radeon HD 2900 Pro, ATI Radeon HD 2900 GT,
    ATI FireGL V8650, ATI FireGL V8600, ATI FireGL V7600,
    ATI Radeon 4800 Series, ATI Radeon HD 4870 x2,
    ATI Radeon 4800 Series, ATI Radeon HD 4850 x2,
    ATI FirePro V8750 (FireGL), ATI FirePro V7760 (FireGL),
    ATI Mobility RADEON HD 4850, ATI Mobility RADEON HD 4850 X2,
    ATI Radeon 4800 Series, ATI FirePro RV770, AMD FireStream 9270,
    AMD FireStream 9250, ATI FirePro V8700 (FireGL),
    ATI Mobility RADEON HD 4870, ATI Mobility RADEON M98,
    ATI Mobility RADEON HD 4870, ATI Radeon 4800 Series,
    ATI Radeon 4800 Series, ATI FirePro M7750, ATI M98, ATI M98, ATI M98,
    ATI Mobility Radeon HD 4650, ATI Radeon RV730 (AGP),
    ATI Mobility Radeon HD 4670, ATI FirePro M5750,
    ATI Mobility Radeon HD 4670, ATI Radeon RV730 (AGP),
    ATI RV730XT [Radeon HD 4670], ATI RADEON E4600,
    ATI Radeon HD 4600 Series, ATI RV730 PRO [Radeon HD 4650],
    ATI FirePro V7750 (FireGL), ATI FirePro V5700 (FireGL),
    ATI FirePro V3750 (FireGL), ATI Mobility Radeon HD 4830,
    ATI Mobility Radeon HD 4850, ATI FirePro M7740, ATI RV740,
    ATI Radeon HD 4770, ATI Radeon HD 4700 Series, ATI Radeon HD 4770,
    ATI FirePro M5750, ATI RV610, ATI Radeon HD 2400 XT,
    ATI Radeon HD 2400 Pro, ATI Radeon HD 2400 PRO AGP, ATI FireGL V4000,
    ATI RV610, ATI Radeon HD 2350, ATI Mobility Radeon HD 2400 XT,
    ATI Mobility Radeon HD 2400, ATI RADEON E2400, ATI RV610,
    ATI FireMV 2260, ATI RV670, ATI Radeon HD3870,
    ATI Mobility Radeon HD 3850, ATI Radeon HD3850,
    ATI Mobility Radeon HD 3850 X2, ATI RV670,
    ATI Mobility Radeon HD 3870, ATI Mobility Radeon HD 3870 X2,
    ATI Radeon HD3870 X2, ATI FireGL V7700, ATI Radeon HD3850,
    ATI Radeon HD3690, AMD Firestream 9170, ATI Radeon HD 4550,
    ATI Radeon RV710, ATI Radeon RV710, ATI Radeon RV710,
    ATI Radeon HD 4350, ATI Mobility Radeon 4300 Series,
    ATI Mobility Radeon 4500 Series, ATI Mobility Radeon 4500 Series,
    ATI FirePro RG220, ATI Mobility Radeon 4330, ATI RV630,
    ATI Mobility Radeon HD 2600, ATI Mobility Radeon HD 2600 XT,
    ATI Radeon HD 2600 XT AGP, ATI Radeon HD 2600 Pro AGP,
    ATI Radeon HD 2600 XT, ATI Radeon HD 2600 Pro, ATI Gemini RV630,
    ATI Gemini Mobility Radeon HD 2600 XT, ATI FireGL V5600,
    ATI FireGL V3600, ATI Radeon HD 2600 LE,
    ATI Mobility FireGL Graphics Processor, ATI Radeon HD 3470,
    ATI Mobility Radeon HD 3430, ATI Mobility Radeon HD 3400 Series,
    ATI Radeon HD 3450, ATI Radeon HD 3450, ATI Radeon HD 3430,
    ATI Radeon HD 3450, ATI FirePro V3700, ATI FireMV 2450,
    ATI FireMV 2260, ATI FireMV 2260, ATI Radeon HD 3600 Series,
    ATI Radeon HD 3650 AGP, ATI Radeon HD 3600 PRO,
    ATI Radeon HD 3600 XT, ATI Radeon HD 3600 PRO,
    ATI Mobility Radeon HD 3650, ATI Mobility Radeon HD 3670,
    ATI Mobility FireGL V5700, ATI Mobility FireGL V5725,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3200 Graphics, ATI Radeon 3100 Graphics,
    ATI Radeon HD 3300 Graphics, ATI Radeon HD 3200 Graphics,
    ATI Radeon 3000 Graphics, SUMO, SUMO, SUMO2, SUMO2, SUMO2, SUMO2,
    SUMO, SUMO, SUMO, SUMO, SUMO, ATI Radeon HD 4200, ATI Radeon 4100,
    ATI Mobility Radeon HD 4200, ATI Mobility Radeon 4100,
    ATI Radeon HD 4290, ATI Radeon HD 4250, AMD Radeon HD 6310 Graphics,
    AMD Radeon HD 6310 Graphics, AMD Radeon HD 6250 Graphics,
    AMD Radeon HD 6250 Graphics, AMD Radeon HD 6300 Series Graphics,
    AMD Radeon HD 6200 Series Graphics, CYPRESS,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, AMD Firestream 9370,
    AMD Firestream 9350, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5800 Series,
    ATI Radeon HD 5800 Series, ATI Radeon HD 5900 Series,
    ATI Radeon HD 5900 Series, ATI Mobility Radeon HD 5800 Series,
    ATI Mobility Radeon HD 5800 Series,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI Mobility Radeon HD 5800 Series, ATI Radeon HD 5700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Radeon HD 5700 Series, ATI Radeon HD 6700 Series,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon HD 5570,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI Radeon HD 5670,
    ATI Radeon HD 5570, ATI Radeon HD 5500 Series, REDWOOD,
    ATI Mobility Radeon HD 5000 Series,
    ATI Mobility Radeon HD 5000 Series, ATI Mobility Radeon Graphics,
    ATI Mobility Radeon Graphics, CEDAR,
    ATI FirePro (FireGL) Graphics Adapter,
    ATI FirePro (FireGL) Graphics Adapter, ATI FirePro 2270, CEDAR,
    ATI Radeon HD 5450, CEDAR, CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN,
    CAYMAN, CAYMAN, CAYMAN, CAYMAN, CAYMAN, AMD Radeon HD 6900 Series,
    AMD Radeon HD 6900 Series, CAYMAN, CAYMAN, CAYMAN,
    AMD Radeon HD 6900M Series, Mobility Radeon HD 6000 Series, BARTS,
    BARTS, Mobility Radeon HD 6000 Series,
    Mobility Radeon HD 6000 Series, BARTS, BARTS, BARTS, BARTS,
    AMD Radeon HD 6800 Series, AMD Radeon HD 6800 Series,
    AMD Radeon HD 6700 Series, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS,
    TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, TURKS, CAICOS,
    CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS, CAICOS,
    CAICOS, CAICOS, CAICOS
    [ 775.939] (II) NOUVEAU driver
    [ 775.939] (II) NOUVEAU driver for NVIDIA chipset families :
    [ 775.939] RIVA TNT (NV04)
    [ 775.939] RIVA TNT2 (NV05)
    [ 775.939] GeForce 256 (NV10)
    [ 775.939] GeForce 2 (NV11, NV15)
    [ 775.939] GeForce 4MX (NV17, NV18)
    [ 775.939] GeForce 3 (NV20)
    [ 775.939] GeForce 4Ti (NV25, NV28)
    [ 775.939] GeForce FX (NV3x)
    [ 775.940] GeForce 6 (NV4x)
    [ 775.940] GeForce 7 (G7x)
    [ 775.940] GeForce 8 (G8x)
    [ 775.940] GeForce GTX 200 (NVA0)
    [ 775.940] GeForce GTX 400 (NVC0)
    [ 775.940] (--) using VT number 7
    [ 775.948] (II) [KMS] Kernel modesetting enabled.
    [ 775.948] (II) [KMS] Kernel modesetting enabled.
    [ 775.948] drmOpenDevice: node name is /dev/dri/card0
    [ 775.948] drmOpenDevice: open result is 7, (OK)
    [ 775.948] drmOpenByBusid: Searching for BusID pci:0000:00:0d.0
    [ 775.948] drmOpenDevice: node name is /dev/dri/card0
    [ 775.948] drmOpenDevice: open result is 7, (OK)
    [ 775.948] drmOpenByBusid: drmOpenMinor returns 7
    [ 775.948] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 775.948] drmOpenDevice: node name is /dev/dri/card1
    [ 775.948] drmOpenDevice: open result is 7, (OK)
    [ 775.948] drmOpenByBusid: drmOpenMinor returns 7
    [ 775.948] drmOpenByBusid: drmGetBusid reports pci:0000:00:0d.0
    [ 775.948] (II) [drm] nouveau interface version: 0.0.16
    [ 775.949] (EE) Screen 2 deleted because of no matching config section.
    [ 775.949] (II) UnloadModule: "nouveau"
    [ 775.949] (**) RADEON(0): Depth 24, (--) framebuffer bpp 32
    [ 775.949] (II) RADEON(0): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 775.949] (==) RADEON(0): Default visual is TrueColor
    [ 775.949] (**) RADEON(0): Option "ZaphodHeads" "DVI-0"
    [ 775.949] (==) RADEON(0): RGB weight 888
    [ 775.949] (II) RADEON(0): Using 8 bits per RGB (8 bit DAC)
    [ 775.949] (--) RADEON(0): Chipset: "ATI Radeon X300 (RV370) 5B60 (PCIE)" (ChipID = 0x5b60)
    [ 775.949] (II) RADEON(0): PCIE card detected
    [ 775.949] drmOpenDevice: node name is /dev/dri/card0
    [ 775.949] drmOpenDevice: open result is 8, (OK)
    [ 775.949] drmOpenByBusid: Searching for BusID pci:0000:02:00.0
    [ 775.949] drmOpenDevice: node name is /dev/dri/card0
    [ 775.949] drmOpenDevice: open result is 8, (OK)
    [ 775.949] drmOpenByBusid: drmOpenMinor returns 8
    [ 775.949] drmOpenByBusid: drmGetBusid reports pci:0000:02:00.0
    [ 775.949] (II) Loading sub module "exa"
    [ 775.949] (II) LoadModule: "exa"
    [ 775.949] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 775.949] (II) Module exa: vendor="X.Org Foundation"
    [ 775.949] compiled for 1.12.0, module version = 2.5.0
    [ 775.949] ABI class: X.Org Video Driver, version 12.0
    [ 775.949] (II) RADEON(0): KMS Color Tiling: enabled
    [ 775.949] (II) RADEON(0): KMS Pageflipping: enabled
    [ 775.949] (II) RADEON(0): SwapBuffers wait for vsync: enabled
    [ 776.064] (II) RADEON(0): Output DVI-0 using monitor section Monitor0
    [ 776.064] (**) RADEON(0): Option "Primary" "true"
    [ 776.122] (II) RADEON(0): EDID for output DVI-0
    [ 776.122] (II) RADEON(0): Manufacturer: DEL Model: d011 Serial#: 808602709
    [ 776.122] (II) RADEON(0): Year: 2007 Week: 51
    [ 776.122] (II) RADEON(0): EDID Version: 1.3
    [ 776.122] (II) RADEON(0): Digital Display Input
    [ 776.122] (II) RADEON(0): Max Image Size [cm]: horiz.: 43 vert.: 27
    [ 776.122] (II) RADEON(0): Gamma: 2.20
    [ 776.122] (II) RADEON(0): DPMS capabilities: StandBy Suspend Off
    [ 776.122] (II) RADEON(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
    [ 776.122] (II) RADEON(0): Default color space is primary color space
    [ 776.122] (II) RADEON(0): First detailed timing is preferred mode
    [ 776.122] (II) RADEON(0): redX: 0.635 redY: 0.328 greenX: 0.292 greenY: 0.610
    [ 776.122] (II) RADEON(0): blueX: 0.146 blueY: 0.069 whiteX: 0.312 whiteY: 0.328
    [ 776.122] (II) RADEON(0): Supported established timings:
    [ 776.122] (II) RADEON(0): 720x400@70Hz
    [ 776.122] (II) RADEON(0): 640x480@60Hz
    [ 776.122] (II) RADEON(0): 640x480@75Hz
    [ 776.122] (II) RADEON(0): 800x600@60Hz
    [ 776.122] (II) RADEON(0): 800x600@75Hz
    [ 776.122] (II) RADEON(0): 1024x768@60Hz
    [ 776.122] (II) RADEON(0): 1024x768@75Hz
    [ 776.122] (II) RADEON(0): 1280x1024@75Hz
    [ 776.122] (II) RADEON(0): Manufacturer's mask: 0
    [ 776.122] (II) RADEON(0): Supported standard timings:
    [ 776.122] (II) RADEON(0): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 776.122] (II) RADEON(0): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 776.122] (II) RADEON(0): Supported detailed timing:
    [ 776.122] (II) RADEON(0): clock: 119.0 MHz Image Size: 430 x 270 mm
    [ 776.122] (II) RADEON(0): h_active: 1680 h_sync: 1728 h_sync_end 1760 h_blank_end 1840 h_border: 0
    [ 776.122] (II) RADEON(0): v_active: 1050 v_sync: 1053 v_sync_end 1059 v_blanking: 1080 v_border: 0
    [ 776.122] (II) RADEON(0): Serial No: CU7547CJ02LU
    [ 776.122] (II) RADEON(0): Ranges: V min: 56 V max: 75 Hz, H min: 30 H max: 83 kHz, PixClock max 145 MHz
    [ 776.122] (II) RADEON(0): Monitor name: DELL E207WFP
    [ 776.122] (II) RADEON(0): EDID (in hex):
    [ 776.122] (II) RADEON(0): 00ffffffffffff0010ac11d0554c3230
    [ 776.122] (II) RADEON(0): 33110103802b1b78ee8db0a2544a9c25
    [ 776.122] (II) RADEON(0): 115054a54b00714f8180010101010101
    [ 776.122] (II) RADEON(0): 0101010101017c2e90a0601a1e403020
    [ 776.122] (II) RADEON(0): 3600ae0e1100001a000000ff00435537
    [ 776.122] (II) RADEON(0): 353437434a30324c550a000000fd0038
    [ 776.122] (II) RADEON(0): 4b1e530e000a202020202020000000fc
    [ 776.122] (II) RADEON(0): 0044454c4c20453230375746500a0040
    [ 776.122] (II) RADEON(0): EDID vendor "DEL", prod id 53265
    [ 776.122] (II) RADEON(0): Using EDID range info for horizontal sync
    [ 776.122] (II) RADEON(0): Using EDID range info for vertical refresh
    [ 776.122] (II) RADEON(0): Printing DDC gathered Modelines:
    [ 776.122] (II) RADEON(0): Modeline "1680x1050"x0.0 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz eP)
    [ 776.122] (II) RADEON(0): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 776.122] (II) RADEON(0): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 776.122] (II) RADEON(0): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 776.123] (II) RADEON(0): Printing probed modes for output DVI-0
    [ 776.123] (II) RADEON(0): Modeline "1680x1050"x59.9 119.00 1680 1728 1760 1840 1050 1053 1059 1080 +hsync -vsync (64.7 kHz UeP)
    [ 776.123] (II) RADEON(0): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 776.123] (II) RADEON(0): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 776.123] (II) RADEON(0): Output DVI-0 connected
    [ 776.123] (II) RADEON(0): Using user preference for initial modes
    [ 776.123] (II) RADEON(0): Output DVI-0 using initial mode 1680x1050
    [ 776.123] (II) RADEON(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 776.123] (II) RADEON(0): mem size init: gart size :1fdff000 vram size: s:8000000 visible:7905000
    [ 776.123] (II) RADEON(0): EXA: Driver will allow EXA pixmaps in VRAM
    [ 776.123] (**) RADEON(0): Display dimensions: (430, 270) mm
    [ 776.123] (**) RADEON(0): DPI set to (99, 98)
    [ 776.123] (II) Loading sub module "fb"
    [ 776.123] (II) LoadModule: "fb"
    [ 776.123] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 776.123] (II) Module fb: vendor="X.Org Foundation"
    [ 776.123] compiled for 1.12.0, module version = 1.0.0
    [ 776.123] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 776.123] (II) Loading sub module "ramdac"
    [ 776.123] (II) LoadModule: "ramdac"
    [ 776.123] (II) Module "ramdac" already built-in
    [ 776.123] (**) RADEON(1): Depth 24, (--) framebuffer bpp 32
    [ 776.123] (II) RADEON(1): Pixel depth = 24 bits stored in 4 bytes (32 bpp pixmaps)
    [ 776.123] (==) RADEON(1): Default visual is TrueColor
    [ 776.124] (**) RADEON(1): Option "ZaphodHeads" "VGA-0"
    [ 776.124] (==) RADEON(1): RGB weight 888
    [ 776.124] (II) RADEON(1): Using 8 bits per RGB (8 bit DAC)
    [ 776.124] (--) RADEON(1): Chipset: "ATI Radeon X300 (RV370) 5B60 (PCIE)" (ChipID = 0x5b60)
    [ 776.124] (II) RADEON(1): PCIE card detected
    [ 776.124] (EE) RADEON(1): reusing fd for second head
    [ 776.124] (II) Loading sub module "exa"
    [ 776.124] (II) LoadModule: "exa"
    [ 776.124] (II) Loading /usr/lib/xorg/modules/libexa.so
    [ 776.124] (II) Module exa: vendor="X.Org Foundation"
    [ 776.124] compiled for 1.12.0, module version = 2.5.0
    [ 776.124] ABI class: X.Org Video Driver, version 12.0
    [ 776.124] (II) RADEON(1): KMS Color Tiling: enabled
    [ 776.124] (II) RADEON(1): KMS Pageflipping: enabled
    [ 776.124] (II) RADEON(1): SwapBuffers wait for vsync: enabled
    [ 776.181] (II) RADEON(1): Output VGA-0 using monitor section Monitor1
    [ 776.296] (II) RADEON(1): EDID for output VGA-0
    [ 776.296] (II) RADEON(1): Manufacturer: DEL Model: 4012 Serial#: 1128482354
    [ 776.296] (II) RADEON(1): Year: 2006 Week: 23
    [ 776.296] (II) RADEON(1): EDID Version: 1.3
    [ 776.296] (II) RADEON(1): Analog Display Input, Input Voltage Level: 0.700/0.300 V
    [ 776.296] (II) RADEON(1): Sync: Separate Composite SyncOnGreen
    [ 776.296] (II) RADEON(1): Max Image Size [cm]: horiz.: 34 vert.: 27
    [ 776.296] (II) RADEON(1): Gamma: 2.29
    [ 776.296] (II) RADEON(1): DPMS capabilities: StandBy Suspend Off; RGB/Color Display
    [ 776.296] (II) RADEON(1): Default color space is primary color space
    [ 776.296] (II) RADEON(1): First detailed timing is preferred mode
    [ 776.296] (II) RADEON(1): redX: 0.644 redY: 0.338 greenX: 0.270 greenY: 0.602
    [ 776.296] (II) RADEON(1): blueX: 0.140 blueY: 0.084 whiteX: 0.313 whiteY: 0.329
    [ 776.296] (II) RADEON(1): Supported established timings:
    [ 776.296] (II) RADEON(1): 720x400@70Hz
    [ 776.296] (II) RADEON(1): 640x480@60Hz
    [ 776.296] (II) RADEON(1): 640x480@75Hz
    [ 776.296] (II) RADEON(1): 800x600@60Hz
    [ 776.296] (II) RADEON(1): 800x600@75Hz
    [ 776.296] (II) RADEON(1): 1024x768@60Hz
    [ 776.296] (II) RADEON(1): 1024x768@75Hz
    [ 776.296] (II) RADEON(1): 1280x1024@75Hz
    [ 776.296] (II) RADEON(1): Manufacturer's mask: 0
    [ 776.296] (II) RADEON(1): Supported standard timings:
    [ 776.296] (II) RADEON(1): #0: hsize: 1152 vsize 864 refresh: 75 vid: 20337
    [ 776.296] (II) RADEON(1): #1: hsize: 1280 vsize 1024 refresh: 60 vid: 32897
    [ 776.297] (II) RADEON(1): Supported detailed timing:
    [ 776.297] (II) RADEON(1): clock: 108.0 MHz Image Size: 338 x 270 mm
    [ 776.297] (II) RADEON(1): h_active: 1280 h_sync: 1328 h_sync_end 1440 h_blank_end 1688 h_border: 0
    [ 776.297] (II) RADEON(1): v_active: 1024 v_sync: 1025 v_sync_end 1028 v_blanking: 1066 v_border: 0
    [ 776.297] (II) RADEON(1): Serial No: C9753664CCF2
    [ 776.297] (II) RADEON(1): Monitor name: DELL 1707FP
    [ 776.297] (II) RADEON(1): Ranges: V min: 56 V max: 76 Hz, H min: 30 H max: 81 kHz, PixClock max 145 MHz
    [ 776.297] (II) RADEON(1): EDID (in hex):
    [ 776.297] (II) RADEON(1): 00ffffffffffff0010ac124032464343
    [ 776.297] (II) RADEON(1): 171001030e221b81eee0e5a456459a23
    [ 776.297] (II) RADEON(1): 155054a54b00714f8180010101010101
    [ 776.297] (II) RADEON(1): 010101010101302a009851002a403070
    [ 776.297] (II) RADEON(1): 1300520e1100001e000000ff00433937
    [ 776.297] (II) RADEON(1): 3533363634434346320a000000fc0044
    [ 776.297] (II) RADEON(1): 454c4c203137303746500a20000000fd
    [ 776.297] (II) RADEON(1): 00384c1e510e000a2020202020200099
    [ 776.297] (II) RADEON(1): EDID vendor "DEL", prod id 16402
    [ 776.297] (II) RADEON(1): Using EDID range info for horizontal sync
    [ 776.297] (II) RADEON(1): Using EDID range info for vertical refresh
    [ 776.297] (II) RADEON(1): Printing DDC gathered Modelines:
    [ 776.297] (II) RADEON(1): Modeline "1280x1024"x0.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz eP)
    [ 776.297] (II) RADEON(1): Modeline "800x600"x0.0 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "640x480"x0.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "640x480"x0.0 25.18 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "720x400"x0.0 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1280x1024"x0.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1024x768"x0.0 78.75 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.0 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1024x768"x0.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "800x600"x0.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1152x864"x0.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 776.297] (II) RADEON(1): Printing probed modes for output VGA-0
    [ 776.297] (II) RADEON(1): Modeline "1280x1024"x60.0 108.00 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync (64.0 kHz UeP)
    [ 776.297] (II) RADEON(1): Modeline "1280x1024"x75.0 135.00 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync (80.0 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1152x864"x75.0 108.00 1152 1216 1344 1600 864 865 868 900 +hsync +vsync (67.5 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1024x768"x75.1 78.80 1024 1040 1136 1312 768 769 772 800 +hsync +vsync (60.1 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "1024x768"x60.0 65.00 1024 1048 1184 1344 768 771 777 806 -hsync -vsync (48.4 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "800x600"x75.0 49.50 800 816 896 1056 600 601 604 625 +hsync +vsync (46.9 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "800x600"x60.3 40.00 800 840 968 1056 600 601 605 628 +hsync +vsync (37.9 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "640x480"x75.0 31.50 640 656 720 840 480 481 484 500 -hsync -vsync (37.5 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "640x480"x60.0 25.20 640 656 752 800 480 490 492 525 -hsync -vsync (31.5 kHz e)
    [ 776.297] (II) RADEON(1): Modeline "720x400"x70.1 28.32 720 738 846 900 400 412 414 449 -hsync +vsync (31.5 kHz e)
    [ 776.297] (II) RADEON(1): Output VGA-0 connected
    [ 776.297] (II) RADEON(1): Using user preference for initial modes
    [ 776.297] (II) RADEON(1): Output VGA-0 using initial mode 1280x1024
    [ 776.297] (II) RADEON(1): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.
    [ 776.297] (II) RADEON(1): mem size init: gart size :1fdff000 vram size: s:8000000 visible:7905000
    [ 776.297] (II) RADEON(1): EXA: Driver will allow EXA pixmaps in VRAM
    [ 776.297] (**) RADEON(1): Display dimensions: (340, 270) mm
    [ 776.297] (**) RADEON(1): DPI set to (95, 96)
    [ 776.297] (II) Loading sub module "fb"
    [ 776.297] (II) LoadModule: "fb"
    [ 776.297] (II) Loading /usr/lib/xorg/modules/libfb.so
    [ 776.297] (II) Module fb: vendor="X.Org Foundation"
    [ 776.297] compiled for 1.12.0, module version = 1.0.0
    [ 776.297] ABI class: X.Org ANSI C Emulation, version 0.4
    [ 776.297] (II) Loading sub module "ramdac"
    [ 776.297] (II) LoadModule: "ramdac"
    [ 776.297] (II) Module "ramdac" already built-in
    [ 776.297] (--) Depth 24 pixmap format is 32 bpp
    [ 776.297] (II) RADEON(0): [DRI2] Setup complete
    [ 776.297] (II) RADEON(0): [DRI2] DRI driver: r300
    [ 776.297] (II) RADEON(0): [DRI2] VDPAU driver: r300
    [ 776.298] (II) RADEON(0): Front buffer size: 7128K
    [ 776.298] (II) RADEON(0): VRAM usage limit set to 105116K
    [ 776.298] (==) RADEON(0): Backing store disabled
    [ 776.298] (II) RADEON(0): Direct rendering enabled
    [ 776.298] (II) RADEON(0): Render acceleration enabled for R300/R400/R500 type cards.
    [ 776.298] (II) RADEON(0): Setting EXA maxPitchBytes
    [ 776.298] (II) EXA(0): Driver allocated offscreen pixmaps
    [ 776.298] (II) EXA(0): Driver registered support for the following operations:
    [ 776.298] (II) Solid
    [ 776.298] (II) Copy
    [ 776.298] (II) Composite (RENDER acceleration)
    [ 776.298] (II) UploadToScreen
    [ 776.298] (II) DownloadFromScreen
    [ 776.298] (II) RADEON(0): Acceleration enabled
    [ 776.298] (==) RADEON(0): DPMS enabled
    [ 776.298] (==) RADEON(0): Silken mouse enabled
    [ 776.298] (II) RADEON(0): Set up textured video
    [ 776.298] (II) RADEON(0): [XvMC] Associated with Radeon Textured Video.
    [ 776.298] (II) RADEON(0): [XvMC] Extension initialized.
    [ 776.298] (II) RADEON(0): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 776.298] (WW) RADEON(0): Option "Primary" is not used
    [ 776.298] (--) RandR disabled
    [ 776.298] (II) RADEON(1): [DRI2] Setup complete
    [ 776.298] (II) RADEON(1): [DRI2] DRI driver: r300
    [ 776.298] (II) RADEON(1): [DRI2] VDPAU driver: r300
    [ 776.298] (II) RADEON(1): Front buffer size: 5120K
    [ 776.298] (II) RADEON(1): VRAM usage limit set to 106923K
    [ 776.298] (==) RADEON(1): Backing store disabled
    [ 776.298] (II) RADEON(1): Direct rendering enabled
    [ 776.298] (II) RADEON(1): Render acceleration enabled for R300/R400/R500 type cards.
    [ 776.298] (II) RADEON(1): Setting EXA maxPitchBytes
    [ 776.298] (II) EXA(1): Driver allocated offscreen pixmaps
    [ 776.299] (II) EXA(1): Driver registered support for the following operations:
    [ 776.299] (II) Solid
    [ 776.299] (II) Copy
    [ 776.299] (II) Composite (RENDER acceleration)
    [ 776.299] (II) UploadToScreen
    [ 776.299] (II) DownloadFromScreen
    [ 776.299] (II) RADEON(1): Acceleration enabled
    [ 776.299] (==) RADEON(1): DPMS enabled
    [ 776.299] (==) RADEON(1): Silken mouse enabled
    [ 776.299] (II) RADEON(1): Set up textured video
    [ 776.299] (II) RADEON(1): [XvMC] Associated with Radeon Textured Video.
    [ 776.299] (II) RADEON(1): [XvMC] Extension initialized.
    [ 776.299] (II) RADEON(1): RandR 1.2 enabled, ignore the following RandR disabled message.
    [ 776.299] (--) RandR disabled
    [ 776.299] (II) Initializing built-in extension Generic Event Extension
    [ 776.299] (II) Initializing built-in extension SHAPE
    [ 776.299] (II) Initializing built-in extension MIT-SHM
    [ 776.299] (II) Initializing built-in extension XInputExtension
    [ 776.299] (II) Initializing built-in extension XTEST
    [ 776.299] (II) Initializing built-in extension BIG-REQUESTS
    [ 776.299] (II) Initializing built-in extension SYNC
    [ 776.299] (II) Initializing built-in extension XKEYBOARD
    [ 776.299] (II) Initializing built-in extension XC-MISC
    [ 776.299] (II) Initializing built-in extension SECURITY
    [ 776.299] (II) Initializing built-in extension XINERAMA
    [ 776.299] (II) Initializing built-in extension XFIXES
    [ 776.299] (II) Initializing built-in extension RENDER
    [ 776.299] (II) Initializing built-in extension RANDR
    [ 776.299] (II) Initializing built-in extension COMPOSITE
    [ 776.299] (II) Initializing built-in extension DAMAGE
    [ 776.313] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 776.313] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 776.313] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 776.313] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 776.313] (II) AIGLX: Loaded and initialized r300
    [ 776.313] (II) GLX: Initialized DRI2 GL provider for screen 0
    [ 776.314] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
    [ 776.314] (II) AIGLX: enabled GLX_INTEL_swap_event
    [ 776.314] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
    [ 776.314] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
    [ 776.315] (II) AIGLX: Loaded and initialized r300
    [ 776.315] (II) GLX: Initialized DRI2 GL provider for screen 1
    [ 776.598] (II) config/udev: Adding input device Power Button (/dev/input/event1)
    [ 776.598] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 776.598] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 776.598] (II) LoadModule: "evdev"
    [ 776.598] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
    [ 776.599] (II) Module evdev: vendor="X.Org Foundation"
    [ 776.599] compiled for 1.12.0, module version = 2.7.0
    [ 776.599] Module class: X.Org XInput Driver
    [ 776.599] ABI class: X.Org XInput driver, version 16.0
    [ 776.599] (II) Using input driver 'evdev' for 'Power Button'
    [ 776.599] (**) Power Button: always reports core events
    [ 776.599] (**) evdev: Power Button: Device: "/dev/input/event1"
    [ 776.599] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 776.599] (--) evdev: Power Button: Found keys
    [ 776.599] (II) evdev: Power Button: Configuring as keyboard
    [ 776.599] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
    [ 776.599] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
    [ 776.599] (**) Option "xkb_rules" "evdev"
    [ 776.599] (**) Option "xkb_model" "evdev"
    [ 776.599] (**) Option "xkb_layout" "us"
    [ 776.599] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 776.644] (II) config/udev: Adding input device Power Button (/dev/input/event0)
    [ 776.644] (**) Power Button: Applying InputClass "evdev keyboard catchall"
    [ 776.644] (**) Power Button: Applying InputClass "Keyboard Defaults"
    [ 776.644] (II) Using input driver 'evdev' for 'Power Button'
    [ 776.644] (**) Power Button: always reports core events
    [ 776.644] (**) evdev: Power Button: Device: "/dev/input/event0"
    [ 776.644] (--) evdev: Power Button: Vendor 0 Product 0x1
    [ 776.644] (--) evdev: Power Button: Found keys
    [ 776.644] (II) evdev: Power Button: Configuring as keyboard
    [ 776.644] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
    [ 776.644] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
    [ 776.644] (**) Option "xkb_rules" "evdev"
    [ 776.644] (**) Option "xkb_model" "evdev"
    [ 776.644] (**) Option "xkb_layout" "us"
    [ 776.644] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 776.645] (II) config/udev: Adding input device Dell Dell USB Keyboard (/dev/input/event4)
    [ 776.645] (**) Dell Dell USB Keyboard: Applying InputClass "evdev keyboard catchall"
    [ 776.645] (**) Dell Dell USB Keyboard: Applying InputClass "Keyboard Defaults"
    [ 776.645] (II) Using input driver 'evdev' for 'Dell Dell USB Keyboard'
    [ 776.645] (**) Dell Dell USB Keyboard: always reports core events
    [ 776.645] (**) evdev: Dell Dell USB Keyboard: Device: "/dev/input/event4"
    [ 776.645] (--) evdev: Dell Dell USB Keyboard: Vendor 0x413c Product 0x2003
    [ 776.645] (--) evdev: Dell Dell USB Keyboard: Found keys
    [ 776.645] (II) evdev: Dell Dell USB Keyboard: Configuring as keyboard
    [ 776.645] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb4/4-4/4-4:1.0/input/input4/event4"
    [ 776.645] (II) XINPUT: Adding extended input device "Dell Dell USB Keyboard" (type: KEYBOARD, id 8)
    [ 776.645] (**) Option "xkb_rules" "evdev"
    [ 776.645] (**) Option "xkb_model" "evdev"
    [ 776.645] (**) Option "xkb_layout" "us"
    [ 776.645] (**) Option "xkb_options" "terminate:ctrl_alt_bksp"
    [ 776.646] (II) config/udev: Adding input device HDA Digital PCBeep (/dev/input/event5)
    [ 776.646] (II) No input driver specified, ignoring this device.
    [ 776.646] (II) This device may have been added with another device file.
    [ 776.646] (II) config/udev: Adding input device ImPS/2 Logitech Wheel Mouse (/dev/input/event3)
    [ 776.646] (**) ImPS/2 Logitech Wheel Mouse: Applying InputClass "evdev pointer catchall"
    [ 776.646] (II) Using input driver 'evdev' for 'ImPS/2 Logitech Wheel Mouse'
    [ 776.646] (**) ImPS/2 Logitech Wheel Mouse: always reports core events
    [ 776.646] (**) evdev: ImPS/2 Logitech Wheel Mouse: Device: "/dev/input/event3"
    [ 776.646] (--) evdev: ImPS/2 Logitech Wheel Mouse: Vendor 0x2 Product 0x5
    [ 776.646] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found 3 mouse buttons
    [ 776.646] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found scroll wheel(s)
    [ 776.646] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found relative axes
    [ 776.646] (--) evdev: ImPS/2 Logitech Wheel Mouse: Found x and y relative axes
    [ 776.646] (II) evdev: ImPS/2 Logitech Wheel Mouse: Configuring as mouse
    [ 776.646] (II) evdev: ImPS/2 Logitech Wheel Mouse: Adding scrollwheel support
    [ 776.646] (**) evdev: ImPS/2 Logitech Wheel Mouse: YAxisMapping: buttons 4 and 5
    [ 776.646] (**) evdev: ImPS/2 Logitech Wheel Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
    [ 776.646] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input3/event3"
    [ 776.646] (II) XINPUT: Adding extended input device "ImPS/2 Logitech Wheel Mouse" (type: MOUSE, id 9)
    [ 776.647] (II) evdev: ImPS/2 Logitech Wheel Mouse: initialized for relative axes.
    [ 776.647] (**) ImPS/2 Logitech Wheel Mouse: (accel) keeping acceleration scheme 1
    [ 776.647] (**) ImPS/2 Logitech Wheel Mouse: (accel) acceleration profile 0
    [ 776.647] (**) ImPS/2 Logitech Wheel Mouse: (accel) acceleration factor: 2.000
    [ 776.647] (**) ImPS/2 Logitech Wheel Mouse: (accel) acceleration threshold: 4
    [ 776.647] (II) config/udev: Adding input device ImPS/2 Logitech Wheel Mouse (/dev/input/mouse0)
    [ 776.647] (II) No input driver specified, ignoring this device.
    [ 776.647] (II) This device may have been added with another device file.
    [ 776.648] (II) config/udev: Adding input device PC Speaker (/dev/input/event2)
    [ 776.648] (II) No input driver specified, ignoring this device.
    [ 776.648] (II) This device may have been added with another device file.
    I'm still not understanding why the "[   775.949] (EE) Screen 2 deleted because of no matching config section." line is appearing, you can see the xorg.conf file has all three the same, unless I need something else to say it's a secondary card or something? Or maybe to direct the framebuffer to the first card? I have no idea. EDIT: Just thought that maybe something like that "fbcon=map:0" line exists, but for x11 instead of console? Stabbing in the dark here.
    Last edited by MisterAnderson (2012-03-24 15:07:10)

  • Triple Monitor Xorg Woes

    Hi guys! I've got an interesting setup going here and wondering if it's possible to set it up the way I want it. I have 3 monitors. 2 of them are hooked up to my nouveau card and one of them is hooked up to the intel integrated graphics. This is all working well when I have each monitor on it's own xscreen with Xinerama.
    My issue is that compositing with Xinerama only seems to work when I have 2 xscreens enabled. What does this mean? This means that if I want to experiment with any of the more mainstream DE's the way they were meant to be I cannot do it without disabling one of my screens.
    What I want to know is if there's a way to have 2 xscreens pinned together with Xinerama but have each individual monitor detected as if Xinerama was disabled.
    Here are some of my attempts. http://imgur.com/a/Yfycc
    The first one is with each monitor on it's own xscreen. The second is an attempt to merge my two nouveau monitors onto the same xscreen. Something interesting to note is that if I disable the intel monitor and xinerama compmletely the two monitors are detected properly (probably due to xrandr being able to detect them)
    Sorry if the post was long and incoherent. I'm doing my best to make it clear what I want
    I tried a multitude of other things along with the second one (like enabling both monitors in the screen. Setting modes and virtual parameters in a Display Subsection) none of which seemed to work. Maybe I don't know what I'm doing (I most definately don't know what I'm doing)
    Here are my assortment of xorg.conf's
    http://pastebin.com/8Xpi1DEB <-- nvidia 302.07 attempt at 2 screens. Result? Picture 2
    http://pastebin.com/gGk4vh4K <-- nvidia 302.07 Xinerama on all 3. Result? Picture 1  compositing bugs
    http://pastebin.com/WHDhqDhK <-- nouveau attempt at Xinerama on all 3. Result? Picture 1 no compositing bugs
    http://pastebin.com/Wdax3XVY <-- nouveau attempt at 2 screens. Result? Picture 1
    Thanks for the help
    Sphaerophoria
    Edit http://pastebin.com/Tb27mrjJ <-- nvidia 302.07 attempt at 2 screens Xorg.0.log
    Thanks again
    Last edited by Sphaerophoria (2012-06-08 00:14:45)

    that will be more then likely referring to a Falcon Tango Monitor Matrix (The 1 over 3 Monitor Matrix) (Quad monitor stand) without the central monitor attached!
    you can only get them from the manufacturer as they are custom made stands and run around $440US http://www.tradingcomputers.com/TCarrays.html
    MSI do not make stands like that they will just have been illustrating it like that for Marketing just to show how it could be used

  • Duel Monitor Calibration with the NVIDIA GeForce 8800GT

    I have ordered a Mac Pro with a NVIDIA GeForce 8800GT and would like to know whether it supports dual LUT's? I have also ordered two 30" ACDs and would like them both calibrated for photo editing work in Aperture.
    Looked at the NVIDIA site but couldn't see the answer.
    Many thanks...

    In short, no. The only way to get a LUT for each monitor is for each to have its own GPU. Having said that, I have the Radeon 1900XT driving 2-21" LCDs and have managed to get them really darn close with a good calibrator. If it's really important for you, buy a second card.
    This is from the Nvidia knowledge base and the answer is the same for Macs.
    +"Windows XP detects NVIDIA GPUs as a single processor even if the GPU supports dual monitors. This prevents the operating system from natively allowing two separate ICC profiles from being used on a single graphics card. This is not a problem if a user is running dual monitors and each monitor is running on a separate GPU.+
    +Microsoft has provided a utility for users with two monitors running off of a single GPU who wish to calibrate both monitors. You may download this utility from the following URL:+
    +http://www.microsoft.com/windowsxp/using/digitalphotography/prophoto/colorcontro l.mspx+

  • Silent monitoring calls with CUCM 6.0 and UCCX 5.0

    Dear all,
    We have just integrated a 3rd party recording solution in our VoIP system, which consists of CUCM 6.0 and UCCX 5.0.
    Until now we used the recording and monitoring solution of the UCCX for the agents. This worked ok.
    But, as we wanted to record other people's calls and also the outgoing calls of the agents, we have created for them a Recording profile in the CCM and assign it to the agents phone.
    We have also mantained the recording and monitoring active for them in the UCCX.
    What is happenning now is the following:
    - The 3rd party recordings works perfectly.
    - The recording in the UCCX gets only one way audio.
    - The silent monitoring gets only one way audio.
    - If the 3rd party recording server is stopped, but the recording profile is stil active in the phones, the silent monitoring in the UCCX works.
    Could any of you confirm if using a 3rd party recording solution the monitoring still works?
    Is there any 3rd party silent monitoring software?
    Thanks in advcance.
    Best regards,
    Amaia

    We've got to delimit the problem.
    When we use 3rd party recording solution there are 4 RTP flows: 1 incoming to monitored/recorded phone and 3 flows outgoing.
    1 incoming RTP flows
    - voice of remote phone
    3 outgoing RTP flows
    - voice of monitored/recorded phone
    - voice of monitored/recorded phone sent to 3d party recording server
    - voice of remote phone sent to 3rd party recording server
    When we use a network analyzer we see that the agent running in the PC (UCCX 5.0) establishes two RTP flows for the monitoring session. But we can see that one of these flows sends 3 packet RTP per 1 packet RTP sent in the other RTP flow (in the same time).
    We think agent sends to monitoring device all the outoing RTP packets of the phone (that belong to three different RTP flows), instead of sending only the RTP packets belonging to voice of monitored/recorded phone.
    The other flow, voice of remote phone, sounds fine.
    Is there a solution to avoid this problem when we monitor with UCCX 5.0 and record with a 3rd party software at the same time?
    Thanks,
    Christian

  • Triple monitor setup with my mac mini.

    I need to run three separate monitors on my mac mini. No gaming involved here, multiple screens will only be used for display/advertising purposes so in my opinion the mac mini is capable enough to display different images on each screen.
    I have 3 Samsung 2253LW running at a native resolution of 1680x1050. My initial thought was to get a Matrox TripleHead2Go but that would limit me to a resolution of 1280x1024. As far as I know running below native resolution would result in blurred images on the lcd.
    Instead I would want to know if connecting via mini-dvi to vga a Matrox DualHead2Go running at 1680x1050 each for 2 screens plus having the third screen connected via mini displayport to dvi running at 1680x1050 work? (Sorry for the long question)
    I do know that the Mac Mini could drive two displays at a time using the mini dvi and display port. Since the Matrox DualHead2Go works by making 2 monitors seem as if it were one bigger monitor, would this setup work? I badly need answers fast.
    Thanks in advance!

    Hi,
    A usb to dvi adaptor might also give the intended result?
    Not sure if this would be cheaper than the matrox device, or if the mini is capable of running a third monitor the usb port, but I saw one advertise recently...
    http://www.citysoftware.com.au/USB20_Display_Adapter_DVI_HDMI_w_AudioOTH0412.aspx
    Cheers,
    Rob

  • [SOLVED] Upgrade to XOrg 1.15 broke KWin and DRI_PRIME

    I did another "pacman -Syu" this morning hoping for an uneventful update. However, after a reboot I found my KDE to be in a pretty much useless. Windows were black except for decorations (http://prifuk.cz/non_drupal/kwin_black.jpg) and DRI_PRIME=1 doesn't run 3D acceleration on my Radeon DIS anymore. At first I suspected a problem with mesa but the problem persisted even after a downgrade to 10.0.1 which worked fine for me. Another suspect on the list is X.Org but I cannot roll back to 1.14 because everything apparently depends on GLAMOR now and I do not have all necessary packages in pacman's cache anymore.
    I switched KWin to use XRender instead of OpenGL which at least renders the screen correctly, OpenBox works fine too. I might be wrong about X.Org being the cause but I can't think of anything else. Does anybody have any idea how to debug this issue? I have an Intel HD3000 + Radeon 6400M, both were working fine before the last update.
    http://prifuk.cz/non_drupal/Xorg.0.log
    Last edited by MadCat_X (2014-01-15 21:15:46)

    I noticed this as well, though not using kwin. I got DRI_PRIME back by manually
    xrandr --setprovideroffloadsink 0x55 0x7d
    where the numbers are the given by
    xrandr --listproviders
    (xrandr is not installed by default with Xorg, package name xorg-xrandr).
    Reference: Prime - ArchWiki
    I have not yet delved deeper into why it's no longer set automatically.
    EDIT: I probably jumped the gun, I have none of your problems, I just noticed DRI_PRIME=1 wasn't enough to use the radeon card. I probably had to:
    xrandr --setprovideroffloadsink 0x55 0x7d
    before as well.
    Last edited by obscurity (2014-01-14 14:04:59)

  • External monitor filled with static, blue squares, and red dots

         My family bought a Mac like 8 or so years ago. I am unsure of the exact model, but says iMac on the back (Which isn't very specific, so I apologise).
         You'd expect problems after a few years, so when our mac became cluttered with multi-coloured lines, I wasn't surprised.
         Eventually, it got to be a problem when the screen started to have larger lines whose lights seemed to be failing. It got to a point in which the whole screen had static, and there was very little of the screen that could actually be scene. It was easy enough to fix, we just got a new monitor.
    It did the job, no more lines, the screen did have a yellow tint, but I wasn't worried.
         Now, I was watching some youtube videos, then all of a sudden, both screens stopped, and red dots appeared. After countless efforts to exit the video, I unplugged the computer. When I turned it back on, it was even worse, with blue squares filling the screen, static filling it, and countless more red dots.
         While the external monitor does not have the multicoloured lines, and such, both seem to have the same blue squares, static and red dots, at least for what I can tell.
         Curiously enough, the waiting symbol for the cursor appeared and none of the screen problems overlapped the original.
    Did I do something to it?
    Is there some way to fix it, or will I have to get a new one?
    Also, I apologise if this question is in the wrong category, I'm new.

    Welcome to the forum!
    Your GPU is failing.
    Lenovo might or might not fix it, although it's out of warranty. They are *extremely* well-aware of the problem that plagued these chips.
    Reading related threads here or on Bill Morrow's ThinkPad Forum will reveals hundreds - if not thousands - of similar cases...
    Good luck.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • Monitoring RAID with Solaris 10 x86 and Dell PowerEdge 2650 PERC 3/Di

    Hello,
    I have a PowerEdge 2650 with the PERC 3/Di RAID controller.
    The OS installed is Solaris 10 8/07 U4.
    Currently RAID is configured through the BIOS and it works fine, but I have no way to monitor the status of the drives.
    Is there a command to show me the status of the drives? Drivers I need to install?
    TIA,
    Chris

    I'm just now starting to delve into the X86 servers, and I am not a fan of hardware RAID in general, but on the SPARC side, you would use 'raidctl' to interact with hardware RAID environments.

  • HT3964 connected new external monitor to macbook pro, was working but now have no power, black screen in laptop. monitor purchased with advice from tech and set up also. Worked fine for an hour and then quit

    Have just connected a viewsonic external monitor to macbook pro 10.6.8, had everything up and running fine for about an hour then the macbook quit. No power (ws running off power source) Have I killed my macbook? Help!

    Aha, all is good.
    I went to Library/ColorSync/Profiles/Displays
    and to home/Library/ColorSync/Profiles/Displays
    and deleted all SyncMaster.icc files. I did leave behind one SyncMaster file in the home/../Displays which had an old date and I new was ok.
    Rebooted, plugged in SyncMaster, and a new icc file was automatically created in the /Library/../Displays folder.
    My display works normally, now.

  • [Solved] Can't login with current keyboard layout and `@` in password

    Hi, I'm a new arch user. I followed archwiki to install Enlightenment17. All went fine but I have a problem to login since during setup I inserted '@' in root/regular user passwords. During setup I selected the Italian layout and all seems ok, except grafical login through entrance (from aur, but I tested also kdm, with same results): password not recognized. Before asking, is not a CAPS/NUMLOCK issue since the password works using it in console login. I discovered that I can type '@' with the following combination: SHIFT+2; in an italian keybord this should print a double quote (") but in entrance (and kdm) it correponds to '@'. After login this way, the keyboard works normally (for instance using 'su'). So the problem is limited to graphical login (entrance and kdm) during which a different keyboard layout is used.
    Did I miss some config file?
    For the sake of clarity:
    1) /etc/locale.gen has "it_IT.UTF-8 UTF-8" uncommented
    2) /etc/locale.conf contains "LANG=it_IT.UTF-8"
    3) /etc/vconsole.conf contains "KEYMAP=it"
    4)
    $ locale
    LANG=it_IT.UTF-8
    LC_CTYPE="it_IT.UTF-8"
    LC_NUMERIC="it_IT.UTF-8"
    LC_TIME="it_IT.UTF-8"
    LC_COLLATE="it_IT.UTF-8"
    LC_MONETARY="it_IT.UTF-8"
    LC_MESSAGES="it_IT.UTF-8"
    LC_PAPER="it_IT.UTF-8"
    LC_NAME="it_IT.UTF-8"
    LC_ADDRESS="it_IT.UTF-8"
    LC_TELEPHONE="it_IT.UTF-8"
    LC_MEASUREMENT="it_IT.UTF-8"
    LC_IDENTIFICATION="it_IT.UTF-8"
    LC_ALL=
    Thanks for any help.
    Last edited by bull3t (2013-03-03 14:10:15)

    cfr wrote:Have you tried specifying a variant?
    I exclude a variant problem considering that in any other condition the keyboard layout is right. The system is configured for an it KEYMAP but it is obvious that in entrance/kdm is used an 'us' map. Is this hardcoded somewhere? I also tryed to comment out any entry in /etc/locale.gen except 'it_IT.UTF-8 UTF-8': still 'us' keymap in graphical login screen.
    Probably a kind user with a non-us keyborad layout could create a dummy user with password containing '@' or '#' or any other special symbol to verify that this condition is reproducible, a first step for a bug report.
    Cheers

  • [SOLVED] Major weird issues with KDE/Qt apps and unicode

    Hi, I've tried to search for my problem, but nothing has showed up, so if this has already been answered, please forgive me.
    Anyway, I use KDE as my primary desktop environment with SKIM as my unicode input method. After installing SKIM and Japanese fonts back when I first set Arch up, I have never had any issues with inputting unicode or displaying it in any program, whether that be irssi running through Konsole, or the song titles in Amarok. That all changed this afternoon, somehow...
    The only major changes I can remember making to my system today are the following:
    1.) I installed Awesome Window Manager to check it out
    2.) I installed a pkgbuild of urxvt
    3.) I made an .Xdefaults file and added these lines to customize my urxvt
    After messing around with these things, I decided that Awesome wasn't a suitable WM for me, went back into KDE, and removed the package. I noticed a few strange issues after that though:
    1. Foreign characters refuse to display properly in any terminal emulator.
    2. Foreign characters come up as jumble in Konqueror now as well, when they never did before:
    3. SKIM refuses to let me input Japanese characters with Anthy in any KDE app. The option for Japanese just isn't there, even though I have it installed:
    4. Foreign characters display perfectly as tags for songs in Amarok, but if the music file itself has foreign characters in it, the title is garbled and the track is unplayable:
    5. SKIM works absolutely fine in non-KDE apps like Firefox:
    As seen in the last example, my Japanese fonts are all installed, and SKIM is working as it should in any non-KDE app, suggesting that there are no problems on that end. The issue seems to be with something in KDE, but I have no idea where to begin fixing it. Furthermore, I have no idea what could have caused this issue in the first place. I don't see how installing a window manager or terminal emulator package could have screwed up my fonts, and the .Xdefaults file I wrote just contained config information for urxvt. Nothing else. I even ended up deleting that, but it did not fix my problem.
    If you could be of any help, I'd really appreciate it. I have a lot of files with foreign characters in them, and being able to read them is essential.
    Last edited by LighthouseKeeper (2008-04-20 00:57:36)

    I was just looking into locales, actually.
    My current locale is:
    LANG=en_US.utf8
    LC_CTYPE="en_US.utf8"
    LC_NUMERIC="en_US.utf8"
    LC_TIME="en_US.utf8"
    LC_COLLATE=C
    LC_MONETARY="en_US.utf8"
    LC_MESSAGES="en_US.utf8"
    LC_PAPER="en_US.utf8"
    LC_NAME="en_US.utf8"
    LC_ADDRESS="en_US.utf8"
    LC_TELEPHONE="en_US.utf8"
    LC_MEASUREMENT="en_US.utf8"
    LC_IDENTIFICATION="en_US.utf8"
    LC_ALL=
    and locale -a brings up:
    C
    POSIX
    en_US.utf8
    Is there anything here that could be causing this issue?
    I'm curious how my locale got messed with in the first place if this is indeed the problem...
    and here is my export:
    declare -x COLORTERM=""
    declare -x DESKTOP_SESSION="kde"
    declare -x DISPLAY=":0.0"
    declare -x DM_CONTROL="/var/run/xdmctl"
    declare -x GS_LIB="/home/rael/.fonts"
    declare -x GTK2_RC_FILES="/etc/gtk-2.0/gtkrc:/home/rael/.gtkrc-2.0:/home/rael/.kde/share/config/gtkrc-2.0"
    declare -x GTK_IM_MODULE="scim"
    declare -x GTK_RC_FILES="/etc/gtk/gtkrc:/home/rael/.gtkrc:/home/rael/.kde/share/config/gtkrc"
    declare -x HOME="/home/rael"
    declare -x KDE_FULL_SESSION="true"
    declare -x KDE_MULTIHEAD="false"
    declare -x KDE_SESSION_UID="1000"
    declare -x KONSOLE_DCOP="DCOPRef(konsole-19951,konsole)"
    declare -x KONSOLE_DCOP_SESSION="DCOPRef(konsole-19951,session-1)"
    declare -x LOGNAME="rael"
    declare -x OLDPWD
    declare -x PATH="/opt/kde/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/games"
    declare -x PWD="/home/rael"
    declare -x QT_IM_MODULE="scim"
    declare -x SESSION_MANAGER="local/broadway:/tmp/.ICE-unix/19566"
    declare -x SHELL="/bin/bash"
    declare -x SHLVL="2"
    declare -x SSH_AGENT_PID="19539"
    declare -x SSH_AUTH_SOCK="/tmp/ssh-MtdHR19538/agent.19538"
    declare -x TERM="xterm"
    declare -x USER="rael"
    declare -x WINDOWID="41943050"
    declare -x XCURSOR_THEME="default"
    declare -x XDM_MANAGED="/var/run/xdmctl/xdmctl-:0,maysd,mayfn,sched,rsvd,method=classic"
    declare -x XMODIFIERS="@im=SCIM"
    Last edited by LighthouseKeeper (2008-04-19 22:31:16)

  • [Solved] Triple Headed Xinerama Setup with 2 Nvidia Graphics Cards

    I'm trying to get a triple headed setup working with xinerama (and awesome as my WM) and am more or less at a complete loss.
    Ive tried assembling my own /etc/X11/xorg.conf.d/10-monitor.conf from various wiki resources and manpages, which you can see at:
    http://paste.pocoo.org/show/467600
    also the output of "lspci | grep VGA"
    03:00.0 VGA compatible controller: nVidia Corporation Device 06c4 (rev a3)
    04:00.0 VGA compatible controller: nVidia Corporation Device 06c4 (rev a3)
    I've never actually done anything vaguely like this before, and if there's something that'll just explain to me what all the options do with respect to xinerama and "zaphodheads" and whatnot i'd be grateful. If you can actually tell me how to fix it, that'll be absolutely wonderful.
    Last edited by Jello_Raptor (2011-09-02 02:04:05)

    Greetings Jello-Raptor,
    I just recently configured a 2 monitor set up using nvidia-settings.
    # nvidia-settings
    This is the GUI way to do things and you can choose either TwinView (which gives you an extended monitor) or Xinerama (separate monitors but you can move between them).  I use the Xinerama with a nvidia card and it works great.  Once you go to multiple heads you wonder how you ever lived with out them 
    All the best,
    Ian
    Last edited by ichase (2011-08-31 11:27:43)

  • SOLVED Blurry/Ghosting LCD with Nvidia-96xx

    Hi all,
    I've spent hours trying to figure this out...  I installed the Nvidia-96xx driver for my Geforce2 MX/MX 400 and everything seems ok in my xorg.conf.  XFCE comes up with the right resolution (1280x1024 Dell 1702fp), but everything is blurry.  When i use the Nvidia X Server Settings application, it looks like everything is running correctly - 1280x1024 @ 60hz.  But this doesn't seem right, because otherwise everything wouldn't look so blurry.  And I do mean everything - fonts, icons, etc.
    So I did a bunch of reading and decided to try xrandr.  Well, that seems like a fairly cool command, but it didn't really solve my problem.  However, it did confirm my suspicions that one of these programs is giving me the wrong information, since the only 1280x1024 resolution it gives me is at a 50* 51 refresh rate.  I tried changing the rate with:
    xrandr -r 60
    It wouldn't let me do it.  It says:
    "Rate not available for this size"
    I'm really kind of puzzled about this, I've tried three different ways of generating xorg.conf files (Xorg -configure, xorgconfig, nvidia-xconfig) and they all give me the right resolution, but the wrong refresh rate.  For some reason linux wants to run things at 50hz...
    I'd post more information up here, but I'm not sure what you would want to see.  I'm pretty sure it's not the xorg.conf...
    Hope you guys can help.
    Last edited by syan (2007-02-20 17:40:50)

    Thanks for the reply, berbae.
    I've been trying different things with the xorg.conf file, but nothing I do seems to help.  I tried adding in some of the things you had in yours, like the EDID option and now my xorg.conf looks like this:
    Section "ServerLayout"
    Identifier "X.org Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Mouse0" "CorePointer"
    InputDevice "Keyboard0" "CoreKeyboard"
    EndSection
    Section "Files"
    RgbPath "/usr/share/X11/rgb"
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/TTF"
    FontPath "/usr/share/fonts/Type1"
    EndSection
    Section "Module"
    Load "xtrap"
    Load "dbe"
    Load "record"
    Load "extmod"
    Load "dri"
    Load "glx"
    Load "type1"
    Load "freetype"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    EndSection
    Section "InputDevice"
    Identifier "Mouse0"
    Driver "mouse"
    Option "Protocol" "auto"
    Option "Device" "/dev/input/mice"
    Option "ZAxisMapping" "4 5 6 7"
    EndSection
    Section "Monitor"
    Identifier "Monitor0"
    VendorName "Dell"
    ModelName "1702FP"
    DisplaySize 337 270
    HorizSync 31-80
    VertRefresh 56-76
    EndSection
    Section "Device"
    ### Available Driver options are:-
    ### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
    ### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
    ### [arg]: arg optional
    #Option "ShadowFB" # [<bool>]
    #Option "KGAUniversal" # [<bool>]
    Identifier "Card0"
    Driver "nvidia"
    VendorName "nVidia Corporation"
    BoardName "NV11 [GeForce2 MX/MX 400]"
    BusID "PCI:1:5:0"
    Option "UseEDIDfreqs=false"
    EndSection
    Section "Screen"
    Identifier "Screen0"
    Device "Card0"
    Monitor "Monitor0"
    SubSection "Display"
    Viewport 0 0
    Depth 1
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 4
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 8
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 15
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 16
    EndSubSection
    SubSection "Display"
    Viewport 0 0
    Depth 24
    EndSubSection
    EndSection
    Here's the Xorg.0.log file too:
    X Window System Version 7.1.1
    Release Date: 12 May 2006
    X Protocol Version 11, Revision 0, Release 7.1.1
    Build Operating System: UNKNOWN
    Current Operating System: Linux mythos 2.6.20-ARCH #1 SMP PREEMPT Tue Feb 13 14:51:15 CET 2007 i686
    Build Date: 10 January 2007
    Before reporting problems, check http://wiki.x.org
    to make sure that you have the latest version.
    Module Loader present
    Markers: (--) probed, (**) from config file, (==) default setting,
    (++) from command line, (!!) notice, (II) informational,
    (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
    (==) Log file: "/var/log/Xorg.0.log", Time: Mon Feb 19 12:03:44 2007
    (==) Using config file: "/etc/X11/xorg.conf"
    (==) ServerLayout "X.org Configured"
    (**) |-->Screen "Screen0" (0)
    (**) | |-->Monitor "Monitor0"
    (**) | |-->Device "Card0"
    (**) |-->Input Device "Mouse0"
    (**) |-->Input Device "Keyboard0"
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/75dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/75dpi").
    (WW) `fonts.dir' not found (or not valid) in "/usr/share/fonts/100dpi".
    Entry deleted from font path.
    (Run 'mkfontdir' on "/usr/share/fonts/100dpi").
    (**) FontPath set to:
    /usr/share/fonts/misc,
    /usr/share/fonts/TTF,
    /usr/share/fonts/Type1
    (**) RgbPath set to "/usr/share/X11/rgb"
    (**) ModulePath set to "/usr/lib/xorg/modules"
    (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory)
    (II) No APM support in BIOS or kernel
    (II) Module ABI versions:
    X.Org ANSI C Emulation: 0.3
    X.Org Video Driver: 1.0
    X.Org XInput driver : 0.6
    X.Org Server Extension : 0.3
    X.Org Font Renderer : 0.5
    (II) Loader running on linux
    (II) LoadModule: "bitmap"
    (II) Loading /usr/lib/xorg/modules/fonts/libbitmap.so
    (II) Module bitmap: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Bitmap
    (II) LoadModule: "pcidata"
    (II) Loading /usr/lib/xorg/modules/libpcidata.so
    (II) Module pcidata: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    ABI class: X.Org Video Driver, version 1.0
    (--) using VT number 7
    (II) PCI: PCI scan (all values are in hex)
    (II) PCI: 00:00:0: chip 1022,700e card 0000,0000 rev 13 class 06,00,00 hdr 00
    (II) PCI: 00:01:0: chip 1022,700f card 0000,0000 rev 00 class 06,04,00 hdr 01
    (II) PCI: 00:04:0: chip 1106,0686 card 1043,8040 rev 40 class 06,01,00 hdr 80
    (II) PCI: 00:04:1: chip 1106,0571 card 0000,0000 rev 06 class 01,01,8a hdr 00
    (II) PCI: 00:04:2: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
    (II) PCI: 00:04:3: chip 1106,3038 card 0925,1234 rev 16 class 0c,03,00 hdr 00
    (II) PCI: 00:04:4: chip 1106,3057 card 1043,8040 rev 40 class 00,00,00 hdr 00
    (II) PCI: 00:09:0: chip 1102,0004 card 1102,0051 rev 03 class 04,01,00 hdr 80
    (II) PCI: 00:09:1: chip 1102,7003 card 1102,0040 rev 03 class 09,80,00 hdr 80
    (II) PCI: 00:09:2: chip 1102,4001 card 1102,0010 rev 00 class 0c,00,10 hdr 80
    (II) PCI: 00:0a:0: chip 1033,0035 card 1799,0001 rev 43 class 0c,03,10 hdr 80
    (II) PCI: 00:0a:1: chip 1033,0035 card 1799,0001 rev 43 class 0c,03,10 hdr 00
    (II) PCI: 00:0a:2: chip 1033,00e0 card 1799,0002 rev 04 class 0c,03,20 hdr 00
    (II) PCI: 01:05:0: chip 10de,0110 card 107d,2834 rev b2 class 03,00,00 hdr 00
    (II) PCI: End of PCI scan
    (II) Host-to-PCI bridge:
    (II) Bus 0: bridge is at (0:0:0), (0,0,1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 0 I/O range:
    [0] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) Bus 0 non-prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) Bus 0 prefetchable memory range:
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    (II) PCI-to-PCI bridge:
    (II) Bus 1: bridge is at (0:1:0), (0,1,1), BCTRL: 0x0008 (VGA_EN is set)
    (II) Bus 1 non-prefetchable memory range:
    [0] -1 0 0xce000000 - 0xcfefffff (0x1f00000) MX[b]
    (II) Bus 1 prefetchable memory range:
    [0] -1 0 0xcff00000 - 0xdf7fffff (0xf900000) MX[b]
    (II) PCI-to-ISA bridge:
    (II) Bus -1: bridge is at (0:4:0), (0,-1,-1), BCTRL: 0x0008 (VGA_EN is set)
    (--) PCI:*(1:5:0) nVidia Corporation NV11 [GeForce2 MX/MX 400] rev 178, Mem @ 0xce000000/24, 0xd0000000/27, BIOS @ 0xcfff0000/16
    (II) Addressable bus resource ranges are
    [0] -1 0 0x00000000 - 0xffffffff (0x0) MX[b]
    [1] -1 0 0x00000000 - 0x0000ffff (0x10000) IX[b]
    (II) OS-reported resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) PCI Memory resource overlap reduced 0xe0000000 from 0xefffffff to 0xdfffffff
    (II) PCI Memory resource overlap reduced 0xdf800000 from 0xdf800fff to 0xdf7fffff
    (II) PCI I/O resource overlap reduced 0x0000e000 from 0x0000e003 to 0x0000dfff
    (II) Active PCI resource ranges:
    [0] -1 0 0xcb800000 - 0xcb8000ff (0x100) MX[b]
    [1] -1 0 0xcc000000 - 0xcc000fff (0x1000) MX[b]
    [2] -1 0 0xcc800000 - 0xcc800fff (0x1000) MX[b]
    [3] -1 0 0xcd000000 - 0xcd003fff (0x4000) MX[b]
    [4] -1 0 0xcd800000 - 0xcd8007ff (0x800) MX[b]
    [5] -1 0 0xdf800000 - 0xdf7fffff (0x0) MX[b]O
    [6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [7] -1 0 0xcfff0000 - 0xcfffffff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
    [9] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[b](B)
    [10] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
    [11] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
    [12] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[b]
    [13] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [14] -1 0 0x0000d800 - 0x0000d80f (0x10) IX[b]
    (II) Inactive PCI resource ranges:
    [0] -1 0 0x0000e000 - 0x0000dfff (0x0) IX[b]O
    (II) Active PCI resource ranges after removing overlaps:
    [0] -1 0 0xcb800000 - 0xcb8000ff (0x100) MX[b]
    [1] -1 0 0xcc000000 - 0xcc000fff (0x1000) MX[b]
    [2] -1 0 0xcc800000 - 0xcc800fff (0x1000) MX[b]
    [3] -1 0 0xcd000000 - 0xcd003fff (0x4000) MX[b]
    [4] -1 0 0xcd800000 - 0xcd8007ff (0x800) MX[b]
    [5] -1 0 0xdf800000 - 0xdf7fffff (0x0) MX[b]O
    [6] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [7] -1 0 0xcfff0000 - 0xcfffffff (0x10000) MX[b](B)
    [8] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
    [9] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[b](B)
    [10] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
    [11] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
    [12] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[b]
    [13] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [14] -1 0 0x0000d800 - 0x0000d80f (0x10) IX[b]
    (II) Inactive PCI resource ranges after removing overlaps:
    [0] -1 0 0x0000e000 - 0x0000dfff (0x0) IX[b]O
    (II) OS-reported resource ranges after removing overlaps with PCI:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [5] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    (II) All system resource ranges:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xcb800000 - 0xcb8000ff (0x100) MX[b]
    [5] -1 0 0xcc000000 - 0xcc000fff (0x1000) MX[b]
    [6] -1 0 0xcc800000 - 0xcc800fff (0x1000) MX[b]
    [7] -1 0 0xcd000000 - 0xcd003fff (0x4000) MX[b]
    [8] -1 0 0xcd800000 - 0xcd8007ff (0x800) MX[b]
    [9] -1 0 0xdf800000 - 0xdf7fffff (0x0) MX[b]O
    [10] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [11] -1 0 0xcfff0000 - 0xcfffffff (0x10000) MX[b](B)
    [12] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
    [13] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[b](B)
    [14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [15] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [16] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
    [17] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
    [18] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[b]
    [19] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [20] -1 0 0x0000d800 - 0x0000d80f (0x10) IX[b]
    [21] -1 0 0x0000e000 - 0x0000dfff (0x0) IX[b]O
    (II) LoadModule: "xtrap"
    (II) Loading /usr/lib/xorg/modules/extensions/libxtrap.so
    (II) Module xtrap: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DEC-XTRAP
    (II) LoadModule: "dbe"
    (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
    (II) Module dbe: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension DOUBLE-BUFFER
    (II) LoadModule: "record"
    (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
    (II) Module record: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.13.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension RECORD
    (II) LoadModule: "extmod"
    (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
    (II) Module extmod: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension SHAPE
    (II) Loading extension MIT-SUNDRY-NONSTANDARD
    (II) Loading extension BIG-REQUESTS
    (II) Loading extension SYNC
    (II) Loading extension MIT-SCREEN-SAVER
    (II) Loading extension XC-MISC
    (II) Loading extension XFree86-VidModeExtension
    (II) Loading extension XFree86-Misc
    (II) Loading extension XFree86-DGA
    (II) Loading extension DPMS
    (II) Loading extension TOG-CUP
    (II) Loading extension Extended-Visual-Information
    (II) Loading extension XVideo
    (II) Loading extension XVideo-MotionCompensation
    (II) Loading extension X-Resource
    (II) LoadModule: "dri"
    (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
    (II) Module dri: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading sub module "drm"
    (II) LoadModule: "drm"
    (II) Loading /usr/lib/xorg/modules/linux/libdrm.so
    (II) Module drm: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    ABI class: X.Org Server Extension, version 0.3
    (II) Loading extension XFree86-DRI
    (II) LoadModule: "glx"
    (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
    (II) Module glx: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.9631
    Module class: X.Org Server Extension
    ABI class: X.Org Server Extension, version 0.1
    (II) Loading extension GLX
    (II) LoadModule: "type1"
    (II) Loading /usr/lib/xorg/modules/fonts/libtype1.so
    (II) Module type1: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.2
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font Type1
    (II) LoadModule: "freetype"
    (II) Loading /usr/lib/xorg/modules/fonts/libfreetype.so
    (II) Module freetype: vendor="X.Org Foundation & the After X-TT Project"
    compiled for 7.1.1, module version = 2.1.0
    Module class: X.Org Font Renderer
    ABI class: X.Org Font Renderer, version 0.5
    (II) Loading font FreeType
    (II) LoadModule: "nvidia"
    (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so
    (II) Module nvidia: vendor="NVIDIA Corporation"
    compiled for 4.0.2, module version = 1.0.9631
    Module class: X.Org Video Driver
    (II) LoadModule: "mouse"
    (II) Loading /usr/lib/xorg/modules/input/mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.1.1
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.6
    (II) LoadModule: "kbd"
    (II) Loading /usr/lib/xorg/modules/input/kbd_drv.so
    (II) Module kbd: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.1.0
    Module class: X.Org XInput Driver
    ABI class: X.Org XInput driver, version 0.6
    (II) NVIDIA dlloader X Driver 1.0-9631 Thu Nov 9 17:39:58 PST 2006
    (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
    (II) Primary Device is: PCI 01:05:0
    (--) Chipset NVIDIA GPU found
    (II) Loading sub module "fb"
    (II) LoadModule: "fb"
    (II) Loading /usr/lib/xorg/modules/libfb.so
    (II) Module fb: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 1.0.0
    ABI class: X.Org ANSI C Emulation, version 0.3
    (II) Loading sub module "ramdac"
    (II) LoadModule: "ramdac"
    (II) Loading /usr/lib/xorg/modules/libramdac.so
    (II) Module ramdac: vendor="X.Org Foundation"
    compiled for 7.1.1, module version = 0.1.0
    ABI class: X.Org Video Driver, version 1.0
    (II) resource ranges after xf86ClaimFixedResources() call:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xcb800000 - 0xcb8000ff (0x100) MX[b]
    [5] -1 0 0xcc000000 - 0xcc000fff (0x1000) MX[b]
    [6] -1 0 0xcc800000 - 0xcc800fff (0x1000) MX[b]
    [7] -1 0 0xcd000000 - 0xcd003fff (0x4000) MX[b]
    [8] -1 0 0xcd800000 - 0xcd8007ff (0x800) MX[b]
    [9] -1 0 0xdf800000 - 0xdf7fffff (0x0) MX[b]O
    [10] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [11] -1 0 0xcfff0000 - 0xcfffffff (0x10000) MX[b](B)
    [12] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
    [13] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[b](B)
    [14] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [15] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [16] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
    [17] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
    [18] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[b]
    [19] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [20] -1 0 0x0000d800 - 0x0000d80f (0x10) IX[b]
    [21] -1 0 0x0000e000 - 0x0000dfff (0x0) IX[b]O
    (II) resource ranges after probing:
    [0] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [1] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [2] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [3] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [4] -1 0 0xcb800000 - 0xcb8000ff (0x100) MX[b]
    [5] -1 0 0xcc000000 - 0xcc000fff (0x1000) MX[b]
    [6] -1 0 0xcc800000 - 0xcc800fff (0x1000) MX[b]
    [7] -1 0 0xcd000000 - 0xcd003fff (0x4000) MX[b]
    [8] -1 0 0xcd800000 - 0xcd8007ff (0x800) MX[b]
    [9] -1 0 0xdf800000 - 0xdf7fffff (0x0) MX[b]O
    [10] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [11] -1 0 0xcfff0000 - 0xcfffffff (0x10000) MX[b](B)
    [12] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
    [13] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[b](B)
    [14] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b]
    [15] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b]
    [16] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b]
    [17] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [18] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [19] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
    [20] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
    [21] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[b]
    [22] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [23] -1 0 0x0000d800 - 0x0000d80f (0x10) IX[b]
    [24] -1 0 0x0000e000 - 0x0000dfff (0x0) IX[b]O
    [25] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b]
    [26] 0 0 0x000003c0 - 0x000003df (0x20) IS[b]
    (II) Setting vga for screen 0.
    (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
    (==) NVIDIA(0): RGB weight 888
    (==) NVIDIA(0): Default visual is TrueColor
    (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
    (**) NVIDIA(0): Enabling RENDER acceleration
    (II) NVIDIA(0): NVIDIA GPU GeForce2 MX/MX 400 at PCI:1:5:0 (GPU-0)
    (--) NVIDIA(0): Memory: 65536 kBytes
    (--) NVIDIA(0): VideoBIOS: 03.11.01.30.00
    (II) NVIDIA(0): Detected AGP rate: 4X
    (--) NVIDIA(0): Interlaced video modes are not supported on this GPU
    (--) NVIDIA(0): Connected display device(s) on GeForce2 MX/MX 400 at
    (--) NVIDIA(0): PCI:1:5:0:
    (--) NVIDIA(0): DELL 1702FP (CRT-0)
    (--) NVIDIA(0): DELL 1702FP (CRT-0): 350.0 MHz maximum pixel clock
    (II) NVIDIA(0): Assigned Display Device: CRT-0
    (WW) NVIDIA(0):
    (WW) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
    (WW) NVIDIA(0): will be used as the requested mode.
    (WW) NVIDIA(0):
    (II) NVIDIA(0): Validated modes:
    (II) NVIDIA(0): "nvidia-auto-select"
    (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
    (--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config
    (--) NVIDIA(0): option
    (--) Depth 24 pixmap format is 32 bpp
    (II) do I need RAC? No, I don't.
    (II) resource ranges after preInit:
    [0] 0 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b]
    [1] 0 0 0xce000000 - 0xceffffff (0x1000000) MX[b]
    [2] -1 0 0x00100000 - 0x3fffffff (0x3ff00000) MX[b]E(B)
    [3] -1 0 0x000f0000 - 0x000fffff (0x10000) MX[b]
    [4] -1 0 0x000c0000 - 0x000effff (0x30000) MX[b]
    [5] -1 0 0x00000000 - 0x0009ffff (0xa0000) MX[b]
    [6] -1 0 0xcb800000 - 0xcb8000ff (0x100) MX[b]
    [7] -1 0 0xcc000000 - 0xcc000fff (0x1000) MX[b]
    [8] -1 0 0xcc800000 - 0xcc800fff (0x1000) MX[b]
    [9] -1 0 0xcd000000 - 0xcd003fff (0x4000) MX[b]
    [10] -1 0 0xcd800000 - 0xcd8007ff (0x800) MX[b]
    [11] -1 0 0xdf800000 - 0xdf7fffff (0x0) MX[b]O
    [12] -1 0 0xe0000000 - 0xdfffffff (0x0) MX[b]O
    [13] -1 0 0xcfff0000 - 0xcfffffff (0x10000) MX[b](B)
    [14] -1 0 0xd0000000 - 0xd7ffffff (0x8000000) MX[b](B)
    [15] -1 0 0xce000000 - 0xceffffff (0x1000000) MX[b](B)
    [16] 0 0 0x000a0000 - 0x000affff (0x10000) MS[b](OprD)
    [17] 0 0 0x000b0000 - 0x000b7fff (0x8000) MS[b](OprD)
    [18] 0 0 0x000b8000 - 0x000bffff (0x8000) MS[b](OprD)
    [19] -1 0 0x0000ffff - 0x0000ffff (0x1) IX[b]
    [20] -1 0 0x00000000 - 0x000000ff (0x100) IX[b]
    [21] -1 0 0x0000a000 - 0x0000a007 (0x8) IX[b]
    [22] -1 0 0x0000a400 - 0x0000a41f (0x20) IX[b]
    [23] -1 0 0x0000d000 - 0x0000d01f (0x20) IX[b]
    [24] -1 0 0x0000d400 - 0x0000d41f (0x20) IX[b]
    [25] -1 0 0x0000d800 - 0x0000d80f (0x10) IX[b]
    [26] -1 0 0x0000e000 - 0x0000dfff (0x0) IX[b]O
    [27] 0 0 0x000003b0 - 0x000003bb (0xc) IS[b](OprU)
    [28] 0 0 0x000003c0 - 0x000003df (0x20) IS[b](OprU)
    (II) NVIDIA(0): Setting mode "nvidia-auto-select"
    (II) Loading extension NV-GLX
    (II) NVIDIA(0): NVIDIA 3D Acceleration Architecture Initialized
    (II) NVIDIA(0): Using the NVIDIA 2D acceleration architecture
    (==) NVIDIA(0): Backing store disabled
    (==) NVIDIA(0): Silken mouse enabled
    (II) Loading extension NV-CONTROL
    (WW) NVIDIA(0): Option "UseEDIDfreqs=false" is not used
    (==) RandR enabled
    (II) Initializing built-in extension MIT-SHM
    (II) Initializing built-in extension XInputExtension
    (II) Initializing built-in extension XTEST
    (II) Initializing built-in extension XKEYBOARD
    (II) Initializing built-in extension XC-APPGROUP
    (II) Initializing built-in extension SECURITY
    (II) Initializing built-in extension XINERAMA
    (II) Initializing built-in extension XFIXES
    (II) Initializing built-in extension XFree86-Bigfont
    (II) Initializing built-in extension RENDER
    (II) Initializing built-in extension RANDR
    (II) Initializing built-in extension COMPOSITE
    (II) Initializing built-in extension DAMAGE
    (II) Initializing built-in extension XEVIE
    (II) Initializing extension GLX
    (**) Option "Protocol" "auto"
    (**) Mouse0: Device: "/dev/input/mice"
    (**) Mouse0: Protocol: "auto"
    (**) Option "CorePointer"
    (**) Mouse0: Core Pointer
    (**) Option "Device" "/dev/input/mice"
    (==) Mouse0: Emulate3Buttons, Emulate3Timeout: 50
    (**) Option "ZAxisMapping" "4 5 6 7"
    (**) Mouse0: ZAxisMapping: buttons 4, 5, 6 and 7
    (**) Mouse0: Buttons: 11
    (**) Option "CoreKeyboard"
    (**) Keyboard0: Core Keyboard
    (**) Option "Protocol" "standard"
    (**) Keyboard0: Protocol: standard
    (**) Option "AutoRepeat" "500 30"
    (**) Option "XkbRules" "xorg"
    (**) Keyboard0: XkbRules: "xorg"
    (**) Option "XkbModel" "pc105"
    (**) Keyboard0: XkbModel: "pc105"
    (**) Option "XkbLayout" "us"
    (**) Keyboard0: XkbLayout: "us"
    (**) Option "CustomKeycodes" "off"
    (**) Keyboard0: CustomKeycodes disabled
    (II) XINPUT: Adding extended input device "Keyboard0" (type: KEYBOARD)
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    (II) XINPUT: Adding extended input device "NVIDIA Damage Notification Manager" (type: Other)
    (II) XINPUT: Adding extended input device "NVIDIA Kernel RC Handler" (type: Other)
    (II) XINPUT: Adding extended input device "NVIDIA Event Handler" (type: Other)
    (--) Mouse0: PnP-detected protocol: "ExplorerPS/2"
    (II) Mouse0: ps2EnableDataReporting: succeeded
    Apart from the warnings "No modes were requested ..." and "option "UseEDIDfreqs=false" is not used" nothing looks that bad to me.  Any ideas?  This is what I see in xfce:
    http://img299.imageshack.us/img299/5268 … ot2dk6.png
    I also tried using the gtf output a few times and that didn't work either.  I'm starting to wonder if it's a hardware problem.  Seems kind of subtle for a malfunctioning graphics card though, doesn't it?
    Thanks again

  • AMD Drivers - Dual monitor - xorg

    Decided to install arch again after a HDD failure. Since I'm not that good with drivers (and xorg) I came this far.. I'm running an AMD HD6850.
    What I've done:
    Installed the basic (vesa) driver
    Installed the libre (xf86-video-ati) driver
    Installed the proprietary (catalyst-dkms & catalyst-utils & lib32-catalyst-utils) drivers
    Installed mesa-demos
    What that did:
    With the libre driver, I was able to start xorg, with my WM (awesome) and it "Just Werked (tm)", however, I was unable to set up side-by-side monitors, and after some thinking I decided to go for the proprietary driver, since I shower regurarly and only wears a tinfoilhat sometimes.
    After installing the proprietary driver, I got the same thing. Started just fine (after a reboot), and "JustWerks (tm)" except for side-by-side monitors.
    I remembered running "glxgears" to test if it was working the last time I used this computer with GNU/Linux, however the command was not found.
    Some guy on a IRC channel told me to run "glxinfo" (and grep direct) , which was not found, but after installing "mesa-demos" it was, and it returned this error:
    [cat@loli ~]$ glxinfo | grep direct
    X Error of failed request: BadRequest (invalid request code or no such operation)
    Major opcode of failed request: 153 (GLX)
    Minor opcode of failed request: 19 (X_GLXQueryServerString)
    Serial number of failed request: 12
    Current serial number in output stream: 12
    The same error appears when I try to run glxgears aswell.
    So, I'm grateful for all help. and I would really appreciate it.
    Last edited by oniichan (2012-10-14 19:58:43)

    bsilbaugh wrote:Absolutely. Even if using the open source driver isn't the ideal long term solution, if it works, it would (1) provide you with a working short term solution, and (2) would confirm that the other elements of your graphics system are (most likely) functioning properly.
    I'll try that one first now, however:
    I recently got the advice to install the catalyst-total driver from the AUR. I did that, but I can't start Catalyst Control Centre, which would be a nice and easy way to do it...
    when I try to run 'amdcccle' which is the control centre, i get an error saying ''There was a problem initializing Catalyst Control Centre Linux Edition. It could be caused by the following.
    No AMD graphics driver is installed, or the AMD driver is not functioning properly.
    Please install the AMD driver appropriate for you AMD hardware, or configure using aticonfig. ''
    When I try to run '' aticonfig '' i get this:
    [cat@loli ~]$ sudo aticonfig --initial=dual-head --screen-layout=left-of
    [sudo] password for cat:
    Found fglrx primary device section
    Found fglrx secondary device section
    Using /etc/X11/xorg.conf
    Saving back-up to /etc/X11/xorg.conf.fglrx-0
    But nothing appears to be happening.
    bsilbaugh wrote:My previous comment that Display Port is necessary for use of ATI eyefinity was true; however, running dual head displays generally does not require eyefinity. In fact, my old Radeon 4650 did not provide a Display Port (nor eyefinity). I was able to directly plug my monitors into the DVI and VGA ports of the 4650 card. For true dual head display, the important hardware criteria is that your card provides at least two controllers--which I believe your card does.
    My card is perfectly capable of running it the way I want it, since it does under Fedora 17.

Maybe you are looking for