# 리눅스 netstat 가 작동하지 않는다.
which netstat
/bin/netstat
# wsl 에서는 .exe 를 실행할 수있다.
# (cmd.exe calc.exe explorer.exe 등을 실행할 수 있어 좋다.)
# 마운트된 C 드라이브의 윈도우 디렉토리의 netstat.exe 를 실행하면 된다.
# 윈도우 netstat.exe -p (PID/Program) 옵션이 없어 사용할 수 없다.
/mnt/c/Windows/System32/netstat.exe -nato
# 다음과 같이 alias 를 설정해 놓으면 편하다.
echo "alias netstat='/mnt/c/Windows/System32/netstat.exe'" >> ~/.zshrc
comments:
댓글 쓰기