|
I run a dual-head configuration, with good results.
I try to stay away from the vendor-dual-head setups, such as nVidia's Twinview, and prefer Xinerama. Seems to give me better results, but YMMV.
In your /etc/X11/xorg.conf (or XFree86 config file, whichever you might have), the following will help get you started. Please check your driver MAN pages, and the notes for the xorg.conf file as well.
-----------------------
# SERVER SECTION
Section "ServerLayout"
Identifier "layout1"
InputDevice "Keyboard1" "CoreKeyboard"
InputDevice "Mouse1" "CorePointer"
Screen 0 "screen1"
Screen 1 "screen2" RightOf "screen1"
Option "Xinerama" "On"
# Option "Xinerama" "On"
EndSection
---------------------------------------
You'll have to configure the screen1 and screen2 devices in your xorg.conf. Notice that the Xinerama option is set to on, which will let you use your dual-head configuration. Also, the "RightOf" flag, which tells the X server where the screens are (so that screen1 is on the left, screen2 on right, so things behave correctly). It did give me cramps getting mine set up initially, but the driver docs from ATI and the docs from xorg will tell you everything you need. Good luck.
On a related note, I haven't had good luck with ATI cards, but the nVidia cards seem to work better, at least for me.
|