1. I'm using a LB-Link mini adapter that I purchased from Adafruit that is supposed to work with the Pi.
2. I have reflashed the SD card to be sure I have the latest software.
3. The Pi works with ethernet connections to the internet.
4. I have tried the adapter on two Pi boards with the same negative results.
5. I have used the adapter successfully on a WIN 7 machine.
6. I initially followed the Raspberry guides instructions, negative.
7. I tried the instructions in the Adafruit tutorial, negative.
8. I have tried to hook up to two different wifi networks to no good.
9. DHCP is on and ssid is being broadcast.
10. When I run a 'lsusb' the device shows up as r8188cus.
11. When I use the wifi config in startx wlan0 does not show up.
12. When I do an ifconfig no ip address is shown for the wlan0.
Below are the current settings of the two files I have been working with:
My /etc/network/interfaces file:
- Code: Select all
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
My /etc/wpa_supplicant/wpa_supplicant.conf file:
- Code: Select all
cntl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
update_config=1
network={
ssid=<myssidname>
proto=RSN
key_mgmt=WPA-PSK
pairwise=CCMP TKIP
group=CCMP TKIP
psk=<mypassword>
auth_alg=OPEN
}
Any suggestions would be greatly appreciated as I've been working on this problem for a week.

