히비스서커스의 블로그

[Docker] nvidia docker 설치 중 여러 발생 에러 해결 본문

Programming/Docker

[Docker] nvidia docker 설치 중 여러 발생 에러 해결

HibisCircus 2022. 5. 3. 14:42
728x90

 

nvidia docker 설치하는 방법은 아래의 공식 링크를 확인

https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html

 

Installation Guide — NVIDIA Cloud Native Technologies documentation

On RHEL 7, install the nvidia-container-toolkit package (and dependencies) after updating the package listing: Restart the Docker daemon to complete the installation after setting the default runtime: Note Depending on how your RHEL 7 system is configured

docs.nvidia.com

 

설치하면서 발생한 여러 에러를 적어본다.

 

Could not resolve host: github.com

 

정확한 에러는 모르겠으나 github에서 파일을 받아오는데 config관련하여 에러가 발생하였기 때문인 것으로 보인다. 해결방법은

 

$ git config --global --unset http.proxy 
$ git config --global --unset https.proxy

위의 두 줄을 입력 후 다시하면 된다.

 

 

그 후 발생한 에러

 

N: Ignoring file 'skypeforlinux.lis' in directory '/etc/apt/sources.list.d/' as it has an invalid filename extension
E: Conflicting values set for option Signed-By regarding source https://download.docker.com/linux/ubuntu/ focal: /usr/share/keyrings/docker-ce-archive-keyring.gpg != /usr/share/keyrings/docker-archive-keyring.gpg
E: Conflicting values set for option Signed-By regarding source https://nvidia.github.io/libnvidia-container/stable/ubuntu18.04/amd64/ /: /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg !=
E: The list of sources could not be read.

 

이는 /etc/apt/sources.list.d 디렉토리에 기존에 설치된 nvidia-docker.list 와 관련된 파일들이 존재하여 충돌하기 때문이다. 이름과 생성된 날짜를 보며 설치하는 파일들과 겹친다면 삭제해주고 다시 명령어를 입력해주면 잘 된다.

 

 

참조한 깃헙 이슈

 

https://github.com/desktop/desktop/issues/4872

 

Could not resolve host: github.com · Issue #4872 · desktop/desktop

Description I create a new repository in my local and complete the changes . After that I opened my github desktop to push the changes to my GitHub repo. As soon as i click the publish button it ga...

github.com

 

https://github.com/NVIDIA/nvidia-docker/issues/1626

 

Unable to use sudo apt-get · Issue #1626 · NVIDIA/nvidia-docker

Hi. I tried to install nvidia-container-runtime, setup the package repository and the GPG key. But I got an error while executing sudo apt-get update: nik@nik:~$ sudo apt-get update N: Ignoring fil...

github.com

 

 

-히비스서커스-

728x90