coreos / fedora-coreos-tracker

Issue tracker for Fedora CoreOS
https://fedoraproject.org/coreos/
264 stars 59 forks source link

unable ssh login #663

Closed skycastlelily closed 4 years ago

skycastlelily commented 4 years ago

Here is the ign file I used:

{
  "ignition": {
    "version": "3.1.0"
  },
  "passwd": {
    "users": [
      {
        "name": "core",
        "sshAuthorizedKeys": [
          "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDTMN33vFBGNLlPju9KcKPYBjonumraOo86mJsT3wnQuJHVMrsU5XWR/In5zaLx/AxZTSoURWeUVWKwaVq2iAFUOmKk66Sr4M1qsytHUcOmGfb8EsxF3mwFSq8shOkNqQiZSD5EgbsxqUh3SSa8VrAmIkipA93Tpcwb+q0oPGg9tZqZVaFSi6pIEavLhKD+J908NiTVhIIUxdxxFUae4bUFms52rUTeoCtvZHIkYzwClYupNMU19srDBFEBBoXy12y/zOWgcI/nKrRXEo6W+/Z/PSq15x5bA7vINOmPwpcnkxyvFW8npCLkn0I48Ks3xZFJMgGOfMVcKeyTqQqeenzJQs77hZZKT5rPauMnQzm3rAKjcMoYLTe+RlNtch5wg2fwAM7qvAY5uX7wy8XhdUmK6J2SwziwQJ72TVLVLEEw+HJWpNGAGVGNTUKECbtF7TNCvuoWnRJxF/goShHs6GyE0pywIwbp7USxwzFgVcYA+xHVxxxxThXUXfWTc= lnie@bogon"
        ]
      }
    ]
  }
}

and here is the command I used to create the VM:

virt-install --name=fcosyy --vcpus=2 --memory=2048 --import --graphics=none --qemu-commandline="-fw_cfg name=opt/com.coreos/config,file=/home/lnie/test.ign" --disk="size=20,backing_store=/home/lnie/fedora-coreos-33.20201104.1.0-qemu.x86_64.qcow2"

Expected behavior I'm able to login by run "ssh core@ip_address" with lnie

Actual behavior

[lnie@localhost ~]$ ssh core@192.168.122.118
The authenticity of host '192.168.122.118 (192.168.122.118)' can't be established.
ECDSA key fingerprint is SHA256:JV0bLUN4AD+6yTJmJ+KZqgIOhm35KgvRSZ3McNmnmeg.
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.122.118' (ECDSA) to the list of known hosts.
core@192.168.122.118: Permission denied (publickey,gssapi-keyex,gssapi-with-mic)

System details

Additional information I try to add the following to the yaml which helped me automatically login to VM created with older versions,didn't work

systemd:
  units:
    - name: serial-getty@ttyS0.service
      dropins:
      - name: autologin-core.conf
        contents: |
          [Service]
          # Override Execstart in main unit
          ExecStart=
          # Add new Execstart with `-` prefix to ignore failure
          ExecStart=-/usr/sbin/agetty --autologin core --noclear %I $TERM
          TTYVTDisallocate=no
lucab commented 4 years ago

Thanks for the report. We have CI testing this exact flow so it's unlikely (but still possible) that it regressed.

Can you please check the node console as soon as it completes booting? It should mention that an authorized key for the core user has been added by Ignition.

lucab commented 4 years ago

It would also be helpful to reboot into single mode (steps described in our docs) and extract the full logs from the first boot (see journalctl --list-boots), to attach here.

skycastlelily commented 4 years ago

There is no grub menu showed,I added the following to the yaml password_hash:"$6$ansiogjasd0io9u3$9E1vMbLbXW14grtguedFGVjvhyBz1T.KIA3MJl1SWnGbtTpiXIAjbazIQAUKRNkNIEmd3mI0NCkFIVBrN41fZ." but failed to login the newly installed system:

fedora login: core Password: [ 211.931797] audit: type=1100 audit(1604670355.421:194): pid=1913 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=PAM:authentication grantors=? acct="core" exe="/usr/bin/login" hostname=fedora addr=? terminal=ttyS0 res=failed' Login incorrect

fedora login: [ 213.639122] audit: type=1112 audit(1604670357.127:195): pid=1913 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:local_login_t:s0-s0:c0.c1023 msg='op=login id=1000 exe="/usr/bin/login" hostname=fedora addr=? terminal=ttyS0 res=failed'

jlebon commented 4 years ago

Are you on a platform with SELinux enabled? Make sure that your Ignition config is labelled correctly (e.g. chcon -t svirt_home_t /home/lnie/test.ign).

travier commented 4 years ago

Are you starting from scratch with a fresh machine every time you change the Ignition config? Contrary to cloud-init, Ignition only runs once, and will thus not pick changes if you keep the same virtual machine with a new Ignition config.

basvdlei commented 4 years ago

I also ran into issues when testing the latest next release 33.20201104.1.0 using Vagrant. This is related to the removal of ssh-rsa from the PubkeyAcceptedKeyTypes.

sshd[2117]: userauth_pubkey: key type ssh-rsa not in PubkeyAcceptedKeyTypes [preauth]

Most recent SSH clients are still able to connect with ssh-rsa keys by using a sha2-256/512 signature algorithm. But the pure rubygem used by Vagrant net::ssh, a pure ruby implementation of ssh, that is shipped in Fedora 33 does not seem to do this.

dustymabe commented 4 years ago

@skycastlelily - what OS/Version is your host machine?

Can you try switching to a non-rsa key type (not required as mentioned by @basvdlei, but is an easy way to test if that's the issue) and see if you still have the problem?

skycastlelily commented 4 years ago

Make sure that your Ignition config is labelled correctly (e.g. chcon -t svirt_home_t /home/lnie/test.ign).

I ran "chcon --verbose unconfined_u:object_r:svirt_home_t:s0 /home/lnie/test.ign"

Are you starting from scratch with a fresh machine every time you change the Ignition config?

yes

what OS/Version is your host machine?

I found it on f32 workstation host

Can you try switching to a non-rsa key type (not required as mentioned by @basvdlei, but is an easy way to test if that's the issue) and see if you still have the problem?

I switched to dsa key,still doesn't work

The weird thing is: It works well on remote beaker machines,then I reinstalled my local machine with Fedora-Workstation-Live-x86_64-32-1.6.iso, the virt-install command asked me to active default network(beaker machine didn't ask me to do that),and after I active the default network,and run the virt-install command,it failed as described.All the beaker machines has latest stable packages installed by default,I thought that's the difference,then I dnf update my local machine,and reboot,and run the virt-install again,still failed....

travier commented 4 years ago

I switched to dsa key,still doesn't work

Can you try ed25519 or ecdsa?

skycastlelily commented 4 years ago

I've tried with ed25519 and ecdsa,what also weird is that fedora-coreos-32.20200601.2.1-qemu.x86_64.qcow2 works well on the same host

dustymabe commented 4 years ago

The latest stable stream release is 32.20201018.3.0. The latest next stream release is 33.20201104.1.0.

If I understand you correctly it seems like the problem was introduced with F33. Can you verify that 32.20201018.3.0 works for you, but 33.20201104.1.0 doesn't?

skycastlelily commented 4 years ago

Checked, yes,32.20201018.3.0 works,but 33.20201104.1.0 doesn't.

dustymabe commented 4 years ago

@skycastlelily - any chance you can provide us the full logs from the boot from the attempt with 33.20201104.1.0?

skycastlelily commented 4 years ago

Sure:

``` [ 0.000000] Linux version 5.8.17-300.fc33.x86_64 (mockbuild@bkernel01.iad2.fedoraproject.org) (gcc (GCC) 10.2.1 20201016 (Red Hat 10.2.1-6), GNU ld version 2.35-11.fc33) #1 SMP Thu Oct 29 15:55:40 UTC 2020 [ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt1)/ostree/fedora-coreos-14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/vmlinuz-5.8.17-300.fc33.x86_64 mitigations=auto,nosmt systemd.unified_cgroup_hierarchy=0 console=tty0 console=ttyS0,115200n8 ignition.platform.id=qemu ostree=/ostree/boot.1/fedora-coreos/14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/0 root=UUID=22e21fee-abb1-4e69-8e86-dcc1b91d0bb9 rw rootflags=prjquota [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format. [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdffff] usable [ 0.000000] BIOS-e820: [mem 0x000000007ffe0000-0x000000007fffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved [ 0.000000] NX (Execute Disable) protection: active [ 0.000000] SMBIOS 2.8 present. [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS ?-20190727_073836-buildvm-ppc64le-16.ppc.fedoraproject.org-3.fc31 04/01/2014 [ 0.000000] Hypervisor detected: KVM [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00 [ 0.000000] kvm-clock: cpu 0, msr 7b601001, primary cpu clock [ 0.000000] kvm-clock: using sched offset of 17040463606 cycles [ 0.000005] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns [ 0.000012] tsc: Detected 2111.998 MHz processor [ 0.000300] last_pfn = 0x7ffe0 max_arch_pfn = 0x400000000 [ 0.000346] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT [ 0.006698] found SMP MP-table at [mem 0x000f5c80-0x000f5c8f] [ 0.006831] Using GB pages for direct mapping [ 0.006938] RAMDISK: [mem 0x2eedb000-0x33765fff] [ 0.006954] ACPI: Early table checksum verification disabled [ 0.006967] ACPI: RSDP 0x00000000000F5A40 000014 (v00 BOCHS ) [ 0.006973] ACPI: RSDT 0x000000007FFE1529 00002C (v01 BOCHS BXPCRSDT 00000001 BXPC 00000001) [ 0.006982] ACPI: FACP 0x000000007FFE1435 000074 (v01 BOCHS BXPCFACP 00000001 BXPC 00000001) [ 0.006993] ACPI: DSDT 0x000000007FFE0040 0013F5 (v01 BOCHS BXPCDSDT 00000001 BXPC 00000001) [ 0.006996] ACPI: FACS 0x000000007FFE0000 000040 [ 0.006998] ACPI: APIC 0x000000007FFE14A9 000080 (v01 BOCHS BXPCAPIC 00000001 BXPC 00000001) [ 0.007158] No NUMA configuration found [ 0.007159] Faking a node at [mem 0x0000000000000000-0x000000007ffdffff] [ 0.007170] NODE_DATA(0) allocated [mem 0x7ffb5000-0x7ffdffff] [ 0.018376] Zone ranges: [ 0.018381] DMA [mem 0x0000000000001000-0x0000000000ffffff] [ 0.018382] DMA32 [mem 0x0000000001000000-0x000000007ffdffff] [ 0.018382] Normal empty [ 0.018383] Device empty [ 0.018386] Movable zone start for each node [ 0.018388] Early memory node ranges [ 0.018388] node 0: [mem 0x0000000000001000-0x000000000009efff] [ 0.018389] node 0: [mem 0x0000000000100000-0x000000007ffdffff] [ 0.018392] Zeroed struct page in unavailable ranges: 130 pages [ 0.018392] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdffff] [ 0.020924] ACPI: PM-Timer IO Port: 0x608 [ 0.020941] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1]) [ 0.020963] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23 [ 0.020968] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) [ 0.020970] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level) [ 0.020971] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) [ 0.020973] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level) [ 0.020974] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level) [ 0.020978] Using ACPI (MADT) for SMP configuration information [ 0.020988] TSC deadline timer available [ 0.020991] smpboot: Allowing 2 CPUs, 0 hotplug CPUs [ 0.021014] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] [ 0.021015] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff] [ 0.021016] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff] [ 0.021016] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff] [ 0.021017] [mem 0x80000000-0xfeffbfff] available for PCI devices [ 0.021018] Booting paravirtualized kernel on KVM [ 0.021020] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns [ 0.024678] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1 [ 0.025990] percpu: Embedded 54 pages/cpu s184320 r8192 d28672 u1048576 [ 0.026025] KVM setup async PF for cpu 0 [ 0.026029] kvm-stealtime: cpu 0, msr 7dc2c080 [ 0.026035] Built 1 zonelists, mobility grouping on. Total pages: 515945 [ 0.026036] Policy zone: DMA32 [ 0.026037] Kernel command line: BOOT_IMAGE=(hd0,gpt1)/ostree/fedora-coreos-14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/vmlinuz-5.8.17-300.fc33.x86_64 mitigations=auto,nosmt systemd.unified_cgroup_hierarchy=0 console=tty0 console=ttyS0,115200n8 ignition.platform.id=qemu ostree=/ostree/boot.1/fedora-coreos/14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/0 root=UUID=22e21fee-abb1-4e69-8e86-dcc1b91d0bb9 rw rootflags=prjquota [ 0.027398] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear) [ 0.027746] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear) [ 0.027789] mem auto-init: stack:off, heap alloc:off, heap free:off [ 0.030931] Memory: 1944756K/2096632K available (14339K kernel code, 2499K rwdata, 8752K rodata, 2508K init, 4636K bss, 151876K reserved, 0K cma-reserved) [ 0.030952] random: get_random_u64 called from __kmem_cache_create+0x3e/0x610 with crng_init=0 [ 0.031434] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1 [ 0.031454] ftrace: allocating 43520 entries in 171 pages [ 0.044651] ftrace: allocated 170 pages with 4 groups [ 0.046021] rcu: Hierarchical RCU implementation. [ 0.046024] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2. [ 0.046025] Trampoline variant of Tasks RCU enabled. [ 0.046026] Rude variant of Tasks RCU enabled. [ 0.046026] Tracing variant of Tasks RCU enabled. [ 0.046027] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. [ 0.046028] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2 [ 0.048405] NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16 [ 0.048567] random: crng done (trusting CPU's manufacturer) [ 0.048637] Console: colour *CGA 80x25 [ 0.050821] printk: console [tty0] enabled [ 0.109553] printk: console [ttyS0] enabled [ 0.110047] ACPI: Core revision 20200528 [ 0.110521] APIC: Switch to symmetric I/O mode setup [ 0.111198] x2apic enabled [ 0.111666] Switched APIC routing to physical x2apic. [ 0.113107] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1e71768ef8b, max_idle_ns: 440795218977 ns [ 0.114966] Calibrating delay loop (skipped) preset value.. 4223.99 BogoMIPS (lpj=2111998) [ 0.115861] pid_max: default: 32768 minimum: 301 [ 0.115961] LSM: Security Framework initializing [ 0.115961] Yama: becoming mindful. [ 0.115961] SELinux: Initializing. [ 0.115961] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.115961] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear) [ 0.115961] x86/cpu: User Mode Instruction Prevention (UMIP) activated [ 0.115961] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 [ 0.115961] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 [ 0.115961] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization [ 0.115961] Spectre V2 : Mitigation: Enhanced IBRS [ 0.115961] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch [ 0.115961] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier [ 0.115961] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp [ 0.115961] TAA: Vulnerable: Clear CPU buffers attempted, no microcode [ 0.115961] SRBDS: Unknown: Dependent on hypervisor status [ 0.115961] Freeing SMP alternatives memory: 40K [ 0.115961] smpboot: CPU0: Intel Core Processor (Skylake, IBRS) (family: 0x6, model: 0x5e, stepping: 0x3) [ 0.116073] Performance Events: unsupported p6 CPU model 94 no PMU driver, software events only. [ 0.116897] rcu: Hierarchical SRCU implementation. [ 0.117334] NMI watchdog: Perf NMI watchdog permanently disabled [ 0.118024] smp: Bringing up secondary CPUs ... [ 0.118624] x86: Booting SMP configuration: [ 0.118957] .... node #0, CPUs: #1 [ 0.067430] kvm-clock: cpu 1, msr 7b601041, secondary cpu clock [ 0.067430] smpboot: CPU 1 Converting physical 0 to logical die 1 [ 0.121032] KVM setup async PF for cpu 1 [ 0.121417] kvm-stealtime: cpu 1, msr 7dd2c080 [ 0.121993] smp: Brought up 1 node, 2 CPUs [ 0.122314] smpboot: Max logical packages: 2 [ 0.122628] smpboot: Total of 2 processors activated (8447.99 BogoMIPS) [ 0.123273] devtmpfs: initialized [ 0.123319] x86/mm: Memory block size: 128MB [ 0.124291] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns [ 0.124969] futex hash table entries: 512 (order: 3, 32768 bytes, linear) [ 0.125526] xor: automatically using best checksumming function avx [ 0.125970] pinctrl core: initialized pinctrl subsystem [ 0.126460] PM: RTC time: 02:18:23, date: 2020-11-12 [ 0.126828] thermal_sys: Registered thermal governor 'fair_share' [ 0.126828] thermal_sys: Registered thermal governor 'bang_bang' [ 0.126970] thermal_sys: Registered thermal governor 'step_wise' [ 0.127548] thermal_sys: Registered thermal governor 'user_space' [ 0.131488] NET: Registered protocol family 16 [ 0.132864] DMA: preallocated 256 KiB GFP_KERNEL pool for atomic allocations [ 0.133022] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations [ 0.134018] DMA: preallocated 256 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations [ 0.135006] audit: initializing netlink subsys (disabled) [ 0.136016] audit: type=2000 audit(1605147504.177:1): state=initialized audit_enabled=0 res=1 [ 0.136983] cpuidle: using governor menu [ 0.138131] ACPI: bus type PCI registered [ 0.138501] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 [ 0.139249] PCI: Using configuration type 1 for base access [ 0.141029] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages [ 0.141494] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages [ 0.227048] cryptd: max_cpu_qlen set to 1000 [ 0.228123] alg: No test for 842 (842-generic) [ 0.228981] alg: No test for 842 (842-scomp) [ 0.233080] raid6: skip pq benchmark and using algorithm avx2x4 [ 0.233606] raid6: using avx2x2 recovery algorithm [ 0.234005] ACPI: Added _OSI(Module Device) [ 0.234427] ACPI: Added _OSI(Processor Device) [ 0.234877] ACPI: Added _OSI(3.0 _SCP Extensions) [ 0.234974] ACPI: Added _OSI(Processor Aggregator Device) [ 0.235432] ACPI: Added _OSI(Linux-Dell-Video) [ 0.235826] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) [ 0.235968] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) [ 0.236734] ACPI: 1 ACPI AML tables successfully acquired and loaded [ 0.238153] ACPI: Interpreter enabled [ 0.238476] ACPI: (supports S0 S5) [ 0.238752] ACPI: Using IOAPIC for interrupt routing [ 0.238980] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug [ 0.239697] ACPI: Enabled 2 GPEs in block 00 to 0F [ 0.241190] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff]) [ 0.241712] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3] [ 0.241977] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge. [ 0.243034] acpiphp: Slot [2] registered [ 0.243387] acpiphp: Slot [4] registered [ 0.243732] acpiphp: Slot [5] registered [ 0.244007] acpiphp: Slot [6] registered [ 0.244349] acpiphp: Slot [7] registered [ 0.244671] acpiphp: Slot [8] registered [ 0.244976] acpiphp: Slot [9] registered [ 0.245316] acpiphp: Slot [10] registered [ 0.245688] acpiphp: Slot [11] registered [ 0.245979] acpiphp: Slot [12] registered [ 0.246336] acpiphp: Slot [13] registered [ 0.246686] acpiphp: Slot [14] registered [ 0.246975] acpiphp: Slot [15] registered [ 0.247323] acpiphp: Slot [16] registered [ 0.247676] acpiphp: Slot [17] registered [ 0.247975] acpiphp: Slot [18] registered [ 0.248324] acpiphp: Slot [19] registered [ 0.248678] acpiphp: Slot [20] registered [ 0.248975] acpiphp: Slot [21] registered [ 0.249323] acpiphp: Slot [22] registered [ 0.249676] acpiphp: Slot [23] registered [ 0.249976] acpiphp: Slot [24] registered [ 0.250334] acpiphp: Slot [25] registered [ 0.250679] acpiphp: Slot [26] registered [ 0.250979] acpiphp: Slot [27] registered [ 0.251571] acpiphp: Slot [28] registered [ 0.252026] acpiphp: Slot [29] registered [ 0.252499] acpiphp: Slot [30] registered [ 0.252875] acpiphp: Slot [31] registered [ 0.252991] PCI host bridge to bus 0000:00 [ 0.253975] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] [ 0.254469] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] [ 0.254967] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] [ 0.255521] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window] [ 0.255965] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window] [ 0.256517] pci_bus 0000:00: root bus resource [bus 00-ff] [ 0.256952] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 [ 0.257200] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 [ 0.257898] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180 [ 0.258966] pci 0000:00:01.1: reg 0x20: [io 0xc0c0-0xc0cf] [ 0.259840] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7] [ 0.259968] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6] [ 0.260610] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177] [ 0.260971] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376] [ 0.262076] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000 [ 0.263166] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI [ 0.263871] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB [ 0.264113] pci 0000:00:02.0: [8086:100e] type 00 class 0x020000 [ 0.264965] pci 0000:00:02.0: reg 0x10: [mem 0xfebc0000-0xfebdffff] [ 0.265887] pci 0000:00:02.0: reg 0x14: [io 0xc000-0xc03f] [ 0.268976] pci 0000:00:02.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref] [ 0.270161] pci 0000:00:03.0: [8086:2934] type 00 class 0x0c0300 [ 0.271672] pci 0000:00:03.0: reg 0x20: [io 0xc040-0xc05f] [ 0.272391] pci 0000:00:03.1: [8086:2935] type 00 class 0x0c0300 [ 0.273585] pci 0000:00:03.1: reg 0x20: [io 0xc060-0xc07f] [ 0.274473] pci 0000:00:03.2: [8086:2936] type 00 class 0x0c0300 [ 0.276082] pci 0000:00:03.2: reg 0x20: [io 0xc080-0xc09f] [ 0.277708] pci 0000:00:03.7: [8086:293a] type 00 class 0x0c0320 [ 0.278292] pci 0000:00:03.7: reg 0x10: [mem 0xfebe0000-0xfebe0fff] [ 0.280547] pci 0000:00:04.0: [1af4:1002] type 00 class 0x00ff00 [ 0.281355] pci 0000:00:04.0: reg 0x10: [io 0xc0a0-0xc0bf] [ 0.282969] pci 0000:00:04.0: reg 0x20: [mem 0xfebfc000-0xfebfffff 64bit pref] [ 0.284458] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11) [ 0.285006] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11) [ 0.285484] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11) [ 0.285944] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11) [ 0.285993] ACPI: PCI Interrupt Link [LNKS] (IRQs *9) [ 0.286662] iommu: Default domain type: Translated [ 0.286991] vgaarb: loaded [ 0.287274] SCSI subsystem initialized [ 0.287580] ACPI: bus type USB registered [ 0.287980] usbcore: registered new interface driver usbfs [ 0.288415] usbcore: registered new interface driver hub [ 0.288819] usbcore: registered new device driver usb [ 0.288989] pps_core: LinuxPPS API ver. 1 registered [ 0.289365] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti [ 0.289950] PTP clock support registered [ 0.289988] EDAC MC: Ver: 3.0.0 [ 0.290312] NetLabel: Initializing [ 0.290315] NetLabel: domain hash size = 128 [ 0.290969] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO [ 0.291378] NetLabel: unlabeled traffic allowed by default [ 0.291755] PCI: Using ACPI for IRQ routing [ 0.292467] clocksource: Switched to clocksource kvm-clock [ 0.307569] VFS: Disk quotas dquot_6.6.0 [ 0.308155] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) [ 0.308910] pnp: PnP ACPI init [ 0.312611] pnp: PnP ACPI: found 5 devices [ 0.319594] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns [ 0.320541] NET: Registered protocol family 2 [ 0.321541] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear) [ 0.322542] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear) [ 0.323343] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear) [ 0.324170] TCP: Hash tables configured (established 16384 bind 16384) [ 0.326278] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.327106] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear) [ 0.327989] NET: Registered protocol family 1 [ 0.328471] NET: Registered protocol family 44 [ 0.329006] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] [ 0.329624] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] [ 0.330062] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window] [ 0.330526] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window] [ 0.331003] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window] [ 0.331506] pci 0000:00:01.0: PIIX3: Enabling Passive Release [ 0.331905] pci 0000:00:00.0: Limiting direct PCI/PCI transfers [ 0.332330] pci 0000:00:01.0: Activating ISA DMA hang workarounds [ 0.346260] PCI Interrupt Link [LNKC] enabled at IRQ 11 [ 0.363962] pci 0000:00:03.0: quirk_usb_early_handoff+0x0/0x669 took 30462 usecs [ 0.378161] PCI Interrupt Link [LNKD] enabled at IRQ 10 [ 0.391338] pci 0000:00:03.1: quirk_usb_early_handoff+0x0/0x669 took 26169 usecs [ 0.409669] PCI Interrupt Link [LNKA] enabled at IRQ 10 [ 0.426608] pci 0000:00:03.2: quirk_usb_early_handoff+0x0/0x669 took 30701 usecs [ 0.441731] PCI Interrupt Link [LNKB] enabled at IRQ 11 [ 0.454296] pci 0000:00:03.7: quirk_usb_early_handoff+0x0/0x669 took 26515 usecs [ 0.454903] PCI: CLS 0 bytes, default 64 [ 0.455303] Trying to unpack rootfs image as initramfs... [ 1.175569] Freeing initrd memory: 74284K [ 1.175991] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1e71768ef8b, max_idle_ns: 440795218977 ns [ 1.177072] Initialise system trusted keyrings [ 1.177419] Key type blacklist registered [ 1.177793] workingset: timestamp_bits=36 max_order=19 bucket_order=0 [ 1.179125] zbud: loaded [ 1.179749] integrity: Platform Keyring initialized [ 1.185683] NET: Registered protocol family 38 [ 1.186280] Key type asymmetric registered [ 1.186743] Asymmetric key parser 'x509' registered [ 1.187409] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 1.188376] io scheduler mq-deadline registered [ 1.188946] io scheduler kyber registered [ 1.189569] io scheduler bfq registered [ 1.190166] atomic64_test: passed for x86-64 platform with CX8 and with SSE [ 1.191053] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 [ 1.191739] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 [ 1.192442] ACPI: Power Button [PWRF] [ 1.206536] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled [ 1.207294] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A [ 1.209489] Non-volatile memory driver v1.3 [ 1.209922] Linux agpgart interface v0.103 [ 1.210874] scsi host0: ata_piix [ 1.211223] scsi host1: ata_piix [ 1.211517] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc0c0 irq 14 [ 1.212092] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc0c8 irq 15 [ 1.212752] libphy: Fixed MDIO Bus: probed [ 1.213175] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.213716] ehci-pci: EHCI PCI platform driver [ 1.228036] ehci-pci 0000:00:03.7: EHCI Host Controller [ 1.228543] ehci-pci 0000:00:03.7: new USB bus registered, assigned bus number 1 [ 1.229259] ehci-pci 0000:00:03.7: irq 11, io mem 0xfebe0000 [ 1.236052] ehci-pci 0000:00:03.7: USB 2.0 started, EHCI 1.00 [ 1.236693] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.08 [ 1.237530] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.238265] usb usb1: Product: EHCI Host Controller [ 1.238767] usb usb1: Manufacturer: Linux 5.8.17-300.fc33.x86_64 ehci_hcd [ 1.239456] usb usb1: SerialNumber: 0000:00:03.7 [ 1.240029] hub 1-0:1.0: USB hub found [ 1.240423] hub 1-0:1.0: 6 ports detected [ 1.240983] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver [ 1.241505] ohci-pci: OHCI PCI platform driver [ 1.241955] uhci_hcd: USB Universal Host Controller Interface driver [ 1.256301] uhci_hcd 0000:00:03.0: UHCI Host Controller [ 1.257238] uhci_hcd 0000:00:03.0: new USB bus registered, assigned bus number 2 [ 1.258151] uhci_hcd 0000:00:03.0: detected 2 ports [ 1.258776] uhci_hcd 0000:00:03.0: irq 11, io base 0x0000c040 [ 1.259577] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.08 [ 1.260500] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.261288] usb usb2: Product: UHCI Host Controller [ 1.261824] usb usb2: Manufacturer: Linux 5.8.17-300.fc33.x86_64 uhci_hcd [ 1.262550] usb usb2: SerialNumber: 0000:00:03.0 [ 1.263160] hub 2-0:1.0: USB hub found [ 1.263577] hub 2-0:1.0: 2 ports detected [ 1.276552] uhci_hcd 0000:00:03.1: UHCI Host Controller [ 1.277169] uhci_hcd 0000:00:03.1: new USB bus registered, assigned bus number 3 [ 1.277943] uhci_hcd 0000:00:03.1: detected 2 ports [ 1.278515] uhci_hcd 0000:00:03.1: irq 10, io base 0x0000c060 [ 1.279664] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.08 [ 1.280516] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.281279] usb usb3: Product: UHCI Host Controller [ 1.281797] usb usb3: Manufacturer: Linux 5.8.17-300.fc33.x86_64 uhci_hcd [ 1.282530] usb usb3: SerialNumber: 0000:00:03.1 [ 1.283074] hub 3-0:1.0: USB hub found [ 1.283478] hub 3-0:1.0: 2 ports detected [ 1.298090] uhci_hcd 0000:00:03.2: UHCI Host Controller [ 1.298742] uhci_hcd 0000:00:03.2: new USB bus registered, assigned bus number 4 [ 1.299556] uhci_hcd 0000:00:03.2: detected 2 ports [ 1.300130] uhci_hcd 0000:00:03.2: irq 10, io base 0x0000c080 [ 1.300786] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.08 [ 1.301688] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 [ 1.302498] usb usb4: Product: UHCI Host Controller [ 1.303050] usb usb4: Manufacturer: Linux 5.8.17-300.fc33.x86_64 uhci_hcd [ 1.303807] usb usb4: SerialNumber: 0000:00:03.2 [ 1.304317] hub 4-0:1.0: USB hub found [ 1.304657] hub 4-0:1.0: 2 ports detected [ 1.305125] usbcore: registered new interface driver usbserial_generic [ 1.305713] usbserial: USB Serial support registered for generic [ 1.306265] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12 [ 1.307441] serio: i8042 KBD port at 0x60,0x64 irq 1 [ 1.307852] serio: i8042 AUX port at 0x60,0x64 irq 12 [ 1.308340] mousedev: PS/2 mouse device common for all mice [ 1.308988] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1 [ 1.310072] rtc_cmos 00:00: RTC can wake from S4 [ 1.310775] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4 [ 1.311985] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3 [ 1.312940] rtc_cmos 00:00: registered as rtc0 [ 1.313477] rtc_cmos 00:00: setting system clock to 2020-11-12T02:18:24 UTC (1605147504) [ 1.314358] rtc_cmos 00:00: alarms up to one day, y3k, 114 bytes nvram [ 1.315103] device-mapper: uevent: version 1.0.3 [ 1.315634] device-mapper: ioctl: 4.42.0-ioctl (2020-02-27) initialised: dm-devel@redhat.com [ 1.316648] intel_pstate: CPU model not supported [ 1.317261] hid: raw HID events driver (C) Jiri Kosina [ 1.317868] usbcore: registered new interface driver usbhid [ 1.318498] usbhid: USB HID core driver [ 1.319082] intel_pmc_core intel_pmc_core.0: initialized [ 1.319621] drop_monitor: Initializing network drop monitor service [ 1.320592] Initializing XFRM netlink socket [ 1.321346] NET: Registered protocol family 10 [ 1.325951] Segment Routing with IPv6 [ 1.326367] RPL Segment Routing with IPv6 [ 1.326825] mip6: Mobile IPv6 [ 1.327211] NET: Registered protocol family 17 [ 1.327953] IPI shorthand broadcast: enabled [ 1.328366] AVX2 version of gcm_enc/dec engaged. [ 1.328752] AES CTR mode by8 optimization enabled [ 1.341593] sched_clock: Marking stable (1275158411, 66430129)->(1412658427, -71069887) [ 1.342346] registered taskstats version 1 [ 1.342725] Loading compiled-in X.509 certificates [ 1.343567] Loaded X.509 cert 'Fedora kernel signing key: c760771af754fe7db9035194e39806ab143095d4' [ 1.344267] zswap: loaded using pool lzo/zbud [ 1.344683] Key type ._fscrypt registered [ 1.345009] Key type .fscrypt registered [ 1.345323] Key type fscrypt-provisioning registered [ 1.345814] Btrfs loaded, crc32c=crc32c-generic [ 1.347938] Key type encrypted registered [ 1.348272] ima: No TPM chip found, activating TPM-bypass! [ 1.348687] ima: Allocated hash algorithm: sha256 [ 1.349057] ima: No architecture policies found [ 1.349562] PM: Magic number: 12:412:308 [ 1.349904] tty tty37: hash matches [ 1.350232] RAS: Correctable Errors collector initialized. [ 1.370606] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100 [ 1.371265] ata1.00: 41943040 sectors, multi 16: LBA48 [ 1.372307] scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5 [ 1.373409] sd 0:0:0:0: [sda] 41943040 512-byte logical blocks: (21.5 GB/20.0 GiB) [ 1.374311] sd 0:0:0:0: [sda] Write Protect is off [ 1.374316] sd 0:0:0:0: Attached scsi generic sg0 type 0 [ 1.375521] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA [ 1.379390] GPT:Primary header thinks Alt. header is not at the end of the disk. [ 1.380213] GPT:16777215 != 41943039 [ 1.380640] GPT:Alternate GPT header not at the end of the disk. [ 1.381346] GPT:16777215 != 41943039 [ 1.381778] GPT: Use GNU Parted to correct GPT errors. [ 1.382395] sda: sda1 sda2 sda3 sda4 [ 1.383142] sd 0:0:0:0: [sda] Attached SCSI disk [ 1.384497] Freeing unused decrypted memory: 2040K [ 1.386721] Freeing unused kernel image (initmem) memory: 2508K [ 1.388024] Write protecting the kernel read-only data: 26624k [ 1.390368] Freeing unused kernel image (text/rodata gap) memory: 2044K [ 1.391834] Freeing unused kernel image (rodata/data gap) memory: 1488K [ 1.401078] x86/mm: Checked W+X mappings: passed, no W+X pages found. [ 1.401669] rodata_test: all tests were successful [ 1.402104] Run /init as init process [ 1.408745] systemd[1]: systemd v246.6-3.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 1.410586] systemd[1]: Detected virtualization kvm. [ 1.411042] systemd[1]: Detected architecture x86-64. [ 1.411478] systemd[1]: Running in initial RAM disk. Welcome to Fedora CoreOS 33.20201104.1.0 dracut-050-64.git20200529.fc33 (Initramfs)! [ 1.425859] systemd[1]: No hostname configured. [ 1.426395] systemd[1]: Set hostname to . [ 1.426860] systemd[1]: Initializing machine ID from KVM UUID. [ 1.508506] systemd[1]: Queued start job for default target Initrd Default Target. [ 1.509188] systemd[1]: Started Forward Password Requests to Clevis Directory Watch. [ OK ] Started Forward Password R…sts to Clevis Directory Watch. [ 1.510509] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password …ts to Console Directory Watch. [ 1.511774] systemd[1]: Reached target Local Encrypted Volumes. [ OK ] Reached target Local Encrypted Volumes. [ 1.512818] systemd[1]: Reached target Ignition Subsequent Boot Disk Setup. [ OK ] Reached target Ignition Subsequent Boot Disk Setup. [ 1.514057] systemd[1]: Reached target Subsequent (Not Ignition) boot complete. [ OK ] Reached target Subsequent (Not Ignition) boot complete. [ 1.515453] systemd[1]: Reached target Paths. [ OK ] Reached target Paths. [ 1.516423] systemd[1]: Reached target Slices. [ OK ] Reached target Slices. [ 1.517355] systemd[1]: Reached target Swap. [ OK ] Reached target Swap. [ 1.518240] systemd[1]: Reached target Timers. [ OK ] Reached target Timers. [ 1.519261] systemd[1]: Listening on Journal Audit Socket. [ OK ] Listening on Journal Audit Socket. [ 1.520511] systemd[1]: Listening on Journal Socket (/dev/log). [ OK ] Listening on Journal Socket (/dev/log). [ 1.522036] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 1.523891] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 1.525930] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 1.528051] systemd[1]: Reached target Sockets. [ OK ] Reached target Sockets. [ 1.529355] systemd[1]: Condition check resulted in Check that initrd matches kernel being skipped. [ 1.530202] systemd[1]: Condition check resulted in Persist osmet files (ISO) being skipped. [ 1.531936] systemd[1]: Starting Create list of static device nodes for the current kernel... Starting Create list of st…odes for the current kernel... [ 1.534719] systemd[1]: Starting Journal Service... Starting Journal Service... [ 1.536802] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 1.539029] systemd[1]: Starting Setup Virtual Console... Starting Setup Virtual Console... [ 1.540844] systemd[1]: Finished Create list of static device nodes for the current kernel. [ OK ] Finished Create list of st… nodes for the current kernel. [ 1.543580] systemd[1]: Starting Forward Password Requests to Clevis... Starting Forward Password Requests to Clevis... [ 1.545800] systemd[1]: Starting Create Static Device Nodes in /dev... Starting Create Static Device Nodes in /dev... [ 1.556278] systemd[1]: Finished Setup Virtual Console. [ OK ] Finished Setup Virtual Console. [ 1.563171] systemd[1]: Starting dracut ask for additional cmdline parameters... Starting dracut ask for additional cmdline parameters... [ 1.568501] systemd[1]: Finished Create Static Device Nodes in /dev. [ OK ] Finished Create Static Device Nodes in /dev. [ 1.587902] systemd[1]: Finished dracut ask for additional cmdline parameters. [ OK ] Finished dracut ask for additional cmdline parameters. [ 1.590457] audit: type=1130 audit(1605147504.776:2): 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.591550] systemd[1]: Starting dracut cmdline hook... Starting dracut cmdline hook... [ 1.599439] systemd[1]: Started Journal Service. [ 1.599445] systemd-vconsole-setup[228]: KD_FONT_OP_GET failed while trying to get the font metadata: Invalid argument [ OK ] Started Journal Service. [ 1.603980] audit: type=1130 audit(1605147504.787:3): 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' [ 1.608063] fuse: init (API version 7.31) [ OK ] Finished Load Kernel Modules. [ 1.610084] audit: type=1130 audit(1605147504.796:4): 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' [ 1.612499] systemd-vconsole-setup[228]: Fonts will not be copied to remaining consoles [ 1.612598] systemd-modules-load[227]: Inserted module 'fuse' [ 1.612764] systemd[1]: Finished Load Kernel Modules. [ 1.612847] systemd[1]: Starting Apply Kernel Variables... [ 1.613088] dracut-cmdline[245]: dracut-33.20201104.1.0 (CoreOS) dracut-050-64.git20200529.fc33 [ 1.614188] dracut-cmdline[245]: Using kernel command line parameters: rd.driver.pre=btrfs BOOT_IMAGE=(hd0,gpt1)/ostree/fedora-coreos-14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/vmlinuz-5.8.17-300.fc33.x86_64 mitigations=auto,nosmt systemd.unified_cgroup_hierarchy=0 console=tty0 console=ttyS0,115200n8 ignition.platform.id=qemu ostree=/ostree/boot.1/fedora-coreos/14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/0 root=UUID=22e21fee-abb1-4e69-8e86-dcc1b91d0bb9 rw rootflags=prjquota Starting Apply Kernel Variables... [ 1.629428] systemd-sysctl[257]: Not setting net/ipv4/conf/all/rp_filter (explicit setting exists). [ OK ] [ 1.630855] systemd-sysctl[257]: Not setting net/ipv4/conf/default/rp_filter (explicit setting exists). Finished Apply Kernel Variables. [ 1.632572] audit: type=1130 audit(1605147504.818:5): 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' [ 1.635194] systemd-sysctl[257]: Not setting net/ipv4/conf/all/accept_source_route (explicit setting exists). [ 1.636194] systemd-sysctl[257]: Not setting net/ipv4/conf/default/accept_source_route (explicit setting exists). [ 1.637239] systemd-sysctl[257]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists). [ 1.638416] systemd-sysctl[257]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists). [ 1.639587] systemd[1]: Finished Apply Kernel Variables. [ OK ] Finished dracut cmdline hook. [ 1.674856] audit: type=1130 audit(1605147504.860:6): 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.675624] systemd[1]: Finished dracut cmdline hook. [ 1.677513] systemd[1]: Starting dracut pre-udev hook... Starting dracut pre-udev hook... [ OK ] Finished dracut pre-udev hook. Starting Rule-based Manage…for Device Events and Files... [ 1.706646] systemd[1]: Finished dracut pre-udev hook. [ 1.707459] systemd[1]: Starting Rule-based Manager for Device Events and Files... [ 1.708215] audit: type=1130 audit(1605147504.890:7): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=dracut-pre-udev comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 1.709805] audit: type=1334 audit(1605147504.891:8): prog-id=5 op=LOAD [ 1.710642] audit: type=1334 audit(1605147504.891:9): prog-id=6 op=LOAD [[ 1.735052] systemd[1]: Started Rule-based Manager for Device Events and Files. OK ] Started Rule-based Manager for Device Events and Files. [ 1.738026] audit: type=1130 audit(1605147504.923:10): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=kernel msg='unit=systemd-udevd comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' Starting dracut pre-trigger hook... [ 1.740165] systemd[1]: Starting dracut pre-trigger hook... [ 1.752088] dracut-pre-trigger[344]: rd.md=0: removing MD RAID activation [ 1.791430] systemd[1]: Finished dracut pre-trigger hook. [ OK ] Finished dracut pre-trigger hook. Starting Coldplug All udev Devices... [ 1.794688] systemd[1]: Starting Coldplug All udev Devices... [ OK ] Finished Coldplug All udev Devices. Starting Wait for udev To …plete Device Initialization... [ 1.851321] systemd[1]: Finished Coldplug All udev Devices. [ 1.852252] systemd[1]: Starting Wait for udev To Complete Device Initialization... Mounting Kernel Configuration File System... [ 1.859170] systemd[1]: Mounting Kernel Configuration File System... [ OK ] Mounted Kernel Configuration File System.[ 1.861390] systemd[1]: Mounted Kernel Configuration File System. [ 1.900256] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI [ 1.901215] e1000: Copyright (c) 1999-2006 Intel Corporation. [ 1.919784] systemd-udevd[391]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable. [ 1.939963] udevadm[392]: systemd-udev-settle.service is deprecated. Please fix multipathd.service, multipathd-configure.service not to pull it in. [ OK ] Found device QEMU_HARDDISK root. [ 1.994230] systemd[1]: Found device QEMU_HARDDISK root. [ OK [ 1.995387] systemd[1]: Found device QEMU_HARDDISK root. ] Found device QEMU_HARDDISK root. [ OK ] Reached target Initrd Root Device. [ 1.997598] systemd[1]: Reached target Initrd Root Device. [ 1.999235] systemd[1]: Condition check resulted in CoreOS: Mount (subsequent) /sysroot being skipped. [ 2.276436] e1000 0000:00:02.0 eth0: (PCI:33MHz:32-bit) 52:54:00:f8:dd:a5 [ 2.277159] e1000 0000:00:02.0 eth0: Intel(R) PRO/1000 Network Connection [ 2.278696] systemd-udevd[390]: Using default interface naming scheme 'v245'. [ 2.279524] systemd-udevd[390]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable. [ 2.279564] e1000 0000:00:02.0 ens2: renamed from eth0 [ OK ] Finished Wait for udev To Complete Device Initialization. [ 2.299835] systemd[1]: Finished Wait for udev To Complete Device Initialization. [ 2.300821] systemd[1]: Condition check resulted in Device-Mapper Multipath Default Configuration being skipped. Starting 2.302183] systemd[1]: Starting Device-Mapper Multipath Device Controller... 9mDevice-Mapper Multipath Device Controller... [ 2.311016] systemd[1]: Started Device-Mapper Multipath Device Controller. [ OK ] Started Device-Mapper Multipath Device Controller. [ 2.313996] systemd[1]: Reached target Local File Systems (Pre). [ OK ] Reached target Local File Systems (Pre). [ 2.316295] multipathd[415]: --------start up-------- [ OK ] Reached target Local File Systems. [ 2.317705] multipathd[415]: read /etc/multipath.conf [ 2.318507] multipathd[415]: /etc/multipath.conf does not exist, blacklisting all devices. Starting 2.320024] multipathd[415]: You can run "/sbin/mpathconf --enable" to create 9mCreate Volatile Files and Directories...[ 2.321156] multipathd[415]: /etc/multipath.conf. See man mpathconf(8) for more details [ 2.322444] multipathd[415]: failed to increase buffer size [ 2.323230] multipathd[415]: path checkers start up [ 2.323943] systemd[1]: Reached target Local File Systems. [ 2.324695] multipathd[415]: /etc/multipath.conf does not exist, blacklisting all devices. [ 2.325864] multipathd[415]: You can run "/sbin/mpathconf --enable" to create [ 2.326839] multipathd[415]: /etc/multipath.conf. See man mpathconf(8) for more details [ 2.327686] systemd[1]: Starting Create Volatile Files and Directories... [[ 2.337417] systemd[1]: Finished Create Volatile Files and Directories. OK ] Finished Create Volatile Files and Directories. [ 2.339829] systemd[1]: Reached target System Initialization. [ OK ] Reached target System Initialization. [ 2.341542] systemd[1]: Reached target Basic System. [ OK ] Reached target Basic System. [ 2.343258] systemd[1]: Condition check resulted in CoreOS Enable Network being skipped. [ 2.344406] systemd[1]: Starting dracut initqueue hook... Starting dracut initqueue hook... [ OK ] Finished dracut ini[ 2.357156] systemd[1]: Finished dracut initqueue hook. tqueue hook. [ OK 2.358505] systemd[1]: Reached target Remote File Systems (Pre). 0m] Reached target Remote File Systems (Pre). [ OK 2.359572] systemd[1]: Reached target Remote File Systems. 0m] Reached target Remote File Systems. [ 2.361009] systemd[1]: Condition check resulted in Acquire live PXE rootfs image being skipped. [ 2.361886] systemd[1]: Condition check resulted in Persist osmet files (PXE) being skipped. [ 2.361932] systemd[1]: Starting dracut pre-mount hook... Starting dracut pre-mount hook... [ OK ] Finished dracut pre-mount hook. [ 2.375140] systemd[1]: Finished dracut pre-mount hook. [ 2.375953] systemd[1]: Starting File System Check on /dev/disk/by-uuid/22e21fee-abb1-4e69-8e86-dcc1b91d0bb9... Starting File System Check…abb1-4e69-8e86-dcc1b91d0bb9... [ 2.393132] systemd-fsck[438]: /usr/sbin/fsck.xfs: XFS file system. [ 2.395030] systemd[1]: Finished File System Check on /dev/disk/by-uuid/22e21fee-abb1-4e69-8e86-dcc1b91d0bb9. [ OK ] Finished File System Check…e-abb1-4e69-8e86-dcc1b91d0bb9. Mounting /sysr[ 2.398027] systemd[1]: Mounting /sysroot... oot... [ 2.484912] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled [ 2.488163] XFS (sda4): Mounting V5 Filesystem [ 2.712837] XFS (sda4): Starting recovery (logdev: internal) [ 2.883799] XFS (sda4): Ending recovery (logdev: internal) [ 2.893458] xfs filesystem being mounted at /sysroot supports timestamps until 2038 (0x7fffffff) [ 2.895668] systemd[1]: Mounted /sysroot. [ OK ] Mounted /sysroot. [ 2.897823] systemd[1]: Starting OSTree Prepare OS/... Starting OSTree Prepare OS/... [ 2.905045] ostree-prepare-root[452]: Resolved OSTree target to: /sysroot/ostree/deploy/fedora-coreos/deploy/f7bff56c9710b5fedb22d50651bcd875856bb83510f7115e10d21167bd9a3b75.0 [ 2.908346] ostree-prepare-root[452]: sysroot configured read-only: 1, currently writable: 1 [ 2.912196] systemd[1]: sysroot-ostree-deploy-fedora\x2dcoreos-deploy-f7bff56c9710b5fedb22d50651bcd875856bb83510f7115e10d21167bd9a3b75.0-etc.mount: Succeeded. [[ 2.914016] systemd[1]: sysroot-ostree-deploy-fedora\x2dcoreos-deploy-f7bff56c9710b5fedb22d50651bcd875856bb83510f7115e10d21167bd9a3b75.0.mount: Succeeded. OK 2.915780] systemd[1]: Finished OSTree Prepare OS/. m] Finished OSTree Prepare OS/. [ 2.917484] systemd[1]: Reached target Initrd Root File System. [ OK ] Reached target Initrd Root File System. Starting Reload Configuration from the Real Root... [ 2.921652] systemd[1]: Starting Reload Configuration from the Real Root... [ 2.929558] systemd[1]: Reloading. [ 3.074787] systemd[1]: initrd-parse-etc.service: Succeeded. [ 3.076062] systemd[1]: Finished Reload Configuration from the Real Root. [ OK ] Finished Reload Configuration from the Real Root. [ 3.078484] systemd[1]: Reached target Initrd File Systems. [ OK ] Reached target Initrd File Systems. [ OK ] Reached target Initrd Default Target. [ 3.080625] systemd[1]: Reached target Initrd Default Target. [ 3.081639] systemd[1]: Starting dracut mount hook... Starting dracut mount hook... [ 3.094739] systemd[1]: Finished dracut mount hook. [ OK ] Finished dracut mount hook. [ 3.097133] systemd[1]: Starting dracut pre-pivot and cleanup hook... Starting dracut pre-pivot and cleanup hook... [ 3.140938] dracut-pre-pivot[531]: Nov 12 02:18:26 | /etc/multipath.conf does not exist, blacklisting all devices. [ 3.075747] dracut-pre-pivot[531]: Nov 12 02:18:26 | /etc/multipath.conf does not exist, blacklisting all devices. [ 3.143555] dracut-pre-pivot[531]: Nov 12 02:18:26 | You can run "/sbin/mpathconf --enable" to create [ 3.078273] dracut-pre-pivot[531]: Nov 12 02:18:26 | You can run "/sbin/mpathconf --enable" to create [ 3.146036] dracut-pre-pivot[531]: Nov 12 02:18:26 | /etc/multipath.conf. See man mpathconf(8) for more details [ 3.080870] dracut-pre-pivot[531]: Nov 12 02:18:26 | /etc/multipath.conf. See man mpathconf(8) for more details [ 3.153613] systemd[1]: Finished dracut pre-pivot and cleanup hook. [ OK ] Finished dracut pre-pivot and cleanup hook. Starting Cleaning Up and Shutting Down Daemons... [ 3.158021] systemd[1]: Starting Cleaning Up and Shutting Down Daemons... [ 3.166548] systemd[1]: Stopped target Timers. [ OK ] Stopped target Timers. [ 3.169544] clevis-luks-askpass[229]: Terminated [ 3.170332] clevis-luks-askpass[229]: Exiting due to SIGTERM [ 3.172481] systemd[1]: Condition check resulted in Unmount live /var if persistent /var is configured being skipped. [ OK ] Stopped dracut pre-pivot and cleanup hook. [ 3.174249] systemd[1]: dracut-pre-pivot.service: Succeeded. [ OK ] Stopped target Initrd Default Target. [ OK ] Stopped target Basic System. [ 3.175946] systemd[1]: Stopped dracut pre-pivot and cleanup hook. [ OK ] Stopped target Subsequent (Not Ignition) boot complete. [ 3.177369] systemd[1]: Stopped target Initrd Default Target. [ OK ] Stopped target Ignition Subsequent Boot Disk Setup. [ 3.178627] systemd[1]: Stopped target Basic System. [ OK ] Stopped target Initrd Root Device. [ 3.179783] systemd[1]: Stopped target Subsequent (Not Ignition) boot complete. [ OK ] Stopped target Paths. [ 3.181044] systemd[1]: Stopped target Ignition Subsequent Boot Disk Setup. [ OK ] Stopped target Remote File Systems. [ 3.182341] systemd[1]: Stopped target Initrd Root Device. [ OK ] Stopped target Remote File Systems (Pre). [ 3.183628] systemd[1]: Stopped target Paths. [ OK ] Stopped target Slices. [ 3.184683] systemd[1]: Stopped target Remote File Systems. [ OK ] Stopped target Sockets. [ OK ] Stopped target System Initialization. [ 3.186333] systemd[1]: Stopped target Remote File Systems (Pre). [ OK ] Stopped target Swap. [ 3.187538] systemd[1]: Stopped target Slices. [ OK ] Stopped dracut mount hook. [ 3.188638] systemd[1]: Stopped target Sockets. [ 3.189306] systemd[1]: Stopped target System Initialization. [ 3.189893] systemd[1]: Stopped target Swap. [ OK ] Stopped dracut pre-mount hook. [ 3.190801] systemd[1]: dracut-mount.service: Succeeded. [ OK ] Stopped target Local Encrypted Volumes. [ 3.191928] systemd[1]: Stopped dracut mount hook. [ 3.192469] systemd[1]: dracut-pre-mount.service: Succeeded. [ 3.193027] systemd[1]: Stopped dracut pre-mount hook. [ 3.193508] systemd[1]: Stopped target Local Encrypted Volumes. [ 3.194072] systemd[1]: systemd-ask-password-console.path: Succeeded. [ 3.195058] systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch. [ OK ] Stopped Dispatch Password …ts to Console Directory Watch. [ 3.196567] systemd[1]: dracut-initqueue.service: Succeeded. [ OK ] Stopped dracut initqueue hook. [ 3.197686] systemd[1]: Stopped dracut initqueue hook. [ 3.198488] systemd[1]: Condition check resulted in Acquire live PXE rootfs image being skipped. [ OK ] Stopped Apply Kernel Variables. [ 3.199811] systemd[1]: systemd-sysctl.service: Succeeded. [ OK ] Stopped Load Kernel Modules. [ 3.201175] systemd[1]: Stopped Apply Kernel Variables. [ 3.202343] systemd[1]: systemd-modules-load.service: Succeeded. [ OK ] Stopped Create Volatile Files and Directories. [ 3.204008] systemd[1]: Stopped Load Kernel Modules. [ OK ] Stopped target Local File Systems. [ 3.205684] systemd[1]: systemd-tmpfiles-setup.service: Succeeded. [[ 3.206743] systemd[1]: Stopped Create Volatile Files and Directories. OK ] Stopped target Local File Systems (Pre). [ 3.208137] systemd[1]: Stopped target Local File Systems. Stopping Device-Mapper Multipath Device Controller... [ 3.209500] systemd[1]: Stopped target Local File Systems (Pre). [ 3.210296] systemd[1]: Stopping Device-Mapper Multipath Device Controller... [ 3.213180] multipathd[536]: Nov 12 02:18:26 | /etc/multipath.conf does not exist, blacklisting all devices. [ 3.214284] multipathd[536]: Nov 12 02:18:26 | You can run "/sbin/mpathconf --enable" to create [ 3.215291] multipathd[536]: Nov 12 02:18:26 | /etc/multipath.conf. See man mpathconf(8) for more details [ 3.216422] multipathd[415]: --------shut down------- [ 3.217407] multipathd[536]: ok [ 3.218450] systemd[1]: clevis-luks-askpass.service: Succeeded. [ OK ] Stopped Forward Password Requests to Clevis. [ 3.219937] systemd[1]: Stopped Forward Password Requests to Clevis. [ 3.220897] systemd[1]: multipathd.service: Succeeded. [ OK ] Stopped Device-Mapper Multipath Device Controller. [ 3.222338] systemd[1]: Stopped Device-Mapper Multipath Device Controller. [ 3.223891] systemd[1]: clevis-luks-askpass.path: Succeeded. [ OK ] Stopped Forward Password R…sts to Clevis Directory Watch. [ 3.226889] systemd[1]: Stopped Forward Password Requests to Clevis Directory Watch. [ OK ] Stopped Wait for udev To Complete Device Initialization. [ 3.228664] systemd[1]: systemd-udev-settle.service: Succeeded. [ OK ] Stopped Coldplug All udev Devices. [ 3.229981] systemd[1]: Stopped Wait for udev To Complete Device Initialization. [ 3.230929] systemd[1]: systemd-udev-trigger.service: Succeeded. [ 3.231721] systemd[1]: Stopped Coldplug All udev Devices. [ 3.232599] systemd[1]: dracut-pre-trigger.service: Succeeded. [ OK ] Stopped dracut pre-trigger hook. [ 3.234395] systemd[1]: Stopped dracut pre-trigger hook. [ 3.239459] systemd[1]: Stopping Rule-based Manager for Device Events and Files... Stopping Rule-based Manage…for Device Events and Files... [ 3.241356] systemd[1]: initrd-cleanup.service: Succeeded. [ OK ] Finished Cleaning Up and Shutting Down Daemons. [ 3.242675] systemd[1]: Finished Cleaning Up and Shutting Down Daemons. [ 3.244677] systemd[1]: systemd-udevd.service: Succeeded. [ OK ] Stopped Rule-based Manager for Device Events and Files. [ 3.246209] systemd[1]: Stopped Rule-based Manager for Device Events and Files. [ OK ] Closed udev Control Socket. [ 3.247634] systemd[1]: systemd-udevd-control.socket: Succeeded. [ 3.248389] systemd[1]: Closed udev Control Socket. [ OK ] Closed udev Kernel Socket. [ 3.249587] systemd[1]: systemd-udevd-kernel.socket: Succeeded. [ 3.250394] systemd[1]: Closed udev Kernel Socket. [ 3.251518] systemd[1]: dracut-pre-udev.service: Succeeded. [ OK ] Stopped dracut pre-udev hook. [ 3.252744] systemd[1]: Stopped dracut pre-udev hook. [ OK ] Stopped dracut cmdline hook. [ 3.254018] systemd[1]: dracut-cmdline.service: Succeeded. [ OK ] Stopped dracut ask for additional cmdline parameters. [ 3.255509] systemd[1]: Stopped dracut cmdline hook. [ 3.256226] systemd[1]: dracut-cmdline-ask.service: Succeeded. [ 3.256961] systemd[1]: Stopped dracut ask for additional cmdline parameters. [ 3.257020] systemd[1]: Starting Cleanup udev Database... Starting Cleanup udev Database... [ OK ] Stopped Create Static Device Nodes in /dev. [ OK ] Stopped Create list of sta… nodes for the current kernel. [ 3.269494] systemd[1]: systemd-tmpfiles-setup-dev.service: Succeeded. [ OK ] Stopped Setup Virtual Console. [ 3.271429] systemd[1]: Stopped Create Static Device Nodes in /dev. [ 3.272386] systemd[1]: kmod-static-nodes.service: Succeeded. [ OK ] Finished Cleanup udev Database. [ 3.273637] systemd[1]: Stopped Create list of static device nodes for the current kernel. [ OK ] Reached target Switch Root. [ 3.274815] systemd[1]: systemd-vconsole-setup.service: Succeeded. [ 3.275434] systemd[1]: Stopped Setup Virtual Console. [ 3.276013] systemd[1]: initrd-udevadm-cleanup-db.service: Succeeded. [ 3.276044] systemd[1]: Finished Cleanup udev Database. [ 3.276080] systemd[1]: Reached target Switch Root. [ 3.276111] systemd[1]: Starting Switch Root... Starting Switch Root... [ 3.290612] systemd[1]: Switching root. [ 3.524593] SELinux: Permission watch in class filesystem not defined in policy. [ 3.525293] SELinux: Permission watch in class file not defined in policy. [ 3.525936] SELinux: Permission watch_mount in class file not defined in policy. [ 3.526701] SELinux: Permission watch_sb in class file not defined in policy. [ 3.527467] SELinux: Permission watch_with_perm in class file not defined in policy. [ 3.528313] SELinux: Permission watch_reads in class file not defined in policy. [ 3.529112] SELinux: Permission watch in class dir not defined in policy. [ 3.529883] SELinux: Permission watch_mount in class dir not defined in policy. [ 3.530712] SELinux: Permission watch_sb in class dir not defined in policy. [ 3.531524] SELinux: Permission watch_with_perm in class dir not defined in policy. [ 3.532395] SELinux: Permission watch_reads in class dir not defined in policy. [ 3.533432] SELinux: Permission watch in class lnk_file not defined in policy. [ 3.534510] SELinux: Permission watch_mount in class lnk_file not defined in policy. [ 3.535575] SELinux: Permission watch_sb in class lnk_file not defined in policy. [ 3.537175] SELinux: Permission watch_with_perm in class lnk_file not defined in policy. [ 3.539168] SELinux: Permission watch_reads in class lnk_file not defined in policy. [ 3.540762] SELinux: Permission watch in class chr_file not defined in policy. [ 3.541599] SELinux: Permission watch_mount in class chr_file not defined in policy. [ 3.542522] SELinux: Permission watch_sb in class chr_file not defined in policy. [ 3.543439] SELinux: Permission watch_with_perm in class chr_file not defined in policy. [ 3.544420] SELinux: Permission watch_reads in class chr_file not defined in policy. [ 3.545391] SELinux: Permission watch in class blk_file not defined in policy. [ 3.546312] SELinux: Permission watch_mount in class blk_file not defined in policy. [ 3.547259] SELinux: Permission watch_sb in class blk_file not defined in policy. [ 3.548180] SELinux: Permission watch_with_perm in class blk_file not defined in policy. [ 3.549177] SELinux: Permission watch_reads in class blk_file not defined in policy. [ 3.550134] SELinux: Permission watch in class sock_file not defined in policy. [ 3.551075] SELinux: Permission watch_mount in class sock_file not defined in policy. [ 3.552054] SELinux: Permission watch_sb in class sock_file not defined in policy. [ 3.552817] SELinux: Permission watch_with_perm in class sock_file not defined in policy. [ 3.553632] SELinux: Permission watch_reads in class sock_file not defined in policy. [ 3.554595] SELinux: Permission watch in class fifo_file not defined in policy. [ 3.555493] SELinux: Permission watch_mount in class fifo_file not defined in policy. [ 3.556454] SELinux: Permission watch_sb in class fifo_file not defined in policy. [ 3.557358] SELinux: Permission watch_with_perm in class fifo_file not defined in policy. [ 3.558347] SELinux: Permission watch_reads in class fifo_file not defined in policy. [ 3.559326] SELinux: Permission perfmon in class capability2 not defined in policy. [ 3.560262] SELinux: Permission bpf in class capability2 not defined in policy. [ 3.561149] SELinux: Permission perfmon in class cap2_userns not defined in policy. [ 3.561969] SELinux: Permission bpf in class cap2_userns not defined in policy. [ 3.562907] SELinux: Class perf_event not defined in policy. [ 3.563602] SELinux: Class lockdown not defined in policy. [ 3.564293] SELinux: the above unknown classes and permissions will be allowed [ 3.565155] SELinux: policy capability network_peer_controls=1 [ 3.565866] SELinux: policy capability open_perms=1 [ 3.566482] SELinux: policy capability extended_socket_class=1 [ 3.567259] SELinux: policy capability always_check_network=0 [ 3.568038] SELinux: policy capability cgroup_seclabel=1 [ 3.568957] SELinux: policy capability nnp_nosuid_transition=1 [ 3.569891] SELinux: policy capability genfs_seclabel_symlinks=0 [ 3.592319] systemd[1]: Successfully loaded SELinux policy in 183.482ms. [ 3.647045] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 25.761ms. [ 3.650723] systemd[1]: systemd v246.6-3.fc33 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +ZSTD +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=unified) [ 3.652820] systemd[1]: Detected virtualization kvm. [ 3.653331] systemd[1]: Detected architecture x86-64. Welcome to Fedora CoreOS 33.20201104.1.0! [ 3.688191] zram_generator::config[560]: No configuration file found. [ 3.689271] zram_generator::generator[560]: No devices configured, exiting. [ 3.796294] coreos-boot-mount-generator: using dev-disk-by\x2dlabel-boot for boot mount to /boot [ 3.828552] coreos-boot-mount-generator: using dev-disk-by\x2dlabel-EFI\x2dSYSTEM for EFI-SYSTEM mount to /boot/efi [ 3.945232] systemd[1]: /usr/lib/systemd/system/docker.socket:6: ListenStream= references a path below legacy directory /var/run/, updating /var/run/docker.sock → /run/docker.sock; please update the unit file accordingly. [ 3.992440] systemd[1]: initrd-switch-root.service: Succeeded. [ 3.993327] systemd[1]: Stopped Switch Root. [ OK ] Stopped Switch Root. [ 3.994652] systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1. [ 3.995761] systemd[1]: Created slice system-afterburn\x2dsshkeys.slice. [ OK ] Created slice system-afterburn\x2dsshkeys.slice. [ 3.997456] systemd[1]: Created slice system-getty.slice. [ OK ] Created slice system-getty.slice. [ 3.998946] systemd[1]: Created slice system-modprobe.slice. [ OK ] Created slice system-modprobe.slice. [ 4.000763] systemd[1]: Created slice system-serial\x2dgetty.slice. [ OK ] Created slice system-serial\x2dgetty.slice. [ 4.002378] systemd[1]: Created slice system-sshd\x2dkeygen.slice. [ OK ] Created slice system-sshd\x2dkeygen.slice. [ 4.004644] systemd[1]: Created slice system-systemd\x2dfsck.slice. [ OK ] Created slice system-systemd\x2dfsck.slice. [ 4.007654] systemd[1]: Created slice User and Session Slice. [ OK ] Created slice User and Session Slice. [ 4.010006] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password …ts to Console Directory Watch. [ 4.012114] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password R…uests to Wall Directory Watch. [ 4.014493] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. [ OK ] Set up automount Arbitrary…s File System Automount Point. [ 4.016721] systemd[1]: Reached target Local Encrypted Volumes. [ OK ] Reached target Local Encrypted Volumes. [ 4.018410] systemd[1]: Stopped target Switch Root. [ OK ] Stopped target Switch Root. [ 4.019839] systemd[1]: Stopped target Initrd File Systems. [ OK ] Stopped target Initrd File Systems. [ 4.021453] systemd[1]: Stopped target Initrd Root File System. [ OK ] Stopped target Initrd Root File System. [ 4.023185] systemd[1]: Reached target Slices. [ OK ] Reached target Slices. [ 4.024370] systemd[1]: Reached target Swap. [ OK ] Reached target Swap. [ 4.026065] systemd[1]: Listening on Device-mapper event daemon FIFOs. [ OK ] Listening on Device-mapper event daemon FIFOs. [ 4.028345] systemd[1]: Listening on LVM2 poll daemon socket. [ OK ] Listening on LVM2 poll daemon socket. [ 4.030383] systemd[1]: Listening on multipathd control socket. [ OK ] Listening on multipathd control socket. [ 4.033865] systemd[1]: Listening on Process Core Dump Socket. [ OK ] Listening on Process Core Dump Socket. [ 4.035875] systemd[1]: Listening on initctl Compatibility Named Pipe. [ OK ] Listening on initctl Compatibility Named Pipe. [ 4.038758] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 4.040570] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 4.042408] systemd[1]: Listening on User Database Manager Socket. [ OK ] Listening on User Database Manager Socket. [ 4.045208] systemd[1]: Mounting Huge Pages File System... Mounting Huge Pages File System... [ 4.047494] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 4.050173] systemd[1]: Mounting Kernel Debug File System... Mounting Kernel Debug File System... [ 4.052742] systemd[1]: Mounting Kernel Trace File System... Mounting Kernel Trace File System... [ 4.054894] systemd[1]: Mounting Temporary Directory (/tmp)... Mounting Temporary Directory (/tmp)... [ 4.057542] systemd[1]: Starting Create list of static device nodes for the current kernel... Starting Create list of st…odes for the current kernel... [ 4.060075] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... Starting Monitoring of LVM…meventd or progress polling... [ 4.062708] systemd[1]: Starting Load Kernel Module drm... Starting Load Kernel Module drm... [ 4.064098] systemd[1]: ostree-prepare-root.service: Succeeded. [ 4.065223] systemd[1]: Stopped OSTree Prepare OS/. [ OK ] Stopped OSTree Prepare OS/. [ 4.067319] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. [ 4.068997] systemd[1]: systemd-fsck-root.service: Succeeded. [ 4.072546] systemd[1]: Stopped File System Check on Root Device. [ OK ] Stopped File System Check on Root Device. [ 4.074569] systemd[1]: Stopped Journal Service. [ OK ] Stopped Journal Service. [ 4.080445] systemd[1]: Starting Journal Service... Starting Journal Service... [ 4.091297] systemd[1]: Starting Load Kernel Modules... Starting Load Kernel Modules... [ 4.097124] systemd[1]: Starting Remount Root and Kernel File Systems... Starting Remount Root and Kernel File Systems... [ 4.099139] systemd[1]: Condition check resulted in Repartition Root Disk being skipped. [ 4.110889] systemd[1]: Starting Coldplug All udev Devices... Starting Coldplug All udev Devices... [ 4.126200] systemd[1]: sysroot-usr.mount: Succeeded. [ 4.127711] systemd[1]: sysroot-sysroot.mount: Succeeded. [ 4.130216] systemd[1]: sysroot-etc.mount: Succeeded. [ 4.133780] systemd[1]: Mounted Huge Pages File System. [ OK ] Mounted Huge Pages File System. [ 4.139259] systemd[1]: Mounted POSIX Message Queue File System. [ OK ] Mounted POSIX Message Queue File System. [ 4.142177] systemd[1]: Mounted Kernel Debug File System. [ OK ] Mounted Kernel Debug File System. [ 4.144926] systemd[1]: Mounted Kernel Trace File System. [ OK ] Mounted Kernel Trace File System. [ 4.147512] systemd[1]: Mounted Temporary Directory (/tmp). [ OK ] Mounted Temporary Directory (/tmp). [ 4.151995] systemd[1]: Finished Create list of static device nodes for the current kernel. [ OK ] Finished Create list of st… nodes for the current kernel. [ 4.157875] systemd[1]: Finished Load Kernel Modules. [ OK ] Finished Load Kernel Modules. [ 4.159986] systemd[1]: Finished Remount Root and Kernel File Systems. [ OK ] Finished Remount Root and Kernel File Systems. [ 4.165778] systemd[1]: Mounting FUSE Control File System... Mounting FUSE Control File System... [ 4.168338] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. [ 4.172399] systemd[1]: Starting Apply Kernel Variables... Starting Apply Kernel Variables... [ 4.174218] systemd[1]: Condition check resulted in Create System Users being skipped. [ 4.176411] systemd[1]: Starting Create Static Device Nodes in /dev... Starting Create Static Device Nodes in /dev... [ 4.180164] systemd[1]: modprobe@drm.service: Succeeded. [ 4.181416] systemd[1]: Finished Load Kernel Module drm. [ OK ] Finished Load Kernel Module drm. [ 4.185555] systemd[1]: Mounted FUSE Control File System. [ OK ] Mounted FUSE Control File System. [ 4.206931] systemd[1]: Finished Apply Kernel Variables. [ OK ] Finished Apply Kernel Variables. [ 4.209200] systemd[1]: Started Journal Service. [ OK ] Started Journal Service. [ OK ] Finished Create Static Device Nodes in /dev. Starting Rule-based Manage…for Device Events and Files... [ OK ] Finished Coldplug All udev Devices. Starting Wait for udev To …plete Device Initialization... [ OK ] Started Rule-based Manager for Device Events and Files. [ 4.408771] piix4_smbus 0000:00:01.3: SMBus Host Controller at 0x700, revision 0 [ OK ] Finished Wait for udev To Complete Device Initialization. [ OK ] Finished Monitoring of LVM… dmeventd or progress polling. [ OK ] Reached target Local File Systems (Pre). Mounting /var... Starting File System Check…ev/disk/by-label/EFI-SYSTEM... Starting File System Check on /dev/disk/by-label/boot... [ OK ] Mounted /var. [ OK ] Reached target Containers. Starting OSTree Remount OS/ Bind Mounts... [ 4.806074] xfs filesystem being remounted at /etc supports timestamps until 2038 (0x7fffffff) [ OK ] Finished OSTree Remount OS/ Bind Mounts. Starting Flush Journal to Persistent Storage... Starting Load/Save Random Seed... [ OK ] Finished Load/Save Random Seed. [ OK ] Finished Flush Journal to Persistent Storage. [ OK ] Finished File System Check on /dev/disk/by-label/boot. Mounting CoreOS Dynamic Mount for /boot... [ OK ] Finished File System Check…/dev/disk/by-label/EFI-SYSTEM. [ 4.948258] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null) [ 4.950706] ext4 filesystem being mounted at /boot supports timestamps until 2038 (0x7fffffff) [ OK ] Mounted CoreOS Dynamic Mount for /boot. Mounting CoreOS Dynamic Mount for /boot/efi... [ OK ] Mounted CoreOS Dynamic Mount for /boot/efi. [ OK ] Reached target Local File Systems. Starting Restore /run/initramfs on shutdown... Starting Create Volatile Files and Directories... [ OK ] Finished Restore /run/initramfs on shutdown. [ OK ] Finished Create Volatile Files and Directories. [ 5.142687] kauditd_printk_skb: 89 callbacks suppressed [ 5.142688] audit: type=1130 audit(1605147508.328:100): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-tmpfiles-setup comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' Starting Network Name Resolution... Starting Update UTMP about System Boot/Shutdown... [ 5.163880] audit: type=1127 audit(1605147508.349:101): pid=653 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg=' comm="systemd-update-utmp" exe="/usr/lib/systemd/systemd-update-utmp" hostname=? addr=? terminal=? res=success' [ OK ] Finished Update UTMP about System Boot/Shutdown. [ OK 5.169639] audit: type=1130 audit(1605147508.355:102): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=systemd-update-utmp comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' 0m] Reached target System Initialization. [ OK ] Started Monitor console-lo…nippets directory for changes. [ OK ] Started Monitor console-lo…nippets directory for changes. [ OK ] Started OSTree Monitor Staged Deployment. [ OK ] Started Daily rotation of log files. [ OK ] Started Weekly RAID setup health check. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Boot Completion Check. [ OK ] Reached target Paths. [ OK ] Reached target Timers. [ OK ] Listening on bootupd.socket. [ OK ] Listening on D-Bus System Message Bus Socket. Starting Docker Socket for the API. [ OK ] Listening on Open-iSCSI iscsid Socket. [ OK ] Listening on Open-iSCSI iscsiuio Socket. [ OK ] Listening on Docker Socket for the API. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. Starting Network Manager... [ OK ] Reached target Synchronize…s@.service template instances. Starting NTP client/server... Starting Generate os relea…nsole-login-helper-messages... [ OK ] Started irqbalance daemon. [ 5.217112] audit: type=1130 audit(1605147508.403:103): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=irqbalance comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' Starting RAID setup health check... Starting OpenSSH ecdsa Server Key Generation... Starting OpenSSH ed25519 Server Key Generation... Starting OpenSSH rsa Server Key Generation... Starting System Security Services Daemon... [ 5.313767] audit: type=1334 audit(1605147508.499:104): prog-id=19 op=LOAD [ 5.314821] audit: type=1334 audit(1605147508.500:105): prog-id=20 op=LOAD Starting Home Area Manager... Starting Rotate log files... [ OK ] Finished RAID setup health check. [ 5.328379] audit: type=1130 audit(1605147508.514:106): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=raid-check comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ 5.331069] audit: type=1131 audit(1605147508.514:107): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=raid-check comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ OK ] Finished Generate os relea…console-login-helper-messages. [ 5.375787] audit: type=1130 audit(1605147508.562:108): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=console-login-helper-messages-gensnippet-os-release comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' Starting Generate console-…elper-messages motd snippet... [ OK ] Finished OpenSSH ecdsa Server Key Generation. [ 5.444228] audit: type=1130 audit(1605147508.629:109): pid=1 uid=0 auid=4294967295 ses=4294967295 subj=system_u:system_r:init_t:s0 msg='unit=sshd-keygen@ecdsa comm="systemd" exe="/usr/lib/systemd/systemd" hostname=? addr=? terminal=? res=success' [ OK ] Finished OpenSSH ed25519 Server Key Generation. [ OK ] Started NTP client/server. Starting D-Bus System Message Bus... [ OK ] Finished Rotate log files. [ OK ] Finished Generate console-…-helper-messages motd snippet. [ OK ] Started D-Bus System Message Bus. [ OK ] Started Network Name Resolution. [ OK ] Reached target Host and Network Name Lookups. [ OK ] Started Home Area Manager. [ OK ] Started Network Manager. [ OK ] Reached target Network. Starting Network Manager Wait Online... Starting Logout off all iSCSI sessions on shutdown... [ OK ] Started Zincati Update Agent. [ OK ] Finished Logout off all iSCSI sessions on shutdown. Starting Hostname Service... [ OK ] Started Hostname Service. [ OK ] Listening on Load/Save RF …itch Status /dev/rfkill Watch. Starting rpm-ostree System Management Daemon... [ 5.947474] e1000: ens2 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX [ 5.953789] IPv6: ADDRCONF(NETDEV_CHANGE): ens2: link becomes ready Starting Network Manager Script Dispatcher Service... [ OK ] Started Network Manager Script Dispatcher Service. [ OK ] Started System Security Services Daemon. [ OK ] Reached target User and Group Name Lookups. Starting User Login Management... Starting Authorization Manager... [ OK ] Finished OpenSSH rsa Server Key Generation. [ OK ] Reached target sshd-keygen.target. Starting Generate SSH keys…nsole-login-helper-messages... Starting OpenSSH server daemon... [ OK ] Started OpenSSH server daemon. Starting Generate console-…lper-messages issue snippet... [ OK ] Finished Generate SSH keys…console-login-helper-messages. [ OK ] Started User Login Management. [ OK ] Finished Generate console-…helper-messages issue snippet. [ OK ] Started Authorization Manager. [ OK ] Started rpm-ostree System Management Daemon. [ OK ] Finished Network Manager Wait Online. [ OK ] Reached target Network is Online. Starting Telemetry service for Fedora CoreOS... [ OK ] Reached target Remote File Systems (Pre). [ OK ] Reached target Remote Encrypted Volumes. [ OK ] Reached target Remote File Systems. [ OK ] Finished Telemetry service for Fedora CoreOS. Starting Permit User Sessions... [ OK ] Finished Permit User Sessions. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS0. [ OK ] Reached target Login Prompts. [ OK ] Reached target Multi-User System. Starting Update UTMP about System Runlevel Changes... [ OK ] Finished Update UTMP about System Runlevel Changes. Starting Generate console-…lper-messages issue snippet... [ OK ] Finished Generate console-…helper-messages issue snippet. Fedora CoreOS 33.20201104.1.0 Kernel 5.8.17-300.fc33.x86_64 on an x86_64 (ttyS0) SSH host key: SHA256:fN63S+3oYjKvexTT+dAp17y4y/QLp7yxVrh7XAVjqVA (ED25519) SSH host key: SHA256:9IQ+5H0C55ltvPE+bhDj4HMeiwTVtmqb+6sZAw9Pgbw (ECDSA) SSH host key: SHA256:t2ZZFP+UZQBZSeePP4oJFQSkjpSlvpPcPQqwuEJ06CQ (RSA) ens2: 192.168.122.205 fe80::5054:ff:fef8:dda5 fedora login: [ 18.891578] kauditd_printk_skb: 40 callbacks suppressed [ 18.891580] audit: type=1131 audit(1605147522.271:150): 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' [ 34.898100] audit: type=1131 audit(1605147539.083:151): 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' [ 34.934417] audit: type=1334 audit(1605147539.120:152): prog-id=22 op=UNLOAD ```
lucab commented 4 years ago
[ 0.026037] Kernel command line: BOOT_IMAGE=(hd0,gpt1)/ostree/fedora-coreos-14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/vmlinuz-5.8.17-300.fc33.x86_64 mitigations=auto,nosmt systemd.unified_cgroup_hierarchy=0 console=tty0 console=ttyS0,115200n8 ignition.platform.id=qemu ostree=/ostree/boot.1/fedora-coreos/14059d645b77576ea5cdbebce512902b2eacc22c855efc181e3099c389d174e1/0  root=UUID=22e21fee-abb1-4e69-8e86-dcc1b91d0bb9 rw rootflags=prjquota

This shows an 33.20201104.1.0 which has been booted already (note the lack of any ignition.firstboot kargs). As it has already gone through the first-boot successfully in the past, Ignition will not run on this instance anymore. Thus, no further configuration will be applied. If this was supposed to be the first-boot for a fresh instance, make sure you are using the pristine qcow2 image and not a re-used disk image.

skycastlelily commented 4 years ago

yes,it works now,thanks for your hint,and sorry for the confusion

ameuret commented 1 month ago

I also ran into issues when testing the latest next release 33.20201104.1.0 using Vagrant. This is related to the removal of ssh-rsa from the PubkeyAcceptedKeyTypes.

sshd[2117]: userauth_pubkey: key type ssh-rsa not in PubkeyAcceptedKeyTypes [preauth]

Did I miss the warning about this issue in the installation procedure ?!? Because it's a pretty big trap that made me retry and double check everything 4 times before stumbling on this ! Swapping to a ED25519 key solved it !

dustymabe commented 1 month ago

There's probably an opportunity for us to do better here. In the very least adding something to our documentation. Sources are here: https://github.com/coreos/fedora-coreos-docs