TheXed Asked: 2012-01-12 14:47:54 +0800 CST2012-01-12 14:47:54 +0800 CST 2012-01-12 14:47:54 +0800 CST Can someone tell me how to install reaver-wps? 772 Here is the webpage http://code.google.com/p/reaver-wps/ Can someone help me install it so I can play around with it? installation 5 Answers Voted Best Answer RolandiXor 2012-01-12T16:28:59+08:002012-01-12T16:28:59+08:00 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 chronos00 2012-07-12T16:17:32+08:002012-07-12T16:17:32+08:00 Even if you receive this error during "./configure": error: pcap library not found! installing libsqlite3-dev helps to solve it. Sam Rastin 2012-01-18T19:32:24+08:002012-01-18T19:32:24+08:00 If you receive the "error: sqlite3 library not found!" then run the following prior to configure: sudo apt-get install libsqlite3-dev redperadot 2012-02-16T17:58:19+08:002012-02-16T17:58:19+08:00 if permission is denied when using ./configure try sudo sh ./configure mivk 2012-08-14T21:52:02+08:002012-08-14T21:52:02+08:00 Before running ./configure, I needed to install a few libraries in Ubuntu 12.04. Try: sudo apt-get install sqlite3 libsqlite3 libsqlite3-dev libpcap-dev
You need to install libpcap*-dev first:
sudo apt-get install libpcap*-dev
Extract the tar file, then from the terminal:
Even if you receive this error during "./configure":
installing libsqlite3-dev helps to solve it.
If you receive the "error: sqlite3 library not found!" then run the following prior to configure:
if permission is denied when using
./configure
trysudo sh ./configure
Before running ./configure, I needed to install a few libraries in Ubuntu 12.04. Try: