centos安装zmap
首先安装依赖
Bash
yum install cmake gmp-devel gengetopt libpcap-devel flex byacc json-c-devel libunistring-devel
---------------------------------------------------------------
提示找不到gengetopt
找到gengetopt的安装地址link
这里我选择了最新版本
Bash
wget ftp://ftp.gnu.org/gnu/gengetopt/gengetopt-2.22.6.tar.gz
tar -zvxf gengetopt-2.22.6.tar.gz
cd gengetopt-2.22.6
./configure
make
make install
make的时候如果提示g++: command not found:
Bash
yum -y install gcc+ gcc-c++
----------------------------------------------
接下来,直接用git指令克隆zmap的源码
Bash
git clone https://github.com/zmap/zmap
cd zmap/
cmake .
make -j4
make install
安装完成!