<br><br><div><span class="gmail_quote">On 10/14/07, <b class="gmail_sendername">Sam Bruner</b> <<a href="mailto:sabruner3@juno.com">sabruner3@juno.com</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
I am currently using the stock mythdora nvidia xorg.conf. It is set so that<br>a tv and a monitor can both be connected at the same time.<br><br>In a previous box I only had setting for a tv. I had two different<br>xorg.conf
, one for vga and one for tv. I do not have this xorg.conf<br>anymore.<br><br>Does anyone have one for a Nvidia fx5200 set for tv-out and composite?<br><br>Also, if I rememeber correctly there is a way to generate this.<br>
<br>Some simple steps on how do this would also be great.<br></blockquote></div><br>I have an FX5200 going to both a TV via SVIDEO and my monitor via VGA. For composite output just change SVIDEO to COMPOSITE. You need to have the BusID in the two device sections. Run lspci to determine what it should be on your computer, mine looks like this ...
<br><br>0000:02:02.0 VGA compatible controller: nVidia Corporation NV34 [GeForce FX 5200] (rev a1)<br><br>Here is part of my xorg.conf ...<br><br>Section "Monitor"<br> Identifier "KDS"<br> HorizSync 30 - 64
<br> VertRefresh 50 - 130<br>EndSection<br><br>Section "Monitor"<br> Identifier "TV"<br> HorizSync 30-50<br> VertRefresh 60<br>EndSection<br><br>Section "Device"<br>
Identifier "Device[0]"<br> Driver "nvidia"<br> BusID "PCI:2:2:0"<br> Screen 0<br>EndSection<br><br>Section "Device"<br> Identifier "Device[1]"<br> Driver "nvidia"
<br> BusID "PCI:2:2:0"<br> Option "TVStandard" "NTSC-M"<br> Option "TVOutFormat" "SVIDEO"<br> Option "TVOverScan" "0.8"<br> Screen 1
<br>EndSection<br><br>Section "Screen"<br> Identifier "Screen[0]"<br> Device "Device[0]"<br> Monitor "KDS"<br> DefaultDepth 24<br><br> # Monitor display setup here (snipped)
<br>EndSection<br><br>Section "Screen"<br> Identifier "Screen[1]"<br> Device "Device[1]"<br> Monitor "TV"<br> Option "TVStandard" "NTSC-M"
<br> Option "TVOutFormat" "SVIDEO"<br> Option "TVOverScan" "0.8"<br> DefaultDepth 24<br> SubSection "Display" <br> Depth 24 <br> Modes "800x600"
<br> EndSubSection <br>EndSection<br><br>Section "ServerLayout"<br> Identifier "Simple Layout"<br> Screen 0 "Screen[0]"<br> Screen 1 "Screen[1]" RightOf "Screen[0]"
<br> InputDevice "Mouse1" "CorePointer"<br> InputDevice "Keyboard" "CoreKeyboard"<br>EndSection<br><br>