Optiplex 7060 上的 Ubuntu 14.04 的网络驱动程序是否存在?

Optiplex 7060 上的 Ubuntu 14.04 的网络驱动程序是否存在?

Ubuntu 硬件页面列出两个设备:https://certification.ubuntu.com/catalog/component/pci/1d6a%3Ad108/https://certification.ubuntu.com/catalog/component/pci/8086%3A15bb/

安装最新的官方 Ubuntu 14.04 版本 14.04.5 LTS 时,安装过程中出现“未检测到网络接口”提示。

我发现“英特尔以太网适配器完整驱动程序包”,但它似乎只是 Ubuntu 的源代码。

'sudo lshw -C network' 的输出是:

 *-network UNCLAIMED
    description: Ethernet controller
    product: Intel Corporation
    product: Intel Corporation
    physical id: 1f.6
    bus info: pci@0000:00:1f.6
    version: 10
    width: 32 bits
    clock: 33 MHz
    capabilities: pm msi bus_master cap_list
    configuration: latency=0
    resources: memory:91100000-9111ffff

因为它解决了 Optiplex 7040 的类似问题,所以我尝试从https://packages.ubuntu.com/trusty-updates/amd64/以及相应的依赖项:

  • Linux 映像-额外-4.4.0-134-通用_4.4.0-134.160_14.04.1_amd64.deb
  • linux-headers-4.4.0-134_4.4.0-134.160~14.04.1_all.deb
  • linux-headers-4.4.0-134-generic_4.4.0-134.160_14.04.1_amd64.deb
  • linux-headers-generic-lts-xenial_4.4.0.134.114_amd64.deb
  • Linux 映像-4.4.0-134-generic_4.4.0-134.160_14.04.1_amd64.deb
  • iucode-tool_1.0.1-1_amd64.deb
  • 英特尔-微码_3.20180807a.0ubuntu0.14.04.1_amd64.deb
  • amd64-microcode_3.20180524.1~ubuntu0.14.04.2+really20130710.1ubuntu1_amd64.deb
  • linux-镜像-通用-lts-xenial_4.4.0.134.114_amd64.deb
  • linux-通用-lts-xenial_4.4.0.134.114_amd64.deb

现在,当我运行“sudo lshw -C network”时,我得到了奇怪的行为,其中“PCI (sysfs)”短暂出现,然后消失,由新的提示代替(编辑:重新启动后,它给出与上面相同的输出)。它似乎对网络驱动程序也没有帮助。

'lspci -nnk | grep 0200 -A3' 的结果为:

00:1f.6 Ethernet controller [0200]: Intel Corporation Device [8086:15bb] (rev 10)
        Subsystem: Dell Device [1028:085a]

答案1

答案是肯定的,驱动程序确实存在,但目前仅以源代码形式存在。以下是我所做的:

从此处下载英特尔驱动程序源:https://downloadcenter.intel.com/download/22283/Ethernet-Intel-Ethernet-Adapter-Complete-Driver-Pack...

使用“sudo apt-get install --install-recommends linux-generic-lts-xenial”更新到最新的内核反向移植包

将 gcc 更新为具有“retpoline”支持的较新版本(https://lwn.net/Articles/744287/),以匹配较新的内核包(在我这样做之前,我收到了以下错误):

version magic '4.4.0-145-generic SMP mod_unload modversions ' should be '4.4.0-134-generic SMP mod_unload modversions retpoline'
insmod: ERROR: could not insert module ./e1000e.ko: Invalid module format

从英特尔源代码构建 e1000e-3.4.0.2,通过 USB 将其放到机器上,替换 /lib/modules 下的现有 e1000e 驱动程序,并在 /etc/modules 中添加一行“e1000e”。

添加到/etc/network/interfaces:

auto em1
iface em1 inet dhcp

相关内容