欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Ubuntu修改网卡名称(enp0s 改为eth)

程序员文章站 2022-06-02 22:00:45
...

1、问题:

  • 网卡名称为enp0s需要修改为eth0;
  • 修改IP;
  • IP修改不成功;

2、解决方法

修改IP:

sudo gedit /etc/network/interfaces
# 网卡1(此注释不需写入)
# NAT interface
auto eth0
iface eth0 inet dhcp

# 网卡2(此注释不需写入)
# host only interface
auto eth1
iface eth1 inet static
address 192.168.56.101
netmask 255.255.255.0
network 192.168.56.0
broadcast 192.168.56.255

修改网卡 :

sudo gedit /etc/default/grub

修改GRUB_CMDLINE_LINUX 为 ---> "net.ifnames=0 biosdevname=0"。

执行:

sudo update-grub

执行:

sudo reboot

修改成功。

ifconfig

Ubuntu修改网卡名称(enp0s 改为eth)