Два монитора.

День добрый…
Дано:
видюха AtiRadeon 9600 Pro
два монитора 15" LCD
Арч - последний. Xorg 7.2. Gnome.
Основной монитор висит на DVI выходе видюхе через переходник. Второй монитор соответственно на VGA выходе.

Задача: завести два монитора не в режиме клонирования.
Клоном работают без проблем.
Мож подскажите где у меня ошибка?
Конфиг Xorga:
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
Section "ServerLayout"
    Identifier	"Layout"
    Screen 0 "Screen 0"
    Screen 1 "Screen 1" RightOf "Screen 0"
    InputDevice "Mouse1" "CorePointer"
    InputDevice "Keyboard1" "CoreKeyboard"
EndSection
# **********************************************************************
# Module section -- this  section  is used to specify
# which dynamically loadable modules to load.
# **********************************************************************
Section "Module"
    Load        "dbe"
    Load	"dri"
    Load	"extmod"
    Load	"glx"
    Load	"record"
    Load	"xtrap"
    Load        "type1"
    Load        "freetype"
#    SubSection  "extmod"
#      Option    "omit xfree86-dga"
#    EndSubSection
EndSection
# **********************************************************************
# Files section.  This allows default font and rgb paths to be set
# **********************************************************************
Section "Files"
    RgbPath	"/usr/share/X11/rgb"
    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"
#    FontPath   "/usr/lib/X11/fonts/local/"
#    FontPath   "/usr/lib/X11/fonts/misc/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/100dpi/:unscaled"
#    FontPath   "/usr/lib/X11/fonts/Speedo/"
#    FontPath   "/usr/lib/X11/fonts/Type1/"
#    FontPath   "/usr/lib/X11/fonts/TrueType/"
#    FontPath   "/usr/lib/X11/fonts/freefont/"
#    FontPath   "/usr/lib/X11/fonts/75dpi/"
#    FontPath   "/usr/lib/X11/fonts/100dpi/"
#    ModulePath "/usr/lib/modules"
EndSection
# **********************************************************************
# Server flags section.
# **********************************************************************
Section "ServerFlags"
    Option "Xinerama" "true"
EndSection
# **********************************************************************
# Core keyboard's InputDevice section
# **********************************************************************
Section "InputDevice"
    Identifier	"Keyboard1"
    Driver	"kbd"
    Option "AutoRepeat" 	"500 30"
    Option "XkbRules"		"xorg"
    Option "XkbModel"		"pc105"
    Option "XkbLayout"		"us,ru"
    Option "XkbVariant"		",winkeys"
    Option "XkbOptions" 	"grp:ctrl_shift_toggle,grp_led:scroll"
EndSection
# **********************************************************************
# Core Pointer's InputDevice section
# **********************************************************************
Section "InputDevice"
    Identifier	"Mouse1"
    Driver	"mouse"
    Option "Protocol"    	"Auto"
    Option "Device"      	"/dev/input/mice"
    Option "ZAxisMapping"   	"4 5 6 7"
EndSection
# **********************************************************************
# Monitor section
# **********************************************************************
Section "Monitor"
    Identifier  "Dell Monitor"
#    DisplaySize	340 270
#    Option	"DPMS"    
EndSection
Section "Monitor"
    Identifier  "Green Monitor"
#    DisplaySize	340 270
#    Option	"DPMS"
        
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
Section "Device"
    Identifier  "0 ATI 9600Pro"
    Driver      "ati"
    Screen 	0
    BusID        "PCI:1:0:0"
EndSection
Section "Device"
    Identifier  "1 ATI 9600Pro"
    Driver      "ati"
    Screen	1
    BusID        "PCI:1:0:1"
EndSection
# **********************************************************************
# Screen sections
# **********************************************************************
Section "Screen"
    Identifier  "Screen 0"
    Device      "0 ATI 9600Pro"
    Monitor     "Dell Monitor"
    DefaultDepth 24
    Subsection "Display"
        Depth       24
        Modes       "1024x768"
        ViewPort    0 0
    EndSubsection
EndSection
Section "Screen"
    Identifier  "Screen 1"
    Device      "1 ATI 9600Pro"
    Monitor     "Green Monitor"
    DefaultDepth 24
    Subsection "Display"
        Depth       24
        Modes       "1024x768"
        ViewPort    0 1
    EndSubsection
EndSection
#Section "DRI"
#    Mode 0666
#EndSection
ошибку нашел сам =)
должно быть так:
# **********************************************************************
# Graphics device section
# **********************************************************************
Section "Device"
    Identifier  "0 ATI 9600Pro"
    Driver      "ati"
    Screen 	0
    BusID        "PCI:1:0:0"
EndSection
Section "Device"
    Identifier  "1 ATI 9600Pro"
    Driver      "ati"
    Screen	1
    BusID        "PCI:1:0:0"
EndSection

хз почему он не хочет видеть PCI:1:0:1
хотя lspci говорить что:
01:00.0 VGA compatible controller: ATI Technologies Inc RV350 AP [Radeon 9600]
01:00.1 Display controller: ATI Technologies Inc RV350 AP [Radeon 9600] (Secondary)
 
Зарегистрироваться или войдите чтобы оставить сообщение.