Is there an existing issue for this?
Current Behavior
Hardware: NVIDIA GeForce RTX 2060
AlmaLinux version: 10.2
Installation: Clean installation
I followed the official AlmaLinux NVIDIA installation guide exactly:
dnf install almalinux-release-nvidia-driver
dnf install nvidia-open-kmod nvidia-driver
After reboot, the NVIDIA kernel module did not load. The system booted using a fallback graphics driver with low resolution instead of the NVIDIA driver.
Expected Behavior
Following the official installation guide, should result in the NVIDIA driver loading successfully after the first reboot, with the system starting at the native display resolution and the NVIDIA kernel module active.
Steps To Reproduce
-
Perform a clean installation of AlmaLinux 10.2.
-
Boot the system and update packages if desired.
-
Install the NVIDIA packages exactly as documented:
dnf install almalinux-release-nvidia-driver
dnf install nvidia-open-kmod nvidia-driver
-
Reboot.
-
Observe that the system boots in low resolution because the NVIDIA kernel module did not load.
Anything else?
The issue was resolved by installing:
dnf install kernel-modules-$(uname -r) kernel-modules-extra-$(uname -r)
and then:
echo video | sudo tee /etc/modules-load.d/video.conf
grubby --update-kernel=ALL --args="nvidia-drm.modeset=1 rd.driver.blacklist=nouveau modprobe.blacklist=nouveau"
dracut -f --kver "$(uname -r)"
reboot
After these steps, the NVIDIA driver loaded correctly.
It may be helpful to document these requirements if they are expected on some systems, or investigate why they are necessary after following the official guide.
Search terms
Alma,Nvidia,Driver,Kernel modules,Linux
Is there an existing issue for this?
Current Behavior
Hardware: NVIDIA GeForce RTX 2060
AlmaLinux version: 10.2
Installation: Clean installation
I followed the official AlmaLinux NVIDIA installation guide exactly:
dnf install almalinux-release-nvidia-driver
dnf install nvidia-open-kmod nvidia-driver
After reboot, the NVIDIA kernel module did not load. The system booted using a fallback graphics driver with low resolution instead of the NVIDIA driver.
Expected Behavior
Following the official installation guide, should result in the NVIDIA driver loading successfully after the first reboot, with the system starting at the native display resolution and the NVIDIA kernel module active.
Steps To Reproduce
Perform a clean installation of AlmaLinux 10.2.
Boot the system and update packages if desired.
Install the NVIDIA packages exactly as documented:
dnf install almalinux-release-nvidia-driver
dnf install nvidia-open-kmod nvidia-driver
Reboot.
Observe that the system boots in low resolution because the NVIDIA kernel module did not load.
Anything else?
The issue was resolved by installing:
dnf install kernel-modules-$(uname -r) kernel-modules-extra-$(uname -r)
and then:
echo video | sudo tee /etc/modules-load.d/video.conf
grubby --update-kernel=ALL --args="nvidia-drm.modeset=1 rd.driver.blacklist=nouveau modprobe.blacklist=nouveau"
dracut -f --kver "$(uname -r)"
reboot
After these steps, the NVIDIA driver loaded correctly.
It may be helpful to document these requirements if they are expected on some systems, or investigate why they are necessary after following the official guide.
Search terms
Alma,Nvidia,Driver,Kernel modules,Linux