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
On my Arch Linux system with a 4090, running podman 5.2.2, after doing an update today the following command fails with an error:
podman run -it -d \
--pod my-own-pod \
--gpus all \
my-own-image:latest
The error:
Error: crun: cannot stat `/usr/lib/libnvidia-egl-wayland.so.1.1.13`: No such file or directory: OCI runtime attempted to invoke a command that was not found
This can be temporarily resolved by creating a symlink to the 1.1.16 version, which does exist in /usr/lib:
cd /usr/lib
sudo ln -s libnvidia-egl-wayland.so.1.1.16 libnvidia-egl-wayland.so.1.1.13
I hope this is the correct place to post this issue. I acknowledge that it touches a few different components that may not be the fault of nvidia-container-toolkit necessarily. I've posted this to containers/podman#23935 as well.
The text was updated successfully, but these errors were encountered:
On my Arch Linux system with a 4090, running podman 5.2.2, after doing an update today the following command fails with an error:
The error:
This can be temporarily resolved by creating a symlink to the 1.1.16 version, which does exist in
/usr/lib
:cd /usr/lib sudo ln -s libnvidia-egl-wayland.so.1.1.16 libnvidia-egl-wayland.so.1.1.13
I hope this is the correct place to post this issue. I acknowledge that it touches a few different components that may not be the fault of
nvidia-container-toolkit
necessarily. I've posted this to containers/podman#23935 as well.The text was updated successfully, but these errors were encountered: