之前写过一篇关于A卡的特效问题,最近重新用回F10,觉得有必要重新整理一下方法。刚刚找回N久前的帖子重新做了一遍,照旧可行。废话不多说....
查看驱动是否支持你的显卡,点这里
1.Update kernel
Code:[code]su
yum update kernel[/code]reboot to the new kernel.
2. Install driver ( if you previously downgraded libdrm you will need to upgrade to the F10 version first see end of post ~1 for instructions )
install the F10 rpmfusion driver
For older ATI cards ( X series or less )
Code:[code]su -
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
yum install kmod-fglrx xorg-x11-drv-fglrx xorg-x11-drv-fglrx-libs.i386[/code]or for kernel-PAE:
Code:[code]su -
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
yum install kmod-fglrx-PAE xorg-x11-drv-fglrx xorg-x11-drv-fglrx-libs.i386[/code]×××For newer ATI cards ( HD series or greater )×××××
Code:[code]su -
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
yum install kmod-catalyst xorg-x11-drv-catalyst xorg-x11-drv-catalyst-libs.i386[/code]Or for kernel-PAE:
Code:[code]su -
rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
yum install kmod-catalyst-PAE xorg-x11-drv-catalyst-libs.i586 xorg-x11-drv-catalyst[/code]3. Backup Old initrd
Code:[code]su
mv /boot/initrd-`uname -r`.img /boot/initrd-`uname -r`.img.backup[/code]4. Remake initrd for the kernel (So the radeon module is not force loaded)
Code:[code]su -
mkinitrd -v /boot/initrd-`uname -r`.img `uname -r`[/code]5.Edit grub.conf
Code:[code]su
gedit /boot/grub/grub.conf[/code]and add this "nopat" to the kernel arguments.
i.e
Code:[code]splashimage=(hd3,1)/boot/grub/splash.xpm.gz
hiddenmenu
title Fedora (2.6.29.1-42.fc10.x86_64)
root (hd3,1)
kernel /boot/vmlinuz-2.6.29.1-42.fc10.x86_64 ro root=UUID=f372564c-f1a7-430e-b97f-b250812e2c30 rhgb quiet vga=0x318 nopat
initrd /boot/initrd-2.6.29.1-42.fc10.x86_64.img[/code]Optional (in case libdrm change breaks things due to relationship with KMS):
add "nomodeset" to end of kernel arguments
6. Reboot
due to the akmod, it is *absolutely necessary* to reboot after the install, otherwise the kernel module won't be compiled.
p.s 本人英文看的懂,翻译的感觉太别扭,没什么不好理解的。照着做应该米啥问题。Goodluck???
pinla 于 2009-10-29 00:03:25发表:
向楼主学习
longyun 于 2009-10-28 18:03:19发表:
谢谢楼主分享,呵呵,支持
Dnirta 于 2009-10-28 15:03:53发表:
学习了