Obsidian/Recognition/Programing/Linux/Ubuntu/프로세스 확인 및 강제 종료.md

15 lines
217 B
Markdown

```bash
# 모든 프로세스 확인
ps -ef
# 특정 프로세스 확인
ps -ef|grep www
# 특정 포트를 사용하는 프로세스 확인
netstat -tnlp|grep 20001
# 프로세스 강제 종료
kill -9 1234
````