WSL2에서 ifconfig, netstat : command not found 해결

command가 없다고 뜬 상황

WSL2환경에서 세팅하면서 netstat 또는 ifconfig를 해야되는 일이 있는데 명령어를 입력하면

zsh : command not found: netstat

다음과 같이 출력되는 경우가 있다.

WSL2가 공식적으로 netstat, ifconfig가 포함되어있는 net-tools를 지원하지 않는 것이 원인이다.

해결법은 다음과 같다.

$ apt install net-tools

ifconfig 명령어 결과
netstat 명령어 결과

net-tools 설치하면 두 명령어 모두 위와 같이 잘 작동한다.