系统相关
首页 > 系统相关> > 【Linux】centos7 测试机器带宽

【Linux】centos7 测试机器带宽

作者:互联网

三种安装方式
1、yum安装

yum install iperf3

2、rpm离线安装
https://iperf.fr/iperf-download.php安装包下载连接

rpm -ivh 安装包名称

3、源码安装
https://github.com/esnet/iperf下载源码

./configure
make
make install

最后可能会报错iperf3: error while loading shared libraries: libiperf.so.0: cannot open shared object file: No such file or directory
执行以下命令即可解决

export LD_LIBRARY_PATH=/usr/local/lib/

标签:安装包,带宽,rpm,centos7,源码,file,Linux,iperf,安装
来源: https://blog.csdn.net/weixin_45066823/article/details/120552750