web-dev-qa-db-ja.com

ネットワークUNCLAIMED(Intel I219-V)Ubuntu 18.04.1 LTS

Ubuntuを18.04.1に更新した後、有線ネットワークが機能しなくなりました。

ifconfig -a
lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<Host>
        loop  txqueuelen 1000  (Local Loopback)
        RX packets 7015  bytes 562352 (562.3 KB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 7015  bytes 562352 (562.3 KB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

wlan1: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.57  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::3e33:ff:fe4e:d687  prefixlen 64  scopeid 0x20<link>
        ether 3c:33:00:4e:d6:87  txqueuelen 1000  (Ethernet)
        RX packets 29273  bytes 22749547 (22.7 MB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 24342  bytes 3885122 (3.8 MB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

Lshwの実行:

*-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: 31
     width: 32 bits
     clock: 33MHz
     capabilities: cap_list
     configuration: latency=0
     resources: memory:df300000-df31ffff

インテルからドライバーをダウンロードしましたが、インストールできませんでした

allan@allan-MS-7998:~/Dokumenter/ethernetdriver/e1000e-3.4.0.2/src$ Sudo make install
cc1: error: code model kernel does not support PIC mode
/bin/sh: 1: [: -ge: unexpected operator
Makefile:199: *** *** Aborting the build. *** This driver is not supported on kernel versions older than 2.4.0.  Stop.

有線ネットワークを再度アクティブにするのを手伝ってくれる人はいますか?

Sudo modprobe e1000e && dmesg | grep e100
    [Sudo] adgangskode for allan: 
    [    1.460981] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
    [    1.460981] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [    1.517922] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [    2.448108] e1000e: probe of 0000:00:1f.6 failed with error -2
    [ 2062.302746] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
    [ 2062.302747] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [ 2062.302939] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 2063.317879] e1000e: probe of 0000:00:1f.6 failed with error -2
    [ 5652.446473] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
    [ 5652.446474] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
    [ 5652.446664] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
    [ 5653.434212] e1000e: probe of 0000:00:1f.6 failed with error -2

詳細は次のとおりです。

inxi -Fx
System:    Host: allan-MS-7998 Kernel: 4.15.0-32-generic x86_64 bits: 64 gcc: 7.3.0 Console: tty 0
           Distro: Ubuntu 18.04.1 LTS
Machine:   Device: desktop Mobo: MSI model: Z170A SLI PLUS (MS-7998) v: 1.0 serial: N/A
           UEFI [Legacy]: American Megatrends v: 1.C0 date: 10/12/2017
CPU:       Quad core Intel Core i7-6700K (-MT-MCP-) Arch: Skylake-S rev.3 cache: 8192 KB

新しいドライバーをインストールできました。しかし、chili555が言ったように、解決すべき根本的な問題がなければなりません:

dmesg | grep e100                                                                                                                                             
[    1.441862] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[    1.441862] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[    1.510455] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[    2.448105] e1000e: probe of 0000:00:1f.6 failed with error -2
[  379.964316] e1000e: Intel(R) PRO/1000 Network Driver - 3.4.0.2-NAPI
[  379.964316] e1000e: Copyright(c) 1999 - 2017 Intel Corporation.
[  379.964509] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[  380.989857] e1000e: probe of 0000:00:1f.6 failed with error -2

最後の行はどういう意味ですか?使用できるものを見つけることなく、ネットを検索しました。

1
Allan Bertelsen

これは私のために働いた解決策です。イーサネットコントローラーI219-Vは、Z170A SLI PLUSマザーボードに統合されています。 BIOSを更新し、以前は正常に動作していたオペレーティングシステムを起動しました-運がなければ-この問題に対するさらなる作業は時間の無駄になると確信しました。解決策は、BIOSでI219-Vを無効にし、新しいネットワークアダプターをインストールすることでした。それでも解決しようとする同様の問題を抱えている可能性がある人のために、私は謝罪します。しかし、新しいカードは非常に安価であるため、続行するのにお金はかかりません。

1
Allan Bertelsen