$ top -b -n 1 | grep zombie
좀비프로세스 : 실행은 완료되었지만 정상적으로 종료되지 못한 프로세스
+ PID를 계속 점유하고 있기에, 원활한 cpu 사용을 위해 종료해주는 것이 좋음
$ kill -9 [pid]
위의 명령어를 이용하여 좀비프로세스를 종료하거나, 이를 실행한 부모프로세스를 종료하는 방법이 있음.
- [-9] option : 프로세스 강제 종료 (작업 중인 내용 저장 안 되니 유의)
'Setting, Error > Linux' 카테고리의 다른 글
[Error] Ping Temporary failure in name resolution (0) | 2024.12.24 |
---|---|
사용하고 있는 포트 및 프로세스 확인 (0) | 2024.11.25 |
cannot remove [file name]: Device or resource busy (0) | 2024.10.08 |
Docker Container Stop 원인 해결 - GPG key Error (0) | 2024.03.05 |
InternalError: Graph execution error: Detected at node 'StatefulPartitionedCall 8' defined at (most recent call last): (0) | 2023.09.06 |