Can someone tell me how to install reaver-wps?

Here is the webpage http://code.google.com/p/reaver-wps/

Can someone help me install it so I can play around with it?


Solution 1:

You need to install libpcap*-dev first:

  • sudo apt-get install libpcap*-dev

Extract the tar file, then from the terminal:

cd /path/to/src
./configure --prefix=/usr
make
sudo make install

Solution 2:

Even if you receive this error during "./configure":

error: pcap library not found!

installing libsqlite3-dev helps to solve it.

Solution 3:

If you receive the "error: sqlite3 library not found!" then run the following prior to configure:

sudo apt-get install libsqlite3-dev