I use Linux Mint 18.2 Cinnamon (upgraded from 17).
I try to comprehend, why my Haswell CPU with 16GB RAM and 500GB SSD is booting longer than expected.
When I run:
systemd-analyze blame
The first two lines look suspicious:
8.080s NetworkManager-wait-online.service 1.039s lvm2-monitor.service
- I don't use LVM that I know of, can I safely uninstall
lvm2package? - Why would the Network Manager need to wait for 8 seconds when connected to LAN.
Could anyone shed a light on this issue?
systemctl disable lvm2-monitor. Do you use DHCP?journalctlor/var/log) for anything strange?NetworkManageruses the 'daemon' syslog facility, configure yoursyslogto check it. I am sure it should be DHCP or DNS registration issue.systemctl disable NetworkManager-wait-online, then go into the Menu and search for Startup. In the Startup menu, create a new custom entry with the command line/bin/bash -c "/lib/systemd/system/NetworkManager-wait-online restart &". Enjoy :). NOTE: this only shows the desktop sooner. You wont have internet until the NetworkManager loads. If trying this breaks the internet, then runsystemctl enable NetworkManager-wait-online&&systemctl start NetworkManager-wait-onlineto undo.