Linux Mint 17.3 无法识别新版本上的 WiFi 卡

Linux Mint 17.3 无法识别新版本上的 WiFi 卡

我刚刚完成桌面构建并安装了 Linux Mint 17.3,但根本没有检测到 PCIe WiFi 卡。该卡是一个技嘉 GC-WB867D-I

除了缺少驱动程序之外,没有任何东西可以识别设备的存在,但就像根本没有任何东西一样。

我使用以太网执行软件中心中所有推荐的更新,然后打开驱动程序管理器,它告诉我没有安装任何设备。我也尝试过更换主板上的不同 PCIe 插槽,但遇到了相同的症状。

我还在亚马逊的 WiFi 卡评论中看到它使用 Intel 7260AC 芯片,因此我下载了在 Intel 网站上找到的 iwlwifi 驱动程序并将cp其插入/library/firmware并重新启动。我不知道这是否能完成任何事情。

我也跑过sudo apt-get install linux-firmware并且sudo apt-get install linux-firmware-nonfree.

最后,这是结果lspci

lspci
00:00.0 Host bridge: Intel Corporation Sky Lake Host Bridge/DRAM Registers (rev 07)
00:02.0 VGA compatible controller: Intel Corporation Sky Lake Integrated Graphics (rev 06)
00:14.0 USB controller: Intel Corporation Sunrise Point-H USB 3.0 xHCI Controller (rev 31)
00:14.2 Signal processing controller: Intel Corporation Sunrise Point-H Thermal subsystem (rev 31)
00:16.0 Communication controller: Intel Corporation Sunrise Point-H CSME HECI #1 (rev 31)
00:17.0 SATA controller: Intel Corporation Sunrise Point-H SATA controller [AHCI mode] (rev 31)
00:1b.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Root Port #17 (rev f1)
00:1b.2 PCI bridge: Intel Corporation Sunrise Point-H PCI Root Port #19 (rev f1)
00:1c.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #1 (rev f1)
00:1c.2 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #3 (rev f1)
00:1c.3 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #4 (rev f1)
00:1c.4 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #5 (rev f1)
00:1d.0 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #9 (rev f1)
00:1d.4 PCI bridge: Intel Corporation Sunrise Point-H PCI Express Root Port #13 (rev f1)
00:1f.0 ISA bridge: Intel Corporation Sunrise Point-H LPC Controller (rev 31)
00:1f.2 Memory controller: Intel Corporation Sunrise Point-H PMC (rev 31)
00:1f.3 Audio device: Intel Corporation Sunrise Point-H HD Audio (rev 31)
00:1f.4 SMBus: Intel Corporation Sunrise Point-H SMBus (rev 31)
02:00.0 PCI bridge: ASMedia Technology Inc. ASM1083/1085 PCIe to PCI Bridge (rev 04)
05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8111/8168/8411 PCI Express Gigabit Ethernet Controller (rev 15)
06:00.0 Network controller: Intel Corporation Wireless 8260 (rev 3a)

这里是完整零件清单构建的:

的输出lspci -knn | grep Net是:

06:00.0 Network controller [0280]: Intel Corporation Wireless 8260 [8086:24f3] (rev 3a) Subsystem: Intel Corporation Device [8086:1010]

答案1

根据无线维基英特尔® 无线 8260 设备受以下支持内核4.1然后 ,

安装build-essentiallinux headers

iwlwifi-8000-ucode-25.30.13.0.tgz从下载这里 键入以下命令:

tar -zxvf iwlwifi-8000-ucode-25.30.13.0.tgz
cd iwlwifi-8000-ucode-25.30.13.0
sudo cp iwlwifi*.ucode /lib/firmware/

从以下位置下载向后移植这里例子:

wget https://www.kernel.org/pub/linux/kernel/projects/backports/stable/v4.3/backports-4.3-1.tar.gz

解压并编译iwlwifi模块:

cd backports-4.3-1
make defconfig-iwlwifi
make
sudo make install

重启

答案2

我在编译时遇到问题:

make defconfig-iwlwifi

所以我必须添加:

sudo apt-get install build-essential

这解决了我的问题,重新启动后一切正常。

相关内容