![]() |
Lite now taking 3 minutes to boot - Printable Version +- Linux Lite Forums (https://www.linuxliteos.com/forums) +-- Forum: Hardware - Support (https://www.linuxliteos.com/forums/forumdisplay.php?fid=6) +--- Forum: Start up and Shutdown (https://www.linuxliteos.com/forums/forumdisplay.php?fid=27) +--- Thread: Lite now taking 3 minutes to boot (/showthread.php?tid=6424) |
Lite now taking 3 minutes to boot - arky217 - 09-04-2019 I had Linux Lite (4.6) installed in a triple boot on a 120Gb SSD. I went to use Timeshift to make a backup of Linux Lite, but it failed saying that there was not enough disc space. I checked and sure enough, there was only a few Gb of free space on the Lite partition. So, booting to a live Lite USB, I deleted one of the other os's and then resized Lite to a greater partition size. Well, it did something to grub and when I rebooted, it booted to the grub rescue mode. Well, using another computer to get some grub rescue mode instructions, I was then able to boot into Lite. Then I reinstall grub to /dev/sda and did a grub update. It all appears to work now except that whereas before the time to boot into Lite was about 30 seconds, now it takes 3 minutes to boot. Any idea what could have made the boot time go from 30 sec to 3 minutes ? Here is a copy of my grub file: # If you change this file, run 'update-grub' afterwards to update # /boot/grub/grub.cfg. # For full documentation of the options in this file, see: # info -f grub -n 'Simple configuration' GRUB_DEFAULT=saved #GRUB_DEFAULT=0 GRUB_SAVEDEFAULT=true #GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=5 GRUB_DISTRIBUTOR='Linux Lite' #GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` #GRUB_DISTRIBUTOR=`lsb_release -d 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" # Linux Lite Grub background GRUB_BACKGROUND="/boot/grub_linux_lite.png" # Uncomment to enable BadRAM filtering, modify to suit your needs # This works with Linux (no patch required) and with any kernel that obtains # the memory map information from GRUB (GNU Mach, kernel of FreeBSD ...) #GRUB_BADRAM="0x01234567,0xfefefefe,0x89abcdef,0xefefefef" # Uncomment to disable graphical terminal (grub-pc only) #GRUB_TERMINAL=console # The resolution used on graphical terminal # note that you can use only modes which your graphic card supports via VBE # you can see them in real GRUB with the command `vbeinfo' #GRUB_GFXMODE=640x480 GRUB_GFXPAYLOAD_LINUX="keep" GRUB_VIDEO_BACKEND="vbe" # Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux #GRUB_DISABLE_LINUX_UUID=true # Uncomment to disable generation of recovery mode menu entries #GRUB_DISABLE_RECOVERY="true" # Uncomment to get a beep at grub start #GRUB_INIT_TUNE="480 440 1" Edit: I just looked at the boot log and there are seemingly countless occurances of starting light display manager and within each occurance it is trying to start vboxadd.service. Could this have anything to do with the slow boot time ? Re: Lite now taking 3 minutes to boot - Artim - 09-04-2019 Yup. It's the vboxadd.service that is likely the issue. You can uncheck it from the startup routine using Menu Settings Session & Startup, then click on the Application Autostart tab and UNCHECK vbox. Re: Lite now taking 3 minutes to boot - arky217 - 09-04-2019 (09-04-2019, 08:20 AM)Artim link Wrote: Yup. It's the vboxadd.service that is likely the issue. I did that and rebooted, but it made no difference; still takes nearly 3 minutes to boot. Re: Lite now taking 3 minutes to boot - Valtam - 09-04-2019 See the 'Performance Tips' here - https://www.linuxliteos.com/forums/release-announcements/linux-lite-4-0-final-released/ Re: Lite now taking 3 minutes to boot - arky217 - 09-04-2019 (09-04-2019, 03:06 PM)Jerry link Wrote: See the 'Performance Tips' here - https://www.linuxliteos.com/forums/release-announcements/linux-lite-4-0-final-released/ I unchecked vboxclient in the startup and I ran all the following: Code: sudo apt purge virtualbox* Then I rebooted but still same slow boot, 3 minutes. Re: Lite now taking 3 minutes to boot - arky217 - 09-04-2019 Well, I found the problem of the long boot time. When I deleted the partition of another os on the drive, I also deleted the swap partition which was 12Gb because I never use more than 2 or 3 Gb of the 12 Gb of ram that I have. I figured that with 12Gb of ram, the computer would never use the swap partition. So, I had to edit /etc/fstab and remove the reference to that swap partition that I deleted so that the boot up would not be trying to find a partition that no longer exists. That changed the boot time from 3 minutes to 20 seconds. But that raises a question: If the computer ever did have to use swap, would it just use a swap file ? I've read that with Ubuntu 18.04 and its forks, a swap file is automatically created upon installation. When installing Lite from scratch, is a swap file created ? I searched for a file called swapfile and there is one. Does that mean that if the computer were to need to use swap, would it automatically use that swap file, or is there something that needs to be done to activate that swap file ? Re: Lite now taking 3 minutes to boot - minesheep - 09-04-2019 Ubuntu 18.04 LTS and Linux lite 4.x won't create swap partition by default instead they make swapfile or use swap partition made by another distro. Not sure if they use both or not, partition (another distro) and file (own). When you installed one of your 2 other distros before installing linux lite thay made their own swap partition(s) and when you installed linux lite it just marked that partition so it was used by both distros. |