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

318 B


# 모든 프로세스 확인
ps -ef

# 특정 프로세스 확인
ps -ef|grep www

# 특정 포트를 사용하는 프로세스 확인
netstat -tnlp|grep 20001

# 프로세스 강제 종료
kill -9 1234

# 프로세스 경로 확인
 netstat -ntap | grep LISTEN | grep 80
 ls -al /proc/4091928 | grep exe