1

I have a problem with raspberry pi 3, Model B conecting Wifi. I have the raspberry 3 display 7" where I can see if wifi is connected.

When disconnect and reconnect the ethernet cable, wifi works. When I reboot with

sudo reboot

wifi works perfectly too, and I can reboot like this whenever I want and wifi works.

However, when I reboot using

sudo shutdown

and then power cycling the RPi, wifi doesn't work.

The file /etc/wpa_supplicant/wpa_supplicant.conf:

 network={
    ssid="My_wifi_name"
    psk="Password"
}

Some idea?

goldilocks
  • 60,325
  • 17
  • 117
  • 234
DevAll
  • 11
  • 4

1 Answers1

0

Finally I found the answer, thanks KDM for try help.

I solve it editing file /etc/network/interfaces and code:

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"
DevAll
  • 11
  • 4