Skip to content

Instantly share code, notes, and snippets.

@allanjos
Last active November 16, 2023 05:11
Show Gist options
  • Save allanjos/f903d9be6cfede13791723c4ee627a8f to your computer and use it in GitHub Desktop.
Save allanjos/f903d9be6cfede13791723c4ee627a8f to your computer and use it in GitHub Desktop.
Fedora 39 NVidia issues

Fedora 39 NVidia issues

Try 1: Rebuild NVidia kernel module with akmods.

sudo akmods --rebuild --kernels $(uname -r)

Reboot.

Try 2: Remove current NVidia kernel module and rebuild it.

sudo dnf remove kmod-nvidia-$(uname -r)

sudo akmods --rebuild --kernels $(uname -r)

Reboot.

Try 3: Remove and reinstall NVidia packages:

sudo dnf remove *nvidia* --exclude=nvidia-gpu-firmware

sudo dnf install akmod-nvidia xorg-x11-drv-nvidia-cuda

Wait to finish build of NVidia module.

modinfo -F version nvidia

Reboot.

Tested with a NVidia GTX 750 graphic card.

References

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment