Created
September 30, 2024 18:53
-
-
Save tadghh/e9e8e39c4b9f30f50bbf67fd8390528f to your computer and use it in GitHub Desktop.
Revisions
-
tadghh created this gist
Sep 30, 2024 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ Install CUDA on Rocky Linux 9.4 for Quadro K1100M find the correct package version [here](https://rpmfusion.org/Howto/NVIDIA?highlight=%28%5CbCategoryHowto%5Cb%29#Installing_the_drivers) ``` # Remember to remove any previous nvidia install dnf list installed | grep nvidia # Disable official driver as we are out of support dnf module disable nvidia-driver # Add rpmfusion dnf install --nogpgcheck https://mirrors.rpmfusion.org/nonfree/el/rpmfusion-nonfree-release-$(rpm -E %rhel).noarch.rpm dnf install rpmfusion-free-release epel-release dnf install epel-release # start the install from the cuda package dnf install xorg-x11-drv-nvidia-470xx-cuda # You need to wait for it to build even though the command will have returned (5min) top # reboot after top chills out ```