-1

i am running Fedora 27 and i am trying to install Reaver 1.4 here is the command.

 ./configure

and the result.

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!

any help would be appreciated.

mego
  • 9
  • 1
  • 1
  • 1
  • 2
    If we only could have some kind of centralised knowledge database where one could type in a request like "pcap library not found" and get a set of automatically collected bits of knowledge related to the problem! – n. m. could be an AI Nov 22 '17 at 08:59
  • @n.m. i don't understand where is the problem, i specified that i was trying to install reaver 1.4 on fedora 27 and got the error ! – mego Nov 22 '17 at 09:11
  • The **first** result Google returns to me has all required information. (And the second, and the third). Perhaps you should consider changing your Google provider. – n. m. could be an AI Nov 22 '17 at 09:37
  • i installed libcap library and still get the error, it feels like libcap is vanished from the system ! – mego Nov 22 '17 at 11:38
  • and btw all results your talking about are about ubuntu and debian based , i am using fedora – mego Nov 22 '17 at 11:39
  • i was missing a library all i did is : yum install sqlite-devel then every thing goes fine. Thanks for trying helping me. – mego Nov 22 '17 at 11:52

2 Answers2

1

For debian based system you'll need the following packages installed:

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

Then try ./configure again and you should be fine

Gabriel Ziegler
  • 361
  • 3
  • 18
0

SOLVED

i was missing a library all i did is :

yum install sqlite-devel

then every thing goes fine.

Thanks for trying helping me.

mego
  • 9
  • 1
  • 1
  • 1