OS
[도커] 기본 패키지 설치하기
두유_
2024. 9. 20. 16:54
도커 내렸다 올렸더니 다 날라감.
아래 스크립트 순차 실행해주면 됨
1. 저장소 업데이트
apt update
2. sudo 설치
1) root 계정 접속
su -
2) sudo install 명령어
apt-get install sudo -y
3. apt-utils 설치
apt-get update && apt-get install -y --no-install-recommends apt-util
3. net-tools설치
- netstat 명령어를 실행하기 위함
apt-get install net-tools -y