Skip to content

Instantly share code, notes, and snippets.

@tadghh
Created September 30, 2024 18:53
Show Gist options
  • Select an option

  • Save tadghh/e9e8e39c4b9f30f50bbf67fd8390528f to your computer and use it in GitHub Desktop.

Select an option

Save tadghh/e9e8e39c4b9f30f50bbf67fd8390528f to your computer and use it in GitHub Desktop.

Revisions

  1. tadghh created this gist Sep 30, 2024.
    19 changes: 19 additions & 0 deletions CUDA-old-RockyLinux9.4.md
    Original 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
    ```