Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- message_filters
- ROS2
- foxy
- 블랙플라이
- 갤럭시s24
- 강화학습
- 센서퓨전
- 메시지필터
- Humble
- ubuntu
- 센서데이터
- AI Olympics 레슬링
- AI Olympics 러닝
- AMZ
- docker
- Ros
- s24
- ubuntu22.04
- 자율주행카메라
- IJCAI-ECAI
- 강화학습프로젝트
- cuDNN
- blackfly
- 자율주행
- PPO알고리즘
- lidar-camera
- ros2 docker
- sensor fusion
- AI olympic
- AI올림픽
Archives
- Today
- Total
나름 공부하는 일상
[Docker] ubuntu22.04에 Docker 설치하기 본문
해당 포스팅에서는 Linux(ubuntu)시스템에서 Docker를 빠르고 간단하게 설치하기 위해 get.docker.com에서 설치 스크립트를 다운로드하여 Docker를 설치하는 방법을 포함하고 있습니다.
[환경]
os: ubuntu 22.04
[다음 글]
2024.02.22 - [IT 개발/ubuntu 밀었을 때, 봐] - [Docker] 도커에서 ROS2 환경 구축하기
0. Docker 설치하기
아래 5단계에 걸쳐 Linux 시스템에서 Docker를 설치할 수 있으며, step2와 3의 경우 검증을 위한 단계이므로 굳이 실행할 필요가 없다.
step1. Docker 스크립트를 다운 받는다.
(curl 명령어가 없는 경우, 아래 명령어로 설치)
# 0.install curl
sudo apt install curl
# 1.download the script
curl -fsSL https://get.docker.com -o install-docker.sh
step2. 선택사항) Docker 스크립트의 내용을 검토한다.
# 2.verify the script's content
cat install-docker.sh
step3. 선택사항) 테스트용으로 설치해 보고 스크립트를 검증한다.
# 3.run the script with --dry-run to verify the steps it executes
sh install-docker.sh --dry-run
step4. 실제로 Docker 스크립트를 이용해 설치한다.
# 4.run the script either as root, or using sudo to perform the installation.
sudo sh install-docker.sh
step5. Docker에 권한을 부여한다. (적용을 위해 로그아웃 혹은 재부팅 필요)
# 5.Add your user to the docker group.
sudo usermod -aG docker $USER
'IT 개발 > ubuntu 세팅' 카테고리의 다른 글
[Docker] 도커에서 ROS2 환경 구축하기 #2 (0) | 2024.02.22 |
---|---|
[Docker] 도커에서 ROS2 환경 구축하기 #1 (2) | 2024.02.22 |
ubuntu22.04.3 학습 환경 세팅하기 (CUDA, cuDNN) (1) | 2024.02.15 |
우분투에서 terminator 설치 및 예쁘게 설정하기 (0) | 2024.02.15 |
ubuntu에서 한글 입력하기 (0) | 2024.02.14 |