我需要运行sudo airmon-ng start wlan0。在11.10中,这很好,但在12.04中却没有:它找不到命令。所以我运行了sudo apt-get install airmon-ng,但这是我得到的结果:
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有什么想法吗?
发布于 2012-05-08 07:04:33
如何在Ubuntu 12.04上安装空气裂纹。开放航站楼:
sudo apt-get install build-essentialsudo apt-get install libssl-devwget http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz现在您可以创建新目录了。
mkdir aircrackcd Downloadsmv aircrack-ng-1.1.tar.gz ~/aircrackcd ..cd aircracktar -zxvf aircrack-ng-1.1.tar.gzcd aircrack-ng-1.1sudo gedit common.mak在这个文件中找到
CFLAGS ?= -g -W -Wall -Werror -O3删除-Werror如下所示
CFLAGS ?= -g -W -Wall -O3保存并关闭
makesudo make install这是我的管子链接:http://www.youtube.com/watch?v=apoaHf8tPVk
发布于 2013-03-06 16:50:32
另一种方法是从https://www.kernel.org/pub/software/network/iw/抓取最新的iw tarball。
移除iw
sudo apt-获取删除iw
然后从tarball中提取源代码,编译并安装。
发布于 2012-05-03 11:13:00
http://www.aircrack-ng.org/
我不知道为什么不是在12.04,但根据能力,它已经被取代或与iw包冲突。
% aptitude show iw
Package: iw
New: yes
State: installed
Automatically installed: yes
Version: 3.2-1
Priority: optional
Section: net
Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
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.https://askubuntu.com/questions/130675
复制相似问题