I am using Ubuntu 18.04
I am confused with quiet splash
adding nomodeset
something like this..
What is the best option to boost the boot up time? My main aim is to reduce the boot time with in the given choices like quiet splash nomodeset
or if 50 things to add, I am ready to do that if it can reduce the boot time.
i run the command
sudo journalctl --boot > boot.log
it saved a copy in my home folder.
Here is the link https://paste.ubuntu.com/p/sSV9vhsyKh/
Output of systemd-analyze blame
https://paste.ubuntu.com/p/Bd7wcbX5qF/
Boot time is "controlled" by the speed at which the installed programs and services can load. So to speed it up:
preload
could help with some programs particularly after boot. 6GB should be enough for now!The latter is the cheapest, and you already found one of the more ideal solutions in
systemd-analyze
(for newer linux systems). Theblame
option lists the services that take longest to complete (note, ones likeplymouth
, have to wait for other services to finish starting to complete, so removing them wont improve boot time by much).Some services are important to the systems operation, so aren't ideal to remove (e.g. NetworkManager), but perhaps can be configured so no errors occur or it doesnt try and load stuff you may not use (e.g.
lvm
). If you post the top output ofblame
in your question we may be able to help with this!Also, running
systemd-analyze plot > file.svg
will give you a visual overview of the boot time (as an imagefile.svg
). Other methods are listed here (but surprisingly misses theplot
option covered here).The options you added are explained here. I'm not sure if I've heard of uses for them outside of dealing with weird video hardware, but any speed increase here is from skipping the splash screen. It might increase speed a bit but the output shows its starting up properly (i.e. I wouldn't bother except on a computer without a display in a fixed state).