15

Whenever I attempt to install aircrack-ng in terminal I get the following error:

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"

I'm new to Ubuntu and so have no idea what to do.

K7AAY
  • 17,705
Chris
  • 151

4 Answers4

18

It has been removed from ubuntu repositories as message says. you can install it by doing following procedure

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

In the aircrack-ng-1.1 directory there is a file called common.mak, use your favorite editor to open the file and scroll down till you see the following line:

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

Delete the -Werror variable, so that the line now looks like the following. Save and exit.

CFLAGS ?= -g -W -Wall -O3

Run make and sudo make install in terminal to get aircrack-ng up and running."

For build-essential go to update manager > settings > ubuntu softwares and see if top main is checked.

enter image description here

muru
  • 207,228
wedu
  • 400
7

I have it in a PPA for precise. I did it for another question. If you need directions for adding a PPA they're here.

RobotHumans
  • 30,112
1

Looks like it's not in the repositories anymore. I know that aircrack-ng was in the Ubuntu 10.10 repositories, so you might want to try using Ubuntu 10.10 instead of the current version (12.04). But you can also install it in 12.04, using another way. You'll then install aircrack-ng using a .deb file. You just double-click on this file, and it will be opened in the Ubuntu Software Center. To get the .deb file for a 32-bit Ubuntu install (i386), click here. If you're using a 64-bit Ubuntu install (amd64), click here.

0

Debian packages are available here : http://ubuntu2.cica.es/ubuntu/ubuntu/pool/universe/a/aircrack-ng/

You need to download the respective package architecture

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

Here is the help command

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

See here for more : http://www.aircrack-ng.org/doku.php?id=downloads

muru
  • 207,228
Sathish
  • 751