Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

lsof등 많이 쓰는 terminal command를 정리하자 #72

Open
zerozoo-a opened this issue Jul 18, 2023 · 0 comments
Open

lsof등 많이 쓰는 terminal command를 정리하자 #72

zerozoo-a opened this issue Jul 18, 2023 · 0 comments

Comments

@zerozoo-a
Copy link
Owner

zerozoo-a commented Jul 18, 2023

자주쓰는 명령어

  • lsof

    • lsof = list of file process를 점유하고 있는 list를 보여줍니다.
      (기본적으로 많은 내용을 담고 있으므로 찾고 싶은 특정 process를 찾아내려면 필터링이 필요합니다.)

      • --help 명령어를 통해 option과 사용법을 알 수 있습니다.

      • -i 옵션을 통해 특정 port번호를 사용하고 있는 PID(process id)를 확인할 수 있습니다.

  • kill

    • 특정 프로세스를 죽입니다.
      • kill -l 명령어를 통해 프로세스를 죽이는 방식을 확인 할 수 있습니다.
      // OSX 13.3.1
      HUP INT QUIT ILL TRAP ABRT EMT FPE KILL BUS SEGV SYS PIPE ALRM TERM URG STOP TSTP CONT CHLD TTIN TTOU IO XCPU XFSZ VTALRM PROF WINCH INFO USR1 USR2
      • 보통 9, 15를 많이 사용합니다. 9는 kill -l의 kill을 나타내며 15는 term (terminate)를 나타냅니다. 9는 강제 종료, 15는 저장 후 종료입니다.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant