最近在折腾Raspberry Pi,当时也没留意,看在价格的份上,买了Mercury的水星网络 MW150US 超小型150M无线USB网卡。可是悲剧的是用iwconfig并认不到这款无线网卡
但是用lsusb的话可以看到MW150US用的正是RTL8188eu的芯片,在网络上搜索了一下,终于找到解决方案
1. 首先要下载编译安装最新的linux内核,具体可以参考 http://www.raspberrypi.org/documentation/linux/kernel/building.md
2. 然后继续下载编译安装RTL8188eu的驱动
$ git clone --depth 1 https://github.com/lwfinger/rtl8188eu
$ cd rtl8188eu
$ make && make install
3. 这时候再用iwconfig就可以看到wlan0了
4. 然后最好是reboot一下,这时候再激活无线网卡,扫描无线网络
$ ifconfig wlan0 up
$ iwlist wlan0 scan
5. 最后就是配置无线网络用户名密码,这里就不详述了
来源:oschina
链接:https://my.oschina.net/u/1431631/blog/316669