Ubuntu 10.10安装TP-LINK W310-350G驱动


TP-LINK W310-350G无线网卡官方只提供了WINDOW的驱动,没有LINUX的,怎么办? 幸好有ndiswrapper,可将window平台的驱动wraps around下,交由linux内核调用。很多无线网卡都得使用此方式安装驱动。

Many vendors do not release specifications of the hardware or provide a Linux driver for their wireless network cards. This project implements Windows kernel API and NDIS (Network Driver Interface Specification) API within Linux kernel. A Windows driver for wireless network card is then linked to this implementation so that the driver runs natively, as though it is in Windows, without binary emulation.

安装步骤

 

   1. 到安装光盘(U盘)中安装ndiswrapper.
      sudo dpkg -i /media/Ubuntu/pool/main/n/ndis*.deb


   2. 下载w310g的windows版驱动


   3. 执行以下命令安装
      cd /path/to/TL-WN310G/Drvier Files
      sudo ndiswrapper -i net5211.inf
      sudo depmod -a
      sudo modprobe ndiswrapper
      sudo ndiswrapper -mia


   4. 重启系统
      sudo init 6

相关内容