这个问题可能存在答案,但不幸的是,我尝试了 3-4 个小时,却找不到任何通用的解决方案。我现在的情况是,我需要运行 Ubuntu 14.04,无法升级,但无法让 wifi 与我的笔记本电脑配合使用。我最初使用的是 Ubuntu 16.04,但由于无法让旧版本的 PHP(5.5.9)与 Apache2 正常工作,我被迫降级。
$ lspci-knn | grep Net-A2
05:00.0 Network controller [0280]: Intel Corporation Device [8086:24fb] (rev 10)
Subsystem: Intel Corporation Device [8086:2110]
$ lshw -C 网络
*-network
description: Ethernet interface
product: RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller
vendor: Realtek Semiconductor Co., Ltd.
physical id: 0
bus info: pci@0000:03:00.0
logical name: eth0
version: 15
serial: 48:ba:4e:41:d4:57
size: 1Gbit/s
capacity: 1Gbit/s
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress msix bus_master cap_list ethernet physical tp mii 10bt 10bt-fd 100bt 100bt-fd 1000bt 1000bt-fd autonegotiation
configuration: autonegotiation=on broadcast=yes driver=r8169 driverversion=2.3LK-NAPI duplex=full firmware=rtl8168h-2_0.0.2 02/26/15 ip=192.168.0.21 latency=0 link=yes multicast=yes port=MII speed=1Gbit/s
resources: irq:130 ioport:3000(size=256) memory:b4104000-b4104fff memory:b4100000-b4103fff
*-network UNCLAIMED
description: Network controller
product: Intel Corporation
vendor: Intel Corporation
physical id: 0
bus info: pci@0000:05:00.0
version: 10
width: 64 bits
clock: 33MHz
capabilities: pm msi pciexpress cap_list
configuration: latency=0
resources: memory:b4000000-b4001fff
和无线信息脚本可在此处获取
解决此问题的大多数解决方案都涉及更新内核。我目前正在运行的内核来自:
$ uname -r
4.8.17-040817-generic
非常感谢您的帮助,并感谢您的时间。
[编辑]
$ rfkill 列出全部
0: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
答案1
所以我原本以为 Abdulla Nilam 的解决方案最初是有效的,但似乎不一定,因为在全新安装后,它不起作用。
最终奏效的是这个答案,但将 yakkety 替换为 xenial。
sudo add-apt-repository ppa:canonical-kernel-team/ppa
sudo apt update
sudo apt install linux-generic-lts-xenial
sudo add-apt-repository -r ppa:canonical-kernel-team/ppa
重启
wget http://mirrors.kernel.org/ubuntu/pool/main/l/linux-firmware/linux/firmware_1.161_all.deb
sudo dpkg -i linux-firmware_1.161_all.deb
然而,阿卜杜拉的答案的一部分可能确实有效,因为我在尝试上述命令后重新启动了,没有任何变化,按照阿卜杜拉的答案后它确实有效了......当然,我在这个安装上做了完全相同的事情,认为它会起作用,所以我无法知道发生了什么。