Como executar o Reaver no Precise

2

Eu preciso executar sudo airmon-ng start wlan0 . Em 11.10, isso funciona bem, mas em 12.04 não funciona: não consegue encontrar o comando. Então eu corri sudo apt-get install airmon-ng , mas este é o resultado que eu recebo:

Building dependency tree
Reading state information... Done
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

Alguma idéia?

    
por yanglifu90 03.05.2012 / 12:02

4 respostas

4

Como instalar aircrack-ng no Ubuntu 12.04. Terminal aberto:

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

Agora você pode criar um novo diretório

  1. mkdir aircrack
  2. cd Downloads
  3. mv aircrack-ng-1.1.tar.gz ~/aircrack
  4. cd ..
  5. cd aircrack
  6. tar -zxvf aircrack-ng-1.1.tar.gz
  7. cd aircrack-ng-1.1
  8. sudo gedit common.mak

neste arquivo encontrar

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

delete -Werror para ficar assim

  1. CFLAGS ?= -g -W -Wall -O3

salve e feche

  1. make
  2. sudo make install

Aqui está o meu link para o tube: link

    
por calmpitbull 08.05.2012 / 09:04
1

Outra maneira de contornar isso é pegar o último tarball iw de link

Remover iw

  

sudo apt-get remove iw

Em seguida, extraia o código-fonte do tarball, compile e instale.

    
por echo6 06.03.2013 / 17:50
0

link

Construa você mesmo - eu não sei mais porque ele não está no 12.04, mas de acordo com o aptitude, ele foi substituído por ou está em conflito com o pacote iw.

% aptitude show iw
Package: iw                              
New: yes
State: installed
Automatically installed: yes
Version: 3.2-1
Priority: optional
Section: net
Maintainer: Ubuntu Developers <[email protected]>
Architecture: amd64
Uncompressed Size: 152 k
Depends: libc6 (>= 2.7), libnl-3-200 (>= 3.2.3), libnl-genl-3-200 (>= 3.2.3)
Recommends: crda
Conflicts: iw
Breaks: aircrack-ng (< 1:1.0~rc2-1), aircrack-ng (< 1:1.0~rc2-1)
Replaces: aircrack-ng (< 1:1.0~rc2-1), aircrack-ng (< 1:1.0~rc2-1)
Description: tool for configuring Linux wireless devices
 This package contains the 'iw' tool which allows you to configure and show
 information about wireless networking.
    
por papashou 03.05.2012 / 13:13
0

Você pode baixar o pacote necessário a partir do seguinte link e instalá-lo usando o Ubuntu Software Center-
link
Você pode baixar um dos seguintes pacotes dependendo da sua instalação do Ubuntu (32 bits / 64 bits):
 - link
- link

Cortesia: link

N.B: Eu o instalei com sucesso no Ubuntu 12.04 usando o pacote acima.

    
por saji89 31.05.2012 / 11:07