Configuring TV-Out is different in Linux than Windows. There is no GUI to help the process. It isn't exactly complicated, but can be tricky your first time. Start by making a backup of your /etc/X11/xorg.conf in case anything goes wrong, you can easily restore a working configuration. You will need to add some stuff to this file.
Next download AND read the nvidia readme:
ftp://download.nvidia.com/XFree86/Li...629/README.txt
This file contains everything you need to know about configuring the nvidia drivers. Once you've finished editing your /etc/X11/xorg.conf you will have a [device] section that looks something like:
Code:
Section "Device"
Identifier "Videocard0"
Driver "nvidia"
VendorName "Asus"
BoardName "NVIDIA GeForce 4 Ti4200"
Option "NoLogo" "1"
Option "ConnectedMonitor" "CRT,TV"
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "NTSC-M"
Option "TwinView" "1"
Option "TwinViewOrientation" "Clone"
Option "MetaModes" "1024x768,1024x768; 800x600,800x600"
Option "SecondMonitorHorizSync" "30-50"
Option "SecondMonitorVertRefresh" "60"
EndSection
hth,
Jason