7

In the terminal I get Command not found when I type:

airmon-ng start wlan0

What can I do to access the airmon-ng command?

SirCharlo
  • 40,136
pranphy
  • 1,668

4 Answers4

12

Install the aircrack package first, then you will be able to use the airmon-ng command.

Here's how

Open a terminal and type:

sudo apt-get install aircrack-ng

You may now use the command.

sudo airmon-ng start wlan0
Adnan
  • 103
5

get THIS package and open that with Software center to install . Then you're done .

Then try with sudo airmon-ng start wlan0 it will be fine . Just now i tested myself.

Raja G
  • 105,627
  • 107
  • 263
  • 332
2

Just try sudo airmon-ng in a terminal. It should work for you as worked for me.

Anwar
  • 77,924
-2

Try with:

sudo aptitude update
sudo aptitude install aircrack-ng
Avio
  • 3,098
  • I am sorry I didn't get you. Could you please elaborate what do you mean@ – pranphy Sep 24 '12 at 13:17
  • sudo:aptitude:command not found – pranphy Sep 24 '12 at 13:25
  • Do you have the aircrack-ng package installed? If not, you should install it to be able to run one of its commands. Copy-paste the two above commands in a terminal (one at time) and see what happens. (You could also copy-paste here the output of the second command) – Avio Sep 24 '12 at 13:26
  • when i run the first line of the given command it says sudo:aptitude:command not found. – pranphy Sep 24 '12 at 13:28
  • Honestly, I've never seen an Ubuntu without aptitude preinstalled. However, you can try to replace aptitude with apt-get and write here what happens. – Avio Sep 24 '12 at 13:32
  • 2
    @Avio: For the last year or two, aptitude has not been installed by default. Instead, one should recgive instructions using apt-get, which is installed by default. – Scott Severance Sep 25 '12 at 23:14