iperf 최신 버전 설치
(Last Updated On: October 24, 2021)
install iperf latest version/ yum이나 apt에서 제공하는 iperf3 버전은 많이 낡았다. 최신버전은 –bidir (양방향) 측정을 지원한다.
Debian Linux
apt purge iperf3 apt -y install build-essential lib32z1 git clone https://github.com/esnet/iperf.git /opt/iperf cd /opt/iperf ./configure --prefix=/usr make -j$(nproc) && make install
apt purge iperf3를 실행하지 않고 패키지로 iperf3 만 제거한 경우 ldconfig
명령을 통하여 동적 라이브러리 링크 캐시를 정리한다.