ubuntu 16.04修改网卡名为eth*
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu 16.04修改网卡名为eth*相关的知识,希望对你有一定的参考价值。
默认情况下ubuntu 16.04的系统刚安装好过后网卡名称默认如下图所示
为满足习惯,我们将网卡名称改为eth*显示
操作方法
配置文件/etc/default/grub
GRUB_CMDLINE_LINUX=""
改为
GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"
执行下面的命令
sudo grub-mkconfig -o /boot/grub/grub.cfg
修改网卡配置文件/etc/network/interfaces
auto ens160 改为 auto eth0
iface ens160 inet static 改为 iface eth0 inet static
注意:如果你是自动获取IP地址那么是将 iface ens160 inet dhcp 改为 iface eth0 inet dhcp
将网卡设置开机自启动
sudo systemctl enable networking.service
重启系统
sudo init 6
查看网卡名
以上是关于ubuntu 16.04修改网卡名为eth*的主要内容,如果未能解决你的问题,请参考以下文章