centos 禁用nouveau驱动

时间:2024-11-20 07:03:49

1)把驱动加入黑名单中: /etc/modprobe.d/blacklist.conf 在后面加入:

blacklist nouveau
 
options nouveau modeset=0
  1. 使用 dracut重新建立 initramfs nouveau 并且备份 initramfs nouveau image镜像
mv /boot/initramfs-$(uname -r).img /boot/initramfs-$(uname -r).img.bak
  1. 重新建立新的 the initramfs file
dracut -v /boot/initramfs-$(uname -r).img $(uname -r)

4)重启,检查nouveau driver确保没有被加载!

reboot
lsmod | grep nouveau

转至:https://blog.****.net/qq_37296212/article/details/114265216