我在 HP 笔记本电脑上安装了 Ubuntu 12.04 LTS。我的无线网卡无法工作。但是,我可以在lspci
和中看到无线控制器lshw -C network
。这里,我附上了输出。
我是否需要安装任何特定驱动程序?如果需要,驱动程序是什么?
lspci -k
:
02:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 07)
Subsystem: Hewlett-Packard Company Device 2190
Kernel driver in use: r8169
Kernel modules: r8169
03:00.0 Network controller: Atheros Communications Inc. Device 0036 (rev 01)
Subsystem: Hewlett-Packard Company Device 217f
lshw -C network
:
*-network
description: Ethernet interface
product: RTL8101E/RTL8102E PCI Express Fast Ethernet controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:02:00.0
logical name: eth0
version: 07
serial: fc:15:b4:05:02:59
size: 100Mbit/s
capacity: 100Mbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix vpd bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=N/A ip=192.168.12.190 latency=0 link=yes multicast=yes port=MII speed=100Mbit/s
resources: irq:105 ioport:1000(size=256) memory:90600000-90600fff memory:90400000-90403fff
*-network UNCLAIMED
description: Network controller
product: Atheros Communications Inc.
vendor: Atheros Communications Inc.
physical id: 0
bus info: pci@0000:03:00.0
version: 01
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress bus_master cap_list
configuration: latency=0
resources: memory:90500000-9057ffff memory:90580000-9058ffff
iwconfig
:
lo no wireless extensions.
eth0 no wireless extensions.
我 不 知道 为什么 我 的 无线网络 出现 问题UNCLAIMED
.
指导我修复此问题。
答案1
请运行:
lspci -nn
您的无线设备是 168c:0036 吗?如果是,则 12.04 中的默认驱动程序 ath9k 不涵盖它,因此请安装 compat-wireless 套件。首先,确定您的内核版本:
uname -r
如果你的内核是 -pae,那么执行以下操作:
sudo apt-get install linux-backports-modules-cw-3.10-precise-generic-pae
如果没有,那么执行以下操作:
sudo apt-get install linux-backports-modules-cw-3.10-precise-generic
然后做:
sudo modprobe ath9k
断开以太网后你的无线网就应该可以工作了。