Linux Mint 英特尔 8260 无线

Linux Mint 英特尔 8260 无线

我有一台 Lenovo Thinkpad t460,但无法看到无线网络。这是 sudo lshw -C 网络的输出:

  *-network UNCLAIMED     
       description: Network controller
       product: Wireless 8260
       vendor: Intel Corporation
       physical id: 0
       bus info: pci@0000:04:00.0
       version: 3a
       width: 64 bits
       clock: 33MHz
       capabilities: pm msi pciexpress cap_list
       configuration: latency=0
       resources: memory:f1000000-f1001fff
  *-network
       description: Ethernet interface
       product: Ethernet Connection I219-LM
       vendor: Intel Corporation
       physical id: 1f.6
       bus info: pci@0000:00:1f.6
       logical name: eth0
       version: 21
       serial: 50:7b:9d:bf:9a:f8
       size: 1Gbit/s
       capacity: 1Gbit/s
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi bus_master cap_list ethernet physical tp 10bt 10bt-fd 100bt 100bt-fd 1000bt-fd autonegotiation
       configuration: autonegotia

这是 lspci -nnk | 的输出grep -iA2 网络;名称-a:

00:1f.6 Ethernet controller [0200]: Intel Corporation Ethernet Connection I219-LM [8086:156f] (rev 21)
    Subsystem: Lenovo Device [17aa:2233]
    Kernel driver in use: e1000e
--
04:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a)
    Subsystem: Intel Corporation Device [8086:0130]
Linux ComputerName 3.19.0-32-generic #37~14.04.1-Ubuntu SMP Thu Oct 22 09:41:40 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

我已经尝试过解决方案帖子,但仍然不起作用。有人对我有什么想法吗?谢谢!

答案1

好吧,我现在感觉很蠢。 Jeremy31 的评论让我思考我的子系统,这让我回到线。我已经决定这对我没有帮助,因为我没有这个子系统,但后来我突然意识到我可以通过将行更改为子系统编号来应用相同的解决方案。答对了!有效。谢谢你帮我思考这个问题。

答案2

根据无线维基你需要下载iwlwifi-8000-ucode-25.30.13.0.tgz固件。

解压并将文件复制到/lib/firmware

wget https://wireless.wiki.kernel.org/_media/en/users/drivers/iwlwifi-8000-ucode-25.30.13.0.tgz
tar xzvf iwlwifi-8000-ucode-25.30.13.0.tgz
cd iwlwifi-8000-ucode-25.30.13.0
cp iwlwifi-*.ucode /lib/firmware

编辑

加载驱动程序:

modprobe -r iwlwifi
modprobe iwlwifi

相关内容