hey Uwe :)
sowohl bei mir (G550) als auch bei einem Freund (G200DH + Nvidia als 3ter Kopf) funktionieren die unterschiedlichen Aufloesungen. Das mgadesk-tool von matrox macht nichts anderes als dir deine XF86Config(-4) zurechtzubasteln - du solltest es mit den korrekten Parametern also auch ohne hinbekommen. Alles was du brauchst ist der xfree driver von matrox. Hier einfach mal der relevanten Ausschnitt meiner config:
Section "ServerLayout" Identifier "Standard Layout" Screen "Matrox Screen 1" # zur korrekten abstufung der monitore Screen "Matrox Screen 2" Relative "Matrox Screen 1" 1600 336 EndSection
Section "ServerFlags" # damit beide koepfe auch "zusammen" arbeiten Option "Xinerama" EndSection
Section "Device" Identifier "Matrox Video Card 1" Driver "mga" Option "hw cursor" "on" # busid mit lspci ermitteln BusID "PCI:1:0:0" EndSection
Section "Monitor" Identifier "Matrox Monitor 1" HorizSync 30.0 - 107.0 VertRefresh 50.0 - 160.0 EndSection
Section "Screen" Identifier "Matrox Screen 1" Device "Matrox Video Card 1" Monitor "Matrox Monitor 1" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1600x1200" "1280x1024" "1024x768" "800x600" "640x480" EndSubSection EndSection
Section "Device" Identifier "Matrox Video Card 2" Driver "mga" Option "hw cursor" "on" BusID "PCI:1:0:0" Screen 1 EndSection
Section "Monitor" Identifier "Matrox Monitor 2" HorizSync 30.0 - 107.0 VertRefresh 50.0 - 160.0 ModeLine "1152x864@85Hz:1" 122.4 1152 1216 1344 1600 864 865 \ 868 900 +hsync +vsync EndSection
Section "Screen" Identifier "Matrox Screen 2" Device "Matrox Video Card 2" Monitor "Matrox Monitor 2" DefaultDepth 24 SubSection "Display" Depth 24 Modes "1152x864@85Hz:1" "1152x864" "1024x768" "800x600" "640x480" EndSubSection EndSection
Ich hoffe mal das bringt dich weiter. wolfgang
On 03-Mar-2003 Uwe Koloska wrote:
Am Montag, 3. März 2003 18:20 schrieb Uwe Koloska:
Danke für alle Antworten bisher. Ich werde heute abend mal die aktuellen Treiber von Matrox ausprobieren. Mit mga-desk hatte ich beim letztenmal Probleme, deswegen habe ich es wieder rausgeschmissen.
Wieder die gleichen Probleme: die Konfiguration, die mgapdesk erstellt
startet nicht.
Und jetzt habe ich es amtlich: Der zweite Monitor kann keine abweichende Breite darstellen -- sagt jedenfalls ein Kommentar in mga_driver.c::MGAValidMode()
/* Can't have horizontal panning for second head of G400 */ if (pMga->SecondCrtc) { if (flags == MODECHECK_FINAL) { if (pMga->allowedWidth == 0) pMga->allowedWidth = pScrn->virtualX; if (mode->HDisplay != pMga->allowedWidth) return(MODE_ONE_WIDTH); } }
So ein Mist :-(((
Uwe