I recently received a few more bits and pieces: a model B board, a PiFace, a Raspian Wheezy SD card and a WiFi dongle (Farnell ref 1790361). And I'm having some trouble with the dongle: I can't get the network config GUI to set it up…
The dongle is plugged directly into a USB port, the other port goes to my powered external hub to which I connect a keyboard and mouse for now, and a USB memory stick if I need it. There is more than enough power to spare, and the WiFi dongle is seen by lsusb.
lsusb tells me
Bus 001 Device 005: ID 0bda:8176 Realtek Semiconductor Corp, RTL8188CUS 801.11n WLAN Adapter
dmesg tells me
usb 1-1.3: new high-speed USB device number 6 using dwc_otg
usb 1-1.3: New USB device found, idVendor=0bda, idProduct=0608
usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
usb 1-1.3: Product: 802.11n WLAN Adapter
usb 1-1.3: Manufacturer: Realtek
usb 1-1.3: SerialNumber: [looks like a MAC address]
But when I look at what modules are loaded, I see (among others)
8192cu 485042 0
But I don't see a driver for the 8188 chip. So I tried loading one.
sudo modprobe rtl8187
Now there are some extra lines from lsmod.
rtl8187 49993 0
mac80211 236178 1 rtl8187
cfg80211 171957 2 mac80211 rtl8187
eeprom _93cx6 1559 1 rtl8187
And what really surprises me is the output from iwlist:
wlan0 Scan completed :
Cell 01 - Address: [looks like a MAC address]
ESSID:"SFR WiFi Public"
Protocol:IEEE 80211.bg
Mode:Master
Frequency:2.462 GHz (Channel 11)
Encryption key:off
Bit Rates:54 Mb/s
Quality:56 Signla level:0 Noise level:0
Now this is not at all what I see from my little laptop I'm using to type this post… here I see my home nework: a different ESSID, same frequency and channel, and with encryption.
So I don't understand a few things here… the driver must be loaded, in order to get information from iwlist, but I can't see my home network. I hope that this dongle can do 802.11b/g as well as n… that would be the first time I've seen that lack of backward compatibility.