<?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=213.144.132.98</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=213.144.132.98"/>
	<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Special:Contributions/213.144.132.98"/>
	<updated>2026-04-30T11:24:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>http://wiki.cchtml.com/index.php?title=Ubuntu_Dapper_Installation_Guide&amp;diff=8887</id>
		<title>Ubuntu Dapper Installation Guide</title>
		<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Ubuntu_Dapper_Installation_Guide&amp;diff=8887"/>
		<updated>2012-08-06T21:08:39Z</updated>

		<summary type="html">&lt;p&gt;213.144.132.98: /* Method 1: Installing Dapper&amp;#039;s Included Driver (8.25.18) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;NOTE:&#039;&#039;&#039; This guide is &#039;&#039;&#039;only&#039;&#039;&#039; for Ubuntu 6.06 (Dapper)! Guides for other versions of Ubuntu can be found at the [[Ubuntu]] page.&lt;br /&gt;
&lt;br /&gt;
In Ubuntu Dapper you can choose between two methods of installing the proprietary ATI driver. If you are new to linux you should use the first method as it is a lot easier than the second one and will work well in most cases. The second method describes how to install the very latest driver version, but requires some additional work and knowledge.&lt;br /&gt;
 Hello! kdkcegf interesting kdkcegf site! I&#039;m really like it! Very, very kdkcegf good!&lt;br /&gt;
&lt;br /&gt;
== Post-Installation Checks ==&lt;br /&gt;
===Verifying===&lt;br /&gt;
Run the following command to check its output to ensure the fglrx driver is installed properly:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$fglrxinfo&lt;br /&gt;
display: :0.0  screen: 0&lt;br /&gt;
OpenGL vendor string: ATI Technologies Inc.&lt;br /&gt;
OpenGL renderer string: MOBILITY RADEON 9700 Generic&lt;br /&gt;
OpenGL version string: 2.0.6286 (8.33.6)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
$ glxinfo | grep render&lt;br /&gt;
direct rendering: Yes&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your direct rendering is disabled then you may have to ensure &#039;&#039;&#039;fglrx_dri.so&#039;&#039;&#039; is where it should be. Try to symblink the &#039;&#039;&#039;dri&#039;&#039;&#039; folder if you get no direct rendering:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo mkdir /usr/X11R6/lib/modules&lt;br /&gt;
sudo ln -s /usr/lib/dri /usr/X11R6/lib/modules/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Troubleshooting for Method 2===&lt;br /&gt;
&lt;br /&gt;
==== Problems with module-assistant ====&lt;br /&gt;
&lt;br /&gt;
If module-assistant is unable to build the module you may have to provide a Makefile.cpu file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
cd /usr/src&lt;br /&gt;
sudo touch kernel-headers-(version)/arch/i386/Makefile.cpu&lt;br /&gt;
cd /usr/src/linux&lt;br /&gt;
sudo make scripts/&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
With recent fglrx, the &amp;lt;tt&amp;gt;make.sh&amp;lt;/tt&amp;gt; in &amp;lt;tt&amp;gt;/usr/src/fglrx.tar.bz2&amp;lt;/tt&amp;gt; (installed by the fglrx-kernel-source package) is not executable.  You may need the following in order to make module-assistant happy:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
mkdir /tmp/scratch&lt;br /&gt;
pushd /tmp/scratch&lt;br /&gt;
tar xjf /usr/src/fglrx.tar.bz2&lt;br /&gt;
chmod +x modules/fglrx/make.sh&lt;br /&gt;
sudo tar cjf /usr/src/fglrx.tar.bz2 modules&lt;br /&gt;
popd&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If installing over a custom-built kernel (for example 2.6.18), the procedure above may need to be modified slightly, especially if you didn&#039;t use &amp;lt;tt&amp;gt;make-kpkg&amp;lt;/tt&amp;gt; to install your kernel:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# sudo module-assistant prepare # no ubuntu package for 2.6.18&lt;br /&gt;
sudo module-assistant update&lt;br /&gt;
sudo module-assistant build -k path/to/my/kernel/sources fglrx&lt;br /&gt;
sudo module-assistant install -k path/to/my/kernel/sources fglrx&lt;br /&gt;
sudo depmod -a&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== xorg.conf ====&lt;br /&gt;
&lt;br /&gt;
The &#039;&#039;&#039;aticonfig --initial&#039;&#039;&#039; command will not update the xorg.conf file if it already has a &amp;quot;fglrx&amp;quot; Device section.&lt;br /&gt;
However, you may force aticonfig to generate default Monitor, Device, and Screen sections with the following command:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo aticonfig --force --initial&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Missing fglrx.ko ====&lt;br /&gt;
&lt;br /&gt;
If &#039;&#039;&#039;fglrx.ko&#039;&#039;&#039; is not being loaded properly, then &amp;lt;tt&amp;gt;/var/log/Xorg.0.log&amp;lt;/tt&amp;gt; will say things like :&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
[drm] failed to load kernel module &amp;quot;fglrx&amp;quot;&lt;br /&gt;
(WW) fglrx(0): Failed to load DRM connection&lt;br /&gt;
(EE) GART is not initialized, disabling DRI&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;modprobe&amp;lt;/tt&amp;gt; shows the problem is &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo modprobe fglrx&lt;br /&gt;
FATAL: Could not open &#039;/lib/modules/2.6.15-26-386/volatile/fglrx.ko&#039;: No such file or directory&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You could copy &amp;lt;tt&amp;gt;/lib/modules/2.6.15-26-386/misc/fglrx.ko&amp;lt;/tt&amp;gt; into the volatile directory, then restart GDM, but you lose it again at the next re-boot. &lt;br /&gt;
&lt;br /&gt;
The solution is to run &amp;lt;tt&amp;gt;depmod&amp;lt;/tt&amp;gt; again with the &amp;lt;tt&amp;gt;-e&amp;lt;/tt&amp;gt; option.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo depmod -ae&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then re-boot. &lt;br /&gt;
&lt;br /&gt;
==== Upgrade from Breezy ====&lt;br /&gt;
If method 2 doesn&#039;t work first time round, and you have upgraded from a Breezy installation, try this:&lt;br /&gt;
&lt;br /&gt;
Remove previous versions of the fglrx driver:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dpkg -r fglrx-control&lt;br /&gt;
sudo dpkg -r fglrx-kernel-source&lt;br /&gt;
sudo dpkg -r xorg-driver-fglrx&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
dpkg will list dependencies for xorg-driver-fglrx which will need up be removed, for example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo dpkg -r fglrx-kernel&lt;br /&gt;
sudo dpkg -r fglrx-kernel-2.6.12-10-686-smp&lt;br /&gt;
sudo dpkg -r xorg-driver-fglrx&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Proceed with method 2&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting for both Methods ==&lt;br /&gt;
&lt;br /&gt;
=== General ===&lt;br /&gt;
&lt;br /&gt;
The output of &#039;&#039;&#039;dmesg | grep fglrx&#039;&#039;&#039; and /var/log/Xorg.0.log are most useful when looking for errors.&lt;br /&gt;
&lt;br /&gt;
Also, &#039;&#039;&#039;LIBGL_DEBUG=verbose glxinfo&#039;&#039;&#039; can display missing files you can &#039;fix&#039; by linking directories.&lt;br /&gt;
&lt;br /&gt;
=== 2D speed ===&lt;br /&gt;
&lt;br /&gt;
If you suffer from slow 2D speed it might help to set&lt;br /&gt;
 Option		&amp;quot;XaaNoOffscreenPixmaps&amp;quot;&lt;br /&gt;
in the fglrx section of &#039;&#039;/etc/X11/xorg.conf&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Black Screen when supposed to see login screen ===&lt;br /&gt;
&lt;br /&gt;
Try adding&lt;br /&gt;
 Option      &amp;quot;BusType&amp;quot; &amp;quot;PCI&amp;quot;&lt;br /&gt;
in the fglrx section of &#039;&#039;/etc/X11/xorg.conf&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Is the rebooting really necessary? ===&lt;br /&gt;
&lt;br /&gt;
No.&lt;br /&gt;
&lt;br /&gt;
However, rebooting is the easiest method to ensure that the kernel module(s) from the old driver are unloaded and the fglrx module is loaded instead. If you don&#039;t want to reboot for some reason, you may manually shut down Xorg, unload any old &amp;quot;drm&amp;quot;, &amp;quot;radeon&amp;quot; or &amp;quot;fglrx&amp;quot; modules and then start Xorg again.&lt;br /&gt;
&lt;br /&gt;
Note: You may also having to rebuild your module dependency by using &amp;quot;depmod -a&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
=== HP Notebook dv5029us / dv5040us / zv6000 / dv8000 / nw8440 ===&lt;br /&gt;
&lt;br /&gt;
If you have an HP Notebook Computer (or Compaq) such as the HP dv5029us, dv5040us or zv6000 series, it is needed to modify the BIOS configuration. It seems for some reason using sideport memory (the card&#039;s onboard memory only) leads to an apparent system crash although the logs show successful initialization of DRI. It is needed to run the BIOS setup screen, go to memory options, and select UMA+Sideport memory and assign a value to it (I assigned an extra 128M from the system RAM). Boot the computer and the fglrx driver will work. FGLRX version is 8.24.8 on an i386 Ubuntu Dapper install. &#039;&#039;&#039;NEW&#039;&#039;&#039;: ATI has fixed this problem with their latest drivers - there is no longer a need to use the old 8.24.8 drivers, nor is there need to use the extra 128M of system RAM.  Just install the latest drivers -- it worked for me when nothing else did.&lt;br /&gt;
&lt;br /&gt;
* Ubuntu FGLRX drivers 8.25.18, do not work properly on the dv5029us (Radeon Xpress 200M) as of this writing (5/30/2006). It is needed to revert to 8.24.8 for this specific computer in order to get proper 3D acceleration, and 2D with no tearing off.&lt;br /&gt;
&lt;br /&gt;
** ATI Driver 8.26.18, does not work with the Radeon Express 200M. Some HP/Compaq laptops only have working 3D support with ONLY UMA video memory( Sideport+UMA won&#039;t work ). This is due to a 1 year old flaw in the ATI driver. If you want to use your onboard/Sideport memory, you can only get 2D support by adding [ Option &amp;quot;no_dri&amp;quot; &amp;quot;yes&amp;quot;] to the fglrx driver section of /etc/X11/xorg.conf&lt;br /&gt;
&lt;br /&gt;
* jul-22-2006, marciowb wrote: I have a HP Pavilion zv6000 - a notebook computer with AMD64 - and it have a ATI Radeon Xpress 200M with 128MB of dedicated memory (Sideport) and it accepts to use shared memory (UMA), also. But if I try to use Sideport or Sideport+UMA the 3D acceleration fails and/or my computer hangs. It works fine if I configure its BIOS to use only UMA, including with a good 3D acceleration performance. Configured to use only UMA it works with the ATI Driver 8.26.18 and 8.25.18, but I was unable to do it works the ATI Driver 8.24.8. I tried several times to use 8.24.8 but it doesn&#039;t seem to work with 3D acceleration, only 2D. I see the Xorg.log file the fglrx driver fails to load the DRI driver. I used the Kubuntu with the Linux kernel 2.6.15-26-amd64-generic.&lt;br /&gt;
&lt;br /&gt;
* aug-7-2006, mde wrote: I have an HP dv8120ca / dv8000 laptop with a Radeon Xpress 200M.  After installing the 8.27.10 driver, no matter what I set the bios to (128 UMA+Sideport or just Sideport, UMA Only is not an option in my bios), I get the black screen/99% cpu usage problem.  &#039;&#039;&#039;NEW&#039;&#039;&#039;: ATI has fixed this problem with their latest drivers!  I just installed their latest driver, and everything works perfectly.  No need to do anything funny with the BIOS -- you can use sideport only or whatever.  Good news :)  Thank you AMD/ATI for responding to our requests to fix this problem!&lt;br /&gt;
&lt;br /&gt;
* sep-12-2006, tekNico wrote: on an HP dv5008EA with the 200M adapter, DRI works with the 8.24.8 driver, and setting the BIOS to Sideport+UMA to 128MB video memory. The 8.28.8 breaks some on-screen widgets.&lt;br /&gt;
&lt;br /&gt;
* Sep-27-2006: HP Pavilion dv8000 (Radeon Xpress 200M). Turned off Sideport and installed the driver from the repositories, ver 8.25.18. The computer started up fine, but was extremely unstable and crashed in about 5 minutes of work. Same thing with driver ver 8.29.6. At the end I installed ver 8.24.8 and that seemed to work well.&lt;br /&gt;
&lt;br /&gt;
* Oct-17-2006: webbertiger wrote: on my HP Pavilion dv8309us with Radeon Xpress 200M and AMD64 cpu, the driver (ati-driver-installer-8.29.6.run) downloaded from [ATI website[https://a248.e.akamai.net/f/674/9206/0/www2.ati.com/drivers/linux/64bit/ati-driver-installer-8.29.6.run]] works fine. I also manually added &amp;quot;1440x900&amp;quot; in xorg.conf to get the wide screen.  [Can you confirm that dri (direct rendering also works fine?)  glxgears should run with a high (over 1000fps) frame rate?]&lt;br /&gt;
&lt;br /&gt;
* Oct-30-2006: on my hp nw8440 i had to disable the composite extension to get full 3D accelleration ( chipset: ati V5200, driver ati 8.29.6 )&lt;br /&gt;
        Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
               Option &amp;quot;Composite&amp;quot; &amp;quot;false&amp;quot;&lt;br /&gt;
        EndSection&lt;br /&gt;
&lt;br /&gt;
=== HP zt3000 / Compaq nx7000 ===&lt;br /&gt;
Beginning with ATI driver version 8.19, the drivers fail to properly detect modelines that are compatible with the LCD screen of the HP zt3000 (and equivalent Compaq nx7000 model), and they must be inserted into xorg.conf manually.  For the 1680x1050 LCD screen, inserting the following modelines into the &amp;quot;Monitor&amp;quot; section works:&lt;br /&gt;
        Modeline &amp;quot;640x350&amp;quot;  119.12  640 1728 1760 1840  350 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;640x400&amp;quot;  119.12  640 1728 1760 1840  400 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;720x400&amp;quot;  119.12  720 1728 1760 1840  400 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;640x480&amp;quot;  119.12  640 1728 1760 1840  480 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;800x600&amp;quot;  119.12  800 1728 1760 1840  600 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1024x768&amp;quot;  119.12  1024 1728 1760 1840  768 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1152x864&amp;quot;  119.12  1152 1728 1760 1840  864 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1280x960&amp;quot;  119.12  1280 1728 1760 1840  960 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1280x1024&amp;quot;  119.12  1280 1728 1760 1840  1024 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;832x624&amp;quot;  119.12  832 1728 1760 1840  624 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1280x768&amp;quot;  119.12  1280 1728 1760 1840  768 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1280x800&amp;quot;  119.12  1280 1728 1760 1840  800 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1152x768&amp;quot;  119.12  1152 1728 1760 1840  768 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1400x1050&amp;quot;  119.12  1400 1728 1760 1840  1050 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1440x900&amp;quot;  119.12  1440 1728 1760 1840  900 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1600x1024&amp;quot;  119.12  1600 1728 1760 1840  1024 1052 1058 1080&lt;br /&gt;
        Modeline &amp;quot;1680x1050&amp;quot;  119.12  1680 1728 1760 1840  1050 1052 1058 1080&lt;br /&gt;
&lt;br /&gt;
If you have the &amp;quot;1920x1200&amp;quot; version of the HP zt3000 the Modeline is:&lt;br /&gt;
        Modeline &amp;quot;1920x1200&amp;quot; 150.75 1920 2016 2048 2185  1200 1202 1208 1235&lt;br /&gt;
&lt;br /&gt;
If you have the &amp;quot;1280x800&amp;quot; version of the HP zt3000 the Modeline should be:&lt;br /&gt;
        ModeLine     &amp;quot;1280x800&amp;quot; 69.8 1280 1336 1368 1440 800 802 808 823 -hsync -vsync&lt;br /&gt;
&lt;br /&gt;
        ** If the above ModeLine still makes the screen flicker (as it did in my zt3000) use the following ModeLine&lt;br /&gt;
        ModeLine     &amp;quot;1280x800&amp;quot; 70.875 1280 1336 1368 1440 800 802 808 823 -hsync +vsync &lt;br /&gt;
        ** Try this as well if the other two don&#039;t work.  Determined using powerstrip in windows.&lt;br /&gt;
        ModeLine     &amp;quot;1280x800&amp;quot; 68.625 1280 1336 1368 1440 800 802 808 823 -hsync -vsync&lt;br /&gt;
&lt;br /&gt;
If you have the compaq nx7010 with 1280x800 screen then the following modeline should work:&lt;br /&gt;
        Modeline &amp;quot;1280x800&amp;quot; 70.875 1280 1320 1352 1456 800 801 804 820 +hsync +vsync&lt;br /&gt;
        This was determined using powerstrip in windows.&lt;br /&gt;
&lt;br /&gt;
        ** If the above ModeLine still makes the screen flicker (as it did on my nx7010) use the following&lt;br /&gt;
        Modeline &amp;quot;1280x800&amp;quot; 68.625 1280 1304 1336 1408 800 804 808 816 +hsync +vsync&lt;br /&gt;
        This was determined using powerstrip in windows.&lt;br /&gt;
&lt;br /&gt;
When using a Compaq NX7010 (Radeon R250Lf Mobility M9) with 1650x1050 screen, powerstrip gives the following working params (CApiTAlisation important), just use one single ModeLine:&lt;br /&gt;
        ModeLine &amp;quot;1650x1050&amp;quot; 121.500 1680 1712 1800 1872 1050 1051 1054 1065 +Hsync +Vsync&lt;br /&gt;
On the Compaq NX7010, be sure to copy the 8.24.8 libGL.so.1.2 as in Troubleshooting for Method 1 above.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note: This line will also work on the Compaq X1000 series&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=== Revert to Xorg driver ===&lt;br /&gt;
&lt;br /&gt;
If (for any reason) the fglrx install fails, you can revert to the Xorg driver by executing&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo dpkg-reconfigure xserver-xorg&amp;lt;/pre&amp;gt;&lt;br /&gt;
and selecting the &amp;quot;ati&amp;quot; driver, or simply restoring the previous /etc/X11/xorg.conf file, if you made a backup. &lt;br /&gt;
&lt;br /&gt;
You also need to remove the xorg-driver-fglrx or your manually installed drivers to get the 3D acceleration back, since it is provided by file /usr/lib/libGL.so.1.2 which belongs to libgl1-mesa package and which is moved to backup and replaced at the installation of xorg-driver-fglrx (or the manually built) package. In case the removal of the fglrx drivers fails to restore the file from libgl1-mesa, you have to reinstall the package by running:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo apt-get install --reinstall libgl1-mesa&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Installation Documentation]]&lt;/div&gt;</summary>
		<author><name>213.144.132.98</name></author>
	</entry>
	<entry>
		<id>http://wiki.cchtml.com/index.php?title=Troubleshooting&amp;diff=8576</id>
		<title>Troubleshooting</title>
		<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Troubleshooting&amp;diff=8576"/>
		<updated>2012-05-31T22:49:55Z</updated>

		<summary type="html">&lt;p&gt;213.144.132.98: /* Installer Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Hello! kgdcake interesting kgdcake site! I&#039;m really like it! Very, very kgdcake good!&lt;br /&gt;
&lt;br /&gt;
==X Server Related Issues==&lt;br /&gt;
&lt;br /&gt;
=== No high-resolution video modes available ===&lt;br /&gt;
* Versions of the fglrx driver following 7.12 had problems with video resolutions higher than 1280 x 1024. The modes of the xorg.conf are simply ignored, and the server starts up e.g. with a resolution 1280 x 1024 (even if this resolution is not defined in xorg.conf). This is particularly a problem on LCD displays.&lt;br /&gt;
* [http://ati.cchtml.com/show_bug.cgi?id=160 This bug] documents the problem; it is &#039;&#039;&#039;fixed&#039;&#039;&#039; since driver version 8.2&lt;br /&gt;
* Looks like it reappeared again some version above ati-driver-installer-8-12-x86.x86_64.run . Version ati-driver-installer-9.2-x86.x86_64.run, and ati-driver-installer-9-4-x86.x86_64.run has this bug. At least on integrated HD3200 card.&lt;br /&gt;
&lt;br /&gt;
=== No XVideo support on 690G integrated graphic chipset ===&lt;br /&gt;
*Upgrade your BIOS if you get random flicker lines and black screen with a 690G chip.&lt;br /&gt;
*Motherboard using the 690G IGP chipset don&#039;t have XVideo support. When you execute the &amp;quot;xvinfo&amp;quot; command you get &amp;quot;no adaptors present&amp;quot;. This is the case by using the 8.39.4 FGLRX driver and whenever the &amp;quot;sudo aticonfig --overlay-type=Xv&amp;quot; command or the &amp;quot;sudo aticonfig --overlay-type=opengl&amp;quot; was used. ATI seem to know this as there list TVtime as an application unable to run on a 690G chip.&lt;br /&gt;
* XVideo works with 8-1 release (version 8.45.4).  You need to change the defaults in /etc/ati/amdpcsdb (created by amdcccle, loaded by X on start, and saved on exit). With X shutdown, set VideoOverlay=Son, OpenGLOverlay=Soff, and Textured2D=STrue. (Don&#039;t use aticonfig or xorg.conf to set these.  At this time, aticonfig and amdccle don&#039;t change these settings, and /etc/ati/amdpcsdb seems to override xorg.conf) (Verified on Asus M2A-VM with BIOS 1501)&lt;br /&gt;
* With 8-3 release (8.47.1), to get XVideo working I added &#039;&#039;Option &amp;quot;TexturedVideo&amp;quot; &amp;quot;true&amp;quot;&#039;&#039; to the xorg.conf file. It wasn&#039;t necessary to edit the /etc/ati/amdpcsdb file as described in the paragraph above; the open GL overlay can be active and it will still work.&lt;br /&gt;
&lt;br /&gt;
=== System lockup on logout or switch to virtual consoles ===&lt;br /&gt;
&lt;br /&gt;
If your system locks up after you logout or when you try to switch to a virtual console, this might be an instance of [http://ati.cchtml.com/show_bug.cgi?id=330 this bug]. It is likely that the problem only occurs for users with an &#039;&#039;&#039;Xorg version of at least 7.0&#039;&#039;&#039;. Probably it only affects users of &#039;&#039;&#039;DVI&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
There is a workaround: Use a standard D-Sub VGA connector instead of the DVI connector.&lt;br /&gt;
&lt;br /&gt;
This workaround was posted as a comment to another related bug: see [http://ati.cchtml.com/show_bug.cgi?id=239#c48 here].&lt;br /&gt;
---------&lt;br /&gt;
Unfortunately &amp;quot;D-sub&amp;quot; users (like me) have the same problem.&lt;br /&gt;
&lt;br /&gt;
=== BigDesktop (Dual screen) doesn&#039;t work after GDM login screen ===&lt;br /&gt;
&lt;br /&gt;
This can occur on Ubuntu Feisty Fawn &amp;amp; Gutsy.&lt;br /&gt;
&lt;br /&gt;
System &amp;gt; Prefrences &amp;gt; Screen Resolution&lt;br /&gt;
&lt;br /&gt;
Select the resolution that is a combination of both screen resolutions wide and your height.&lt;br /&gt;
&lt;br /&gt;
If X crashes during login, go to a virtual console using Ctrl+Alt+F1, log in, &amp;lt;code&amp;gt;sudo vim /etc/X11/xorg.conf&amp;lt;/code&amp;gt;, and comment out the line which looks like the following:&lt;br /&gt;
{{Box File|/etc/X11/xorg.conf|&lt;br /&gt;
&amp;lt;pre&amp;gt;  Option  &amp;quot;DesktopSetup&amp;quot;  &amp;quot;something&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== Computer Freezes while using fglrx (UMA and SIDEPORT)  ===&lt;br /&gt;
If after choosing fglrx as your driver in either xorg.conf or xfree86.conf files, the computer freezes and becomes unresponsive while trying to start X this may be the solution.&lt;br /&gt;
&lt;br /&gt;
Some ATI cards have the ability to run in three modes: UMA, SIDEPORT, or a combination of both. UMA mode is that one in which the video card does not use its dedicated memory, but rather uses and shares the system memory. On the other hand, SIDEPORT mode is the one in which the card uses its own dedicated memory. And finally, the third mode is a combination of the previous modes in which the card uses both the system memory and its dedicated memory.&lt;br /&gt;
&lt;br /&gt;
If your computer hangs, this settings may be where the solution lies. If your computer hangs, try using either UMA by itself or a combination of both. However, if you choose the combination, make sure that the UMA one is at least 128MB. In my case, I have SIDEPORT 128MB and 128MB UMA. If I choose any less for UMA, it does not work. This is definetly not an attractive solution since it compromises your systems performance. Hopefully, this will be solved very soon.&lt;br /&gt;
&lt;br /&gt;
On some systems, the BIOS screen may not offer a choice of UMA or SIDEPORT.  In this case, you can try turning the amount of RAM dedicated to the video card down, from 128Mb to 64Mb for example.&lt;br /&gt;
&lt;br /&gt;
On some ACER laptops (at least the TimelineX), this means that you need to set display adapter mode to DISCRETE in BIOS.&lt;br /&gt;
&lt;br /&gt;
=== Graphical Anomalies ===&lt;br /&gt;
&lt;br /&gt;
This was experienced with an ATI Radeon X1600 Pro 512mb:&lt;br /&gt;
&lt;br /&gt;
After following instructions for both Method 1 and Method 2, whenever the Composite Extension is disabled, the display would be almost unusable, but the fglrxinfo command would display the correct information.  If the Composite Extension is re-enabled the display would be usable, but fglrxinfo would report using mesa drivers.&lt;br /&gt;
&lt;br /&gt;
To resolve the problem it maybe needed to lower the AGP Aperture setting in my BIOS to 128mb (or lower worked too).  The AGP Aperture was initially set to 256mb. After setting the AGP Aperture to 128mb, everything worked perfectly; the Composite Extension is disabled, fglrxinfo reports the correct drivers, and direct rendering is enabled. Some systems may require setting the AGP Aperture to the highest setting (256mb or 512mb).&lt;br /&gt;
&lt;br /&gt;
There&#039;s been a bug report regarding [https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/150627 anomalies in Firefox] as well.&lt;br /&gt;
&lt;br /&gt;
=== OpenGL framebuffer Corruption ===&lt;br /&gt;
&lt;br /&gt;
This problem has been experienced on Thinkpads (T60p) with an ATI MOBILITY FireGL V5250 running driver versions 7.12, 8.01 and 8.02. Whenever any OpenGL application is rendered, the rendered output appears &amp;quot;scrambled&amp;quot; and unreadable. This problem is not very well documented and both glxgears and fgl_glxgears display this anomaly when testing.&lt;br /&gt;
&lt;br /&gt;
When Anti-Aliasing is forced, the problem resides.&lt;br /&gt;
&lt;br /&gt;
A solution (tested with 8.02 on Ubuntu Gutsy) to this problem is to open the ATI/AMD Catalyst Control Center and expand the item labeled &#039;3D&#039; in the options tree on the left-hand side of the window. From there, select &amp;quot;Anti-Aliasing&amp;quot; and check the box which reads: &amp;quot;Override application setting&amp;quot;. Apply the settings and close the control center.&lt;br /&gt;
&lt;br /&gt;
For an example of this anomaly, please see [http://i31.tinypic.com/244z9z8.png this image]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This solution not work on acer laptop with ATI Mobility Radeon HD 2400 XT.&lt;br /&gt;
kepfeltoltes.hu/view/080302/atisux_www.kepfeltoltes.hu_.jpg&lt;br /&gt;
&lt;br /&gt;
=== Blank Screen with Xorg 1.3.0 ===&lt;br /&gt;
If you happen to get a blank screen on X startup and you find lines similar to those in your Xorg.log:&lt;br /&gt;
{{Box File|/var/log/Xorg.log|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;&lt;br /&gt;
2: /usr/lib64/xorg/modules/drivers//fglrx_drv.so(swlDalHelperValidateModeFromDAL 0x549) [...]&lt;br /&gt;
3: /usr/lib64/xorg/modules/drivers//fglrx_drv.so [...]&lt;br /&gt;
4: /usr/lib64/xorg/modules/drivers//fglrx_drv.so(atiddxPreInit 0x8b3) [...]&lt;br /&gt;
 &amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
Then you&#039;re probably using the ati-drivers with Xorg-1.3.0. If that&#039;s the case the only solution (known to me) is to use a version &amp;lt; 1.3.0.&lt;br /&gt;
&lt;br /&gt;
Edit: I got the same problem after using the --add-pairmode argument of aticonfig (using Xorg 1.3.0). My ati mobility x300 seemes to try&lt;br /&gt;
sending the monitor signal to the vga output (even if no monitor is connected to it). After pressing [Fn]+[F8(CRT/LCD)] the monitor&lt;br /&gt;
signal sometimes returnes to the internal laptop monitor.&lt;br /&gt;
By switching to a console or shutting down the X-server, the card switches back to vga...&lt;br /&gt;
&lt;br /&gt;
My solution: overwriting the file /etc/ati/amdpcsdb with /etc/ati/amdpcsdb.default (sudo cp /etc/ati/amdpcsdb.default /etc/ati/amdpcsdb)&lt;br /&gt;
and restore the xorg.conf (since Xorg replaces /etc/X11/xorg.conf with a failsafe config file). Then reboot the system: fglrx should now&lt;br /&gt;
work fine again with Xorg-1.3.0 .&lt;br /&gt;
&lt;br /&gt;
=== Radeon GPU fan is very loud / constantly works ===&lt;br /&gt;
:See [http://ati.cchtml.com/show_bug.cgi?id=499 bug 499] for additional information.&lt;br /&gt;
It seems fglrx has a bug with all X800/X850 cards causing them to heat up excessively&lt;br /&gt;
even when not in 3D mode. This behaviour will cause the cards&#039; fans to function on full&lt;br /&gt;
blast continuously. There is no known fix as of driver 8.31.05 or previous. Open source&lt;br /&gt;
&amp;quot;radeon&amp;quot; driver does not exhibit this problem.&lt;br /&gt;
&lt;br /&gt;
My Ati 1650GT has the same problem.It was normal when I enter ubuntu for 1 or 2minutes,and than ,the fan became crazy..No doubt it&#039;s because the temp~&lt;br /&gt;
&lt;br /&gt;
It happens too with Radeon X1800 GTO and Radeon X1900 GT.&lt;br /&gt;
&lt;br /&gt;
Possible solution (at least using a Mobility Radeon X1600): &lt;br /&gt;
&amp;lt;pre&amp;gt;aticonfig --set-powerstate=1&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To find out which powerstates your Radeon supports try:&lt;br /&gt;
&amp;lt;pre&amp;gt;aticonfig --lsp&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== System freezes after logout with GDM, KDM or XDM&amp;lt;ref&amp;gt;http://ati.cchtml.com/show_bug.cgi?id=239 Going back to gdm/kdm/xdm hardlocks after running X session&amp;lt;/ref&amp;gt; ===&lt;br /&gt;
&lt;br /&gt;
If you use GDM, which is the default Login Manager on Ubuntu, modify&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo gedit /etc/gdm/gdm.conf&amp;lt;/pre&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
{{Box File|/etc/gdm/gdm.conf|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;AlwaysRestartServer=true&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
If you use KDM, which is the default Login Manager on Kubuntu, add to the [X-:*-Core] section the following&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo kate /etc/kde3/kdm/kdmrc&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box File|/etc/kde3/kdm/kdmrc|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;TerminateServer=true&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
if you use xdm, add the following to&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo gedit /etc/X11/xdm/xdm-config&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{Box File|/etc/X11/xdm/xdm-config|&lt;br /&gt;
 &amp;lt;nowiki&amp;gt;DisplayManager*terminateServer:	true&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=== System freezes at startup of Fedora 7 or RHEL 5.3 after installing the driver ===&lt;br /&gt;
&lt;br /&gt;
Turn off the Redhat Graphical boot from grub config:&lt;br /&gt;
&lt;br /&gt;
Edit the grub config file located at /boot/grub/grub.conf and remove the &#039;rhgb&#039; from the kernel line in order to disable the Redhat Graphical boot.&lt;br /&gt;
&lt;br /&gt;
This also works for Red Hat Enterprise Linux 5.3.&lt;br /&gt;
&lt;br /&gt;
=== System lockup on logout with catalyst 8.01 &amp;lt;ref&amp;gt;http://www.phoronix.com/forums/showthread.php?t=7448&amp;amp;page=5 System lockup on logout with catalyst 8.01&amp;lt;/ref&amp;gt;===&lt;br /&gt;
To solve this issue you need to disable atieventsd. On ubuntu you can run:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
sudo /usr/sbin/update-rc.d -f atieventsd remove&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Intermittent Freezes/Lockups due to AGPv3 running at 8x ===&lt;br /&gt;
Try forcing X to set AGP Speed to 4x&lt;br /&gt;
{{Box File|/etc/X11/xorg.conf|&lt;br /&gt;
&amp;lt;pre&amp;gt;  Option &amp;quot;AGPv3Mask&amp;quot; &amp;quot;0x00000002&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
((Would be nice to put down WHERE to change this, not just to change this. The same applies to just about every hint shown above.))&lt;br /&gt;
&lt;br /&gt;
+ You add it to the &amp;quot;Device&amp;quot; section for your graphics card in /etc/X11/xorg.conf.&lt;br /&gt;
&lt;br /&gt;
Great hammer of Thor, that is powerfully helpufl!&lt;br /&gt;
&lt;br /&gt;
=== _ZN17SegmentMapManager13deleteMappingEP9CMMClient+0x3f/0x170 ===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;UPDATE&amp;lt;/b&amp;gt;: The problem I have reported here is no more reproducible with the fglrx revision 11.03 (ati-driver-installer-11-3-x86.x86_64.run) within two months of testing. Many thanks to the guys that fixed this !&lt;br /&gt;
&lt;br /&gt;
Strange name for a bug but this is what your kernel might say if your screen freeze completely while using two sessions and switching between them. The bug is more likely to occur while doing the session switch, but can also occur in a later moment. I have observed it while starting a new application, or while doing a simple page scrolling. Anyway, in case of this bug the graphic is completely unusable as well as the console switching, but the OS and non graphic application continue to work. A reboot it the only way I know to bring back the screen to normal operations. Then your /var/log/kernel.log might contain something like this:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704151] BUG: unable to handle kernel NULL pointer dereference at 00000000000001c0&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704168] IP: [&amp;lt;ffffffffa030ef0f&amp;gt;] _ZN17SegmentMapManager13deleteMappingEP9CMMClient+0x3f/0x170 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704319] PGD 171a1b067 PUD 1b5376067 PMD 0 &lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704330] Oops: 0000 [#1] SMP &lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704337] last sysfs file: /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704346] CPU 1 &lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704351] Modules linked in: cramfs ext2 iptable_nat nf_nat nf_conntrack_ipv4 nf_conntrack nf_defrag_ipv4 iptable_filter ip_tables x_tables fglrx(P) ftdi_sio usbserial ext3 jbd mbcache btrfs nls_utf8 zlib_deflate nls_cp437 crc32c vfat &lt;br /&gt;
fat libcrc32c radeon ttm drm_kms_helper drm i2c_algo_bit ppdev lp sco bridge stp bnep rfcomm l2cap crc16 powernow_k8 cpufreq_stats cpufreq_powersave cpufreq_conservative cpufreq_userspace binfmt_misc fuse loop snd_hda_codec_atihdmi snd_hda_codec_realtek snd_usb_audio snd&lt;br /&gt;
_hda_intel snd_hda_codec snd_pcm_oss snd_mixer_oss snd_pcm snd_usb_lib snd_hwdep snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device sd_mod btusb crc_t10dif usblp asus_atk0110 bluetooth snd parport_pc i2c_piix4 parport psmouse rfkill button k8tem&lt;br /&gt;
p i2c_core shpchp serio_raw processor pcspkr evdev soundcore pci_hotplug edac_core snd_page_alloc edac_mce_amd usbhid hid nfs lockd fscache nfs_acl auth_rpcgss sunrpc usb_storage ata_generic ahci firewire_ohci fi&lt;br /&gt;
Dec 16 07:22:13 cube kernel: rewire_core crc_itu_t sky2 thermal thermal_sys pata_atiixp libata ohci_hcd ehci_hcd scsi_mod usbcore nls_base [last unloaded: fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] Pid: 7344, comm: Xorg Tainted: P        W  2.6.32-5-amd64 #1 System Product Name&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] RIP: 0010:[&amp;lt;ffffffffa030ef0f&amp;gt;]  [&amp;lt;ffffffffa030ef0f&amp;gt;] _ZN17SegmentMapManager13deleteMappingEP9CMMClient+0x3f/0x170 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] RSP: 0018:ffff88003e91bc38  EFLAGS: 00010292&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] RAX: 0000000000000000 RBX: ffffc9001236f620 RCX: 00000000000006b0&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] RDX: 0000000000000000 RSI: ffffc90012398e00 RDI: 0000000000000140&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] RBP: ffffc90012398e00 R08: ffff88020b560008 R09: ffffc9001237b620&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] R10: 00000000000006bc R11: 0000000000000001 R12: ffff88003e91bc58&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] R13: 00000000000001c0 R14: ffffc90012398e00 R15: 0000000000000140&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] FS:  00007f52b107d700(0000) GS:ffff880008480000(0000) knlGS:00000000f75858d0&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] CR2: 00000000000001c0 CR3: 00000001712a7000 CR4: 00000000000006e0&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] Process Xorg (pid: 7344, threadinfo ffff88003e91a000, task ffff88020bf5a350)&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] Stack:&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  000000001238c660 ffffffffa0389489 0000000000000100 0000000000000148&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] &amp;lt;0&amp;gt; 0000000000000000 0000000000000000 000002af00000068 ffffffffa038c6e7&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] &amp;lt;0&amp;gt; 00000000000001c0 000000000019330c 00007f52ab7a2000 ffffc9001236f620&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] Call Trace:&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa0311680&amp;gt;] ? _ZN3MSF9free_surfEP9CMMDriverP10CMMSurface+0x50/0xe0 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa030d391&amp;gt;] ? CMMFreeSurface+0x131/0x1b0 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa031d24c&amp;gt;] ? _Z8uCWDDEQCmjjPvjS_+0x68c/0xf00 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa02d2114&amp;gt;] ? firegl_cmmqs_CWDDE_32+0x334/0x440 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa02d0ba0&amp;gt;] ? firegl_cmmqs_CWDDE32+0x70/0x100 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa02d0b30&amp;gt;] ? firegl_cmmqs_CWDDE32+0x0/0x100 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffffa02b0b5a&amp;gt;] ? firegl_ioctl+0x1ea/0x250 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffff810fa4c7&amp;gt;] ? vfs_ioctl+0x56/0x6c&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffff810fa9e0&amp;gt;] ? do_vfs_ioctl+0x48d/0x4cb&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffff812fd946&amp;gt;] ? do_page_fault+0x2e0/0x2fc&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffff810faa6f&amp;gt;] ? sys_ioctl+0x51/0x70&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  [&amp;lt;ffffffff81010b42&amp;gt;] ? system_call_fastpath+0x16/0x1b&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] Code: 4c 8d 64 24 20 c7 44 24 04 00 00 00 00 4c 8d af 80 00 00 00 48 c7 44 24 20 00 00 00 00 48 c7 44 24 28 00 00 00 00 4c 89 6c 24 40 &amp;lt;49&amp;gt; 8b 5d 00 31 c0 48 85 db 48 89 5c 24 30 74 04 48 8b 43 30 49 &lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] RIP  [&amp;lt;ffffffffa030ef0f&amp;gt;] _ZN17SegmentMapManager13deleteMappingEP9CMMClient+0x3f/0x170 [fglrx]&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516]  RSP &amp;lt;ffff88003e91bc38&amp;gt;&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.704516] CR2: 00000000000001c0&lt;br /&gt;
Dec 16 07:22:13 cube kernel: [1178220.705883] ---[ end trace c9192c1a2722dc89 ]---&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
As fglrx source is closed, it will b difficult to catch this bug without AMD internal resource. If someone from AMD read this: please catch this bug. It is there from a least the last couple of monthly driver and really make my machine unable to do the work it was intended to do. I first see this bug using a Debian Lenny AMD64 with a old kernel. I recently upgraded to Debian Squeeze AMD64 with his last kernel, but the bug is exactly the same.&lt;br /&gt;
&lt;br /&gt;
=== [SOLVED] System freeze / Catalyst 11-9 / &amp;quot;unable to handle kernel NULL pointer dereference at ...&amp;quot; ===&lt;br /&gt;
&lt;br /&gt;
Similar to previous section, mouse and keyboard unresponsive afer a ramdomly amount of time.&lt;br /&gt;
&lt;br /&gt;
-----------------------------------------------------------------------------------------------&lt;br /&gt;
Computer&lt;br /&gt;
-----------------------------------------------------------------------------------------------&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux Debian Squeeze + sid fglrx packages&lt;br /&gt;
Desktop&lt;br /&gt;
  Motherboaord ASUS P5KPL - 4GB RAM&lt;br /&gt;
  Intel E8500 3.16GHz &lt;br /&gt;
  ACPI DISABLED&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
-----------------------------------------------------------------------------------------------&lt;br /&gt;
xorg server&lt;br /&gt;
-----------------------------------------------------------------------------------------------&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
X.Org X Server 1.7.7&lt;br /&gt;
Release Date: 2010-05-04&lt;br /&gt;
X Protocol Version 11, Revision 0&lt;br /&gt;
Build Operating System: Linux 2.6.37-trunk-amd64 x86_64 Debian&lt;br /&gt;
Current Operating System: Linux Joelle 2.6.32-[01] #1 SMP Sat Oct 8 21:03:45 CEST 2011 x86_64&lt;br /&gt;
xorg-server 2:1.7.7-13&lt;br /&gt;
Current version of pixman: 0.16.4Section &amp;quot;Device&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
-----------------------------------------------------------------------------------------------&lt;br /&gt;
xorg.conf&lt;br /&gt;
-----------------------------------------------------------------------------------------------&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;Device&amp;quot;&lt;br /&gt;
	Identifier  	&amp;quot;RADEON HD2600 - fglrx&amp;quot;&lt;br /&gt;
	Driver      	&amp;quot;fglrx&amp;quot;&lt;br /&gt;
	BusID       	&amp;quot;PCI:2:0:0&amp;quot;&lt;br /&gt;
	#Option		&amp;quot;SWCursor&amp;quot;		&amp;quot;true&amp;quot;&lt;br /&gt;
	Option	    &amp;quot;TexturedVideo&amp;quot; 		&amp;quot;on&amp;quot;&lt;br /&gt;
	Option	    &amp;quot;TexturedVideoSync&amp;quot; 	&amp;quot;true&amp;quot;&lt;br /&gt;
	Option	    &amp;quot;VideoOverlay&amp;quot; 		&amp;quot;on&amp;quot;&lt;br /&gt;
	Option      &amp;quot;OpenGLOverlay&amp;quot; 		&amp;quot;off&amp;quot;&lt;br /&gt;
	# ATI&lt;br /&gt;
	#Option &amp;quot;AccelMethod&amp;quot;              &amp;quot;EXA&amp;quot;&lt;br /&gt;
	#Option &amp;quot;AGPMode&amp;quot;                  &amp;quot;4&amp;quot;&lt;br /&gt;
	#Option &amp;quot;EnablePageFlip&amp;quot;           &amp;quot;true&amp;quot;&lt;br /&gt;
	#Option &amp;quot;DDCMode&amp;quot;&lt;br /&gt;
	# NOTUSED Option &amp;quot;RenderAccel&amp;quot;              &amp;quot;true&amp;quot; &lt;br /&gt;
	#Option &amp;quot;SubPixelOrder&amp;quot;            &amp;quot;NONE&amp;quot;&lt;br /&gt;
	#Option &amp;quot;ColorTiling&amp;quot;              &amp;quot;false&amp;quot;&lt;br /&gt;
	#Option  &amp;quot;backingstore&amp;quot;            &amp;quot;true&amp;quot;&lt;br /&gt;
	#----&lt;br /&gt;
	# NOTUSED Option &amp;quot;XAANoOffscreenPixmaps&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
	# NOTUSED Option &amp;quot;AddARGBGLXVisuals&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
	# NOTUSEDOption &amp;quot;AllowGLXWithComposite&amp;quot; &amp;quot;true&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
lspci&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Vendor:	ATI Technologies Inc&lt;br /&gt;
Device:	RV630 [Radeon HD 2600 Series]&lt;br /&gt;
SVendor:	PC Partner Limited&lt;br /&gt;
SDevice:	Device e410&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
/proc/ati/0/...&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
BIOS_CREATION_DATE=&amp;quot;09/05/07 21:52&amp;quot;&lt;br /&gt;
BIOS_MSG=&amp;quot;11X-1E410ASA-001 RV630 GDDR2 128BIT 256MB 600E/500M&amp;quot;&lt;br /&gt;
BIOS_KIT_VERSION=&amp;quot;BK-ATI VER010.059.000.003.000000&amp;quot;&lt;br /&gt;
BIOS_PN=&amp;quot;113-B1E41QIM-X01&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
amdcccle info&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
BIOS&lt;br /&gt;
    Date                            09/05/07 21:52&lt;br /&gt;
    Version                         010.059.000.003.000000&lt;br /&gt;
    Part Number                     113-B1E41QIM-X01&lt;br /&gt;
Memory&lt;br /&gt;
    Type                            DDR2&lt;br /&gt;
    Clock                           500 MHz&lt;br /&gt;
    Size                            256 MB&lt;br /&gt;
    Bandwidth                       16.0 GBytes/s&lt;br /&gt;
BUS&lt;br /&gt;
        Graphics Capability         PCI Express&lt;br /&gt;
        Maximum Setting             x16&lt;br /&gt;
        Core Clock                  600 MHz&lt;br /&gt;
Software&lt;br /&gt;
    Catalyst version                10.9&lt;br /&gt;
    Driver Packaging Version        8.771-100825a-104565C-ATI&lt;br /&gt;
    2D Driver Version               8.89.4&lt;br /&gt;
    Catalyst Control Center Version 2.13&lt;br /&gt;
    RandR Version                   1.3&lt;br /&gt;
OpenGL&lt;br /&gt;
    OpenGL Provider                 Advanced Micro Devices, Inc.&lt;br /&gt;
    OpenGL Renderer                 ATI Radeon HD 2600 Pro&lt;br /&gt;
    OpenGL Version                  3.3.11079 Compatibilty Profile COntext&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
BUG trace in syslog&lt;br /&gt;
------------------------------------------------------------------------------------------------&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443571] BUG: unable to handle kernel NULL pointer dereference at 0000000000000008&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443576] IP: [&amp;lt;ffffffffa024b8d1&amp;gt;] _ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443623] PGD 37736067 PUD 5cfd6067 PMD 0 &lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443626] Oops: 0002 [#1] SMP &lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443628] last sysfs file: /sys/devices/pci0000:00/0000:00:1f.1/host0/target0:0:0/0:0:0:0/block/sda/uevent&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443631] CPU 1 &lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443632] Modules linked in: binfmt_misc fuse coretemp w83627ehf hwmon_vid drm loop snd_hda_codec_atihdmi snd_hda_codec_realtek snd_hda_intel snd_hda_codec snd_hwdep snd_pcm_oss snd_mixer_oss snd_pcm snd_seq_midi snd_rawmidi snd_seq_midi_event snd_seq snd_timer snd_seq_device snd i2c_i801 soundcore snd_page_alloc i2c_core pcspkr fglrx(P) rng_core evdev psmouse serio_raw ext3 jbd mbcache dm_mod sd_mod crc_t10dif ata_generic uhci_hcd ata_piix libata ehci_hcd scsi_mod usbcore nls_base [last unloaded: scsi_wait_scan]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443656] Pid: 1521, comm: Xorg Tainted: P           2.6.32-[01] #1 System Product Name&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443657] RIP: 0010:[&amp;lt;ffffffffa024b8d1&amp;gt;]  [&amp;lt;ffffffffa024b8d1&amp;gt;] _ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443686] RSP: 0018:ffff8800370bb970  EFLAGS: 00010297&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443687] RAX: ffff880037638008 RBX: ffffc9000144a150 RCX: 0000000000000000&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443689] RDX: 0000000000000000 RSI: ffffc9000144a018 RDI: ffff880037638de8&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443690] RBP: 0000000000000002 R08: ffffffffa0278bb0 R09: ffff880037638008&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443692] R10: ffffc9000144a090 R11: ffff880037638008 R12: ffff880037638de8&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443693] R13: 0000000000000040 R14: 0000000000000000 R15: 0000000000000000&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443695] FS:  00007fb0e561d700(0000) GS:ffff880001700000(0000) knlGS:0000000000000000&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443697] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443698] CR2: 0000000000000008 CR3: 000000003776b000 CR4: 00000000000006e0&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443700] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443702] DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443704] Process Xorg (pid: 1521, threadinfo ffff8800370ba000, task ffff8800377d3100)&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443705] Stack:&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443706]  ffffffffa024b2f6 0000000000000000 ffff880037638de8 ffff880037638e78&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443709] &amp;lt;0&amp;gt; 0000000000000200 0000000000000000 ffffffffa01e45d5 0000000000080000&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443711] &amp;lt;0&amp;gt; ffff880037638de8 ffffffffa0278bb0 ffffffffa01e4938 0000000000000000&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443714] Call Trace:&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443743]  [&amp;lt;ffffffffa024b2f6&amp;gt;] ? _ZN7CMMHeap15createPoolSpaceI21CMMPoolAsicAccessibleEEbj+0xb6/0xc0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443788]  [&amp;lt;ffffffffa01e45d5&amp;gt;] ? _ZN20CMMHeap_SystemMemory10obtainPoolEv+0x85/0xc0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443831]  [&amp;lt;ffffffffa01e4938&amp;gt;] ? _ZN16CMMHeap_PAGEABLE10expandHeapEm+0x18/0xb0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443860]  [&amp;lt;ffffffffa024b0ea&amp;gt;] ? _ZN7CMMHeap10expandHeapEmRmPv+0xa/0x10 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443904]  [&amp;lt;ffffffffa01e32ed&amp;gt;] ? _ZN7CMMHeap21allocateMorePoolSpaceEmPv+0x8d/0x1b0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443947]  [&amp;lt;ffffffffa01e1cbe&amp;gt;] ? _ZN14CMMHeapManager13allocPageableEjR14CMM_ALLOCATION+0xbe/0x100 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.443992]  [&amp;lt;ffffffffa020a1f1&amp;gt;] ? AddrComputeSurfaceInfo+0x31/0x50 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444036]  [&amp;lt;ffffffffa01ebc57&amp;gt;] ? _ZN9CMMObjectnwEmP8CMM_CORE+0x37/0x70 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444080]  [&amp;lt;ffffffffa01ef7a2&amp;gt;] ? _ZN8MSF_CORE21get_surface_structureEv+0xc2/0xe0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444122]  [&amp;lt;ffffffffa01da40f&amp;gt;] ? _ZN3MSF11create_surfEP9CMMClientP9CMMDriverPvRA4_K14CMM_ALLOCATIONP16MSF_SURF_ATTRIBS+0x1f/0x1c0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444164]  [&amp;lt;ffffffffa01dbaf3&amp;gt;] ? _ZN3MSF21handle_shared_surfaceEP9CMMClientP9CMMDriverP10CMMSurfaceP16MSF_SURF_ATTRIBSP15_CMM_RETURNCODE+0x113/0x280 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444206]  [&amp;lt;ffffffffa01d61aa&amp;gt;] ? CMMAllocSurface_WA+0x62a/0xab0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444235]  [&amp;lt;ffffffffa018a522&amp;gt;] ? firegl_trace+0x72/0x1e0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444278]  [&amp;lt;ffffffffa01e7219&amp;gt;] ? _Z8uCWDDEQCmjjPvjS_+0xb59/0x10c0 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444307]  [&amp;lt;ffffffffa018ca32&amp;gt;] ? firegl_cmmqs_CWDDE_32+0x332/0x440 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444336]  [&amp;lt;ffffffffa018b360&amp;gt;] ? firegl_cmmqs_CWDDE32+0x70/0x100 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444365]  [&amp;lt;ffffffffa018b2f0&amp;gt;] ? firegl_cmmqs_CWDDE32+0x0/0x100 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444389]  [&amp;lt;ffffffffa0169fd8&amp;gt;] ? firegl_ioctl+0x1e8/0x250 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444412]  [&amp;lt;ffffffffa0160c75&amp;gt;] ? ip_firegl_unlocked_ioctl+0x9/0xd [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444417]  [&amp;lt;ffffffff810e34d8&amp;gt;] ? vfs_ioctl+0x19/0x83&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444419]  [&amp;lt;ffffffff810e3a22&amp;gt;] ? do_vfs_ioctl+0x46e/0x4b2&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444422]  [&amp;lt;ffffffff810d8216&amp;gt;] ? vfs_read+0xc7/0xfc&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444424]  [&amp;lt;ffffffff810e3aa2&amp;gt;] ? sys_ioctl+0x3c/0x5c&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444428]  [&amp;lt;ffffffff8100ba6b&amp;gt;] ? system_call_fastpath+0x16/0x1b&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444429] Code: 00 00 00 00 00 00 00 00 00 00 48 8d 47 60 c3 00 00 00 00 00 00 00 00 00 00 00 31 c9 48 8b 97 90 00 00 00 83 7e 18 02 48 0f 44 ce &amp;lt;48&amp;gt; 89 51 08 ff 87 98 00 00 00 48 89 8f 90 00 00 00 c3 00 00 00 &lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444449] RIP  [&amp;lt;ffffffffa024b8d1&amp;gt;] _ZN20CMMHeap_SystemMemory8pushPoolEP7CMMPool+0x11/0x40 [fglrx]&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444477]  RSP &amp;lt;ffff8800370bb970&amp;gt;&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444478] CR2: 0000000000000008&lt;br /&gt;
Oct  8 23:17:33 Joelle kernel: [ 3922.444480] ---[ end trace dbbddd5ad13ce08c ]---&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Edit 29.10.2011&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Tried  : Installed a more recent kernel ( 2.6.32.38 ) , Removed sid fglrx package, and installed a previous version &amp;quot;ati-driver-installer-11-6-x86.x86_64.run&amp;quot; downloaded from ADM site -&amp;gt; bug still present&lt;br /&gt;
&lt;br /&gt;
Trying now &amp;quot;ati-driver-installer-10-9-x86.x86_64.run&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Edit 06.03.2012&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
&amp;lt;hr&amp;gt;&lt;br /&gt;
Solved ! New ATI drivers conflict with kms. So you have to disable kms ( for example append &amp;quot;nomodeset&amp;quot; on your kernel boot line )&lt;br /&gt;
&lt;br /&gt;
=== An Example of a working Xorg.conf ===&lt;br /&gt;
Lots of trial and error changing Options to get Compiz-Fusion running under Mandriva 2008-2010.  X Server 1.6.5&lt;br /&gt;
(Sadly, the &#039;drak&#039; tools that come with Mandriva to configure are worthless.)&lt;br /&gt;
&lt;br /&gt;
In this instance it was chosen to remove packaged drivers and install from .bin file from AMD/ATI.&lt;br /&gt;
&lt;br /&gt;
Most Options were added per &#039;aticonfig -f --initial ... ...&#039;.  &lt;br /&gt;
And the rest were added as needed.  Constantly checking &#039;/var/log/Xorg.0.log&#039; for errors and warnings.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt; Section &amp;quot;ServerLayout&amp;quot;                     &lt;br /&gt;
        Identifier     &amp;quot;aticonfig Layout&amp;quot;  &lt;br /&gt;
        Screen      0  &amp;quot;aticonfig-Screen[0]-0&amp;quot; 0 0  # The extra zeros are necessary for some reason&lt;br /&gt;
        Option         &amp;quot;AIGLX&amp;quot;                    &lt;br /&gt;
EndSection                                        &lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Files&amp;quot;&lt;br /&gt;
EndSection     &lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Module&amp;quot;&lt;br /&gt;
        Load &amp;quot;dbe&amp;quot;&lt;br /&gt;
        Load &amp;quot;v4l&amp;quot;&lt;br /&gt;
        Load &amp;quot;extmod&amp;quot;&lt;br /&gt;
        Load &amp;quot;type1&amp;quot; &lt;br /&gt;
        Load &amp;quot;freetype&amp;quot;&lt;br /&gt;
        Load &amp;quot;glx&amp;quot;     &lt;br /&gt;
        Load &amp;quot;dri&amp;quot;     &lt;br /&gt;
EndSection             &lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
        Identifier &amp;quot;aticonfig-Monitor[0]-0&amp;quot;&lt;br /&gt;
        Option &amp;quot;VendorName&amp;quot; &amp;quot;Hewlett-Packard&amp;quot;&lt;br /&gt;
        Option &amp;quot;ModelName&amp;quot; &amp;quot;HP D2845 Ergo 1600 21-inch Display&amp;quot;&lt;br /&gt;
        HorizSync 31.5-95.0                                    &lt;br /&gt;
        VertRefresh 50.0-160.0                                 &lt;br /&gt;
        Option      &amp;quot;DPMS&amp;quot; &amp;quot;true&amp;quot;                              &lt;br /&gt;
EndSection                                                     &lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Device&amp;quot;&lt;br /&gt;
        Identifier  &amp;quot;aticonfig-Device[0]-0&amp;quot;&lt;br /&gt;
        Driver      &amp;quot;fglrx&amp;quot;&lt;br /&gt;
        BusID       &amp;quot;PCI:1:0:0&amp;quot;&lt;br /&gt;
        Option      &amp;quot;UseFastTLS&amp;quot; &amp;quot;2&amp;quot;&lt;br /&gt;
        Option      &amp;quot;Textured2D&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
        Option      &amp;quot;TexturedXrender&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
        Option      &amp;quot;BackingStore&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
        Option      &amp;quot;VideoOverlay&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
        Option      &amp;quot;OpenGLOverlay&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
        Identifier &amp;quot;aticonfig-Screen[0]-0&amp;quot;&lt;br /&gt;
        Device     &amp;quot;aticonfig-Device[0]-0&amp;quot;&lt;br /&gt;
        Monitor    &amp;quot;aticonfig-Monitor[0]-0&amp;quot;&lt;br /&gt;
        DefaultDepth     24&lt;br /&gt;
        SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
                Viewport   0 0&lt;br /&gt;
                Depth     24&lt;br /&gt;
        EndSubSection&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Extensions&amp;quot;&lt;br /&gt;
        Option      &amp;quot;Composite&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
        Option      &amp;quot;RENDER&amp;quot; &amp;quot;on&amp;quot; # essential for proper window border rendering&lt;br /&gt;
        Option      &amp;quot;DAMAGE&amp;quot; &amp;quot;on&amp;quot; # compiz-fusion calls for explicitly&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Open for scrutiny and testing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Sticky mouse cursor ===&lt;br /&gt;
&lt;br /&gt;
Some users reported that the mouse cursor gets stuck when the mouse is moved to the lower right corner. At least in several versions of Ubuntu using Gnome desktop and starting with Catalyst 11.4.&lt;br /&gt;
&lt;br /&gt;
That seems to be solved when adding &amp;quot;&amp;quot;load &amp;quot;dri&amp;quot;&amp;quot; to &amp;quot;Section Module&amp;quot; of xorg.conf.&lt;br /&gt;
&lt;br /&gt;
==aticonfig Issues==&lt;br /&gt;
If you get the message ‘‘aticonfig: No supported adapters detected’’, you might have a card not officially supported by the fglrx driver but that might still work when forcing the driver to load. See [[Ubuntu#Unsupported_adapter]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== X server dies at start, possibly with error segmentation fault at address 0x8 ===&lt;br /&gt;
* aticonfig can mess up the fglrx config in /etc/ati/amdpcsdb, try overwriting with /etc/ati/amdpcsdb.default&lt;br /&gt;
   &amp;quot;VideoOverlay&amp;quot;        &amp;quot;on&amp;quot;&lt;br /&gt;
   &amp;quot;OpenGLOverlay&amp;quot;       &amp;quot;off&amp;quot;&lt;br /&gt;
   &amp;quot;UseInternalAGPGART&amp;quot; &amp;quot;yes&amp;quot;   &lt;br /&gt;
   (10/2011, on cat-11.9, ATI 6300 aka 9803)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==AMD installer script completes, fglrx X driver loads, fglrxinfo reports error==&lt;br /&gt;
&lt;br /&gt;
Xorg.log reports 2d/3d acceleration disabled, DRI disabled and uki errors related to /proc/ati files.  AMD control panel works.&lt;br /&gt;
&lt;br /&gt;
This can happen if there is a problem w/ the AMD installer compiling the fglrx.ko kernel module.  The installation completes anyway with the fglrx Xorg driver in place.  As per 2.6.42.9 and the 12.1 AMD driver there was a compile error in/usr/src/fglrx-8.93/firegl_public.c, due to TS_USEDFPU macro not being defined.  Other compile-time errors will produce a similar problem.  Check the contents of /usr/share/ati/fglrx-install.log, note if there was a compile error.  If so, re-running the AMD installer will not fix the problem since the compile error will just recur.  Likewise, patching the bug ie&lt;br /&gt;
&lt;br /&gt;
http://phoronix.com/forums/showthread.php?68922-Patch-to-compile-fgrlx-module-on-Linux-3-3-rc4-with-x86-32-bit-arch&lt;br /&gt;
&lt;br /&gt;
and then reinstalling won&#039;t help either since the installer re-extracts the source from the archive.  To fix, apply whatever fix is required to the sourcecode that the installer leaves in /usr/src/fglrx-xxx and use dkms to compile and install the driver.&lt;br /&gt;
&lt;br /&gt;
dkms add fglrx/8.93 /usr/src/fglrx-8.93&amp;lt;BR&amp;gt;&lt;br /&gt;
dkms build fglrx/8.93&amp;lt;BR&amp;gt;&lt;br /&gt;
dkms install fglrx/8.93&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Apply fixes to the fglrx source and repeat the dkms build step until the build completes, then install &amp;amp; reboot.  Check lsmod output to see if fglrx.ko is loaded, confirm DRI and proc stuff in Xorg.log is working.&lt;br /&gt;
&lt;br /&gt;
In the 2.6.42.9 w/ 12.1 bug case, the fix is to add the TS_USEDFPU ifdef in firegl_public.c as below;&lt;br /&gt;
&lt;br /&gt;
void ATI_API_CALL KCL_fpu_begin(void)&amp;lt;BR&amp;gt;&lt;br /&gt;
{&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#ifdef CONFIG_X86_64&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    kernel_fpu_begin();&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#else&amp;lt;/nowiki&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#ifndef TS_USEDFPU&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    preempt_disable();&lt;br /&gt;
    if (__thread_has_fpu(current))&lt;br /&gt;
       __save_init_fpu(current);&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#else&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    struct thread_info *cur_task = current_thread_info();&lt;br /&gt;
    preempt_disable();&lt;br /&gt;
    if (cur_task-&amp;gt;status &amp;amp; TS_USEDFPU)&lt;br /&gt;
        __save_init_fpu(cur_task-&amp;gt;task);&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#endif&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    else&lt;br /&gt;
        clts();&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#endif&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Installation Documentation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:NeedsUpdating]]&lt;br /&gt;
{{VCT}}&lt;/div&gt;</summary>
		<author><name>213.144.132.98</name></author>
	</entry>
	<entry>
		<id>http://wiki.cchtml.com/index.php?title=Troubleshooting&amp;diff=8454</id>
		<title>Troubleshooting</title>
		<link rel="alternate" type="text/html" href="http://wiki.cchtml.com/index.php?title=Troubleshooting&amp;diff=8454"/>
		<updated>2012-05-14T21:58:20Z</updated>

		<summary type="html">&lt;p&gt;213.144.132.98: /* X Server Related Issues */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; Hello! cbbafaf interesting cbbafaf site! I&#039;m really like it! Very, very cbbafaf good!&lt;br /&gt;
&lt;br /&gt;
Very nice site!&lt;br /&gt;
&lt;br /&gt;
==aticonfig Issues==&lt;br /&gt;
If you get the message ‘‘aticonfig: No supported adapters detected’’, you might have a card not officially supported by the fglrx driver but that might still work when forcing the driver to load. See [[Ubuntu#Unsupported_adapter]].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== X server dies at start, possibly with error segmentation fault at address 0x8 ===&lt;br /&gt;
* aticonfig can mess up the fglrx config in /etc/ati/amdpcsdb, try overwriting with /etc/ati/amdpcsdb.default&lt;br /&gt;
   &amp;quot;VideoOverlay&amp;quot;        &amp;quot;on&amp;quot;&lt;br /&gt;
   &amp;quot;OpenGLOverlay&amp;quot;       &amp;quot;off&amp;quot;&lt;br /&gt;
   &amp;quot;UseInternalAGPGART&amp;quot; &amp;quot;yes&amp;quot;   &lt;br /&gt;
   (10/2011, on cat-11.9, ATI 6300 aka 9803)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==AMD installer script completes, fglrx X driver loads, fglrxinfo reports error==&lt;br /&gt;
&lt;br /&gt;
Xorg.log reports 2d/3d acceleration disabled, DRI disabled and uki errors related to /proc/ati files.  AMD control panel works.&lt;br /&gt;
&lt;br /&gt;
This can happen if there is a problem w/ the AMD installer compiling the fglrx.ko kernel module.  The installation completes anyway with the fglrx Xorg driver in place.  As per 2.6.42.9 and the 12.1 AMD driver there was a compile error in/usr/src/fglrx-8.93/firegl_public.c, due to TS_USEDFPU macro not being defined.  Other compile-time errors will produce a similar problem.  Check the contents of /usr/share/ati/fglrx-install.log, note if there was a compile error.  If so, re-running the AMD installer will not fix the problem since the compile error will just recur.  Likewise, patching the bug ie&lt;br /&gt;
&lt;br /&gt;
http://phoronix.com/forums/showthread.php?68922-Patch-to-compile-fgrlx-module-on-Linux-3-3-rc4-with-x86-32-bit-arch&lt;br /&gt;
&lt;br /&gt;
and then reinstalling won&#039;t help either since the installer re-extracts the source from the archive.  To fix, apply whatever fix is required to the sourcecode that the installer leaves in /usr/src/fglrx-xxx and use dkms to compile and install the driver.&lt;br /&gt;
&lt;br /&gt;
dkms add fglrx/8.93 /usr/src/fglrx-8.93&amp;lt;BR&amp;gt;&lt;br /&gt;
dkms build fglrx/8.93&amp;lt;BR&amp;gt;&lt;br /&gt;
dkms install fglrx/8.93&amp;lt;BR&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Apply fixes to the fglrx source and repeat the dkms build step until the build completes, then install &amp;amp; reboot.  Check lsmod output to see if fglrx.ko is loaded, confirm DRI and proc stuff in Xorg.log is working.&lt;br /&gt;
&lt;br /&gt;
In the 2.6.42.9 w/ 12.1 bug case, the fix is to add the TS_USEDFPU ifdef in firegl_public.c as below;&lt;br /&gt;
&lt;br /&gt;
void ATI_API_CALL KCL_fpu_begin(void)&amp;lt;BR&amp;gt;&lt;br /&gt;
{&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#ifdef CONFIG_X86_64&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    kernel_fpu_begin();&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#else&amp;lt;/nowiki&amp;gt;&amp;lt;BR&amp;gt;&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#ifndef TS_USEDFPU&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    preempt_disable();&lt;br /&gt;
    if (__thread_has_fpu(current))&lt;br /&gt;
       __save_init_fpu(current);&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#else&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    struct thread_info *cur_task = current_thread_info();&lt;br /&gt;
    preempt_disable();&lt;br /&gt;
    if (cur_task-&amp;gt;status &amp;amp; TS_USEDFPU)&lt;br /&gt;
        __save_init_fpu(cur_task-&amp;gt;task);&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#endif&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
    else&lt;br /&gt;
        clts();&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#endif&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
==References==&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Installation Documentation]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:NeedsUpdating]]&lt;br /&gt;
{{VCT}}&lt;/div&gt;</summary>
		<author><name>213.144.132.98</name></author>
	</entry>
</feed>