FROM eggs v9.6.16 I changed a bit, hide mnt to .mnt, and create links to iso and filesystem.squashfs on the nest. Re have a more logic structure, build on the provious one, unchanged.
- iso -> .mnt/iso
- livefs -> .mnt/filesystem.squashfs
- ovarium
- README.md
- egg-of_image.iso
- egg-of_image.md5
- egg-of_image.sha256
Under the hood all remain unchanged, but the importants things now are more visible.
- efi-work
- filesystem.squashfs
- iso
- memdiskDir
The directory efi is used to build the part for UEFI compatibility. It consist in two directories
- boot
- efi
This is the centre of the central zone, it consist in all the filesystem of your system, mounted binded and overlay. Here we will made all the operations needing to have a filesystem adapted to be compressed and put in a iso image. Due the fact who actually is not a real copy of your filesystem, we use overlayfs to get this witable and don't cause problems at your current filesytem. You will find in it all the filesystem you will found in your image when it is booted.
It is the simple structure of an iso image.
- boot
- efi
- isolinux
- live
You already knw boot and efi, are necessary for UEFI and consist in the copy of efi.
- isolinux contain the isolinux files for the boot of the livecd.
- live contain only 3 files, vmliz, initrd.img and filesystem.squashfs who is the compressef for of the omologue directory.
- bind
- mkisofs
- mksquashfs
- ubind
- .overlay (moved under nest 2023-11-21)
if you want more control on the production of your iso, try the new --dry flag, it's instantaneous: will generate filesystem directory, iso structure complete and the related scripts to bind/ubind filesystem, squash it and create iso.
- bind
- mksquashfs
- mkiso
- ubind
Attention: this is a new feathure, things can change in the future versions. this morning was just an idea to help myself in the process to test calamares in Ubuntu and Deepin, but I'm sure someones can help me with the refinings.
Feel free to contact me for any suggestions.