일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- WSSS
- logistic regression
- Decision Boundary
- Pull Request
- docker attach
- vscode
- 프로그래머스
- AIFFEL
- 사회조사분석사2급
- Jupyter notebook
- cocre
- 백신후원
- 머신러닝
- numpy
- IVI
- CellPin
- docker exec
- HookNet
- 히비스서커스
- 도커
- cs231n
- 코크리
- GIT
- 기초확률론
- airflow
- linear regression
- aiffel exploration
- Multi-Resolution Networks for Semantic Segmentation in Whole Slide Images
- ssh
- docker
Archives
- Today
- Total
히비스서커스의 블로그
[Docker] ubuntu docker 완전히 지우고 설치하기 (feat. E: Sub-process /usr/bin/dpkg returned an error code (1) ) 본문
Programming/Docker
[Docker] ubuntu docker 완전히 지우고 설치하기 (feat. E: Sub-process /usr/bin/dpkg returned an error code (1) )
HibisCircus 2021. 10. 1. 17:18728x90
ubuntu os에서 docker 완전히 지우고 재설치하는 방법은 아래의 글의 방법 가장 효과적이었다.
https://askubuntu.com/questions/935569/how-to-completely-uninstall-docker
도커 엔진 삭제하기
# sudo apt-get purge -y docker-engine docker docker.io docker-ce docker-ce-cli
# sudo apt-get autoremove -y --purge docker-engine docker docker.io docker-ce
도커 컨테이너, 이미지, 볼륨, 사용자가 만든 파일 등 전부 삭제하기
$ sudo rm -rf /var/lib/docker /etc/docker
$ sudo rm /etc/apparmor.d/docker
$ sudo groupdel docker
$ sudo rm -rf /var/run/docker.sock
다시 설치하는 방법은 공식홈페이지를 참조
https://docs.docker.com/engine/install/ubuntu/
정말 간단하게는
$ sudo apt-get install docker-ce docker-ce-cli containerd.io
이 명령어 한 번으로 설치가 되는 듯 하다.
도커 엔진을 설치하는 도중 아래와 같은 에러가 발생하였는데 (docker-ce 설치 중)
Errors were encountered while processing:
docker-ce
E: Sub-process /usr/bin/dpkg returned an error code (1)
아래의 글에서 방법을 찾아 해결하였다.
$ sudo systemctl restart systemd-networkd.service # (disconnected network)
$ sudo apt remove docker-ce # If you hadn't done so before
$ sudo apt install docker-ce # Should start docker.service
$ sudo systemctl status docker.service # Verify docker.service is running
도커 완전히 삭제 후 다시 설치는 역시 신중히 고려해보고 하시길..!
▼ 도커 각티슈 케이스 보러가기 ▼
https://incatos.shop/surl/P/11
▼ 도커 각티슈 케이스 리뷰 ▼
https://biology-statistics-programming.tistory.com/233
-히비스서커스-
728x90