默认情况下ubuntu 16.04的系统刚安装好过后网卡名称默认如下图所示

ubuntu 16.04修改网卡名为eth*_第1张图片

为满足习惯,我们将网卡名称改为eth*显示

操作方法

  1. 配置文件/etc/default/grub

    GRUB_CMDLINE_LINUX=""

    改为

    GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0"

  2. 执行下面的命令

    sudo grub-mkconfig -o /boot/grub/grub.cfg

  3. 修改网卡配置文件/etc/network/interfaces

    auto ens160 改为 auto eth0

    iface ens160 inet static 改为 iface eth0 inet static

    注意:如果你是自动获取IP地址那么是将 iface ens160 inet dhcp 改为 iface eth0 inet dhcp

  4. 将网卡设置开机自启动

    sudo systemctl enable networking.service

  5. 重启系统

    sudo init 6

  6. 查看网卡名

    ubuntu 16.04修改网卡名为eth*_第2张图片