Não é possível instalar o aircrack-ng

14

Sempre que eu tento instalar o aircrack-ng no terminal, recebo o seguinte erro:

Package aircrack-ng is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
However the following packages replace it:
  iw

E: Package 'aircrack-ng' has no installation candidate"

Sou novo no Ubuntu e não tenho ideia do que fazer.

    
por Chris 25.05.2012 / 11:26

4 respostas

18

Ele foi removido dos repositórios do Ubuntu, como diz a mensagem. você pode instalá-lo fazendo o seguinte procedimento

sudo apt-get install build-essential
sudo apt-get install libssl-dev
wget http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz
tar -zxvf aircrack-ng-1.1.tar.gz
cd aircrack-ng-1.1

No diretório aircrack-ng-1.1 existe um arquivo chamado common.mak, use o seu editor favorito para abrir o arquivo e role para baixo até ver a seguinte linha:

CFLAGS ?= -g -W -Wall -Werror -O3

Exclua a variável -Werror , para que a linha agora se pareça com a seguinte. Salve e saia.

CFLAGS ?= -g -W -Wall -O3

Execute make e sudo make install no terminal para obter aircrack-ng em execução. "

Para build-essential , vá para o gerenciador de atualização > configurações > ubuntu softwares e veja se top main está marcado.

    
por wedu 25.05.2012 / 11:40
7

Eu tenho isso em um PPA para preciso. Eu fiz isso por outra pergunta. Se você precisar de instruções para adicionar um PPA, eles são aqui .

por RobotHumans 25.05.2012 / 11:51
1

Parece que não está mais nos repositórios. Eu sei que aircrack-ng estava nos repositórios do Ubuntu 10.10, então você pode querer usar o Ubuntu 10.10 ao invés da versão atual (12.04). Mas você também pode instalá-lo em 12.04, usando outro caminho. Você então instalará aircrack-ng usando um arquivo .deb . Você apenas clica duas vezes nesse arquivo e ele será aberto no Ubuntu Software Center. Para obter o arquivo .deb para uma instalação do Ubuntu de 32 bits (i386), clique em aqui . Se você estiver usando uma instalação do Ubuntu de 64 bits (amd64), clique em aqui .

    
por Exeleration-G 25.05.2012 / 11:37
0

Pacotes Debian estão disponíveis aqui: link

Você precisa fazer o download da respectiva arquitetura de pacotes

wget http://ubuntu2.cica.es/ubuntu/ubuntu/pool/universe/a/aircrack-ng/aircrack-ng_1.1-6_amd64.deb

dpkg -i aircrack-ng_1.1-6_amd64.deb

Aqui está o comando de ajuda

root@chillax:/usr/local/src# aircrack-ng --help

  Aircrack-ng 1.1 - (C) 2006, 2007, 2008, 2009 Thomas d'Otreppe   Original work: Christophe Devine   http://www.aircrack-ng.org

  usage: aircrack-ng [options] <.cap / .ivs file(s)>

  Common options:

      -a <amode> : force attack mode (1/WEP, 2/WPA-PSK)
      -e <essid> : target selection: network identifier
      -b <bssid> : target selection: access point's MAC
      -p <nbcpu> : # of CPU to use  (default: all CPUs)
      -q         : enable quiet mode (no status output)
      -C <macs>  : merge the given APs to a virtual one
      -l <file>  : write key to file

  Static WEP cracking options:

      -c         : search alpha-numeric characters only
      -t         : search binary coded decimal chr only
      -h         : search the numeric key for Fritz!BOX
      -d <mask>  : use masking of the key (A1:XX:CF:YY)
      -m <maddr> : MAC address to filter usable packets
      -n <nbits> : WEP key length :  64/128/152/256/512
      -i <index> : WEP key index (1 to 4), default: any
      -f <fudge> : bruteforce fudge factor,  default: 2
      -k <korek> : disable one attack method  (1 to 17)
      -x or -x0  : disable bruteforce for last keybytes
      -x1        : last keybyte bruteforcing  (default)
      -x2        : enable last  2 keybytes bruteforcing
      -X         : disable  bruteforce   multithreading
      -y         : experimental  single bruteforce mode
      -K         : use only old KoreK attacks (pre-PTW)
      -s         : show the key in ASCII while cracking
      -M <num>   : specify maximum number of IVs to use
      -D         : WEP decloak, skips broken keystreams
      -P <num>   : PTW debug:  1: disable Klein, 2: PTW
      -1         : run only 1 try to crack key with PTW

  WEP and WPA-PSK cracking options:

      -w <words> : path to wordlist(s) filename(s)
      -r <DB>    : path to airolib-ng database
                   (Cannot be used with -w)

      --help     : Displays this usage screen

Veja aqui para saber mais: link

    
por Sathish 29.05.2014 / 12:06