Solution:
As an example, Kubuntu and Linux Mint but it should work on any distribution with GRUB signed for secure boot.
On the second system, you can add a similar entry for the partition with the first GRUB, but on my system it shows something like this, so I gave up.
As an example, Kubuntu and Linux Mint but it should work on any distribution with GRUB signed for secure boot.
- During the installation of the second system, create a separate EFI partition for it.
- Use command to correctly locate the disk and partition from GRUB of the other system, remember, save UUID
Code:
sudo blkid
- in GRUB console (c key) use to locate partition with found UUID, remember hdX,gptX
Code:
ls -l
- use the command to check the path to the
Code:
ls (hdX,gptX)/efi
file (may be different for different distributions) and save itCode:
grubx64.efi
- edit the file by adding an entry:
Code:
/etc/grub.d/40_custom
Code:
menuentry “Linux Mint” { insmod part_gpt insmod fat set root='hd3,gpt1' # Change to the appropriate EFI partition for Mint chainloader /EFI/ubuntu/grubx64.efi # Change to the correct path for Mint }
Code:
sudo update-grub
On the second system, you can add a similar entry for the partition with the first GRUB, but on my system it shows something like this
Code:
EFI stub: WARNING: Failed to measure data for event 1: 0x8000000000000000b
Statistics: Posted by Norbert78 — 2024-08-23 17:08