My multibootable USB stick
Go to file
Eric Teunis de Boone c32750f1c9 README: move contact details into separate file 2023-10-06 13:25:14 +02:00
boot Theming: move $theme_name out of theming.cfg 2023-04-08 11:43:08 +02:00
isos Moved .gitignore to /isos 2023-04-08 11:19:41 +02:00
.gitignore Simple GRUB Config added 2020-03-03 12:56:06 +01:00
README.md README: move contact details into separate file 2023-10-06 13:25:14 +02:00

README.md

Grubby Data Partition

Git Source

If you've found this USB stick, please get in touch via deboone.nl or the contact details in ./CONTACT.md.

This is the data part of this USB stick.

Installation

There should be at least 3 partitions:

  • #1: This data partition
  • #2: A Bios boot partition
  • #3: A simple EFI partition

There is a space of 8Gb left for temporary OS dding between partitions #3 and #1.

To install GRUB for both EFI and BIOS booting I used the following.

# these have to mounted!
DEV="/dev/sdb"
EFI_MNT="/tmp/grubby-efi"
DATA_MNT="/tmp/grubby"
# Make EFI
sudo grub-install --efi-directory="$EFI_MNT" --boot-directory="${DATA_MNT}/boot" --removable --recheck --target=x86_64-efi

# Make BIOS
sudo grub-install --boot-directory="${DATA_MNT}/boot" --removable --recheck --target=i386-pc "$DEV"

# Make Isos Directory
mkdir "${DATA_MNT}/boot"

Some Funny Things

Inspiration & Links