sudo docker run --gpus all -it \
> -e DISPLAY=$DISPLAY \
> -e USER=$USER \
> -v /tmp/.X11-unix:/tmp/.X11-unix \
> -v /root/.Xauthority:/root/.Xauthority \
> -v /tmp/.docker.xauth:/tmp/.docker.xauth:rw \
> --volume="/media/jeff/Seagate Expansion Drive/.segmap:/root/.segmap" \
> --net host ac7 /bin/bash
sudo docker run --gpus all -it \ 모든 gpu의 연결
> -e DISPLAY=$DISPLAY \ 디스플레이 연결
> -e USER=$USER \
> -v /tmp/.X11-unix:/tmp/.X11-unix \
> -v /root/.Xauthority:/root/.Xauthority \
> -v /tmp/.docker.xauth:/tmp/.docker.xauth:rw \
> --volume="/media/jeff/Seagate Expansion Drive/.segmap:/root/.segmap" \ 외장하드 연결
> --net host ac7 /bin/bash 실행할 이미지 파일 (ac7)
--volume="/media/jeff/Seagate Expansion Drive/.segmap:/root/.segmap"
/media/jeff/Seagate Expansion Drive/.segmap 의 폴더를 /root/.segmap 에 포팅한다.
즉 도커 안에서의 /root/.segmap 은 /media/jeff/Seagate Expansion Drive/.segmap 에 연결되어 사용되어 진다는 의미를 갖는다.
'Autonomous Vehicle' 카테고리의 다른 글
오일러각(angle) 쿼터니언(x, y, z, w) 변환 (Python Code) (0) | 2021.11.10 |
---|---|
ZED F9P with RTK - WGS to UTM (0) | 2021.11.09 |
Docker 도커 이미지, 컨테이너 백업하고 삭제하는 방법 (0) | 2021.10.12 |
NCCL is required for GPU-build (0) | 2021.10.11 |
Error : file COPY cannot find "/usr/include/cudnn.h". (0) | 2021.10.09 |