Frederick Grose

Results 45 comments of Frederick Grose

PR #214 includes the `/run/hostroot` bindmount.

The released version in Fedora 30 will have line 1 adjusted to `#!/usr/bin/python3` That is how I test. Try that to see if it makes a difference.

Pull Request #176 enables a Device-mapper target to be the target installation device for livecd-iso-to-disk.

Errors were detected at lines 1105, 813, & 2158 in https://github.com/livecd-tools/livecd-tools/blob/9c7f40e7edae3475be9a0b8afd7b390a7ad3bfbc/tools/livecd-iso-to-disk.sh All 3 lines are calls to lsblk. Please verify that that command is working on your host installation system....

Unfortunately, `editliveos` has very limited kickstart support. However, I found that those 3 elements can be supported if the '`if editor.ks:` block (https://github.com/livecd-tools/livecd-tools/blob/fd6225a6c90657d859971af8f3b0ddcff0d40459/tools/editliveos#L2642) is modified as follows: ```python if editor.ks:...

My guess is that the Python paths must be confused. Your original test was run from `/usr/bin/editliveos`, where it was natively installed by livecd-tools. Run `sudo dnf upgrade livecd-tools` if...

You may include the `--noshell` option to prevent the launching of a command shell in the new filesystem.

Without the --noshell option, `editliveos` launches a command shell change rooted (chrooted) in the newly mounted LiveOS filesystem: ```sh Launching shell. Exit (Ctrl D) to continue. ------------------------------------------- [root@fedora /]# ```...

The kickstart.KeyboardConfig command does update `/etc/vconsole.conf`, ```sh cat etc/vconsole.conf KEYMAP="fr-oss" FONT="eurlatgr" ``` so perhaps the input is not parsed correctly or the bug is elsewhere in the keyboard control implementation....

Keyboard mapping is first set in early boot code based on the vconsole.conf in the initramfs (initrd.img). We can trigger building a new initrd.img with the current version of editliveos...