Whenever I boot to something external, for example, usb stick or if I select a boot option other than grub, use the computer, exit the computer, start the computer, it always goes directly to Windows instead of GRUB. Of course I can bring up boot options during startup, however, I would prefer to not be required to do that. Do you think (hope I have this correct) my boot options priority list in BIOS has Windows listed as number 1 to boot to?
Announcement
Collapse
No announcement yet.
Boot Question
Collapse
This topic is closed.
X
X
-
Boot Question
Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
Tags: None
- Top
- Bottom
-
Looks like no one is up yet
I'm on the run working here, so to get you on the right path ..
It does sound like Windows is set first to boot (which corresponds to position 0).
If so, or anyway to check on this, then:
Open and edit as root
/etc/default/grub
(In Dolphin, right-click on that file, root actions/open as root/whatever); or kdesudo kate /etc/default/grub would also open it as root in Kate to edit it.)
Example:
GRUB_DEFAULT=0
GRUB_HIDDEN_TIMEOUT=0
GRUB_HIDDEN_TIMEOUT_QUIET=true
GRUB_TIMEOUT=10
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash"
GRUB_CMDLINE_LINUX=""
It would be the GRUB_DEFAULT=0 line that you need to examine.
Your OSs are listed in /boot/grub/grub.cfg -- do not edit this file; instead edit the etc/default/grub files, as we are doing here.
The first OS listed (starts with menuentry) is in position 0;
the second one listed (also prefixed by menuentry) is in position 1; etc.
After you change GRUB_Default=0 to something else (IF that is what you need to do here),
don't forget to hit Save (in Kate) before closing Kate.
I also highlighted the timeout line, showing how many seconds you have to choose an OS before GRUB boots into the default OS (indicated by GRUB_DEFAULT=?). The timeout can be edited, too.An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski
- Top
- Bottom
-
I'll check it out. At least it appears I'm on the right track. It's a new day. Thanks.Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
-
Originally posted by Qqmike View PostFor help from others here diagnosing this , you could post the file /boot/grub/grub.cfg.
Code:# # DO NOT EDIT THIS FILE # # It is automatically generated by grub-mkconfig using templates # from /etc/grub.d and settings from /etc/default/grub # ### BEGIN /etc/grub.d/00_header ### if [ -s $prefix/grubenv ]; then set have_grubenv=true load_env fi if [ "${next_entry}" ] ; then set default="${next_entry}" set next_entry= save_env next_entry set boot_once=true else set default="0" fi if [ x"${feature_menuentry_id}" = xy ]; then menuentry_id_option="--id" else menuentry_id_option="" fi export menuentry_id_option if [ "${prev_saved_entry}" ]; then set saved_entry="${prev_saved_entry}" save_env saved_entry set prev_saved_entry= save_env prev_saved_entry set boot_once=true fi function savedefault { if [ -z "${boot_once}" ]; then saved_entry="${chosen}" save_env saved_entry fi } function recordfail { set recordfail=1 if [ -n "${have_grubenv}" ]; then if [ -z "${boot_once}" ]; then save_env recordfail; fi; fi } function load_video { if [ x$feature_all_video_module = xy ]; then insmod all_video else insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga insmod video_bochs insmod video_cirrus fi } if [ x$feature_default_font_path = xy ] ; then font=unicode else insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi font="/usr/share/grub/unicode.pf2" fi if loadfont $font ; then set gfxmode=auto load_video insmod gfxterm set locale_dir=$prefix/locale set lang=en_US insmod gettext fi terminal_output gfxterm if [ "${recordfail}" = 1 ] ; then set timeout=10 else if [ x$feature_timeout_style = xy ] ; then set timeout_style=menu set timeout=10 # Fallback normal timeout code in case the timeout_style feature is # unavailable. else set timeout=10 fi fi ### END /etc/grub.d/00_header ### ### BEGIN /etc/grub.d/05_debian_theme ### set menu_color_normal=white/black set menu_color_highlight=black/light-gray #set_background_image "images/tile.png"; set menu_color_normal=white/black set menu_color_highlight=black/light-gray if background_color 0,0,0; then clear fi ### END /etc/grub.d/05_debian_theme ### ### BEGIN /etc/grub.d/10_linux ### function gfxmode { set gfxpayload="${1}" if [ "${1}" = "keep" ]; then set vt_handoff=vt.handoff=7 else set vt_handoff= fi } set linux_gfx_mode=1366x780 export linux_gfx_mode menuentry 'Ubuntu' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi linux /boot/vmlinuz-3.19.0-61-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff initrd /boot/initrd.img-3.19.0-61-generic } submenu 'Advanced options for Ubuntu' $menuentry_id_option 'gnulinux-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { menuentry 'Ubuntu, with Linux 3.19.0-61-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-61-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-61-generic ...' linux /boot/vmlinuz-3.19.0-61-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-61-generic } menuentry 'Ubuntu, with Linux 3.19.0-61-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-61-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-61-generic ...' linux /boot/vmlinuz-3.19.0-61-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-61-generic } menuentry 'Ubuntu, with Linux 3.19.0-59-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-59-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-59-generic ...' linux /boot/vmlinuz-3.19.0-59-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-59-generic } menuentry 'Ubuntu, with Linux 3.19.0-59-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-59-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-59-generic ...' linux /boot/vmlinuz-3.19.0-59-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-59-generic } menuentry 'Ubuntu, with Linux 3.19.0-58-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-58-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-58-generic ...' linux /boot/vmlinuz-3.19.0-58-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-58-generic } menuentry 'Ubuntu, with Linux 3.19.0-58-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-58-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-58-generic ...' linux /boot/vmlinuz-3.19.0-58-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-58-generic } menuentry 'Ubuntu, with Linux 3.19.0-56-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-56-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-56-generic ...' linux /boot/vmlinuz-3.19.0-56-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-56-generic } menuentry 'Ubuntu, with Linux 3.19.0-56-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-56-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-56-generic ...' linux /boot/vmlinuz-3.19.0-56-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-56-generic } menuentry 'Ubuntu, with Linux 3.19.0-51-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-51-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-51-generic ...' linux /boot/vmlinuz-3.19.0-51-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-51-generic } menuentry 'Ubuntu, with Linux 3.19.0-51-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-51-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-51-generic ...' linux /boot/vmlinuz-3.19.0-51-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-51-generic } menuentry 'Ubuntu, with Linux 3.19.0-49-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-49-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-49-generic ...' linux /boot/vmlinuz-3.19.0-49-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-49-generic } menuentry 'Ubuntu, with Linux 3.19.0-49-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-49-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-49-generic ...' linux /boot/vmlinuz-3.19.0-49-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-49-generic } menuentry 'Ubuntu, with Linux 3.19.0-47-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-47-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-47-generic ...' linux /boot/vmlinuz-3.19.0-47-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-47-generic } menuentry 'Ubuntu, with Linux 3.19.0-47-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-47-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-47-generic ...' linux /boot/vmlinuz-3.19.0-47-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-47-generic } menuentry 'Ubuntu, with Linux 3.19.0-43-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-43-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-43-generic ...' linux /boot/vmlinuz-3.19.0-43-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-43-generic } menuentry 'Ubuntu, with Linux 3.19.0-43-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-43-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-43-generic ...' linux /boot/vmlinuz-3.19.0-43-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-43-generic } menuentry 'Ubuntu, with Linux 3.19.0-42-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-42-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-42-generic ...' linux /boot/vmlinuz-3.19.0-42-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-42-generic } menuentry 'Ubuntu, with Linux 3.19.0-42-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-42-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-42-generic ...' linux /boot/vmlinuz-3.19.0-42-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-42-generic } menuentry 'Ubuntu, with Linux 3.19.0-41-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-41-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-41-generic ...' linux /boot/vmlinuz-3.19.0-41-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-41-generic } menuentry 'Ubuntu, with Linux 3.19.0-41-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-41-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-41-generic ...' linux /boot/vmlinuz-3.19.0-41-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-41-generic } menuentry 'Ubuntu, with Linux 3.19.0-39-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-39-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-39-generic ...' linux /boot/vmlinuz-3.19.0-39-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-39-generic } menuentry 'Ubuntu, with Linux 3.19.0-39-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-39-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-39-generic ...' linux /boot/vmlinuz-3.19.0-39-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-39-generic } menuentry 'Ubuntu, with Linux 3.19.0-37-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-37-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-37-generic ...' linux /boot/vmlinuz-3.19.0-37-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-37-generic } menuentry 'Ubuntu, with Linux 3.19.0-37-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-37-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-37-generic ...' linux /boot/vmlinuz-3.19.0-37-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-37-generic } menuentry 'Ubuntu, with Linux 3.19.0-33-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-33-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-33-generic ...' linux /boot/vmlinuz-3.19.0-33-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-33-generic } menuentry 'Ubuntu, with Linux 3.19.0-33-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-33-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-33-generic ...' linux /boot/vmlinuz-3.19.0-33-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-33-generic } menuentry 'Ubuntu, with Linux 3.19.0-32-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-32-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-32-generic ...' linux /boot/vmlinuz-3.19.0-32-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-32-generic } menuentry 'Ubuntu, with Linux 3.19.0-32-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-32-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-32-generic ...' linux /boot/vmlinuz-3.19.0-32-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-32-generic } menuentry 'Ubuntu, with Linux 3.19.0-31-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-31-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-31-generic ...' linux /boot/vmlinuz-3.19.0-31-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-31-generic } menuentry 'Ubuntu, with Linux 3.19.0-31-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-31-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-31-generic ...' linux /boot/vmlinuz-3.19.0-31-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-31-generic } menuentry 'Ubuntu, with Linux 3.19.0-30-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-30-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-30-generic ...' linux /boot/vmlinuz-3.19.0-30-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-30-generic } menuentry 'Ubuntu, with Linux 3.19.0-30-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-30-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-30-generic ...' linux /boot/vmlinuz-3.19.0-30-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-30-generic } menuentry 'Ubuntu, with Linux 3.19.0-28-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-28-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-28-generic ...' linux /boot/vmlinuz-3.19.0-28-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-28-generic } menuentry 'Ubuntu, with Linux 3.19.0-28-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-28-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-28-generic ...' linux /boot/vmlinuz-3.19.0-28-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-28-generic } menuentry 'Ubuntu, with Linux 3.19.0-25-generic' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-25-generic-advanced-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video gfxmode $linux_gfx_mode insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-25-generic ...' linux /boot/vmlinuz-3.19.0-25-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro quiet splash $vt_handoff echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-25-generic } menuentry 'Ubuntu, with Linux 3.19.0-25-generic (recovery mode)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-3.19.0-25-generic-recovery-0e5d634c-2ebd-473a-b4d9-4fae65502020' { recordfail load_video insmod gzio insmod part_gpt insmod ext2 set root='hd0,gpt8' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt8 --hint-efi=hd0,gpt8 --hint-baremetal=ahci0,gpt8 0e5d634c-2ebd-473a-b4d9-4fae65502020 else search --no-floppy --fs-uuid --set=root 0e5d634c-2ebd-473a-b4d9-4fae65502020 fi echo 'Loading Linux 3.19.0-25-generic ...' linux /boot/vmlinuz-3.19.0-25-generic.efi.signed root=UUID=0e5d634c-2ebd-473a-b4d9-4fae65502020 ro recovery nomodeset echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-3.19.0-25-generic } } ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/20_linux_xen ### ### END /etc/grub.d/20_linux_xen ### ### BEGIN /etc/grub.d/20_memtest86+ ### ### END /etc/grub.d/20_memtest86+ ### ### BEGIN /etc/grub.d/25_custom ### menuentry "Windows UEFI bootmgfw.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/Microsoft/Boot/bootmgfw.efi } menuentry "Windows Boot UEFI loader" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/Boot/bkpbootx64.efi } menuentry "EFI/HP/BIOSUpdate/CryptRSA32.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/BIOSUpdate/CryptRSA32.efi } menuentry "EFI/HP/BIOSUpdate/CryptRSA.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/BIOSUpdate/CryptRSA.efi } menuentry "EFI/HP/BIOSUpdate/HpBiosMgmt32.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/BIOSUpdate/HpBiosMgmt32.efi } menuentry "EFI/HP/BIOSUpdate/HpBiosMgmt.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/BIOSUpdate/HpBiosMgmt.efi } menuentry "EFI/HP/BIOSUpdate/HpBiosUpdate32.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/BIOSUpdate/HpBiosUpdate32.efi } menuentry "EFI/HP/BIOSUpdate/HpBiosUpdate.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/BIOSUpdate/HpBiosUpdate.efi } menuentry "EFI/HP/boot/bootmgfw.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/boot/bootmgfw.efi } menuentry "EFI/HP/SystemDiags/CryptRSA32.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/SystemDiags/CryptRSA32.efi } menuentry "EFI/HP/SystemDiags/CryptRSA.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/SystemDiags/CryptRSA.efi } menuentry "EFI/HP/SystemDiags/SystemDiags32.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/SystemDiags/SystemDiags32.efi } menuentry "EFI/HP/SystemDiags/SystemDiags.efi" { search --fs-uuid --no-floppy --set=root 2648-DDDC chainloader (${root})/EFI/HP/SystemDiags/SystemDiags.efi } ### END /etc/grub.d/25_custom ### ### BEGIN /etc/grub.d/30_os-prober ### menuentry 'Windows Boot Manager (on /dev/sda2)' --class windows --class os $menuentry_id_option 'osprober-efi-2648-DDDC' { insmod part_gpt insmod fat set root='hd0,gpt2' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,gpt2 --hint-efi=hd0,gpt2 --hint-baremetal=ahci0,gpt2 2648-DDDC else search --no-floppy --fs-uuid --set=root 2648-DDDC fi chainloader /EFI/Microsoft/Boot/bootmgfw.efi } set timeout_style=menu if [ "${timeout}" = 0 ]; then set timeout=10 fi ### END /etc/grub.d/30_os-prober ### ### BEGIN /etc/grub.d/30_uefi-firmware ### menuentry 'System setup' $menuentry_id_option 'uefi-firmware' { fwsetup } ### END /etc/grub.d/30_uefi-firmware ### ### BEGIN /etc/grub.d/40_custom ### # This file provides an easy way to add custom menu entries. Simply type the # menu entries you want to add after this comment. Be careful not to change # the 'exec tail' line above. ### END /etc/grub.d/40_custom ### ### BEGIN /etc/grub.d/41_custom ### if [ -f ${config_directory}/custom.cfg ]; then source ${config_directory}/custom.cfg elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then source $prefix/custom.cfg; fi ### END /etc/grub.d/41_custom ###
Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
-
Looking at the boot options in BIOS, they were listed from top to bottom (words might not be exact):
Windows Boot Manager
Ubuntu Boot Manager Grub
Ubuntu
boot from efi file
Each of the top 3 were followed by a series of numbers in parentheses. The numbers were the same for each.Last edited by logan01; Jun 20, 2016, 01:49 PM.Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
-
Heres what BIOS said:
boot manager Windows boot manager (ST500L T012 - 1DG142)
boot manager grub (ST500L T012 - 1DG142)
boot manager ubuntu (ST500L T012 - 1DG142)
I was wondering if this is the default boot priority list and I could swap the grub to #1 and windows to #2.Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
-
You can try. You can always switch it back to the way it was. I'm not sure what boot list in BIOS that is, or how your UEFI-BIOS works, but usually, yes, you can do a switch-around in the boot listings of UEFI-BIOS firmware setups.
I would also check that file
/boot/grub/grub.cfg
just to be sure that Windows isn't listed as the first, the default, OS.
I mean, lets' say you did put GRUB on top in BIOS, but Windows (in GRUB) is listed first ...An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski
- Top
- Bottom
Comment
-
I see your grub.cfg now. Ubuntu is listed first (position 0 in the listing of menuentries).
Hopefully, in your /etc/default/grub, the appropriate line reads
GRUB_DEFAULT=0
(which would cause Ubuntu to boot first).An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski
- Top
- Bottom
Comment
-
Originally posted by Qqmike View PostI see your grub.cfg now. Ubuntu is listed first (position 0 in the listing of menuentries).
Hopefully, in your /etc/default/grub, the appropriate line reads
GRUB_DEFAULT=0
(which would cause Ubuntu to boot first).
Code:# 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=0 #GRUB_HIDDEN_TIMEOUT=0 GRUB_HIDDEN_TIMEOUT_QUIET=true GRUB_TIMEOUT=10 GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian` GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" GRUB_CMDLINE_LINUX="" GRUB_GFXPAYLOAD_LINUX="1366x780" # 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,0xe fefefef" # 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 # 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"
Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
-
Does that mean grub is good to go but the boot priority in BIOS has Windows first? Does BIOS trump grub or is life not that simple? Here's /etc/default/grub:
BIOS does trump GRUB, yes.An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski
- Top
- Bottom
Comment
-
Originally posted by Qqmike View Postyes, looks like BIOS has Windows boot manager as first.
Been havin' issues with those emoticons lately.Last edited by logan01; Jun 20, 2016, 03:06 PM.Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
-
Those emoticons ... this came up with me recently. I was told that when you post, you have to go to Advanced, scroll down, and un-check the box Disable smilies in text. Strange, I never had problems with this before; sounds like you hadn't either. Not sure what's going on.
As for BIOS, it's the first day of Summer. Maybe that will bring ya some luck; or at least enough luck. Is that helpful?An intellectual says a simple thing in a hard way. An artist says a hard thing in a simple way. Charles Bukowski
- Top
- Bottom
Comment
-
That worked. Luck? I don't need no stinkin' luck!Kubuntu 14.04 / KDE 4.13.3 / GRUB Version: 0.97-29ubuntu66
HP15 --f033wm Laptop / CPU: Intel / GPU: Intel Corporation Atom Processor / RAM: 8GB / Hard Drive: 1 each / Seagate / Optical Drive: HP DVDRW GUB0N / Windows 10
- Top
- Bottom
Comment
Comment