일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- 프로그래머스
- 도커
- HookNet
- CellPin
- 오블완
- IVI
- aiffel exploration
- docker attach
- 사회조사분석사2급
- 티스토리챌린지
- docker
- cocre
- 백신후원
- GIT
- 히비스서커스
- airflow
- Jupyter notebook
- Pull Request
- numpy
- logistic regression
- 코크리
- docker exec
- Decision Boundary
- vscode
- ssh
- WSSS
- cs231n
- AIFFEL
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- 기초확률론
- Today
- Total
히비스서커스의 블로그
[Docker] nvidia docker 설치 중 여러 발생 에러 해결 본문
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
-히비스서커스-