PaulBain Apprentice
![Apprentice Apprentice](/images/ranks/rank_rect_2.gif)
![](images/avatars/129019370443c3f424909c1.gif)
Joined: 14 Jun 2005 Posts: 159 Location: Coventry, UK
|
Posted: Sat Oct 21, 2006 9:04 am Post subject: Problems with Dual Screens radeon 1600pro |
|
|
Hi guys,
I'm trying to set up dual screens. I have a Hanns G HW101D 1440x900 as my primary monitor and a standard 15" Dell as my second.
I'm using a radeon 1600 pro with dual heads.
I dont really know whats going on, the dell monitor always says "Cannot Display This Video Mode"
Any help would be very much appreciated!
Lspci gives
Code: |
01:00.0 VGA compatible controller: ATI Technologies Inc RV350 AR [Radeon 9600]
01:00.1 Display controller: ATI Technologies Inc RV350 AR [Radeon 9600] (Secondary)
|
and my xorg.conf is
Code: |
# **********************************************************************
# Server flags section.
Section "ServerFlags"
Option "Xinerama" "on"
EndSection
Section "ServerLayout"
Identifier "Simple Layout"
Screen 0 "aticonfig-Screen[1]" 0 0
Screen 1 "aticonfig-Screen[0]" LeftOf "aticonfig-Screen[1]"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "DRI"
Mode 0666
EndSection
Section "Files"
# The module search path. The default path is shown here.
FontPath "/usr/share/fonts/misc"
FontPath "/usr/share/fonts/75dpi"
FontPath "/usr/share/fonts/100dpi"
FontPath "/usr/share/fonts/Type1"
EndSection
Section "Module"
Load "dbe" # Double buffer extension
SubSection "extmod"
Option "omit xfree86-dga" # don't initialise the DGA extension
EndSubSection
Load "freetype"
Load "dri"
Load "glx"
EndSection
Section "InputDevice"
Identifier "Keyboard1"
Driver "kbd"
Option "AutoRepeat" "500 30"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
Option "XkbRules" "xorg"
Option "XkbModel" "microsoft"
Option "XkbLayout" "gb"
EndSection
Section "InputDevice"
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "Auto" # Auto detect
Option "Device" "/dev/input/mice"
# When using XQUEUE, comment out the above two lines, and uncomment
Option "ZAxisMapping" "4 5 6 7"
# Emulate3Buttons is an option for 2-button mice
Option "Emulate3Buttons"
EndSection
Section "Monitor"
Identifier "HANSG"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "false"
Modeline "1440x900" 106.5 1440 1520 1672 1904 900 903 909 934
EndSection
Section "Monitor"
Identifier "DELL"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "false"
EndSection
Section "Device"
# Option "ModeValidation" "NoMaxPClkCheck"
Identifier "aticonfig-Device[0]"
BusID "PCI:1:0:0"
Driver "agp"
Option "UseInternalAGPGART" "no"
Option "VideoOverlay" "on"
EndSection
Section "Device"
# Option "ModeValidation" "NoMaxPClkCheck"
Identifier "aticonfig-Device[1]"
Driver "fglrx"
BusID "PCI:1:0:1"
Option "UseInternalAGPGART" "no"
Option "VideoOverlay" "on"
EndSection
Section "Screen"
Identifier "aticonfig-Screen[1]"
Device "aticonfig-Device[1]"
Monitor "HANSG"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 8
Modes "1440x900" "1280x960" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 16
Modes "1440x900" "1280x960" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900" "1280x960" "1280x1024" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "Screen"
Identifier "aticonfig-Screen[0]"
Device "aticonfig-Device[0]"
Monitor "DELL"
DefaultDepth 24
SubSection "Display"
Viewport 1 0
Depth 8
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 1 0
Depth 16
Modes "1024x768" "800x600" "640x480"
EndSubSection
SubSection "Display"
Viewport 1 0
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
|
|
|