Skip to content

Instantly share code, notes, and snippets.

@coolnumber9
Created December 17, 2017 07:51
Show Gist options
  • Save coolnumber9/4ec30fd0a7096edaffb8d8940cd2ee61 to your computer and use it in GitHub Desktop.
Save coolnumber9/4ec30fd0a7096edaffb8d8940cd2ee61 to your computer and use it in GitHub Desktop.
Raspberry Pi Wifi Setup using the Command Line (Known SSID)
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