After a necessairy boot repair, the kernel load time is significantly longer than normal: 34s. http://paste.ubuntu.com/p/s45GGcf22B I don't know how to fix that.
about: Long kernel load time the Intel Speed Step, on or off gave me both 34s for the kernel to load.
I don't understand this solution well: Is it normal for Ubuntu to take a long time to shut down after running the boot-repair program?
My grub menu seems to be on my Windows SSD and my Ubuntu on an other SSD.
I had to repair the boot since I accidently pulled out a data cable of one of my SSD drives. Luckily, I have access to my Windows and my Ubuntu.
Here is my startup script in the Grub Customizer for Ubuntu, causing the slow start:
Here is the script I found in the Grub customizer to launch my Ubuntu:
recordfail
load_video
gfxmode $linux_gfx_mode
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd1,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-bios=hd1,msdos1 --hint-efi=hd1,msdos1 --hint-baremetal=ahci1,msdos1 c1d84984-8159-4a32-bf22-a30e1d0f33fe
else
search --no-floppy --fs-uuid --set=root c1d84984-8159-4a32-bf22-a30e1d0f33fe
fi
linux /boot/vmlinuz-4.15.0-128-generic root=UUID=c1d84984-8159-4a32-bf22-a30e1d0f33fe ro quiet splash $vt_handoff
initrd /boot/initrd.img-4.15.0-128-generic
grub-install (GRUB) 2.02-2ubuntu8.20
– Rogonow Dec 30 '20 at 19:56cat /etc/fstab
if in your install. If in live installer and want to see version in your install, you have to mount it and then include that in your path. Is UEFI Secure Boot on? MODSIGN is related to Secure Boot, but may be trying to load a video driver or WiFi driver that is not signed, you have to manually sign any proprietary drivers. some systems have other settings also besides UEFI Secure Boot which could be "Windows" or "Other" Change UEFI settings from custom to standard https://ubuntuforums.org/showthread.php?t=2380700 & https://ubuntuforums.org/showthread.php?t=2407705 – oldfred Jan 02 '21 at 18:50sudo nano /etc/fstab
No spaces in parameter & must be spelled correctly. Parameters I have for / (root)noatime,errors=remount-ro
But that should not change boot time much. It is more for write time. – oldfred Jan 13 '21 at 20:40