Ubuntu 16.04 没有 Wifi 连接

Ubuntu 16.04 没有 Wifi 连接

自从我买了新的笔记本电脑,配有英特尔无线 AC 9260 无线网卡后,我就无法连接到任何无线网络。当我选择要连接的网络时,它会尝试连接,但最后会显示连接超时之类的行为。你们中有人遇到过类似的问题吗?(是的,我已经进行了大量搜索以寻找相关问题,但任何解决方案都有效)。

附言:Windows 中的 Wi-Fi 连接工作正常。


退出 lspci

00:00.0 Host bridge: Intel Corporation Device 3ec2 (rev 07)    
00:01.0 PCI bridge: Intel Corporation Sky Lake PCIe Controller (x16) (rev 07)
00:08.0 System peripheral: Intel Corporation Sky Lake Gaussian Mixture Model
00:14.0 USB controller: Intel Corporation Device a2af
00:14.2 Signal processing controller: Intel Corporation Device a2b1
00:16.0 Communication controller: Intel Corporation Device a2ba
00:17.0 SATA controller: Intel Corporation Device a282
00:1c.0 PCI bridge: Intel Corporation Device a290 (rev f0)
00:1c.6 PCI bridge: Intel Corporation Device a296 (rev f0)
00:1c.7 PCI bridge: Intel Corporation Device a297 (rev f0)
00:1d.0 PCI bridge: Intel Corporation Device a298 (rev f0)
00:1d.4 PCI bridge: Intel Corporation Device a29c (rev f0)
00:1f.0 ISA bridge: Intel Corporation Device a2c9
00:1f.2 Memory controller: Intel Corporation Device a2a1
00:1f.3 Audio device: Intel Corporation Device a2f0
00:1f.4 SMBus: Intel Corporation Device a2a3
01:00.0 VGA compatible controller: NVIDIA Corporation Device 1be0 (rev a1)
01:00.1 Audio device: NVIDIA Corporation Device 10f0 (rev a1)
6d:00.0 Ethernet controller: Qualcomm Atheros Device e0b1 (rev 10)
6e:00.0 SD Host controller: Realtek Semiconductor Co., Ltd. RTS5250 PCI Express Card Reader (rev 01)
**70:00.0 Network controller: Intel Corporation Device 2526 (rev 29)**

编辑1:

输出 lspci -k

70:00.0 Network controller: Intel Corporation Device 2526 (rev 29)
Subsystem: Intel Corporation Device 0014
Kernel driver in use: iwlwifi
Kernel modules: iwlwifi

输出uname-r

4.13.0-45-generic

答案1

尝试升级到一个新的稳定内核(假设您使用的是 x86_64):

http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.17.8/

创建一个新目录,然后从那里下载 linux amd64: headers all、headers generic、image generic 和 modules generic deb 包,然后 cd 到创建的目录并使用以下命令安装它们:

sudo dpkg -i *

然后做

sudo update-grub

然后用新内核重启你的笔记本电脑。这一定有帮助。

相关内容