|
原帖见:http://ubuntuforums.org/showthread.php?t=574302
题目是Howtoesktop Effects + Gutsy + ATI x1400
我试了一下解决了我的桌面显示效果的问题。
1) Make sure you have the tools you need to compile the driver:
sudo apt-get install module-assistant build-essential debhelper debconf dh-make fakeroot libstdc++5 linux-headers-generic
2) Go here: http://ati.amd.com/support/driver.html and download the latest Linux driver. As of this posting, 8.40.4 is the latest.
3) CD to the directory where you downloaded the file and type:
sudo bash ati-driver-installer-[driver version].x86.x86_64.run --buildpkg Ubuntu/gutsy
This will create a few .deb packages which you will install in step 5.
4) Blacklist fglrx:
sudo gedit /etc/default/linux-restricted-modules-common
Scroll down to "DISABLED_MODULES" and put fglrx into the quotes.
5) Install driver:
sudo dpkg -i xorg-driver-fglrx-[driver version].deb fglrx-kernel-source-[kernel version].deb
6) Compile and install the kernel module:
sudo module-assistant prepare,update
sudo module-assistant build,install fglrx
sudo depmod -a
7) Install XGL (Needed for ATI users at this time for desktop effects:
sudo apt-get install xserver-xgl
Now either hit CTRL+ALT+BKSP to restart X or simply reboot your computer. |
|