安装 Atheros ar9845

安装 Atheros ar9845

我正在尝试使用 Ubuntu 10.04 LTS(32 位)安装 atheros ar9845,我有什么办法可以让它正常工作。

我努力了:

sudo apt-get update
sudo apt-get install linux-backports-modules-wireless-lucid-generic

重新启动后无线设备仍然无法工作。

lscpci

$ lspci -nn -d 168c:0032
02:00.0 Network controller [0280]: Atheros Communications Inc. Device [168c:0032] (rev 01)

更新:

$ sudo apt-get install linux-backports-modules-compat-wireless-3.3-2.6.32-51-generic
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package linux-backports-modules-compat-wireless-3.3-2.6.32-51-generic is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package linux-backports-modules-compat-wireless-3.3-2.6.32-51-generic has no installation candidate

答案1

您的设备 168c:0032 包含在 linux-backports-modules-compat-wireless-3.3包。请打开 Synaptic 包管理器并搜索与您当前运行的内核版本匹配的 3.3 包;使用终端命令查找:

uname -r

例如,如果您正在运行 2.6.32-51-generic,则在 Synaptic 中选择并安装 linux-backports-modules-compat-wireless-3.3-2.6.32-51-generic。完成后,加载模块:

sudo modprobe ath9k

你的无线网络应该就可以正常工作了。

相关内容