greg123
Posts: 63
Joined: Mon Jul 27, 2015 1:00 am

Raspberry Pi 3 no wifi

Sat Mar 12, 2016 7:34 pm

I just installed a fresh install of Raspbian and I clicked the wifi icon but it said that there are no wireless devices. I'm using a wifi adapter as a temporary solution. I typed ifconfig and the ifconfig -a but only eth0 and lo came up.

klricks
Posts: 8861
Joined: Sat Jan 12, 2013 3:01 am
Location: Grants Pass, OR, USA

Re: Raspberry Pi 3 no wifi

Sat Mar 12, 2016 8:01 pm

greg123 wrote:I just installed a fresh install of Raspbian and I clicked the wifi icon but it said that there are no wireless devices. I'm using a wifi adapter as a temporary solution. I typed ifconfig and the ifconfig -a but only eth0 and lo came up.
Does "fresh install" mean a recently downloaded image? Have you done an update?

Code: Select all

sudo apt-get update
sudo apt-get upgrade
3B+ & 4B4G Running RPi OS Bookworm w/ Desktop

piuser13
Posts: 2
Joined: Thu Mar 17, 2016 6:32 am

Re: Raspberry Pi 3 no wifi

Thu Mar 17, 2016 6:39 am

I have this same issue, downloaded and installed raspbian from the image named 2016-02-26-raspbian-jessie.img Install went just fine, I set the wifi region using raspi-config, but clicking the networking icon shows "No wireless interfaces found" Dmesg doesn't report any wlan interfaces, no messages about brcm firmware are printed, though the firmware seems to be present in /lib/firmware/brcm. Here's the output from lsmod:

Code: Select all

Module                  Size  Used by
bnep                   10336  2
hci_uart               13533  1
btbcm                   4196  1 hci_uart
bluetooth             317981  22 bnep,btbcm,hci_uart
cfg80211              407580  0
rfkill                 16036  3 cfg80211,bluetooth
sg                     18023  0
evdev                  10278  4
snd_bcm2835            19802  3
snd_pcm                73474  1 snd_bcm2835
snd_timer              18848  1 snd_pcm
snd                    50779  9 snd_bcm2835,snd_timer,snd_pcm
uio_pdrv_genirq         2944  0
uio                     7753  1 uio_pdrv_genirq
i2c_dev                 5671  0
fuse                   80694  3
ipv6                  338660  36
Last edited by piuser13 on Thu Mar 17, 2016 4:36 pm, edited 1 time in total.

User avatar
solar3000
Posts: 1087
Joined: Sat May 18, 2013 12:14 am

Re: Raspberry Pi 3 no wifi

Thu Mar 17, 2016 2:52 pm

Me too.
Antikythera

dchao99
Posts: 53
Joined: Fri Jan 15, 2016 9:26 pm

Re: Raspberry Pi 3 no wifi

Thu Mar 17, 2016 11:00 pm

Run rpi-update to get the latest firmware version 4.1.19. It will disable the WiFi power management automatically.

piuser13
Posts: 2
Joined: Thu Mar 17, 2016 6:32 am

Re: Raspberry Pi 3 no wifi

Thu Mar 17, 2016 11:03 pm

I ran rpi-update last night, no changes. I also manually disabled wifi power management, still not even appearing.

I'm not entirely sure what the symptoms of the power management bug are. The symptoms I'm experiencing look like the device isn't even present, no kernel modules are loaded, and none of the iw/ifconfig style commands even show it.

To be clear, my issue isn't that I can't get the wifi to join a network, or that it drops connections periodically. Raspbian isn't even reporting that the physical device exists.

DcRpi3
Posts: 14
Joined: Fri Mar 18, 2016 11:13 am

Re: Raspberry Pi 3 no wifi

Sat Mar 19, 2016 4:46 am

I also have a similar problem in my new Raspberry Pi 3 which I bought 3 days ago. Bluetooth is working using Bluetooth blueman manager. I can't view wifi networks in range. I have Wicd and network manger. There are 2 computers connected to each other on top, when I click it, it shows "No Wireless Interfaces Found". It only works through Bluetooth teacher from android and Ethernet Cable. My raspbian version is Raspbian Jessie. I have updated and upgraded it also. Still I can't find a solution and also no wifi icon is there in top right-corner and no wifi config icon on Desktop.there is only WasteBin icon on desktop and nothing else.


Please tell Me. Your help will be appreciated. :?: :?:

Regards,
DcRPi3

User avatar
DougieLawson
Posts: 42748
Joined: Sun Jun 16, 2013 11:19 pm
Location: A small cave in deepest darkest Basingstoke, UK

Re: Raspberry Pi 3 no wifi

Sat Mar 19, 2016 7:16 pm

Get NOOBS 1.9 or Raspbian Jessie 2016-03-18 and either of those should fix your WiFi problems (assuming the hardware is working).
Languages using left-hand whitespace for syntax are ridiculous

DMs sent on https://twitter.com/DougieLawson or LinkedIn will be answered next month.
Fake doctors - are all on my foes list.

The use of crystal balls and mind reading is prohibited.

sparkie777
Posts: 304
Joined: Tue Nov 27, 2012 4:37 am

Re: Raspberry Pi 3 no wifi

Sat Mar 19, 2016 7:54 pm

I also had the problem "no wifi at all" i.e. 'ifconfig -a' didn't even show 'wlan0'.

What helped me was to simply install 'firmware-brcm80211'.

Works great now :-)

User avatar
Zombie Virus
Posts: 10
Joined: Mon Mar 21, 2016 1:05 am

Re: Raspberry Pi 3 no wifi

Wed Mar 23, 2016 2:03 am

Same issue, going to try out the solution.

Squash
Posts: 1
Joined: Wed Mar 23, 2016 2:49 am

Re: Raspberry Pi 3 no wifi

Wed Mar 23, 2016 2:50 am

Try this

sudo touch /etc/network/if-up.d/wlan0
sudo chmod +x /etc/network/if-up.d/wlan0
sudo echo -e '#!/bin/bash\niwconfig wlan0 power off' > /etc/network/if-up.d/wlan0

Thias
Posts: 1
Joined: Wed May 04, 2016 10:01 pm

Re: Raspberry Pi 3 no wifi

Wed May 04, 2016 10:56 pm

FWIW, I had also "lost" the Wi-Fi adapter in my Pi 3. Bluetooth was still working... kernel modules and firmware were fine... I banged my head on the wall for a couple of hours!

The problem was with the dtoverlay=sdhost,overclock_50=100 line I had added to my config.txt to (supposedly) overclock the microSD card slot. After removing it, wlan0 is there again. If I add it back, no more wlan0.

So my suggestion to anyone with a missing Wi-Fi adapter on a Pi 3 : Double check and disable any config.txt tweaks! :-)

vk4tec

Re: Raspberry Pi 3 no wifi

Thu May 05, 2016 12:05 pm

I have a 3.0 here in service

Just did the noobs thing

Wlan0 was there

Andrew

rajpratapsingh
Posts: 1
Joined: Sat May 21, 2016 10:21 pm

Re: Raspberry Pi 3 no wifi

Sat May 21, 2016 10:28 pm

Hello Everyone

As I am also new to raspberry pi, and I have purchased a raspberry pi 3B.

I want to connect my board to WiFi router in STA mode, but it is always showing "No Wireless Interfaces Found". I have also already done as per mentioned in the thread above and have tried dozens of ways mentioned on web but they are of no use till yet.

If someone finds a solution to this problem. Please help.

broe23
Posts: 902
Joined: Thu Jan 28, 2016 9:35 pm
Location: Central IL

Re: Raspberry Pi 3 no wifi

Sun May 22, 2016 4:14 am

It is easier to use an external USB adapter, since the antenna on the board is not that great.

Use "lshw | more" to list all hardware. The | more allows you to use the space bar to go to the next page. hwinfo will also show it.

If the Wifi driver was not blocked from running. Iwconfig should show it.

Keep this as a quick reference. http://www.binarytides.com/linux-comman ... ware-info/
Ren: Now listen, Cadet. I've got a job for you. See this button? Ren: Don't touch it! It's the History Eraser button, you fool! Stimpy: So what'll happen? Ren: That's just it. We don't know. Maybe something bad, maybe something good.

bgibson710
Posts: 1
Joined: Mon Jun 20, 2016 12:35 am

Re: Raspberry Pi 3 no wifi

Mon Jun 20, 2016 12:44 am

I'm seeing this issue as well. No bluetooth, no wifi on my raspberry pi 3. I tried installing rasbian latest build available on downloads from May, I've tried using NOOBS, and I did the rpi-upgrade as well as using apt-get update / upgrade.

I do see this in systemctl list-units
hciuart.service loaded failed failed Configure Bluetooth Modems

I've got nothing plugged into this thing right now, and it's a vanilla install. I have just an ethernet cable plugged in and a monitor.

Riri
Posts: 2
Joined: Thu Jun 23, 2016 9:59 pm

Re: Raspberry Pi 3 no wifi

Sat Jun 25, 2016 12:15 pm

Hi , same here new image and no Wifi or bluetoth on pi 3
I've tryed Noobs installation and same problema

Is that na hardware problem?

Best Regards
Henrique

User avatar
HawaiianPi
Posts: 7867
Joined: Mon Apr 08, 2013 4:53 am
Location: Aloha, Oregon USA

Re: Raspberry Pi 3 no wifi

Sat Jun 25, 2016 10:57 pm

bgibson710 wrote:I'm seeing this issue as well. No bluetooth, no wifi on my raspberry pi 3. I tried installing rasbian latest build available on downloads from May, I've tried using NOOBS, and I did the rpi-upgrade as well as using apt-get update / upgrade.

I do see this in systemctl list-units
hciuart.service loaded failed failed Configure Bluetooth Modems

I've got nothing plugged into this thing right now, and it's a vanilla install. I have just an ethernet cable plugged in and a monitor.
Riri wrote:Hi , same here new image and no Wifi or bluetoth on pi 3
I've tryed Noobs installation and same problema

Is that na hardware problem?

Best Regards
Henrique
What are you using for a power supply? If you are using a phone charger, or anything with less than a 2A rating, get a better PSU. The recommended power supply unit for the Pi3 is 5.1V, 2.5A.
My mind is like a browser. 27 tabs are open, 9 aren't responding,
lots of pop-ups, and where is that annoying music coming from?

pablof
Posts: 1
Joined: Thu Jul 21, 2016 12:51 am

Re: Raspberry Pi 3 no wifi

Thu Jul 21, 2016 12:57 am

Hi, just in case it might help.
I was following this tutorial https://www.sunfounder.com/wiki/index.p ... spberry_Pi

Basically, after editing the sudo nano /boot/config.txt file and setting
device_tree=on

broke my wireless on the next reboot. Deleting that line solved the issue.

thorst
Posts: 3
Joined: Sun Jul 24, 2016 10:18 pm

Re: Raspberry Pi 3 no wifi

Sun Jul 24, 2016 11:45 pm

Im having the same issue, however I have a stock install of retropie 3.8.1. I did perform the updates through the system but I have not manually changed anything at command line. I also tried NOOBS raspbarian, and it is doing the same thing there so I believe it transcends operating systems.

Absolutewind
Posts: 1
Joined: Fri Sep 09, 2016 4:57 pm

Re: Raspberry Pi 3 no wifi

Fri Sep 09, 2016 5:07 pm

Hi, I just got my raspberry pi 3 from my FYP supervisor. I have not much knowledge of it yet. Just downloaded NOOBS v1.9 on my com and transferred to the SD card. However my raspberry pi can't connect to the wifi . During recovery mode I can't click the wifi network and when it start, there is no wireless interfaces found.
PS: I already did sudo apt-get update/upgrade

g7icd
Posts: 1
Joined: Sun Sep 11, 2016 12:18 pm

Re: Raspberry Pi 3 no wifi

Sun Sep 11, 2016 12:40 pm

I am using the compass image and have the same problem untill i did this

edit etc/dhcpcd.conf at the bottom put denyinterfaces wlan0
then i edited the etc/network/interfaces file and added the lines

auto wlan0
iface wlan0 inet dhcp
wpa-ssid "yourroutername"
wpa-psk "yourpass"
allow-hotplug wlan0


auto wlan1
iface wlan0 inet dhcp
wpa-ssid "yourroutername"
wpa-psk "yourpass"
allow-hotplug wlan1

luckymitra
Posts: 18
Joined: Sun Sep 11, 2016 6:07 pm

Re: Raspberry Pi 3 no wifi

Sun Sep 11, 2016 6:12 pm

I had this same issue before. I suggest you instal a package called
wpa-gui. It should be able to help scan for networks and helped in my situation

User avatar
jjsanderson
Posts: 22
Joined: Wed Oct 17, 2012 11:45 am

Re: Raspberry Pi 3 no wifi

Fri Oct 07, 2016 10:14 am

Just to note (and bump this thread) that the 'can't find interface' issue remains for me with the latest Raspbian (September 2016 / Pixel). Circumstances:
  • Clean install of Raspbian (or NOOBS) to a Pi3.
  • Wifi interface found and functions correctly.
  • [time passes. Could be a month, could be a few hours.]
  • Wifi icon in menu bar reverts to broken network image; mouseover text reads "No wireless interface found".
  • OS updates don't appear to solve the problem, but:
  • Wipe and clean install of card (usually) does. Repeat from first step.
We've seen this behaviour on I think all the Pi3s we have to hand (about 5?), none of which has had any SD card overclocks. In all cases we've had to revert to USB wifi dongles.

I think I've read all the threads on this, but the majority of messages are about failure to find or join a network. This is a failure to find the interface, and while it doesn't seem to be widespread generally, it's completely endemic for us.

jdb
Raspberry Pi Engineer & Forum Moderator
Raspberry Pi Engineer & Forum Moderator
Posts: 2983
Joined: Thu Jul 11, 2013 2:37 pm

Re: Raspberry Pi 3 no wifi

Fri Oct 07, 2016 7:52 pm

What is the output of dmesg after the wifi device disappears?
Rockets are loud.
https://astro-pi.org

Return to “General discussion”