首先安装依赖

Bash
  1. yum install cmake gmp-devel gengetopt libpcap-devel flex byacc json-c-devel libunistring-devel

---------------------------------------------------------------

图片.png

提示找不到gengetopt
找到gengetopt的安装地址link
这里我选择了最新版本

Bash
  1. wget ftp://ftp.gnu.org/gnu/gengetopt/gengetopt-2.22.6.tar.gz
  2. tar -zvxf gengetopt-2.22.6.tar.gz
  3. cd gengetopt-2.22.6
  4. ./configure
  5. make
  6. make install

make的时候如果提示g++: command not found:

Bash
  1. yum -y install gcc+ gcc-c++

----------------------------------------------

接下来,直接用git指令克隆zmap的源码

Bash
  1. git clone https://github.com/zmap/zmap
  2. cd zmap/
  3. cmake .
  4. make -j4
  5. make install

安装完成!

发表评论

邮箱地址不会被公开。 必填项已用*标注