找不到错误的pcap库

时间:2017-11-22 08:49:47

标签: linux gcc libpcap

我正在运行Fedora 27,我正在尝试安装Reaver 1.4 这是命令。

 ./configure

和结果。

checking for gcc... gcc  
checking whether the C compiler works... yes  
checking for C compiler default output file name... a.out  
checking for suffix of executables...   
checking whether we are cross compiling... no  
checking for suffix of object files... o  
checking whether we are using the GNU C compiler... yes  
checking whether gcc accepts -g... yes  
checking for gcc option to accept ISO C89... none needed  
checking for pcap_open_live in -lpcap... no  
error: pcap library not found!

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:1)

对于基于debian的系统,您需要安装以下软件包:

sudo apt-get install sqlite3 libsqlite3-dev libpcap0.8-dev

然后再次尝试./configure,你应该没问题

答案 1 :(得分:0)

已解决

我错过了一个图书馆我所做的就是:

yum install sqlite-devel
然后一切都很顺利。

感谢您帮助我。