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
  • 39,016
  • 10
  • 75
  • 82
pranphy
  • 1,588
  • 7
  • 19
  • 26

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
  • 4
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
  • 100,643
  • 105
  • 254
  • 328
2

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

Anwar
  • 75,875
  • 31
  • 191
  • 309
EXmaster
  • 21
  • 1
-2

Try with:

sudo aptitude update
sudo aptitude install aircrack-ng
Avio
  • 2,979
  • 5
  • 24
  • 40
  • 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