From ea36c75281e7b0f45de6bd132c0d3b0c14f53308 Mon Sep 17 00:00:00 2001 From: Dan Čermák Date: Sep 09 2024 13:06:32 +0000 Subject: Fix command to build the iso with lorax The livemedia-creator invocation uses the flattened kickstart called `flat-i3.ks` but in the line above we create the file `flatten-i3.ks`, so just copy & pasting fails here. --- diff --git a/modules/ROOT/pages/kickstart.adoc b/modules/ROOT/pages/kickstart.adoc index 2e919f4..d9a8eaf 100644 --- a/modules/ROOT/pages/kickstart.adoc +++ b/modules/ROOT/pages/kickstart.adoc @@ -37,7 +37,7 @@ Flatten the kickstart:: `sudo ksflatten -c fedora-live-i3.ks -o flatten-i3.ks` Build ISO using Lorax:: -`sudo livemedia-creator --make-iso --ks flat-i3.ks --no-virt --iso-only --iso-name fedora-i3-live-x86_64.iso --releasever 34` +`sudo livemedia-creator --make-iso --ks flatten-i3.ks --no-virt --iso-only --iso-name fedora-i3-live-x86_64.iso --releasever 34` Create a QEMU virtual machine with the new ISO:: `qemu-kvm -m 2048 -vga qxl -cdrom fedora-i3-live-x86_64.iso`