Monday, April 29, 2024
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 810  / 1 Year ago, thu, february 9, 2023, 3:28:51

To my surprise network fails after Ubuntu installs.




  1. modprobe e1000, did not get networking to kick off

  2. modprobe e1000e, too did not load

  3. Searched for the drivers on the intel site, no linux drivers listed.



lspci reports



00:19.0 Ethernet controller [0200]: Intel Corporation Device [8086:1503] (rev 04)


Any idea on how to proceed ? Is there a place where I can map driver names (like e1000, e1000e) with the model numbers ?


More From » installation

 Answers
1

The map to the pci.id is in modinfo.



$ modinfo e1000e | grep 1503
alias: pci:v00008086d00001503sv*sd*bc*sc*i*


To install the updated e1000e, you will need to download the file to your desktop, extract it and then, from a terminal:



sudo apt-get install build-essential linux-headers-generic
cd Desktop/e1000e-2.3.2/src
make
sudo make install
sudo modprobe -r e1000e && sudo modprobe e1000e


Each time a new kernel, also known as linux-image is installed, recompile:



cd Desktop/e1000e-2.3.2
make clean
make
sudo make install
sudo modprobe -r e1000e && sudo modprobe e1000e


Obviously, to install all this, a temporary wireless connection is strongly suggested.


[#30490] Thursday, February 9, 2023, 1 Year  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
arkcker

Total Points: 296
Total Questions: 111
Total Answers: 104

Location: Nepal
Member since Tue, Sep 8, 2020
4 Years ago
arkcker questions
Tue, Aug 17, 21, 00:08, 3 Years ago
Sun, May 14, 23, 01:04, 1 Year ago
Wed, Nov 16, 22, 03:12, 1 Year ago
Tue, Jun 1, 21, 01:29, 3 Years ago
;