전체 글 439

자주 사용하는 Docker command, argument 정리

Docker는 개념부터 시작하면 복잡하고 그 내용을 전부 정리하면 두께가 엄청나지만 실제로 사용하는 내용은 적다. 일반적으로 복잡한 일을 할 때보다 대충 환경 설정 귀찮아서 이미지 받은 뒤 컨테이너 만들어서 편하게 해보려고 쓰는 경우가 많기 때문에 쓰는 command와 argument (편의 상 태그라고 하겠다.) 만 쓰는 경우가 많다. 최소로 외워둘 커맨드 docker images : 받은 이미지 리스트 출력. docker ps -a : 현재 컨테이너 리스트 출력. docker rm CONTAINER_NAME : 컨테이너 삭제. --rm 태그 빼먹었을 때 자주 씀. docker rmi IMAGE_NAME:TAG : 이미지 삭제. docker start CONTAINER_NAME : 컨테이너 켜기. do..

Knowhow/Docker 2023.01.05

Docker run 시 executable file not found in $PATH: unknown 문제

Docker image를 pull 받은 후 run할 때 뜬금없이 다음 에러가 보일 때가 있다. docker: Error response from daemon: failed to create shim task: OCI runtime create failed: runc create failed: unable to start container process: exec: SOMETHING: executable file not found in $PATH: unknown. 위 에러에서 SOMETHING은 다양한 태그로 바뀔 수 있다. 가령 --gpus, --privileged 처럼 자주 사용하는 태그가 될 수도 있고 새로 넣는 명령어가 될 수도 있다. 원인은 SOMETHING에 들어가는 것들이 아니라 argumen..

Trouble/Docker 2023.01.05

[Linear algebra] 1. The geometry of linear equations

Introduction 가장 중요성을 느낀 기초 수학을 꼽으라면 선형대수학와 확률 통계라고 생각한다. 그 중 선형대수학은 자주 등장하는 것을 넘어서 항상 쓰는 수준이다. 그럼에도 불구하고 13년도 하반기 아무것도 모를 때 스쳐지나가듯 학점을 위해 공부했던 것이 선형대수학인지라 이해도가 충분하지 않다고 생각이 들어 오랜만에 다시 처음부터 볼 용기를 냈다. 자료는 아래 링크에서 제공하는 강의로 정했다. 13년도 내가 공부했던 책의 저자이자 선형대수학의 대명사 수준의 교수님이다. https://ocw.mit.edu/courses/18-06-linear-algebra-spring-2010/video_galleries/video-lectures/ Video Lectures | Linear Algebra | Mat..

Camera undistortion visualization(KB model, UCM, DS model)

아래 두 글에서 열심히 공부하고 설명하고자 시도했던 undistortion은 꽤나 어려운 내용이다. 2022.12.20 - [Knowhow] - Camera undistortion (pinhole, KB model) Camera undistortion (pinhole, KB model) 이전 글 2022.12.07 - [Knowhow] - Fisheye camera model(KB, UCM, DS 모델) 에서 다음과 같은 논문의 말이 이해가 안된다고 적은 바 있다. We propose the Double Sphere (DS) camera model that better fits cameras with fisheye lenses, has jseobyun.tistory.com 2022.12.29 - [Kno..

Knowledge/Vision 2022.12.29