Repository: GitHub

QEMU can redirect a guest VM’s console output to a log file on the host from the moment the guest VM operating system starts to emit output to its console device. QEMU also has a monitor service that can be used to interact with the guest VM directly. The monitor service allows us to not only interrogate the VM but also to control it and create and restore snapshots and many more things. In this article we show how to enable and use these capabilities. Additionally we illustrate how to enable QEMU level debugging and immediately suspend the VM immediately after it is started.

1. Rationale

When QEMU was upgraded to v7.0.0 for the use of Podman on macOS on the new Apple silicon (M1) some users reported that their host MacBook crashed immediately after starting th Podman managed machine (VM). But not everyone on the M1 Mac’s had this issue.

When the Podman machine was sized to not more than 3GB for memory there were not any issues. But when the memory size was changed to more than this then the Podman machine would not start. The Podman project implemented a change to correct this due to the following recommendation Cannot start machine with podman version 4.1.0 in M1 Mac #14303 and fixed by Fix M1 QEMU flags #14563 but then only certain types of M1 Mac’s started crashing. This behavior occurred not only on Podman 4.1.0 but also on 3.4.4.

The reports of host crashes were not always consistent across the macOS version and specific hardware. For example The M1 Mac Mini and M1 MacBook Pro never seemed to have an issue with regards to the host crashing. However the M1 MacBook Pro Max consistently crashed.

With this in mind it became necessary to acquire as much information as possible before the host actually crashed.

It turned out that upgrading M1 MacBook Pro (Max or not) to macOS 12.4 resolved the host crashes and with the Podman fix.

2. How to Enable

We enable all of these things by adding the following to the QEMU command line when starting up the guest:

  -serial chardev:s0                                             (1)
  -chardev stdio,id=s0,mux=on,logfile=qemu-s0.log,signal=off     (2)
  -D qemu-debug.log                                              (3)
  -d cpu_reset,int,guest_errors,mmu,unimp,plugin,strace,page     (4)
  -monitor unix:qemu-monitor.sock,server,nowait                  (5)
  -S                                                             (6)
1 Redirects the serial port to the character device s0
2 Connects to the standard I/O character device s0 and directs it to the log file qemu-s0.log
3 Directs all QEMU debug output to qemu-debug.log
4 QEMU debug output to enable
5 Redirects the QEMU monitor to the Unix socket qemu-monitor.sock enabling console interaction and inspection of the VM
6 Immediately suspends the VM upon start

Try using -chardev file,id=s0,path=qemu-s0.log

3. Interacting with the QEMU VM

First and foremost we require a tool called socat which is a multipurpose relay tool (SO*cket *CAT). To install:

Install socat:

Listing 1. MacOS
brew install socat
Listing 2. Ubuntu
apt install -y socat
Listing 3. Fedora / RHEL
dnf install -y socat

socat is already installed on Fedora CoreOS

3.1. Connecting to the QEMU Monitor

Then connect once the guest is started:

socat -,echo=0,icanon=0 unix-connect:qemu-monitor.sock

And we will be immediately presented with:

QEMU 7.0.0 monitor - type 'help' for more information
(qemu)

3.2. Fundamental QEMU Monitor Commands

The QEMU monitor CLI is tab completion enabled.

Listing 4. Resume the VM
(qemu) c     (1)
1 cont can alternatively be used
Listing 5. Suspend the VM
(qemu) s     (1)
1 stop can alternatively be used
Listing 6. Quit the Monitor
(qemu) CTRL+C     (1)
1 Quits the monitor without terminating the VM, note that this is a keyboard sequence and not a command
Listing 7. Terminate the VM and Quit the Monitor
(qemu) q     (1)
1 quit can alternatively be used

3.3. Useful VM Information Interrogation

Listing 8. Show Block Devices
(qemu) info block
pflash0 (#block169): /opt/homebrew/share/qemu/edk2-aarch64-code.fd (raw, read-only)
    Attached to:      /machine/virt.flash0
    Cache mode:       writeback

pflash1 (#block380): /Users/cpolizzi/.local/share/containers/podman/machine/qemu/podman-machine-default_ovmf_vars.fd (raw)
    Attached to:      /machine/virt.flash1
    Cache mode:       writeback

virtio0 (#block523): /Users/cpolizzi/.local/share/containers/podman/machine/qemu/podman-machine-default_fedora-coreos-36.20220511.dev.0-qemu.aarch64.qcow2 (qcow2)
    Attached to:      /machine/peripheral-anon/device[4]/virtio-backend
    Cache mode:       writeback

floppy0: [not inserted]
    Removable device: not locked, tray closed

sd0: [not inserted]
    Removable device: not locked, tray closed
Listing 9. Show Block Device Statistics
(qemu) info blockstats
pflash0: rd_bytes=0 wr_bytes=0 rd_operations=0 wr_operations=0 flush_operations=0 wr_total_time_ns=0 rd_total_time_ns=0 flush_total_time_ns=0 rd_merged=0 wr_merged=0 idle_time_ns=0
pflash1: rd_bytes=0 wr_bytes=0 rd_operations=0 wr_operations=0 flush_operations=0 wr_total_time_ns=0 rd_total_time_ns=0 flush_total_time_ns=0 rd_merged=0 wr_merged=0 idle_time_ns=0
virtio0: rd_bytes=275011584 wr_bytes=18518016 rd_operations=9351 wr_operations=1255 flush_operations=181 wr_total_time_ns=273603000 rd_total_time_ns=261581000 flush_total_time_ns=49973000 rd_merged=61 wr_merged=4 idle_time_ns=213930526000
floppy0: rd_bytes=0 wr_bytes=0 rd_operations=0 wr_operations=0 flush_operations=0 wr_total_time_ns=0 rd_total_time_ns=0 flush_total_time_ns=0 rd_merged=0 wr_merged=0 idle_time_ns=0
sd0: rd_bytes=0 wr_bytes=0 rd_operations=0 wr_operations=0 flush_operations=0 wr_total_time_ns=0 rd_total_time_ns=0 flush_total_time_ns=0 rd_merged=0 wr_merged=0 idle_time_ns=0
Listing 10. Show Character Devices
(qemu) info chardev
parallel0: filename=vc
compat_monitor1: filename=unix:qemu-monitor.sock,server=on
s0: filename=mux
podman-machine-default_ready: filename=unix:/var/folders/77/qk6_53m11yb7t885qf6d32jw0000gn/T/podman/podman-machine-default_ready.sock,server=on
compat_monitor0: filename=disconnected:unix://var/folders/77/qk6_53m11yb7t885qf6d32jw0000gn/T/podman/qmp_podman-machine-default.sock,server=on
s0-base: filename=stdio
Listing 11. Show Network State
(qemu) info network
virtio-net-pci.0: index=0,type=nic,model=virtio-net-pci,macaddr=5a:94:ef:e4:0c:ee
 \ vlan: index=0,type=socket,socket: fd=3
Listing 12. Show PCI Devices
(qemu) info pci
  Bus  0, device   0, function 0:
    Host bridge: PCI device 1b36:0008
      PCI subsystem 1af4:1100
      id ""
  Bus  0, device   1, function 0:
    Ethernet controller: PCI device 1af4:1000
      PCI subsystem 1af4:0001
      IRQ 255, pin A
      BAR0: I/O at 0x10c0 [0x10df].
      BAR1: 32 bit memory at 0x10050000 [0x10050fff].
      BAR4: 64 bit prefetchable memory at 0x10040000 [0x10043fff].
      BAR6: 32 bit memory at 0xffffffffffffffff [0x0003fffe].
      id ""
  Bus  0, device   2, function 0:
    Class 1920: PCI device 1af4:1003
      PCI subsystem 1af4:0003
      IRQ 255, pin A
      BAR0: I/O at 0x1080 [0x10bf].
      BAR1: 32 bit memory at 0x10051000 [0x10051fff].
      BAR4: 64 bit prefetchable memory at 0x10044000 [0x10047fff].
      id ""
  Bus  0, device   3, function 0:
    Class 0002: PCI device 1af4:1009
      PCI subsystem 1af4:0009
      IRQ 255, pin A
      BAR0: I/O at 0x10e0 [0x10ff].
      BAR1: 32 bit memory at 0x10052000 [0x10052fff].
      BAR4: 64 bit prefetchable memory at 0x10048000 [0x1004bfff].
      id ""
  Bus  0, device   4, function 0:
    SCSI controller: PCI device 1af4:1001
      PCI subsystem 1af4:0002
      IRQ 255, pin A
      BAR0: I/O at 0x1000 [0x107f].
      BAR1: 32 bit memory at 0x10053000 [0x10053fff].
      BAR4: 64 bit prefetchable memory at 0x1004c000 [0x1004ffff].
      id ""

4. Fedora CoreOS Guest VM Console Log

For those that are curious what do we see when we enable logging of the QEMU guest console output to a log file? This is the console output of Fedora CoreOS from the moment that it started to boot in the guest.

[=3hBdsDxe: loading Boot0008 "Fedora" from HD(2,GPT,EF9F4284-128A-4E75-B798-164876AED331,0x1000,0x3F800)/\EFI\fedora\shimaa64.efi
BdsDxe: starting Boot0008 "Fedora" from HD(2,GPT,EF9F4284-128A-4E75-B798-164876AED331,0x1000,0x3F800)/\EFI\fedora\shimaa64.efi
error: ../../grub-core/term/serial.c:217:serial port `com0' isn't found.

error: ../../grub-core/commands/terminal.c:138:terminal `serial' isn't found.

error: ../../grub-core/commands/terminal.c:138:terminal `serial' isn't found.

GRUB version 2.06


/----------------------------------------------------------------------------\||||||||||||||||||||||||\----------------------------------------------------------------------------/     Use the ^ and v keys to select which entry is highlighted.          

      Press enter to boot the selected OS, `e' to edit the commands       

      before booting or `c' for a command-line. ESC to return previous    

      menu.                                                                *Fedora CoreOS 36.20220511.dev.0 (ostree:0)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         The highlighted entry will be executed automatically in 1s.                    The highlighted entry will be executed automatically in 0s.                   Booting `Fedora CoreOS 36.20220511.dev.0 (ostree:0)'


EFI stub: Booting Linux Kernel...
EFI stub: EFI_RNG_PROTOCOL unavailable
EFI stub: Using DTB from configuration table
EFI stub: Exiting boot services...
[    0.000000] Booting Linux on physical CPU 0x0000000000 [0x00000000]
[    0.000000] Linux version 5.17.5-300.fc36.aarch64 (mockbuild@buildvm-a64-08.iad2.fedoraproject.org) (gcc (GCC) 12.0.1 20220413 (Red Hat 12.0.1-0), GNU ld version 2.37-24.fc36) #1 SMP Thu Apr 28 15:22:08 UTC 2022
[    0.000000] efi: EFI v2.70 by EDK II
[    0.000000] efi: SMBIOS 3.0=0x1bf700000 MEMATTR=0x1bcf00698 ACPI 2.0=0x1bbf70018 MOKvar=0x1bbe90000 MEMRESERVE=0x1bc371118 
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000001BBF70018 000024 (v02 BOCHS )
[    0.000000] ACPI: XSDT 0x00000001BBF7FE98 000064 (v01 BOCHS  BXPC     00000001      01000013)
[    0.000000] ACPI: FACP 0x00000001BBF7FA98 00010C (v05 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: DSDT 0x00000001BBF77518 001470 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: APIC 0x00000001BBF7FC18 00018C (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: PPTT 0x00000001BBF7D898 00009C (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: GTDT 0x00000001BBF7E818 000060 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: MCFG 0x00000001BBF7E918 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: SPCR 0x00000001BBF7FF98 000050 (v02 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: DBG2 0x00000001BBF7E418 000057 (v00 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: IORT 0x00000001BBF7E718 000080 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.000000] ACPI: SPCR: console: pl011,mmio,0x9000000,9600
[    0.000000] NUMA: Failed to initialise from firmware
[    0.000000] NUMA: Faking a node at [mem 0x0000000040000000-0x00000001bfffffff]
[    0.000000] NUMA: NODE_DATA [mem 0x1bf1f76c0-0x1bf20dfff]
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000040000000-0x00000000ffffffff]
[    0.000000]   DMA32    empty
[    0.000000]   Normal   [mem 0x0000000100000000-0x00000001bfffffff]
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000040000000-0x00000001bbe8ffff]
[    0.000000]   node   0: [mem 0x00000001bbe90000-0x00000001bbe9ffff]
[    0.000000]   node   0: [mem 0x00000001bbea0000-0x00000001bbf7ffff]
[    0.000000]   node   0: [mem 0x00000001bbf80000-0x00000001bbffffff]
[    0.000000]   node   0: [mem 0x00000001bc000000-0x00000001bc01ffff]
[    0.000000]   node   0: [mem 0x00000001bc020000-0x00000001bc36ffff]
[    0.000000]   node   0: [mem 0x00000001bc370000-0x00000001bf64ffff]
[    0.000000]   node   0: [mem 0x00000001bf650000-0x00000001bf6dffff]
[    0.000000]   node   0: [mem 0x00000001bf6e0000-0x00000001bf6effff]
[    0.000000]   node   0: [mem 0x00000001bf6f0000-0x00000001bf80ffff]
[    0.000000]   node   0: [mem 0x00000001bf810000-0x00000001bfffffff]
[    0.000000] Initmem setup node 0 [mem 0x0000000040000000-0x00000001bfffffff]
[    0.000000] cma: Reserved 64 MiB at 0x00000000fc000000
[    0.000000] psci: probing for conduit method from ACPI.
[    0.000000] psci: PSCIv1.1 detected in firmware.
[    0.000000] psci: Using standard PSCI v0.2 function IDs
[    0.000000] psci: Trusted OS migration not required
[    0.000000] psci: SMC Calling Convention v1.0
[    0.000000] percpu: Embedded 31 pages/cpu s87832 r8192 d30952 u126976
[    0.000000] Detected PIPT I-cache on CPU0
[    0.000000] CPU features: detected: Address authentication (IMP DEF algorithm)
[    0.000000] CPU features: detected: Spectre-v4
[    0.000000] alternatives: patching kernel code
[    0.000000] Fallback order for Node 0: 0 
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 1548288
[    0.000000] Policy zone: Normal
[    0.000000] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/ostree/fedora-coreos-09ec1df6ff694bf5315a4bf498c475f5cf519622d1d8fe749445147a3521ac0d/vmlinuz-5.17.5-300.fc36.aarch64 mitigations=auto,nosmt ignition.platform.id=qemu ostree=/ostree/boot.1/fedora-coreos/09ec1df6ff694bf5315a4bf498c475f5cf519622d1d8fe749445147a3521ac0d/0 root=UUID=8a71935e-ecc3-11ec-8658-cb9d1ce691d1 rw rootflags=prjquota boot=UUID=885a6b72-ecc3-11ec-b79e-7b11a8d39345
[    0.000000] Unknown kernel command line parameters "BOOT_IMAGE=(hd0,gpt3)/ostree/fedora-coreos-09ec1df6ff694bf5315a4bf498c475f5cf519622d1d8fe749445147a3521ac0d/vmlinuz-5.17.5-300.fc36.aarch64 ostree=/ostree/boot.1/fedora-coreos/09ec1df6ff694bf5315a4bf498c475f5cf519622d1d8fe749445147a3521ac0d/0 boot=UUID=885a6b72-ecc3-11ec-b79e-7b11a8d39345", will be passed to user space.
[    0.000000] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[    0.000000] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[    0.000000] mem auto-init: stack:off, heap alloc:off, heap free:off
[    0.000000] software IO TLB: mapped [mem 0x00000000f8000000-0x00000000fc000000] (64MB)
[    0.000000] Memory: 5897628K/6291456K available (16896K kernel code, 4282K rwdata, 13416K rodata, 7360K init, 10809K bss, 328292K reserved, 65536K cma-reserved)
[    0.000000] random: get_random_u64 called from kmem_cache_open+0x30/0x390 with crng_init=0
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[    0.000000] ftrace: allocating 55546 entries in 217 pages
[    0.000000] ftrace: allocated 217 pages with 5 groups
[    0.000000] trace event string verifier disabled
[    0.000000] rcu: Hierarchical RCU implementation.
[    0.000000] rcu: 	RCU restricting CPUs from NR_CPUS=4096 to nr_cpu_ids=4.
[    0.000000] 	Trampoline variant of Tasks RCU enabled.
[    0.000000] 	Rude variant of Tasks RCU enabled.
[    0.000000] 	Tracing variant of Tasks RCU enabled.
[    0.000000] rcu: RCU calculated value of scheduler-enlistment delay is 10 jiffies.
[    0.000000] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[    0.000000] NR_IRQS: 64, nr_irqs: 64, preallocated irqs: 0
[    0.000000] Root IRQ handler: gic_handle_irq
[    0.000000] GICv2m: ACPI overriding V2M MSI_TYPER (base:80, num:64)
[    0.000000] GICv2m: range[mem 0x08020000-0x08020fff], SPI[80:143]
[    0.000000] arch_timer: cp15 timer(s) running at 24.00MHz (virt).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x588fe9dc0, max_idle_ns: 440795202592 ns
[    0.000000] sched_clock: 56 bits at 24MHz, resolution 41ns, wraps every 4398046511097ns
[    0.000016] Console: colour dummy device 80x25
[    0.000041] ACPI: Core revision 20211217
[    0.000065] Calibrating delay loop (skipped), value calculated using timer frequency.. 48.00 BogoMIPS (lpj=240000)
[    0.000066] pid_max: default: 32768 minimum: 301
[    0.000084] LSM: Security Framework initializing
[    0.000089] Yama: becoming mindful.
[    0.000092] SELinux:  Initializing.
[    0.000113] LSM support for eBPF active
[    0.000114] landlock: Up and running.
[    0.000153] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.000184] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.000487] cblist_init_generic: Setting adjustable number of callback queues.
[    0.000489] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.000511] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.000522] cblist_init_generic: Setting shift to 2 and lim to 1.
[    0.000550] rcu: Hierarchical SRCU implementation.
[    0.000675] Remapping and enabling EFI services.
[    0.000850] smp: Bringing up secondary CPUs ...
[    0.001144] Detected PIPT I-cache on CPU1
[    0.001204] CPU1: Booted secondary processor 0x0000000001 [0x00000000]
[    0.001501] Detected PIPT I-cache on CPU2
[    0.001572] CPU2: Booted secondary processor 0x0000000002 [0x00000000]
[    0.001836] Detected PIPT I-cache on CPU3
[    0.001922] CPU3: Booted secondary processor 0x0000000003 [0x00000000]
[    0.001994] smp: Brought up 1 node, 4 CPUs
[    0.001998] SMP: Total of 4 processors activated.
[    0.001999] CPU features: detected: ARMv8.4 Translation Table Level
[    0.001999] CPU features: detected: Data cache clean to the PoU not required for I/D coherence
[    0.002000] CPU features: detected: Common not Private translations
[    0.002000] CPU features: detected: CRC32 instructions
[    0.002001] CPU features: detected: Data cache clean to Point of Deep Persistence
[    0.002001] CPU features: detected: Data cache clean to Point of Persistence
[    0.002002] CPU features: detected: E0PD
[    0.002002] CPU features: detected: Generic authentication (IMP DEF algorithm)
[    0.002003] CPU features: detected: RCpc load-acquire (LDAPR)
[    0.002003] CPU features: detected: LSE atomic instructions
[    0.002003] CPU features: detected: Privileged Access Never
[    0.002004] CPU features: detected: RAS Extension Support
[    0.002004] CPU features: detected: Speculation barrier (SB)
[    0.002004] CPU features: detected: TLB range maintenance instructions
[    0.066465] CPU: All CPU(s) started at EL1
[    0.067271] devtmpfs: initialized
[    0.067671] Registered cp15_barrier emulation handler
[    0.067672] setend instruction emulation is not supported on this system
[    0.067673] KASLR disabled due to lack of seed
[    0.067695] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.067697] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[    0.067816] pinctrl core: initialized pinctrl subsystem
[    0.067896] SMBIOS 3.0.0 present.
[    0.067898] DMI: QEMU QEMU Virtual Machine, BIOS 0.0.0 02/06/2015
[    0.068038] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[    0.069025] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[    0.069405] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.069803] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.069828] audit: initializing netlink subsys (disabled)
[    0.069950] audit: type=2000 audit(0.060:1): state=initialized audit_enabled=0 res=1
[    0.070020] thermal_sys: Registered thermal governor 'fair_share'
[    0.070021] thermal_sys: Registered thermal governor 'step_wise'
[    0.070022] thermal_sys: Registered thermal governor 'user_space'
[    0.070028] cpuidle: using governor menu
[    0.070045] hw-breakpoint: found 6 breakpoint and 4 watchpoint registers.
[    0.070141] ASID allocator initialised with 256 entries
[    0.070166] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.070203] Serial: AMBA PL011 UART driver
[    0.071021] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.071022] HugeTLB registered 32.0 MiB page size, pre-allocated 0 pages
[    0.071023] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.071023] HugeTLB registered 64.0 KiB page size, pre-allocated 0 pages
[    0.071319] cryptd: max_cpu_qlen set to 1000
[    0.071592] raid6: skipped pq benchmark and selected neonx8
[    0.071593] raid6: using neon recovery algorithm
[    0.071618] ACPI: Added _OSI(Module Device)
[    0.071619] ACPI: Added _OSI(Processor Device)
[    0.071620] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.071620] ACPI: Added _OSI(Processor Aggregator Device)
[    0.071621] ACPI: Added _OSI(Linux-Dell-Video)
[    0.071621] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.071622] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.071879] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.071964] ACPI: Interpreter enabled
[    0.071964] ACPI: Using GIC for interrupt routing
[    0.071967] ACPI: MCFG table detected, 1 entries
[    0.072560] ARMH0011:00: ttyAMA0 at MMIO 0x9000000 (irq = 12, base_baud = 0) is a SBSA
[    0.117176] printk: console [ttyAMA0] enabled
[    0.117825] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-0f])
[    0.118135] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[    0.118610] acpi PNP0A08:00: _OSC: platform does not support [LTR DPC]
[    0.118907] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.119288] acpi PNP0A08:00: ECAM area [mem 0x3f000000-0x3fffffff] reserved by PNP0C02:00
[    0.119629] acpi PNP0A08:00: ECAM at [mem 0x3f000000-0x3fffffff] for [bus 00-0f]
[    0.119941] ACPI: Remapped I/O 0x000000003eff0000 to [io  0x0000-0xffff window]
[    0.120261] PCI host bridge to bus 0000:00
[    0.120432] pci_bus 0000:00: root bus resource [mem 0x10000000-0x3efeffff window]
[    0.120740] pci_bus 0000:00: root bus resource [io  0x0000-0xffff window]
[    0.121020] pci_bus 0000:00: root bus resource [bus 00-0f]
[    0.121265] pci 0000:00:00.0: [1b36:0008] type 00 class 0x060000
[    0.121668] pci 0000:00:01.0: [1af4:1000] type 00 class 0x020000
[    0.122028] pci 0000:00:01.0: reg 0x10: [io  0x00e0-0x00ff]
[    0.122333] pci 0000:00:01.0: reg 0x14: [mem 0x10053000-0x10053fff]
[    0.122828] pci 0000:00:01.0: reg 0x20: [mem 0x1004c000-0x1004ffff 64bit pref]
[    0.123208] pci 0000:00:01.0: reg 0x30: [mem 0xfffc0000-0xffffffff pref]
[    0.123603] pci 0000:00:02.0: [1af4:1003] type 00 class 0x078000
[    0.123930] pci 0000:00:02.0: reg 0x10: [io  0x0080-0x00bf]
[    0.124236] pci 0000:00:02.0: reg 0x14: [mem 0x10052000-0x10052fff]
[    0.124726] pci 0000:00:02.0: reg 0x20: [mem 0x10048000-0x1004bfff 64bit pref]
[    0.125185] pci 0000:00:03.0: [1af4:1009] type 00 class 0x000200
[    0.125511] pci 0000:00:03.0: reg 0x10: [io  0x00c0-0x00df]
[    0.125815] pci 0000:00:03.0: reg 0x14: [mem 0x10051000-0x10051fff]
[    0.126305] pci 0000:00:03.0: reg 0x20: [mem 0x10044000-0x10047fff 64bit pref]
[    0.126768] pci 0000:00:04.0: [1af4:1001] type 00 class 0x010000
[    0.127097] pci 0000:00:04.0: reg 0x10: [io  0x0000-0x007f]
[    0.127399] pci 0000:00:04.0: reg 0x14: [mem 0x10050000-0x10050fff]
[    0.127893] pci 0000:00:04.0: reg 0x20: [mem 0x10040000-0x10043fff 64bit pref]
[    0.128355] pci 0000:00:01.0: BAR 6: assigned [mem 0x10000000-0x1003ffff pref]
[    0.128647] pci 0000:00:01.0: BAR 4: assigned [mem 0x10040000-0x10043fff 64bit pref]
[    0.128967] pci 0000:00:02.0: BAR 4: assigned [mem 0x10044000-0x10047fff 64bit pref]
[    0.129286] pci 0000:00:03.0: BAR 4: assigned [mem 0x10048000-0x1004bfff 64bit pref]
[    0.129605] pci 0000:00:04.0: BAR 4: assigned [mem 0x1004c000-0x1004ffff 64bit pref]
[    0.129924] pci 0000:00:01.0: BAR 1: assigned [mem 0x10050000-0x10050fff]
[    0.130198] pci 0000:00:02.0: BAR 1: assigned [mem 0x10051000-0x10051fff]
[    0.130474] pci 0000:00:03.0: BAR 1: assigned [mem 0x10052000-0x10052fff]
[    0.130748] pci 0000:00:04.0: BAR 1: assigned [mem 0x10053000-0x10053fff]
[    0.131024] pci 0000:00:04.0: BAR 0: assigned [io  0x1000-0x107f]
[    0.131343] pci 0000:00:02.0: BAR 0: assigned [io  0x1080-0x10bf]
[    0.131694] pci 0000:00:01.0: BAR 0: assigned [io  0x10c0-0x10df]
[    0.132018] pci 0000:00:03.0: BAR 0: assigned [io  0x10e0-0x10ff]
[    0.132340] pci_bus 0000:00: resource 4 [mem 0x10000000-0x3efeffff window]
[    0.132617] pci_bus 0000:00: resource 5 [io  0x0000-0xffff window]
[    0.132875] ACPI: PCI: Interrupt link GSI0 configured for IRQ 35
[    0.133119] ACPI: PCI: Interrupt link GSI1 configured for IRQ 36
[    0.133722] ACPI: PCI: Interrupt link GSI2 configured for IRQ 37
[    0.133968] ACPI: PCI: Interrupt link GSI3 configured for IRQ 38
[    0.134353] iommu: Default domain type: Translated 
[    0.134573] iommu: DMA domain TLB invalidation policy: lazy mode 
[    0.134871] vgaarb: loaded
[    0.135039] SCSI subsystem initialized
[    0.135289] ACPI: bus type USB registered
[    0.135481] usbcore: registered new interface driver usbfs
[    0.135707] usbcore: registered new interface driver hub
[    0.135931] usbcore: registered new device driver usb
[    0.136154] pps_core: LinuxPPS API ver. 1 registered
[    0.136357] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.136725] PTP clock support registered
[    0.136965] EDAC MC: Ver: 3.0.0
[    0.137219] Registered efivars operations
[    0.137661] NetLabel: Initializing
[    0.137803] NetLabel:  domain hash size = 128
[    0.137979] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.138211] NetLabel:  unlabeled traffic allowed by default
[    0.138439] mctp: management component transport protocol core
[    0.138675] NET: Registered PF_MCTP protocol family
[    0.139050] clocksource: Switched to clocksource arch_sys_counter
[    0.145229] VFS: Disk quotas dquot_6.6.0
[    0.145500] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.145916] pnp: PnP ACPI init
[    0.146090] system 00:00: [mem 0x3f000000-0x3fffffff window] could not be reserved
[    0.146415] pnp: PnP ACPI: found 1 devices
[    0.150839] NET: Registered PF_INET protocol family
[    0.151311] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[    0.152629] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[    0.153083] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[    0.153566] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[    0.154105] TCP: Hash tables configured (established 65536 bind 65536)
[    0.154474] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[    0.154797] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.155102] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[    0.155439] NET: Registered PF_UNIX/PF_LOCAL protocol family
[    0.155670] NET: Registered PF_XDP protocol family
[    0.155878] PCI: CLS 0 bytes, default 64
[    0.156047] ACPI: bus type thunderbolt registered
[    0.156123] Trying to unpack rootfs image as initramfs...
[    0.156631] kvm [1]: HYP mode not available
[    0.156995] Initialise system trusted keyrings
[    0.157190] Key type blacklist registered
[    0.157480] workingset: timestamp_bits=37 max_order=21 bucket_order=0
[    0.158418] zbud: loaded
[    0.158887] integrity: Platform Keyring initialized
[    0.168605] NET: Registered PF_ALG protocol family
[    0.168811] xor: measuring software checksum speed
[    0.169333]    8regs           : 35092 MB/sec
[    0.169870]    32regs          : 28452 MB/sec
[    0.170232]    arm64_neon      : 54918 MB/sec
[    0.170415] xor: using function: arm64_neon (54918 MB/sec)
[    0.170645] Key type asymmetric registered
[    0.170817] Asymmetric key parser 'x509' registered
[    0.592560] Freeing initrd memory: 79356K
[    0.596567] alg: self-tests for CTR-KDF (hmac(sha256)) passed
[    0.596840] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[    0.597242] io scheduler mq-deadline registered
[    0.597529] io scheduler kyber registered
[    0.597799] io scheduler bfq registered
[    0.599227] atomic64_test: passed
[    0.599918] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.600274] ACPI: button: Power Button [PWRB]
[    0.600783] ACPI: \_SB_.PCI0.GSI1: Enabled at IRQ 36
[    0.600996] virtio-pci 0000:00:01.0: enabling device (0005 -> 0007)
[    0.601558] ACPI: \_SB_.PCI0.GSI2: Enabled at IRQ 37
[    0.601764] virtio-pci 0000:00:02.0: enabling device (0005 -> 0007)
[    0.602270] ACPI: \_SB_.PCI0.GSI3: Enabled at IRQ 38
[    0.602477] virtio-pci 0000:00:03.0: enabling device (0005 -> 0007)
[    0.603008] ACPI: \_SB_.PCI0.GSI0: Enabled at IRQ 35
[    0.603218] virtio-pci 0000:00:04.0: enabling device (0005 -> 0007)
[    0.603777] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.605673] msm_serial: driver initialized
[    0.605952] ACPI: bus type drm_connector registered
[    0.606656] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.606929] ehci-pci: EHCI PCI platform driver
[    0.607128] usbcore: registered new interface driver usbserial_generic
[    0.607390] usbserial: USB Serial support registered for generic
[    0.607704] mousedev: PS/2 mouse device common for all mice
[    0.608154] rtc-efi rtc-efi.0: registered as rtc0
[    0.608438] rtc-efi rtc-efi.0: setting system clock to 2022-06-26T19:11:23 UTC (1656270683)
[    0.608867] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[    0.609523] device-mapper: uevent: version 1.0.3
[    0.609788] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[    0.610396] ledtrig-cpu: registered to indicate activity on CPUs
[    0.610700] hid: raw HID events driver (C) Jiri Kosina
[    0.610924] usbcore: registered new interface driver usbhid
[    0.611149] usbhid: USB HID core driver
[    0.611381] drop_monitor: Initializing network drop monitor service
[    0.611665] Initializing XFRM netlink socket
[    0.611880] NET: Registered PF_INET6 protocol family
[    0.614758] Segment Routing with IPv6
[    0.614914] RPL Segment Routing with IPv6
[    0.615084] In-situ OAM (IOAM) with IPv6
[    0.615264] mip6: Mobile IPv6
[    0.615387] NET: Registered PF_PACKET protocol family
[    0.615778] registered taskstats version 1
[    0.616178] Loading compiled-in X.509 certificates
[    0.631825] Loaded X.509 cert 'Fedora kernel signing key: 5eae60fa85b39a01d9cf6e79fbe4fb3693b9f9b3'
[    0.632366] zswap: loaded using pool lzo/zbud
[    0.632640] page_owner is disabled
[    0.632870] Key type ._fscrypt registered
[    0.633059] Key type .fscrypt registered
[    0.633219] Key type fscrypt-provisioning registered
[    0.633606] Btrfs loaded, crc32c=crc32c-generic, zoned=yes, fsverity=yes
[    0.633888] Key type big_key registered
[    0.634196] Key type encrypted registered
[    0.634506] ima: secureboot mode disabled
[    0.634674] ima: No TPM chip found, activating TPM-bypass!
[    0.634897] Loading compiled-in module X.509 certificates
[    0.635426] Loaded X.509 cert 'Fedora kernel signing key: 5eae60fa85b39a01d9cf6e79fbe4fb3693b9f9b3'
[    0.635795] ima: Allocated hash algorithm: sha256
[    0.635992] ima: No architecture policies found
[    0.636180] evm: Initialising EVM extended attributes:
[    0.636388] evm: security.selinux
[    0.636522] evm: security.SMACK64 (disabled)
[    0.636694] evm: security.SMACK64EXEC (disabled)
[    0.636880] evm: security.SMACK64TRANSMUTE (disabled)
[    0.637082] evm: security.SMACK64MMAP (disabled)
[    0.637268] evm: security.apparmor (disabled)
[    0.637444] evm: security.ima
[    0.637563] evm: security.capability
[    0.637708] evm: HMAC attrs: 0x1
[    0.647563] alg: No test for 842 (842-scomp)
[    0.648065] alg: No test for 842 (842-generic)
[    0.715440] Freeing unused kernel memory: 7360K
[    0.790110] Checked W+X mappings: passed, no W+X pages found
[    0.790463] rodata_test: all tests were successful
[    0.790739] Run /init as init process
[    0.802098] systemd[1]: systemd v250.3-8.fc36 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    0.803755] systemd[1]: Detected virtualization qemu.
[    0.803995] systemd[1]: Detected architecture arm64.
[    0.804227] systemd[1]: Running in initial RAM disk.

Welcome to Fedora CoreOS 36.20220511.dev.0 dracut-056-1.fc36 (Initramfs)!

[    0.805013] systemd[1]: No hostname configured, using default hostname.
[    0.805354] systemd[1]: Hostname set to <localhost>.
[    0.805649] random: systemd: uninitialized urandom read (16 bytes read)
[    0.805990] systemd[1]: Initializing machine ID from random generator.
[    0.889399] systemd[1]: Failed to link BPF program. Assuming BPF is not available
[    0.940630] systemd[1]: Queued start job for default target initrd.target.
[    0.941062] random: systemd: uninitialized urandom read (16 bytes read)
[    0.941354] systemd[1]: Started clevis-luks-askpass.path - Forward Password Requests to Clevis Directory Watch.
[  OK  ] Started clevis-luks-askpas…equests to Clevis Directory Watch.
[    0.942149] random: systemd: uninitialized urandom read (16 bytes read)
[    0.942435] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started systemd-ask-passwo…quests to Console Directory Watch.
[    0.943330] systemd[1]: Reached target cryptsetup-pre.target - Local Encrypted Volumes (Pre).
[  OK  ] Reached target cryptsetup-…m - Local Encrypted Volumes (Pre).
[    0.944023] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  OK  ] Reached target cryptsetup.…get - Local Encrypted Volumes.
[    0.944685] systemd[1]: Reached target ignition-diskful-subsequent.target - Ignition Subsequent Boot Disk Setup.
[  OK  ] Reached target ignition-di…nition Subsequent Boot Disk Setup.
[    0.945445] systemd[1]: Reached target ignition-subsequent.target - Subsequent (Not Ignition) boot complete.
[  OK  ] Reached target ignition-su…uent (Not Ignition) boot complete.
[    0.946196] systemd[1]: Reached target initrd-usr-fs.target - Initrd /usr File System.
[  OK  ] Reached target initrd-usr-…get - Initrd /usr File System.
[    0.946884] systemd[1]: Reached target paths.target - Path Units.
[  OK  ] Reached target paths.target - Path Units.
[    0.947424] systemd[1]: Reached target slices.target - Slice Units.
[  OK  ] Reached target slices.target - Slice Units.
[    0.947974] systemd[1]: Reached target swap.target - Swaps.
[  OK  ] Reached target swap.target - Swaps.
[    0.948469] systemd[1]: Reached target timers.target - Timer Units.
[  OK  ] Reached target timers.target - Timer Units.
[    0.949047] systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket.
[  OK  ] Listening on dbus.socket[…- D-Bus System Message Bus Socket.
[    0.949886] systemd[1]: Listening on systemd-journald-audit.socket - Journal Audit Socket.
[  OK  ] Listening on systemd-journ…socket - Journal Audit Socket.
[    0.950609] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[  OK  ] Listening on systemd-journ…t - Journal Socket (/dev/log).
[    0.951350] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[  OK  ] Listening on systemd-journald.socket - Journal Socket.
[    0.952012] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  OK  ] Listening on systemd-udevd….socket - udev Control Socket.
[    0.952802] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  OK  ] Listening on systemd-udevd…l.socket - udev Kernel Socket.
[    0.953474] systemd[1]: Reached target sockets.target - Socket Units.
[  OK  ] Reached target sockets.target - Socket Units.
[    0.954041] systemd[1]: coreos-check-kernel.service - Check that initrd matches kernel was skipped because of a failed condition check (ConditionPathIsDirectory=!/usr/lib/modules/5.17.5-300.fc36.aarch64).
[    0.954803] systemd[1]: coreos-liveiso-persist-osmet.service - Persist osmet files (ISO) was skipped because of a failed condition check (ConditionKernelCommandLine=coreos.liveiso).
[    0.955917] systemd[1]: Starting coreos-touch-run-agetty.service - CoreOS: Touch /run/agetty.reload...
         Starting coreos-touch-run-…oreOS: Touch /run/agetty.reload...
[    0.956934] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
         Starting kmod-static-nodes…ate List of Static Device Nodes...
[    0.958395] systemd[1]: Starting systemd-journald.service - Journal Service...
         Starting systemd-journald.service - Journal Service...
[    0.959839] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
         Starting systemd-modules-l…rvice - Load Kernel Modules...
[    0.961211] systemd[1]: Starting systemd-sysusers.service - Create System Users...
         Starting systemd-sysusers.…rvice - Create System Users...
[    0.962146] systemd[1]: Starting systemd-vconsole-setup.service - Setup Virtual Console...
         Starting systemd-vconsole-…ice - Setup Virtual Console...
[    0.963409] systemd[1]: Finished coreos-touch-run-agetty.service - CoreOS: Touch /run/agetty.reload.
[  OK  ] Finished coreos-touch-run-… CoreOS: Touch /run/agetty.reload.
[    0.964333] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[  OK  ] Finished kmod-static-nodes…reate List of Static Device Nodes.
[    0.967239] systemd[1]: Finished systemd-sysusers.service - Create System Users.
[  OK  ] Finished systemd-sysusers.service - Create System Users.
[    0.967996] audit: type=1130 audit(1656270683.850:2): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysusers comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    0.969224] systemd[1]: Finished systemd-vconsole-setup.service - Setup Virtual Console.
[  OK  ] Finished systemd-vconsole-…rvice - Setup Virtual Console.
[    0.969988] audit: type=1130 audit(1656270683.860:3): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-vconsole-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    0.970919] systemd-sysusers[259]: Creating group 'nobody' with GID 65534.
[    0.970964] systemd[1]: Starting dracut-cmdline-ask.service - dracut ask for additional cmdline parameters...
[    0.971006] systemd-sysusers[259]: Creating group 'users' with GID 100.
[    0.971052] systemd-sysusers[259]: Creating group 'root' with GID 999.
[    0.971090] systemd-sysusers[259]: Creating group 'dbus' with GID 998.
[    0.971123] systemd-sysusers[259]: Creating user 'dbus' (System Message Bus) with UID 998 and GID 998.
         Starting dracut-cmdline-as…r additional cmdline parameters...
[    0.973568] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
         Starting systemd-tmpfiles-…ate Static Device Nodes in /dev...
[    0.974393] systemd[1]: Started systemd-journald.service - Journal Service.
[  OK  ] Started systemd-journald.service - Journal Service.
[    0.975092] audit: type=1130 audit(1656270683.860:4): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-journald comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting systemd-tmpfiles-… Volatile Files and Directories...
[    0.976452] systemd[1]: Starting systemd-tmpfiles-setup.service - Create Volatile Files and Directories...
[  OK  ] Finished systemd-tmpfiles-…reate Static Device Nodes in /dev.[    0.977216] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.

[    0.978040] audit: type=1130 audit(1656270683.860:5): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup-dev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Finished systemd-tmpfiles-…te Volatile Files and Directories.[    0.980708] systemd[1]: Finished systemd-tmpfiles-setup.service - Create Volatile Files and Directories.

[    0.981386] audit: type=1130 audit(1656270683.870:6): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    0.985180] fuse: init (API version 7.36)
[    0.985628] systemd-modules-load[258]: Inserted module 'fuse'
[    0.988389] IPMI message handler: version 39.2
[    0.989804] ipmi device interface
[    0.990085] systemd-modules-load[258]: Inserted module 'ipmi_devintf'
[    0.992336] systemd-modules-load[258]: Inserted module 'ip_tables'
[    0.994870] systemd-modules-load[258]: Inserted module 'ip6_tables'
[  OK  ] Finished systemd-modules-l…service - Load Kernel Modules.[    0.995306] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.

[    0.996021] audit: type=1130 audit(1656270683.880:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-modules-load comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    0.996326] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
         Starting systemd-sysctl.se…ce - Apply Kernel Variables...
[  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.[    0.999948] systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.

[    1.000630] audit: type=1130 audit(1656270683.890:8): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-sysctl comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Finished dracut-cmdline-as…for additional cmdline parameters.[    1.022737] systemd[1]: Finished dracut-cmdline-ask.service - dracut ask for additional cmdline parameters.

[    1.023425] audit: type=1130 audit(1656270683.910:9): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline-ask comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.023770] systemd[1]: Starting dracut-cmdline.service - dracut cmdline hook...
         Starting dracut-cmdline.service - dracut cmdline hook...
[    1.032194] dracut-cmdline[284]: dracut-36.20220511.dev.0 (CoreOS) dracut-056-1.fc36
[    1.034586] dracut-cmdline[284]: Using kernel command line parameters:  rd.driver.pre=btrfs   BOOT_IMAGE=(hd0,gpt3)/ostree/fedora-coreos-09ec1df6ff694bf5315a4bf498c475f5cf519622d1d8fe749445147a3521ac0d/vmlinuz-5.17.5-300.fc36.aarch64 mitigations=auto,nosmt ignition.platform.id=qemu ostree=/ostree/boot.1/fedora-coreos/09ec1df6ff694bf5315a4bf498c475f5cf519622d1d8fe749445147a3521ac0d/0 root=UUID=8a71935e-ecc3-11ec-8658-cb9d1ce691d1 rw rootflags=prjquota boot=UUID=885a6b72-ecc3-11ec-b79e-7b11a8d39345
[  OK  ] Finished dracut-cmdline.service - dracut cmdline hook.[    1.102135] systemd[1]: Finished dracut-cmdline.service - dracut cmdline hook.

[    1.102693] audit: type=1130 audit(1656270683.990:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-cmdline comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    1.103267] systemd[1]: Starting dracut-pre-udev.service - dracut pre-udev hook...
         Starting dracut-pre-udev.s…vice - dracut pre-udev hook...
[  OK  ] Finished dracut-pre-udev.service - dracut pre-udev hook.[    1.123375] systemd[1]: Finished dracut-pre-udev.service - dracut pre-udev hook.

         Starting systemd-udevd.ser…ger for Device Events and Files...[    1.124799] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...

[  OK  ] Started systemd-udevd.serv…nager for Device Events and Files.[    1.136445] systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.

         Starting dracut-pre-trigge…e - dracut pre-trigger hook...
[    1.138540] systemd[1]: Starting dracut-pre-trigger.service - dracut pre-trigger hook...
[    1.147320] dracut-pre-trigger[424]: rd.md=0: removing MD RAID activation
[  OK  ] Finished dracut-pre-trigge…ice - dracut pre-trigger hook.[    1.165391] systemd[1]: Finished dracut-pre-trigger.service - dracut pre-trigger hook.

         Starting systemd-udev-trig…[0m - Coldplug All udev Devices...[    1.166435] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...

[  OK  ] Finished systemd-udev-trig…e - Coldplug All udev Devices.[    1.197285] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.

         Starting systemd-udev-sett… Complete Device Initialization...[    1.198503] systemd[1]: Starting systemd-udev-settle.service - Wait for udev To Complete Device Initialization...

[    1.219411] udevadm[481]: systemd-udev-settle.service is deprecated. Please fix multipathd-configure.service not to pull it in.
[    1.686598] virtio_blk virtio3: [vda] 83886080 512-byte logical blocks (42.9 GB/40.0 GiB)
[    1.691367]  vda: vda1 vda2 vda3 vda4
[    1.719340] systemd-udevd[466]: Using default interface naming scheme 'v250'.
[    1.719477] virtio_net virtio0 enp0s1: renamed from eth0
[    1.763207] systemd-udevd[476]: Using default interface naming scheme 'v250'.
[  OK  ] Found device dev-disk-by\x…ice - /dev/disk/by-label/root.[    1.891658] systemd[1]: Found device dev-disk-by\x2dlabel-root.device - /dev/disk/by-label/root.

[  OK  ] Found device dev-disk-by\x…1935e-ecc3-11ec-8658-cb9d1ce691d1.[    1.892302] systemd[1]: Found device dev-disk-by\x2duuid-8a71935e\x2decc3\x2d11ec\x2d8658\x2dcb9d1ce691d1.device - /dev/disk/by-uuid/8a71935e-ecc3-11ec-8658-cb9d1ce691d1.

[  OK  ] Reached target initrd-root…e.target - Initrd Root Device.[    1.894558] systemd[1]: Reached target initrd-root-device.target - Initrd Root Device.

[    1.895158] systemd[1]: ignition-ostree-mount-subsequent-sysroot.service - CoreOS: Mount (subsequent) /sysroot was skipped because of a failed condition check (ConditionKernelCommandLine=!root).
[  OK  ] Finished systemd-udev-sett…To Complete Device Initialization.[    1.942925] systemd[1]: Finished systemd-udev-settle.service - Wait for udev To Complete Device Initialization.

[    1.944059] systemd[1]: multipathd-configure.service - Device-Mapper Multipath Default Configuration was skipped because of a failed condition check (ConditionKernelCommandLine=rd.multipath=default).
         Starting multipathd.servic…per Multipath Device Controller...[    1.945135] systemd[1]: Starting multipathd.service - Device-Mapper Multipath Device Controller...

[    1.956279] multipathd[541]: --------start up--------
[    1.956895] multipathd[541]: read /etc/multipath.conf
[    1.957282] multipathd[541]: /etc/multipath.conf does not exist, blacklisting all devices.
[    1.958198] multipathd[541]: You can run "/sbin/mpathconf --enable" to create
[    1.959407] multipathd[541]: /etc/multipath.conf. See man mpathconf(8) for more details
[    1.959801] systemd[1]: Started multipathd.service - Device-Mapper Multipath Device Controller.
[  OK  ] Started multipathd.service…apper Multipath Device Controller.[    1.960204] multipathd[541]: path checkers start up

[    1.960764] multipathd[541]: /etc/multipath.conf does not exist, blacklisting all devices.
[    1.961179] multipathd[541]: You can run "/sbin/mpathconf --enable" to create
[    1.961187] multipathd[541]: /etc/multipath.conf. See man mpathconf(8) for more details
[  OK  ] Reached target local-fs-pr…reparation for Local File Systems.[    1.961879] systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.

[  OK  ] Reached target local-fs.target - Local File Systems.[    1.962667] systemd[1]: Reached target local-fs.target - Local File Systems.

[  OK  ] Reached target sysinit.target - System Initialization.[    1.963353] systemd[1]: Reached target sysinit.target - System Initialization.

[  OK  ] Reached target basic.target - Basic System.[    1.964029] systemd[1]: Reached target basic.target - Basic System.

[    1.964677] systemd[1]: coreos-enable-network.service - CoreOS Enable Network was skipped because all trigger condition checks failed.
[    1.965206] systemd[1]: nm-initrd.service was skipped because of a failed condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
[    1.965220] systemd[1]: Reached target network.target - Network.
[  OK  ] Reached target network.target - Network.
[    1.966356] systemd[1]: nm-wait-online-initrd.service was skipped because of a failed condition check (ConditionPathExists=/run/NetworkManager/initrd/neednet).
[    1.967063] systemd[1]: Starting dracut-initqueue.service - dracut initqueue hook...
         Starting dracut-initqueue.…ice - dracut initqueue hook...
[  OK  ] Finished dracut-initqueue.…rvice - dracut initqueue hook.[    1.975719] systemd[1]: Finished dracut-initqueue.service - dracut initqueue hook.

[  OK  ] Reached target remote-fs-p…eparation for Remote File Systems.[    1.976588] systemd[1]: Reached target remote-fs-pre.target - Preparation for Remote File Systems.

[  OK  ] Reached target remote-cryp…et - Remote Encrypted Volumes.[    1.977249] systemd[1]: Reached target remote-cryptsetup.target - Remote Encrypted Volumes.

[  OK  ] Reached target remote-fs.target - Remote File Systems.[    1.977985] systemd[1]: Reached target remote-fs.target - Remote File Systems.

[    1.978654] systemd[1]: coreos-livepxe-rootfs.service - Acquire live PXE rootfs image was skipped because of a failed condition check (ConditionPathExists=/run/ostree-live).
[    1.979599] systemd[1]: coreos-livepxe-persist-osmet.service - Persist osmet files (PXE) was skipped because of a failed condition check (ConditionPathExists=/run/ostree-live).
         Starting dracut-pre-mount.…ice - dracut pre-mount hook...[    1.980301] systemd[1]: Starting dracut-pre-mount.service - dracut pre-mount hook...

[  OK  ] Finished dracut-pre-mount.…rvice - dracut pre-mount hook.[    1.986047] systemd[1]: Finished dracut-pre-mount.service - dracut pre-mount hook.

         Starting systemd-fsck-root…35e-ecc3-11ec-8658-cb9d1ce691d1...[    1.987266] systemd[1]: Starting systemd-fsck-root.service - File System Check on /dev/disk/by-uuid/8a71935e-ecc3-11ec-8658-cb9d1ce691d1...

[    1.994473] systemd-fsck[568]: /usr/sbin/fsck.xfs: XFS file system.
[  OK  ] Finished systemd-fsck-root…1935e-ecc3-11ec-8658-cb9d1ce691d1.[    1.995274] systemd[1]: Finished systemd-fsck-root.service - File System Check on /dev/disk/by-uuid/8a71935e-ecc3-11ec-8658-cb9d1ce691d1.

         Mounting sysroot.mount - /sysroot...[    1.996544] systemd[1]: Mounting sysroot.mount - /sysroot...

[    2.046419] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled
[    2.049270] XFS (vda4): Mounting V5 Filesystem
[    2.056544] random: fast init done
[    2.164349] XFS (vda4): Starting recovery (logdev: internal)
[    2.188822] XFS (vda4): Ending recovery (logdev: internal)
[    2.203967] xfs filesystem being mounted at /sysroot supports timestamps until 2038 (0x7fffffff)
[  OK  ] Mounted sysroot.mount - /sysroot.[    2.204874] systemd[1]: Mounted sysroot.mount - /sysroot.

         Starting ostree-prepare-ro…ervice - OSTree Prepare OS/...[    2.205803] systemd[1]: Starting ostree-prepare-root.service - OSTree Prepare OS/...

[    2.207345] ostree-prepare-root[581]: preparing sysroot at /sysroot
[    2.208391] ostree-prepare-root[581]: Resolved OSTree target to: /sysroot/ostree/deploy/fedora-coreos/deploy/c00f75f2a800ab3e83beff6b263e6a5474b5632de495e56ad22f22bf780ce588.0
[    2.208917] xfs filesystem being remounted at /sysroot/ostree/deploy/fedora-coreos/deploy/c00f75f2a800ab3e83beff6b263e6a5474b5632de495e56ad22f22bf780ce588.0/etc supports timestamps until 2038 (0x7fffffff)
[    2.209594] ostree-prepare-root[581]: filesystem at /sysroot currently writable: 1
[    2.210329] xfs filesystem being remounted at /sysroot/ostree/deploy/fedora-coreos/var supports timestamps until 2038 (0x7fffffff)
[    2.210644] ostree-prepare-root[581]: sysroot.readonly configuration value: 1
[    2.211561] systemd[1]: Finished ostree-prepare-root.service - OSTree Prepare OS/.
[  OK  ] Finished ostree-prepare-ro….service - OSTree Prepare OS/.
[  OK  ] Reached target initrd-root…get - Initrd Root File System.[    2.212467] systemd[1]: Reached target initrd-root-fs.target - Initrd Root File System.

[    2.213143] systemd[1]: coreos-enable-iptables-legacy.service - CoreOS Enable iptables-legacy was skipped because of a failed condition check (ConditionPathExists=/sysroot/etc/coreos/iptables-legacy.stamp).
[    2.213991] systemd[1]: coreos-propagate-multipath-conf.service - CoreOS Propagate Multipath Configuration was skipped because of a failed condition check (ConditionKernelCommandLine=rd.multipath=default).
[    2.214019] systemd[1]: Starting initrd-parse-etc.service - Reload Configuration from the Real Root...
         Starting initrd-parse-etc.…onfiguration from the Real Root...
[    2.217591] systemd[1]: Reloading.
         Stopping multipathd.servic…per Multipath Device Controller...[    2.341757] multipathd[541]: exit (signal)

[    2.342107] multipathd[541]: --------shut down-------
[    2.342558] systemd[1]: Stopping multipathd.service - Device-Mapper Multipath Device Controller...
[    2.343008] systemd[1]: initrd-parse-etc.service: Deactivated successfully.
[    2.343034] systemd[1]: Finished initrd-parse-etc.service - Reload Configuration from the Real Root.
[  OK  ] Finished initrd-parse-etc.… Configuration from the Real Root.
[  OK  ] Reached target initrd-fs.target - Initrd File Systems.[    2.344178] systemd[1]: Reached target initrd-fs.target - Initrd File Systems.

[  OK  ] Reached target initrd.target - Initrd Default Target.[    2.344891] systemd[1]: Reached target initrd.target - Initrd Default Target.

[    2.345546] systemd[1]: dracut-mount.service - dracut mount hook was skipped because all trigger condition checks failed.
[    2.346084] systemd[1]: Starting dracut-pre-pivot.service - dracut pre-pivot and cleanup hook...
         Starting dracut-pre-pivot.…acut pre-pivot and cleanup hook...
[    2.354199] dracut-pre-pivot[663]: 2.345039 | /etc/multipath.conf does not exist, blacklisting all devices.
[    2.345657] dracut-pre-pivot[663]: 2.345039 | /etc/multipath.conf does not exist, blacklisting all devices.
[    2.355247] dracut-pre-pivot[663]: 2.345063 | You can run "/sbin/mpathconf --enable" to create
[    2.346658] dracut-pre-pivot[663]: 2.345063 | You can run "/sbin/mpathconf --enable" to create
[    2.356156] dracut-pre-pivot[663]: 2.345064 | /etc/multipath.conf. See man mpathconf(8) for more details
[    2.347654] dracut-pre-pivot[663]: 2.345064 | /etc/multipath.conf. See man mpathconf(8) for more details
[  OK  ] Finished dracut-pre-pivot.…dracut pre-pivot and cleanup hook.[    2.358096] systemd[1]: Finished dracut-pre-pivot.service - dracut pre-pivot and cleanup hook.

[    2.366315] systemd[1]: multipathd.service: Deactivated successfully.
[    2.366642] systemd[1]: Stopped multipathd.service - Device-Mapper Multipath Device Controller.
[  OK  ] Stopped multipathd.service…apper Multipath Device Controller.
         Starting initrd-cleanup.se…ng Up and Shutting Down Daemons...[    2.367960] systemd[1]: Starting initrd-cleanup.service - Cleaning Up and Shutting Down Daemons...

[  OK  ] Stopped target network.target - Network.[    2.373184] systemd[1]: Stopped target network.target - Network.

[  OK  ] Stopped target remote-cryp…et - Remote Encrypted Volumes.[    2.373833] systemd[1]: Stopped target remote-cryptsetup.target - Remote Encrypted Volumes.

[  OK  ] Stopped target timers.target - Timer Units.[    2.374651] systemd[1]: Stopped target timers.target - Timer Units.

[    2.375265] systemd[1]: dbus.socket: Deactivated successfully.
[    2.375544] systemd[1]: Closed dbus.socket - D-Bus System Message Bus Socket.
[  OK  ] Closed dbus.socket - D-Bus System Message Bus Socket.
[    2.376740] systemd[1]: coreos-live-unmount-tmpfs-var.service - Unmount live /var if persistent /var is configured was skipped because of a failed condition check (ConditionPathExists=/run/ostree-live).
[    2.377534] systemd[1]: coreos-touch-run-agetty.service: Deactivated successfully.
[    2.377548] systemd[1]: Stopped coreos-touch-run-agetty.service - CoreOS: Touch /run/agetty.reload.
[  OK  ] Stopped coreos-touch-run-a… CoreOS: Touch /run/agetty.reload.
[    2.378764] systemd[1]: dracut-pre-pivot.service: Deactivated successfully.
[    2.379420] systemd[1]: Stopped dracut-pre-pivot.service - dracut pre-pivot and cleanup hook.
[  OK  ] Stopped dracut-pre-pivot.s…dracut pre-pivot and cleanup hook.
[  OK  ] Stopped target initrd.target - Initrd Default Target.[    2.380259] systemd[1]: Stopped target initrd.target - Initrd Default Target.

[  OK  ] Stopped target basic.target - Basic System.[    2.380960] systemd[1]: Stopped target basic.target - Basic System.

[  OK  ] Stopped target ignition-su…uent (Not Ignition) boot complete.[    2.381616] systemd[1]: Stopped target ignition-subsequent.target - Subsequent (Not Ignition) boot complete.

[  OK  ] Stopped target ignition-di…nition Subsequent Boot Disk Setup.[    2.382497] systemd[1]: Stopped target ignition-diskful-subsequent.target - Ignition Subsequent Boot Disk Setup.

[  OK  ] Stopped target initrd-root…e.target - Initrd Root Device.[    2.383332] systemd[1]: Stopped target initrd-root-device.target - Initrd Root Device.

[  OK  ] Stopped target initrd-usr-…get - Initrd /usr File System.[    2.384110] systemd[1]: Stopped target initrd-usr-fs.target - Initrd /usr File System.

[  OK  ] Stopped target paths.target - Path Units.[    2.384893] systemd[1]: Stopped target paths.target - Path Units.

[  OK  ] Stopped target remote-fs.target - Remote File Systems.[    2.385532] systemd[1]: Stopped target remote-fs.target - Remote File Systems.

[  OK  ] Stopped target remote-fs-p…eparation for Remote File Systems.[    2.386372] systemd[1]: Stopped target remote-fs-pre.target - Preparation for Remote File Systems.

[  OK  ] Stopped target slices.target - Slice Units.[    2.387118] systemd[1]: Stopped target slices.target - Slice Units.

[  OK  ] Stopped target sockets.target - Socket Units.[    2.387946] systemd[1]: Stopped target sockets.target - Socket Units.

[  OK  ] Stopped target sysinit.target - System Initialization.[    2.388701] systemd[1]: Stopped target sysinit.target - System Initialization.

[  OK  ] Stopped target local-fs.target - Local File Systems.[    2.389636] systemd[1]: Stopped target local-fs.target - Local File Systems.

[  OK  ] Stopped target local-fs-pr…reparation for Local File Systems.[    2.390419] systemd[1]: Stopped target local-fs-pre.target - Preparation for Local File Systems.

[  OK  ] Stopped target swap.target - Swaps.[    2.391180] systemd[1]: Stopped target swap.target - Swaps.

[    2.391769] systemd[1]: dracut-pre-mount.service: Deactivated successfully.
[    2.392101] systemd[1]: Stopped dracut-pre-mount.service - dracut pre-mount hook.
[  OK  ] Stopped dracut-pre-mount.service - dracut pre-mount hook.
[  OK  ] Stopped target cryptsetup.…get - Local Encrypted Volumes.[    2.393008] systemd[1]: Stopped target cryptsetup.target - Local Encrypted Volumes.

[    2.393681] systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
[    2.394076] systemd[1]: Stopped systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  OK  ] Stopped systemd-ask-passwo…quests to Console Directory Watch.
[  OK  ] Stopped target cryptsetup-…m - Local Encrypted Volumes (Pre).[    2.395012] systemd[1]: Stopped target cryptsetup-pre.target - Local Encrypted Volumes (Pre).

[    2.395760] systemd[1]: clevis-luks-askpass.path: Deactivated successfully.
[  OK  ] Stopped clevis-luks-askpas…equests to Clevis Directory Watch.[    2.432679] systemd[1]: Stopped clevis-luks-askpass.path - Forward Password Requests to Clevis Directory Watch.

[    2.433641] systemd[1]: dracut-initqueue.service: Deactivated successfully.
[    2.434044] systemd[1]: Stopped dracut-initqueue.service - dracut initqueue hook.
[  OK  ] Stopped dracut-initqueue.service - dracut initqueue hook.
[    2.434961] systemd[1]: coreos-livepxe-rootfs.service - Acquire live PXE rootfs image was skipped because of a failed condition check (ConditionPathExists=/run/ostree-live).
[  OK  ] Stopped systemd-sysctl.service - Apply Kernel Variables.[    2.435804] systemd[1]: systemd-sysctl.service: Deactivated successfully.

[    2.436552] systemd[1]: Stopped systemd-sysctl.service - Apply Kernel Variables.
[  OK  ] Stopped systemd-modules-lo…service - Load Kernel Modules.[    2.437045] systemd[1]: systemd-modules-load.service: Deactivated successfully.

[    2.437768] systemd[1]: Stopped systemd-modules-load.service - Load Kernel Modules.
[  OK  ] Stopped systemd-tmpfiles-s…te Volatile Files and Directories.[    2.438475] systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.

[    2.439887] systemd[1]: Stopped systemd-tmpfiles-setup.service - Create Volatile Files and Directories.
[  OK  ] Stopped systemd-udev-settl…To Complete Device Initialization.[    2.440423] systemd[1]: systemd-udev-settle.service: Deactivated successfully.

[    2.441139] systemd[1]: Stopped systemd-udev-settle.service - Wait for udev To Complete Device Initialization.
[  OK  ] Stopped systemd-udev-trigg…e - Coldplug All udev Devices.[    2.441762] systemd[1]: systemd-udev-trigger.service: Deactivated successfully.

[    2.442487] systemd[1]: Stopped systemd-udev-trigger.service - Coldplug All udev Devices.
[  OK  ] Stopped dracut-pre-trigger…ice - dracut pre-trigger hook.[    2.443002] systemd[1]: dracut-pre-trigger.service: Deactivated successfully.

[    2.443715] systemd[1]: Stopped dracut-pre-trigger.service - dracut pre-trigger hook.
         Stopping systemd-udevd.ser…ger for Device Events and Files...[    2.444258] systemd[1]: Stopping systemd-udevd.service - Rule-based Manager for Device Events and Files...

[    2.446742] systemd[1]: initrd-cleanup.service: Deactivated successfully.
[  OK  ] Finished initrd-cleanup.se…ning Up and Shutting Down Daemons.[    2.447092] systemd[1]: Finished initrd-cleanup.service - Cleaning Up and Shutting Down Daemons.

[    2.464778] systemd[1]: systemd-udevd.service: Deactivated successfully.
[  OK  ] Stopped systemd-udevd.serv…nager for Device Events and Files.[    2.465164] systemd[1]: Stopped systemd-udevd.service - Rule-based Manager for Device Events and Files.

[  OK  ] Closed systemd-udevd-contr….socket - udev Control Socket.[    2.466195] systemd[1]: systemd-udevd-control.socket: Deactivated successfully.

[    2.466935] systemd[1]: Closed systemd-udevd-control.socket - udev Control Socket.
[    2.467322] systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
[    2.467338] systemd[1]: Closed systemd-udevd-kernel.socket - udev Kernel Socket.
[  OK  ] Closed systemd-udevd-kernel.socket - udev Kernel Socket.
[    2.468509] systemd[1]: dracut-pre-udev.service: Deactivated successfully.
[  OK  ] Stopped dracut-pre-udev.service - dracut pre-udev hook.[    2.468926] systemd[1]: Stopped dracut-pre-udev.service - dracut pre-udev hook.

[  OK  ] Stopped dracut-cmdline.service - dracut cmdline hook.[    2.469894] systemd[1]: dracut-cmdline.service: Deactivated successfully.

[    2.470562] systemd[1]: Stopped dracut-cmdline.service - dracut cmdline hook.
[  OK  ] Stopped dracut-cmdline-ask…for additional cmdline parameters.[    2.470953] systemd[1]: dracut-cmdline-ask.service: Deactivated successfully.

[    2.471618] systemd[1]: Stopped dracut-cmdline-ask.service - dracut ask for additional cmdline parameters.
         Starting initrd-udevadm-cl…ice - Cleanup udev Database...[    2.472173] systemd[1]: Starting initrd-udevadm-cleanup-db.service - Cleanup udev Database...

[  OK  ] Stopped systemd-tmpfiles-s…reate Static Device Nodes in /dev.[    2.472921] systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.

[    2.473631] systemd[1]: Stopped systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[  OK  ] Stopped kmod-static-nodes.…reate List of Static Device Nodes.[    2.474122] systemd[1]: kmod-static-nodes.service: Deactivated successfully.

[    2.474789] systemd[1]: Stopped kmod-static-nodes.service - Create List of Static Device Nodes.
[    2.475228] systemd[1]: systemd-sysusers.service: Deactivated successfully.
[  OK  ] Stopped systemd-sysusers.service - Create System Users.[    2.475555] systemd[1]: Stopped systemd-sysusers.service - Create System Users.

[  OK  ] Stopped systemd-vconsole-s…rvice - Setup Virtual Console.[    2.476369] systemd[1]: systemd-vconsole-setup.service: Deactivated successfully.

[    2.477043] systemd[1]: Stopped systemd-vconsole-setup.service - Setup Virtual Console.
[  OK  ] Finished initrd-udevadm-cl…rvice - Cleanup udev Database.[    2.477710] systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.

[    2.478443] systemd[1]: Finished initrd-udevadm-cleanup-db.service - Cleanup udev Database.
[  OK  ] Reached target initrd-switch-root.target - Switch Root.[    2.479003] systemd[1]: Reached target initrd-switch-root.target - Switch Root.

         Starting initrd-switch-root.service - Switch Root...[    2.480196] systemd[1]: Starting initrd-switch-root.service - Switch Root...

[    2.485307] systemd[1]: Switching root.
[    2.614119] systemd-journald[257]: Received SIGTERM from PID 1 (systemd).
[    2.742072] SELinux:  policy capability network_peer_controls=1
[    2.742470] SELinux:  policy capability open_perms=1
[    2.742739] SELinux:  policy capability extended_socket_class=1
[    2.743057] SELinux:  policy capability always_check_network=0
[    2.743369] SELinux:  policy capability cgroup_seclabel=1
[    2.743659] SELinux:  policy capability nnp_nosuid_transition=1
[    2.743978] SELinux:  policy capability genfs_seclabel_symlinks=1
[    2.744300] SELinux:  policy capability ioctl_skip_cloexec=0
[    2.855421] systemd[1]: Successfully loaded SELinux policy in 195.490ms.
[    2.878792] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 16.678ms.
[    2.881559] systemd[1]: systemd v250.3-8.fc36 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[    2.883267] systemd[1]: Detected virtualization qemu.
[    2.883525] systemd[1]: Detected architecture arm64.

Welcome to Fedora CoreOS 36.20220511.dev.0!

[    2.957516] systemd[1]: Failed to link BPF program. Assuming BPF is not available
[    2.977768] zram_generator::config[693]: No configuration found.
[    3.124627] systemd[1]: initrd-switch-root.service: Deactivated successfully.
[    3.125181] systemd[1]: Stopped initrd-switch-root.service - Switch Root.
[  OK  ] Stopped initrd-switch-root.service - Switch Root.
[    3.126316] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
[    3.127094] systemd[1]: Created slice system-afterburn\x2dsshkeys.slice - Slice /system/afterburn-sshkeys.
[  OK  ] Created slice system-after…- Slice /system/afterburn-sshkeys.
[    3.128386] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
[  OK  ] Created slice system-getty.slice - Slice /system/getty.
[    3.129589] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[  OK  ] Created slice system-modpr…lice - Slice /system/modprobe.
[    3.130875] systemd[1]: Created slice system-serial\x2dgetty.slice - Slice /system/serial-getty.
[  OK  ] Created slice system-seria… - Slice /system/serial-getty.
[    3.132051] systemd[1]: Created slice system-sshd\x2dkeygen.slice - Slice /system/sshd-keygen.
[  OK  ] Created slice system-sshd\…e - Slice /system/sshd-keygen.
[    3.133181] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[  OK  ] Created slice system-syste… - Slice /system/systemd-fsck.
[    3.134301] systemd[1]: Created slice user.slice - User and Session Slice.
[  OK  ] Created slice user.slice - User and Session Slice.
[    3.135162] systemd[1]: Started clevis-luks-askpass.path - Forward Password Requests to Clevis Directory Watch.
[  OK  ] Started clevis-luks-askpas…equests to Clevis Directory Watch.
[    3.136170] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
[  OK  ] Started systemd-ask-passwo…quests to Console Directory Watch.
[    3.137191] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[  OK  ] Started systemd-ask-passwo… Requests to Wall Directory Watch.
[    3.138319] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[  OK  ] Set up automount proc-sys-…rmats File System Automount Point.
[    3.139556] systemd[1]: Reached target cryptsetup-pre.target - Local Encrypted Volumes (Pre).
[  OK  ] Reached target cryptsetup-…m - Local Encrypted Volumes (Pre).
[    3.140397] systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
[  OK  ] Reached target cryptsetup.…get - Local Encrypted Volumes.
[    3.141168] systemd[1]: Stopped target initrd-switch-root.target - Switch Root.
[  OK  ] Stopped target initrd-switch-root.target - Switch Root.
[    3.141895] systemd[1]: Stopped target initrd-fs.target - Initrd File Systems.
[  OK  ] Stopped target initrd-fs.target - Initrd File Systems.
[    3.142608] systemd[1]: Stopped target initrd-root-fs.target - Initrd Root File System.
[  OK  ] Stopped target initrd-root…get - Initrd Root File System.
[    3.143411] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[  OK  ] Reached target integrityse…Local Integrity Protected Volumes.
[    3.144249] systemd[1]: Reached target slices.target - Slice Units.
[  OK  ] Reached target slices.target - Slice Units.
[    3.144879] systemd[1]: Reached target swap.target - Swaps.
[  OK  ] Reached target swap.target - Swaps.
[    3.145403] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[  OK  ] Reached target veritysetup… - Local Verity Protected Volumes.
[    3.146297] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
[  OK  ] Listening on dm-event.sock… Device-mapper event daemon FIFOs.
[    3.147346] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
[  OK  ] Listening on lvm2-lvmpolld…ket - LVM2 poll daemon socket.
[    3.148088] systemd[1]: multipathd.socket - multipathd control socket was skipped because of a failed condition check (ConditionPathExists=/etc/multipath.conf).
[    3.149502] systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
[  OK  ] Listening on systemd-cored…et - Process Core Dump Socket.
[    3.150247] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[  OK  ] Listening on systemd-initc… initctl Compatibility Named Pipe.
[    3.151337] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[  OK  ] Listening on systemd-udevd….socket - udev Control Socket.
[    3.152141] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[  OK  ] Listening on systemd-udevd…l.socket - udev Kernel Socket.
[    3.152948] systemd[1]: Listening on systemd-userdbd.socket - User Database Manager Socket.
[  OK  ] Listening on systemd-userd…0m - User Database Manager Socket.
[    3.154137] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
         Mounting dev-hugepages.mount - Huge Pages File System...
[    3.155283] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
         Mounting dev-mqueue.mount…POSIX Message Queue File System...
[    3.156571] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
         Mounting sys-kernel-debug.… - Kernel Debug File System...
[    3.157677] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
         Mounting sys-kernel-tracin… - Kernel Trace File System...
[    3.158907] systemd[1]: Mounting tmp.mount - Temporary Directory /tmp...
         Mounting tmp.mount - Temporary Directory /tmp...
[    3.160583] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
         Starting kmod-static-nodes…ate List of Static Device Nodes...
[    3.161767] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
         Starting lvm2-monitor.serv…ng dmeventd or progress polling...
[    3.163279] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
         Starting modprobe@configfs…m - Load Kernel Module configfs...
[    3.164543] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
         Starting modprobe@drm.service - Load Kernel Module drm...
[    3.166136] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
         Starting modprobe@fuse.ser…e - Load Kernel Module fuse...
[    3.167634] systemd[1]: ostree-prepare-root.service: Deactivated successfully.
[    3.168045] systemd[1]: Stopped ostree-prepare-root.service - OSTree Prepare OS/.
[  OK  ] Stopped ostree-prepare-root.service - OSTree Prepare OS/.
[    3.169862] systemd[1]: systemd-fsck-root.service: Deactivated successfully.
[    3.170172] systemd[1]: Stopped systemd-fsck-root.service - File System Check on Root Device.
[  OK  ] Stopped systemd-fsck-root.… File System Check on Root Device.
[    3.170905] systemd[1]: Stopped systemd-journald.service - Journal Service.
[  OK  ] Stopped systemd-journald.service - Journal Service.
[    3.172493] systemd[1]: Starting systemd-journald.service - Journal Service...
         Starting systemd-journald.service - Journal Service...
[    3.173872] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
         Starting systemd-modules-l…rvice - Load Kernel Modules...
[    3.175523] systemd[1]: Starting systemd-network-generator.service - Generate network units from Kernel command line...
         Starting systemd-network-g… units from Kernel command line...
[    3.177318] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
         Starting systemd-remount-f…nt Root and Kernel File Systems...
[    3.179565] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
         Starting systemd-udev-trig…[0m - Coldplug All udev Devices...
[    3.182870] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[  OK  ] Mounted dev-hugepages.mount - Huge Pages File System.
[    3.183593] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[  OK  ] Mounted dev-mqueue.mount[…- POSIX Message Queue File System.
[    3.184694] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[  OK  ] Mounted sys-kernel-debug.m…nt - Kernel Debug File System.
[    3.185694] systemd[1]: Started systemd-journald.service - Journal Service.
[  OK  ] Started systemd-journald.service - Journal Service.
[  OK  ] Mounted sys-kernel-tracing…nt - Kernel Trace File System.
[  OK  ] Mounted tmp.mount - Temporary Directory /tmp.
[  OK  ] Finished kmod-static-nodes…reate List of Static Device Nodes.
[  OK  ] Finished modprobe@configfs…[0m - Load Kernel Module configfs.
[  OK  ] Finished modprobe@drm.service - Load Kernel Module drm.
[  OK  ] Finished modprobe@fuse.service - Load Kernel Module fuse.
[  OK  ] Finished systemd-modules-l…service - Load Kernel Modules.
[  OK  ] Finished systemd-network-g…rk units from Kernel command line.
[  OK  ] Finished systemd-remount-f…ount Root and Kernel File Systems.
[  OK  ] Reached target network-pre…get - Preparation for Network.
         Mounting sys-fs-fuse-conne… - FUSE Control File System...
         Mounting sys-kernel-config…ernel Configuration File System...
         Starting systemd-sysctl.se…ce - Apply Kernel Variables...
         Starting systemd-tmpfiles-…ate Static Device Nodes in /dev...
[  OK  ] Mounted sys-fs-fuse-connec…nt - FUSE Control File System.
[  OK  ] Mounted sys-kernel-config.… Kernel Configuration File System.
[  OK  ] Finished systemd-sysctl.service - Apply Kernel Variables.
[  OK  ] Finished systemd-tmpfiles-…reate Static Device Nodes in /dev.
         Starting systemd-udevd.ser…ger for Device Events and Files...
[  OK  ] Finished systemd-udev-trig…e - Coldplug All udev Devices.
         Starting systemd-udev-sett… Complete Device Initialization...
[  OK  ] Started systemd-udevd.serv…nager for Device Events and Files.
         Starting modprobe@configfs…m - Load Kernel Module configfs...
         Starting modprobe@fuse.ser…e - Load Kernel Module fuse...
[  OK  ] Finished modprobe@configfs…[0m - Load Kernel Module configfs.
[  OK  ] Finished modprobe@fuse.service - Load Kernel Module fuse.
[    3.283102] 9pnet: Installing 9P2000 support
[  OK  ] Finished lvm2-monitor.serv…sing dmeventd or progress polling.
[  OK  ] Finished systemd-udev-sett…To Complete Device Initialization.
[  OK  ] Reached target local-fs-pr…reparation for Local File Systems.
         Mounting var.mount - /var...
         Starting systemd-fsck@dev-…b72-ecc3-11ec-b79e-7b11a8d39345...
[  OK  ] Mounted var.mount - /var.
[  OK  ] Reached target machines.target - Containers.
         Starting ostree-remount.se… OSTree Remount OS/ Bind Mounts...
[  OK  ] Finished ostree-remount.se… - OSTree Remount OS/ Bind Mounts.
         Starting systemd-journal-f…h Journal to Persistent Storage...
         Starting systemd-random-se…ice - Load/Save Random Seed...
[    3.669649] systemd-journald[733]: Received client request to flush runtime journal.
[    3.671483] systemd-journald[733]: File /var/log/journal/e5084fb2ec7d49aaaf843f5c10755b6e/system.journal corrupted or uncleanly shut down, renaming and replacing.
[  OK  ] Finished systemd-fsck@dev-…a6b72-ecc3-11ec-b79e-7b11a8d39345.
         Mounting boot.mount - CoreOS Dynamic Mount for /boot...
[    3.683327] EXT4-fs (vda3): mounted filesystem with ordered data mode. Quota mode: none.
[  OK  ] Mounted boot.mount - CoreOS Dynamic Mount for /boot.
[  OK  ] Reached target local-fs.target - Local File Systems.
         Starting dracut-shutdown.s…tore /run/initramfs on shutdown...
         Starting systemd-boot-upda… - Automatic Boot Loader Update...
[  OK  ] Finished systemd-journal-f…ush Journal to Persistent Storage.
[  OK  ] Finished dracut-shutdown.s…estore /run/initramfs on shutdown.
         Starting systemd-tmpfiles-… Volatile Files and Directories...
[  OK  ] Finished systemd-boot-upda…0m - Automatic Boot Loader Update.
[  OK  ] Finished systemd-tmpfiles-…te Volatile Files and Directories.
         Starting systemd-resolved.…e - Network Name Resolution...
         Starting systemd-update-ut…rd System Boot/Shutdown in UTMP...
         Starting systemd-userdbd.s…ice - User Database Manager...
[  OK  ] Finished systemd-update-ut…cord System Boot/Shutdown in UTMP.
[  OK  ] Started systemd-userdbd.service - User Database Manager.
[  OK  ] Reached target sysinit.target - System Initialization.
[  OK  ] Started ostree-finalize-st… OSTree Monitor Staged Deployment.
[  OK  ] Started fstrim.timer - Discard unused blocks once a week.
[  OK  ] Started logrotate.timer - Daily rotation of log files.
[  OK  ] Started raid-check.timer[… - Weekly RAID setup health check.
[  OK  ] Started rpm-ostree-countme… Weekly rpm-ostree Count Me timer.
[  OK  ] Started systemd-tmpfiles-c… Cleanup of Temporary Directories.
[  OK  ] Reached target boot-comple…arget - Boot Completion Check.
[  OK  ] Reached target paths.target - Path Units.
[  OK  ] Reached target timers.target - Timer Units.
[  OK  ] Listening on bootupd.socket.
[  OK  ] Listening on dbus.socket[…- D-Bus System Message Bus Socket.
[  OK  ] Listening on iscsid.socket - Open-iSCSI iscsid Socket.
[  OK  ] Listening on iscsiuio.sock… - Open-iSCSI iscsiuio Socket.
[  OK  ] Listening on podman.socket - Podman API Socket.
[  OK  ] Reached target sockets.target - Socket Units.
[  OK  ] Reached target basic.target - Basic System.
         Starting NetworkManager.service - Network Manager...
[  OK  ] Reached target afterburn-s…hkeys@.service template instances.
         Starting chronyd.service - NTP client/server...
         Starting console-login-hel…a console-login-helper-messages...
         Starting coreos-ignition-w…ate Ignition Status Issue Files...
         Starting envset-fwcfg.serv…ronment setter from QEMU FW_CFG...
         Starting fedora-coreos-pin…metry service for Fedora CoreOS...
[  OK  ] Started irqbalance.service - irqbalance daemon.
[  OK  ] Reached target sshd-keygen.target.
         Starting console-login-hel…a console-login-helper-messages...
[  OK  ] Reached target nss-user-lo…[0m - User and Group Name Lookups.
         Starting systemd-homed.service - Home Area Manager...
         Starting systemd-logind.se…ice - User Login Management...
[  OK  ] Finished fedora-coreos-pin…lemetry service for Fedora CoreOS.
[  OK  ] Finished console-login-hel…via console-login-helper-messages.
         Starting dbus-broker.servi… - D-Bus System Message Bus...
[    3.993972] zram_generator::config[882]: No configuration found.
[  OK  ] Started dbus-broker.service - D-Bus System Message Bus.
[  OK  ] Started chronyd.service - NTP client/server.
[  OK  ] Finished coreos-ignition-w…reate Ignition Status Issue Files.
[  OK  ] Finished envset-fwcfg.serv…vironment setter from QEMU FW_CFG.
[  OK  ] Started NetworkManager.service - Network Manager.
[  OK  ] Started systemd-homed.service - Home Area Manager.
[  OK  ] Finished systemd-homed-act…ervice - Home Area Activation.
         Starting systemd-hostnamed.service - Hostname Service...
[  OK  ] Started systemd-logind.service - User Login Management.
[  OK  ] Started systemd-hostnamed.service - Hostname Service.
[  OK  ] Listening on systemd-rfkil…l Switch Status /dev/rfkill Watch.
         Starting NetworkManager-di…nager Script Dispatcher Service...
[  OK  ] Started NetworkManager-dis…Manager Script Dispatcher Service.
[*     ] (1 of 3) Job systemd-random-seed.service/start running (3s / 10min)
[    6.729129] random: crng init done
[    6.729325] random: 7 urandom warning(s) missed due to ratelimiting
M
[  OK  ] Finished systemd-random-se…rvice - Load/Save Random Seed.
[    6.732881] kauditd_printk_skb: 256 callbacks suppressed
[    6.732883] audit: type=1130 audit(1656270689.618:237): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-random-seed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Finished console-login-hel…via console-login-helper-messages.
[    6.744642] audit: type=1130 audit(1656270689.628:238): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=console-login-helper-messages-gensnippet-ssh-keys comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Started systemd-resolved.s…ice - Network Name Resolution.
[    6.770066] audit: type=1130 audit(1656270689.658:239): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-resolved comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Reached target network.target - Network.
[  OK  ] Reached target nss-lookup.…m - Host and Network Name Lookups.
[  OK  ] Reached target remote-fs-p…eparation for Remote File Systems.
[  OK  ] Reached target remote-cryp…et - Remote Encrypted Volumes.
[  OK  ] Reached target remote-fs.target - Remote File Systems.
         Starting sshd.service - OpenSSH server daemon...
         Starting systemd-user-sess…vice - Permit User Sessions...
         Starting zincati.service - Zincati Update Agent...
[  OK  ] Finished systemd-user-sess…ervice - Permit User Sessions.
[    6.820992] audit: type=1130 audit(1656270689.708:240): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-user-sessions comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Created slice user-501.slice - User Slice of UID 501.
[  OK  ] Started getty@tty1.service - Getty on tty1.
[    6.825166] audit: type=1130 audit(1656270689.708:241): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=getty@tty1 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Started serial-getty@ttyAM…ice - Serial Getty on ttyAMA0.
[    6.828367] audit: type=1130 audit(1656270689.708:242): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=serial-getty@ttyAMA0 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  OK  ] Reached target getty.target - Login Prompts.
         Starting user-runtime-dir@…Runtime Directory /run/user/501...
[  OK  ] Started sshd.service - OpenSSH server daemon.
[    6.833958] audit: type=1130 audit(1656270689.718:243): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sshd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting ready.service...
[  OK  ] Finished ready.service.
[    6.841053] audit: type=1130 audit(1656270689.728:244): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=ready comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[    6.849655] audit: type=2404 audit(1656270689.738:245): pid=997 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=destroy kind=server fp=SHA256:5b:de:bd:15:df:98:e1:29:a1:f8:8c:0c:0f:30:17:f8:8c:4a:18:12:4c:05:16:13:8f:30:62:38:64:1e:cf:68 direction=? spid=997 suid=0  exe="/usr/sbin/sshd" hostname=? addr=? terminal=? res=success'
[  OK  ] Finished user-runtime-dir@…r Runtime Directory /run/user/501.
[    6.858538] audit: type=1130 audit(1656270689.738:246): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=user-runtime-dir@501 comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
         Starting user@501.service - User Manager for UID 501...
         Starting rpm-ostreed.servi…ostree System Management Daemon...
         Starting polkit.service - Authorization Manager...
[  OK  ] Started polkit.service - Authorization Manager.
[  OK  ] Started rpm-ostreed.servic…m-ostree System Management Daemon.
[  OK  ] Started user@501.service - User Manager for UID 501.
[  OK  ] Started session-2.scope - Session 2 of User core.
[  OK  ] Started zincati.service - Zincati Update Agent.
[  OK  ] Reached target multi-user.target - Multi-User System.
         Starting systemd-update-ut… Record Runlevel Change in UTMP...
[  OK  ] Finished systemd-update-ut… - Record Runlevel Change in UTMP.
[    7.030959] fbcon: Taking over console
[    7.538504] FS-Cache: Loaded
[    7.543277] 9p: Installing v9fs 9p2000 file system support

Fedora CoreOS 36.20220511.dev.0
Kernel 5.17.5-300.fc36.aarch64 on an aarch64 (ttyAMA0)

SSH host key: SHA256:W969Fd+Y4Smh+IwMDzAX+IxKGBJMBRYTjzBiOGQez2g (ED25519)
SSH host key: SHA256:5cRKJpU7Oc+iZyZROf1yBQZPazUm6IS8KQLy0y567KM (ECDSA)
SSH host key: SHA256:pU7ec7zaGVdeKFbrI8tPtErKYcr0xWMDm6STokTtR8g (RSA)
Ignition: ran on 2022/06/15 10:55:15 CDT (at least 3 boots ago)
Ignition: user-provided config was applied
Ignition: wrote ssh authorized keys file for user: core
Ignition: wrote ssh authorized keys file for user: root
localhost login: [   16.043262] kauditd_printk_skb: 103 callbacks suppressed
[   16.043274] audit: type=1131 audit(1656270698.928:342): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=NetworkManager-dispatcher comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   36.017816] audit: type=1131 audit(1656270718.898:343): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-hostnamed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[   36.172719] audit: type=1334 audit(1656270719.048:344): prog-id=0 op=UNLOAD
[   36.175918] audit: type=1334 audit(1656270719.048:345): prog-id=0 op=UNLOAD
[   67.870500] audit: type=1131 audit(1656270750.951:346): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=rpm-ostreed comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  185.192323] audit: type=2404 audit(1656270868.277:347): pid=1162 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=destroy kind=server fp=SHA256:5b:de:bd:15:df:98:e1:29:a1:f8:8c:0c:0f:30:17:f8:8c:4a:18:12:4c:05:16:13:8f:30:62:38:64:1e:cf:68 direction=? spid=1162 suid=0  exe="/usr/sbin/sshd" hostname=? addr=? terminal=? res=success'
[  185.195894] audit: type=2407 audit(1656270868.277:348): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=start direction=from-server cipher=aes128-gcm@openssh.com ksize=128 mac=<implicit> pfs=curve25519-sha256 spid=1162 suid=74 rport=39207 laddr=192.168.127.2 lport=22  exe="/usr/sbin/sshd" hostname=? addr=192.168.127.1 terminal=? res=success'
[  185.198876] audit: type=2407 audit(1656270868.277:349): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=start direction=from-client cipher=aes128-gcm@openssh.com ksize=128 mac=<implicit> pfs=curve25519-sha256 spid=1162 suid=74 rport=39207 laddr=192.168.127.2 lport=22  exe="/usr/sbin/sshd" hostname=? addr=192.168.127.1 terminal=? res=success'
[  185.226477] audit: type=1100 audit(1656270868.307:350): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=pubkey_auth grantors=auth-key acct="core" exe="/usr/sbin/sshd" hostname=? addr=192.168.127.1 terminal=? res=success'
[  185.228489] audit: type=2404 audit(1656270868.307:351): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=negotiate kind=auth-key fp=SHA256:2c:b0:b6:8d:d9:e0:ba:f2:a5:95:78:02:15:ef:00:ff:08:81:18:b5:a3:83:ef:8c:2f:ae:a4:66:de:42:de:ee exe="/usr/sbin/sshd" hostname=? addr=192.168.127.1 terminal=? res=success'
[  185.243253] audit: type=1101 audit(1656270868.317:352): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=PAM:accounting grantors=pam_unix,pam_localuser acct="core" exe="/usr/sbin/sshd" hostname=192.168.127.1 addr=192.168.127.1 terminal=ssh res=success'
[  185.245394] audit: type=2404 audit(1656270868.327:353): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=destroy kind=session fp=? direction=both spid=1162 suid=74 rport=39207 laddr=192.168.127.2 lport=22  exe="/usr/sbin/sshd" hostname=? addr=192.168.127.1 terminal=? res=success'
[  185.247518] audit: type=1103 audit(1656270868.327:354): pid=1161 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 msg='op=PAM:setcred grantors=pam_env,pam_localuser,pam_unix acct="core" exe="/usr/sbin/sshd" hostname=192.168.127.1 addr=192.168.127.1 terminal=ssh res=success'
[  185.249891] audit: type=1006 audit(1656270868.327:355): pid=1161 uid=0 subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 old-auid=4294967295 auid=501 tty=(none) old-ses=4294967295 ses=5 res=1
[  185.252001] audit: type=1300 audit(1656270868.327:355): arch=c00000b7 syscall=64 success=yes exit=3 a0=3 a1=ffffed15da80 a2=3 a3=ffff83957020 items=0 ppid=984 pid=1161 auid=501 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=(none) ses=5 comm="sshd" exe="/usr/sbin/sshd" subj=system_u:system_r:sshd_t:s0-s0:c0.c1023 key=(null)
[  942.344789] kauditd_printk_skb: 10 callbacks suppressed
[  942.344797] audit: type=1130 audit(1656271641.503:365): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'
[  942.349058] audit: type=1131 audit(1656271641.503:366): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-clean comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success'

5. References