我刚买了一个无线适配器,仍在尝试将其驱动程序安装到 Ubuntu 上。我查看了 ath9k,发现它与内核模块 ath9k 兼容。我是 ubuntu 新手,大部分代码我都不太懂,而且我读过的大多数指南都涉及连接到路由器,而我无法做到。我需要弄清楚如何在没有任何网络连接的情况下安装 ath9k。感谢所有帮助。
lspci -nn | grep 0208
01:00.0 Network Controller [0280]: Qualcomm Atheros AR93xx Wireless Netwrok Adapter [168c:0030] (rev 01)
uname -r
3.11.0-15-generic
答案1
由于 lspci 看到了您的卡,因此以下操作应该可以进行。
1)获取 Atheros 模块
sudo apt-get install firmware-atheros
2)modprobe ath9k
sudo modprobe -r ath9k
sudo modprobe ath9k
检查您的网络管理器并且它应该可以正常工作。