TwinView (Dual monitor) problem med CRT og LCD skærm
Heya, jeg prøver at få TwinView til at virke med min LCD og CRT skærm, men X fyrer følgende fejl af når jeg starter x med "startx -- -layout CRT_LCD":(EE) NVIDIA(0): Failed to read mapping of display devices to CRTCs
(EE) Screen(s) found, but none have a usable configuration.
Fatal server error:
no screens found
De 2 andre layouts virker fint (LCD og CRT layouts)
Jeg er lidt på bar bund efterhånden, har forsøgt adskillige ting og sager, men lige lidt hjælper det. Mit setup er med Slackware 9.1, xfree 4.3.0 og kernel 2.4.22. MSI Geforce 4 TI-4200. CRT er koblet til med analog og LCD skærmen med DVI.
Her er min XF86Config, håber at der er en/nogen der kan hjælpe mig:
# **********************************************************************
# Monitor section
# **********************************************************************
# Any number of monitor sections may be present
Section "Monitor"
Identifier "Monitor_CRT"
VendorName "Samsung"
HorizSync 30-110
VertRefresh 50-160
Option "dpms"
EndSection
Section "Monitor"
Identifier "Monitor_LCD"
VendorName "Samsung"
HorizSync 30-50
VertRefresh 60
Option "dpms"
EndSection
# **********************************************************************
# Graphics device section
# **********************************************************************
# Standard VGA Device:
Section "Device"
Identifier "Standard VGA"
Driver "vga"
VendorName "Unknown"
BoardName "Unknown"
EndSection
#NVIDIA LCD SETUP
Section "Device"
Identifier "NVIDIA_LCD"
Driver "nvidia"
Option "NoLogo" "1"
Option "ConnectedMonitor" "DFP"
Option "UseEdidFreqs" "1"
Option "NvAgp" "1"
Option "MetaModes" "1280x1024;1024x768;800x600"
EndSection
#NVIDIA CRT SETUP
Section "Device"
Identifier "NVIDIA_CRT"
Driver "nvidia"
Option "NoLogo" "1"
#Option "ConnectedMonitor""CRT"
Option "UseEdidFreqs" "1"
Option "NvAgp" "1"
Option "MetaModes" "1280x1024;1024x768;800x600"
EndSection
Section "Device"
Identifier "NVIDIA_CRT_LCD"
Driver "nvidia"
Option "NoLogo" "1"
Option "UseEdidFreqs" "1"
Option "TwinView" "1"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "60"
Option "TwinViewOrientation" "LeftOf"
Option "NvApg" "1"
Option "ConnectedMonitor" "CRT,DFP"
Option "MetaModes" "1280x1024,1280x1024;1024x768,1024x768;800x600,800x600"
EndSection
# **********************************************************************
# Screen sections
# **********************************************************************
Section "Screen"
Identifier "Screen_LCD"
Device "NVIDIA_LCD"
Monitor "Monitor_LCD"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
#ViewPort 0 0
EndSubsection
EndSection
Section "Screen"
Identifier "Screen_CRT"
Device "NVIDIA_CRT"
Monitor "Monitor_CRT"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
#ViewPort 0 0
EndSubsection
EndSection
Section "Screen"
Identifier "Screen_CRT_LCD"
Device "NVIDIA_CRT_LCD"
Monitor "Monitor_CRT"
Monitor "Monitor_LCD"
DefaultDepth 24
Subsection "Display"
Depth 24
Modes "1280x1024" "1024x768" "800x600"
#ViewPort 0 0
EndSubsection
EndSection
# **********************************************************************
# ServerLayout sections.
# **********************************************************************
#Start X med 'startx -- -layout layoutname'
Section "ServerLayout"
Identifier "LCD"
Screen 0 "Screen_LCD" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "ServerLayout"
Identifier "CRT"
Screen 0 "Screen_CRT" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "ServerLayout"
Identifier "CRT_LCD"
Screen "Screen_CRT_LCD"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection