<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.cchtml.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=99.224.56.88</id>
	<title>cchtml.com - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.cchtml.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=99.224.56.88"/>
	<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Special:Contributions/99.224.56.88"/>
	<updated>2026-05-14T22:06:39Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://wiki.cchtml.com/index.php?title=TV_Out&amp;diff=3862</id>
		<title>TV Out</title>
		<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=TV_Out&amp;diff=3862"/>
		<updated>2008-08-06T23:50:06Z</updated>

		<summary type="html">&lt;p&gt;99.224.56.88: /* Download Prerequisites */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If you are having trouble getting TV-Out functionality on a Radeon graphics card below Radeon 9500, the following instructions may help you. This method patches the open Xorg open source drivers with a tv-out patch from the GATOS project. These instructions have only been tested with [[Ubuntu]] Edgy.&lt;br /&gt;
&lt;br /&gt;
Try these instructions if installing the proprietary drivers gives you a &lt;br /&gt;
&amp;quot;high gamma&amp;quot; or &amp;quot;washed out&amp;quot; looking screen whenever the TV jack on card&lt;br /&gt;
is in use at boot-time, or if your card is a Radeon with TV-Out that is not supported at all by the proprietary ATI drivers (fglrx).  &lt;br /&gt;
&lt;br /&gt;
==Pre-Installation==&lt;br /&gt;
===Download Prerequisites===&lt;br /&gt;
First, install driver and other needed packages.&lt;br /&gt;
Copy/enter the following into the terminal.&lt;br /&gt;
&lt;br /&gt;
   sudo apt-get install build-essential libdrm-dev mesa-common-dev \&lt;br /&gt;
   x11proto-render-dev x11proto-core-dev x11proto-fonts-dev x11proto-gl-dev \&lt;br /&gt;
   x11proto-randr-dev x11proto-video-dev x11proto-xext-dev \&lt;br /&gt;
   x11proto-xf86dri-dev x11proto-xf86misc-dev x11proto-xinerama-dev \&lt;br /&gt;
   xserver-xorg-dev pkg-config&lt;br /&gt;
&lt;br /&gt;
===Patching===&lt;br /&gt;
Second, use wget in terminal to download the driver and patch&lt;br /&gt;
&lt;br /&gt;
     mkdir ~/ati; cd ~/ati &lt;br /&gt;
     wget http://megahurts.dk/rune/stuff/xorg7.1-6.6.3-tv_output.patch.gz  &lt;br /&gt;
     wget http://xorg.freedesktop.org/releases/individual/driver/xf86-video-ati-6.6.3.tar.bz2&lt;br /&gt;
*Note the above command is very wide, make sure you copy it all.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Next, patch the driver&lt;br /&gt;
&lt;br /&gt;
     tar xjvf xf86-video-ati-6.6.3.tar.bz2 &lt;br /&gt;
     gunzip -c xorg7.1-6.6.3-tv_output.patch.gz | patch -p1 -d xf86-video-ati-6.6.3&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
===Building===&lt;br /&gt;
Next, configure, build and install the driver&lt;br /&gt;
&lt;br /&gt;
  cd xf86-video-ati-6.6.3&lt;br /&gt;
  export XORG_PREFIX=&amp;quot;/usr&amp;quot;&lt;br /&gt;
  export XORG_CONFIG=&amp;quot;--prefix=$XORG_PREFIX --sysconfdir=/etc --localstatedir=/var&amp;quot;&lt;br /&gt;
  ./configure $XORG_CONFIG --with-xorg-module-dir=$XORG_PREFIX/lib/xorg/modules&lt;br /&gt;
  make&lt;br /&gt;
  sudo make install&lt;br /&gt;
&lt;br /&gt;
*Note, using &amp;quot;sudo&amp;quot; will cause the terminal to ask for your password.&lt;br /&gt;
&lt;br /&gt;
===Configuration===&lt;br /&gt;
Lastly, tweak xorg.conf by entering &lt;br /&gt;
&lt;br /&gt;
     sudo gedit /etc/X11/xorg.conf&lt;br /&gt;
&lt;br /&gt;
and editing it with the following changes, note the specified lines:&lt;br /&gt;
&lt;br /&gt;
  Section &amp;quot;Device&amp;quot;&lt;br /&gt;
     Identifier &amp;quot;&amp;lt;YOUR CARD NAME HERE&amp;gt;&amp;quot;&lt;br /&gt;
     Driver &amp;quot;ati&amp;quot;                #&amp;lt;---------Important line here&lt;br /&gt;
     BusID &amp;quot;PCI:1:0:0&amp;quot; &lt;br /&gt;
     Option &amp;quot;TVOutput&amp;quot; &amp;quot;NTSC&amp;quot;    #&amp;lt;---------Important line here&lt;br /&gt;
  EndSection&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  Section &amp;quot;Monitor&amp;quot; &lt;br /&gt;
     Identifier &amp;quot;SyncMaster&amp;quot; &lt;br /&gt;
     HorizSync 30 - 50           #&amp;lt;---------Important line here&lt;br /&gt;
     VertRefresh 60 - 60         #&amp;lt;---------Important line here&lt;br /&gt;
     Option &amp;quot;DPMS&amp;quot; &lt;br /&gt;
  EndSection&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
  Section &amp;quot;Screen&amp;quot; &lt;br /&gt;
     Identifier &amp;quot;Default Screen&amp;quot; &lt;br /&gt;
     Device &amp;quot;&amp;lt;YOUR CARD NAME HERE&amp;gt;&amp;quot; &lt;br /&gt;
     Monitor &amp;quot;SyncMaster&amp;quot; &lt;br /&gt;
     DefaultDepth 24             #&amp;lt;---------Important line here&lt;br /&gt;
     SubSection &amp;quot;Display&amp;quot;        #&amp;lt;---------Important line here&lt;br /&gt;
          Depth 24               #&amp;lt;---------Important line here&lt;br /&gt;
          Modes &amp;quot;800x600&amp;quot;        #&amp;lt;---------Important line here&lt;br /&gt;
     EndSubSection               #&amp;lt;---------Important line here&lt;br /&gt;
  EndSection&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After this point, check for any typos, and save the file.&lt;br /&gt;
&lt;br /&gt;
Then press CTRL+ALT+Backspace to restart X.  If all went well, you should come back up to the login screen and your TV-out should be working fine.  If its not up at this point, but you do come back up to a login screen, try rebooting with the tv cable plugged in.&lt;br /&gt;
&lt;br /&gt;
==Utilities==&lt;br /&gt;
&lt;br /&gt;
There is a utility called tvo_set which allows you to tweak the tv out options.  It requires more headers:&lt;br /&gt;
&lt;br /&gt;
  sudo apt-get install libxv-dev&lt;br /&gt;
&lt;br /&gt;
Now head back into the source directory:&lt;br /&gt;
&lt;br /&gt;
  cd ~/ati/xf86-video-ati-6.6.3/src/tvo_set/&lt;br /&gt;
&lt;br /&gt;
  xmkmf&lt;br /&gt;
  make&lt;br /&gt;
  sudo make install&lt;br /&gt;
&lt;br /&gt;
The readme for tvo_set can be found in:&lt;br /&gt;
&lt;br /&gt;
  ~/ati/xf86-video-ati-6.6.3/src/README.tvout&lt;br /&gt;
&lt;br /&gt;
==See Also==&lt;br /&gt;
Thanks goes out to dlg from the [http://ubuntuforums.org/showthread.php?t=215763&amp;amp;page=4#post2042849 ubuntu forums].  Any problems or requests for modification should be directed to that thread.  Credit for the tvo_set utility info goes to sebos69 from the [http://ubuntuforums.org/showpost.php?p=2428421&amp;amp;postcount=53 Ubuntu forums].&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
*Note, the cable to your TV should be plugged in when you boot up the PC.&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
[[Category:FeatureUseCase]]&lt;/div&gt;</summary>
		<author><name>99.224.56.88</name></author>
	</entry>
</feed>