我在启动时会获得以下信息,大约需要3到5分钟,而通常需要1分钟:
Waiting network configuration Booting system without full network configuration
谷歌搜索后发现我应该更改/ etc / networks / interface。我注释掉了那里的所有内容,但问题仍然存在:
# auto lo
# iface lo inet loopback
# auto eth0
# iface eth0 inet dhcp
# address 192.168.0.2
# netmask 255.255.255.0
# gateway 192.168.0.1
# broadcast 192.168.0.255
如何使Ubuntu 11.10的启动速度更快?
allow-hotplug
,而不是auto
在/ etc /网络/接口文件,例如,allow-hotplug enp0s25
然后iface enp0s25 inet dhcp
。这告诉服务器不要等待dhcp答复点亮接口。