Created
April 10, 2020 11:14
-
-
Save coenraadhuman/2976a926b3c2360231c418c95aca2971 to your computer and use it in GitHub Desktop.
RPi - Could not communicate with wpa_supplicant: error n2 wifi
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
Solution | |
I referred to this official forum. | |
Raspbian Stretch: Wifi not starting on boot – Raspberry Pi Forums | |
First, | |
sudo vim /etc/network/interfaces | |
and, you should write in bottom | |
allow-hotplug wlan0 | |
iface wlan0 inet manual | |
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf | |
This will allow wlan at startup. afterwards, | |
sudo systemctl enable wpa_supplicant.service | |
restart wpa_supplicant | |
sudo reboot now |
Just made my setup work and I just got how wpa_supplicant is used. Thanks alot.
I was searched by 4hs. I followed your steps and I could fixed. when I went to save the gist on bookmarks I saw that I had alredy saved in the past.
thanks twice times!!
Thank you so much !!!
Thank you. You made my day
We stand on the shoulders of giants! Become a giant ... Pay it forward!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Had the same problem on a RPi 2. After a long search finnaly found this answer - THANK YOU SO MUCH!!!