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 hidden or 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 |
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
Thank you so much !!!