You are not logged in.
Pages: 1
Hi there..
I have nvidia geforce fx5200 with dualhead and tv-out. I have two DFP's connected and now I want to use the tv-out at the same time. Is that possible?, if so please help me, cause i cannot figure it out.
Thanks 
Offline

yeah, you need to read through the readme of the nvidia drivers... you need to set a handful of options in your xorg.conf file...
Offline
This should be possible. 
I have only one crt and tv out connected but maybe this part of my /etc/X11/xorg.conf will help you too:
Section "Monitor"
    Identifier      "Philips109MP"
    HorizSync       30-107
    VertRefresh     50-160
    DisplaySize 365 273
EndSection
Section "Monitor"
    Identifier  "SonyTv29"
    HorizSync   30-50
    VertRefresh 60
EndSection
Section "Device"
    Identifier      "NvidiaGeForce4MX440"
    Driver      "nvidia"
    Option      "NoLogo"            "true"
    Screen      0
    BusID       "PCI:01:00:0"
EndSection
Section "Device"
    Identifier  "NvidiaGeForce4MX440TvOut"
    Driver      "nvidia"
    Option      "NoLogo"            "true"
    Screen      1
    BusID       "PCI:01:00:0"
EndSection
Section "Screen"
    Identifier      "MonitorPhilips"
    Device          "NvidiaGeForce4MX440"
    Monitor         "Philips109MP"
    DefaultDepth    24
    Subsection  "Display"
            Depth       8
            Modes       "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection  "Display"
            Depth       16
            Modes       "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
    Subsection  "Display"
            Depth       24
            Modes       "1600x1200" "1280x1024" "1024x768" "800x600" "640x480"
    EndSubsection
EndSection
Section "Screen"
    Identifier  "TvSony"
    Device      "NvidiaGeForce4MX440TvOut"
    Monitor     "SonyTv29"
    DefaultDepth    24
    Subsection  "Display"
        Depth   24
        Modes   "1024x768" "800x600" "640x480"
    EndSubsection
EndSection
Section "ServerLayout"
    Identifier      "MonitorTV"
    Screen      0 "MonitorPhilips"
    Screen      1 "TvSony" LeftOf "MonitorPhilips"
    InputDevice     "LogitechMX700"             "CorePointer"
    InputDevice     "LogitechCordlessDesktopMX"         "CoreKeyboard"
EndSectionX creates two screens (0 and 1) on one display (:0.0 and :0.1) and you can have different resolutions (and WMs) which is what I needed (max resolution for the tv is 1024x768 and fullscreen mode is working better). It doesn't use tweenview mode. Important part is BusId (you can find it with lspci).
Offline

the TwinView stuff should be for the dual DFPs... although I guess you could use Xinerama... 
follow lanrat's setup to get 1 monitor + TV
then look into either TwinView from NVIDIA or Xinerama
Offline
Pages: 1