Trying to display 3 screens.
2 x 1280x1024 LCDs on a 6800ultra (title NV-0, and NV-1 in xorg.conf)
1x 1360x768 LCD TV on fx5200 (title FX-0 in xorg.conf)
As it stands I have both the LCDs displaying perfectly they act as individual screens (for things like maximised applications).
Problem is I have nothing no the LCD TV (tv states "No Signal")
Code:
# Xorg configuration created by system-config-display
Section "ServerLayout"
Identifier "Multihead layout"
Screen "Screen1" RightOf "Screen2"
Screen "Screen0" RightOf "Screen1"
Screen "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
Option "Xinerama" "on"
Option "Clone" "off"
EndSection
Section "Files"
# Multiple FontPath entries are allowed (they are concatenated together)
# By default, a font server independent of the X server is
# used to render fonts.
ModulePath "/usr/lib/xorg/modules/extensions/nvidia"
ModulePath "/usr/lib/xorg/modules"
FontPath "unix/:7100"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "fbdevhw"
Load "record"
Load "freetype"
Load "type1"
Load "glx"
EndSection
Section "InputDevice"
# Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
# Option "Xleds" "1 2 3"
# To disable the XKEYBOARD extension, uncomment XkbDisable.
# Option "XkbDisable"
# To customise the XKB settings to suit your keyboard, modify the
# lines below (which are the defaults). For example, for a non-U.S.
# keyboard, you will probably want to use:
# Then to change the language, change the Layout setting.
# For example, a german layout can be obtained with:
# Option "XkbLayout" "de"
# or:
# Option "XkbLayout" "de"
# Option "XkbVariant" "nodeadkeys"
#
# If you'd like to switch the positions of your capslock and
# control keys, use:
# Option "XkbOptions" "ctrl:swapcaps"
# Or if you just want both to be control, use:
# Option "XkbOptions" "ctrl:nocaps"
#
Identifier "Keyboard0"
Driver "kbd"
Option "XkbModel" "pc105"
# If you have a US Microsoft Natural keyboard, you can use:
Option "XkbLayout" "uk"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "IMPS/2"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5"
Option "Emulate3Buttons" "yes"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "LG L1710B(Analog)"
DisplaySize 340 270
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 71.0
VertRefresh 56.0 - 75.0
Option "dpms"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "LG L1710B(Analog)"
DisplaySize 340 270
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 30.0 - 71.0
VertRefresh 56.0 - 75.0
Option "dpms"
EndSection
Section "Monitor"
### Comment all HorizSync and VertSync values to use DDC:
Identifier "Monitor2"
VendorName "Monitor Vendor"
ModelName "LCD Panel 1360x768"
### Comment all HorizSync and VertSync values to use DDC:
HorizSync 31.5 - 48.5
VertRefresh 40.0 - 75.0
Option "dpms"
EndSection
Section "Device"
Identifier "NV-0"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "nVidia Corporation nv40 [GeForce 6800 Ultra]"
BusID "PCI:2:0:0"
EndSection
Section "Device"
Identifier "NV-1"
Driver "nvidia"
VendorName "Videocard vendor"
BoardName "nVidia Corporation nv40 [GeForce 6800 Ultra]"
BusID "PCI:2:0:0"
Screen 1
EndSection
Section "Device"
Identifier "FX-0"
Driver "nvidia"
VendorName "Videocard Vendor"
BoardName "nVidia Corporation NV34 [GeForce FX 5200]"
Option "MetaModes" "1360x768"
BusID "PCI:1:7:0"
Screen 2
EndSection
Section "Screen"
Identifier "Screen0"
Device "NV-0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "800x600" "640x480"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "NV-1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1280x1024" "800x600" "640x480"
EndSubSection
EndSection
Section "Screen"
Identifier "Screen2"
Device "FX-0"
Monitor "Monitor2"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
Modes "1360x768"
EndSubSection
EndSection
Section "DRI"
Group 0
Mode 0666
EndSection
If anyone could help I would much appreciate it