I'm trying to get my fresh Raspbian installation to work with my Ralink RT5370 wireless adapter. The adapter itself seems fine - I tried it on a Windows machine to be sure it wasn't faulty hardware.
What I'm finding is one of several different scenarios occurs when the RT5370 is plugged in (if it's not plugged in, everything works fine):
- typing any command at the terminal just hangs
- I get a kernel panic (sometimes when booting, sometimes when attempting to execute something at the terminal)
- I don't get a panic or hang, but the wifi doesn't work
- the wifi works, at least for a while
When I actually manage to execute lsusb
I get:
~ $ lsusb
Bus 001 Device 002: ID 0424:9514 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 006: ID 148f:5370 Ralink Technology, Corp. RT5370 Wireless Adapter
Bus 001 Device 007: ID 04d9:1603 Holtek Semiconductor, Inc. Keyboard
Bus 001 Device 008: ID 046d:c52f Logitech, Inc. Wireless Mouse M305
And lsmod
:
~ $ lsmod
Module Size Used by
arc4 1964 2
rt2800usb 18970 0
rt2800lib 81833 1 rt2800usb
rt2x00usb 12510 1 rt2800usb
rt2x00lib 48797 3 rt2x00usb,rt2800lib,rt2800usb
mac80211 557746 3 rt2x00lib,rt2x00usb,rt2800lib
cfg80211 471916 2 mac80211,rt2x00lib
crc_ccitt 1612 1 rt2800lib
rfkill 22347 2 cfg80211
snd_bcm2835 21342 0
snd_pcm 93100 1 snd_bcm2835
snd_seq 61097 0
snd_seq_device 7209 1 snd_seq
snd_timer 23007 2 snd_pcm,snd_seq
snd 67211 5 snd_bcm2835,snd_timer,snd_pcm,snd_seq,snd_seq_device
joydev 9766 0
evdev 11000 4
uio_pdrv_genirq 3666 0
uio 9897 1 uio_pdrv_genirq
And uname -a
:
~ $ uname -a
Linux mypi 3.18.3+ #742 PREEMPT Mon Jan 26 18:27:18 GMT 2015 armv6l GNU/Linux
Finally, vcgencmd version
:
~ $ /opt/vc/bin/vcgencmd version
Jan 26 2015 18:34:17
Copyright (c) 2012 Broadcom
version cd981188ae8a3099aff40494b5489062831bd1ee (clean) (release)
I really don't know what to do about this. Can anyone help me figure this out?