Information Technology/Linux&Unit(3)
-
MacOS 쉘(shell) 명령어가 먹히지 않는 오류(ls 등 기타 명령어)
PATH설정을 하다가 실수로 vim, vi, ls 명령어가 듣지 않는다면!!!!!!!!! 터미널을 켜고 PATH="$PATH:/usr/local/bin:/usr/bin:/bin" 해결 됩니다!!
2019.02.20 -
[docker/container/도커/컨테이너] official guide tutorial(Part 1~ 2) 공식가이드 실습
해당 내용은 Docker 공식 사이트에서 실습한 내용을 정리한 내용 입니다. The following are the tutorial of docker official guide below what I have done.https://docs.docker.com/get-started/Get Started, Part 1: Orientation and setupDocker conceptsDocker is a platform for developers and sysadmins to develop, deploy, and run applications with containers. The use of Linux containers to deploy applications is called containerizati..
2018.12.04 -
리눅스에 디렉토리 만들고 복사할 수 있게 권한주기
리눅스에서 mkdir 로 디렉토리를 만들고 파일을 복사 붙여 넣기를 할 경우 권한문제로 안되는 경우가 있습니다. 이럴때는 해당 폴더에 chmod -R 777 대상폴더로 입력을 하면 쉽게 파일 복사가 됩니다. (-R" 옵션 : 하위 디렉토리의 모든 디렉토리및 파일의 퍼미션이 변경)
2018.02.11