pyeager
Posts: 17
Joined: Sun May 12, 2013 5:43 am

WNA1000M WiFi Adapter Not Working

Tue May 14, 2013 4:23 pm

Believe me, I have searched the forums here, and tried a lot of stuff!

apt-get update and apt-get upgrade did improve things a bit, as now it appears that a driver is being loaded, I see this in dmesg:

Code: Select all

[   18.489644] usbcore: registered new interface driver rtl8192cu
lsusb says:

Code: Select all

Bus 001 Device 002: ID 0424:9512 Standard Microsystems Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 0424:ec00 Standard Microsystems Corp. 
Bus 001 Device 004: ID 05e3:0608 Genesys Logic, Inc. USB-2.0 4-Port HUB
Bus 001 Device 005: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS]
Bus 001 Device 006: ID 413c:2003 Dell Computer Corp. Keyboard
Bus 001 Device 007: ID 045e:0023 Microsoft Corp. Trackball Optical
lsmod says:

Code: Select all

Module                  Size  Used by
8192cu                490305  0 
snd_bcm2835            16304  0 
snd_pcm                77560  1 snd_bcm2835
snd_seq                53329  0 
snd_timer              19998  2 snd_pcm,snd_seq
snd_seq_device          6438  1 snd_seq
snd                    58447  5 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device
snd_page_alloc          5145  1 snd_pcm
leds_gpio               2235  0 
evdev                   9426  4 
led_class               3562  1 leds_gpio
I downloaded and ran the install-rtl8188cus-latest.sh script, and got the following:

Code: Select all

Press any key to continue... 

An RTL8188CUS driver module is installed and loaded.

You have 1 wifi adapter configured.
wlan0 is configured but is not installed.

The Pi has an internet connection.

Any files needed for the installation/upgrade will be downloaded from the
Internet unless they have already been copied to the SD card /boot directory.


Unrecognised software version: Linux raspberrypi 3.6.11+ #446 PREEMPT Fri May 10 20:17:25 BST 2013 armv6l GNU/Linux

Downloading the latest script.

The script you're using is the latest version.

Aborting the rtl8188cus installation script.
It looks like "wlan0 is configured but not installed" might be a clue, but I have no idea how to address that.

Any help would be greatly appreciated!

User avatar
pluggy
Posts: 3635
Joined: Thu May 31, 2012 3:52 pm
Location: Barnoldswick, Lancashire,UK
Contact: Website

Re: WNA1000M WiFi Adapter Not Working

Tue May 14, 2013 4:36 pm

The wifi configuration on the standard Raspdian desktop should work. You don't need any script to install a driver for it.
Don't judge Linux by the Pi.......
I must not tread on too many sacred cows......

pyeager
Posts: 17
Joined: Sun May 12, 2013 5:43 am

Re: WNA1000M WiFi Adapter Not Working

Tue May 14, 2013 4:43 pm

Apparently, something I did prior to attempting to get wifi working had hosed things.

I tried again with a fresh OS image, and things worked much better. The wifi dongle was recognized at boot time, and wlan0 appeared in the WiFi Config applet.

pyeager
Posts: 17
Joined: Sun May 12, 2013 5:43 am

Re: WNA1000M WiFi Adapter Not Working

Tue May 14, 2013 8:59 pm

So... it worked with a clean OS image, but apt-get update and apt-get dist-upgrade broke it.

No wifi interface available, no module loaded.

pyeager
Posts: 17
Joined: Sun May 12, 2013 5:43 am

Re: WNA1000M WiFi Adapter Not Working

Tue May 14, 2013 9:03 pm

Don't judge Linux by the Pi.......
I don't. I have been a Linux user for years, and a user of various *nix before that. Like when it was impressive that you could send an email and get a response the same day.

Raspbian is the most challenging I have encountered.

msareen
Posts: 3
Joined: Sat Jan 19, 2013 6:50 am

Re: WNA1000M WiFi Adapter Not Working

Fri May 24, 2013 2:41 am

I used details at http://wiki.debian.org/WiFi/HowToUse#Command_Line point 3, and making wifi work on pi is not pi specific problem, it is really a linux configuration problem (or task)

I never installed any driver in my default whizzy image and it worked like charm.


#lsusb
showed
Bus 001 Device 004: ID 0846:9041 NetGear, Inc. WNA1000M 802.11bgn [Realtek RTL8188CUS]

Most probably

I used netgear WNA1000M adapter and now it is working great.

Scan for available networks and get network details:

$ su
# iwlist scan

If you lan card is working it will show the available network

Now edit /etc/network/interfaces

it should already have entries like
----------------------------------------------
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

----------------------------------------------

now login to gui and use wifi manager to put in setting (using gui will really make your life easy)

what it do is internally update wpa_supplicant.conf (to make your life easy)

--
after this your wifi should work. (if blue light on your wifi is blinking most probably it is working)

pyeager
Posts: 17
Joined: Sun May 12, 2013 5:43 am

Re: WNA1000M WiFi Adapter Not Working

Fri May 24, 2013 4:50 pm

I never installed any driver in my default whizzy image and it worked like charm.
I'm sure it did.

The problem was indeed RPi specific. A version of the kernel was released which included a version of the driver that did not recognize the WNA-1000M. As long as you weren't using such a kernel, it would indeed just be a matter of linux configuration for the adapter.


Return to “Troubleshooting”