ubuntu16.04修改网卡名称enp2s0为eth0

1、sudo vi /etc/default/grub

找到GRUB_CMDLINE_LINUX=""
改为GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
然后sudo grub-mkconfig -o /boot/grub/grub.cfg
重启后,网卡名称果然变成了eth0和wlan01234

2、vi打开ubuntu的/etc/network/interfaces文件默认的内容如下:

auto lo
iface lo inet loopback

在后面添加内容
1、获取动态配置:

auto eth0
iface eth0 inet dhcp

2、获取静态配置:

auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.112345

重启网卡

/etc/init.d/networking restart
或者 service networking restart

参考网址:
https://blog.csdn.net/wenwenxiong/article/details/52937539?utm_source=copy

你可能感兴趣的:(ubuntu16.04修改网卡名称enp2s0为eth0)