答案1
我找到了问题所在。当我将auto eth0
文件添加到我的接口时nano /etc/network/interfaces
,NetworkManager 服务正在循环我的 eth0 接口,这耽误了我的启动时间。
# interfaces(5) file used by ifup(8) and ifdown(8)
# Include files from /etc/network/interfaces.d:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
auto eth0
allow-hotplug eth0
iface eth0 inet dhcp
post-up iwconfig wlan0 power off
post-up iwconfig wlan1 power off
我删除了它auto eth0
并且我的笔记本电脑启动正常。