红联首页 凝聚Linux人的力量
菜鸟过关 | 精华文档 | 同城人(交友) | 我与Linux的故事 | Linux新闻 | Linux视频 | Linux人才 | 软件下载 | 大学校园 | English
发新话题
打印

Debian下使用TP-Link TL-WN220 USB无线网卡

Debian下使用TP-Link TL-WN220 USB无线网卡

查看无线网卡信息
如果是PC卡的,用 lspci 查看
如果是USB的,用 lsusb 查看
^v^$ lsusb
Bus 002 Device 001: ID 0000:0000
Bus 001 Device 004: ID 03eb:7605 Atmel Corp. at76c503a 802.11b Adapter
Bus 001 Device 002: ID 15ca:00c3
Bus 001 Device 001: ID 0000:0000
^v^$
TP-Link TL-WN220 USB无线网卡用的是Atmel的芯片,正好此款芯片在Linux下有驱动,如果没有的话,就要尝试用 ndiswrapper
安装相关软件,at76c503a-source, wireless-tools
sudo aptitude install at76c503a-source wireless-tools
编译内核模块
用 module-assistant 解决问题啦
sudo m-a a-i at76c503a-source
设定配置文件
主要需要设定的是 /etc/network/interfaces
iface wlan0 inet dhcp
??????? wireless_essid AP
??????? wireless_key xxxxxxxxxxxxx
本机配置: Debian/sid,2.6.12-i686。

TOP

发新话题