Skip to content

Instantly share code, notes, and snippets.

View zzahkaboom24's full-sized avatar

zzahkaboom24 zzahkaboom24

View GitHub Profile
@zzahkaboom24
zzahkaboom24 / remove-nouveau.sh
Created August 12, 2023 16:06 — forked from sebastiaanfranken/remove-nouveau.sh
Removes the nouveau module/driver from Fedora 29+
#!/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