Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- port
- grep
- web.xml
- xargs
- IntelliJ
- VirtualBox
- 줄바꿈 문자
- Source
- import
- JavaScript
- resource
- GIT
- plugin
- netsh
- profile
- Windows
- maVen
- tomcat
- 네트워크
- lsof
- 단축키
- find
- Eclipse
- bash
- context
- Windows 10
- ssh
- vscode
- Quartz
- Mac
Archives
- Today
- Total
develog
[linux] kill -9 PID vs kill -9 -PGID 본문
# 프로세스 ID 가 12345 인 것만 종료한다
kill -9 12345
kill -KILL 12345
# 프로세스 그룹 ID 가 12345 에 속한 모든 프로세스를 종료한다
kill -9 -12345
kill -KILL -12345
Comments