데이터 공부를 기록하는 공간

DOCKER 설치 오류 관련 본문

STUDY/MLOPS

DOCKER 설치 오류 관련

BOTTLE6 2021. 12. 6. 20:35

https://www.youtube.com/watch?v=REYVRyXdSKU
https://rigorous-firefly-d50.notion.site/Docker-1-2-be5f796e34ac4903af0c97e59f1eb98e

 

Docker 실습 1, 2 - 설치와 기본 명령어

1. Docker 설치

rigorous-firefly-d50.notion.site

display 환경 변화

> https://mentha2.tistory.com/27

 

[Virtualbox 설정] 게스트 확장 후에도 전체화면이 적용안될 때 해결방법

# 버추얼박스(Virtualbox) 전체화면 설정 방법 입니다. 버추얼박스(Virtualbox) 확장 게스트 프로그램 설치 후에도 전체화면으로 변하지 않을 때 해결하는 방법에 대해 포스팅 합니다. 1. 켜져있는 게스

mentha2.tistory.com

 

IP조회

ip addr

hostnma 조회

hostname

hostname 변경

sudo vi / etc/hostname

변경 후 esc 후 ":eq"로 저장

root 비번 변경

sudo passwd root

root로 변경

su - root


dpkg/lock 오류 발생 시

enant.tistory.com/18

sudo killall apt apt-get
sudo rm /var/lib/apt/lists/lock
sudo rm /var/cache/apt/archives/lock
sudo rm /var/lib/dpkg/lock*
sudo dpkg --configure -a
sudo apt update

snapd 오류 발생시

askubuntu.com/questions/1037431

sudo fuser -vki /var/lib/dpkg/lock
sudo apt purge snapd
sudo dpkg --configure -a
sudo apt update
sudo apt upgrade
sudo apt dist-upgrade
sudo apt install snapd

'dpkg'가 중단되었습니다 오류 발생시

https://ubuntuaa.com/ko/q/136737

위 3개를 조화하여 성공......
안될경우에는 root모드로 들어가서 해보는것도 좋음..

Comments