Skip to content

Instantly share code, notes, and snippets.

@thesabbir
Last active June 7, 2026 23:58
Show Gist options
  • Select an option

  • Save thesabbir/1a70e51b64acfd405280b7f0107dde51 to your computer and use it in GitHub Desktop.

Select an option

Save thesabbir/1a70e51b64acfd405280b7f0107dde51 to your computer and use it in GitHub Desktop.
Remove nvidia from fedora system
## Remove nvidia from fedora system
set -euo pipefail
echo ">> Removing all NVIDIA packages..."
sudo dnf remove -y "*nvidia*"
echo ">> Removing leftover nouveau-blacklist kernel args..."
sudo grubby --update-kernel=ALL \
--remove-args="rd.driver.blacklist=nouveau,nova_core modprobe.blacklist=nouveau,nova_core
nvidia-drm.modeset=1"
echo ">> Rebuilding initramfs for all kernels..."
sudo dracut --force --regenerate-all
echo ">> Done. Reboot to come up cleanly on amdgpu:"
echo " sudo systemctl reboot"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment