erro durante a instalação do aircrack ng [duplicado]

2

quando digito make

make[1]: Entering directory '/home/m7moudl3i/aircrack-ng-1.2-rc2/src'
gcc -g -W -Wall -O3 -D_FILE_OFFSET_BITS=64 -D_REVISION=0  -DCONFIG_LIBNL30 -DCONFIG_LIBNL -I/usr/include/libnl3  -fstack-protector-strong -Wno-unused-but-set-variable -Wno-array-bounds -Iinclude   -c -o aircrack-ng.o aircrack-ng.c
In file included from aircrack-ng.c:65:0:
crypto.h:42:26: fatal error: openssl/hmac.h: No such file or directory
 #include <openssl/hmac.h>
                          ^
compilation terminated.
<builtin>: recipe for target 'aircrack-ng.o' failed
make[1]: *** [aircrack-ng.o] Error 1
make[1]: Leaving directory '/home/m7moudl3i/aircrack-ng-1.2-rc2/src'
Makefile:25: recipe for target 'all' failed
make: *** [all] Error 2
    
por Mohmood Ali 10.07.2015 / 19:16

1 resposta

2

Se você ler os requisitos para criar aircrack-ng da fonte no linux, você pode veja que ele precisa de libssl-dev . Então, instale-o usando:

  

sudo apt-get install libssl-dev

    
por Ron 10.07.2015 / 19:27