Closed GoogleCodeExporter closed 8 years ago
[deleted comment]
sudo apt-get install libpcap0.8-dev
Original comment by der...@libero.it
on 6 Jan 2012 at 10:49
Only if it was that simple...
sudo apt-get install libpcap0.8-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libpcap0.8-dev is already the newest version.
libpcap0.8-dev set to manually installed.
0 upgraded, 0 newly installed, 0 to remove and 6 not upgraded.
~/reaver-wps-read-only$ ./configure
[...]
checking for pcap_open_live in -lpcap... no
error: pcap library not found!
Original comment by mojavo...@gmail.com
on 6 Jan 2012 at 12:48
I can confirm this behavior, though I don't know why the configure script can't
find pcap_open_live in libpcap.so. It uses the standard AC_CHECK_LIB macro, and
pcap_open_live is clearly in the library (confirmed by readelf). Will need to
look in to this more; for now, use something other than Ubuntu 11.10 (this
doesn't happen in Ubuntu 10.04 or BT5).
Original comment by cheff...@tacnetsol.com
on 6 Jan 2012 at 1:56
Fedora 16..pcap and pcap-devel installed..
i get same results from ./configure
Original comment by ianc...@gmail.com
on 6 Jan 2012 at 6:49
Forgot to add: x64 system
Original comment by ianc...@gmail.com
on 6 Jan 2012 at 6:50
I have found the solutions.
The configure script exits on SQLite3..so just install sqlite3-devel and
everything is ok
Original comment by ianc...@gmail.com
on 6 Jan 2012 at 6:57
Installing "libsqlite3-dev" in Ubuntu 12.04 works. Thanks for the solution :)
Original comment by rob...@keizer.ca
on 6 Jan 2012 at 7:27
@mojavosas, I don't have this problem anymore with the latest SVN.
Original comment by cheff...@tacnetsol.com
on 6 Jan 2012 at 7:41
Correct - r73 fix'ed the issue.
Installing "libsqlite3-dev" is also a good idea.
Original comment by mojavo...@gmail.com
on 6 Jan 2012 at 8:13
Original comment by cheff...@tacnetsol.com
on 6 Jan 2012 at 8:18
in fedora 16
yum install libpcap-devel
yum install sqlite-devel
all works!
Original comment by noisey...@gmail.com
on 9 Jan 2012 at 8:50
got the fix for Ubuntu 10.04
apt-get install libpcap3-dev
apt-get install libsqlite3-dev
apt-get install libnl2-dev
now the important:
!!! libnl2 needs libdect !!!
so you have to edit the configure script with your editor - I take vi :)
vi configure
on line 2784 add -lnl and -ldect => LDFLAGS="-ldl -lm -lpcap -lsqlite3 -lnl
-ldect $LDFLAGS"
on line 2793 add -lnl and -ldect => LIBS="-lpcap -lnl -ldect $LIBS"
save all with your editor and exit (in vi with ":x")
do the same with file configure.ac
on line 7 add -lnl and -ldect => LDFLAGS="-ldl -lm -lpcap -lnl -ldect -lsqlite3
$LDFLAGS"
then the old proceedure:
make distclean
./configure
make
...
hope it helps
Original comment by schroedl...@googlemail.com
on 18 Jan 2012 at 8:24
"so just install sqlite3-devel and everything is ok"
This worked for me on Ubuntu 11.10 x64
Original comment by dfarrel...@gmail.com
on 7 Feb 2012 at 7:08
"apt-get install libsqlite3-dev"
works for me on Ubuntu 11.10 x64 also.
Original comment by howerkr...@gmail.com
on 17 Feb 2012 at 3:00
"apt-get install libsqlite3-dev" works for me too on Mint 12 ! Thanks for the
solution !
Original comment by pierrebrunel84@gmail.com
on 17 Feb 2012 at 4:20
Works for me too.... Thanks
Original comment by phil.j.p...@gmail.com
on 13 Mar 2012 at 10:19
"apt-get install libsqlite3-dev"
works for me on Ubuntu 11.10 x64
Original comment by yari...@gmail.com
on 3 Apr 2012 at 8:31
FC16-x86_64
http://cyruslab.wordpress.com/2012/02/19/compiling-reaver-wps-error-pcap-library
-not-found/
Original comment by r.schuur...@gmail.com
on 5 Apr 2012 at 7:16
I ran into the same problem on CentOS 6:
uname -a --> Linux 2.6.32-220.13.1.el6.x86_64 #1 SMP Tue Apr 17 23:56:34 BST
2012 x86_64 x86_64 x86_64 GNU/Linux
Download the latest version from
http://code.google.com/p/reaver-wps/downloads/list)
$ gunzip reaver-1.4.tar.gz
$ tar -xvf reaver-1.4.tar
$ cd reaver-1.4/src
$ ./configure ==> error pcap not found (found in libpcap)
$ su root
# yum install libpcap-devel ==> OK base
# yum install sqlite-devel ==> OK base
# cd reaver-1.4/src
# ./configure
# make
# make install
# exit
$ which reaver --> /usr/local/bin/reaver
Original comment by Rocksock...@gmail.com
on 16 May 2012 at 9:13
works for me on Debian Squeeze 2.6.32-5-686
//syberia55
Original comment by 624...@gmail.com
on 26 May 2012 at 5:45
Thanks, the install sqlite3-dev works for me on Debian Squeeze.
Original comment by rodneyha...@gmail.com
on 29 May 2012 at 6:48
It's doesn' work for me. I have ubuntu 10.04 lts and It doesn't install
libpcap0.8-dev, libnl2-dev. I can't find libpcap3-dev! Where I find it?
Thanks.
Original comment by bellaaus...@gmail.com
on 3 Jun 2012 at 1:46
[deleted comment]
hi, i use ubuntu 11.10 but when i tried to install 1.4 and 1.3 it does not work
but the version 1.2 it work
Original comment by saadyyou...@gmail.com
on 30 Jul 2012 at 5:10
also you can try this before installing
sudo apt-get install libsqlite3-dev libpcap0.8-dev build-essential
its works for all
Original comment by saadyyou...@gmail.com
on 30 Jul 2012 at 5:19
Comment #26 by saadyyou...@gmail.com worked finally. Thank you!
Original comment by peeon...@gmail.com
on 29 Aug 2012 at 11:56
@schroedl... I did what you said but the problem remains.:( also i can't find
libcap3-dev or libnl2-dev as you mention, but previous releases from theese two
dev-s i mentioned.... Any Ideas?
libsqlite3-dev... i found only that! And i downloaded previous releases from
the other 2 , but the problem still remains:
error: pcap library not found!
please Help!!!
Original comment by panaka...@gmail.com
on 27 Oct 2012 at 3:12
Hi guys,
I have the same problem as bellaaus and panaka, Can't install libpcap3-dev.
---
sudo apt-get install libpcap3-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libpcap3-dev
---
Original comment by ponytheo...@gmail.com
on 3 Nov 2012 at 9:22
Ok, installed BT5r3 in a USB with Unetbootin!! Now it 's all ok,...
I have another problem in reaver:
SENDING EAPOL START REQUEST
WARNING RECEIVED TIMEOUT..
SENDING EAPOL START REQUEST
WARNING RECEIVED TIMEOUT..
SENDING EAPOL START REQUEST
WARNING RECEIVED TIMEOUT..
.............
and goes on....
The Ap i am trying to reach has WPS Unlocked...
I appreciate whoever helps me in this, But I also know that i might have ritten
this post at another Issue # page.... :)
Original comment by panaka...@gmail.com
on 10 Nov 2012 at 8:20
working after installing sqlite3-devel package on OpenSuse 12.2
Original comment by aleks.ch...@gmail.com
on 6 Jan 2013 at 10:19
And you wonder why people prefer Windows!
Original comment by touchdow...@gmail.com
on 10 Jan 2013 at 5:59
# apt-get install build-essential libpcap0.8 libpcap-dev libsqlite3-0
libsqlite3-devinstall build-essential libpcap0.8 libpcap-dev libsqlite3-0
libsqlite3-dev
enjoy! :)
Original comment by cove...@gmail.com
on 6 Feb 2013 at 9:01
"sudo apt-get install libsqlite3-dev libpcap0.8-dev build-essential" only
worked for me. Thank you.
Ubuntu 12.04.1 LTS
Original comment by atohodgu...@gmail.com
on 19 Feb 2013 at 12:38
libpcap0.8-dev work for ubuntu 12.10
Original comment by hishamze...@gmail.com
on 1 Mar 2013 at 5:57
In Ubuntu 12.10
Install This
sudo apt-get install libpcap-devsudo
apt-get install libpcap0.8-dev
Install Reaver
sudo -i
Add You Pass : ××××
tar -xzvf reaver-1.4.tar.gz
cd reaver-1.4
cd src
./configure
make
make install
exit
Then Run : sudo reaver
Original comment by alm6iri2...@gmail.com
on 6 Mar 2013 at 1:56
install "libsqlite3-dev" work for me in ubuntu 12.10
Original comment by bubini.m...@gmail.com
on 20 Mar 2013 at 11:48
Installing sqlite-devel on Fedora 18 x86_64 fixed the issue for me as well.
Original comment by strash...@gmail.com
on 6 Apr 2013 at 10:47
the same isue on debian 7.1 amd64
installing libqlite3-dev sovled the issue.
what a weird misleading error message!!
Original comment by alejandr...@gmail.com
on 15 Aug 2013 at 10:30
thx.it works for me too
Original comment by moustaco...@gmail.com
on 6 Nov 2013 at 6:10
Thanks, it works in ubuntu12.04 just like what #2 said
Original comment by jfgon...@gmail.com
on 30 Nov 2013 at 10:23
Original issue reported on code.google.com by
mojavo...@gmail.com
on 6 Jan 2012 at 8:16