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 |
29 | 30 | 31 |
Tags
- VirtualBox
- tomcat
- Windows
- JavaScript
- 네트워크
- GIT
- lsof
- 단축키
- Eclipse
- port
- Windows 10
- IntelliJ
- 줄바꿈 문자
- resource
- Quartz
- bash
- vscode
- web.xml
- maVen
- ssh
- profile
- grep
- plugin
- context
- find
- xargs
- Source
- netsh
- Mac
- import
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