I219 8086:15fa 5.4 内核上的网络驱动程序问题

I219 8086:15fa 5.4 内核上的网络驱动程序问题

今天缺少网络驱动程序Linux Mint 20(5.4.0-73-通用)带有嵌入式主板网卡

英特尔公司以太网连接 (14) I219-V [8086:15fa](修订版 11)

不认为这是可能的新内核。 (5.4)

顺便说一句,主板(MoBo)是华擎型号:B560M-ITX/ac

想分享一些帮助我的命令

  • 确定这是一名失踪的司机,
  • 如何安装驱动程序。
  • 如何知道哪个内核将包含它。

答案1

对我来说类似。我安装了 Ubuntu 18.04.6 服务器映像,并在我的 Lenovo P350 上安装了无人认领的 Intel i219-LM。

此安装中也缺少 make 和 gcc,但驱动程序安装仍然失败。

sudo apt install linux-generic-hwe-18.04

完成了工作。此后驱动程序安装对我有用。

谢谢:https://askubuntu.com/questions/1208978/intel-corporation-device-80860d4f-is-not-supported-on-ubuntu-18-04-3

非常感谢 - 马克

答案2

CMD 有助于缩小缺少驱动程序的范围

    sudo lshw -class network

其中有:

*-网络无人认领

我比较了我的 HW ID8086:15fa在这里并根据这个https://cateee.net/lkddb/web-lkddb/E1000E.html包含在内核 5.5–5.11、5.12-rc+HEAD 中(所以我的 5.4 只是旧版本的一个版本)

这里有几个命令要检查

lspci -knn
sudo lshw -class network
sudo lspci -v
dmesg | grep "00:1f.6"  #based on previous output
dmesg | grep "8086:15fa"  #based on previous output

示例输出


tilo@trex-lx:~$ sudo lspci -v
00:1f.6 Ethernet controller: Intel Corporation Ethernet Connection (14) I219-V (rev 11)
    Subsystem: ASRock Incorporation Ethernet Connection (14) I219-V
    Flags: fast devsel, IRQ 255
    Memory at a3400000 (32-bit, non-prefetchable) [disabled] [size=128K]
    Capabilities: [c8] Power Management version 3
    Capabilities: [d0] MSI: Enable- Count=1/1 Maskable- 64bit+

tilo@trex-lx:~$ dmesg | grep "00:1f.6"
[    0.350866] pci 0000:00:1f.6: [8086:15fa] type 00 class 0x020000
[    0.350928] pci 0000:00:1f.6: reg 0x10: [mem 0xa3400000-0xa341ffff]
[    0.351165] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold

tilo@trex-lx:~$ lspci -knn
00:1f.6 Ethernet controller [0200]: Intel Corporation Ethernet Connection (14) I219-V [8086:15fa] (rev 11)
    Subsystem: ASRock Incorporation Ethernet Connection (14) I219-V [1849:15fa]


tilo@trex-lx:~$ sudo lshw -class network -short
H/W path           Device          Class          Description
=============================================================
/0/100/1d/0        wlp3s0          network        Dual Band Wireless-AC 3168NGW [Stone Peak]
/0/100/1f.6                        network        Ethernet Connection (14) I219-V


tilo@trex-lx:~$ sudo lshw -class network 
  *-network                 
       description: Wireless interface
---removed---
  *-network UNCLAIMED
       description: Ethernet controller
       product: Ethernet Connection (14) I219-V
       vendor: Intel Corporation
       physical id: 1f.6
       bus info: pci@0000:00:1f.6
       version: 11
       width: 32 bits
       clock: 33MHz
       capabilities: pm msi cap_list
       configuration: latency=0
       resources: memory:a3400000-a341ffff

tilo@trex-lx:~/Downloads/Preboot_26.1/APPS/BootUtil/Linux_x64$ sudo ./bootutil64e
Connection to QV driver failed - please reinstall it!

Intel(R) Ethernet Flash Firmware Utility
BootUtil version 1.7.27.1
Copyright (C) 2003-2020 Intel Corporation

Type BootUtil -? for help

Port Network Address Location Series  WOL Flash Firmware                Version
==== =============== ======== ======= === ============================= =======
  1   A--removed-D     0:31.6 Gigabit N/A FLASH Not Present


英特尔驱动下载: https://www.intel.com/content/www/us/en/support/articles/000005480/ethernet-products.html https://downloadcenter.intel.com/download/15817

安装看这里:https://askubuntu.com/a/1094806/37213

## unpack
tar xfv e1000e-3.8.4.tar.gz
##change dir
cd e1000e-3.8.4/src/
## install
sudo make install
## reboot

笔记:内核更新后需要重复。

Ubuntu LTS 和 Linux mint 还支持使用更新的内核(通过 HWE 堆栈)以避免手动安装驱动程序。

相关内容