I have Ubuntu installed on hd1 (edit: with full disk encryption), and it was working fine.
I then installed a second hard drive (hd2), and installed Ubuntu to onto it - it is working fine.
The problem is now, I cannot boot to hd1 Ubuntu at all, and I would like to boot to that by default.
In the boot options there is only one "Ubuntu" - how can I resolve this so that there are two options Ubuntu on hd1 (default) and Ubuntu on hd2?
grub-install
too? I am writing an answer with my way that will recognize both systems during grub updates also (and I need the filenames -i think they are different than in debian-) – koleygr Mar 12 '18 at 22:39menuentry "Debian sid installer" { search --set=root --label GRUB --hint hd0,msdos5 linux /debian/dists/sid/main/installer-amd64/current/images/hd-media/vmlinuz initrd /debian/dists/sid/main/installer-amd64/current/images/hd-media/initrd.gz }
- not sure which is the best option – sumade Mar 14 '18 at 14:40menuentry "ubuntu" { set root=(hd1,gpt2) linux /vmlinuz..... etc. initrd /initrd....etc.} menuentry "ubuntu2" { set root=(hd2,gpt2) linux /vmlinuz.... etc. initrd /initrd.... etc. }
– sumade Mar 14 '18 at 14:47