Frederick Grose
Frederick Grose
With `setenforce Permissive`, only the first set of errors above show up in the transcript (from known OverlayFS issue). Journals for the boots and `sudo dnf upgrade` for both Fedora...
@jdharms Please adjust `dmsquash-live-root.sh` lines 9-13 to ```sh if getargbool 0 rd.live.debug -n -y rdlivedebug; then [ -z "$DRACUT_SYSTEMD" ] && exec > /run/initramfs/liveroot.$$.out 2>&1 set -x export RD_DEBUG=yes [...
@hadess Thanks for reporting. The change at line 2175 fixes this error.
The --extra-kernel-args show up in `/EFI/BOOT/grub.cfg` and `/isolinux/isolinux.cfg` on the .iso filesystem.
livecd-iso-to-disk has its own --extra-kernel-args option for the loaded LiveUSB device. Also, `/syslinux` becomes the legacy boot folder.
PR #214 (Preserve extra-kernel-args from source) has been submitted.
The key message is the last line of the transcript: `/dev/sdb1 is mounted, please unmount for safety` Your chosen target device, /dev/sdb1, is mounted. The script expects it to be...
There are bindmounts in the chroot to the host filetree. One is `/dev/shm`. For example, if you had `--script /tmp/cp.sh`, in your arguments, and it bore the following code: ```sh...
> This is definitely not the root directory of my host system. True, the bindmount is from the host's `/dev/shm` to the chroot's `/dev/shm`. So, your source files should be...
If you want to change lines 1400-1407 of editliveos to the following: ```python bindmounts = [('/sys', None), ('/proc', None), ('/dev/pts', None), ('/dev/shm', None), ('/run', None), ('/etc/resolv.conf', None), (cachesrc, '/var/cache/dnf'), (cachesrc,...