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