fast FW150US USB无线网卡Linux驱动安装

由于笔记本没有自带无线网卡,所以买了一块fast FW150US USB无线网卡。该网卡只自带了window下的驱动,经过一番折腾,终于安装好了Linux下的驱动,在此记录以便以后遇到同样问题能够快速解决。


首先查看网卡型号,如下:

[plain]  view plain copy print ?
  1. root@yongmi-hn:~# lsusb  
  2. Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub  
  3. Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub  
  4. Bus 005 Device 002: ID 046d:c52f Logitech, Inc. Wireless Mouse M305  
  5. Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub  
  6. Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub  
  7. Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub  
  8. Bus 002 Device 002: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN  
  9. Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub  
  10. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub  

详细信息:

[plain]  view plain copy print ?
  1. root@yongmi-hn:~# lsusb -v -d 0bda:8176  
  2.   
  3. Bus 002 Device 002: ID 0bda:8176 Realtek Semiconductor Corp. RTL8188CUS 802.11n WLAN  
  4. Device Descriptor:  
  5.   bLength                18  
  6.   bDescriptorType         1  
  7.   bcdUSB               2.00  
  8.   bDeviceClass            0 (Defined at Interface level)  
  9.   bDeviceSubClass         0   
  10.   bDeviceProtocol         0   
  11.   bMaxPacketSize0        64  
  12.   idVendor           0x0bda Realtek Semiconductor Corp.  
  13.   idProduct          0x8176 RTL8188CUS 802.11n WLAN  
  14.   bcdDevice            2.00  
  15.   iManufacturer           1 Realtek  
  16.   iProduct                2 802.11n WLAN Adapter  
  17.   iSerial                 3 00e04c000001  
  18.   bNumConfigurations      1  
  19.   Configuration Descriptor:  
  20.     bLength                 9  
  21.     bDescriptorType         2  
  22.     wTotalLength           46  
  23.     bNumInterfaces          1  
  24.     bConfigurationValue     1  
  25.     iConfiguration          0   
  26.     bmAttributes         0x80  
  27.       (Bus Powered)  
  28.     MaxPower              500mA  
  29.     Interface Descriptor:  
  30.       bLength                 9  
  31.       bDescriptorType         4  
  32.       bInterfaceNumber        0  
  33.       bAlternateSetting       0  
  34.       bNumEndpoints           4  
  35.       bInterfaceClass       255 Vendor Specific Class  
  36.       bInterfaceSubClass    255 Vendor Specific Subclass  
  37.       bInterfaceProtocol    255 Vendor Specific Protocol  
  38.       iInterface              0   
  39.       Endpoint Descriptor:  
  40.         bLength                 7  
  41.         bDescriptorType         5  
  42.         bEndpointAddress     0x81  EP 1 IN  
  43.         bmAttributes            2  
  44.           Transfer Type            Bulk  
  45.           Synch Type               None  
  46.           Usage Type               Data  
  47.         wMaxPacketSize     0x0200  1x 512 bytes  
  48.         bInterval               0  
  49.       Endpoint Descriptor:  
  50.         bLength                 7  
  51.         bDescriptorType         5  
  52.         bEndpointAddress     0x02  EP 2 OUT  
  53.         bmAttributes            2  
  54.           Transfer Type            Bulk  
  55.           Synch Type               None  
  56.           Usage Type               Data  
  57.         wMaxPacketSize     0x0200  1x 512 bytes  
  58.         bInterval               0  
  59.       Endpoint Descriptor:  
  60.         bLength                 7  
  61.         bDescriptorType         5  
  62.         bEndpointAddress     0x03  EP 3 OUT  
  63.         bmAttributes            2  
  64.           Transfer Type            Bulk  
  65.           Synch Type               None  
  66.           Usage Type               Data  
  67.         wMaxPacketSize     0x0200  1x 512 bytes  
  68.         bInterval               0  
  69.       Endpoint Descriptor:  
  70.         bLength                 7  
  71.         bDescriptorType         5  
  72.         bEndpointAddress     0x84  EP 4 IN  
  73.         bmAttributes            3  
  74.           Transfer Type            Interrupt  
  75.           Synch Type               None  
  76.           Usage Type               Data  
  77.         wMaxPacketSize     0x0040  1x 64 bytes  
  78.         bInterval               1  
  79. Device Qualifier (for other device speed):  
  80.   bLength                10  
  81.   bDescriptorType         6  
  82.   bcdUSB               2.00  
  83.   bDeviceClass            0 (Defined at Interface level)  
  84.   bDeviceSubClass         0   
  85.   bDeviceProtocol         0   
  86.   bMaxPacketSize0        64  
  87.   bNumConfigurations      1  
  88. Device Status:     0x0000  
  89.   (Bus Powered)  

在此看到芯片型号为RTL8188CUS,使用google可以找到该芯片驱动下载地址:

http://www.realtek.com/downloads/downloadsView.aspx?Langid=1&PNid=21&PFid=48&Level=5&Conn=4&ProdID=274&DownTypeID=3&GetDown=false&Downloads=true#2742


此时剩下的就是下载代码,编译,安装,重启系统即可。


之前担心找不到Linux下驱动,现在已经安装好驱动并发表该博文,又一次感受到Linxu的强大,一定要学好Linux!


今天(2012-12-15)新编译并安装了内核2.6.34.13,直接在原来编译基础上make install安装驱动,重启系统之后发现usb无线驱动不工作。原来驱动程序都是直接依赖内核代码的,内核换了,需要重新make才行。卸掉原来驱动,重新make,make install之后usb无线网卡工作正常。



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

2012-12-02  第一次完成

2012-12-15  增加新编译内核网卡不工作解决方法

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 6
    评论
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值