zmap-freebsd/INSTALL

33 lines
891 B
Plaintext
Raw Normal View History

2013-08-17 18:50:07 +00:00
SYSTEM REQUIREMENTS
2013-08-16 15:12:47 +00:00
ZMap is designed to run on GNU/Linux systems and can be built with
2013-08-17 18:50:07 +00:00
most recent versions of gcc. Currently, ZMap only supports 64-bit
systems. Running it requires at least 600 MB of free memory.
BUILDING AND INSTALLING ZMAP
2013-08-16 15:12:47 +00:00
2013-08-17 18:50:07 +00:00
ZMap requires GMP, a free library for arbitrary precision arithmetic,
gengetopt, and libpcap. These packages can be installed on
Debian-based systems by running:
2013-08-16 15:12:47 +00:00
sudo apt-get install libgmp3-dev gengetopt libpcap-dev
2013-08-17 18:50:07 +00:00
2013-08-16 15:12:47 +00:00
or on RHEL- and Fedora-based systems by running:
sudo yum install gmp gmp-devel gengetopt libpcap-devel
2013-08-17 18:50:07 +00:00
Once these prerequisites have been installed, ZMap can be installed
by running:
2013-08-16 15:12:47 +00:00
cd src
make
followed by:
sudo make install
Redis support is not enabled by default. If you are want to use ZMap
with Redis, you will first need to install Hiredis. Then, rebuild
ZMap with the command "make REDIS=true".
2013-08-29 18:29:59 +00:00