Skip to content

Instantly share code, notes, and snippets.

@tadghh
Created September 30, 2024 18:53
Show Gist options
  • Save tadghh/e9e8e39c4b9f30f50bbf67fd8390528f to your computer and use it in GitHub Desktop.
Save tadghh/e9e8e39c4b9f30f50bbf67fd8390528f to your computer and use it in GitHub Desktop.

Install CUDA on Rocky Linux 9.4 for Quadro K1100M

find the correct package version here

# 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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment