centos7编译goreplay1.0.0教程

给你一囗甜甜゛ 提交于 2020-03-19 10:25:09

3 月,跳不动了?>>>

centos7编译goreplay1.0.0教程

安装golang

yum install golang

设置GOPROXY

export GOPROXY=https://goproxy.io

Fetch libpcap dependencies

yum install flex bison -y

安装libpcap1.7.4

wget http://www.tcpdump.org/release/libpcap-1.7.4.tar.gz && tar xzf libpcap-1.7.4.tar.gz
cd libpcap-1.7.4
./configure && make install

下载goreplay并编译

git clone https://github.com/buger/goreplay.git
cd goreplay
go build

最后生成了goreplay执行文件就完成了

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!