Wenn Sie versuchen, Linux auf einem PC mit Intels kabelgebundenem LAN zu verwenden, wird im Folgenden erläutert, wie Sie den Fehler "Die NVM-Prüfsumme ist ungültig" beheben, wenn er nicht erkannt wird.
ubuntu@ubuntu:~$ dmesg | grep e1000
[ 0.770292] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 0.770292] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 0.770448] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.052205] e1000e 0000:00:1f.6: The NVM Checksum Is Not Valid
[ 1.139563] e1000e: probe of 0000:00:1f.6 failed with error -5
https://superuser.com/questions/1104537/how-to-repair-the-checksum-of-the-non-volatile-memory-nvm-of-intel-ethernet-co http://faq3.dospara.co.jp/faq/show/6289?site_domain=default https://downloadcenter.intel.com/ja/download/29137/
Initialisieren Sie den NVM des Ethernet-Controllers mit bootutil64e
in Preboot.tar.gz
unter https://downloadcenter.intel.com/de/download/29137.
Preboot.tar.gz
herunterladen könnenPreboot.tar.gz
)Preboot.tar.gz
bootutil64e
aus, um die Standardeinstellungen des NVM wiederherzustellenDie Vorgehensweise hängt vom Motherboard ab.
Secure Boot
.Save Change and Exit
.Referenz: https://www.asrock.com/support/index.jp.asp?cat=FindBIOS
Die Vorgehensweise hängt vom Motherboard ab.
Kopieren Sie Preboot.tar.gz in den USB-Speicher und entpacken Sie ihn.
ubuntu@ubuntu:~$ tar xvfz Preboot.tar.gz
APPS/
APPS/BootUtil/
APPS/BootUtil/BootIMG.FLB
APPS/BootUtil/Docs/
APPS/BootUtil/Docs/bootutil.txt
APPS/BootUtil/iv.txt
APPS/BootUtil/Linux32/
APPS/BootUtil/Linux32/bootutil32
APPS/BootUtil/Linux32/DRIVER/
APPS/BootUtil/Linux32/DRIVER/install
APPS/BootUtil/Linux32/DRIVER/iqvlinux-1.2.0.13-0.noarch.rpm
APPS/BootUtil/Linux32/DRIVER/iqvlinux.tar.gz
APPS/BootUtil/Linux32/DRIVER/license_gpl.txt
APPS/BootUtil/Linux_x64/
APPS/BootUtil/Linux_x64/bootutil64e
APPS/BootUtil/Linux_x64/DRIVER/
APPS/BootUtil/Linux_x64/DRIVER/install
APPS/BootUtil/Linux_x64/DRIVER/iqvlinux-1.2.0.13-0.noarch.rpm
APPS/BootUtil/Linux_x64/DRIVER/iqvlinux.tar.gz
APPS/BootUtil/Linux_x64/DRIVER/license_gpl.txt
Danach weggelassen
ubuntu@ubuntu:~$ cd APPS/BootUtil/Linux_x64/DRIVER
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64/DRIVER$ sudo ./install
Extracting archive..OK!
Compiling the driver...OK!
Skipping removing QV driver - it does not exist...
Copying iqvlinux.ko driver file to /lib/modules directory...OK!
Driver installation verification...Installed!
Secure Boot
nicht ausgeschaltet istWenn "Sicherer Start" nicht deaktiviert ist, tritt der folgende Fehler auf.
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64/DRIVER$ sudo ./install
Extracting archive..OK!
Compiling the driver...OK!
Skipping removing QV driver - it does not exist...
Copying iqvlinux.ko driver file to /lib/modules directory...OK!
Driver installation verification...modprobe: ERROR: could not insert 'iqvlinux': Operation not permitted
rmmod: ERROR: Module iqvlinux is not currently loaded
Installed!
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64$ ls -l
total 3460
drwxr-xr-x 3 ubuntu ubuntu 140 Apr 18 13:05 DRIVER
-rw-r--r-- 1 ubuntu ubuntu 3541720 Nov 22 14:42 bootutil64e
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64$ chmod +x bootutil64e
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64$ ls -l
total 3460
drwxr-xr-x 3 ubuntu ubuntu 140 Apr 18 13:05 DRIVER
-rwxr-xr-x 1 ubuntu ubuntu 3541720 Nov 22 14:42 bootutil64e
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64$ sudo ./bootutil64e
Intel(R) Ethernet Flash Firmware Utility
BootUtil version 1.7.10.10
Copyright (C) 2003-2019 Intel Corporation
Type BootUtil -? for help
Port Network Address Location Series WOL Flash Firmware Version
==== =============== ======== ======= === ============================= =======
1 xxxxxxxxxxxx 0:31.6 Gigabit N/A FLASH Not Present
ubuntu@ubuntu:~/APPS/BootUtil/Linux_x64$ sudo ./bootutil64e -NIC=1 -DEFAULTCONFIG
Intel(R) Ethernet Flash Firmware Utility
BootUtil version 1.7.10.10
Copyright (C) 2003-2019 Intel Corporation
Setting PXE EEPROM words back to defaults on NIC 1...done
Port Network Address Location Series WOL Flash Firmware Version
==== =============== ======== ======= === ============================= =======
1 xxxxxxxxxxxx 0:31.6 Gigabit N/A FLASH Not Present
Schalten Sie den PC einmal aus
Wenn Sie es nicht einfügen oder entfernen, wird es beim nächsten Start nicht erkannt. Fügen Sie es daher ein oder entfernen Sie es.
1. Setzen Sie
Secure Boot auf die gleiche Weise wie beim Ausschalten des Secure Boot im BIOS auf
ON`.
Booten Sie von Live-USB-Medien auf die gleiche Weise wie "2. Booten Sie von Linux Live-USB-Medien"
ubuntu@ubuntu:~$ dmesg | grep e1000
[ 0.809135] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
[ 0.809135] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Unterlassung
[ 21.479526] e1000e: eno1 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Sie können auch bestätigen, dass es mit dem Befehl ip a
erkannt werden kann. Sie können auch eine Verbindung zum Netzwerk herstellen.
Recommended Posts