![]() |
Solution to slow booting - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: General (https://www.linuxliteos.com/forums/forumdisplay.php?fid=4) +--- Forum: Suggestions and Feedback (https://www.linuxliteos.com/forums/forumdisplay.php?fid=13) +--- Thread: Solution to slow booting (/showthread.php?tid=5368) |
Solution to slow booting - uthappam - 06-11-2018 It appears that slow booting has been a problem with Linux Lite for some years. I downloaded and installed LL 4.0 last night and was about to discard it when a search turned up these steps: sudo leafpad /etc/default/grub replace GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash” with GRUB_CMDLINE_LINUX_DEFAULT=”quiet splash profile” sudo update-grub2 sudo leafpad /etc/init.d/rc find this line : CONCURRENCY=none or CONCURRENCY=makefile replace with : CONCURRENCY=shell sudo apt purge virtualbox* sudo systemctl stop vboxadd.service sudo systemctl stop vboxadd-service.service sudo systemctl disable vboxadd.service sudo systemctl disable vboxadd-service.service untick the vbox client in the menu, settings, session and startup, application auto-start setting. I do not think that software so recently released should require a user to do such things, specially as LL is said to have been designed for first time Linux users. Re: Solution to slow booting - Mart - 06-11-2018 Uthappam Interesting post. Will your instructions - up to (but not including) sudo apt purge virtualbox* - work in LL 3.8? Thanks Mart Re: Solution to slow booting - trinidad - 06-11-2018 concurrency=shell is not a valid entry. won't break anything but acts the same as concurrency=none. TC Re: Solution to slow booting - uthappam - 06-11-2018 Mart, I cannot answer your question. This is my first use of Linux Lite. Virtualbox is in the repositories but was not installed. I have no idea why it was put in -- or was permitted to sneak in. Re: Solution to slow booting - Valtam - 06-12-2018 (06-11-2018, 10:50 PM)uthappam link Wrote: Mart, I cannot answer your question. This is my first use of Linux Lite. Virtualbox is in the repositories but was not installed. I have no idea why it was put in -- or was permitted to sneak in. Let me enlighten you on the reason. https://www.linuxliteos.com/forums/release-announcements/linux-lite-4-0-final-released/ Re: Solution to slow booting - dihonomo - 06-22-2018 I have just found a great blog-post on speeding-up a slow boot here: https://www.dedoimedo.com/computers/ubuntu-beaver-slow-boot.html Before: Code: systemd-analyze Code: systemd-analyze critical-chain After analyzing the log files as explained in the post I linked to above I noticed that the main slow-down was caused by NetworkManager waiting for IPv6 to activate. As I hadn't enabled any support for it on my network, I just disabled it in "NetworkManager -> Edit Connections -> IPv6 Settings: Ignore". This shaved off another 20 seconds from the boot process: Code: systemd-analyze Code: systemd-analyze critical-chain 8) Re: Solution to slow booting - vitorsm7 - 11-11-2019 I registered on this site just to thank you for this post. Thank you so much for this help! Re: Solution to slow booting - Paul74 - 11-26-2019 Hello, Very interesting ! Using a SSD, my PC boots in less than 20 seconds. ![]() |