Replies: 1 comment 4 replies
-
Hello, if I'm not mistaken you are creating the USB stick with We have a plan to solve this another way, however, as workaround you should be able to just use This change happened because Anaconda switched from the old code to a new solution, where we are trying to avoid re-using mounts from Dracut. We did that to avoid pretty complex logic to decide where to mount what and in what circumstances. Now the sources have a strict logic which is easy to follow and the code is nicely separated. Unfortunately, we were not aware of tooling which changing the ISO structure. |
Beta Was this translation helpful? Give feedback.
-
With
CentOS 8.x
we foundanaconda
will boot but couldn't install from a USB stick -- it complains about "Error setting up software". Even throughDRACUT_REPODIR
(/run/install/repo
) is mounted.Making a USB-ZIP mode install will create a partition formated in FAT32 in USB stick, copys all content of iso to the partition.
UltraISO
takes care of this. AndUEFI
will boot from that partition.A further dig founds that, in commit 8a3c118, authors removed the
class PackagePayload
. In the good old days,_setup_cdrom_device()
will check the baby and do a repo setup for us. however, in commit 1e00603, this baby-sitter has been retired.I'm suggesting to hire a new nanny to care with the
DRACUT_REPODIR
. Because it's really annoying. Especially CentOS 8 requires a huge offline iso file (8 Gib).Thanks.
Beta Was this translation helpful? Give feedback.
All reactions