我在CentOS 6.5 64位上安装zmap时遇到问题
我已遵循此处的所有说明:https://zmap.io/download.html
并收到以下错误;
[root@cs307 zmap-1.1.0]# make install
[100%] Built target zmap
Install the project...
-- Install configuration: ""
--
CMake Error at zmap_conf_install.cmake:4 (file):
file called with incorrect number of arguments
Call Stack (most recent call first):
cmake_install.cmake:36 (INCLUDE)
make: *** [install] Error 1
[root@cs307 zmap-1.1.0]#
zmap_conf_install.cmake的内容是:
foreach(conf_file blacklist.conf;zmap.conf)
message(STATUS "")
if(NOT EXISTS "/etc/zmap/")
file(INSTALL "conf/" DESTINATION "/etc/zmap")
endif()
endforeach()
我做错了什么想法?
答案 0 :(得分:-1)
我创建了/ etc / zmap目录,它对我有用! :)