Ubuntu Installation Guide: Difference between revisions

From cchtml.com
No edit summary
m (Reverted edits by 67.192.109.172 (talk) to last revision by Mooninite)
 
(29 intermediate revisions by 21 users not shown)
Line 1: Line 1:
= Ubuntu 5.10 (Breezy Badger) =
#REDIRECT [[Ubuntu]]
 
== Method 1: Installing Breezy's Included Driver (8.16.20) ==
 
The fglrx driver supports Radeon 8500+ and the X-series cards (see [https://support.ati.com/ics/support/KBAnswer.asp?questionID=1176 release notes]).  When running the dpkg-reconfigure commands you can accept the defaults whenever you aren't sure.
 
=== Installing the driver ===
 
''All Platforms:''
<pre>
sudo apt-get install xorg-driver-fglrx
sudo apt-get install linux-restricted-modules-$(uname -r) #Okay if it is already installed
sudo dpkg-reconfigure xserver-xorg #Select the fglrx driver and 64-bit users should deselect int10a
</pre>
 
''64-bit users:''
 
You have to downgrade to an older version of libdri.a due to an incompatilbity with the ATI drivers.  [http://mail3.mpr.org/mlomker/libdri.a.gz Download it here]
 
Change to download directory:
<pre>
gunzip libdri.a.gz
sudo cp /usr/X11R6/lib/modules/extensions/libdri.a libdri.a.old
sudo cp libdri.a /usr/X11R6/lib/modules/extensions/
</pre>
 
If you wish to revert to any non-fglrx driver you will need to copy the libdri.a.old file back over the fglrx version.
 
''All platforms:'' Ctrl-Alt-Backspace to restart your desktop.
 
=== Confirm that it works ===
<pre>
$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: MOBILITY RADEON 9700 Generic
OpenGL version string: 1.3.5272 (X4.3.0-8.16.20)
</pre>
 
=== Troubleshooting ===
 
If you have a widescreen LCD display that is stuck at 1024x768 then it is probably the bug in the 8.16.20 driver that was fixed in 8.18.X (see the next section). 
 
The output of '''dmesg | grep fglrx''' and /var/log/Xorg.0.log are most useful when looking for errors.
 
== Method 2: Generating/Installing Ubuntu packages for the newer 8.23.7 drivers in Breezy Badger ==
 
'''Important Warning:''' Installation of this driver requires removing the restricted-modules package in order to work.  That package includes drivers for madwifi (Atheros wireless cards), nvidia cards, and a handful of other devices.  I provide a work-around for the madwifi drivers, but you need to perform it before removing the restricted modules (jump to end of this this post).
 
When running the dpkg-reconfigure command you should answer the questions that you know and take the defaults for the rest.  You might want to say ''no'' to the monitor detection--it has caused X-Windows to crash for some people.
 
=== Remove existing fglrx driver ===
 
Remove Breezy's included drivers if they are installed:
 
<pre>
sudo apt-get remove xorg-driver-fglrx
sudo apt-get remove fglrx-control
sudo apt-get remove linux-restricted-modules-$(uname -r)
sudo dpkg-reconfigure xserver-xorg #select the "ati" module
</pre>
 
Reboot.
 
=== Installing the new driver ===
 
Download the ATI driver installer: [https://support.ati.com/ics/support/default.asp?deptID=894&task=knowledge&folderID=27 Click here]
 
Change to the download directory.  Make sure that you have the ''universe'' and ''multiverse'' repositories enabled in ''/etc/apt/sources.list'' before doing these steps.  [http://mail3.mpr.org/mlomker/sources.list Sample sources.list].
 
''Install necessary tools:''
 
<pre>
sudo apt-get install gcc-3.4 module-assistant build-essential
sudo apt-get install fakeroot dh-make debconf libstdc++5 gcc-3.3-base
</pre>
 
''Create .deb packages:''
 
<pre>
chmod +x ati-driver-installer-8.23.7-i386.run
LANG=C LC_ALL=C ./ati-driver-installer-8.23.7-i386.run --buildpkg Ubuntu/breezy
</pre>
 
''Install .deb packages:''
 
<pre>
sudo dpkg -i xorg-driver-fglrx_8.23.7-1_i386.deb
sudo dpkg -i fglrx-control_8.23.7-1_i386.deb
sudo dpkg -i fglrx-kernel-source_8.23.7-1_i386.deb
</pre>
 
''Compile the kernel driver:''
 
Remove any old fglrx deb's from /usr/src/
 
<pre>
sudo rm /usr/src/fglrx-kernel*.deb
</pre>
 
<pre>
sudo module-assistant prepare
sudo module-assistant update
sudo module-assistant a-i fglrx
</pre>
 
''Update the xorg.conf file:''
 
<pre>
sudo aticonfig --initial
</pre>
 
Ctrl-Alt-Backspace to restart your session.
 
=== Confirm that it worked ===
 
<pre>
$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON 9700 Generic
OpenGL version string: 2.0.5695 (8.23.7)
</pre>
 
=== Troubleshooting ===
 
==== General ====
 
Look for error messages in /var/log/Xorg.0.log and kern.log.
 
==== Madwifi Drivers in Breezy Badger ====
In order to continue using the [http://madwifi.org madwifi] driver you can do the following '''before''' removing the linux-restricted-modules package and rebooting.
<pre>
sudo cp /lib/modules/$(uname -r)/volatile/ath_hal.ko /lib/modules/$(uname -r)/kernel/
sudo depmod -a $(uname -r)
</pre>
 
= Ubuntu 6.04 (Dapper Drake) =
 
== Method 1: Installing Dapper's Included Driver (8.22.5) ==
 
The fglrx driver supports Radeon 8500+ and the X-series cards. When running the dpkg-reconfigure commands you can accept the defaults whenever you aren't sure.
 
=== Installing the driver ===
 
<pre>
sudo apt-get install xorg-driver-fglrx
sudo apt-get install linux-restricted-modules-$(uname -r) #Okay if it is already installed
sudo dpkg-reconfigure xserver-xorg #Select the fglrx driver and 64-bit users should deselect int10a
</pre>
 
Ctrl-Alt-Backspace to restart your desktop.
 
=== Confirm that it works ===
<pre>
$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON 9700 Generic
OpenGL version string: 2.0.5642 (8.22.5)
</pre>
 
=== Troubleshooting ===
 
The output of '''dmesg | grep fglrx''' and /var/log/Xorg.0.log are most useful when looking for errors.
 
== Method 2: Generating/Installing Ubuntu packages for the newer 8.23.7 drivers in Ubuntu Dapper ==
 
'''Important Change:''' Installation of this driver '''no longer requires''' removing the linux-restricted-modules package in order to work.  There is a new blacklist feature in Ubuntu Dapper that you can use to go around this.
 
When running the dpkg-reconfigure command you should answer the questions that you know and take the defaults for the rest.  You might want to say ''no'' to the monitor detection--it has caused X-Windows to crash for some people.
 
=== Remove existing fglrx driver ===
 
Enable a blacklist for linux-restricted-modules
 
<pre>
sudo gedit /etc/default/linux-restricted-modules-common
</pre>
 
Edit DISABLED_MODULES to include fglrx
 
 
Remove Dapper's included drivers if they are installed:
 
<pre>
sudo apt-get remove xorg-driver-fglrx
sudo apt-get remove fglrx-control
sudo dpkg-reconfigure xserver-xorg #select the "ati" module
</pre>
 
Reboot.
 
=== Installing the new driver ===
 
Download the ATI driver installer: [https://support.ati.com/ics/support/default.asp?deptID=894&task=knowledge&folderID=27 Click here]
 
Change to the download directory.  Make sure that you have the ''universe'' and ''multiverse'' repositories enabled in ''/etc/apt/sources.list'' before doing these steps.
 
''Install necessary tools:''
 
<pre>
sudo apt-get install module-assistant build-essential
sudo apt-get install fakeroot dh-make debconf libstdc++5 gcc-3.3-base
</pre>
 
''Create .deb packages:''
 
<pre>
chmod +x ati-driver-installer-8.23.7-i386.run
LANG=C LC_ALL=C ./ati-driver-installer-8.23.7-i386.run --buildpkg Ubuntu/dapper
</pre>
 
''Install .deb packages:''
 
<pre>
sudo dpkg -i xorg-driver-fglrx_8.23.7-1_i386.deb
sudo dpkg -i fglrx-control_8.23.7-1_i386.deb
sudo dpkg -i fglrx-kernel-source_8.23.7-1_i386.deb
</pre>
 
''Compile the kernel driver:''
 
Remove any old fglrx deb's from /usr/src/
 
<pre>
sudo rm /usr/src/fglrx-kernel*.deb
</pre>
 
<pre>
sudo module-assistant prepare
sudo module-assistant update
sudo module-assistant a-i fglrx
</pre>
 
''Update the xorg.conf file:''
 
<pre>
sudo aticonfig --initial
</pre>
 
Ctrl-Alt-Backspace to restart your session.
 
=== Confirm that it worked ===
 
<pre>
$ fglrxinfo
display: :0.0  screen: 0
OpenGL vendor string: ATI Technologies Inc.
OpenGL renderer string: RADEON 9700 Generic
OpenGL version string: 2.0.5695 (8.23.7)
</pre>
 
=== Troubleshooting ===
 
==== General ====
 
Look for error messages in /var/log/Xorg.0.log and kern.log.
 
[[Category:Installation Documentation]]

Latest revision as of 05:35, 23 August 2011

Redirect to: