Installing Nvidia Driver on Fedora
By: Zhiqiang Ma
On: Mar 31, 2010
Views: 17 No Comment
Print
Email
Tags: client config, Fedora, Linux, nvidia, tutorials
Tags: client config, Fedora, Linux, nvidia, tutorials
Installing akmod NVIDIA driver from rpmfusion on Fedora 12.
First make sure your nvidia card is in “Supported NVIDIA GPU Products List”: Click here for the list
1. Add rpmfusion repository:
$ su # rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm \ http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
2. Install akmod nvidia driver
akmod builds the required kmod on bootup
# yum install akmod-nvidia xorg-x11-drv-nvidia-libs.i686
3. Add nouveau to blacklist in grub.conf
Add rdblacklist=nouveau option to /boot/grub/grub.conf
# sed -i '/root=/s|$| rdblacklist=nouveau|' /boot/grub/grub.conf
# mv /boot/initramfs-$(uname -r).img \ /boot/initramfs-$(uname -r)-nouveau.img
# dracut /boot/initramfs-$(uname -r).img $(uname -r)
4. Enable allow_execstack in SELinux
Make sure SElinux doesn’t prevent the driver from being loaded.
# setsebool -P allow_execstack on
5. Reboot
# reboot
Read more:
- Install nvidia driver on Fedora
- NVIDIA Driver in Linux not Displaying Logo During Booting
- Problems during Installing Xen Dom0 in Fedora
- Yum Installing Old Packages from the Repository
- Setting up Stable Xen Dom0 with Fedora: Xen 4.0.1 with Xenified Linux Kernel 2.6.32.13 in Fedora 12
- Setting up Stable Xen Dom0 with Fedora: Xen 3.4.3 with Xenified Linux Kernel 2.6.32.13 in Fedora 12
















Leave your response!