vscode input 파일이용하기 리눅스에서 자주 이용하는 인풋 리다이렉션을 윈도우환경의 vscode의 터미널에서 이용하고 싶었다. -> ./a.out 가 컴파일된 실행파일, input.txt 가 입력하고 싶은 인풋파일 In Linux $ ./a.out Get-Content .\input.txt | .\a.exe 설명: Get-Content는 파일안의 내용을 볼 수 있는 PS(PowerShell) 명령어, PS에서는 리눅스에서 인풋리다이렉션인 " 프로그래밍 2020.01.30
[linux] could not open lock file /var/lib/dpkg/lock-frontend 에러 $ apt-get install htop E: Could not open lock file /var/lib/dpkg/lock-frontend - open (13: Permission denied) E: Unable to acquire the dpkg frontend lock (/var/lib/dpkg/lock-frontend), are you root? 상황 자세히는 모르겠지만 프로세스가 점유하고 있는 상황인듯 하다 해결법 1) sudo로 실행하면 되는 경우도 존재한다. 2) 터미널을 통해 모든 프로세스를 죽여준다 killall apt apt-get 진행중인 프로세스가 없다고 뜨면 아래와 같이 하나씩 디렉토리를 삭제 $ sudo rm /var/lib/apt/lists/lock $sudo rm /va.. 프로그래밍/linux 2019.09.07
배열 scanf 로 입력받기 에러 int unt[100]; scanf("%d",unt[0]); 하고 값이 제대로 저장되지 않는다. 상황 unt[0] 가 주소가 아니기때문에 해결법 scanf("%d",&unt[0]); 원인 배열 주소를 구하는 방법은 주소연산자 & 를 붙이거나 ex) for(i=0; i 프로그래밍/C,C++ 2019.05.18
[linux]비어있지 않은 폴더 지우는 방법 에러 rmdir : failed to remove "folder" : Directory not empty 상황 rmdir 명령어를 통해서 폴더를 지우려고 하는데 안에 비어있지 않는 폴더일 때 생기는 에러표시이다 안에 내용을 실수로 지우는 것을 방지하기 위해 되어있는 에러코드인듯 하다 해결법 $rm -rf [folder name] -> permission denied 가 뜨면 sudo를 사용하자. $sudo rm -rf [folder name] 또는 $chown [user name] [folder name] $sudo rm -r [folder name] 을 해보는 것도 좋은 시도라고 한다. 원인 -f = to ignore non-existent files, never prompt -r = to remove.. 프로그래밍/linux 2019.05.12
[진행중][linux] 리눅스에 카카오톡 깔기 환경 ubuntu 16.04 wine 이 삭제했다 지웠다해서 지저분하게 깔려있는 상태 -> winXP - x86 기준으로 깔았었는데 방화벽 에러가 떠서 포기.. 거기다가 다시 깔아보겠다고 playonlinux 도 깔아서 다시 해본 상태 -> 이전 설정과 엃혀서 win 7 -x86 기준으로 깔려다가, 기존에 설정되어있던 winxp 과 꼬인상태.. 그거 해결하고도 아직 에러가 뜬다. 오기가 생겨서 더 해봐야겠다 프로그래밍/linux 2019.04.23
[linux] /usr/local or /opt? Everything that has to be compiled & installed Unix-style and complies to FHS -> /usr/local Everything else (e.g. a java web-application that comes with it's own applicationserver and loads of resources in a zip archive -> /opt link - https://superuser.com/questions/122420/usr-local-or-opt 프로그래밍/linux 2019.04.20
[docker] Code exited(1) error 에러 [docker] Code exited(1) error 상황 docker run container 을 한 이후 $docker ps 를 했는데 실행되고 있지 않을 때 docker ps -a 를 이용하면 실행되지 않고 code exited(1) error 가 띄어져 있는것을 볼 수 있다 에러나 난 것인데 해결법 $docker logs [container] 를 이용해서 자세한 에러를 확인해야된다. 원인 빌드하는 과정에서 오류가 떠서 정상적으로 컨테이너가 작동하지 않는 것으로 보인다. 프로그래밍/Docker 2019.04.20
[docker] Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "exec: \"--name\": executable file not found in $PATH": unknown. 에러 Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "exec: \"--name\": executable file not found in $PATH": unknown. 계속 이 에러가 뜨는 이유가 뭘까 상황 이미지 빌드하고 $ docker run -p 49160:8080 -d node-web-app --name node_web 하려는 상황 해결법 $ docker run -p 49160:8080 -d node-web-app $ docker container rename elated_mahavira(자동으로 지어진 이름) node_web 원인 은 아직 못.. 프로그래밍/Docker 2019.04.20
[Linux] vim 수정중에 can't open file for writing 참고 https://stackoverflow.com/questions/8253362/etc-apt-sources-list-e212-cant-open-file-for-writing] /etc/apt/sources.list" E212: Can't open file for writing I am trying to edit sources.list using vi editor but getting the following error while saving the file: /etc/apt/sources.list" E212: Can't open file for writing stackoverflow.com 기본적으로 권한이 없는 곳에서 파일을 만들거나 수정할 때 생기는 문제인 듯 하다. 나같은 경우는 node.js.. 프로그래밍 2019.04.20