更新了ubuntu20.04的内核后,缺失网卡驱动与无线网卡驱动,导致无法上网,需要重新安装网卡驱动,本教程仅适合ubuntu20.04安装I219-V有线网卡驱动,无线网卡驱动暂未解决。

1. 查看网卡型号

使用以下命令查看网卡型号,可以看到网卡为I219-V

lspci -v

2. 下载对应网卡驱动

在intel官网找到I219-V驱动程序

点击下载e1000e-3.8.4.tar.gz

3. 解压对应网卡驱动

cd  ~/Downloads/
tar -xzvf e1000e-3.8.4.tar.gz

解压后会看到对应e1000e-3.8.4文件夹,文件夹内容如下

4. 安装网卡驱动

打开readme就能看到详细的安装方法,我们直接从第三步开始

To manually build the driver

  1. Move the base driver tar file to the directory of your choice.
    For example, use ‘/home/username/e1000e’ or ‘/usr/local/src/e1000e’.

  2. Untar/unzip the archive, where <x.x.x> is the version number for the
    driver tar file:

   # tar zxf e1000e-<x.x.x>.tar.gz

————————————————从这里开始安装网卡驱动—————————————————
3. Change to the driver src directory, where <x.x.x> is the version number
for the driver tar:

   # cd e1000e-<x.x.x>/src/
  1. Compile the driver module:
   # make install

The binary will be installed as:
/lib/modules//updates/drivers/net/ethernet/intel/e1000e/e1000e.ko

The install location listed above is the default location. This may differ
for various Linux distributions.

  1. Load the module using the modprobe command.

    To check the version of the driver and then load it:

   # modinfo e1000e# modprobe e1000e

Alternately, make sure that any older e1000e drivers are removed from the
kernel before loading the new module:

   # rmmod e1000e; modprobe e1000e

——————————————————以下可以不用操作——————————————————
6. Assign an IP address to the interface by entering the following,
where is the interface name that was shown in dmesg after modprobe:

   # ip address add <IP_address>/<netmask bits> dev <ethX>
  1. Verify that the interface works. Enter the following, where IP_address
    is the IP address for another machine on the same subnet as the interface
    that is being tested:
   # ping <IP_address>

—————————————————————重要——————————————————————
Note: For certain distributions like (but not limited to) Red Hat Enterprise
Linux 7 and Ubuntu, once the driver is installed, you may need to update the
initrd/initramfs file to prevent the OS loading old versions of the e1000e
driver. Use the dracut utility on Red Hat distributions:

 # dracut --force

For Ubuntu:

 # update-initramfs -u

至此完成安装

ubuntu20.04官方安装I219-V驱动相关推荐

  1. ubuntu20.04 noetic 安装 Astra Pro 驱动

    ubuntu20.04 noetic 安装 Astra Pro 驱动 拿到了一个 Orbbec Astro Pro 的摄像头,具体型号为: LeTMC301 在ubuntu中安装了相应的驱动 参考: ...

  2. 小白 uBuntu20.04 2 安装TP Link TL-WDN5200 无线网卡驱动 亲测有效

    小白 uBuntu20.04 2 安装TP Link TL-WDN5200 无线网卡驱动 首先我先说一下,其实网上很多都是有用的,只是安装步骤不是很详细罢了,我这个只做参考,希望能帮到你. 我朋友问我 ...

  3. 【Ubuntu系列】Ubuntu20.04系统下3060显卡驱动安装记录

    [Ubuntu系列]Ubuntu20.04系统下3060显卡驱动安装记录 设备及相关信息简介 具体安装步骤 step1 获取显卡硬件信息 step2 在Ubuntu系统中卸载显卡驱动 step3 安装 ...

  4. 暗影精灵8双硬盘安装Ubuntu20.04.4(显卡、网卡驱动等问题)

    目录 0.相对靠谱的博客: 1.安装Ubuntu系统 2.解决显卡驱动驱动 3.解决网卡驱动问题 4.内核问题 5.屏幕亮度.触摸板等问题 6.输入法.字体等问题 7.软件开机自启 8.无法挂载Win ...

  5. Ubuntu20.04同时安装ROS1和ROS2共存

    Ubuntu20.04同时安装ROS1和ROS2共存 文章目录 Ubuntu20.04同时安装ROS1和ROS2共存 一.换源 1.1 通过软件更新 1.2 通过修改源文件(建议) 二.安装ROS1( ...

  6. ubuntu20.04上安装和使用frp内网穿透的方法

    ubuntu20.04上安装和使用frp内网穿透的方法 第一步:下载frp软件 frp_0.36.2_linux_amd64.tar.gz 下载地址:https://download.csdn.net ...

  7. 在Ubuntu20.04上安装二进制ros2 foxy

    在Ubuntu20.04上安装二进制ros2 foxy 设置语言环境的支持,确保支持UTF-8 sudo locale-gen en_US en_US.UTF-8 sudo update-locale ...

  8. ubuntu20.04 desktop安装到移动硬盘

    ubuntu20.04 desktop 安装到移动硬盘的指定分区.方便出行携带办公. Ubuntu 20.04 install to mobile_hard_drive. 一.使用设备: hp笔记本 ...

  9. Ubuntu20.04软件安装大全

    目录 Ubuntu20.04 软件安装大全 前言 1. Windows和Ubuntu双系统安装 1.1 下载Ubuntu系统镜像 1.2 磁盘分区 1.3 GPT分区安装Ubuntu 1.4 系统完成 ...

最新文章

  1. neo4j安装_SpringBoot使用Neo4j
  2. springmvc DispatchServlet初始化九大加载策略(二)
  3. 在SQLite中使用事务
  4. 安卓市场和安智市场_安卓市场小米市场ASO详解
  5. Dockerfile脚本:CMD与ENTRYPOINT的区别
  6. MVC之AJAX异步提交表单
  7. nodejs连接redis,redis服务器的地址格式应该怎么写
  8. IOS学习笔记十九NSArray和NSMutableArray
  9. 线性搜索或顺序搜索算法在Java中如何工作? 示例教程
  10. java 读取txt字符串_java读取txt并获取某一部分字符串
  11. oracle 学习第一天
  12. matlab 度表示,在matlab中,单精度类型用关键字()表示,双精度类型用关键字()表示...
  13. 现在在做的项目的一些感想.
  14. 从小白到区块链工程师:第一阶段:Go语言的HelloWorld初始(2)
  15. sql字段合并mysql_sql合并字段
  16. MGF6mARice:利用分子图特征和残差块预测水稻DNAn6-甲基腺嘌呤位点
  17. iOS 视频录制流程解析
  18. MATLAB:三阶矩阵约当阵,能控,能观标准型转化
  19. java做网站需要什么_java怎么做网站?java做网站要掌握哪些技术?
  20. 网络猫只有计算机和机顶盒两个口,电信的猫上有两个网口,但是只能用网口1,这是为什么。360......

热门文章

  1. Autojs 抖音自动养号脚本+抖音直播控场脚本
  2. python-nmap使用方法(python3)
  3. 计算机应用教学方法与手段,计算机应用中Office办公软件的教学方法
  4. Android开发:使用Viewpager模仿驾考宝典试卷答题界面
  5. Python 数字图片盲水印
  6. 2022R2移动式压力容器充装考试题及答案
  7. 快速傅氏变换之旅(五) 嵌入式中的FFT(最好选择DSP或FPGA)
  8. P3166 [CQOI2014]数三角形
  9. 知名蓝牙芯片原厂及其发展应用史(含蓝牙V1.0-V5.0介绍)
  10. linux安装vmware tools成功后无法复制解决办法