New material for UEFI for Kubuntu--simplified. And ... some dual-booting tips for Kubuntu.
See:
https://www.kubuntuforums.net/showth...889#post375889
--no-uefi-secure-boot parameter
It seems to work very well in my tests for Kubuntu and Mint, with my ASUS firmware.
It is one solution to the problem of having only one standard directory for Ubuntu derivative OSs in the /EFI/ directory of the ESP in a UEFI-boot setup. Thus, for example, you could set up a nice, clear multi-boot with Kubuntu 14.04, Kubuntu 15.04, and Mint KDE 17.1, and each would have its own EFI boot subdirectory in the ESP under /boot/efi/EFI.
Credit for finding the "--no-uefi-secure-boot" parameter goes to
lxgr's blog
Booting multiple Ubuntu versions with EFI
http://blog.lxgr.net/posts/2015/04/30/grub-efi-multiboot/
as explained in the text of my how-to.
Interestingly, I can find no other reference to the special grub-install parameter other than lxgr's. If you can find one, please post it.
Thus, in particular, this extends the general grub-install command to this form, so far, as covered in my how-to:
And lxgr mentions another parameter:
I don't know whether Rod Smith has seen this yet. In his posts about dual-booting Ubuntu's, I haven't seen him mention it. I sent him an email referencing lxgr and my how-to at kubuntuforums.net.
See:
https://www.kubuntuforums.net/showth...889#post375889
--no-uefi-secure-boot parameter
It seems to work very well in my tests for Kubuntu and Mint, with my ASUS firmware.
It is one solution to the problem of having only one standard directory for Ubuntu derivative OSs in the /EFI/ directory of the ESP in a UEFI-boot setup. Thus, for example, you could set up a nice, clear multi-boot with Kubuntu 14.04, Kubuntu 15.04, and Mint KDE 17.1, and each would have its own EFI boot subdirectory in the ESP under /boot/efi/EFI.
Credit for finding the "--no-uefi-secure-boot" parameter goes to
lxgr's blog
Booting multiple Ubuntu versions with EFI
http://blog.lxgr.net/posts/2015/04/30/grub-efi-multiboot/
as explained in the text of my how-to.
Interestingly, I can find no other reference to the special grub-install parameter other than lxgr's. If you can find one, please post it.
Thus, in particular, this extends the general grub-install command to this form, so far, as covered in my how-to:
Code:
[COLOR=#000000]sudo grub-install --target=x86_64-efi --efi-directory=[U]DIR[/U] --bootloader-id=some_name --no-nvram --no-uefi-secure-boot[/COLOR]
There is also an option --removable which supposedly sets up the EFI directory on a removable device, which looks a bit different than for internal devices and importantly doesn't create an NVRAM entry (which wouldn't be available on different machines anyway). You might be able to use that to boot from an internal disk too, but I have not tried that approach, however.
Comment