6

I'm used to using RP2 with the WiFi dongles and I just picked up my RP3 which should work with the built in WiFi.

However, upon running startx and trying to configure the WiFi, it merely states:

No wireless interfaces found.

I'm trying to connect to my school's WiFi, so naturally I do not have any control over router settings. So I'm wondering if there is a telltale way to at least get it to see the networks? It looks like this is a common problem, but most solution involve tweaking router settings which I do not have the liberty to do.

Jacobm001
  • 11,904
  • 7
  • 47
  • 58
bladexeon
  • 263
  • 1
  • 3
  • 11

1 Answers1

7

You could try executing the following through the command prompt:

sudo apt-get update
sudo apt-get upgrade
sudo apt-get dist-upgrade
sudo rpi-update
sudo reboot

wait for reboot

sudo branch=next rpi-update
sudo reboot

wait for reboot

This should grab the latest firmware and updates to make your Pi be able to successfully find networks and connect to them.

I might also suggest getting wicd. This is a Wireless and Wired connection manager. You can get this GUI program by executing the following:

sudo apt-get install wicd
Dylan
  • 409
  • 1
  • 3
  • 18