Running the build as a plain background job (&) will get killed by SIGHUP
when the shell session ends. Use the dedicated recipe instead:
just installer_channel=dev build-bg dakota
# Ctrl-C stops the log tail — build keeps running in background
# Check progress any time: tail -f output/build.logThe recipe uses setsid ... & disown internally so the build survives
terminal closure.
/tmp is a tmpfs with only ~16 GB. The build needs ~30 GB of intermediate space
(OCI tar ~4 GB, VFS storage ~10 GB, squashfs tree ~10 GB, final ISO ~4 GB).
Always work from /var/home/james/dev/dakota-iso/ (or any path on /var,
which has 800 GB+ and is where the repo lives). The default output_dir=output
resolves to ./output/ relative to the justfile, so it inherits whatever
filesystem the repo is on.
cd /var/home/james/dev/dakota-iso
just debug=1 installer_channel=dev iso-sd-boot dakota- No
sudo—podman unshareonly works for rootless podman (non-root user). Prefixing withsudowill fail withplease use unshare with rootless. debug=1enables SSH (ssh liveuser@<IP>, passwordlive) and the debug banner.installer_channel=devuses thecontinuous-devFlatpak release of tuna-installer which includes fixes not yet in the stable channel.
CI uses sudo just installer_channel=dev output_dir=output iso-sd-boot dakota
(runs as root). The justfile detects root via id -u and skips podman unshare,
running commands directly instead — so the same justfile works for both cases.
# Quick QEMU serial test (validates GDM starts):
just debug=1 boot-iso-serial dakota
# Full libvirt VM with SSH access:
just debug=1 boot-libvirt-debug dakota- composefs / VFS: The ISO embeds Dakota as VFS containers-storage (not overlay)
because squashfs is read-only.
configure-live.shsetsdriver = "vfs"so podman uses the pre-embedded image at boot. - Scratch dir:
fishermandetects tmpfs/varon live ISOs and uses a self-bind-mounted scratch dir on the target disk to avoid ENOSPC during OCI export. - Installer channel:
devusesorg.bootcinstaller.Installer.Develapp ID;stableusesorg.bootcinstaller.Installer. Both can coexist. - Download URL: https://download.tunaos.org/dakota/dakota-live-latest.iso