You are not logged in.

#1 2005-02-02 21:34:08

TJH
Member
Registered: 2005-02-02
Posts: 3

2 screens and tv-out

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 smile

Offline

#2 2005-02-02 21:45:39

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: 2 screens and tv-out

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...

ftp://download.nvidia.com/XFree86/Linux … 336/README

Offline

#3 2005-02-03 02:04:22

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: 2 screens and tv-out

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"
EndSection

X 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

#4 2005-02-03 15:31:39

phrakture
Arch Overlord
From: behind you
Registered: 2003-10-29
Posts: 7,879
Website

Re: 2 screens and tv-out

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

Board footer

Powered by FluxBB