首页 > 系统相关 >如何将Linux的NIC 名称更改为 eth0 而不是 enps33 或 enp0s25,只要几秒钟

如何将Linux的NIC 名称更改为 eth0 而不是 enps33 或 enp0s25,只要几秒钟

时间:2023-02-23 21:12:12浏览次数:42  
标签:GRUB grub NIC image boot enp0s25 网卡 enps33 Found

概述

我们使用Linux系统,网卡名称通常都是eth0,但是有一些新的linux发行版,网卡名字 enps33 或 enp0s25。

peng@ubuntu:~$ ifconfig 
ens33     Link encap:Ethernet  HWaddr 00:0c:29:fd:4d:3a  
          inet addr:192.168.0.113  Bcast:192.168.0.255  Mask:255.255.255.0
          inet6 addr: fe80::6abf:1256:56f4:c740/64 Scope:Link
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:2032 errors:0 dropped:0 overruns:0 frame:0
          TX packets:1381 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:2348705 (2.3 MB)  TX bytes:111240 (111.2 KB)

lo        Link encap:Local Loopback  
          inet addr:127.0.0.1  Mask:255.0.0.0
          inet6 addr: ::1/128 Scope:Host
          UP LOOPBACK RUNNING  MTU:65536  Metric:1
          RX packets:256 errors:0 dropped:0 overruns:0 frame:0
          TX packets:256 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1000 
          RX bytes:20758 (20.7 KB)  TX bytes:20758 (20.7 KB)

Eth0和ens的区别

  1. eno1:代表由主办bios内置的网卡
  2. Ens:代表有主板bios内置的PCI-E网卡
  3. Enp2s0:PCI-E独立网卡
  4. Eth0:如果以上都不使用回到默认的网卡名

网卡名称字符含义

  • 1、前2个字符的含义
    en  以太网    Ethernet
    wl  无线局域网  WLAN
    ww  无线广域网  WWAN

  • 2、第3个字符根据设备类型选择

o<index>           on-board device index number
s<slot>            hotplug slot index number
x<MAC>             MAC address
p<bus>s<slot>      PCI geographical location
p<bus>s<slot>      USB port number chain

这主要是由于 systemd,大多数较新的发行版linux的NIC采用非标准名称命名。
这给很多人带来了不方便,尤其是那些运维服务器的人。
这意味着他们之前编写的很多配置文件都需要修改。

解决方法

下面教大家一个方法,只需几秒钟就可以解决这个问题,它适用于几乎所有 Linux 操作系统: Ubuntu、Linux Mint、CentOS、RHEL/Fedora、Debian等...、

第一步

使用管理员权限/etc/default/grub文件

peng@ubuntu:~$ sudo vim /etc/default/grub 

增加以下配置信息:

 14 GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0" 
  • ubuntu修改截图如下:

  • CentOS 8 的grub文件修改如下:
GRUB_TIMEOUT=5 
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)" GRUB_DEFAULT 
=saved 
GRUB_DISABLE_SUBMENU=true 
GRUB_TERMINAL_OUTPUT="console" 
GRUB_CMDLINE_LINUX="crashkernel=auto resume=UUID=bbed66de -8c71-44e3-aa82-da7830ccc98e net.ifnames=0 biosdevname=0" 
GRUB_DISABLE_RECOVERY="true" 
GRUB_ENABLE_BLSCFG=true

第二步:更新GRUB

  • 对于 Debian 的 Ubuntu/Mint:
sudo update-grub
  • Centos/RHEL
sudo grub2-mkconfig -o /boot/grub2/grub.cfg

操作如下:

peng@ubuntu:~$ update-grub
grub-mkconfig: You must run this as root
peng@ubuntu:~$ sudo update-grub
Generating grub configuration file ...
Warning: Setting GRUB_TIMEOUT to a non-zero value when GRUB_HIDDEN_TIMEOUT is set is no longer supported.
Found linux image: /boot/vmlinuz-4.15.0-142-generic
Found initrd image: /boot/initrd.img-4.15.0-142-generic
Found linux image: /boot/vmlinuz-4.15.0-140-generic
Found initrd image: /boot/initrd.img-4.15.0-140-generic
Found memtest86+ image: /boot/memtest86+.elf
Found memtest86+ image: /boot/memtest86+.bin
done

第三步,重启系统

重启系统后,就可以看到网卡名字变成了eth0

快来试一下吧!

标签:GRUB,grub,NIC,image,boot,enp0s25,网卡,enps33,Found
From: https://www.cnblogs.com/yikoulinux/p/17149417.html

相关文章

  • SONiC系统第三方容器管理
    SONiC系统采用基于容器的架构,包括Redis数据库在内的几个核心部件是运行在操作系统之上的几个容器应用,这个从SONiC的软件架构图上可以明确地看出来。SONiC系统采用基于容器......
  • The Best Chest Binder: A Comprehensive Guide with Unicmi
    Formanypeople,chestbindersareanessentialpartoftheirdailylives.Chestbinderscompressthechestareatogiveaflatterappearance,whichcanbeesp......
  • The Health Benefits of Using a Unicmi Chest Binder
    Formanypeoplewhoexperiencedysphoriaordiscomfortwiththeirchest,chestbindingcanbeanimportantpartoftheirdailylives.Whileitisimportantto......
  • Gunicorn + Flask Curl命令返回状态Connection: close转keep-alive的方法
    问题介绍:在实际的业务中,会存在CURL命令请求后返回值的header中的"Connection:close"的情况,这种情况下会导致每次请求都要重新建立连接。HTTP协议采用“请求-应答”模式......
  • SONiC LAI OTN media management
    今天看了一下SONiCLAI代码仓库里面上载的代码,几个头文件,定义了一些类似SAI的数据结构。点开头文件看了看,里面的内容看起来就是一个线路系统的模型,但是这个模型和现有的模......
  • WebDark technical support information :
    WebDarkisSafariextensionthatmakesyourbrowsermorecomfortableforreading.InstallWebDarkSafariextensionfollowingthesteps:1.OpenSafaripreferen......
  • Miniconda安装及使用
    一、Miniconda安装首先使用下面的地址安装Miniconda,我使用的是windows环境,python3.10Miniconda—condadocumentation安装完使用"AnacondaPowershellPrompt(minic......
  • 圆锥曲线 / conic section の 推导 / proof
    #####椭圆/eclipse-equation/公式:$\frac{x^2}{a^2}+\frac{y^2}{b^2}=1\/\\frac{y^2}{a^2}+\frac{x^2}{b^2}=1\quad\left(a>b>0\right)$-顶点:$(\pma,0),(0,\pmb......
  • 【转】golang的log.Fatal()和panic()函数的区别
    golang的log.Fatal()和panic()函数的区别在讲两者区别之前我们先看一下os.Exit()函数的定义:funcExit(codeint)Exitcausesthecurrentprogramtoexitwiththe......
  • 利用unicorn模拟执行去除ollvm混淆
    去混淆思路先找到函数中所有的基本块确定状态变量是保存在宿主寄存器中还是栈中(局部变量)观察判断控制块的特点,将所有控制块剔除。剔除之后基本块中还包含真实块和虚假......