Ubuntu 16.04 挂在“停止提升网络接口......”

Ubuntu 16.04 挂在“停止提升网络接口......”

我正在运行 Ubuntu 16.04.3 LTS,需要将我的第一个界面命名为eth0。这就是为什么我在 GRUB 配置中放置了以下行,正如这个建议的那样这个问题

GRUB_CMDLINE_LINUX="net.ifnames=0"

问题是,添加此行后,Ubuntu 在关机时挂起

"Stopping Raise network interfaces..."

Syslog/journalctl 不包含任何(有用的)消息,所以我不知道从哪里开始调试。我注意到当我使用

systemctl reboot --force

重新启动我的系统,它不会挂起。

编辑

ifconfig:

eth0      Link encap:Ethernet  HWaddr 00:0c:29:b4:7b:a0
      inet addr:192.168.1.99  Bcast:192.168.1.255  Mask:255.255.255.0
      inet6 addr: fe80::20c:29ff:feb4:7ba0/64 Scope:Link
      UP BROADCAST RUNNING  MTU:1500  Metric:1
      RX packets:29046 errors:0 dropped:0 overruns:0 frame:0
      TX packets:20150 errors:0 dropped:0 overruns:0 carrier:0
      collisions:0 txqueuelen:1000
      RX bytes:185897012 (185.8 MB)  TX bytes:5042378 (5.0 MB)

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:8 errors:0 dropped:0 overruns:0 frame:0
          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0
          collisions:0 txqueuelen:1
          RX bytes:436 (436.0 B)  TX bytes:436 (436.0 B)

猫/等/网络/接口:

source /etc/network/interfaces.d/*

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet dhcp

相关内容