좀비 프로세스 찾기, 죽이기

Jmnote (토론 | 기여)님의 2012년 2월 6일 (월) 22:13 판 (새 문서: *좀비 프로세스 찾기 *좀비 프로세스 죽이기 ==명령어== ;찾기 <source lang='bash'> ps -ef | grep defunct </source> ;죽이기 <source lang='bash'> ps -ef | grep ...)
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)
  • 좀비 프로세스 찾기
  • 좀비 프로세스 죽이기


명령어

찾기
ps -ef | grep defunct
죽이기
ps -ef | grep defunct | awk '{print $3}' | xargs kill -9
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}