Announcement

Collapse
No announcement yet.

slow boot kind of

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    slow boot kind of

    When I select win7 from grub2, it boots immediately. When i select Ubuntu 14.04, it sits there for about 10 seconds, then boots. I have no idea why this happens. have tried with and without a background image, same behavior. It's not a critical problem, but I hate things I can't solve. What information would anyone like to see to help me discover why this happens?

    Should also state that once the splash screen shows, it takes only 5-8 seconds to be ready for use
    Last edited by vsreeser; May 07, 2017, 09:56 PM.

    #2
    Grub entries
    Code:
    recordfail
    savedefault
    load_video
    gfxmode $linux_gfx_mode
    insmod gzio
    insmod part_msdos
    insmod ext2
    set root='hd0,msdos2'
    if [ x$feature_platform_search_hint = xy ]; then
     search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos2 --hint-efi=hd0,msdos2 --hint-baremetal=ahci0,msdos2  4fe8d664-9869-49e9-b2af-7abbbc387148
    else
     search --no-floppy --fs-uuid --set=root 4fe8d664-9869-49e9-b2af-7abbbc387148
    fi
    linux    /boot/vmlinuz-4.4.0-75-generic root=UUID=4fe8d664-9869-49e9-b2af-7abbbc387148 ro  quiet splash $vt_handoff
    initrd    /boot/initrd.img-4.4.0-75-generic
    Code:
    savedefault
    insmod part_msdos
    insmod ntfs
    set root='hd0,msdos1'
    if [ x$feature_platform_search_hint = xy ]; then
     search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1  3AEE41DE30ED8563
    else
     search --no-floppy --fs-uuid --set=root 3AEE41DE30ED8563
    fi
    parttool ${root} hidden-
    chainloader +1
    Both OS boot from SDA SSD.

    Comment


      #3
      edit: Please ignore me. I'd suggested systemd-analyze blame but that's not gonna happen on 14.04.

      I'll go sit down now

      edit v2.0: I will suggest bootchart, though
      we see things not as they are, but as we are.
      -- anais nin

      Comment

      Working...
      X