This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Removes the xorg-x11-drv-nouveau package from this machine, because it's not needed | |
sudo dnf remove xorg-x11-drv-nouveau -y | |
# Blacklist the nouveau module as a module and in dracut | |
sudo echo 'blacklist nouveau' > /etc/modprobe.d/blacklist-nouveau.conf | |
sudo echo 'omit_drivers+=" nouveau "' > /etc/dracut.conf.d/blacklist-nouveau.conf | |
# Backup the current initramfs |