xorg radeon driver dual monitors; have been struggling for lil over a year I would like to have dual monitors on my tower;
I have been looking at xorg files for the past year and a half and played in different versions of linux
I am tempted to apandon the xorg-radeon drivers and change to fglrx; (which i still have little faith in due to past epirience) I don't do this because i have read that changing to fglrx can cause problems with other graphics related things (if fglrx is a good choice at this point let me know)
I'm running two Hanns-G 1440x900 LCD monitors
One is VGA the other is DVI input
my videocard is the Radeon x850 PRO
my default xorg runs them cloned;
I would like to have spanned monitors.
My current OS is Fedora Core 9 and I am running Compiz-Fusion I have tried all of the built in sofware to get dual monitors working but no avail
I have been using linux for ~4 years (2 years as main OS)
here is my current xorg file Code: # Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "single head configuration"
Screen 0 "Screen0" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
# keyboard added by rhpxl
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1440x900"
HorizSync 31.5 - 56.0
VertRefresh 56.0 - 65.0
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "radeon"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
and here is the xorg file that i have most reciently tried for dual monitors Code: ################################################################################
# Server Layout
################################################################################
Section "ServerLayout"
Identifier "Dual Head Configuration"
Screen "Screen0" 0 0
Screen "Screen1" RightOf "Screen0"
InputDevice "Keyboard0" "CoreKeyboard"
# Option "Xinerama" "true"
EndSection
################################################################################
# Input Devices
################################################################################
Section "InputDevice
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
################################################################################
# Monitors: I have two hanns-g LCD Monitors
################################################################################
Section "Monitor"
Identifier "Monitor0"
ModelName "LCD Panel 1440x900"
HorizSync 31.5 - 56.0
VertRefresh 56.0 - 65.0
Option "dpms"
EndSection
Section "Monitor"
Identifier "Monitor1"
ModelName "LCD Panel 1440x900"
HorizSync 31.5 - 56.0
VertRefresh 56.0 - 65.0
Option "dpms"
EndSection
################################################################################
# Video Cards: I have one Radeon x850 PRO. One monitor is connected to the
# digital DVI output, the other is connected to the analog VGA output.
################################################################################
Section "Device"
Identifier "Videocard0"
Driver "radeon"
Screen 0
EndSection
Section "Device"
Identifier "Videocard1"
Driver "radeon"
Screen 1
EndSection
################################################################################
# Screens: I would like to have one large desktop that spans both monitors,
# but when an application is maximized it would expand to fill just the monitor
# on which it is displayed.
################################################################################
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1440x900"
EndSubSection
EndSection
|