You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use image: nvcr.io/nvidia/driver:535.183.06-rhel9.2
I encountered two problems when installing the driver offline on rhel9.2:
install elfutils-libelf-devel error is not found
The elfutils-libelf package exists in the image , and the version does not match that in the offline yum repository.
Modify it to step-by-step installation to succeed.
echo "Installing elfutils..."
if ! dnf install -q -y elfutils-libelf.$DRIVER_ARCH; then
echo "FATAL: failed to install elfutils packages. RHEL entitlement may be improperly deployed."
exit 1
fi
if ! dnf install -q -y elfutils-libelf-devel.$DRIVER_ARCH; then
echo "FATAL: failed to install elfutils packages. RHEL entitlement may be improperly deployed."
exit 1
fi
install kernel-devel error is dependency package version issue.
Install kernel-devel-5.14.0-284.11.1.el9_2.x86_64 dependency version issue
I was able to install successfully by adding --allowerasing
use image: nvcr.io/nvidia/driver:535.183.06-rhel9.2
I encountered two problems when installing the driver offline on rhel9.2:
install
elfutils-libelf-devel
error is not foundThe
elfutils-libelf
package exists in the image , and the version does not match that in the offline yum repository.Modify it to step-by-step installation to succeed.
install
kernel-devel
error is dependency package version issue.Install kernel-devel-5.14.0-284.11.1.el9_2.x86_64 dependency version issue
I was able to install successfully by adding --allowerasing
I encountered a similar problem when installing the centos driver before. Can we optimize the
nvidia-driver
installation shell?install success log,
The text was updated successfully, but these errors were encountered: