1. 첨부된 두개의 파일을 리눅스 서버에 올립니다. 설치 순서는 libpcap-0.7.1.tar.gz 먼저 설치 후에, tcpdump-3.9.1-096.tar.gz를 설치합니다. 2. 로그인 상태에서 아래와 같이 첨부된 두개의 파일을 받은 위치에서 실행합니다. gzip -d libpcap-0.7.1.tar.gz tar -xvf libpcap-0.7.1.tar cd libpcap-0.7.1 ./configure make make install cd .. gzip -d tcpdump-3.9.1-096.tar.gz tar -xvf tcpdump-3.9.1-096.tar cd tcpdump-3.9.1-096 ./configure make make install 이제 tcpdump를 실행해 봅니다. 실행 중지는 ..