无法安装aircrack-ng


15

每当我尝试aircrack-ng在终端中安装时,都会出现以下错误:

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"

我是Ubuntu的新手,所以不知道该怎么做。


我下载了tar球并进行了编译...
Nirmik 2012年

提供的答案有帮助吗?如果其中有一个,请单击复选标记。
Exeleration-G

Answers:


18

如消息所示,它已从ubuntu存储库中删除。您可以按照以下步骤进行安装

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

在aircrack-ng-1.1目录中,有一个名为common.mak的文件,使用您喜欢的编辑器打开该文件并向下滚动,直到看到以下行:

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

删除-Werror变量,以便该行现在如下所示。保存并退出。

CFLAGS ?= -g -W -Wall -O3

在终端中运行make并启动。”sudo make installaircrack-ng

build-essential转到更新管理器>设置> ubuntu软件,并查看是否已选中top main。

在此处输入图片说明


当我执行第一条指令时:'sudo apt-get install build-essential'我得到响应(软件包build-essential不可用,但由另一个软件包引用。这可能意味着该软件包已丢失,已被废弃,或只能从其他来源获得E:软件包“ build-essential”没有安装候选者)
克里斯

那是ubuntu的重要组成部分,它应该起作用。请检查您是否正确输入。并且您在有关libc6的评论中提到了。每当某些应用程序尝试向您发送此类消息时,请复制该消息(例如libc6)并将其粘贴到synpatic软件包管理器中,然后进行安装。
wedu

或为libc6输入终端sudo apt-get install libc6
wedu 2012年

它适用于Ubuntu 12.04
SuB 2013年

我只能使用aircrack-ng命令。我不能使用airmon-ng,airodump-ng,aireplay-ng等...
Gman Smith


1

看起来它不再在存储库中。我知道这aircrack-ng在Ubuntu 10.10存储库中,因此您可能想尝试使用Ubuntu 10.10而不是当前版本(12.04)。但是您也可以使用另一种方法将其安装在12.04中。然后,您将aircrack-ng使用.deb文件进行安装。您只需双击该文件,它将在Ubuntu Software Center中打开。要获取.deb用于32位Ubuntu安装(i386)的文件,请单击此处。如果您使用的是64位Ubuntu安装(amd64),请单击此处


我知道,好吗,还有其他类型的事情与新版本(12.04)的aircrack-ng相同吗?
克里斯

是的,我指的文件可以在Ubuntu 12.04上安装。
Exeleration-G 2012年

这些文件是aircrack-ng您所说的“真实”文件。
Exeleration-G 2012年

我单击那里,它转到软件中心,我可以看到aircrack-ng并且页面变灰,并且我不能按任何键,同时也有一条消息说“依赖度不能令人满意:libc6(> = 2.7)
克里斯,

真奇怪。在我的安装中,一切正常。最好的选择就是遵循@ aking1012的解决方案,因为这也相对容易。
Exeleration-G 2012年

0

Debian软件包可在此处获得:http : //ubuntu2.cica.es/ubuntu/ubuntu/pool/universe/a/aircrack-ng/

您需要下载相应的软件包架构

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

这是帮助命令

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

有关更多信息,请参见此处:http : //www.aircrack-ng.org/doku.php?id=downloads

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.