|
Refer to: http://www.mjmwired.net/resources/mjm-fedora-nvidia.html
Due to the inclusion of nouveau in Fedora 11 and newer, it must first be disabled. After this step, a reboot is recommended.
Fedora 12 and Fedora 13
Solution A:
1. Edit (as root): /boot/grub/grub.conf
To the end of the default kernel (usually the first), edit the kernel line.
Add the following: rdblacklist=nouveau to the end of the kernel line.
2. Added "blacklist nouveau" at the end of "/etc/modprobe.d/blacklist.conf".
http://www.if-not-true-then-false.com/2011/fedora-15-nvidia-drivers-install-guide/
title Fedora (2.6.38.6-26.rc1.fc15.x86_64)
root (hd0,0)
kernel /vmlinuz-2.6.38.6-26.rc1.fc15.x86_64 .... rdblacklist=nouveau nouveau.modeset=0
initrd /initramfs-2.6.38.6-26.rc1.fc15.x86_64.img
[root@psc1000 C]# cat /etc/modprobe.d/blacklist.conf
#
# Listing a module here prevents the hotplug scripts from loading it.
# Usually that'd be so that some other driver will bind it instead,
# no matter which driver happens to get probed first. Sometimes user
# mode tools can also control driver binding.
#
# Syntax: driver name alone (without any spaces) on a line. Other
# lines are ignored.
#
# watchdog drivers
blacklist i8xx_tco
# framebuffer drivers
blacklist aty128fb
blacklist atyfb
blacklist radeonfb
blacklist i810fb
blacklist cirrusfb
blacklist intelfb
blacklist kyrofb
blacklist i2c-matroxfb
blacklist hgafb
blacklist nvidiafb
blacklist rivafb
blacklist savagefb
blacklist sstfb
blacklist neofb
blacklist tridentfb
blacklist tdfxfb
blacklist virgefb
blacklist vga16fb
blacklist viafb
# ISDN - see bugs 154799, 159068
blacklist hisax
blacklist hisax_fcpcipnp
# sound drivers
blacklist snd-pcsp
# I/O dynamic configuration support for s390x (bz #563228)
blacklist chsc_sch
blacklist nouveau
[root@psc1000 C]#
Solution B (not verify):
-OR- Modify the initramfs:
[mirandam@charon ~]$ su -
Password:
[root@charon ~]# mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r)-nouveau.img
[root@charon ~]# dracut /boot/initramfs-$(uname -r).img $(uname -r)
[root@charon ~]# exit
|