New comment by gmorenz on void-packages repository https://github.com/void-linux/void-packages/pull/17505#issuecomment-570110482 Comment: I tried installing these packages, they installed successfully but running `sudo docker run --gpus all nvidia/cuda:9.0-base nvidia-smi` (as suggested by [nvidia's documentation](https://github.com/NVIDIA/nvidia-docker#usage)) failed with the following error message. ``` $ sudo docker run --gpus all nvidia/cuda:9.0-base nvidia-smi docker: Error response from daemon: OCI runtime create failed: container_linux.go:346: starting container process caused "process_linux.go:449: container init caused \"process_linux.go:432: running prestart hook 0 caused \\\"error running hook: exit status 1, stdout: , stderr: nvidia-container-cli: detection error: open failed: /usr/lib/libnvoptix.so.1: no such file or directory\\\\n\\\"\"": unknown. ERRO[0000] error waiting for container: context canceled ``` I fixed this by running `cd /usr/lib; sudo ln -s libnvoptix.so.440.44 libnvoptix.so.1`, after which the command worked successfully. Symlinking x.so.440.44 to x.so.1 feels wrong... so I'm not sure if this is the *right* fix... but it does work.