After weeks of on and off, half hearted, efforts with lost of cursing, I got this thing to work.
I used the Livna method from FedoraFaq.org.
- Rename your /etc/X11/xorg.conf
- Run
Code:
system-config-display
- Click on the Dual Head tab
- Click on the Use Dual Head box
- Select a monitor
- Click OK till you exit. If you get an X error message, don’t worry.
- Next you need to run
Code:
nvidia-config-display enable
command which inserts the nvidia driver locations in the brand new xorg.conf file that system-config-display just recreated. - Edit xorg.conf. Make sure the
Statements are replaced with
- Edit xorg.conf. The modes sections didn’t match the capabilities of my cards, so I edited them out with a #.
- Run startx.
Here’s the final config.
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "Multihead layout"
Screen 0 "Screen0" LeftOf "Screen1"
Screen 1 "Screen1" 0 0
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama" "off"
Option "Clone" "on"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib/xorg/modules"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
Option "XkbLayout" "us"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "LCD Panel 1280x1024"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 67.0
VertRefresh 50.0 - 75.0
Option "dpms"
EndSection
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
Option "AddARGBGLXVisuals" "True"
EndSection
Section "Device"
Identifier "Videocard1"
Driver "nvidia"
VendorName "Videocard Vendor"
BoardName "nVidia Corporation NV34 [GeForce FX 5200]"
Option "AddARGBGLXVisuals" "True"
BusID "PCI:3:9:0"
Screen 1
EndSection
Section "Screen"
Identifier "Screen0"
Device "Videocard0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
# Modes "800x600" "800x600" "800x600" "640x480" "640x480" "640x480"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Videocard1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
# Modes "800x600"
EndSubSection
EndSection
I feel so proud of myself. I'm going to have dessert for lunch! I deserve it. Rice pudding, yum!
Bookmarks