I've the following ethernet driver on my PC:
*-network UNCLAIMED
description: Ethernet controller
product: Ethernet Connection (2) I219-V
vendor: Intel Corporation
physical id: 1f.6
bus info: pci@0000:00:1f.6
version: 00
width: 32 bits
clock: 33MHz
capabilities: pm msi cap_list
configuration: latency=0
resources: memory:df300000-df31ffff
Is there any driver for Ubuntu 17.04 available ?
I've tried to install the Intel drivers directly, but the installation failed with
cc1: error: code model kernel does not support PIC mode
/bin/sh: 1: [: -ge: unexpected operator
Makefile:181: *** *** Aborting the build. *** This driver is not
supported on kernel versions older than 2.4.0. Stop.
EDIT: It seems that recent Ubuntu versions already have that driver. If I execute
sudo modprobe e1000e && dmesg | grep e10
I get
[ 0.845924] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 0.845924] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 0.916285] e1000e 0000:00:1f.6: Interrupt Throttling Rate
(ints/sec) set to dynamic conservative mode
[ 1.160768] e1000e 0000:00:1f.6: The NVM Checksum Is Not Valid
[ 1.202752] e1000e: probe of 0000:00:1f.6 failed with error -5
sudo modprobe e1000e && dmesg | grep e100
– chili555 Aug 12 '17 at 11:55uname -a
,modinfo e1000e
,cat /sys/module/e1000e/version
, andlspci -nnk | grep -A3 Ethernet
? Thanks. – David Foerster Aug 13 '17 at 14:48