본문 바로가기
개발/linux

kill, ps 사용법, 설명

by amkorousagi 2022. 10. 22.

kill ps

사용하는 이유


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는 선택된 활성화된 프로세스들에 대한 정보를 보입니다.

 

 

참고 자료


 

 

kill(1): terminate process - Linux man page

kill(1) - Linux man page Name kill - terminate a process Synopsis kill [-s signal|-p] [--] pid... kill -l [signal] Description The command kill sends the specified signal to the specified process or process group. If no signal is specified, the TERM signal

linux.die.net

 

 

 

ps(1): report snapshot of current processes - Linux man page

ps(1) - Linux man page Name ps - report a snapshot of the current processes. Synopsis ps [options] Description ps displays information about a selection of the active processes. If you want a repetitive update of the selection and the displayed information

linux.die.net

 

댓글