Skip to content

Instantly share code, notes, and snippets.

@beka
Created June 17, 2022 16:14
Show Gist options
  • Save beka/c0e49702382477d4ef80c2ef7f4093fc to your computer and use it in GitHub Desktop.
Save beka/c0e49702382477d4ef80c2ef7f4093fc to your computer and use it in GitHub Desktop.
Fedora
Create the /usr/lib/modprobe.d/blacklist-nouveau.conf file and add the following information to the file.
blacklist nouveau
options nouveau modeset=0
Re-generate initramfs.
$sudo dracut --force
RHEL/CentOS
Create the /etc/modprobe.d/blacklist-nouveau.conf file and add the following information to the file.
blacklist nouveau
options nouveau modeset=0
Re-generate initramfs.
$sudo dracut --force
OpenSUSE
Create the /etc/modprobe.d/blacklist-nouveau.conf file and add the following information to the file.
blacklist nouveau
options nouveau modeset=0
Re-generate initrd.
$sudo /sbin/mkinitrd
SLES
The Nouveau driver is not installed in SLES.
Ubuntu
Create the /etc/modprobe.d/blacklist-nouveau.conf file and add the following information to the file.
blacklist nouveau
options nouveau modeset=0
Re-generate initramfs.
$sudo update-initramfs -u
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment