Skip to content

Instantly share code, notes, and snippets.

@fdocr
Created November 8, 2018 15:46
Show Gist options
  • Select an option

  • Save fdocr/ea0b0d8e30a46910a774995e24bf5d33 to your computer and use it in GitHub Desktop.

Select an option

Save fdocr/ea0b0d8e30a46910a774995e24bf5d33 to your computer and use it in GitHub Desktop.
Setting up WiFi dongle on Raspberry Pi
  1. Check for the WiFi dongle (making sure it's available) with dmesg | more

  2. Edit /etc/network/interfaces

auto lo
iface lo inet loopback
iface eth0 inet dhcp

allow-hotplug wlan0
auto wlan0

iface wlan0 inet dhcp
   wpa-ssid "Your_Network_SSID"
   wpa-psk "Your_Password"
  1. Now reboot & voilá
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment