更新后丢失了无线连接

更新后丢失了无线连接

我正在使用 Ubuntu 12.04,单击更新通知后,我失去了无线连接。我可以使用有线连接,但无法再通过无线连接。

请帮忙。谢谢。

iwconfig
lo        no wireless extensions.

eth0      no wireless extensions.

 *-network UNCLAIMED     
       description: Network controller
       product: QCA9565 / AR9565 Wireless Network Adapter
       vendor: Qualcomm Atheros
       physical id: 0
       bus info: pci@0000:06:00.0
       version: 01
       width: 64 bits
       clock: 33MHz
       capabilities: bus_master cap_list
       configuration: latency=0
       resources: memory:f7c00000-f7c7ffff memory:f7c80000-f7c8ffff

答案1

这个帖子解决了我的问题。

此卡现在已被从更高内核反向移植的更新驱动程序识别,因此您不再需要自行编译。要安装,请确定您当前正在使用的内核

$ uname -r
3.2.0-56-generic-pae

注意 generic-pae,并安装适当的反向移植驱动程序:

sudo apt-get install linux-backports-modules-cw-3.12-precise-generic-pae

如果你只有通用内核,请使用

sudo apt-get install linux-backports-modules-cw-3.12-precise-generic

这将安装从 Linux 内核版本 3.12 反向移植的无线驱动程序。反向移植存储库应该已在 12.04 中启用。

这是撰写本文时移植的最新版本,但您可以使用以下命令检查较新版本:

apt-cache search backported wireless

相关内容