Skip to content
This repository was archived by the owner on Jun 18, 2020. It is now read-only.

Latest commit

 

History

History
15 lines (12 loc) · 575 Bytes

File metadata and controls

15 lines (12 loc) · 575 Bytes

Create a Bootable Zero-OS ISO File

You can get bootable Zero-OS ISO file from the Zero-OS Bootstrap Service, as documented in Zero-OS Bootstrap Service.

Alternatively you can of course create one yourself, after having build your own Zero-OS kernel based on the documentation in Building your own Zero-OS Boot Image.

This is how:

dd if=/dev/zero of=zero-os.iso bs=1M count=150
mkfs.vfat zero-os.iso
mount zero-os.iso /mnt
mkdir -p /mnt/EFI/BOOT
cp staging/vmlinuz.efi /mnt/EFI/BOOT/BOOTX64.EFI
umount /mnt