Recently, I started to fix the mudbox bug in centos 6. After compilation, I found that it could not be started. I suddenly remembered that the NVIDIA driver was not installed in the new system, directly go to init 3 and run the downloaded driver to find that the Nouveau driver is enabled. Disable it first. The following command describes how to disable the built-in driver.
Yum install GccKernel-devel
Reboot
After restart, add nouveau to the blacklist and do not load it.
Sed -I '/Root =/S | $ | rdblacklist = nouveau VGA = 791 |' /Boot/Grub/Grub. conf
Echo "Blacklist nouveau" > /Etc/Modprobe. d/Blacklist. conf
Modify initd
MV /Boot/Initramfs-$(Uname-R). Img/Boot/Initramfs-$(Uname-R)-Nouveau. img
Dracut/Boot/Initramfs-$(Uname-R). IMG $(Uname-R)
Remove nouveau driver
Yum removeXorg-x11-drv-nouveau
Reboot
Install the NVIDIA driver after restart
Init3
Sh./NVIDIA-Linux-x86-260.19.29.run
Original article address: http://linux.xvx.cz/2011/01/nvidia-proprietary-drivers-and-rhel6/. thank you for choosing the original author.