bash: autoreconf: command not found...
解决方法:yum install install autoconf automake libtool
[root@centos7-126 arp-scan]# autoreconf –install
autoreconf: 'configure.ac' or 'configure.in' is required
原因:参数不对缺少一个横杠,正确用法:cat README 复制README中的autoreconf --install
configure: error: Check that you have libpcap version 0.8 or later installed
configure: error: Check that you have libpcap version 1.5 or later installed
解决办法:
yum list | grep -i libpcap
yum install libpcap-devel -y
附:
- git clone https://github.com/royhills/arp-scan.git
- cd arp-scan
- autoreconf --install
- ./configure
- make
- make check
- make install