Hello,
I’m bought a WiFi USB adapter, the Edimax 7811 and the only way I can get it to connect to my WiFi is if I run the commands:
sudo ifdown wlan0
then
sudo ifup wlan0
This is my config:
pi@retropie ~ $ sudo nano /etc/network/interfaces
auto lo
iface lo inet loopback
iface eth0 inet dhcp
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
root@retropie:/home/pi# nano /etc/wpa_supplicant/wpa_supplicant.conf
ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid=”myssid”
psk=”mypassword”
}
it never connects automatically, have I missed something?