주 메뉴 열기

wwiki β

바뀜

리눅스

683 바이트 추가됨, 2019년 11월 21일 (목) 05:24
편집 요약 없음
* hibernate.target
* hybrid-sleep.target
 
==특정계정으로 명령어 실행==
 
$ sudo -u 아이디 "명령어"
 
==파일검색 후 명령실행==
find . -name "*.mp3" -exec ./test.sh {} \;
 
find . -type f -exec chmod o-w {} \;
 
* exclude path
 
find . -path ./misc -prune -o -name '*.txt' -print
 
==signal==
유닉스 계열 OS에서 프로세스간 통신이다.
===inerrupt===
SIGINT SIG=signal INT=inerrupt
 
Ctrl+C
 
===Segmentation Violation===
SIGSEGV SIG=signal SEGV= Segmentation Violation
 
잘못된 메모리 참조.
 
에러메시지: Program terminated with signal SIGSEGV, Segmentation fault.
 
===Terminal Stop===
SIGTSTP
 
Ctrl+Z
 
터미널 정지 신호.
 
===QUIT===
 
SIGQUIT
 
종료뒤 코어덤프
 
Ctrl+\
편집
2,431