I have installed Ubuntu 15.10 alongside Windows 10 with UEFI. To install Ubuntu, I chose the option install alongside Windows 10 or something similar to this. Then I created a new partition for Ubuntu and installed it. After installation, the boot menu did not show up. Initially I thought Ubuntu has not been installed, but when I plugged in the USB drive and wanted to install Ubuntu I saw an option of reinstalling Ubuntu on my machine. So, I found out that Ubuntu is installed. Pressing F8 and F12 also does not help.
Can anyone help me bring up the GRUB boot menu?
In Windows, I also entered the command bcdedit /set {bootmgr} path \EFI\ubuntu\grubx64.efi in cmd, but still the boot menu does not show up.
Reply (Himanshu) :
Just boot in bios and, if you can, add boot option with name say ubuntu and path EFI/ubuntu/shimx64.efi. No need for live PCB or anything. Move the boot option to top. This is for dell GUI bios but I assume it works for all. Or you may want to see this or this, where you can enable Windows Boot Loader for one boot or forever as you wish, and boot Ubuntu from it. If you want now, you can use the installed Ubuntu terminal to use the commands update-grub to use GRUB instead. (Not enough reputation to answer properly btw.)
6 Answers
On Windows 10, go to the start menu.
Search and open Recovery Options. The description for it should say System settings.
Under Advanced startup click Restart now.
Click Use a device; it's description should say "Use a USB drive, network connection, or Windows recovery DVD".
Click Ubuntu and hopefully it should take you to the grub boot menu.
Next try going back to the live Ubuntu session on the USB to reinstall
grub-efi. On the live session, open a terminal and enter the following commands in:sudo mount /dev/sda# /mntReplace the hashtag in
/dev/sda#with the number representing the partition where you had Ubuntu installed. You can check usinggnome-disksorgparted.sudo mount /dev/sda# /mnt/boot/efiReplace the hashtag in
/dev/sda#with the number representing the EFI partition. It's usually/dev/sda2.sudo mount -o bind /dev /mnt/dev sudo mount -o bind /proc /mnt/proc sudo mount -o bind /sys /mnt/sys sudo mount -o bind /run /mnt/run sudo chroot /mnt/ sudo apt-get install --reinstall grub-efi sudo update-grubReboot.
If that fails, go to your BIOS settings with one of the F keys; that option might be Enter setup. Look for boot option priorities and move Ubuntu above the Windows Boot Manager. Go to the option to save the changes then reboot.
Lastly you can try using Boot-Repair.
I have read many answers and tried accordingly but the problem was still there, so I decided to do it myself as follows:
Click the Start menu and select Settings.
Select UPDATE & SECURITY.
Click Recovery.
Under Advanced startup, click the Restart now button. The system will restart and show the Windows 10 boot menu.
Select Troubleshoot.
Choose Advanced options.
Select UEFI Firmware Settings.
Click Restart to restart the system and enter UEFI (BIOS) setup utility.
F10 BIOS setup -> System Configuration tab ->Boot Options -> OS Boot Manager -> Ubuntu -> (select the Ubuntu option and move this option up to the top of the list) -> F10 Save and Exit (press F10 to save Ubuntu as the default boot option) -> F10 (press F10 again to save the changes to the BIOS/UEFI setup utility)
When the computer restarts, the Ubuntu boot menu will be shown.
2I'm presuming GRUB successfully installed, but something is clearly amiss. I know you said you already tried bcdedit, but here's the command to set it: bcdedit /set {bootmgr} path \EFI\ubuntu\grubx64.efi. If you set this and could not boot, as you have indicated already, don't forget to rescind the change you made using bcdedit /deletevalue {bootmgr} path \EFI\ubuntu\grubx64.efi.
Try following the steps detailed in Enkouyami's answer (i.e. chrooting into your installed Ubuntu system from the live CD and then reinstalling grub manually).
If the above fail, you could try installing grub2win. This allows you to boot grub2 from your Windows EFI firmware by making edits to the boot code. Be sure to follow the instructions carefully on the project's page if taking choosing method.
Another method instead of grub2win is Super Grub2 Disk, which is a live CD that allows you to boot into a variety of operating systems. I would try this first instead of grub2win, as there is less risk involved if something goes awry. I have not used Super Grub2 Disk personally, but I hear it is an incredibly useful tool. Using this tool, you can restore grub by following the instructions here.
Live boot Ubuntu and select try Ubuntu option from the GRUB menu that appears and then install boot repair by typing in following commands.
sudo add-apt-repository ppa:yannubuntu/boot-repair
sudo apt-get update
sudo apt-get install -y boot-repair && boot-repair There is a setting in /etc/default/grub called GRUB_TIMEOUT_STYLE=hidden which prevents the GRUB menu from showing during the timeout period unless you press the Esc key. Check to see if this setting is enabled by GRUB_TIMEOUT_STYLE=hidden, and if it is enabled open the /etc/default/grub file for editing in nano text editor and disable it.
sudo nano /etc/default/grubComment out the line that says GRUB_TIMEOUT_STYLE=hidden by preceding it with a # character. Make sure that the GRUB_TIMEOUT value there is set to a value larger than zero, for example GRUB_TIMEOUT=10. Save the file.
Then run the update-grub command and reboot:
sudo update-grub
sudo rebootNano text editor keyboard shortcuts
Use the keyboard combination Ctrl + O and after that press Enter to save the file to its current location.
Use the keyboard combination Ctrl + X to exit nano.
Other useful links
- How to repair GRUB2 when Ubuntu won't boot
- Using EasyBCD to boot to GRUB from Windows boot menu
- Installing GRUB2 Ubuntu documentation wiki
There's no need for live PCB or anything.
Just boot in BIOS (press F2 in Dell Inspiron) and, Add boot option with name say ubuntu and path
EFI/ubuntu/shimx64.efi.
Move the boot option to top. (This is for Dell GUI BIOS, but I assume it works for all.)
Assuming everything else was installed normally, this would work very fine.
Once booted, you can use the installed Ubuntu terminal to use the commands
update-grubto use GRUB instead, if that's what you want.
Here are some links you should go through to get ideas about other things possible with boots (and self-help).
You can enable Windows Boot Loader for one boot or always as you wish, and boot Ubuntu from it.
1