RHEL8의 CUDA 10 및 dkm

RHEL8의 CUDA 10 및 dkm

NVIDIA CUDA Toolkit의 정보를 기반으로 CUDA를 설치하고 싶습니다.장소

wget http://developer.download.nvidia.com/compute/cuda/10.2/Prod/local_installers/cuda-repo-rhel8-10-2-local-10.2.89-440.33.01-1.0-1.x86_64.rpm
sudo rpm -i cuda-repo-rhel8-10-2-local-10.2.89-440.33.01-1.0-1.x86_64.rpm
sudo dnf clean all
sudo dnf -y module install nvidia-driver:latest-dkms
sudo dnf -y install cuda
...
Error: 
 Problem 1: conflicting requests
  - nothing provides dkms needed by kmod-nvidia-latest-dkms-3:440.33.01-1.el8.x86_64

활성화하면에펠통과하다

sudo subscription-manager repos --enable "codeready-builder-for-rhel-8-$(arch)-rpms"
[sudo] password for adminsafe20: 
Repository 'codeready-builder-for-rhel-8-x86_64-rpms' is enabled for this system.

좋아 보이지만 다음을 제외하고는 아무것도 반환되지 않습니다 yum search dkms.

============================== Name Matched: dkms ==============================
kmod-nvidia-latest-dkms.x86_64 : NVIDIA display driver kernel module

설치를 시도하기 전과 동일한 원본 메시지가 나타납니다.

 - nothing provides dkms needed by kmod-nvidia-latest-dkms-3:440.33.01-1.el8.x86_64

답변1

활성화되지 않았습니다 epel. 저장소 를 활성화했습니다 codeready-builder.

먼저 epel저장소를 추가합니다.

dnf install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm

일반적으로 설치 후 기본적으로 활성화되지만 그렇지 않은 경우:

dnf config-manager --enable epel

그런 다음 설치할 수 있습니다 dkms.

관련 정보