Moi!
Tähän asti dualbootti on toiminut riittävän hyvin näillä ohjeilla:
http://askubuntu.com/questions/244261/how-do-i-get-my-hp-laptop-to-boot-into-grub-from-my-new-efi-fileThis is what I did:
I booted into my Ubuntu installation using the trick of the F9 key in the start up to be able to choose the boot loader.
Once in Ubuntu, I opened a terminal.
Using the command below, I checked where Windows boot loader was located:
$ sudo efibootmgr -v
In my case, the original boot loader was in here: /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi . Please note that in your computer it might be in a different place. If so, you will need to adjust the commands below.
As per Rod's recommendation in his answer (the one about how to repair the boot loader manually), I made a backup of that file by moving it one level down:
$ sudo cp /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi /boot/efi/EFI/Microsoft/bootmgfw.efi
Finally, I copied GRUB2's boot loader in that place, "tricking" the system into loading the boot loader I wanted instead of Windows' original boot loader.
$ sudo cp /boot/efi/EFI/ubuntu/grubx64.efi /boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
So finally I had my dual boot working with GRUB2. In case Windows overwrites the boot loader again after an update (as it did with me), I already know the steps to get grub back to its place.
Hope this helps someone. Please let me know if there are any issues with my solution.
Näillä siis pärjäsi tähän asti. Uusimmassa win päivityksessä jotain meni solmuun, niin että pääte ei enää tunnista komentoa efibootmgr -v, vaan sanoo että "Komentoa ei löytynyt".
Nyt joudun käynnistämään koneen esc-näpyttelyllä, tai muuten boottaa Windowsille. Fast startup on kiinni, ja Secure Boot on disabled. Mitä on tehtävissä?