我有一个TP-Link WN722NUSB 加密狗已插入:
root@udoo-debian-hfp:~# lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 7.4 (wheezy)
Release: 7.4
Codename: wheezy
root@udoo-debian-hfp:~# uname -a
Linux udoo-debian-hfp 3.0.35 #1 SMP PREEMPT Mon Mar 3 15:17:07 CET 2014 armv7l GNU/Linux
我使用以下方法识别了该设备:
root@udoo-debian-hfp:~# lsusb
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 0424:2514 Standard Microsystems Corp. USB 2.0 Hub
Bus 002 Device 096: ID 0cf3:9271 Atheros Communications, Inc. AR9271 802.11n
Bus 002 Device 004: ID 148f:5370 Ralink Technology, Corp. RT5370 Wireless Adapter
根据无线网供应商 ID:0cf3 产品 ID:9271 使用 ath9k_htc 驱动程序。据我所知,该驱动程序应该已经随我当前的内核包一起提供。奇怪的是,我在任何地方都找不到它:
root@udoo-debian-hfp:~# lsmod
Module Size Used by
vivante 943 1
drm 141896 2 vivante
root@udoo-debian-hfp:~# modinfo ath9k_htc
ERROR: Module ath9k_htc not found.
我遵循 Debian 的说明ath9k_htc 安装。这与之前的 lsmod 的结果相同。它也没有出现在网络接口列表中。我尝试重新启动设备并拔下 USB 加密狗。
root@udoo-debian-hfp:~# iwconfig
lo no wireless extensions.
eth0 no wireless extensions.
usb0 no wireless extensions.
wlan0 IEEE 802.11bgn Mode:Master Frequency:2.437 GHz Tx-Power=20 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:on
mon.wlan0 IEEE 802.11bgn Mode:Monitor Tx-Power=20 dBm
Retry long limit:7 RTS thr:off Fragment thr:off
Power Management:on
wlan0 是配置为运行 hostapd 的板载 wifi 模块 Ralink Technology, Corp. RT5370 无线适配器。我计划使用该加密狗作为另一个网络上的客户端。
此时我该做什么来解决安装问题?
答案1
这是一个很长的尝试,对于一个相当古老的问题,我希望你已经找到了答案......
我做了以下操作以使其在我的系统上运行,Wheezy 也是如此。
将非免费软件包添加到 /etc/apt/sources.list
apt-get update
apt-get install firmware-atheros
reboot
它出现在 iw 列表中:)
有人 HTH 了!