
Originally Posted by
CyberCod
So.
Someone.
Please.
Re-write this.
(soon?)
Right. For edgy, it's just a little bit of the original post, and a little bit of PooBaa's post. Once you've got the driver installed, the original howto is all you need.
install driver
- install packages
HTML Code:
sudo apt-get install build-essential libdrm-dev mesa-common-dev \
render-dev x11proto-core-dev x11proto-fonts-dev x11proto-gl-dev \
x11proto-randr-dev x11proto-video-dev x11proto-xext-dev \
x11proto-xf86dri-dev x11proto-xf86misc-dev x11proto-xinerama-dev \
xserver-xorg-dev pkg-config
- get the driver
HTML Code:
mkdir ~/ati
cd ~/ati
wget http://megahurts.dk/rune/stuff/xorg7.1-6.6.3-tv_output.patch.gz
wget http://xorg.freedesktop.org/releases/individual/driver/xf86-video-ati-6.6.3.tar.bz2
- patch the driver
HTML Code:
tar xjvf xf86-video-ati-6.6.3.tar.bz2
gunzip -c xorg7.1-6.6.3-tv_output.patch.gz | patch -p1 -d xf86-video-ati-6.6.3
- configure, build and install the driver
HTML Code:
cd xf86-video-ati-6.6.3
export XORG_PREFIX="/usr"
export XORG_CONFIG="--prefix=$XORG_PREFIX --sysconfdir=/etc --localstatedir=/var"
./configure $XORG_CONFIG --with-xorg-module-dir=$XORG_PREFIX/lib/xorg/modules
make
sudo make install
tweak xorg.conf
add the bits in bold
Code:
Section "Device"
Identifier "ATI Technologies, Inc. Radeon RV100 QY [Radeon 7000/VE]"
Driver "ati"
BusID "PCI:1:0:0"
Option "TVOutput" "NTSC"
EndSection
Code:
Section "Monitor"
Identifier "SyncMaster"
HorizSync 30 - 50
VertRefresh 60 - 60
Option "DPMS"
EndSection
Code:
Section "Screen"
Identifier "Default Screen"
Device "ATI Technologies, Inc. Radeon RV100 QY [Radeon 7000/VE]"
Monitor "SyncMaster"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "800x600"
EndSubSection
EndSection
if you want explanations about why you do any of this, read the original howto. it really is quite good.
update, 13 august 2007, for 7.04 support
- add "pkg-config" to the long list of packages to install
- make sure the Driver is "ati" and not "vesa" in xorg.conf. i've bolded it to make sure you don't miss it.
everything else seems to be okay.
Bookmarks