Table of Contents

The mini-pc is used to showcase rare Operating Systems.

It currently hosts:

Disk layout (GPT):

Troubleshooting

By default the machine should boot in GRUB with no countdown timer, leaving you time to choose which OS you want to boot. If this isn’t the case, put Chimera Linux on a USB drive, boot on it (RAM mode), then:

# mount /dev/sda3 /mnt
# mount /dev/sda2 /mnt/boot
# mount /dev/sda1 /mnt/boot/efi
# chimera-chroot /mnt
  # grub-install /dev/sda
  # update-grub

Reinstall guide

In case something broke real bad or the SSD is getting upgraded, here is how to reinstall the system:

GRUB configuration

menuentry "Haiku" {
  set root=(hd0,gpt1)
  chainloader ($root)/EFI/BOOT/HAIKU.EFI
}

menuentry "9front" {
  set root=(hd0,gpt5)
  chainloader ($root)/efi/boot/bootx64.efi
}

menuentry "Dragonfly BSD" {
  set root=(hd0,gpt1)
  chainloader ($root)/EFI/BOOT/DFLY.EFI
}