Ubuntu nvidia TV out
on Ubuntu, Nvidia, Linux
Enabling tv out on an nvidia graphics card by editing xorg.conf
Backup xorg.conf
sudo cp /etx/X11/xorg.conf /var/backups/xorg.conf.orig
Add to Device section of xorg.conf
Option "TVOutFormat" "SVIDEO" Option "TVStandard" "PAL-BG"
Restart gdm
sudo service gdm restart
Full xorg.conf ubuntu 10.10
Section "Screen"
Identifier "Default Screen"
DefaultDepth 24
EndSection
Section "Module"
Load "glx"
EndSection
Section "Device"
Identifier "Default Device"
Driver "nvidia"
Option "NoLogo" "True"
Option "TwinView"
Option "TwinViewOrientation" "Clone"
Option "TVOutFormat" "SVIDEO"
Option "TVStandard" "PAL-BG"
EndSection