fdelapena
Still Fresh
If you want to change wireless mode (the default is managed) you can do this from the terminal:
First, some apps can manage wireless. You can kill them:
Another Apps using network are avahi-daemon and wpa-supplicant.
NetworkManager puts networking up. Once killed you can do for example:
You can do iwconfig without parameters to ensure if the interface is running the selecte mode:
That's all!
First, some apps can manage wireless. You can kill them:
Code:
sudo -s
Code:
killall NetworkManager
Another Apps using network are avahi-daemon and wpa-supplicant.
NetworkManager puts networking up. Once killed you can do for example:
Code:
ifconfig wlan0 down
iwconfig wlan0 mode Monitor
ifconfig wlan0 up
You can do iwconfig without parameters to ensure if the interface is running the selecte mode:
Code:
iwconfig
That's all!