After upgrading to rEFInd 0.10.1, my Toshiba C55-A boots directly into Windows 8.5, rather than to rEFInd. I am able to get to rEFInd by going to the shutdown menu, pressing "shift" and "restart" ->"use a device"-> rEFInd. When I've updated I answered "yes" to the question "Do you want to install rEFInd" to the ESP.
I've tried to use "sudo dpkg-reconfigure refind", and also to uninstall and reinstall rEFInd. I've also used "sudo refind-install". The messages suggest that the install is working fine:
ShimSource is none
Installing rEFInd on Linux....
ESP was found at /boot/efi using vfat
Found rEFInd installation in /boot/efi/EFI/refind; upgrading it.
Installing driver for ext4 (ext4_x64.efi)
Copied rEFInd binary files
Notice: Backed up existing icons directory as icons-backup.
Existing refind.conf file found; copying sample file as refind.conf-sample
to avoid overwriting your customizations.
Installing it!
rEFInd has been set as the default boot manager.
Existing //boot/refind_linux.conf found; not overwriting.
Installation has completed successfully.
However, when I try to logon, the system again goes directly into windows. Trying refind-install, results in the same message, and the same failure.
I have also tried to use EasyUEFI tool, but it does not seem to be able to change the boot order.
How do I get my computer to boot into rEFInd?
Last edit: Amnon Dalcher 2015-12-21
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
This should have worked; however, there are buggy EFIs out there that get confused, forget, or ignore their boot order information. You might be able to learn more by viewing the EFI boot information with efibootmgr -v. For instance, on one of my computers, I see:
You should see a BootOrder line that shows one or more entries, with number that corresponds to rEFInd being first. For instance, mine shows 0000 as first, and my Boot0000 line does point to rEFInd. If your BootOrder shows something else coming before rEFInd, you can adjust the BootOrder with the -o option to efibootmgr, as in:
sudo efibootmgr -o 0000,0003,0001
You can then check again with efibootmgr -v and then reboot to see if it "sticks." Another possible problem is that there is no appropriate rEFInd entry. In this case you may need to create it yourself, as described in the manual installation instructions. If this doesn't work, then your firmware may be messed up, either completely (which seems unlikely because you say it worked before) or temporarily. A temporary problem will sometimes clear itself, or it can be made to clear up by removing unnecessary boot entries with efibootmgr's -b option, as in:
sudo efibootmgr -b 0007 -B
Yet another possibility is that you're running into Secure Boot problems. The upgrade might have upgraded rEFInd but done so while bypassing Shim. If so, you'll need to re-create the boot entry manually, but do so via Shim. See the rEFInd Secure Boot instructions for details.
In a worst-case scenario, you may need to reset all your firmware options to their defaults and then re-register rEFInd with the firmware.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
1) I've tried to use efibootmgr to change the boot order. Running efibootmgr with the -v option suggested that the boot order was changed. However, the system again booted to windows. Running efibootmgr -v showed the the boot order was not changed at all.
2) Secure boot is off . So I guess there is no point in trying to re-create the boot entry manually. (or is there?)
3) Would you please give a reference to firmware option reset?
Thanks
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
How to reset the firmware varies from one firmware to another, so I can't be specific. Usually there's an option in the user interface to reset all the options to the default, so look for that.
Another possibility occurs to me: You could try setting the boot order from Windows. Occasionally this works, particularly if it's Windows, rather than the EFI, that's resetting the boot order. The Windows bcdedit command can do this, as described in the rEFInd Windows installation instructions -- but you needn't do everything in that procedure, just step #1 and the bcdedit command in step #9. The third-party EasyUEFI tool might also work and is easier to use than bcdedit.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
When I've tried to launch bcdedit (either as an administrator or a regular user) a terminal windows pops up, but it closes immediately. As I said in my first post, EasyUEFI didn't work.
Question: What do I have to do after reseting the firmware in order to get back to the dual boot system?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
You normally launch bcdedit in Windows from an Administrator Command Prompt window -- that is, you should launch Command Prompt as Administrator, then use it to type the bcdedit command, including its options. You should not try to launch bcdedit using GUI program-launching tools.
If you reset the firmware to the defaults and that causes the boot order to go away, you can use any of the many tools in the firmware, an EFI shell, or an OS to add entries back. OS-based tools will of course require booting to an OS. This can (sometimes) be done by picking a boot loader using the firmware user interface, or you can use rEFInd on a USB flash drive to do the job. Sorry I can't be more specific about this; too much of it relies on implementation-specific details that vary from one EFI to another.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
After upgrading to rEFInd 0.10.1, my Toshiba C55-A boots directly into Windows 8.5, rather than to rEFInd. I am able to get to rEFInd by going to the shutdown menu, pressing "shift" and "restart" ->"use a device"-> rEFInd. When I've updated I answered "yes" to the question "Do you want to install rEFInd" to the ESP.
I've tried to use "sudo dpkg-reconfigure refind", and also to uninstall and reinstall rEFInd. I've also used "sudo refind-install". The messages suggest that the install is working fine:
ShimSource is none
Installing rEFInd on Linux....
ESP was found at /boot/efi using vfat
Found rEFInd installation in /boot/efi/EFI/refind; upgrading it.
Installing driver for ext4 (ext4_x64.efi)
Copied rEFInd binary files
Notice: Backed up existing icons directory as icons-backup.
Existing refind.conf file found; copying sample file as refind.conf-sample
to avoid overwriting your customizations.
Installing it!
rEFInd has been set as the default boot manager.
Existing //boot/refind_linux.conf found; not overwriting.
Installation has completed successfully.
However, when I try to logon, the system again goes directly into windows. Trying refind-install, results in the same message, and the same failure.
I have also tried to use EasyUEFI tool, but it does not seem to be able to change the boot order.
How do I get my computer to boot into rEFInd?
Last edit: Amnon Dalcher 2015-12-21
This should have worked; however, there are buggy EFIs out there that get confused, forget, or ignore their boot order information. You might be able to learn more by viewing the EFI boot information with
efibootmgr -v
. For instance, on one of my computers, I see:You should see a
BootOrder
line that shows one or more entries, with number that corresponds to rEFInd being first. For instance, mine shows0000
as first, and myBoot0000
line does point to rEFInd. If yourBootOrder
shows something else coming before rEFInd, you can adjust theBootOrder
with the-o
option toefibootmgr
, as in:You can then check again with
efibootmgr -v
and then reboot to see if it "sticks." Another possible problem is that there is no appropriate rEFInd entry. In this case you may need to create it yourself, as described in the manual installation instructions. If this doesn't work, then your firmware may be messed up, either completely (which seems unlikely because you say it worked before) or temporarily. A temporary problem will sometimes clear itself, or it can be made to clear up by removing unnecessary boot entries withefibootmgr
's-b
option, as in:Yet another possibility is that you're running into Secure Boot problems. The upgrade might have upgraded rEFInd but done so while bypassing Shim. If so, you'll need to re-create the boot entry manually, but do so via Shim. See the rEFInd Secure Boot instructions for details.
In a worst-case scenario, you may need to reset all your firmware options to their defaults and then re-register rEFInd with the firmware.
1) I've tried to use efibootmgr to change the boot order. Running efibootmgr with the -v option suggested that the boot order was changed. However, the system again booted to windows. Running efibootmgr -v showed the the boot order was not changed at all.
2) Secure boot is off . So I guess there is no point in trying to re-create the boot entry manually. (or is there?)
3) Would you please give a reference to firmware option reset?
Thanks
How to reset the firmware varies from one firmware to another, so I can't be specific. Usually there's an option in the user interface to reset all the options to the default, so look for that.
Another possibility occurs to me: You could try setting the boot order from Windows. Occasionally this works, particularly if it's Windows, rather than the EFI, that's resetting the boot order. The Windows
bcdedit
command can do this, as described in the rEFInd Windows installation instructions -- but you needn't do everything in that procedure, just step #1 and thebcdedit
command in step #9. The third-party EasyUEFI tool might also work and is easier to use thanbcdedit
.When I've tried to launch bcdedit (either as an administrator or a regular user) a terminal windows pops up, but it closes immediately. As I said in my first post, EasyUEFI didn't work.
Question: What do I have to do after reseting the firmware in order to get back to the dual boot system?
You normally launch
bcdedit
in Windows from an Administrator Command Prompt window -- that is, you should launch Command Prompt as Administrator, then use it to type thebcdedit
command, including its options. You should not try to launchbcdedit
using GUI program-launching tools.If you reset the firmware to the defaults and that causes the boot order to go away, you can use any of the many tools in the firmware, an EFI shell, or an OS to add entries back. OS-based tools will of course require booting to an OS. This can (sometimes) be done by picking a boot loader using the firmware user interface, or you can use rEFInd on a USB flash drive to do the job. Sorry I can't be more specific about this; too much of it relies on implementation-specific details that vary from one EFI to another.