Find the available wireless interface:
iwconfig
Scan Wireless networks
iwlist wlan0 scan “wlan0 is the wireless interface”
Connect wifi with WPA Network
nano /etc/network/interfaces
1 2 3 4 5 6 7 |
allow-hotplug wlan0 iface wlan0 inet dhcp wpa-ssid "SSID name without quotes" wpa-psk "Password without quotes" # When the wpa_supplicant is available in the interfaces file place a # in front of it #wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf |
to enable the configuration type, ifup wlan0 or reboot the operation system.
Leave a Reply