Kubuntu 22.04 启动缓慢

Kubuntu 22.04 启动缓慢

我的笔记本电脑最近启动很慢。我检查了stacer应用程序,但没有发现任何东西:

斯塔切尔 斯塔瑟

然后,我运行systemd-analyze critical-chain命令,这是输出:

krillavilla on  master [?] 

答案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并且我的笔记本电脑启动正常。

相关内容