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 |
Tags
- xargs
- tomcat
- port
- VirtualBox
- IntelliJ
- Mac
- ssh
- Windows
- find
- Quartz
- grep
- profile
- 단축키
- 줄바꿈 문자
- vscode
- web.xml
- Eclipse
- lsof
- Source
- context
- maVen
- GIT
- bash
- import
- 네트워크
- plugin
- Windows 10
- JavaScript
- resource
- netsh
Archives
- Today
- Total
develog
[Linux] lsof 본문
lsof
- list open files
22번 포트에서 실행중인 명령어 보기
sudo lsof -i tcp:22
80 포트에서 실행중인 프로세스 모두 제거
sudo lsof -i tcp:80 -s tcp:listen | sudo xargs kill
Comments