我是 ubuntu 操作系统的新手。我已经成功安装了 aircrack 并尝试执行命令 sudo airodump-ng mon0
但它不起作用。如何解决这个问题?
错误:
ubuntu@ubuntu:~$ sudo airmon-ng start waln0
Found 4 processes that could cause trouble.
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to kill (some of) them!
-e
PID Name
1382 avahi-daemon
1383 avahi-daemon
1433 NetworkManager
14727 wpa_supplicant
Interface Chipset Driver
eth2 Unknown wl
ubuntu@ubuntu:~$ sudo airodump-ng mon0
Interface mon0:
ioctl(SIOCGIFINDEX) failed: No such device
也尝试了 eth2 接口,但是没有成功!
ubuntu@ubuntu:~$ sudo airmon-ng start eth2
系统配置
ubuntu@ubuntu:~$ iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
eth2 IEEE 802.11 Access Point: Not-Associated
Link Quality:5 Signal level:0 Noise level:0
Rx invalid nwid:0 invalid crypt:0 invalid misc:0
ppp0 no wireless extensions.
答案1
系统会准确地告诉你问题是什么:
Found 4 processes that could cause trouble.
If airodump-ng, aireplay-ng or airtun-ng stops working after
a short period of time, you may want to kill (some of) them!
PID Name
1382 avahi-daemon
1383 avahi-daemon
1433 NetworkManager
14727 wpa_supplicant
您想要终止上述所有进程(以kill <PID>
超级用户身份使用)。
此后,其他一切都应该按预期进行。