From 1517cd031f86b6a2bd7aceea77d1c1a3ccd5afec Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Sun, 7 Oct 2018 17:05:51 -0400 Subject: [PATCH] Add necessary step for wifi configuration --- howto/RaspberryPiZeroW.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/howto/RaspberryPiZeroW.md b/howto/RaspberryPiZeroW.md index 07f5592..e594289 100644 --- a/howto/RaspberryPiZeroW.md +++ b/howto/RaspberryPiZeroW.md @@ -21,7 +21,17 @@ From [learn.adafruit.com](https://learn.adafruit.com/turning-your-raspberry-pi-z ```sudo nano /etc/network/interfaces``` -Add at the end: +Enable wlan0 by adding the following lines: + +``` +allow-hotplug wlan0 +iface wlan0 inet manual + wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf +``` + +Enable with ```sudo systemctl enable wpa_supplicant.service```. + +For usb connection, add at the end: ``` allow-hotplug usb0