Tentaflake install guide
Source:
docs/00-install.mdat2081f31a099e· docs version 0.4.0
Tentaflake ships one bootable image: the installer ISO. The former live-agent ISO and firstboot agent environment were removed from the core.
From the repository root:
nix build .#installer-isoOr use the wrapper:
./scripts/build-iso.sh installerThe image is written below result/iso/.
Test in a disposable VM
Section titled “Test in a disposable VM”From the contributor shell, the repository can build the ISO, resolve its pinned QEMU and OVMF tools, create one 32 GiB sparse QCOW2 disk, and start the interactive UEFI installer:
just e2e-installerThe VM receives no host block device. The installer can erase only
/var/tmp/tentaflake-e2e-<user>/tentaflake.qcow2, and still asks for
confirmation in its TUI. The first boot uses the ISO once and then prefers the
installed disk. To boot the installed VM again without the ISO:
just e2e-run-vmSet TENTAFLAKE_E2E_DIR to an absolute path to keep this disposable VM state
elsewhere. The scripts deliberately provide no automatic reset or deletion.
Resolve the USB device
Section titled “Resolve the USB device”List block devices and identify the USB drive by size and transport:
lsblk -o NAME,SIZE,TYPE,TRAN,MOUNTPOINTSDo not infer the target from an example device name. The next step destroys all data on the selected device.
Unmount its mounted partitions, substituting the exact partition:
sudo umount /dev/sdX1Write the image
Section titled “Write the image”Resolve the exact ISO filename first:
find result/iso -maxdepth 1 -name '*.iso'Then write it to the verified whole device, not a partition:
sudo dd \ if=result/iso/tentaflake.iso \ of=/dev/sdX \ bs=4M \ status=progress \ oflag=syncReplace /dev/sdX only after checking it again with lsblk.
Boot and install
Section titled “Boot and install”Boot the target machine from the USB device. The installer auto-logs into its
local console and starts the dialog-based installer. It asks before
partitioning and runs nixos-install only after the selected disk is shown.
Disk formatting and installation are runtime mutations. A successful ISO build does not authorize either operation.
After installation and reboot, continue with the quick start.
The installer environment itself uses the dev profile because it runs no
agents. The generated installed host uses the default balanced profile. Old
direct-secret/port agent definitions therefore require the explicit migration
described in security profiles; installation never
silently downgrades the target to dev.