리눅스에서 프로그램이 메모리에서 프로세스로 동작할 때, 기본적으로 할당되는 3개의 fd가 있다 이들에게 각각 0, 1, 2 라는 정수가 할당되며, POSIX 표준에서는 STDIN_FILENO, STDOUT_FILENO, STDERR_FILENO로 참조된다. 이 매크로는 헤더 파일에서 찾아볼 수 있다. [출처] https://dev-ahn.tistory.com/96
dock 설치 sudo apt-get install plank -y plank --preferences http://blog.naver.com/PostView.nhn?blogId=lghlove0509&logNo=220947609181 테마 설치 sudo apt-get install gnome-tweak-tool -y 특정 paper 테마 (tweak-tool에서 설정) sudo add-apt-repository ppa:snwh/pulp sudo apt-get update sudo apt-get install paper-icon-theme paper-gtk-theme -y sudo apt-get install unity-tweak-tool
1. 리눅스 배포판 https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%EC%A2%85%EB%A5%98_%ED%99%95%EC%9D%B8,_%EB%A6%AC%EB%88%85%EC%8A%A4_%EB%B2%84%EC%A0%84_%ED%99%95%EC%9D%B8 2. 리눅스 커벌 버전 https://zetawiki.com/wiki/%EB%A6%AC%EB%88%85%EC%8A%A4_%EC%BB%A4%EB%84%90_%EB%B2%84%EC%A0%84_%ED%99%95%EC%9D%B8 uname -r sudo cat /proc/version
cat /proc/cpuinfo *운영체제 비트 확인 getconf LONG_BIT
errno: error 넘버 strerror: error 넘버를 string으로 해석 https://github.com/surinoel/lsp/blob/master/error.c
Mutual exclusion 기반의 Race condition을 해결하기 위한 Lock machanism http://man7.org/linux/man-pages/man2/flock.2.html shared lock과 exclusive lock의 차이 https://jeong-pro.tistory.com/94 https://github.com/surinoel/Linux-SP/blob/master/flock.c [출처] COPYRIGHT 인프런