2017-02-18 1 views
1

Ich versuche, meinen Raspberry Pi zu arbeiten. Ich habe sudo apt-get update && sudo apt-get upgrade und jetzt das Wifi funktioniert nicht mehr. Ich habe auch die Kamera angeschlossen, wenn das kein Problem ist.Raspberry Pi 3 wlan0 funktioniert nicht nach dem Upgrade

dmesg zeigt nichts über wlan0.

wenn ich sudo ifdown wlan0 && sudo ifup wlan0 bekomme ich dies:

ifdown: interface wlan0 not configured 
wpa_supplicant: /sbin/wpa_supplicant daemon failed to start 
run-parts: /etc/network/if-pre-up.d/wpasupplicant exited with return code 1 
Failed to bring up wlan0. 

ich nicht die/etc/network/interfaces Datei berührt hat, so dass es wie folgt als Standard ist:

interfaces(5) file used by ifup(8) and ifdown(8) 

# Please note that this file is written to be used with dhcpcd 
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf' 

# Include files from /etc/network/interfaces.d: 
source-directory /etc/network/interfaces.d 

auto lo 
iface lo inet loopback 

iface eth0 inet manual 

auto wlan0 
iface wlan0 inet manual 
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf 

allow-hotplug wlan1 
iface wlan1 inet manual 
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf 

Irgendwelche Ideen, was sollte falsch liegen?

EDIT Auch wenn ich ifconfig tun, wlan0 ist nicht da

Antwort

0

Wenn es hilft, ist hier eine Arbeitskonfiguration, die pi3 ermöglicht automatisch eine drahtlose Verbindung zu verwenden, wenn eine verdrahtete nicht verfügbar ist:

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 

#this line must always be here 
iface default inet dhcp 
+0

Vielen Dank, ich werde das morgen versuchen. Jetzt ist es zu spät, um das Zeug auszuprobieren, aber danke. – durisvk

+0

Ich hatte das gleiche Problem, aber das hat nicht geholfen :( – tBlabs

Verwandte Themen