사용하는 이유
kill : 특정 process에게 특정 signal을 보내기 위해서입니다. 주로 process를 강제 종료하기 위해 사용합니다.
ps : 활성화된 process들에 대한 정보를 보기 위해서입니다. 주로 종료하려는 process의 pid를 찾기 위해 사용합니다.
사용법
kill <pid> # pid를 가진 process에게 TERM signal을 보냅니다.(terminate; 즉 종료하라는 뜻)
kill -s <signal> <pid> # pid를 가진 process에게 signal을 보냅니다.
kill -l # signal 목록을 출력합니다.
ps -al # 모든 process를 long format으로 출력합니다.
pid : process identifer 프로세스 구분자 프로세스의 고유한 번호입니다.
linux man page 설명
The command kill sends the specified signal to the specified process or process group.
kill 명령어는 특정 프로세스나 프로세스 그룹에게 특정한 신호를 보냅니다.
ps displays information about a selection of the active processes.
ps는 선택된 활성화된 프로세스들에 대한 정보를 보입니다.
참고 자료
'개발 > linux' 카테고리의 다른 글
soft link와 hard link 차이 그리고 inode (0) | 2022.10.22 |
---|---|
linux ln 사용법, 설명 : 링크 만들기 (0) | 2022.10.22 |
linux apk 사용법, 설명 (0) | 2022.10.22 |
linux yum 사용법, 설명 (0) | 2022.10.22 |
linux curl과 wget 차이, 사용법, 설명 (0) | 2022.10.22 |
댓글