Created
June 27, 2015 12:37
Connect manually to Wifi AP Debian
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo vi /etc/network/interfaces | |
#add this to the file | |
auto wlan0 | |
iface wlan0 inet dhcp | |
wpa-ssid {ssid} | |
wpa-psk {password} | |
After that write and close file and use command: | |
#finally restart | |
sudo dhclient wlan0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment