|
想必这款无线网卡不少人手头可能正在用着吧,在Windows下面的驱动自不必说,但是让它在linux下面跑起来,还是有些麻烦。正巧我手上也有这款网卡,闲来无事,就试着配置了一下,现将我的做法帖出来,供各位参考。
1.aptitude install ndiswrapper-utils ndiswrapper-modules-2.6.15-1-686
2.ndiswrapper NetA3AB.inf
3. depmod -a
4.modprobe ndiswrapper
5.cat /var/log/syslog,在最后面应该会显示加载的信息
6.iwconfig wlan0 essid any enc ****************** mode managed[如果系统提示找不到iwconfig,请执行:aptitude install wireless-tools]
7.ifconfig wlan0 up
8.dhclient wlan0[如果您的网络中开通了DHCP,否则请手动配置一下IP地址及路由表就可以了]
若想在每次开机的时候自动加载wlan0,请编辑/etc/network/interfaces,加入以下内容:
auto wlan0
iface wlan0 inet dhcp
# pre-up grep -q ndiswrapper /proc/modules || modprobe ndiswrapper [我是在/etc/modules的最后一行添加了ndiswrapper,因此本行不需要]
wireless-essid any
wireless-enc *******************
祝各位好运 |
|