Hello, I have the following Makefile setup to build an image based on Ubuntu 24.04 on a 24.04 system. It is having trouble with apt update/upgrade due to networking not functioning. The same setup works while building a 22.04 image on 22.04 system. I have Qemu 8.2.2 and libvirt 10.0.0 (virsh --version).
export BASE_TAR := noble-server-cloudimg-amd64-root.tar.xz > rootfs.ext4: $(BASE_TAR) > qemu-img create -f raw tmp.$@ 5G > mkfs.ext4 tmp.$@ > guestfish --rw --add tmp.$@ --network --mount /dev/sda:/ tar-in > $(BASE_TAR) / compress:xz acls:true > virt-df -h -a tmp.$@ > virt-customize -v -x --format raw -a tmp.$@ \ > --run-command "apt update && apt upgrade -y" > > I noticed two things from the debug output (attached): - It seems that when qemu system started it up, it failed to bring up the network interface eth0 during running of the init script. That script was looking for either dhclient or dhcpcd, which for 24.04 system, doesn't exist. - One of the argument qemu-system-x86_64 uses was: *-netdev stream,id=usernet,addr.type=unix,addr.path=/run/user/1000/libguestfscnHwJM/passt.sock* it means it was using unix domain socket and passt? while on 22.04 it was using *-netdev user,id=usernet,net=169.254.0.0/16 <http://169.254.0.0/16>*. Not sure it was a problem or not. Just knew I ran into a bunch of problems with 24.04's passt apparmor profile. Any help on this is appreciated. Sorry if this is the wrong forum for this post. <https://askubuntu.com/posts/1545863/timeline> <https://askubuntu.com/posts/1545863/timeline>
make config-files make[1]: Entering directory '/repos/CypressGradientMaker/install' echo "$oscap_report_service" > oscap-report.service echo "$getty_service_conf" > getty_service.conf echo "$bootstrapper_getty_service_conf" > bootstrapper_getty_service.conf echo "$initramfs_conf" > initramfs.conf echo "$fstab" > fstab echo "$bootstrapper_fstab" > bootstrapper_fstab echo "$to_uuid" > to_uuid echo "$bash_profile" > .bash_profile echo "$dhcp" > 01-netplan-dhcp.yaml echo "$gen_firewall_rules" > gen-firewall-rules echo "$manifest" > manifest.raucm echo "$rauc_service_config" > rauc_service.conf echo "$rauc_config" > rauc.conf echo "$post_install" > post_install.sh echo "$efi_setup" > efi_setup.sh echo "$bootstrap_sh" > bootstrap.sh echo "$bootstrap_bashrc" > bootstrap_bashrc echo "$install_sh" > install.sh make[1]: Leaving directory '/repos/CypressGradientMaker/install' qemu-img create -f raw tmp.rootfs.ext4 5G Formatting 'tmp.rootfs.ext4', fmt=raw size=5368709120 mkfs.ext4 tmp.rootfs.ext4 mke2fs 1.47.0 (5-Feb-2023) Discarding device blocks: 0/1310720 done Creating filesystem with 1310720 4k blocks and 327680 inodes Filesystem UUID: 78b3f466-a5be-49b7-997f-e3fe9c6822ce Superblock backups stored on blocks: 32768, 98304, 163840, 229376, 294912, 819200, 884736 Allocating group tables: 0/40 done Writing inode tables: 0/40 done Creating journal (16384 blocks): done Writing superblocks and filesystem accounting information: 0/40 done guestfish --rw --add tmp.rootfs.ext4 --mount /dev/sda:/ tar-in /repos/CypressGradientMaker/prereqs/external/noble-server-cloudimg-amd64-root.tar.xz / compress:xz acls:true virt-df -h -a tmp.rootfs.ext4 Filesystem Size Used Available Use% tmp.rootfs.ext4:/dev/sda 4.8G 1.0G 3.5G 22% if [ -f ../src/containers/apt-archive.99HttpProxy-noble ]; then \ cp ../src/containers/apt-archive.99HttpProxy-noble 99HttpProxy; \ virt-customize --format raw -a tmp.rootfs.ext4 \ --copy-in 99HttpProxy:/etc/apt/apt.conf.d ; \ rm 99HttpProxy; \ fi [ 0.0] Examining the guest ... [ 13.1] Setting a random seed virt-customize: warning: random seed could not be set for this type of guest [ 13.2] Setting the machine ID in /etc/machine-id [ 13.2] Copying: 99HttpProxy to /etc/apt/apt.conf.d [ 13.2] SELinux relabelling [ 13.2] Finishing off virt-customize -v -x --format raw -a tmp.rootfs.ext4 \ --run-command "apt update && apt upgrade -y" [ 0.0] Examining the guest ... libguestfs: trace: set_verbose true libguestfs: trace: set_verbose = 0 libguestfs: trace: set_network true libguestfs: trace: set_network = 0 libguestfs: trace: add_drive "tmp.rootfs.ext4" "readonly:false" "format:raw" "protocol:file" "discard:besteffort" libguestfs: trace: add_drive = 0 libguestfs: trace: launch libguestfs: trace: max_disks libguestfs: trace: max_disks = 255 libguestfs: trace: get_tmpdir libguestfs: trace: get_tmpdir = "/tmp" libguestfs: trace: version libguestfs: trace: version = <struct guestfs_version = major: 1, minor: 52, release: 0, extra: , > libguestfs: trace: get_backend libguestfs: trace: get_backend = "direct" libguestfs: launch: program=virt-customize libguestfs: launch: version=1.52.0 libguestfs: launch: backend registered: libvirt libguestfs: launch: backend registered: direct libguestfs: launch: backend=direct libguestfs: launch: tmpdir=/tmp/libguestfsHYSvh8 libguestfs: launch: umask=0002 libguestfs: launch: euid=1000 libguestfs: trace: get_cachedir libguestfs: trace: get_cachedir = "/var/tmp" libguestfs: begin building supermin appliance libguestfs: run supermin libguestfs: command: run: /usr/bin/supermin libguestfs: command: run: \ --build libguestfs: command: run: \ --verbose libguestfs: command: run: \ --if-newer libguestfs: command: run: \ --lock /var/tmp/.guestfs-1000/lock libguestfs: command: run: \ --copy-kernel libguestfs: command: run: \ -f ext2 libguestfs: command: run: \ --host-cpu x86_64 libguestfs: command: run: \ /usr/lib/x86_64-linux-gnu/guestfs/supermin.d libguestfs: command: run: \ -o /var/tmp/.guestfs-1000/appliance.d supermin: version: 5.2.2 supermin: package handler: debian/dpkg supermin: acquiring lock on /var/tmp/.guestfs-1000/lock supermin: if-newer: output does not need rebuilding libguestfs: finished building supermin appliance libguestfs: begin testing qemu features libguestfs: trace: get_cachedir libguestfs: trace: get_cachedir = "/var/tmp" libguestfs: checking for previously cached test results of /usr/bin/qemu-system-x86_64, in /var/tmp/.guestfs-1000 libguestfs: loading previously cached test results libguestfs: qemu version: 8.2 libguestfs: qemu mandatory locking: yes libguestfs: qemu KVM: enabled libguestfs: trace: get_backend_setting "force_tcg" libguestfs: trace: get_backend_setting = NULL (error) libguestfs: trace: get_backend_setting "force_kvm" libguestfs: trace: get_backend_setting = NULL (error) libguestfs: trace: get_sockdir libguestfs: trace: get_sockdir = "/run/user/1000" libguestfs: finished testing qemu features libguestfs: trace: get_backend_setting "gdb" libguestfs: trace: get_backend_setting = NULL (error) libguestfs: command: run: passt --help Usage: passt [OPTION]... -d, --debug\t\tBe verbose --trace\t\tBe extra verbose, implies --debug -q, --quiet\t\tDon't print informational messages -f, --foreground\tDon't run in background default: run in background if started from a TTY -e, --stderr\t\tLog to stderr too default: log to system logger only if started from a TTY -l, --log-file PATH\tLog (only) to given file --log-size BYTES\tMaximum size of log file default: 1 MiB --runas UID|UID:GID \tRun as given UID, GID, which can be numeric, or login and group names default: drop to user "nobody" -h, --help\t\tDisplay this help message and exit --version\t\tShow version and exit -s, --socket PATH\tUNIX domain socket path default: probe free path starting from /tmp/passt_1.socket -F, --fd FD\t\tUse FD as pre-opened connected socket -p, --pcap FILE\tLog tap-facing traffic to pcap file -P, --pid FILE\tWrite own PID to the given file -m, --mtu MTU\tAssign MTU via DHCP/NDP a zero value disables assignment default: 65520: maximum 802.3 MTU minus 802.3 header length, rounded to 32 bits (IPv4 words) -a, --address ADDR\tAssign IPv4 or IPv6 address ADDR can be specified zero to two times (for IPv4 and IPv6) default: use addresses from interface with default route -n, --netmask MASK\tAssign IPv4 MASK, dot-decimal or bits default: netmask from matching address on the host -M, --mac-addr ADDR\tUse source MAC address ADDR default: MAC address from interface with default route -g, --gateway ADDR\tPass IPv4 or IPv6 address as gateway default: gateway from interface with default route -i, --interface NAME\tInterface for addresses and routes default: from --outbound-if4 and --outbound-if6, if any otherwise interface with first default route -o, --outbound ADDR\tBind to address as outbound source can be specified zero to two times (for IPv4 and IPv6) default: use source address from routing tables --outbound-if4 NAME\tBind to outbound interface for IPv4 default: use interface from default route --outbound-if6 NAME\tBind to outbound interface for IPv6 default: use interface from default route -D, --dns ADDR\tUse IPv4 or IPv6 address as DNS can be specified multiple times a single, empty option disables DNS information default: use addresses from /etc/resolv.conf -S, --search LIST\tSpace-separated list, search domains a single, empty option disables the DNS search list default: use search list from /etc/resolv.conf --no-dhcp-dns\tNo DNS list in DHCP/DHCPv6/NDP --no-dhcp-search\tNo list in DHCP/DHCPv6/NDP --dns-forward ADDR\tForward DNS queries sent to ADDR can be specified zero to two times (for IPv4 and IPv6) default: don't forward DNS queries --no-tcp\t\tDisable TCP protocol handler --no-udp\t\tDisable UDP protocol handler --no-icmp\t\tDisable ICMP/ICMPv6 protocol handler --no-dhcp\t\tDisable DHCP server --no-ndp\t\tDisable NDP responses --no-dhcpv6\t\tDisable DHCPv6 server --no-ra\t\tDisable router advertisements --no-map-gw\t\tDon't map gateway address to host -4, --ipv4-only\tEnable IPv4 operation only -6, --ipv6-only\tEnable IPv6 operation only -1, --one-off\tQuit after handling one single client -t, --tcp-ports SPEC\tTCP port forwarding to guest can be specified multiple times SPEC can be: 'none': don't forward any ports 'all': forward all unbound, non-ephemeral ports a comma-separated list, optionally ranged with '-' and optional target ports after ':', with optional address specification suffixed by '/' and optional interface prefixed by '%'. Ranges can be reduced by excluding ports or ranges prefixed by '~' Examples: -t 22\t\tForward local port 22 to 22 on guest -t 22:23\tForward local port 22 to 23 on guest -t 22,25\tForward ports 22, 25 to ports 22, 25 -t 22-80 \tForward ports 22 to 80 -t 22-80:32-90\tForward ports 22 to 80 to \t\t\tcorresponding port numbers plus 10 -t 192.0.2.1/5\tBind port 5 of 192.0.2.1 to guest -t 5-25,~10-20\tForward ports 5 to 9, and 21 to 25 -t ~25\t\tForward all ports except for 25 default: none -u, --udp-ports SPEC\tUDP port forwarding to guest SPEC is as described for TCP above default: none libguestfs: command: run: passt libguestfs: command: run: \ --one-off libguestfs: command: run: \ --socket /run/user/1000/libguestfsRqcEyQ/passt.sock libguestfs: command: run: \ --pid /run/user/1000/libguestfsRqcEyQ/passt1.pid libguestfs: command: run: \ --address 169.254.2.15 libguestfs: command: run: \ --netmask 16 libguestfs: command: run: \ --mac-addr 52:56:00:00:00:02 libguestfs: command: run: \ --gateway 169.254.2.2 No routable interface for IPv6: IPv6 is disabled Template interface: eth0 (IPv4) MAC: host: 52:56:00:00:00:02 DHCP: assign: 169.254.2.15 mask: 255.255.0.0 router: 169.254.2.2 DNS: 169.254.2.2 DNS search list: mshome.net UNIX domain socket bound at /run/user/1000/libguestfsRqcEyQ/passt.sock You can now start qemu (>= 7.2, with commit 13c6be96618c): kvm ... -device virtio-net-pci,netdev=s -netdev stream,id=s,server=off,addr.type=unix,addr.path=/run/user/1000/libguestfsRqcEyQ/passt.sock or qrap, for earlier qemu versions: ./qrap 5 kvm ... -net socket,fd=5 -net nic,model=virtio /usr/bin/qemu-system-x86_64 \ -global virtio-blk-pci.scsi=off \ -no-user-config \ -nodefaults \ -display none \ -machine q35,accel=kvm:tcg,graphics=off \ -cpu max,la57=off \ -m 1280 \ -no-reboot \ -rtc driftfix=slew \ -no-hpet \ -global kvm-pit.lost_tick_policy=discard \ -kernel /var/tmp/.guestfs-1000/appliance.d/kernel \ -initrd /var/tmp/.guestfs-1000/appliance.d/initrd \ -object rng-random,filename=/dev/urandom,id=rng0 \ -device virtio-rng-pci,rng=rng0 \ -device virtio-scsi-pci,id=scsi \ -drive file=/repos/CypressGradientMaker/install/tmp.rootfs.ext4,cache=writeback,format=raw,discard=unmap,id=hd0,if=none \ -device scsi-hd,drive=hd0 \ -drive file=/var/tmp/.guestfs-1000/appliance.d/root,snapshot=on,id=appliance,cache=unsafe,if=none,format=raw \ -device scsi-hd,drive=appliance \ -device virtio-serial-pci \ -serial stdio \ -chardev socket,path=/run/user/1000/libguestfsRqcEyQ/guestfsd.sock,id=channel0 \ -device virtserialport,chardev=channel0,name=org.libguestfs.channel.0 \ -netdev stream,id=usernet,addr.type=unix,addr.path=/run/user/1000/libguestfsRqcEyQ/passt.sock \ -device virtio-net-pci,netdev=usernet \ -append "panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color" qemu-system-x86_64: -no-hpet: warning: -no-hpet is deprecated, use '-machine hpet=off' instead \x1bc\x1b[?7l\x1b[2J\x1b[0mSeaBIOS (version 1.16.3-debian-1.16.3-2) iPXE (https://ipxe.org) 00:04.0 C000 PCI2.10 PnP PMM+4EFCA9F0+4EF0A9F0 C000 Press Ctrl-B to configure iPXE (PCI 00:04.0)... Booting from ROM..\x1bc\x1b[?7l\x1b[2J[ 0.000000] Linux version 6.8.0-57-generic (buildd@lcy02-amd64-040) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 (Ubuntu 6.8.0-57.59-generic 6.8.12) [ 0.000000] Command line: panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color [ 0.000000] KERNEL supported cpus: [ 0.000000] Intel GenuineIntel [ 0.000000] AMD AuthenticAMD [ 0.000000] Hygon HygonGenuine [ 0.000000] Centaur CentaurHauls [ 0.000000] zhaoxin Shanghai [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000004ffdcfff] usable [ 0.000000] BIOS-e820: [mem 0x000000004ffdd000-0x000000004fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] APIC: Static calls initialized [ 0.000000] SMBIOS 3.0.0 present. [ 0.000000] DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.16.3-debian-1.16.3-2 04/01/2014 [ 0.000000] Hypervisor detected: KVM [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 [ 0.000002] kvm-clock: using sched offset of 226453483 cycles [ 0.000004] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns [ 0.000007] tsc: Detected 2808.008 MHz processor [ 0.000537] last_pfn = 0x4ffdd max_arch_pfn = 0x400000000 [ 0.000665] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs [ 0.000672] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.007843] found SMP MP-table at [mem 0x000f5460-0x000f546f] [ 0.007863] Using GB pages for direct mapping [ 0.008078] RAMDISK: [mem 0x4fecd000-0x4ffcffff] [ 0.008099] ACPI: Early table checksum verification disabled [ 0.008103] ACPI: RSDP 0x00000000000F52A0 000014 (v00 BOCHS ) [ 0.008108] ACPI: RSDT 0x000000004FFE2209 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.008115] ACPI: FACP 0x000000004FFE2039 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001) [ 0.008121] ACPI: DSDT 0x000000004FFE0040 001FF9 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.008125] ACPI: FACS 0x000000004FFE0000 000040 [ 0.008128] ACPI: APIC 0x000000004FFE212D 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001) [ 0.008132] ACPI: MCFG 0x000000004FFE21A5 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.008136] ACPI: WAET 0x000000004FFE21E1 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001) [ 0.008139] ACPI: Reserving FACP table memory at [mem 0x4ffe2039-0x4ffe212c] [ 0.008140] ACPI: Reserving DSDT table memory at [mem 0x4ffe0040-0x4ffe2038] [ 0.008141] ACPI: Reserving FACS table memory at [mem 0x4ffe0000-0x4ffe003f] [ 0.008142] ACPI: Reserving APIC table memory at [mem 0x4ffe212d-0x4ffe21a4] [ 0.008143] ACPI: Reserving MCFG table memory at [mem 0x4ffe21a5-0x4ffe21e0] [ 0.008144] ACPI: Reserving WAET table memory at [mem 0x4ffe21e1-0x4ffe2208] [ 0.009119] No NUMA configuration found [ 0.009121] Faking a node at [mem 0x0000000000000000-0x000000004ffdcfff] [ 0.009131] NODE_DATA(0) allocated [mem 0x4fea2000-0x4feccfff] [ 0.009344] Zone ranges: [ 0.009346] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.009349] DMA32 [mem 0x0000000001000000-0x000000004ffdcfff] [ 0.009350] Normal empty [ 0.009351] Device empty [ 0.009352] Movable zone start for each node [ 0.009354] Early memory node ranges [ 0.009355] node 0: [mem 0x0000000000001000-0x000000000009efff] [ 0.009356] node 0: [mem 0x0000000000100000-0x000000004ffdcfff] [ 0.009358] Initmem setup node 0 [mem 0x0000000000001000-0x000000004ffdcfff] [ 0.009542] On node 0, zone DMA: 1 pages in unavailable ranges [ 0.009556] On node 0, zone DMA: 97 pages in unavailable ranges [ 0.015078] On node 0, zone DMA32: 35 pages in unavailable ranges [ 0.016307] ACPI: PM-Timer IO Port: 0x608 [ 0.016331] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [ 0.016409] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 [ 0.016414] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.016416] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) [ 0.016417] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.016419] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [ 0.016420] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [ 0.016424] ACPI: Using ACPI (MADT) for SMP configuration information [ 0.016426] TSC deadline timer available [ 0.016427] smpboot: Allowing 1 CPUs, 0 hotplug CPUs [ 0.016457] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write() [ 0.016500] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.016502] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff] [ 0.016503] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff] [ 0.016504] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff] [ 0.016505] [mem 0x50000000-0xafffffff] available for PCI devices [ 0.016507] Booting paravirtualized kernel on KVM [ 0.016509] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.016516] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1 [ 0.016853] percpu: Embedded 86 pages/cpu s229376 r8192 d114688 u2097152 [ 0.016923] kvm-guest: PV spinlocks disabled, single CPU [ 0.016925] Kernel command line: panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color [ 0.017078] cgroup: Disabling memory control group subsystem [ 0.017159] Unknown kernel command line parameters "edd=off udevtimeout=6000 guestfs_verbose=1 guestfs_network=1", will be passed to user space. [ 0.017197] random: crng init done [ 0.017461] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.017512] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.017578] Fallback order for Node 0: 0 [ 0.017581] Built 1 zonelists, mobility grouping on. Total pages: 322269 [ 0.017583] Policy zone: DMA32 [ 0.017588] mem auto-init: stack:all(zero), heap alloc:on, heap free:off [ 0.020405] Memory: 1230820K/1310188K available (22528K kernel code, 4444K rwdata, 14344K rodata, 4988K init, 4716K bss, 79108K reserved, 0K cma-reserved) [ 0.021316] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.021341] ftrace: allocating 58010 entries in 227 pages [ 0.030737] ftrace: allocated 227 pages with 5 groups [ 0.031649] Dynamic Preempt: voluntary [ 0.031889] rcu: Preemptible hierarchical RCU implementation. [ 0.031891] rcu: \tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1. [ 0.031892] \tTrampoline variant of Tasks RCU enabled. [ 0.031893] \tRude variant of Tasks RCU enabled. [ 0.031893] \tTracing variant of Tasks RCU enabled. [ 0.031894] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.031895] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1 [ 0.034925] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16 [ 0.035204] rcu: srcu_init: Setting srcu_struct sizes based on contention. [ 0.035446] Console: colour *CGA 80x25 [ 0.035520] printk: legacy console [ttyS0] enabled [ 0.222203] ACPI: Core revision 20230628 [ 0.223207] APIC: Switch to symmetric I/O mode setup [ 0.225040] x2apic enabled [ 0.226397] APIC: Switched APIC routing to: physical x2apic [ 0.230288] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2879cd89e5d, max_idle_ns: 440795239466 ns [ 0.232770] Calibrating delay loop (skipped) preset value.. 5616.01 BogoMIPS (lpj=2808008) [ 0.233765] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 0.233765] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.233765] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.233765] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.233765] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on vm exit [ 0.233765] Spectre V2 : Spectre BHI mitigation: SW BHB clearing on syscall [ 0.233765] Spectre V2 : Mitigation: Enhanced / Automatic IBRS [ 0.233765] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.233765] Spectre V2 : Spectre v2 / PBRSB-eIBRS: Retire a single CALL on VMEXIT [ 0.233765] RETBleed: Mitigation: Enhanced IBRS [ 0.233765] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.233765] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl [ 0.233765] MMIO Stale Data: Mitigation: Clear CPU buffers [ 0.233765] SRBDS: Unknown: Dependent on hypervisor status [ 0.233765] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.233765] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.233765] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.233765] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.233765] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format. [ 0.233765] Freeing SMP alternatives memory: 48K [ 0.233765] pid_max: default: 32768 minimum: 301 [ 0.233765] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity [ 0.233765] landlock: Up and running. [ 0.233765] Yama: becoming mindful. [ 0.233765] AppArmor: AppArmor initialized [ 0.233765] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.233765] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.233765] smpboot: CPU0: Intel(R) Xeon(R) W-10855M CPU @ 2.80GHz (family: 0x6, model: 0xa5, stepping: 0x2) [ 0.233928] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1. [ 0.234806] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1. [ 0.235801] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1. [ 0.236818] Performance Events: unsupported p6 CPU model 165 no PMU driver, software events only. [ 0.237829] signal: max sigframe size: 1776 [ 0.238825] rcu: Hierarchical SRCU implementation. [ 0.239775] rcu: \tMax phase no-delay instances is 400. [ 0.241230] NMI watchdog: Perf NMI watchdog permanently disabled [ 0.241822] smp: Bringing up secondary CPUs ... [ 0.242790] smp: Brought up 1 node, 1 CPU [ 0.243780] smpboot: Max logical packages: 1 [ 0.244776] smpboot: Total of 1 processors activated (5616.01 BogoMIPS) [ 0.246134] devtmpfs: initialized [ 0.246824] x86/mm: Memory block size: 128MB [ 0.248165] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.248795] futex hash table entries: 256 (order: 2, 16384 bytes, linear) [ 0.249856] pinctrl core: initialized pinctrl subsystem [ 0.251083] PM: RTC time: 21:01:46, date: 2025-04-15 [ 0.252432] NET: Registered PF_NETLINK/PF_ROUTE protocol family [ 0.252904] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.253796] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.254792] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.255792] audit: initializing netlink subsys (disabled) [ 0.256828] audit: type=2000 audit(1744750906.982:1): state=initialized audit_enabled=0 res=1 [ 0.257902] thermal_sys: Registered thermal governor 'fair_share' [ 0.257904] thermal_sys: Registered thermal governor 'bang_bang' [ 0.258779] thermal_sys: Registered thermal governor 'step_wise' [ 0.259775] thermal_sys: Registered thermal governor 'user_space' [ 0.260774] thermal_sys: Registered thermal governor 'power_allocator' [ 0.261788] EISA bus registered [ 0.263598] cpuidle: using governor ladder [ 0.263779] cpuidle: using governor menu [ 0.264879] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.266032] PCI: ECAM [mem 0xb0000000-0xbfffffff] (base 0xb0000000) for domain 0000 [bus 00-ff] [ 0.266781] PCI: ECAM [mem 0xb0000000-0xbfffffff] reserved as E820 entry [ 0.267784] PCI: Using configuration type 1 for base access [ 0.268928] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible. [ 0.301821] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages [ 0.302775] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page [ 0.303774] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages [ 0.304773] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page [ 0.308122] ACPI: Added _OSI(Module Device) [ 0.308774] ACPI: Added _OSI(Processor Device) [ 0.309776] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.310774] ACPI: Added _OSI(Processor Aggregator Device) [ 0.312891] ACPI: 1 ACPI AML tables successfully acquired and loaded [ 0.314823] ACPI: _OSC evaluation for CPUs failed, trying _PDC [ 0.315881] ACPI: Interpreter enabled [ 0.316786] ACPI: PM: (supports S0 S3 S4 S5) [ 0.317774] ACPI: Using IOAPIC for interrupt routing [ 0.318864] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.319774] PCI: Using E820 reservations for host bridge windows [ 0.320901] ACPI: Enabled 2 GPEs in block 00 to 3F [ 0.324279] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.324779] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3] [ 0.325834] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug LTR DPC] [ 0.326847] acpi PNP0A08:00: _OSC: OS now controls [SHPCHotplug PME AER PCIeCapability] [ 0.328053] PCI host bridge to bus 0000:00 [ 0.328774] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.329774] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.330774] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.331776] pci_bus 0000:00: root bus resource [mem 0x50000000-0xafffffff window] [ 0.332775] pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window] [ 0.333778] pci_bus 0000:00: root bus resource [mem 0x100000000-0x8ffffffff window] [ 0.334777] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.335898] pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000 conventional PCI endpoint [ 0.338046] pci 0000:00:01.0: [1af4:1005] type 00 class 0x00ff00 conventional PCI endpoint [ 0.340326] pci 0000:00:01.0: BAR 0 [io 0xc0c0-0xc0df] [ 0.340796] pci 0000:00:01.0: BAR 1 [mem 0xfeb80000-0xfeb80fff] [ 0.341888] pci 0000:00:01.0: BAR 4 [mem 0xfebf0000-0xfebf3fff 64bit pref] [ 0.344304] pci 0000:00:02.0: [1af4:1004] type 00 class 0x010000 conventional PCI endpoint [ 0.346591] pci 0000:00:02.0: BAR 0 [io 0xc000-0xc03f] [ 0.346795] pci 0000:00:02.0: BAR 1 [mem 0xfeb81000-0xfeb81fff] [ 0.347851] pci 0000:00:02.0: BAR 4 [mem 0xfebf4000-0xfebf7fff 64bit pref] [ 0.350263] pci 0000:00:03.0: [1af4:1003] type 00 class 0x078000 conventional PCI endpoint [ 0.352199] pci 0000:00:03.0: BAR 0 [io 0xc040-0xc07f] [ 0.352795] pci 0000:00:03.0: BAR 1 [mem 0xfeb82000-0xfeb82fff] [ 0.353843] pci 0000:00:03.0: BAR 4 [mem 0xfebf8000-0xfebfbfff 64bit pref] [ 0.356292] pci 0000:00:04.0: [1af4:1000] type 00 class 0x020000 conventional PCI endpoint [ 0.357796] pci 0000:00:04.0: BAR 0 [io 0xc0e0-0xc0ff] [ 0.358795] pci 0000:00:04.0: BAR 1 [mem 0xfeb83000-0xfeb83fff] [ 0.359844] pci 0000:00:04.0: BAR 4 [mem 0xfebfc000-0xfebfffff 64bit pref] [ 0.360792] pci 0000:00:04.0: ROM [mem 0xfeb00000-0xfeb7ffff pref] [ 0.388977] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 conventional PCI endpoint [ 0.390623] pci 0000:00:1f.0: quirk: [io 0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO [ 0.391304] pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601 conventional PCI endpoint [ 0.392861] pci 0000:00:1f.2: BAR 4 [io 0xc100-0xc11f] [ 0.393806] pci 0000:00:1f.2: BAR 5 [mem 0xfeb84000-0xfeb84fff] [ 0.395567] pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500 conventional PCI endpoint [ 0.396709] pci 0000:00:1f.3: BAR 4 [io 0x0700-0x073f] [ 0.397370] ACPI: PCI: Interrupt link LNKA configured for IRQ 10 [ 0.397944] ACPI: PCI: Interrupt link LNKB configured for IRQ 10 [ 0.399066] ACPI: PCI: Interrupt link LNKC configured for IRQ 11 [ 0.399937] ACPI: PCI: Interrupt link LNKD configured for IRQ 11 [ 0.400911] ACPI: PCI: Interrupt link LNKE configured for IRQ 10 [ 0.401913] ACPI: PCI: Interrupt link LNKF configured for IRQ 10 [ 0.402909] ACPI: PCI: Interrupt link LNKG configured for IRQ 11 [ 0.403907] ACPI: PCI: Interrupt link LNKH configured for IRQ 11 [ 0.404834] ACPI: PCI: Interrupt link GSIA configured for IRQ 16 [ 0.405788] ACPI: PCI: Interrupt link GSIB configured for IRQ 17 [ 0.406795] ACPI: PCI: Interrupt link GSIC configured for IRQ 18 [ 0.407795] ACPI: PCI: Interrupt link GSID configured for IRQ 19 [ 0.408793] ACPI: PCI: Interrupt link GSIE configured for IRQ 20 [ 0.409790] ACPI: PCI: Interrupt link GSIF configured for IRQ 21 [ 0.410787] ACPI: PCI: Interrupt link GSIG configured for IRQ 22 [ 0.411785] ACPI: PCI: Interrupt link GSIH configured for IRQ 23 [ 0.413064] iommu: Default domain type: Translated [ 0.413778] iommu: DMA domain TLB invalidation policy: lazy mode [ 0.414930] SCSI subsystem initialized [ 0.415851] usbcore: USB support disabled [ 0.416802] pps_core: LinuxPPS API ver. 1 registered [ 0.417779] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giome...@linux.it> [ 0.418795] PTP clock support registered [ 0.419871] EDAC MC: Ver: 3.0.0 [ 0.421708] NetLabel: Initializing [ 0.421813] NetLabel: domain hash size = 128 [ 0.422779] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.423800] NetLabel: unlabeled traffic allowed by default [ 0.424847] mctp: management component transport protocol core [ 0.425774] NET: Registered PF_MCTP protocol family [ 0.426779] PCI: Using ACPI for IRQ routing [ 0.840232] vgaarb: loaded [ 0.840902] clocksource: Switched to clocksource kvm-clock [ 0.842943] VFS: Disk quotas dquot_6.6.0 [ 0.844122] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.846202] AppArmor: AppArmor Filesystem Enabled [ 0.847580] pnp: PnP ACPI init [ 0.848587] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved [ 0.851119] pnp: PnP ACPI: found 5 devices [ 0.858062] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.860619] NET: Registered PF_INET protocol family [ 0.862004] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear) [ 0.877200] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.879662] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear) [ 0.881958] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.884207] TCP bind hash table entries: 16384 (order: 7, 524288 bytes, linear) [ 0.886366] TCP: Hash tables configured (established 16384 bind 16384) [ 0.888215] MPTCP token hash table entries: 2048 (order: 3, 49152 bytes, linear) [ 0.890291] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.892324] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.894433] NET: Registered PF_UNIX/PF_LOCAL protocol family [ 0.896065] NET: Registered PF_XDP protocol family [ 0.897572] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.899321] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.901028] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 0.902896] pci_bus 0000:00: resource 7 [mem 0x50000000-0xafffffff window] [ 0.904750] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window] [ 0.906706] pci_bus 0000:00: resource 9 [mem 0x100000000-0x8ffffffff window] [ 0.908839] PCI: CLS 0 bytes, default 64 [ 0.910148] Trying to unpack rootfs image as initramfs... [ 0.912237] Freeing initrd memory: 1036K [ 0.913812] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2879cd89e5d, max_idle_ns: 440795239466 ns [ 0.917043] Initialise system trusted keyrings [ 0.918385] Key type blacklist registered [ 0.919604] workingset: timestamp_bits=36 max_order=19 bucket_order=0 [ 0.921435] zbud: loaded [ 0.922401] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.924090] fuse: init (API version 7.39) [ 0.925329] integrity: Platform Keyring initialized [ 0.926714] integrity: Machine keyring initialized [ 0.939018] Key type asymmetric registered [ 0.940222] Asymmetric key parser 'x509' registered [ 0.941634] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243) [ 0.943765] io scheduler mq-deadline registered [ 0.945180] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 0.947146] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 0.949239] ACPI: button: Power Button [PWRF] [ 0.950853] ACPI: \_SB_.GSIF: Enabled at IRQ 21 [ 0.954242] ACPI: \_SB_.GSIG: Enabled at IRQ 22 [ 0.957638] ACPI: \_SB_.GSIH: Enabled at IRQ 23 [ 0.961291] ACPI: \_SB_.GSIE: Enabled at IRQ 20 [ 0.964639] Serial: 8250/16550 driver, 1 ports, IRQ sharing enabled [ 0.996096] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 1.022831] Linux agpgart interface v0.103 [ 1.025189] loop: module loaded [ 1.026623] virtio_scsi virtio1: 1/0/0 default/read/poll queues [ 1.030145] scsi host0: Virtio SCSI HBA [ 1.031673] ACPI: bus type drm_connector registered [ 1.033021] scsi 0:0:0:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5 [ 1.035286] tun: Universal TUN/TAP device driver, 1.6 [ 1.043470] scsi 0:0:1:0: Direct-Access QEMU QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5 [ 1.046216] PPP generic driver version 2.4.2 [ 1.048148] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 1.053210] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.054726] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.056930] mousedev: PS/2 mouse device common for all mice [ 1.059308] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 1.061775] rtc_cmos 00:03: RTC can wake from S4 [ 1.065521] rtc_cmos 00:03: registered as rtc0 [ 1.067188] rtc_cmos 00:03: setting system clock to 2025-04-15T21:01:47 UTC (1744750907) [ 1.069732] rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram [ 1.071664] i2c_dev: i2c /dev entries driver [ 1.073157] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. [ 1.076453] device-mapper: uevent: version 1.0.3 [ 1.078185] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-de...@redhat.com [ 1.080580] platform eisa.0: Probing EISA bus 0 [ 1.081829] platform eisa.0: EISA: Cannot allocate resource for mainboard [ 1.083808] platform eisa.0: Cannot allocate resource for EISA slot 1 [ 1.085716] platform eisa.0: Cannot allocate resource for EISA slot 2 [ 1.087674] platform eisa.0: Cannot allocate resource for EISA slot 3 [ 1.090200] platform eisa.0: Cannot allocate resource for EISA slot 4 [ 1.092176] platform eisa.0: Cannot allocate resource for EISA slot 5 [ 1.094380] platform eisa.0: Cannot allocate resource for EISA slot 6 [ 1.096601] platform eisa.0: Cannot allocate resource for EISA slot 7 [ 1.098793] platform eisa.0: Cannot allocate resource for EISA slot 8 [ 1.100991] platform eisa.0: EISA: Detected 0 cards [ 1.102503] intel_pstate: CPU model not supported [ 1.104121] ledtrig-cpu: registered to indicate activity on CPUs [ 1.106386] drop_monitor: Initializing network drop monitor service [ 1.108681] NET: Registered PF_INET6 protocol family [ 1.111823] Segment Routing with IPv6 [ 1.113118] In-situ OAM (IOAM) with IPv6 [ 1.114529] NET: Registered PF_PACKET protocol family [ 1.116527] Key type dns_resolver registered [ 1.118860] IPI shorthand broadcast: enabled [ 1.123458] sched_clock: Marking stable (925010509, 197548796)->(1299373797, -176814492) [ 1.126264] registered taskstats version 1 [ 1.128129] Loading compiled-in X.509 certificates [ 1.131650] Loaded X.509 cert 'Build time autogenerated kernel key: 314db5b871207b67c6af73164cb9641e90a23972' [ 1.135418] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' [ 1.139828] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' [ 1.142884] blacklist: Loading compiled-in revocation X.509 certificates [ 1.145037] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' [ 1.148082] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03' [ 1.151708] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b' [ 1.155061] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8' [ 1.158353] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d' [ 1.161653] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c' [ 1.165136] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af' [ 1.168490] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9' [ 1.177675] Key type .fscrypt registered [ 1.178870] Key type fscrypt-provisioning registered [ 1.182194] Key type encrypted registered [ 1.183622] AppArmor: AppArmor sha256 policy hashing enabled [ 1.185456] ima: No TPM chip found, activating TPM-bypass! [ 1.187387] Loading compiled-in module X.509 certificates [ 1.190088] Loaded X.509 cert 'Build time autogenerated kernel key: 314db5b871207b67c6af73164cb9641e90a23972' [ 1.193273] ima: Allocated hash algorithm: sha256 [ 1.195156] ima: No architecture policies found [ 1.196644] evm: Initialising EVM extended attributes: [ 1.198323] evm: security.selinux [ 1.199399] evm: security.SMACK64 [ 1.200457] evm: security.SMACK64EXEC [ 1.201595] evm: security.SMACK64TRANSMUTE [ 1.202962] evm: security.SMACK64MMAP [ 1.204071] evm: security.apparmor [ 1.205106] evm: security.ima [ 1.206015] evm: security.capability [ 1.207132] evm: HMAC attrs: 0x1 [ 1.209156] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.210945] sd 0:0:0:0: Power-on or device reset occurred [ 1.212776] PM: Magic number: 5:305:45 [ 1.214421] sd 0:0:0:0: [sda] 10485760 512-byte logical blocks: (5.37 GB/5.00 GiB) [ 1.217795] sd 0:0:1:0: Attached scsi generic sg1 type 0 [ 1.219581] sd 0:0:1:0: Power-on or device reset occurred [ 1.223525] RAS: Correctable Errors collector initialized. [ 1.225353] sd 0:0:0:0: [sda] Write Protect is off [ 1.226811] sd 0:0:1:0: [sdb] 8388608 512-byte logical blocks: (4.29 GB/4.00 GiB) [ 1.229143] sd 0:0:1:0: [sdb] Write Protect is off [ 1.230756] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.233479] clk: Disabling unused clocks [ 1.235485] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.238205] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.239417] sd 0:0:1:0: [sdb] Attached SCSI disk [ 1.241220] Freeing unused decrypted memory: 2028K [ 1.242647] Freeing unused kernel image (initmem) memory: 4988K [ 1.243849] Write protecting the kernel read-only data: 38912k [ 1.245652] Freeing unused kernel image (rodata/data gap) memory: 2040K [ 1.259575] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 1.260914] Run /init as init process supermin: mounting /proc supermin: ext2 mini initrd starting up: 5.2.2 supermin: cmdline: panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color supermin: uptime: 1.07 0.00 supermin: mounting /sys supermin: internal insmod crc32-pclmul.ko.zst [ 1.271869] Invalid ELF header magic: != \x7fELF insmod: init_module: crc32-pclmul.ko.zst: Invalid module format supermin: internal insmod crct10dif-pclmul.ko.zst [ 1.275119] Invalid ELF header magic: != \x7fELF insmod: init_module: crct10dif-pclmul.ko.zst: Invalid module format supermin: internal insmod crc32_generic.ko.zst [ 1.278501] Invalid ELF header magic: != \x7fELF insmod: init_module: crc32_generic.ko.zst: Invalid module format supermin: internal insmod nfit.ko.zst [ 1.281513] Invalid ELF header magic: != \x7fELF insmod: init_module: nfit.ko.zst: Invalid module format supermin: internal insmod ecc.ko.zst [ 1.284378] Invalid ELF header magic: != \x7fELF insmod: init_module: ecc.ko.zst: Invalid module format supermin: internal insmod ecdh_generic.ko.zst [ 1.287366] Invalid ELF header magic: != \x7fELF insmod: init_module: ecdh_generic.ko.zst: Invalid module format supermin: internal insmod bluetooth.ko.zst [ 1.290651] Invalid ELF header magic: != \x7fELF insmod: init_module: bluetooth.ko.zst: Invalid module format supermin: internal insmod virtio_bt.ko.zst [ 1.293841] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_bt.ko.zst: Invalid module format supermin: internal insmod virtio-rng.ko.zst [ 1.296950] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio-rng.ko.zst: Invalid module format supermin: internal insmod crypto_engine.ko.zst [ 1.300184] Invalid ELF header magic: != \x7fELF insmod: init_module: crypto_engine.ko.zst: Invalid module format supermin: internal insmod virtio_crypto.ko.zst [ 1.303384] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_crypto.ko.zst: Invalid module format supermin: internal insmod nd_btt.ko.zst [ 1.306452] Invalid ELF header magic: != \x7fELF insmod: init_module: nd_btt.ko.zst: Invalid module format supermin: internal insmod nd_pmem.ko.zst [ 1.309798] Invalid ELF header magic: != \x7fELF insmod: init_module: nd_pmem.ko.zst: Invalid module format supermin: internal insmod nd_virtio.ko.zst [ 1.312890] Invalid ELF header magic: != \x7fELF insmod: init_module: nd_virtio.ko.zst: Invalid module format supermin: internal insmod virtio_pmem.ko.zst [ 1.316025] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_pmem.ko.zst: Invalid module format supermin: internal insmod rpmsg_core.ko.zst [ 1.319078] Invalid ELF header magic: != \x7fELF insmod: init_module: rpmsg_core.ko.zst: Invalid module format supermin: internal insmod rpmsg_ns.ko.zst [ 1.322120] Invalid ELF header magic: != \x7fELF insmod: init_module: rpmsg_ns.ko.zst: Invalid module format supermin: internal insmod virtio_rpmsg_bus.ko.zst [ 1.325694] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_rpmsg_bus.ko.zst: Invalid module format supermin: internal insmod iommufd.ko.zst [ 1.328924] Invalid ELF header magic: != \x7fELF insmod: init_module: iommufd.ko.zst: Invalid module format supermin: internal insmod vfio.ko.zst [ 1.331965] Invalid ELF header magic: != \x7fELF insmod: init_module: vfio.ko.zst: Invalid module format supermin: internal insmod irqbypass.ko.zst [ 1.334845] Invalid ELF header magic: != \x7fELF insmod: init_module: irqbypass.ko.zst: Invalid module format supermin: internal insmod vfio-pci-core.ko.zst [ 1.337977] Invalid ELF header magic: != \x7fELF insmod: init_module: vfio-pci-core.ko.zst: Invalid module format supermin: internal insmod virtio-vfio-pci.ko.zst [ 1.341296] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio-vfio-pci.ko.zst: Invalid module format supermin: internal insmod virtio_dma_buf.ko.zst [ 1.344605] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_dma_buf.ko.zst: Invalid module format supermin: internal insmod virtio_input.ko.zst [ 1.347790] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_input.ko.zst: Invalid module format supermin: internal insmod virtio_mem.ko.zst [ 1.350920] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_mem.ko.zst: Invalid module format supermin: internal insmod vdpa.ko.zst [ 1.353922] Invalid ELF header magic: != \x7fELF insmod: init_module: vdpa.ko.zst: Invalid module format supermin: internal insmod virtio_vdpa.ko.zst [ 1.356879] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_vdpa.ko.zst: Invalid module format supermin: internal insmod virtiofs.ko.zst [ 1.359926] Invalid ELF header magic: != \x7fELF insmod: init_module: virtiofs.ko.zst: Invalid module format supermin: internal insmod crc-itu-t.ko.zst [ 1.362956] Invalid ELF header magic: != \x7fELF insmod: init_module: crc-itu-t.ko.zst: Invalid module format supermin: internal insmod crc4.ko.zst [ 1.365951] Invalid ELF header magic: != \x7fELF insmod: init_module: crc4.ko.zst: Invalid module format supermin: internal insmod crc7.ko.zst [ 1.368804] Invalid ELF header magic: != \x7fELF insmod: init_module: crc7.ko.zst: Invalid module format supermin: internal insmod crc8.ko.zst [ 1.371921] Invalid ELF header magic: != \x7fELF insmod: init_module: crc8.ko.zst: Invalid module format supermin: internal insmod libcrc32c.ko.zst [ 1.374920] Invalid ELF header magic: != \x7fELF insmod: init_module: libcrc32c.ko.zst: Invalid module format supermin: internal insmod soundcore.ko.zst [ 1.377956] Invalid ELF header magic: != \x7fELF insmod: init_module: soundcore.ko.zst: Invalid module format supermin: internal insmod snd.ko.zst [ 1.380931] Invalid ELF header magic: != \x7fELF insmod: init_module: snd.ko.zst: Invalid module format supermin: internal insmod snd-timer.ko.zst [ 1.383882] Invalid ELF header magic: != \x7fELF insmod: init_module: snd-timer.ko.zst: Invalid module format supermin: internal insmod snd-pcm.ko.zst [ 1.386916] Invalid ELF header magic: != \x7fELF insmod: init_module: snd-pcm.ko.zst: Invalid module format supermin: internal insmod virtio_snd.ko.zst [ 1.390191] Invalid ELF header magic: != \x7fELF insmod: init_module: virtio_snd.ko.zst: Invalid module format supermin: picked 8:16 as root device supermin: creating /dev/root as block special 8:16 supermin: mounting new root on /root [ 1.396011] EXT4-fs (sdb): mounting ext2 file system using the ext4 subsystem [ 1.399613] EXT4-fs (sdb): mounted filesystem 8e46b281-78e2-4925-be4a-aad975191a4f r/w without journal. Quota mode: none. supermin: deleting initramfs files supermin: chroot Starting /init script ... + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color == *guestfs_network=1* ]] + guestfs_network=1 + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color == *guestfs_rescue=1* ]] + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color == *guestfs_noreboot=1* ]] + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color == *guestfs_boot_analysis=1* ]] + mkdir -p /dev/pts /dev/shm + mount -t devpts /dev/pts /dev/pts + mount -t tmpfs -o mode=1777 shmfs /dev/shm + mkdir -p /sysroot + mkdir -p /run + mount -t tmpfs -o nosuid,size=20%,mode=0755 tmpfs /run + mkdir -p /run/lock + ln -s ../run/lock /var/lock + [[ panic=1 console=ttyS0 edd=off udevtimeout=6000 udev.event-timeout=6000 no_timer_check printk.time=1 cgroup_disable=memory usbcore.nousb cryptomgr.notests tsc=reliable 8250.nr_uarts=1 root=UUID=8e46b281-78e2-4925-be4a-aad975191a4f selinux=0 guestfs_verbose=1 guestfs_network=1 TERM=xterm-256color == *selinux=1* ]] + test -e /etc/mtab + ln -s /proc/mounts /etc/mtab + test -d /etc/crypto-policies/back-ends + mkdir -p /run/tmpfiles.d + kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf ++ dd if=/dev/urandom bs=16 count=1 status=none ++ od -x -A n + machine_id=' e3d7 f762 18ff 0b24 222e 860f 3c71 028d' + echo e3d7f76218ff0b24222e860f3c71028d + systemd-tmpfiles --prefix=/dev --prefix=/run --prefix=/var/run --create --boot \x1b[0;1;31m/usr/lib/tmpfiles.d/static-nodes-permissions.conf:12: Failed to resolve group 'audio': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/static-nodes-permissions.conf:13: Failed to resolve group 'audio': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/static-nodes-permissions.conf:14: Failed to resolve group 'disk': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/static-nodes-permissions.conf:18: Failed to resolve group 'kvm': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/static-nodes-permissions.conf:19: Failed to resolve group 'kvm': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/static-nodes-permissions.conf:20: Failed to resolve group 'kvm': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd-network.conf:10: Failed to resolve user 'systemd-network': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd-network.conf:11: Failed to resolve user 'systemd-network': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd-network.conf:12: Failed to resolve user 'systemd-network': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd-network.conf:13: Failed to resolve user 'systemd-network': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd.conf:11: Failed to resolve group 'utmp': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd.conf:22: Failed to resolve group 'systemd-journal': No such process\x1b[0m \x1b[0;1;31m/usr/lib/tmpfiles.d/systemd.conf:23: Failed to resolve group 'systemd-journal': No such process\x1b[0m \x1b[0;1;38;5;185mFailed to parse ACL "d:group::r-x,d:group:adm:r-x,group::r-x,group:adm:r-x", ignoring: No such file or directory\x1b[0m \x1b[0;1;38;5;185mFailed to parse ACL "d:group:adm:r-x,group:adm:r-x", ignoring: No such file or directory\x1b[0m \x1b[0;1;38;5;185mFailed to parse ACL "group:adm:r--", ignoring: No such file or directory\x1b[0m \x1b[0;1;38;5;185mFailed to parse ACL "d:group::r-x,d:group:adm:r-x,group::r-x,group:adm:r-x", ignoring: No such file or directory\x1b[0m \x1b[0;1;38;5;185mFailed to parse ACL "d:group:adm:r-x,group:adm:r-x", ignoring: No such file or directory\x1b[0m \x1b[0;1;38;5;185mFailed to parse ACL "group:adm:r--", ignoring: No such file or directory\x1b[0m + for f in /lib/systemd/systemd-udevd /usr/lib/systemd/systemd-udevd /sbin/udevd /lib/udev/udevd /usr/lib/udev/udevd + '[' -x /lib/systemd/systemd-udevd ']' + UDEVD=/lib/systemd/systemd-udevd + break + '[' -z /lib/systemd/systemd-udevd ']' + /lib/systemd/systemd-udevd --daemon Starting systemd-udevd version 255.4-1ubuntu8.6 + udevadm trigger + udevadm settle --timeout=600 + shopt -s nullglob + for f in /sys/block/sd*/device/timeout + echo 300 + for f in /sys/block/sd*/device/timeout + echo 300 + for f in /sys/block/{h,s,ub,v}d*/queue/scheduler + echo noop /init: line 108: echo: write error: Invalid argument + for f in /sys/block/{h,s,ub,v}d*/queue/scheduler + echo noop /init: line 108: echo: write error: Invalid argument + shopt -u nullglob + ip addr add 127.0.0.1/8 brd + dev lo scope host + ip link set dev lo up + test 1 = 1 ++ ls -I all -I default -I lo /proc/sys/net/ipv4/conf + iface=eth0 + touch /etc/fstab + rm -f /etc/dhcp/dhclient-enter-hooks.d/resolved + dhclient --version + dhcpcd eth0 /init: line 123: dhcpcd: command not found ++ seq 0 10 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + for i in `seq 0 10` + grep nameserver /etc/resolv.conf grep: /etc/resolv.conf: No such file or directory + sleep 1 + mdadm -As --auto=yes --no-degraded mdadm: No arrays found in config file or automatically + mkdir -p /tmp/lvm + touch /tmp/lvm/lvm.conf + command -v lvmdevices + command -v vgimportdevices + LVM_SYSTEM_DIR=/tmp/lvm + export LVM_SYSTEM_DIR + lvmetad /init: line 152: lvmetad: command not found + modprobe dm_mod + lvm pvscan --cache --activate ay + mdadm -As --auto=yes --run mdadm: No arrays found in config file or automatically + ldmtool create all [] + test 1 = 1 + test '' '!=' 1 + uname -a Linux (none) 6.8.0-57-generic #59-Ubuntu SMP PREEMPT_DYNAMIC Sat Mar 15 17:40:59 UTC 2025 x86_64 x86_64 x86_64 GNU/Linux + ls -lR /dev /dev: total 0 crw------- 1 0 0 10, 235 Apr 15 21:01 autofs drwxr-xr-x 2 0 0 240 Apr 15 21:01 block drwxr-xr-x 2 0 0 80 Apr 15 21:01 bsg crw------- 1 0 0 10, 234 Apr 15 21:01 btrfs-control drwxr-xr-x 2 0 0 2240 Apr 15 21:01 char crw------- 1 0 0 5, 1 Apr 15 21:01 console crw------- 1 0 0 10, 123 Apr 15 21:01 cpu_dma_latency crw------- 1 0 0 10, 203 Apr 15 21:01 cuse drwxr-xr-x 6 0 0 120 Apr 15 21:01 disk drwxr-xr-x 2 0 0 60 Apr 15 21:01 dma_heap crw------- 1 0 0 10, 125 Apr 15 21:01 ecryptfs lrwxrwxrwx 1 0 0 13 Apr 15 21:01 fd -> /proc/self/fd crw-rw-rw- 1 0 0 1, 7 Apr 15 21:01 full crw-rw-rw- 1 0 0 10, 229 Apr 15 21:01 fuse crw------- 1 0 0 10, 228 Apr 15 21:01 hpet crw------- 1 0 0 10, 183 Apr 15 21:01 hwrng drwxr-xr-x 3 0 0 120 Apr 15 21:01 input crw-r--r-- 1 0 0 1, 11 Apr 15 21:01 kmsg crw------- 1 0 0 10, 237 Apr 15 21:01 loop-control brw------- 1 0 0 7, 0 Apr 15 21:01 loop0 brw------- 1 0 0 7, 1 Apr 15 21:01 loop1 brw------- 1 0 0 7, 2 Apr 15 21:01 loop2 brw------- 1 0 0 7, 3 Apr 15 21:01 loop3 brw------- 1 0 0 7, 4 Apr 15 21:01 loop4 brw------- 1 0 0 7, 5 Apr 15 21:01 loop5 brw------- 1 0 0 7, 6 Apr 15 21:01 loop6 brw------- 1 0 0 7, 7 Apr 15 21:01 loop7 drwxr-xr-x 2 0 0 60 Apr 15 21:01 mapper crw------- 1 0 0 10, 227 Apr 15 21:01 mcelog crw------- 1 0 0 1, 1 Apr 15 21:01 mem drwxr-xr-x 2 0 0 60 Apr 15 21:01 net crw-rw-rw- 1 0 0 1, 3 Apr 15 21:01 null crw------- 1 0 0 10, 144 Apr 15 21:01 nvram crw------- 1 0 0 1, 4 Apr 15 21:01 port crw------- 1 0 0 108, 0 Apr 15 21:01 ppp crw------- 1 0 0 10, 1 Apr 15 21:01 psaux crw-rw-rw- 1 0 0 5, 2 Apr 15 21:01 ptmx drwxr-xr-x 2 0 0 0 Apr 15 21:01 pts crw-rw-rw- 1 0 0 1, 8 Apr 15 21:01 random crw------- 1 0 0 10, 242 Apr 15 21:01 rfkill lrwxrwxrwx 1 0 0 4 Apr 15 21:01 rtc -> rtc0 crw------- 1 0 0 248, 0 Apr 15 21:01 rtc0 brw------- 1 0 0 8, 0 Apr 15 21:01 sda brw------- 1 0 0 8, 16 Apr 15 21:01 sdb crw------- 1 0 0 21, 0 Apr 15 21:01 sg0 crw------- 1 0 0 21, 1 Apr 15 21:01 sg1 drwxrwxrwt 2 0 0 40 Apr 15 21:01 shm crw------- 1 0 0 10, 231 Apr 15 21:01 snapshot drwxr-xr-x 2 0 0 80 Apr 15 21:01 snd crw-rw-rw- 1 0 0 5, 0 Apr 15 21:01 tty crw------- 1 0 0 4, 0 Apr 15 21:01 tty0 crw------- 1 0 0 4, 1 Apr 15 21:01 tty1 crw------- 1 0 0 4, 10 Apr 15 21:01 tty10 crw------- 1 0 0 4, 11 Apr 15 21:01 tty11 crw------- 1 0 0 4, 12 Apr 15 21:01 tty12 crw------- 1 0 0 4, 13 Apr 15 21:01 tty13 crw------- 1 0 0 4, 14 Apr 15 21:01 tty14 crw------- 1 0 0 4, 15 Apr 15 21:01 tty15 crw------- 1 0 0 4, 16 Apr 15 21:01 tty16 crw------- 1 0 0 4, 17 Apr 15 21:01 tty17 crw------- 1 0 0 4, 18 Apr 15 21:01 tty18 crw------- 1 0 0 4, 19 Apr 15 21:01 tty19 crw------- 1 0 0 4, 2 Apr 15 21:01 tty2 crw------- 1 0 0 4, 20 Apr 15 21:01 tty20 crw------- 1 0 0 4, 21 Apr 15 21:01 tty21 crw------- 1 0 0 4, 22 Apr 15 21:01 tty22 crw------- 1 0 0 4, 23 Apr 15 21:01 tty23 crw------- 1 0 0 4, 24 Apr 15 21:01 tty24 crw------- 1 0 0 4, 25 Apr 15 21:01 tty25 crw------- 1 0 0 4, 26 Apr 15 21:01 tty26 crw------- 1 0 0 4, 27 Apr 15 21:01 tty27 crw------- 1 0 0 4, 28 Apr 15 21:01 tty28 crw------- 1 0 0 4, 29 Apr 15 21:01 tty29 crw------- 1 0 0 4, 3 Apr 15 21:01 tty3 crw------- 1 0 0 4, 30 Apr 15 21:01 tty30 crw------- 1 0 0 4, 31 Apr 15 21:01 tty31 crw------- 1 0 0 4, 32 Apr 15 21:01 tty32 crw------- 1 0 0 4, 33 Apr 15 21:01 tty33 crw------- 1 0 0 4, 34 Apr 15 21:01 tty34 crw------- 1 0 0 4, 35 Apr 15 21:01 tty35 crw------- 1 0 0 4, 36 Apr 15 21:01 tty36 crw------- 1 0 0 4, 37 Apr 15 21:01 tty37 crw------- 1 0 0 4, 38 Apr 15 21:01 tty38 crw------- 1 0 0 4, 39 Apr 15 21:01 tty39 crw------- 1 0 0 4, 4 Apr 15 21:01 tty4 crw------- 1 0 0 4, 40 Apr 15 21:01 tty40 crw------- 1 0 0 4, 41 Apr 15 21:01 tty41 crw------- 1 0 0 4, 42 Apr 15 21:01 tty42 crw------- 1 0 0 4, 43 Apr 15 21:01 tty43 crw------- 1 0 0 4, 44 Apr 15 21:01 tty44 crw------- 1 0 0 4, 45 Apr 15 21:01 tty45 crw------- 1 0 0 4, 46 Apr 15 21:01 tty46 crw------- 1 0 0 4, 47 Apr 15 21:01 tty47 crw------- 1 0 0 4, 48 Apr 15 21:01 tty48 crw------- 1 0 0 4, 49 Apr 15 21:01 tty49 crw------- 1 0 0 4, 5 Apr 15 21:01 tty5 crw------- 1 0 0 4, 50 Apr 15 21:01 tty50 crw------- 1 0 0 4, 51 Apr 15 21:01 tty51 crw------- 1 0 0 4, 52 Apr 15 21:01 tty52 crw------- 1 0 0 4, 53 Apr 15 21:01 tty53 crw------- 1 0 0 4, 54 Apr 15 21:01 tty54 crw------- 1 0 0 4, 55 Apr 15 21:01 tty55 crw------- 1 0 0 4, 56 Apr 15 21:01 tty56 crw------- 1 0 0 4, 57 Apr 15 21:01 tty57 crw------- 1 0 0 4, 58 Apr 15 21:01 tty58 crw------- 1 0 0 4, 59 Apr 15 21:01 tty59 crw------- 1 0 0 4, 6 Apr 15 21:01 tty6 crw------- 1 0 0 4, 60 Apr 15 21:01 tty60 crw------- 1 0 0 4, 61 Apr 15 21:01 tty61 crw------- 1 0 0 4, 62 Apr 15 21:01 tty62 crw------- 1 0 0 4, 63 Apr 15 21:01 tty63 crw------- 1 0 0 4, 7 Apr 15 21:01 tty7 crw------- 1 0 0 4, 8 Apr 15 21:01 tty8 crw------- 1 0 0 4, 9 Apr 15 21:01 tty9 crw------- 1 0 0 4, 64 Apr 15 21:01 ttyS0 crw------- 1 0 0 5, 3 Apr 15 21:01 ttyprintk crw------- 1 0 0 10, 124 Apr 15 21:01 udmabuf crw------- 1 0 0 10, 239 Apr 15 21:01 uhid crw------- 1 0 0 10, 223 Apr 15 21:01 uinput crw-rw-rw- 1 0 0 1, 9 Apr 15 21:01 urandom crw------- 1 0 0 10, 126 Apr 15 21:01 userfaultfd crw------- 1 0 0 10, 240 Apr 15 21:01 userio crw------- 1 0 0 7, 0 Apr 15 21:01 vcs crw------- 1 0 0 7, 1 Apr 15 21:01 vcs1 crw------- 1 0 0 7, 128 Apr 15 21:01 vcsa crw------- 1 0 0 7, 129 Apr 15 21:01 vcsa1 crw------- 1 0 0 7, 64 Apr 15 21:01 vcsu crw------- 1 0 0 7, 65 Apr 15 21:01 vcsu1 drwxr-xr-x 2 0 0 60 Apr 15 21:01 vfio crw------- 1 0 0 10, 127 Apr 15 21:01 vga_arbiter crw------- 1 0 0 10, 137 Apr 15 21:01 vhci crw-rw---- 1 0 0 10, 238 Apr 15 21:01 vhost-net crw-rw---- 1 0 0 10, 241 Apr 15 21:01 vhost-vsock drwxr-xr-x 2 0 0 60 Apr 15 21:01 virtio-ports crw------- 1 0 0 242, 1 Apr 15 21:01 vport2p1 crw-rw-rw- 1 0 0 1, 5 Apr 15 21:01 zero crw------- 1 0 0 10, 249 Apr 15 21:01 zfs /dev/block: total 0 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:0 -> ../loop0 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:1 -> ../loop1 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:2 -> ../loop2 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:3 -> ../loop3 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:4 -> ../loop4 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:5 -> ../loop5 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:6 -> ../loop6 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:7 -> ../loop7 lrwxrwxrwx 1 0 0 6 Apr 15 21:01 8:0 -> ../sda lrwxrwxrwx 1 0 0 6 Apr 15 21:01 8:16 -> ../sdb /dev/bsg: total 0 crw------- 1 0 0 243, 0 Apr 15 21:01 0:0:0:0 crw------- 1 0 0 243, 1 Apr 15 21:01 0:0:1:0 /dev/char: total 0 lrwxrwxrwx 1 0 0 6 Apr 15 21:01 108:0 -> ../ppp lrwxrwxrwx 1 0 0 8 Apr 15 21:01 10:1 -> ../psaux lrwxrwxrwx 1 0 0 18 Apr 15 21:01 10:123 -> ../cpu_dma_latency lrwxrwxrwx 1 0 0 10 Apr 15 21:01 10:124 -> ../udmabuf lrwxrwxrwx 1 0 0 11 Apr 15 21:01 10:125 -> ../ecryptfs lrwxrwxrwx 1 0 0 14 Apr 15 21:01 10:126 -> ../userfaultfd lrwxrwxrwx 1 0 0 14 Apr 15 21:01 10:127 -> ../vga_arbiter lrwxrwxrwx 1 0 0 8 Apr 15 21:01 10:183 -> ../hwrng lrwxrwxrwx 1 0 0 10 Apr 15 21:01 10:200 -> ../net/tun lrwxrwxrwx 1 0 0 9 Apr 15 21:01 10:223 -> ../uinput lrwxrwxrwx 1 0 0 9 Apr 15 21:01 10:227 -> ../mcelog lrwxrwxrwx 1 0 0 7 Apr 15 21:01 10:228 -> ../hpet lrwxrwxrwx 1 0 0 7 Apr 15 21:01 10:229 -> ../fuse lrwxrwxrwx 1 0 0 11 Apr 15 21:01 10:231 -> ../snapshot lrwxrwxrwx 1 0 0 17 Apr 15 21:01 10:236 -> ../mapper/control lrwxrwxrwx 1 0 0 15 Apr 15 21:01 10:237 -> ../loop-control lrwxrwxrwx 1 0 0 9 Apr 15 21:01 10:242 -> ../rfkill lrwxrwxrwx 1 0 0 13 Apr 15 21:01 13:63 -> ../input/mice lrwxrwxrwx 1 0 0 15 Apr 15 21:01 13:64 -> ../input/event0 lrwxrwxrwx 1 0 0 15 Apr 15 21:01 13:65 -> ../input/event1 lrwxrwxrwx 1 0 0 6 Apr 15 21:01 1:1 -> ../mem lrwxrwxrwx 1 0 0 7 Apr 15 21:01 1:11 -> ../kmsg lrwxrwxrwx 1 0 0 7 Apr 15 21:01 1:3 -> ../null lrwxrwxrwx 1 0 0 7 Apr 15 21:01 1:4 -> ../port lrwxrwxrwx 1 0 0 7 Apr 15 21:01 1:5 -> ../zero lrwxrwxrwx 1 0 0 7 Apr 15 21:01 1:7 -> ../full lrwxrwxrwx 1 0 0 9 Apr 15 21:01 1:8 -> ../random lrwxrwxrwx 1 0 0 10 Apr 15 21:01 1:9 -> ../urandom lrwxrwxrwx 1 0 0 6 Apr 15 21:01 21:0 -> ../sg0 lrwxrwxrwx 1 0 0 6 Apr 15 21:01 21:1 -> ../sg1 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 242:1 -> ../vport2p1 lrwxrwxrwx 1 0 0 14 Apr 15 21:01 243:0 -> ../bsg/0:0:0:0 lrwxrwxrwx 1 0 0 14 Apr 15 21:01 243:1 -> ../bsg/0:0:1:0 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 248:0 -> ../rtc0 lrwxrwxrwx 1 0 0 18 Apr 15 21:01 249:0 -> ../dma_heap/system lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:0 -> ../tty0 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:1 -> ../tty1 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:10 -> ../tty10 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:11 -> ../tty11 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:12 -> ../tty12 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:13 -> ../tty13 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:14 -> ../tty14 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:15 -> ../tty15 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:16 -> ../tty16 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:17 -> ../tty17 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:18 -> ../tty18 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:19 -> ../tty19 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:2 -> ../tty2 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:20 -> ../tty20 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:21 -> ../tty21 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:22 -> ../tty22 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:23 -> ../tty23 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:24 -> ../tty24 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:25 -> ../tty25 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:26 -> ../tty26 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:27 -> ../tty27 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:28 -> ../tty28 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:29 -> ../tty29 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:3 -> ../tty3 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:30 -> ../tty30 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:31 -> ../tty31 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:32 -> ../tty32 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:33 -> ../tty33 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:34 -> ../tty34 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:35 -> ../tty35 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:36 -> ../tty36 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:37 -> ../tty37 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:38 -> ../tty38 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:39 -> ../tty39 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:4 -> ../tty4 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:40 -> ../tty40 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:41 -> ../tty41 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:42 -> ../tty42 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:43 -> ../tty43 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:44 -> ../tty44 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:45 -> ../tty45 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:46 -> ../tty46 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:47 -> ../tty47 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:48 -> ../tty48 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:49 -> ../tty49 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:5 -> ../tty5 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:50 -> ../tty50 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:51 -> ../tty51 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:52 -> ../tty52 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:53 -> ../tty53 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:54 -> ../tty54 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:55 -> ../tty55 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:56 -> ../tty56 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:57 -> ../tty57 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:58 -> ../tty58 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:59 -> ../tty59 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:6 -> ../tty6 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:60 -> ../tty60 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:61 -> ../tty61 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:62 -> ../tty62 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:63 -> ../tty63 lrwxrwxrwx 1 0 0 8 Apr 15 21:01 4:64 -> ../ttyS0 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:7 -> ../tty7 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:8 -> ../tty8 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 4:9 -> ../tty9 lrwxrwxrwx 1 0 0 6 Apr 15 21:01 5:0 -> ../tty lrwxrwxrwx 1 0 0 10 Apr 15 21:01 5:1 -> ../console lrwxrwxrwx 1 0 0 7 Apr 15 21:01 5:2 -> ../ptmx lrwxrwxrwx 1 0 0 12 Apr 15 21:01 5:3 -> ../ttyprintk lrwxrwxrwx 1 0 0 6 Apr 15 21:01 7:0 -> ../vcs lrwxrwxrwx 1 0 0 7 Apr 15 21:01 7:1 -> ../vcs1 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 7:128 -> ../vcsa lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:129 -> ../vcsa1 lrwxrwxrwx 1 0 0 7 Apr 15 21:01 7:64 -> ../vcsu lrwxrwxrwx 1 0 0 8 Apr 15 21:01 7:65 -> ../vcsu1 /dev/disk: total 0 drwxr-xr-x 2 0 0 240 Apr 15 21:01 by-diskseq drwxr-xr-x 2 0 0 80 Apr 15 21:01 by-id drwxr-xr-x 2 0 0 80 Apr 15 21:01 by-path drwxr-xr-x 2 0 0 80 Apr 15 21:01 by-uuid /dev/disk/by-diskseq: total 0 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 1 -> ../../loop0 lrwxrwxrwx 1 0 0 9 Apr 15 21:01 10 -> ../../sdb lrwxrwxrwx 1 0 0 11 Apr 15 21:01 2 -> ../../loop1 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 3 -> ../../loop2 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 4 -> ../../loop3 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 5 -> ../../loop4 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 6 -> ../../loop5 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 7 -> ../../loop6 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 8 -> ../../loop7 lrwxrwxrwx 1 0 0 9 Apr 15 21:01 9 -> ../../sda /dev/disk/by-id: total 0 lrwxrwxrwx 1 0 0 9 Apr 15 21:01 scsi-0QEMU_QEMU_HARDDISK_appliance -> ../../sdb lrwxrwxrwx 1 0 0 9 Apr 15 21:01 scsi-0QEMU_QEMU_HARDDISK_hd0 -> ../../sda /dev/disk/by-path: total 0 lrwxrwxrwx 1 0 0 9 Apr 15 21:01 pci-0000:00:02.0-scsi-0:0:0:0 -> ../../sda lrwxrwxrwx 1 0 0 9 Apr 15 21:01 pci-0000:00:02.0-scsi-0:0:1:0 -> ../../sdb /dev/disk/by-uuid: total 0 lrwxrwxrwx 1 0 0 9 Apr 15 21:01 78b3f466-a5be-49b7-997f-e3fe9c6822ce -> ../../sda lrwxrwxrwx 1 0 0 9 Apr 15 21:01 8e46b281-78e2-4925-be4a-aad975191a4f -> ../../sdb /dev/dma_heap: total 0 crw------- 1 0 0 249, 0 Apr 15 21:01 system /dev/input: total 0 drwxr-xr-x 2 0 0 60 Apr 15 21:01 by-path crw------- 1 0 0 13, 64 Apr 15 21:01 event0 crw------- 1 0 0 13, 65 Apr 15 21:01 event1 crw------- 1 0 0 13, 63 Apr 15 21:01 mice /dev/input/by-path: total 0 lrwxrwxrwx 1 0 0 9 Apr 15 21:01 platform-i8042-serio-0-event-kbd -> ../event1 /dev/mapper: total 0 crw------- 1 0 0 10, 236 Apr 15 21:01 control /dev/net: total 0 crw-rw-rw- 1 0 0 10, 200 Apr 15 21:01 tun /dev/pts: total 0 c--------- 1 0 0 5, 2 Apr 15 21:01 ptmx /dev/shm: total 0 /dev/snd: total 0 crw------- 1 0 0 116, 1 Apr 15 21:01 seq crw------- 1 0 0 116, 33 Apr 15 21:01 timer /dev/vfio: total 0 crw-rw-rw- 1 0 0 10, 196 Apr 15 21:01 vfio /dev/virtio-ports: total 0 lrwxrwxrwx 1 0 0 11 Apr 15 21:01 org.libguestfs.channel.0 -> ../vport2p1 + cat /proc/mounts /dev/root / ext2 rw,noatime 0 0 /proc /proc proc rw,relatime 0 0 /sys /sys sysfs rw,relatime 0 0 /dev /dev devtmpfs rw,relatime,size=615564k,nr_inodes=153891,mode=755,inode64 0 0 /dev/pts /dev/pts devpts rw,relatime,mode=600,ptmxmode=000 0 0 shmfs /dev/shm tmpfs rw,relatime,inode64 0 0 tmpfs /run tmpfs rw,nosuid,relatime,size=248244k,mode=755,inode64 0 0 + cat /proc/mdstat Personalities : unused devices: <none> + lvm config + lvm pvs + lvm vgs + lvm lvs + ip a 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 inet 127.0.0.1/8 brd 127.255.255.255 scope host lo valid_lft forever preferred_lft forever inet6 ::1/128 scope host valid_lft forever preferred_lft forever 2: eth0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000 link/ether 52:54:00:12:34:56 brd ff:ff:ff:ff:ff:ff + ip r + cat /etc/resolv.conf cat: /etc/resolv.conf: No such file or directory + lsmod Module Size Used by + date Tue Apr 15 21:01:59 UTC 2025 + echo -n 'clocksource: ' clocksource: + cat /sys/devices/system/clocksource/clocksource0/current_clocksource kvm-clock + echo -n 'uptime: ' uptime: + cat /proc/uptime 13.04 11.00 + cmd=guestfsd ++ grep -Eo 'guestfs_channel=[^[:space:]]+' /proc/cmdline + eval + test x '!=' x + test 1 = 1 + cmd='guestfsd --verbose' + test 1 = 1 + cmd='guestfsd --verbose --network' + false + test '' = 1 + echo guestfsd --verbose --network guestfsd --verbose --network + guestfsd --verbose --network lvm_system_dir = /tmp/lvm OCaml daemon loaded commandrvf: stdout=y stderr=y flags=0x0 commandrvf: ls -1v /dev/disk/by-path commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sdb No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available trying to open virtio-serial channel '/dev/virtio-ports/org.libguestfs.channel.0' commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: recv_from_daemon: received GUESTFS_LAUNCH_FLAG libguestfs: appliance is up libguestfs: trace: launch = 0 libguestfs: trace: c_pointer libguestfs: trace: c_pointer = 94770471397104 libguestfs: trace: list_partitions guestfsd: <= list_partitions (0x8) request length 40 bytes command: ls '-1v' '/dev/disk/by-path' command: ls returned 0 command: ls: stdout: pci-0000:00:02.0-scsi-0:0:0:0 pci-0000:00:02.0-scsi-0:0:1:0 commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sdb No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: trace: list_partitions = [] libguestfs: trace: feature_available "lvm2" libguestfs: trace: internal_feature_available "lvm2" guestfsd: => list_partitions (0x8) took 0.01 secs guestfsd: <= internal_feature_available (0x1ca) request length 48 bytes libguestfs: trace: internal_feature_available = 0 libguestfs: trace: feature_available = 1 libguestfs: trace: lvs guestfsd: => internal_feature_available (0x1ca) took 0.00 secs guestfsd: <= lvs (0xb) request length 40 bytes command: lvm 'lvs' '--help' command: lvm returned 0 command: lvm: stdout: lvs - Display information about logical volumes lvs \t[ -H|--history ] \t[ -a|--all ] \t[ -o|--options String ] \t[ -S|--select String ] \t[ -O|--sort String ] \t[ --segments ] \t[ --aligned ] \t[ --binary ] \t[ --configreport log|vg|lv|pv|pvseg|seg ] \t[ --foreign ] \t[ --ignorelockingfailure ] \t[ --logonly ] \t[ --nameprefixes ] \t[ --noheadings ] \t[ --nosuffix ] \t[ --readonly ] \t[ --reportformat basic|json ] \t[ --rows ] \t[ --separator String ] \t[ --shared ] \t[ --unbuffered ] \t[ --units [Number]r|R|h|H|b|B|s|S|k|K|m|M|g|G|t|T|p|P|e|E ] \t[ --unquoted ] \t[ COMMON_OPTIONS ] \t[ VG|LV|Tag ... ] Common options for lvm: \t[ -d|--debug ] \t[ -h|--help ] \t[ -q|--quiet ] \t[ -v|--verbose ] \t[ -y|--yes ] \t[ -t|--test ] \t[ --commandprofile String ] \t[ --config String ] \t[ --driverloaded y|n ] \t[ --nolocking ] \t[ --lockopt String ] \t[ --longhelp ] \t[ --profile String ] \t[ --version ] \t[ --devicesfile String ] \t[ --devices PV ] \t[ --nohints ] \t[ --journal String ] Use --longhelp to show all options and advanced commands. command: lvm 'lvs' '-o' 'vg_name,lv_name' '-S' 'lv_role=public && lv_skip_activation!=yes' '--noheadings' '--separator' '/' libguestfs: trace: lvs = [] libguestfs: trace: inspect_os guestfsd: => lvs (0xb) took 0.05 secs guestfsd: <= inspect_os (0x1e0) request length 40 bytes command: lvm returned 0 command: ls '-1v' '/dev/disk/by-path' command: ls returned 0 command: ls: stdout: pci-0000:00:02.0-scsi-0:0:0:0 pci-0000:00:02.0-scsi-0:0:1:0 commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sdb No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available command: blkid '-c' '/dev/null' '-o' 'value' '-s' 'TYPE' '/dev/sda' command: blkid returned 0 command: blkid: stdout: ext4 command: ls '-1v' '/dev/disk/by-path' command: ls returned 0 command: ls: stdout: pci-0000:00:02.0-scsi-0:0:0:0 pci-0000:00:02.0-scsi-0:0:1:0 commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sdb No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available command: lvm 'lvs' '-o' 'vg_name,lv_name' '-S' 'lv_role=public && lv_skip_activation!=yes' '--noheadings' '--separator' '/' command: lvm returned 0 check_for_filesystem_on: /dev/sda (ext4) command: mount '-o' 'ro' '/dev/sda' '/sysroot//' [ 13.468073] EXT4-fs (sda): mounted filesystem 78b3f466-a5be-49b7-997f-e3fe9c6822ce ro with ordered data mode. Quota mode: none. command: mount returned 0 chroot: /sysroot: running 'is_file: /grub/menu.lst' chroot: /sysroot: running 'is_file: /grub/grub.conf' chroot: /sysroot: running 'is_file: /grub2/grub.cfg' chroot: /sysroot: running 'is_dir: /etc' chroot: /sysroot: running 'is_dir: /bin' chroot: /sysroot: running 'is_dir: /etc' chroot: /sysroot: running 'is_dir: /bin' chroot: /sysroot: running 'is_dir: /etc' chroot: /sysroot: running 'is_dir: /bin' chroot: /sysroot: running 'is_file: /hurd/console' chroot: /sysroot: running 'is_dir: /etc' chroot: /sysroot: running 'is_dir: /bin' chroot: /sysroot: running 'is_dir: /etc' chroot: /sysroot: running 'is_dir: /bin' chroot: /sysroot: running 'is_symlink: /bin' chroot: /sysroot: running 'readlink: /bin' chroot: /sysroot: running 'is_file: /etc/fstab' check_filesystem: /dev/sda matched Linux root check_tests: checking /etc/os-release chroot: /sysroot: running 'is_file: /etc/os-release' chroot: /sysroot: running 'parse_os_release' parse_version_from_major_minor: parsing '24.04' chroot: /sysroot: running 'is_file: /bin/bash' chroot: /sysroot: running 'realpath: /bin/bash' commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /usr/bin/bash No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available chroot: /sysroot: running 'file: /usr/bin/bash' command: file '--help' command: file returned 0 command: file: stdout: Usage: file [OPTION...] [FILE...] Determine type of FILEs. --help display this help and exit -v, --version output version information and exit -m, --magic-file LIST use LIST as a colon-separated list of magic number files -z, --uncompress try to look inside compressed files -Z, --uncompress-noreport only print the contents of compressed files -b, --brief do not prepend filenames to output lines -c, --checking-printout print the parsed form of the magic file, use in conjunction with -m to debug a new magic file before installing it -e, --exclude TEST exclude TEST from the list of test to be performed for file. Valid tests are: apptype, ascii, cdf, compress, csv, elf, encoding, soft, tar, json, simh, text, tokens --exclude-quiet TEST like exclude, but ignore unknown tests -f, --files-from FILE read the filenames to be examined from FILE -F, --separator STRING use string as separator instead of `:' -i, --mime output MIME type strings (--mime-type and --mime-encoding) --apple output the Apple CREATOR/TYPE --extension output a slash-separated list of extensions --mime-type output the MIME type --mime-encoding output the MIME encoding -k, --keep-going don't stop at the first match -l, --list list magic strength -L, --dereference follow symlinks (default if POSIXLY_CORRECT is set) -h, --no-dereference don't follow symlinks (default if POSIXLY_CORRECT is not set) (default) -n, --no-buffer do not buffer output -N, --no-pad do not pad output -0, --print0 terminate filenames with ASCII NUL -p, --preserve-date preserve access times on files -P, --parameter set file engine parameter limits bytes 7340032 max bytes to look inside file elf_notes 256 max ELF notes processed elf_phnum 2048 max ELF prog sections processed elf_shnum 32768 max ELF sections processed elf_shsize 134217728 max ELF section size encoding 65536 max bytes to scan for encoding indir 50 recursion limit for indirection name 50 use limit for name/use magic regex 8192 length limit for REGEX searches -r, --raw don't translate unprintable chars to \ooo -s, --special-files treat special (block/char devices) files as ordinary ones -S, --no-sandbox disable system call sandboxing -C, --compile compile file specified by -m -d, --debug print debugging messages Report bugs to https://bugs.astron.com/ command: file '-zSb' '/sysroot//usr/bin/bash' command: file returned 0 command: file: stdout: ELF 64-bit LSB pie executable, x86-64, version 1 (SYSV), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=2f77b36371c214e11670c7d9d92727e9a49f626b, for GNU/Linux 3.2.0, stripped chroot: /sysroot: running 'is_file: /etc/fstab' chroot: /sysroot: running 'check_fstab_aug' chroot: /sysroot: running 'is_file: /etc/mdadm.conf' chroot: /sysroot: running 'is_file: /etc/mdadm/mdadm.conf' chroot: /sysroot: running 'check_fstab_aug' augeas pathexpr = /augeas/load/*[ "/etc/fstab/" !~ regexp('^') + glob(incl) + regexp('/.*') and "/etc/mdadm/mdadm.conf/" !~ regexp('^') + glob(incl) + regexp('/.*') ] check_fstab_entry: augeas path: /files/etc/fstab/1 check_fstab_entry: spec=LABEL=cloudimg-rootfs check_fstab_entry: mp=/ command: findfs 'LABEL=cloudimg-rootfs' command: findfs returned 1 command: findfs: stderr: findfs: unable to resolve 'LABEL=cloudimg-rootfs' chroot: /sysroot: running 'check_hostname_from_file: /etc/HOSTNAME' chroot: /sysroot: running 'check_hostname_from_file: /etc/hostname' command: umount '/sysroot' [ 13.927500] EXT4-fs (sda): unmounting filesystem 78b3f466-a5be-49b7-997f-e3fe9c6822ce. command: umount returned 0 inspect_os: fses: fs: /dev/sda (ext4) role: root type: linux distro: ubuntu package_format: deb package_management: apt product_name: Ubuntu 24.04.2 LTS version: 24.4 arch: x86_64 hostname: ubuntu inspect_get_roots: roots: /dev/sda (ext4): type: linux distro: ubuntu package_format: deb package_management: apt product_name: Ubuntu 24.04.2 LTS version: 24.4 arch: x86_64 hostname: ubuntu guestfsd: => inspect_os (0x1e0) took 0.libguestfs: trace: inspect_os = ["/dev/sda"] libguestfs: trace: inspect_get_mountpoints "/dev/sda" 54 secs guestfsd: <= inspect_get_mountpoints (0x1f4) request length 52 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: trace: inspect_get_mountpoints = ["/", "/dev/sda"] libguestfs: trace: mount "/dev/sda" "/" guestfsd: => inspect_get_mountpoints (0x1f4) took 0.00 secs guestfsd: <= mount (0x1) request length 60 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available command: mount '/dev/sda' '/sysroot//' [ 13.974020] EXT4-fs (sda): mounted filesystem 78b3f466-a5be-49b7-997f-e3fe9c6822ce r/w with ordered data mode. Quota mode: none. guestfsd: => mount (0x1) took 0.02 secs libguestfs: trace: mount = 0 libguestfs: trace: inspect_get_type "/dev/sda" guestfsd: <= inspect_get_type (0x1e3) request length 52 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: trace: inspect_get_type = "linux" libguestfs: trace: is_dir "/tmp" "followsymlinks:true" guestfsd: => inspect_get_type (0x1e3) took 0.00 secs guestfsd: <= is_dir (0x26) request length 52 bytes command: mount returned 0 chroot: /sysroot: running 'is_dir: /tmp' libguestfs: trace: is_dir = 1 [ 14.5] Setting a random seed libguestfs: trace: inspect_get_type "/dev/sda" guestfsd: => is_dir (0x26) took 0.00 secs guestfsd: <= inspect_get_type (0x1e3) request length 52 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: trace: inspect_get_type = "linux" libguestfs: trace: is_file "/var/lib/random-seed" guestfsd: => inspect_get_type (0x1e3) took 0.01 secs guestfsd: <= is_file (0x25) request length 68 bytes chroot: /sysroot: running 'is_file: /var/lib/random-seed' libguestfs: trace: is_file = 0 libguestfs: trace: is_file "/var/lib/systemd/random-seed" guestfsd: => is_file (0x25) took 0.00 secs guestfsd: <= is_file (0x25) request length 76 bytes chroot: /sysroot: running 'is_file: /var/lib/systemd/random-seed' libguestfs: trace: is_file = 0 libguestfs: trace: is_file "/var/lib/urandom/random-seed" guestfsd: => is_file (0x25) took 0.00 secs guestfsd: <= is_file (0x25) request length 76 bytes chroot: /sysroot: running 'is_file: /var/lib/urandom/random-seed' libguestfs: trace: is_file = 0 libguestfs: trace: is_file "/var/lib/misc/random-seed" guestfsd: => is_file (0x25) took 0.00 secs guestfsd: <= is_file (0x25) request length 76 bytes chroot: /sysroot: running 'is_file: /var/lib/misc/random-seed' libguestfs: trace: is_file = 0 libguestfs: trace: is_file "/etc/random-seed" guestfsd: => is_file (0x25) took 0.00 secs guestfsd: <= is_file (0x25) request length 64 bytes chroot: /sysroot: running 'is_file: /etc/random-seed' libguestfs: trace: is_file = 0 libguestfs: trace: inspect_get_distro "/dev/sda" guestfsd: => is_file (0x25) took 0.00 secs guestfsd: <= inspect_get_distro (0x1e4) request length 52 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: trace: inspect_get_distro = "ubuntu" libguestfs: trace: is_dir "/var/lib/urandom" guestfsd: => inspect_get_distro (0x1e4) took 0.00 secs guestfsd: <= is_dir (0x26) request length 64 bytes chroot: /sysroot: running 'is_dir: /var/lib/urandom' libguestfs: trace: is_dir = 0 virt-customize: warning: random seed could not be set for this type of guest libguestfs: trace: lstatns "/etc/machine-id" guestfsd: => is_dir (0x26) took 0.00 secs guestfsd: <= lstatns (0x1a6) request length 60 bytes libguestfs: trace: lstatns = <struct guestfs_statns = st_dev: 2048, st_ino: 804, st_mode: 33060, st_nlink: 1, st_uid: 0, st_gid: 0, st_rdev: 0, st_size: 33, st_blksize: 4096, st_blocks: 8, st_atime_sec: 1744750865, st_atime_nsec: 999000000, st_mtime_sec: 1744750905, st_mtime_nsec: 742000000, st_ctime_sec: 1744750905, st_ctime_nsec: 742000000, st_spare1: 0, st_spare2: 0, st_spare3: 0, st_spare4: 0, st_spare5: 0, st_spare6: 0, > [ 14.6] Running: apt update && apt upgrade -y libguestfs: trace: inspect_get_arch "/dev/sda" guestfsd: => lstatns (0x1a6) took 0.00 secs guestfsd: <= inspect_get_arch (0x1eb) request length 52 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available libguestfs: trace: inspect_get_arch = "x86_64" running command: exec >>'/tmp/builder.log' 2>&1 apt update && apt upgrade -y libguestfs: trace: sh "exec >>'/tmp/builder.log' 2>&1\n\n\napt update && apt upgrade -y\n" guestfsd: => inspect_get_arch (0x1eb) took 0.00 secs guestfsd: <= sh (0x6f) request length 108 bytes commandrvf: stdout=n stderr=n flags=0x0 commandrvf: mount --bind /dev /sysroot/dev commandrvf: stdout=n stderr=n flags=0x0 commandrvf: mount --bind /dev/pts /sysroot/dev/pts commandrvf: stdout=n stderr=n flags=0x0 commandrvf: mount --bind /proc /sysroot/proc commandrvf: stdout=n stderr=n flags=0x0 commandrvf: mount --bind /sys/fs/selinux /sysroot/selinux mount: /sysroot/selinux: mount point does not exist. dmesg(1) may have more information after failed mount system call. commandrvf: stdout=n stderr=n flags=0x0 commandrvf: mount --bind /sys /sysroot/sys commandrvf: stdout=n stderr=n flags=0x0 commandrvf: mount --bind /sys/fs/selinux /sysroot/sys/fs/selinux mount: /sysroot/sys/fs/selinux: mount point does not exist. dmesg(1) may have more information after failed mount system call. renaming /sysroot/etc/resolv.conf to /sysroot/etc/dj7tnhul commandrvf: stdout=n stderr=n flags=0x0 commandrvf: cp /etc/resolv.conf /sysroot/etc/resolv.conf cp: cannot stat '/etc/resolv.conf': No such file or directory commandrvf: stdout=y stderr=y flags=0x40000 commandrvf: /bin/sh -c "exec >>'/tmp/builder.log' 2>&1 apt update && apt upgrade -y " commandrvf: stdout=n stderr=n flags=0x0 commandrvf: umount /sysroot/sys commandrvf: stdout=n stderr=n flags=0x0 commandrvf: umount /sysroot/proc commandrvf: stdout=n stderr=n flags=0x0 commandrvf: umount /sysroot/dev/pts commandrvf: stdout=n stderr=n flags=0x0 commandrvf: umount /sysroot/dev renaming /sysroot/etc/dj7tnhul to /sysroot/etc/resolv.conf guestfsd: error: guestfsd: => sh (0x6f) took 0.87 secs libguestfs: trace: sh = NULL (error) libguestfs: trace: download "/tmp/builder.log" "/dev/stderr" guestfsd: <= download (0x43) request length 60 bytes commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /tmp/builder.log No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /tmp/builder.log No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available WARNING: apt does not have a stable CLI interface. Use with caution in scripts. Ign:1 http://archive.ubuntu.com/ubuntu noble InRelease Ign:2 http://archive.ubuntu.com/ubuntu noble-updates InRelease Ign:3 http://archive.ubuntu.com/ubuntu noble-backports InRelease Ign:4 http://security.ubuntu.com/ubuntu noble-security InRelease Err:5 http://security.ubuntu.com/ubuntu noble-security Release Cannot initiate the connection to 172.19.106.252:40645 (172.19.106.252). - connect (101: Network is unreachable) Err:6 http://archive.ubuntu.com/ubuntu noble Release Cannot initiate the connection to 172.19.106.252:40645 (172.19.106.252). - connect (101: Network is unreachable) Err:7 http://archive.ubuntu.com/ubuntu noble-updates Release Cannot initiate the connection to 172.19.106.252:40645 (172.19.106.252). - connect (101: Network is unreachable) Err:8 http://archive.ubuntu.com/ubuntu noble-backports Release Cannot initiate the connection to 172.19.106.252:40645 (172.19.106.252). - connect (101: Network is unreachable) Reading package lists... E: The repository 'http://security.ubuntu.com/ubuntu noble-security Release' no longer has a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu noble Release' no longer has a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu noble-updates Release' no longer has a Release file. E: The repository 'http://archive.ubuntu.com/ubuntu noble-backports Release' does not have a Release file. libguestfs: trace: download = 0 virt-customize: error: apt update && apt upgrade -y: command exited with an error libguestfs: trace: close libguestfs: closing guestfs handle 0x5631784866f0 (state 2) libguestfs: trace: internal_autosync guestfsd: => download (0x43) took 0.02 secs guestfsd: <= internal_autosync (0x11a) request length 40 bytes umount-all: /proc/mounts: fsname=/dev/root dir=/ type=ext2 opts=rw,noatime freq=0 passno=0 umount-all: /proc/mounts: fsname=/proc dir=/proc type=proc opts=rw,relatime freq=0 passno=0 umount-all: /proc/mounts: fsname=/sys dir=/sys type=sysfs opts=rw,relatime freq=0 passno=0 umount-all: /proc/mounts: fsname=/dev dir=/dev type=devtmpfs opts=rw,relatime,size=615564k,nr_inodes=153891,mode=755,inode64 freq=0 passno=0 umount-all: /proc/mounts: fsname=/dev/pts dir=/dev/pts type=devpts opts=rw,relatime,mode=600,ptmxmode=000 freq=0 passno=0 umount-all: /proc/mounts: fsname=shmfs dir=/dev/shm type=tmpfs opts=rw,relatime,inode64 freq=0 passno=0 umount-all: /proc/mounts: fsname=tmpfs dir=/run type=tmpfs opts=rw,nosuid,relatime,size=248244k,mode=755,inode64 freq=0 passno=0 umount-all: /proc/mounts: fsname=/dev/sda dir=/sysroot type=ext4 opts=rw,relatime freq=0 passno=0 commandrvf: stdout=n stderr=y flags=0x0 commandrvf: umount /sysroot [ 15.227686] EXT4-fs (sda): unmounting filesystem 78b3f466-a5be-49b7-997f-e3fe9c6822ce. commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sdb No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available commandrvf: stdout=n stderr=y flags=0x0 commandrvf: udevadm --debug settle -E /dev/sda No filesystem is currently mounted on /sys/fs/cgroup. Failed to determine unit we run in, ignoring: No data available fsync /dev/sda guestfsd: => internal_autosync (0x11a) took 0libguestfs: trace: internal_autosync = 0 libguestfs: sending SIGTERM to process 17720 libguestfs: qemu maxrss 399708K libguestfs: command: run: rm libguestfs: command: run: \ -rf /tmp/libguestfsHYSvh8 libguestfs: command: run: rm libguestfs: command: run: \ -rf /run/user/1000/libguestfsRqcEyQ make: *** [Makefile:644: rootfs.ext4] Error 1