View Single Post
  #6   (View Single Post)  
Old 11th December 2020
Head_on_a_Stick's Avatar
Head_on_a_Stick Head_on_a_Stick is offline
Real Name: Matthew
Bitchy Nerd Elitist
 
Join Date: Dec 2015
Location: London
Posts: 465
Default

Quote:
Originally Posted by diortem View Post
Is there a secondary install guide to theirs, that walks through the dual/triple boot scenario? I will be triple-booting, Windows on [SSD] sda, File Storage on [7200rpm, platter HDD] sdb, Fedora on [SSD] sdc, and BSD on [SSD] sdd.
The FAQ used to have a section pertaining to GRUB but it's been removed.

Try this stanza in /boot/grub/custom.cfg in your Fedora system:
Code:
menuentry 'OpenBSD' {
   set root=(hd3,1)
   chainloader +1
}
https://www.gnu.org/software/grub/ma...in_002dloading

That presumes a non-UEFI system with OpenBSD installed to /dev/sdd1

For a UEFI system use this instead:
Code:
menuentry 'OpenBSD' {
   set root=(hdX,Y)
   chainloader /EFI/BOOT/bootx64.efi
}
Replace X & Y with the correct identifiers for the EFI system partition.

It might be best to use the UUID rather than the block device, to do that replace the set root= line with
Code:
search --fs-uuid $uuid --set=root
Replace $uuid with the actual UUID of the target partition.

If you have any problems then it's probably best to start a new thread because this is off-topic here.
__________________
Are you infected with Wetiko?

Last edited by Head_on_a_Stick; 11th December 2020 at 06:20 AM. Reason: Added UUID information
Reply With Quote