LIBGUESTFS ISSUE (small) - builds a week or two behind #262

Closed
opened 2025-12-29 00:22:02 +01:00 by adam · 1 comment
Owner

Originally created by @sickcodes on GitHub (Oct 29, 2021).

Just advising that the current libguestfs is busted again and I'll be working on it tomorrow.

Fingers crossed stable works out of the box.

It's either that, or docker hub stopped allowing the kvm related builds, or they never did.

Originally created by @sickcodes on GitHub (Oct 29, 2021). Just advising that the current libguestfs is busted again and I'll be working on it tomorrow. Fingers crossed stable works out of the box. It's either that, or docker hub stopped allowing the kvm related builds, or they never did.
adam added the bugfollowing upstream developments labels 2025-12-29 00:22:02 +01:00
adam closed this issue 2025-12-29 00:22:02 +01:00
Author
Owner

@sickcodes commented on GitHub (Oct 29, 2021):

Resolved, pushing images.

#### libguestfs versioning

# 5.13+ problem resolved by building the qcow2 against 5.12 using libguestfs-1.44.1-6

ENV SUPERMIN_KERNEL=/boot/vmlinuz-linux
ENV SUPERMIN_MODULES=/lib/modules/5.12.14-arch1-1
ENV SUPERMIN_KERNEL_VERSION=5.12.14-arch1-1
ENV KERNEL_PACKAGE_URL=https://archive.archlinux.org/packages/l/linux/linux-5.12.14.arch1-1-x86_64.pkg.tar.zst
ENV LIBGUESTFS_PACKAGE_URL=https://archive.archlinux.org/packages/l/libguestfs/libguestfs-1.44.1-6-x86_64.pkg.tar.zst

ARG LINUX=true

# required to use libguestfs inside a docker container, to create bootdisks for docker-osx on-the-fly
RUN if [[ "${LINUX}" == true ]]; then \
        sudo pacman -U "${KERNEL_PACKAGE_URL}" --noconfirm \
        ; sudo pacman -U "${LIBGUESTFS_PACKAGE_URL}" --noconfirm \
        ; sudo libguestfs-test-tool \
    ; fi

####


@sickcodes commented on GitHub (Oct 29, 2021): Resolved, pushing images. ```dockerfile #### libguestfs versioning # 5.13+ problem resolved by building the qcow2 against 5.12 using libguestfs-1.44.1-6 ENV SUPERMIN_KERNEL=/boot/vmlinuz-linux ENV SUPERMIN_MODULES=/lib/modules/5.12.14-arch1-1 ENV SUPERMIN_KERNEL_VERSION=5.12.14-arch1-1 ENV KERNEL_PACKAGE_URL=https://archive.archlinux.org/packages/l/linux/linux-5.12.14.arch1-1-x86_64.pkg.tar.zst ENV LIBGUESTFS_PACKAGE_URL=https://archive.archlinux.org/packages/l/libguestfs/libguestfs-1.44.1-6-x86_64.pkg.tar.zst ARG LINUX=true # required to use libguestfs inside a docker container, to create bootdisks for docker-osx on-the-fly RUN if [[ "${LINUX}" == true ]]; then \ sudo pacman -U "${KERNEL_PACKAGE_URL}" --noconfirm \ ; sudo pacman -U "${LIBGUESTFS_PACKAGE_URL}" --noconfirm \ ; sudo libguestfs-test-tool \ ; fi #### ```
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/Docker-OSX#262