Created
December 17, 2017 07:51
-
-
Save coolnumber9/4ec30fd0a7096edaffb8d8940cd2ee61 to your computer and use it in GitHub Desktop.
Raspberry Pi Wifi Setup using the Command Line (Known SSID)
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
1.) sudo nano /etc/network/interfaces | |
2.) Encode the following: | |
auto lo | |
iface lo inet loopback | |
iface eth0 inet dhcp | |
allow-hotplug wlan0 | |
auto wlan0 | |
iface wlan0 inet dhcp | |
wpa-ssid "ssid" | |
wpa-psk "password" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment