os icon indicating copy to clipboard operation
os copied to clipboard

Build OSTree based images

Open meisenzahl opened this issue 2 years ago • 14 comments

This PR is work in progress and aims to explore the possibilities for an OSTree-based image for elementary OS.

Current state

An OSTree repository for OS 6 is created using the script build-ostree-repository.sh. This is based on our build scripts for the ARM based images and the deb-ostree-builder script from @dbnicholson in https://github.com/dbnicholson/deb-ostree-builder/tree/simple-builder.

The actual creation of an OSTree based image is done in build-ostree-image.sh. This script is heavily based on create-deployment from the mentioned repository. Here only paths and variables were adapted.

Unfortunately, the creation of an image just fails with the following error message:

error: Bootloader write config: /usr/sbin/grub-mkconfig: Child process exited with code 1

Although grub-mkconfig is installed:

# /usr/sbin/grub-mkconfig --version
grub-mkconfig (GRUB) 2.06-2

TODOs

OSTree repository

  • [x] generate an OSTree repository
  • [ ] configure mount points in /etc/fstab based on ostree admin deploy
  • [ ] sign OSTree repository

OSTree image

  • [ ] generate a bootable image

Contributing

Hints for trying out are in README.md. A short explanation of the implemented logic can be found in CONTRIBUTING.md.

meisenzahl avatar Dec 12 '21 08:12 meisenzahl

Unfortunately, switching to fedora:latest did not help for generating the OSTree image either. There is still a similar error message:

error: Bootloader write config: Failed to execute child process ?grub2-mkconfig? (No such file or directory)

Although grub2-mkconfig is installed:

# grub2-mkconfig --version
grub2-mkconfig (GRUB) 2.06

meisenzahl avatar Dec 12 '21 08:12 meisenzahl

Updated the instructions and scripts to build OS 7. But unfortunately no luck either:

error: Bootloader write config: Failed to execute child process ?grub2-mkconfig? (No such file or directory)

meisenzahl avatar Dec 12 '21 13:12 meisenzahl

I don't know if this will solve your problems here, but we recently opened our image builder if you want to have a look.

https://github.com/endlessm/eos-image-builder

dbnicholson avatar Dec 12 '21 13:12 dbnicholson

Something very likely needed for building the image in a container is to mount the entire host devices with -v /dev:/dev. I don't look yet, but if you're trying to write to a loop backed file, there are several reasons why the device won't be there in a container. Docker doesn't do any type of dynamic device handling.

dbnicholson avatar Dec 12 '21 13:12 dbnicholson

@dbnicholson thank you so much for your comments!

I was aware that endlessm/eos-image-builder exists. But I wanted to try to get as far as possible with your simple-builder branch, since it is easier to follow.

I have not tried to create a loop backed file yet. I just created an OSTree repository based on your branch and tried to create an image from it. I will try some more things and otherwise have a closer look at endlessm/eos-image-builder.

I really appreciate your feedback 🙏

meisenzahl avatar Dec 12 '21 17:12 meisenzahl

I would personally stick with Debian or Ubuntu as the container image for both stages, but if you do use fedora, I believe that grub2-mkconfig is in the grub2-tools package. I'm pretty sure either Debian or Ubuntu stable/LTS will be fine here as the deployment parts haven't changed significantly in OSTree in a while.

As for debugging the original problem, you can set the environment variable OSTREE_DEBUG_GRUB2 to something non-empty and it won't redirect grub-mkconfig's output to /dev/null. If you need to dig further into that process, it's contained in https://github.com/ostreedev/ostree/blob/main/src/libostree/ostree-bootloader-grub2.c.

Full disclosure - at Endless we just avoid grub rewriting configuration at all with a very dirty downstream patch. We should figure out how to upstream that in a reasonable way.

dbnicholson avatar Dec 13 '21 19:12 dbnicholson

Debian's source has a bit of documentation on minimalist building in https://salsa.debian.org/debian/ostree/-/tree/debian/latest/debian/ostree-boot-examples. The starting point is deb-ostree-builder, though, so it may not provide much more than what you've found already.

dbnicholson avatar Dec 13 '21 20:12 dbnicholson

Thanks to the help of @dbnicholson I have now managed to get a rootfs created for an OSTree based image. Also helpful was https://github.com/ostreedev/ostree/issues/2124. There I found the hint to tell ostree that the bootloader is not set.

I am currently struggling to create a bootable image based on the rootfs.

I am also evaluating the approaches mentioned by @dbnicholson to generate an image via multistrap or mmdebstrap. For this, a dependency is missing. elementary currently does not provide the public keys used to sign the Release file as a package. (Debian provides its keys with the debian-archive-keyring package.) But for the above mentioned tools we need such a package. We have already discussed steps to provide such a package for the elementary repositories.

meisenzahl avatar Dec 19 '21 14:12 meisenzahl

Usually I copy the keys into the repo since it avoids having to trust downloaded keys while bootstrapping. This is what debootstrap does, after all, but using keys on disk in /usr/share/keyrings. Getting the key into the install process is a little different for each of the tools though. For mmdebstrap there are some hook phases that can be used.

dbnicholson avatar Dec 19 '21 16:12 dbnicholson

Getting closer with debootstrap approach:

Bildschirmfoto von 2021-12-19 19 49 03

Bildschirmfoto von 2021-12-19 19 49 09

meisenzahl avatar Dec 19 '21 18:12 meisenzahl

I've been without a computer for a little over a year, I'm just here to support the project

I know it's silly of me to show other alternatives to ostree at a time like this, but I think I also liked the way rlxos.dev calls its distro a semi-immutable system

telmobss1 avatar Dec 22 '21 12:12 telmobss1

Short update on the current state:

The image created with debootstrap unfortunately does not boot. Therefore I am experimenting with multistrap.

A version for OS 7 based on jammy unfortunately gives the following error message:

[ 0.329269] Trying to unpack rootfs image as initramfs...
[ 0.329995] Initramfs unpacking failed: invalid magic at start of compressed archive
Full log
[    0.000000] Linux version 5.13.0-19-generic (buildd@lgw01-amd64-013) (gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.37) #19-Ubuntu SMP Thu Oct 7 21:58:00 UTC 2021 (Ubuntu 5.13.0-19.19-generic 5.13.14)
[    0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/boot/ostree/elementary-00ee315d8d7e02dde65c2dc6a292f20df21133d3d2f6ab210e9e53cf5f68e7dd/vmlinuz-5.13.0-19-generic root=/dev/sda1 rw console=ttyS0 ostree=/ostree/boot.1/elementary/00ee315d8d7e02dde65c2dc6a292f20df21133d3d2f6ab210e9e53cf5f68e7dd/0
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] 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: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 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-0x0000000007fdffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000007fe0000-0x0000000007ffffff] 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 1.13.0-1ubuntu1.1 04/01/2014
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: cpu 0, msr 3801001, primary cpu clock
[    0.000001] kvm-clock: using sched offset of 45764478384 cycles
[    0.000005] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000011] tsc: Detected 1896.000 MHz processor
[    0.000687] last_pfn = 0x7fe0 max_arch_pfn = 0x400000000
[    0.000725] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.009428] found SMP MP-table at [mem 0x000f5ca0-0x000f5caf]
[    0.009457] Using GB pages for direct mapping
[    0.009602] RAMDISK: [mem 0x02a13000-0x06ad0fff]
[    0.009611] ACPI: Early table checksum verification disabled
[    0.009625] ACPI: RSDP 0x00000000000F5AD0 000014 (v00 BOCHS )
[    0.009633] ACPI: RSDT 0x0000000007FE18FE 000034 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009642] ACPI: FACP 0x0000000007FE17B2 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009649] ACPI: DSDT 0x0000000007FE0040 001772 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009653] ACPI: FACS 0x0000000007FE0000 000040
[    0.009657] ACPI: APIC 0x0000000007FE1826 000078 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009660] ACPI: HPET 0x0000000007FE189E 000038 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009664] ACPI: WAET 0x0000000007FE18D6 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009667] ACPI: Reserving FACP table memory at [mem 0x7fe17b2-0x7fe1825]
[    0.009669] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe17b1]
[    0.009670] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]
[    0.009671] ACPI: Reserving APIC table memory at [mem 0x7fe1826-0x7fe189d]
[    0.009672] ACPI: Reserving HPET table memory at [mem 0x7fe189e-0x7fe18d5]
[    0.009673] ACPI: Reserving WAET table memory at [mem 0x7fe18d6-0x7fe18fd]
[    0.009957] No NUMA configuration found
[    0.009958] Faking a node at [mem 0x0000000000000000-0x0000000007fdffff]
[    0.009969] NODE_DATA(0) allocated [mem 0x07fb6000-0x07fdffff]
[    0.010318] Zone ranges:
[    0.010320]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010322]   DMA32    [mem 0x0000000001000000-0x0000000007fdffff]
[    0.010323]   Normal   empty
[    0.010325]   Device   empty
[    0.010326] Movable zone start for each node
[    0.010328] Early memory node ranges
[    0.010329]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.010330]   node   0: [mem 0x0000000000100000-0x0000000007fdffff]
[    0.010332] Initmem setup node 0 [mem 0x0000000000001000-0x0000000007fdffff]
[    0.010348] On node 0, zone DMA: 1 pages in unavailable ranges
[    0.010440] On node 0, zone DMA: 97 pages in unavailable ranges
[    0.011146] On node 0, zone DMA32: 32 pages in unavailable ranges
[    0.011472] ACPI: PM-Timer IO Port: 0x608
[    0.011488] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.011519] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.011523] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.011525] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.011527] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.011531] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.011532] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.011539] Using ACPI (MADT) for SMP configuration information
[    0.011541] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.011544] TSC deadline timer available
[    0.011549] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.011562] kvm-guest: KVM setup pv remote TLB flush
[    0.011564] kvm-guest: setup PV sched yield
[    0.011576] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.011578] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.011579] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.011580] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.011581] [mem 0x08000000-0xfeffbfff] available for PCI devices
[    0.011583] Booting paravirtualized kernel on KVM
[    0.011589] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.011596] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[    0.012479] percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u2097152
[    0.012512] kvm-guest: setup async PF for cpu 0
[    0.012516] kvm-guest: stealtime: cpu 0, msr 7a2f080
[    0.012519] kvm-guest: PV spinlocks disabled, single CPU
[    0.012525] Built 1 zonelists, mobility grouping on.  Total pages: 31968
[    0.012526] Policy zone: DMA32
[    0.012527] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/boot/ostree/elementary-00ee315d8d7e02dde65c2dc6a292f20df21133d3d2f6ab210e9e53cf5f68e7dd/vmlinuz-5.13.0-19-generic root=/dev/sda1 rw console=ttyS0 ostree=/ostree/boot.1/elementary/00ee315d8d7e02dde65c2dc6a292f20df21133d3d2f6ab210e9e53cf5f68e7dd/0
[    0.012639] Dentry cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.012662] Inode-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.012697] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.012968] Memory: 33976K/130552K available (16393K kernel code, 3507K rwdata, 10500K rodata, 2860K init, 5768K bss, 96316K reserved, 0K cma-reserved)
[    0.012978] random: get_random_u64 called from kmem_cache_open+0x25/0x330 with crng_init=0
[    0.013074] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.013087] Kernel/User page tables isolation: enabled
[    0.013100] ftrace: allocating 49705 entries in 195 pages
[    0.027898] ftrace: allocated 195 pages with 4 groups
[    0.027988] rcu: Hierarchical RCU implementation.
[    0.027989] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[    0.027991] 	Rude variant of Tasks RCU enabled.
[    0.027992] 	Tracing variant of Tasks RCU enabled.
[    0.027992] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.027993] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.031189] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16
[    0.031439] random: crng done (trusting CPU's manufacturer)
[    0.041242] Console: colour VGA+ 80x25
[    0.145264] printk: console [ttyS0] enabled
[    0.145795] ACPI: Core revision 20210331
[    0.146418] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[    0.147565] APIC: Switch to symmetric I/O mode setup
[    0.148356] x2apic enabled
[    0.148901] Switched APIC routing to physical x2apic.
[    0.149572] kvm-guest: setup PV IPIs
[    0.150979] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.151705] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x36a8d32ce31, max_idle_ns: 881590731004 ns
[    0.153065] Calibrating delay loop (skipped) preset value.. 3792.00 BogoMIPS (lpj=7584000)
[    0.154463] pid_max: default: 32768 minimum: 301
[    0.155073] LSM: Security Framework initializing
[    0.157081] Yama: becoming mindful.
[    0.157529] AppArmor: AppArmor initialized
[    0.158016] Mount-cache hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.158838] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.159977] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.160779] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.161064] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.161768] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.162729] Spectre V2 : Mitigation: Full generic retpoline
[    0.163366] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.164293] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.165063] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.166008] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.167125] TAA: Mitigation: Clear CPU buffers
[    0.167631] SRBDS: Unknown: Dependent on hypervisor status
[    0.168251] MDS: Mitigation: Clear CPU buffers
[    0.177186] Freeing SMP alternatives memory: 40K
[    0.177855] smpboot: CPU0: Intel(R) Core(TM) i5-8350U CPU @ 1.70GHz (family: 0x6, model: 0x8e, stepping: 0xa)
[    0.179148] Performance Events: Skylake events, full-width counters, Intel PMU driver.
[    0.180091] ... version:                2
[    0.180552] ... bit width:              48
[    0.181022] ... generic registers:      4
[    0.181062] ... value mask:             0000ffffffffffff
[    0.181064] ... max period:             00007fffffffffff
[    0.181672] ... fixed-purpose events:   3
[    0.182132] ... event mask:             000000070000000f
[    0.182869] rcu: Hierarchical SRCU implementation.
[    0.183849] smp: Bringing up secondary CPUs ...
[    0.184375] smp: Brought up 1 node, 1 CPU
[    0.184836] smpboot: Max logical packages: 1
[    0.185066] smpboot: Total of 1 processors activated (3792.00 BogoMIPS)
[    0.185923] devtmpfs: initialized
[    0.186355] x86/mm: Memory block size: 128MB
[    0.187396] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.188533] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    0.189115] pinctrl core: initialized pinctrl subsystem
[    0.189833] PM: RTC time: 09:34:25, date: 2021-12-30
[    0.190497] NET: Registered protocol family 16
[    0.191077] DMA: preallocated 128 KiB GFP_KERNEL pool for atomic allocations
[    0.191929] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[    0.192847] DMA: preallocated 128 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[    0.193089] audit: initializing netlink subsys (disabled)
[    0.193823] thermal_sys: Registered thermal governor 'fair_share'
[    0.193824] thermal_sys: Registered thermal governor 'bang_bang'
[    0.194525] thermal_sys: Registered thermal governor 'step_wise'
[    0.195211] thermal_sys: Registered thermal governor 'user_space'
[    0.195897] thermal_sys: Registered thermal governor 'power_allocator'
[    0.196596] EISA bus registered
[    0.197433] audit: type=2000 audit(1640856866.721:1): state=initialized audit_enabled=0 res=1
[    0.198452] cpuidle: using governor ladder
[    0.198926] cpuidle: using governor menu
[    0.199424] ACPI: bus type PCI registered
[    0.199886] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.200705] PCI: Using configuration type 1 for base access
[    0.201955] Kprobes globally optimized
[    0.202599] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.203391] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.204773] ACPI: Added _OSI(Module Device)
[    0.205068] ACPI: Added _OSI(Processor Device)
[    0.205631] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.206265] ACPI: Added _OSI(Processor Aggregator Device)
[    0.207007] ACPI: Added _OSI(Linux-Dell-Video)
[    0.207606] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.208343] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.209777] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.211230] ACPI: Interpreter enabled
[    0.211707] ACPI: (supports S0 S3 S4 S5)
[    0.212234] ACPI: Using IOAPIC for interrupt routing
[    0.212877] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.213159] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.215515] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.216227] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.217137] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.219165] acpiphp: Slot [3] registered
[    0.219662] acpiphp: Slot [4] registered
[    0.220129] acpiphp: Slot [5] registered
[    0.220595] acpiphp: Slot [6] registered
[    0.221060] acpiphp: Slot [7] registered
[    0.221094] acpiphp: Slot [8] registered
[    0.221718] acpiphp: Slot [9] registered
[    0.222277] acpiphp: Slot [10] registered
[    0.222831] acpiphp: Slot [11] registered
[    0.223365] acpiphp: Slot [12] registered
[    0.223925] acpiphp: Slot [13] registered
[    0.224479] acpiphp: Slot [14] registered
[    0.225030] acpiphp: Slot [15] registered
[    0.225092] acpiphp: Slot [16] registered
[    0.225647] acpiphp: Slot [17] registered
[    0.226198] acpiphp: Slot [18] registered
[    0.226719] acpiphp: Slot [19] registered
[    0.227270] acpiphp: Slot [20] registered
[    0.227821] acpiphp: Slot [21] registered
[    0.228371] acpiphp: Slot [22] registered
[    0.228924] acpiphp: Slot [23] registered
[    0.229081] acpiphp: Slot [24] registered
[    0.229632] acpiphp: Slot [25] registered
[    0.230131] acpiphp: Slot [26] registered
[    0.230684] acpiphp: Slot [27] registered
[    0.231203] acpiphp: Slot [28] registered
[    0.231748] acpiphp: Slot [29] registered
[    0.232390] acpiphp: Slot [30] registered
[    0.233096] acpiphp: Slot [31] registered
[    0.233785] PCI host bridge to bus 0000:00
[    0.234338] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.235054] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.235932] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.236856] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.237065] pci_bus 0000:00: root bus resource [mem 0x08000000-0xfebfffff window]
[    0.238047] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
[    0.239060] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.240734] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.241543] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.243738] pci 0000:00:01.1: reg 0x20: [io  0xc040-0xc04f]
[    0.245085] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.246013] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.246882] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.248638] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.249262] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.250408] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.251423] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.252744] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000
[    0.254488] pci 0000:00:02.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
[    0.256256] pci 0000:00:02.0: reg 0x18: [mem 0xfebb0000-0xfebb0fff]
[    0.258762] pci 0000:00:02.0: reg 0x30: [mem 0xfeba0000-0xfebaffff pref]
[    0.260548] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
[    0.261725] pci 0000:00:03.0: reg 0x10: [mem 0xfeb80000-0xfeb9ffff]
[    0.263604] pci 0000:00:03.0: reg 0x14: [io  0xc000-0xc03f]
[    0.267217] pci 0000:00:03.0: reg 0x30: [mem 0xfeb00000-0xfeb7ffff pref]
[    0.273038] ACPI: PCI: Interrupt link LNKA configured for IRQ 10
[    0.273167] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[    0.273958] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[    0.274853] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[    0.275668] ACPI: PCI: Interrupt link LNKS configured for IRQ 9
[    0.276766] iommu: Default domain type: Translated 
[    0.277243] SCSI subsystem initialized
[    0.277848] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.279164] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.280481] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.281067] vgaarb: loaded
[    0.281495] ACPI: bus type USB registered
[    0.282028] usbcore: registered new interface driver usbfs
[    0.282795] usbcore: registered new interface driver hub
[    0.283521] usbcore: registered new device driver usb
[    0.284228] pps_core: LinuxPPS API ver. 1 registered
[    0.284905] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.285069] PTP clock support registered
[    0.285657] EDAC MC: Ver: 3.0.0
[    0.286429] NetLabel: Initializing
[    0.286868] NetLabel:  domain hash size = 128
[    0.287369] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.288035] NetLabel:  unlabeled traffic allowed by default
[    0.288749] PCI: Using ACPI for IRQ routing
[    0.289231] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.289921] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[    0.292786] clocksource: Switched to clocksource kvm-clock
[    0.296806] VFS: Disk quotas dquot_6.6.0
[    0.297348] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.298243] AppArmor: AppArmor Filesystem Enabled
[    0.298876] pnp: PnP ACPI init
[    0.299602] pnp: PnP ACPI: found 6 devices
[    0.307988] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.309212] NET: Registered protocol family 2
[    0.309828] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.312325] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.313479] TCP established hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.314454] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.315399] TCP: Hash tables configured (established 1024 bind 1024)
[    0.316287] MPTCP token hash table entries: 256 (order: 0, 6144 bytes, linear)
[    0.317273] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.318148] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.319108] NET: Registered protocol family 1
[    0.319742] NET: Registered protocol family 44
[    0.320355] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.321241] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.322064] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.323334] pci_bus 0000:00: resource 7 [mem 0x08000000-0xfebfffff window]
[    0.324200] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
[    0.325181] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.325928] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.326722] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.327574] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.328684] PCI: CLS 0 bytes, default 64
[    0.329269] Trying to unpack rootfs image as initramfs...
[    0.329995] Initramfs unpacking failed: invalid magic at start of compressed archive

Apparently dracut creates an unreadable image or grub cannot read the image. I have already experimented with different compression algorithms when configuring dracut. Unfortunately without success.

Therefore I am testing in parallel a version for OS 6 based on focal. The created image can read the initramfs, but fails afterwards with a kernel panic, because ostree cannot prepare the filesystem:

[ 0.759772] Run /ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root as init process
[0.765120] Kernel panic - not syncing: Requested init /ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root failed (error -2).
[ 0.767585] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.0-91-generic #102-Ubuntu
[ 0.768568] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.13.0-1ubuntu1.1 04/01/2014
[ 0.769670] call trace:
[ 0.769996] dump_stack+0x6d/0x8b
[ 0.770396] ? __noinstr_text_end+0x3888/0x38c8
[ 0.770946 ] panic+0x101/0x2e3
[ 0.771344] ? rest_init+0xb0/0xb0
[ 0.771747] kernel_init+0xb4/0x110
[ 0.772199] ret_from_fork+0x35/0x40
[ 0.772727] Kernel offset: 0x24a00000 from 0xffffff81000000 (relocation range: 0xffffff80000000-0xffffffbfffffff)
[0.774065] ---[ end Kernel panic - not syncing: Requested init /ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root failed (error -2). ]---
Full log
[    0.000000] Linux version 5.4.0-91-generic (buildd@lcy01-amd64-017) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #102-Ubuntu SMP Fri Nov 5 16:31:28 UTC 2021 (Ubuntu 5.4.0-91.102-generic 5.4.151)
[    0.000000] Command line: BOOT_IMAGE=(hd0,msdos1)/boot/ostree/elementary-5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/vmlinuz-5.4.0-91-generic root=/dev/sda1 rw console=ttyS0 init=/ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root ostree=/ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Hygon HygonGenuine
[    0.000000]   Centaur CentaurHauls
[    0.000000]   zhaoxin   Shanghai  
[    0.000000] 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: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[    0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[    0.000000] x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
[    0.000000] x86/fpu: xstate_offset[3]:  832, xstate_sizes[3]:   64
[    0.000000] x86/fpu: xstate_offset[4]:  896, xstate_sizes[4]:   64
[    0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 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-0x0000000007fdffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000007fe0000-0x0000000007ffffff] 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 1.13.0-1ubuntu1.1 04/01/2014
[    0.000000] Hypervisor detected: KVM
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: cpu 0, msr 5a01001, primary cpu clock
[    0.000000] kvm-clock: using sched offset of 31382990998 cycles
[    0.000006] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000012] tsc: Detected 1896.000 MHz processor
[    0.002034] last_pfn = 0x7fe0 max_arch_pfn = 0x400000000
[    0.002099] x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
[    0.009199] found SMP MP-table at [mem 0x000f5ca0-0x000f5caf]
[    0.009362] check: Scanning 1 areas for low memory corruption
[    0.009394] Using GB pages for direct mapping
[    0.009531] ACPI: Early table checksum verification disabled
[    0.009550] ACPI: RSDP 0x00000000000F5AD0 000014 (v00 BOCHS )
[    0.009557] ACPI: RSDT 0x0000000007FE18FE 000034 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009563] ACPI: FACP 0x0000000007FE17B2 000074 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009569] ACPI: DSDT 0x0000000007FE0040 001772 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009572] ACPI: FACS 0x0000000007FE0000 000040
[    0.009575] ACPI: APIC 0x0000000007FE1826 000078 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009578] ACPI: HPET 0x0000000007FE189E 000038 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009581] ACPI: WAET 0x0000000007FE18D6 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
[    0.009584] ACPI: Reserving FACP table memory at [mem 0x7fe17b2-0x7fe1825]
[    0.009585] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe17b1]
[    0.009585] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]
[    0.009586] ACPI: Reserving APIC table memory at [mem 0x7fe1826-0x7fe189d]
[    0.009587] ACPI: Reserving HPET table memory at [mem 0x7fe189e-0x7fe18d5]
[    0.009587] ACPI: Reserving WAET table memory at [mem 0x7fe18d6-0x7fe18fd]
[    0.009918] No NUMA configuration found
[    0.009920] Faking a node at [mem 0x0000000000000000-0x0000000007fdffff]
[    0.009929] NODE_DATA(0) allocated [mem 0x07fb5000-0x07fdffff]
[    0.010171] Zone ranges:
[    0.010172]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.010173]   DMA32    [mem 0x0000000001000000-0x0000000007fdffff]
[    0.010174]   Normal   empty
[    0.010175]   Device   empty
[    0.010175] Movable zone start for each node
[    0.010178] Early memory node ranges
[    0.010179]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.010180]   node   0: [mem 0x0000000000100000-0x0000000007fdffff]
[    0.010189] Zeroed struct page in unavailable ranges: 130 pages
[    0.010190] Initmem setup node 0 [mem 0x0000000000001000-0x0000000007fdffff]
[    0.011465] ACPI: PM-Timer IO Port: 0x608
[    0.011480] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.011513] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.011516] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.011517] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.011518] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.011523] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.011524] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.011528] Using ACPI (MADT) for SMP configuration information
[    0.011530] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.011534] TSC deadline timer available
[    0.011539] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.011550] KVM setup pv sched yield
[    0.011563] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.011564] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.011564] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.011565] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.011566] [mem 0x08000000-0xfeffbfff] available for PCI devices
[    0.011567] Booting paravirtualized kernel on KVM
[    0.011572] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.011575] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[    0.011707] percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u2097152
[    0.011735] setup async PF for cpu 0
[    0.011739] kvm-stealtime: cpu 0, msr 782d040
[    0.011743] Built 1 zonelists, mobility grouping on.  Total pages: 32105
[    0.011744] Policy zone: DMA32
[    0.011745] Kernel command line: BOOT_IMAGE=(hd0,msdos1)/boot/ostree/elementary-5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/vmlinuz-5.4.0-91-generic root=/dev/sda1 rw console=ttyS0 init=/ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root ostree=/ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0
[    0.011901] Dentry cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[    0.011935] Inode-cache hash table entries: 8192 (order: 4, 65536 bytes, linear)
[    0.011970] mem auto-init: stack:off, heap alloc:on, heap free:off
[    0.012243] Memory: 94964K/130552K available (14339K kernel code, 2400K rwdata, 5020K rodata, 2736K init, 4964K bss, 35588K reserved, 0K cma-reserved)
[    0.012253] random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0
[    0.012425] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.012451] Kernel/User page tables isolation: enabled
[    0.012471] ftrace: allocating 44628 entries in 175 pages
[    0.027917] rcu: Hierarchical RCU implementation.
[    0.027919] rcu: 	RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[    0.027920] 	Tasks RCU enabled.
[    0.027921] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[    0.027921] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.030064] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16
[    0.030342] random: crng done (trusting CPU's manufacturer)
[    0.042811] Console: colour VGA+ 80x25
[    0.139218] printk: console [ttyS0] enabled
[    0.139731] ACPI: Core revision 20190816
[    0.140308] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[    0.141440] APIC: Switch to symmetric I/O mode setup
[    0.142279] x2apic enabled
[    0.142823] Switched APIC routing to physical x2apic.
[    0.143420] KVM setup pv IPIs
[    0.144699] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.145502] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x36a8d32ce31, max_idle_ns: 881590731004 ns
[    0.147345] Calibrating delay loop (skipped) preset value.. 3792.00 BogoMIPS (lpj=7584000)
[    0.148664] pid_max: default: 32768 minimum: 301
[    0.151351] LSM: Security Framework initializing
[    0.152098] Yama: becoming mindful.
[    0.152667] AppArmor: AppArmor initialized
[    0.153363] Mount-cache hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.154278] Mountpoint-cache hash table entries: 512 (order: 0, 4096 bytes, linear)
[    0.155208] *** VALIDATE tmpfs ***
[    0.155453] *** VALIDATE proc ***
[    0.155889] *** VALIDATE cgroup1 ***
[    0.156322] *** VALIDATE cgroup2 ***
[    0.156824] x86/cpu: User Mode Instruction Prevention (UMIP) activated
[    0.157748] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.158352] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.159347] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[    0.160314] Spectre V2 : Mitigation: Full generic retpoline
[    0.161011] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[    0.161953] Spectre V2 : Enabling Restricted Speculation for firmware calls
[    0.162744] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[    0.163343] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[    0.164962] TAA: Mitigation: Clear CPU buffers
[    0.165830] SRBDS: Unknown: Dependent on hypervisor status
[    0.166765] MDS: Mitigation: Clear CPU buffers
[    0.172104] Freeing SMP alternatives memory: 40K
[    0.174096] smpboot: CPU0: Intel(R) Core(TM) i5-8350U CPU @ 1.70GHz (family: 0x6, model: 0x8e, stepping: 0xa)
[    0.175340] Performance Events: Skylake events, full-width counters, Intel PMU driver.
[    0.175340] ... version:                2
[    0.175340] ... bit width:              48
[    0.175340] ... generic registers:      4
[    0.175340] ... value mask:             0000ffffffffffff
[    0.175343] ... max period:             00007fffffffffff
[    0.175983] ... fixed-purpose events:   3
[    0.176445] ... event mask:             000000070000000f
[    0.177113] rcu: Hierarchical SRCU implementation.
[    0.178295] smp: Bringing up secondary CPUs ...
[    0.179158] smp: Brought up 1 node, 1 CPU
[    0.179349] smpboot: Max logical packages: 1
[    0.179962] smpboot: Total of 1 processors activated (3792.00 BogoMIPS)
[    0.180830] devtmpfs: initialized
[    0.181249] x86/mm: Memory block size: 128MB
[    0.181933] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.183043] futex hash table entries: 256 (order: 2, 16384 bytes, linear)
[    0.183380] pinctrl core: initialized pinctrl subsystem
[    0.184070] PM: RTC time: 09:35:36, date: 2021-12-30
[    0.184712] NET: Registered protocol family 16
[    0.185290] audit: initializing netlink subsys (disabled)
[    0.185997] EISA bus registered
[    0.186366] cpuidle: using governor ladder
[    0.186837] cpuidle: using governor menu
[    0.187319] KVM setup pv remote TLB flush
[    0.187354] audit: type=2000 audit(1640856937.031:1): state=initialized audit_enabled=0 res=1
[    0.188322] ACPI: bus type PCI registered
[    0.188789] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.189661] PCI: Using configuration type 1 for base access
[    0.191358] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
[    0.192137] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.193721] ACPI: Added _OSI(Module Device)
[    0.194252] ACPI: Added _OSI(Processor Device)
[    0.194971] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.195351] ACPI: Added _OSI(Processor Aggregator Device)
[    0.196213] ACPI: Added _OSI(Linux-Dell-Video)
[    0.196928] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[    0.197769] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[    0.199325] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.200101] ACPI: Interpreter enabled
[    0.200543] ACPI: (supports S0 S3 S4 S5)
[    0.201001] ACPI: Using IOAPIC for interrupt routing
[    0.201583] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.202705] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.205140] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.205886] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
[    0.206779] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.207574] acpiphp: Slot [3] registered
[    0.208499] acpiphp: Slot [4] registered
[    0.209132] acpiphp: Slot [5] registered
[    0.209796] acpiphp: Slot [6] registered
[    0.210319] acpiphp: Slot [7] registered
[    0.210798] acpiphp: Slot [8] registered
[    0.211292] acpiphp: Slot [9] registered
[    0.211381] acpiphp: Slot [10] registered
[    0.211860] acpiphp: Slot [11] registered
[    0.212336] acpiphp: Slot [12] registered
[    0.212812] acpiphp: Slot [13] registered
[    0.213287] acpiphp: Slot [14] registered
[    0.213763] acpiphp: Slot [15] registered
[    0.214239] acpiphp: Slot [16] registered
[    0.214725] acpiphp: Slot [17] registered
[    0.215199] acpiphp: Slot [18] registered
[    0.215356] acpiphp: Slot [19] registered
[    0.215832] acpiphp: Slot [20] registered
[    0.216308] acpiphp: Slot [21] registered
[    0.216783] acpiphp: Slot [22] registered
[    0.217255] acpiphp: Slot [23] registered
[    0.217739] acpiphp: Slot [24] registered
[    0.218221] acpiphp: Slot [25] registered
[    0.218695] acpiphp: Slot [26] registered
[    0.219171] acpiphp: Slot [27] registered
[    0.219357] acpiphp: Slot [28] registered
[    0.219923] acpiphp: Slot [29] registered
[    0.220403] acpiphp: Slot [30] registered
[    0.220880] acpiphp: Slot [31] registered
[    0.221356] PCI host bridge to bus 0000:00
[    0.221839] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.222606] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.223354] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.224675] pci_bus 0000:00: root bus resource [mem 0x08000000-0xfebfffff window]
[    0.225931] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
[    0.227127] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.227405] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
[    0.229008] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
[    0.230243] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
[    0.232441] pci 0000:00:01.1: reg 0x20: [io  0xc040-0xc04f]
[    0.233728] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.234540] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.235320] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.235345] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.236263] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
[    0.237517] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.238379] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.239866] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000
[    0.241967] pci 0000:00:02.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
[    0.243569] pci 0000:00:02.0: reg 0x18: [mem 0xfebb0000-0xfebb0fff]
[    0.246635] pci 0000:00:02.0: reg 0x30: [mem 0xfeba0000-0xfebaffff pref]
[    0.247898] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
[    0.249110] pci 0000:00:03.0: reg 0x10: [mem 0xfeb80000-0xfeb9ffff]
[    0.250382] pci 0000:00:03.0: reg 0x14: [io  0xc000-0xc03f]
[    0.253319] pci 0000:00:03.0: reg 0x30: [mem 0xfeb00000-0xfeb7ffff pref]
[    0.260855] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[    0.261619] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    0.262364] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    0.263092] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[    0.263419] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
[    0.264291] iommu: Default domain type: Translated 
[    0.265028] SCSI subsystem initialized
[    0.265546] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.266233] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.267345] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.268009] vgaarb: loaded
[    0.268357] ACPI: bus type USB registered
[    0.268839] usbcore: registered new interface driver usbfs
[    0.269509] usbcore: registered new interface driver hub
[    0.270157] usbcore: registered new device driver usb
[    0.271421] pps_core: LinuxPPS API ver. 1 registered
[    0.272243] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
[    0.273412] PTP clock support registered
[    0.273912] EDAC MC: Ver: 3.0.0
[    0.274480] PCI: Using ACPI for IRQ routing
[    0.275184] NetLabel: Initializing
[    0.275343] NetLabel:  domain hash size = 128
[    0.275853] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.276513] NetLabel:  unlabeled traffic allowed by default
[    0.277265] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.277829] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[    0.282438] clocksource: Switched to clocksource kvm-clock
[    0.290516] *** VALIDATE bpf ***
[    0.290987] VFS: Disk quotas dquot_6.6.0
[    0.291472] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.292294] *** VALIDATE ramfs ***
[    0.292756] *** VALIDATE hugetlbfs ***
[    0.293275] AppArmor: AppArmor Filesystem Enabled
[    0.293840] pnp: PnP ACPI init
[    0.294507] pnp: PnP ACPI: found 6 devices
[    0.295722] thermal_sys: Registered thermal governor 'fair_share'
[    0.295723] thermal_sys: Registered thermal governor 'bang_bang'
[    0.296503] thermal_sys: Registered thermal governor 'step_wise'
[    0.297193] thermal_sys: Registered thermal governor 'user_space'
[    0.297883] thermal_sys: Registered thermal governor 'power_allocator'
[    0.303156] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.304958] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
[    0.305665] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
[    0.306371] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[    0.307174] pci_bus 0000:00: resource 7 [mem 0x08000000-0xfebfffff window]
[    0.307964] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
[    0.308876] NET: Registered protocol family 2
[    0.309404] IP idents hash table entries: 2048 (order: 2, 16384 bytes, linear)
[    0.310356] tcp_listen_portaddr_hash hash table entries: 256 (order: 0, 4096 bytes, linear)
[    0.311318] TCP established hash table entries: 1024 (order: 1, 8192 bytes, linear)
[    0.312202] TCP bind hash table entries: 1024 (order: 2, 16384 bytes, linear)
[    0.313030] TCP: Hash tables configured (established 1024 bind 1024)
[    0.313817] UDP hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.314566] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes, linear)
[    0.315442] NET: Registered protocol family 1
[    0.315958] NET: Registered protocol family 44
[    0.316524] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.317678] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.318603] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.319694] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.321019] PCI: CLS 0 bytes, default 64
[    0.321798] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x36a8d32ce31, max_idle_ns: 881590731004 ns
[    0.323278] check: Scanning for low memory corruption every 60 seconds
[    0.324315] Initialise system trusted keyrings
[    0.324950] Key type blacklist registered
[    0.325488] workingset: timestamp_bits=36 max_order=15 bucket_order=0
[    0.327131] zbud: loaded
[    0.327743] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.328518] fuse: init (API version 7.31)
[    0.329039] *** VALIDATE fuse ***
[    0.329422] *** VALIDATE fuse ***
[    0.329958] Platform Keyring initialized
[    0.332710] Key type asymmetric registered
[    0.333211] Asymmetric key parser 'x509' registered
[    0.334332] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
[    0.335263] io scheduler mq-deadline registered
[    0.336172] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[    0.337408] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    0.338630] ACPI: Power Button [PWRF]
[    0.339479] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.363839] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.365606] Linux agpgart interface v0.103
[    0.459537] loop: module loaded
[    0.462964] scsi host0: ata_piix
[    0.464941] scsi host1: ata_piix
[    0.466413] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
[    0.470956] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
[    0.474362] libphy: Fixed MDIO Bus: probed
[    0.474982] tun: Universal TUN/TAP device driver, 1.6
[    0.475778] PPP generic driver version 2.4.2
[    0.476455] VFIO - User Level meta-driver version: 0.3
[    0.477264] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.478225] ehci-pci: EHCI PCI platform driver
[    0.478904] ehci-platform: EHCI generic platform driver
[    0.479888] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.480824] ohci-pci: OHCI PCI platform driver
[    0.481497] ohci-platform: OHCI generic platform driver
[    0.482272] uhci_hcd: USB Universal Host Controller Interface driver
[    0.483269] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    0.489161] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.489923] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.490812] mousedev: PS/2 mouse device common for all mice
[    0.492029] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    0.493557] rtc_cmos 00:05: RTC can wake from S4
[    0.494719] rtc_cmos 00:05: registered as rtc0
[    0.495422] rtc_cmos 00:05: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
[    0.496587] i2c /dev entries driver
[    0.497159] device-mapper: uevent: version 1.0.3
[    0.497896] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: [email protected]
[    0.499230] platform eisa.0: Probing EISA bus 0
[    0.499917] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    0.501491] platform eisa.0: Cannot allocate resource for EISA slot 1
[    0.502407] platform eisa.0: Cannot allocate resource for EISA slot 2
[    0.503270] platform eisa.0: Cannot allocate resource for EISA slot 3
[    0.504148] platform eisa.0: Cannot allocate resource for EISA slot 4
[    0.505028] platform eisa.0: Cannot allocate resource for EISA slot 5
[    0.505858] platform eisa.0: Cannot allocate resource for EISA slot 6
[    0.506695] platform eisa.0: Cannot allocate resource for EISA slot 7
[    0.507577] platform eisa.0: Cannot allocate resource for EISA slot 8
[    0.508435] platform eisa.0: EISA: Detected 0 cards
[    0.509067] intel_pstate: CPU model not supported
[    0.509694] ledtrig-cpu: registered to indicate activity on CPUs
[    0.510622] intel_pmc_core intel_pmc_core.0:  initialized
[    0.511331] drop_monitor: Initializing network drop monitor service
[    0.512251] NET: Registered protocol family 10
[    0.513226] Segment Routing with IPv6
[    0.513710] NET: Registered protocol family 17
[    0.514298] Key type dns_resolver registered
[    0.514956] RAS: Correctable Errors collector initialized.
[    0.515718] IPI shorthand broadcast: enabled
[    0.516261] sched_clock: Marking stable (402521320, 113178903)->(528136690, -12436467)
[    0.517758] registered taskstats version 1
[    0.518343] Loading compiled-in X.509 certificates
[    0.519507] Loaded X.509 cert 'Build time autogenerated kernel key: 168dd4ce00092acf2ca44d8312eb368aba9b9faa'
[    0.521193] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[    0.522778] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[    0.523998] zswap: loaded using pool lzo/zbud
[    0.524562] Key type ._fscrypt registered
[    0.525041] Key type .fscrypt registered
[    0.525669] Key type big_key registered
[    0.526229] Key type encrypted registered
[    0.526710] AppArmor: AppArmor sha1 policy hashing enabled
[    0.527463] ima: No TPM chip found, activating TPM-bypass!
[    0.528120] ima: Allocated hash algorithm: sha1
[    0.528648] ima: No architecture policies found
[    0.529174] evm: Initialising EVM extended attributes:
[    0.529780] evm: security.selinux
[    0.530197] evm: security.SMACK64
[    0.530583] evm: security.SMACK64EXEC
[    0.531012] evm: security.SMACK64TRANSMUTE
[    0.531493] evm: security.SMACK64MMAP
[    0.531917] evm: security.apparmor
[    0.532308] evm: security.ima
[    0.532678] evm: security.capability
[    0.533092] evm: HMAC attrs: 0x1
[    0.534340] PM:   Magic number: 1:276:577
[    0.534976] rtc_cmos 00:05: setting system clock to 2021-12-30T09:35:36 UTC (1640856936)
[    0.634799] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
[    0.639197] ata1.00: 4613735 sectors, multi 16: LBA48 
[    0.642274] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[    0.647984] scsi 0:0:0:0: Direct-Access     ATA      QEMU HARDDISK    2.5+ PQ: 0 ANSI: 5
[    0.652310] sd 0:0:0:0: [sda] 4613735 512-byte logical blocks: (2.36 GB/2.20 GiB)
[    0.657020] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    0.659804] sd 0:0:0:0: [sda] Write Protect is off
[    0.663458] scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.5+ PQ: 0 ANSI: 5
[    0.668376] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    0.672942]  sda: sda1
[    0.683539] sd 0:0:0:0: [sda] Attached SCSI disk
[    0.692146] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[    0.693666] cdrom: Uniform CD-ROM driver Revision: 3.20
[    0.703534] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    0.704995] md: Waiting for all devices to be available before autodetect
[    0.706328] md: If you don't use raid, use raid=noautodetect
[    0.707768] md: Autodetecting RAID arrays.
[    0.708717] md: autorun ...
[    0.709285] md: ... autorun DONE.
[    0.714746] EXT4-fs (sda1): recovery complete
[    0.715730] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
[    0.717252] VFS: Mounted root (ext4 filesystem) on device 8:1.
[    0.719389] devtmpfs: mounted
[    0.720959] Freeing unused decrypted memory: 2040K
[    0.722729] Freeing unused kernel image memory: 2736K
[    0.731463] Write protecting the kernel read-only data: 22528k
[    0.733920] Freeing unused kernel image memory: 2008K
[    0.735875] Freeing unused kernel image memory: 1124K
[    0.748701] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.749774] x86/mm: Checking user space page tables
[    0.758943] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[    0.759772] Run /ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root as init process
[    0.765120] Kernel panic - not syncing: Requested init /ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root failed (error -2).
[    0.767585] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 5.4.0-91-generic #102-Ubuntu
[    0.768568] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.13.0-1ubuntu1.1 04/01/2014
[    0.769670] Call Trace:
[    0.769996]  dump_stack+0x6d/0x8b
[    0.770396]  ? __noinstr_text_end+0x3888/0x38c8
[    0.770946]  panic+0x101/0x2e3
[    0.771344]  ? rest_init+0xb0/0xb0
[    0.771747]  kernel_init+0xb4/0x110
[    0.772199]  ret_from_fork+0x35/0x40
[    0.772727] Kernel Offset: 0x24a00000 from 0xffffffff81000000 (relocation range: 0xffffffff80000000-0xffffffffbfffffff)
[    0.774065] ---[ end Kernel panic - not syncing: Requested init /ostree/boot.1/elementary/5c6120cddb77ba236333081e69ac4f790d6983a899047df0e728bf1ab2b84afc/0/usr/lib/ostree/ostree-prepare-root failed (error -2). ]---

I will keep you updated.

meisenzahl avatar Dec 31 '21 07:12 meisenzahl

I am now able boot an ostree based image for OS 7 based on Ubuntu 22.04.

But currently systemd services fail with a permission denied error:

Full log
-- Journal begins at Mon 2022-01-17 19:03:57 UTC, ends at Mon 2022-01-17 19:04:15 UTC. --
Jan 17 19:03:57 localhost kernel: Linux version 5.13.0-19-generic (buildd@lgw01-amd64-013) (gcc (Ubuntu 11.2.0-7ubuntu2) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.37) #19-Ubuntu SMP Thu Oct 7 21:58:00 UTC 2021 (Ubuntu 5.13.0-19.19-generic 5.13.14)
Jan 17 19:03:57 localhost kernel: Command line: BOOT_IMAGE=/ostree/elementary-2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/vmlinuz-5.13.0-19-generic root=UUID=8b35f256-68e7-4e96-b6c1-e61206528220 ro quiet splash ostree=/ostree/boot.0/elementary/2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/0
Jan 17 19:03:57 localhost kernel: KERNEL supported cpus:
Jan 17 19:03:57 localhost kernel:   Intel GenuineIntel
Jan 17 19:03:57 localhost kernel:   AMD AuthenticAMD
Jan 17 19:03:57 localhost kernel:   Hygon HygonGenuine
Jan 17 19:03:57 localhost kernel:   Centaur CentaurHauls
Jan 17 19:03:57 localhost kernel:   zhaoxin   Shanghai  
Jan 17 19:03:57 localhost kernel: x86/fpu: x87 FPU will use FXSAVE
Jan 17 19:03:57 localhost kernel: BIOS-provided physical RAM map:
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x0000000000100000-0x000000007ffd7fff] usable
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x000000007ffd8000-0x000000007fffffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Jan 17 19:03:57 localhost kernel: BIOS-e820: [mem 0x0000000100000000-0x000000027fffffff] usable
Jan 17 19:03:57 localhost kernel: NX (Execute Disable) protection: active
Jan 17 19:03:57 localhost kernel: SMBIOS 2.8 present.
Jan 17 19:03:57 localhost kernel: DMI: QEMU Standard PC (Q35 + ICH9, 2009), BIOS 1.13.0-1ubuntu1.1 04/01/2014
Jan 17 19:03:57 localhost kernel: Hypervisor detected: KVM
Jan 17 19:03:57 localhost kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 0, msr 166801001, primary cpu clock
Jan 17 19:03:57 localhost kernel: kvm-clock: using sched offset of 251492103988 cycles
Jan 17 19:03:57 localhost kernel: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
Jan 17 19:03:57 localhost kernel: tsc: Detected 3457.998 MHz processor
Jan 17 19:03:57 localhost kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Jan 17 19:03:57 localhost kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Jan 17 19:03:57 localhost kernel: last_pfn = 0x280000 max_arch_pfn = 0x400000000
Jan 17 19:03:57 localhost kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Jan 17 19:03:57 localhost kernel: last_pfn = 0x7ffd8 max_arch_pfn = 0x400000000
Jan 17 19:03:57 localhost kernel: found SMP MP-table at [mem 0x000f5be0-0x000f5bef]
Jan 17 19:03:57 localhost kernel: Using GB pages for direct mapping
Jan 17 19:03:57 localhost kernel: RAMDISK: [mem 0x32a7d000-0x35535fff]
Jan 17 19:03:57 localhost kernel: ACPI: Early table checksum verification disabled
Jan 17 19:03:57 localhost kernel: ACPI: RSDP 0x00000000000F5BA0 000014 (v00 BOCHS )
Jan 17 19:03:57 localhost kernel: ACPI: RSDT 0x000000007FFE1F2C 000034 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
Jan 17 19:03:57 localhost kernel: ACPI: FACP 0x000000007FFE1D24 0000F4 (v03 BOCHS  BXPC     00000001 BXPC 00000001)
Jan 17 19:03:57 localhost kernel: ACPI: DSDT 0x000000007FFDFCC0 002064 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
Jan 17 19:03:57 localhost kernel: ACPI: FACS 0x000000007FFDFC80 000040
Jan 17 19:03:57 localhost kernel: ACPI: APIC 0x000000007FFE1E18 0000B0 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
Jan 17 19:03:57 localhost kernel: ACPI: MCFG 0x000000007FFE1EC8 00003C (v01 BOCHS  BXPC     00000001 BXPC 00000001)
Jan 17 19:03:57 localhost kernel: ACPI: WAET 0x000000007FFE1F04 000028 (v01 BOCHS  BXPC     00000001 BXPC 00000001)
Jan 17 19:03:57 localhost kernel: ACPI: Reserving FACP table memory at [mem 0x7ffe1d24-0x7ffe1e17]
Jan 17 19:03:57 localhost kernel: ACPI: Reserving DSDT table memory at [mem 0x7ffdfcc0-0x7ffe1d23]
Jan 17 19:03:57 localhost kernel: ACPI: Reserving FACS table memory at [mem 0x7ffdfc80-0x7ffdfcbf]
Jan 17 19:03:57 localhost kernel: ACPI: Reserving APIC table memory at [mem 0x7ffe1e18-0x7ffe1ec7]
Jan 17 19:03:57 localhost kernel: ACPI: Reserving MCFG table memory at [mem 0x7ffe1ec8-0x7ffe1f03]
Jan 17 19:03:57 localhost kernel: ACPI: Reserving WAET table memory at [mem 0x7ffe1f04-0x7ffe1f2b]
Jan 17 19:03:57 localhost kernel: ACPI: Local APIC address 0xfee00000
Jan 17 19:03:57 localhost kernel: No NUMA configuration found
Jan 17 19:03:57 localhost kernel: Faking a node at [mem 0x0000000000000000-0x000000027fffffff]
Jan 17 19:03:57 localhost kernel: NODE_DATA(0) allocated [mem 0x27ffd6000-0x27fffffff]
Jan 17 19:03:57 localhost kernel: Zone ranges:
Jan 17 19:03:57 localhost kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Jan 17 19:03:57 localhost kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Jan 17 19:03:57 localhost kernel:   Normal   [mem 0x0000000100000000-0x000000027fffffff]
Jan 17 19:03:57 localhost kernel:   Device   empty
Jan 17 19:03:57 localhost kernel: Movable zone start for each node
Jan 17 19:03:57 localhost kernel: Early memory node ranges
Jan 17 19:03:57 localhost kernel:   node   0: [mem 0x0000000000001000-0x000000000009efff]
Jan 17 19:03:57 localhost kernel:   node   0: [mem 0x0000000000100000-0x000000007ffd7fff]
Jan 17 19:03:57 localhost kernel:   node   0: [mem 0x0000000100000000-0x000000027fffffff]
Jan 17 19:03:57 localhost kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000027fffffff]
Jan 17 19:03:57 localhost kernel: On node 0 totalpages: 2097014
Jan 17 19:03:57 localhost kernel:   DMA zone: 64 pages used for memmap
Jan 17 19:03:57 localhost kernel:   DMA zone: 158 pages reserved
Jan 17 19:03:57 localhost kernel:   DMA zone: 3998 pages, LIFO batch:0
Jan 17 19:03:57 localhost kernel:   DMA32 zone: 8128 pages used for memmap
Jan 17 19:03:57 localhost kernel:   DMA32 zone: 520152 pages, LIFO batch:63
Jan 17 19:03:57 localhost kernel:   Normal zone: 24576 pages used for memmap
Jan 17 19:03:57 localhost kernel:   Normal zone: 1572864 pages, LIFO batch:63
Jan 17 19:03:57 localhost kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Jan 17 19:03:57 localhost kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Jan 17 19:03:57 localhost kernel: On node 0, zone Normal: 40 pages in unavailable ranges
Jan 17 19:03:57 localhost kernel: ACPI: PM-Timer IO Port: 0x608
Jan 17 19:03:57 localhost kernel: ACPI: Local APIC address 0xfee00000
Jan 17 19:03:57 localhost kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
Jan 17 19:03:57 localhost kernel: IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
Jan 17 19:03:57 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Jan 17 19:03:57 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
Jan 17 19:03:57 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Jan 17 19:03:57 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
Jan 17 19:03:57 localhost kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
Jan 17 19:03:57 localhost kernel: ACPI: IRQ0 used by override.
Jan 17 19:03:57 localhost kernel: ACPI: IRQ5 used by override.
Jan 17 19:03:57 localhost kernel: ACPI: IRQ9 used by override.
Jan 17 19:03:57 localhost kernel: ACPI: IRQ10 used by override.
Jan 17 19:03:57 localhost kernel: ACPI: IRQ11 used by override.
Jan 17 19:03:57 localhost kernel: Using ACPI (MADT) for SMP configuration information
Jan 17 19:03:57 localhost kernel: TSC deadline timer available
Jan 17 19:03:57 localhost kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x7ffd8000-0x7fffffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0x80000000-0xafffffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xb0000000-0xbfffffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xc0000000-0xfed1bfff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfeffbfff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfeffc000-0xfeffffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xfffbffff]
Jan 17 19:03:57 localhost kernel: PM: hibernation: Registered nosave memory: [mem 0xfffc0000-0xffffffff]
Jan 17 19:03:57 localhost kernel: [mem 0xc0000000-0xfed1bfff] available for PCI devices
Jan 17 19:03:57 localhost kernel: Booting paravirtualized kernel on KVM
Jan 17 19:03:57 localhost kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Jan 17 19:03:57 localhost kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
Jan 17 19:03:57 localhost kernel: percpu: Embedded 57 pages/cpu s196608 r8192 d28672 u262144
Jan 17 19:03:57 localhost kernel: pcpu-alloc: s196608 r8192 d28672 u262144 alloc=1*2097152
Jan 17 19:03:57 localhost kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 0, msr 277c2f080
Jan 17 19:03:57 localhost kernel: kvm-guest: PV spinlocks disabled, no host support
Jan 17 19:03:57 localhost kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2064088
Jan 17 19:03:57 localhost kernel: Policy zone: Normal
Jan 17 19:03:57 localhost kernel: Kernel command line: BOOT_IMAGE=/ostree/elementary-2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/vmlinuz-5.13.0-19-generic root=UUID=8b35f256-68e7-4e96-b6c1-e61206528220 ro quiet splash ostree=/ostree/boot.0/elementary/2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/0
Jan 17 19:03:57 localhost kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Jan 17 19:03:57 localhost kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Jan 17 19:03:57 localhost kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Jan 17 19:03:57 localhost kernel: Memory: 8088628K/8388056K available (16393K kernel code, 3507K rwdata, 10500K rodata, 2860K init, 5768K bss, 299168K reserved, 0K cma-reserved)
Jan 17 19:03:57 localhost kernel: random: get_random_u64 called from kmem_cache_open+0x25/0x330 with crng_init=0
Jan 17 19:03:57 localhost kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Jan 17 19:03:57 localhost kernel: Kernel/User page tables isolation: enabled
Jan 17 19:03:57 localhost kernel: ftrace: allocating 49705 entries in 195 pages
Jan 17 19:03:57 localhost kernel: ftrace: allocated 195 pages with 4 groups
Jan 17 19:03:57 localhost kernel: rcu: Hierarchical RCU implementation.
Jan 17 19:03:57 localhost kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
Jan 17 19:03:57 localhost kernel:         Rude variant of Tasks RCU enabled.
Jan 17 19:03:57 localhost kernel:         Tracing variant of Tasks RCU enabled.
Jan 17 19:03:57 localhost kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Jan 17 19:03:57 localhost kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Jan 17 19:03:57 localhost kernel: NR_IRQS: 524544, nr_irqs: 488, preallocated irqs: 16
Jan 17 19:03:57 localhost kernel: Console: colour dummy device 80x25
Jan 17 19:03:57 localhost kernel: printk: console [tty0] enabled
Jan 17 19:03:57 localhost kernel: ACPI: Core revision 20210331
Jan 17 19:03:57 localhost kernel: APIC: Switch to symmetric I/O mode setup
Jan 17 19:03:57 localhost kernel: x2apic enabled
Jan 17 19:03:57 localhost kernel: Switched APIC routing to physical x2apic.
Jan 17 19:03:57 localhost kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x31d8530e35b, max_idle_ns: 440795301449 ns
Jan 17 19:03:57 localhost kernel: Calibrating delay loop (skipped) preset value.. 6915.99 BogoMIPS (lpj=13831992)
Jan 17 19:03:57 localhost kernel: pid_max: default: 32768 minimum: 301
Jan 17 19:03:57 localhost kernel: LSM: Security Framework initializing
Jan 17 19:03:57 localhost kernel: Yama: becoming mindful.
Jan 17 19:03:57 localhost kernel: AppArmor: AppArmor initialized
Jan 17 19:03:57 localhost kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jan 17 19:03:57 localhost kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Jan 17 19:03:57 localhost kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated
Jan 17 19:03:57 localhost kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Jan 17 19:03:57 localhost kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
Jan 17 19:03:57 localhost kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Jan 17 19:03:57 localhost kernel: Spectre V2 : Mitigation: Full generic retpoline
Jan 17 19:03:57 localhost kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Jan 17 19:03:57 localhost kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Jan 17 19:03:57 localhost kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Jan 17 19:03:57 localhost kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Jan 17 19:03:57 localhost kernel: MDS: Vulnerable: Clear CPU buffers attempted, no microcode
Jan 17 19:03:57 localhost kernel: Freeing SMP alternatives memory: 40K
Jan 17 19:03:57 localhost kernel: smpboot: CPU0: Intel Westmere E56xx/L56xx/X56xx (IBRS update) (family: 0x6, model: 0x2c, stepping: 0x1)
Jan 17 19:03:57 localhost kernel: Performance Events: unsupported p6 CPU model 44 no PMU driver, software events only.
Jan 17 19:03:57 localhost kernel: rcu: Hierarchical SRCU implementation.
Jan 17 19:03:57 localhost kernel: NMI watchdog: Perf NMI watchdog permanently disabled
Jan 17 19:03:57 localhost kernel: smp: Bringing up secondary CPUs ...
Jan 17 19:03:57 localhost kernel: x86: Booting SMP configuration:
Jan 17 19:03:57 localhost kernel: .... node  #0, CPUs:      #1
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 1, msr 166801041, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 1 Converting physical 0 to logical die 1
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 1, msr 277c6f080
Jan 17 19:03:57 localhost kernel:  #2
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 2, msr 166801081, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 2 Converting physical 0 to logical die 2
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 2, msr 277caf080
Jan 17 19:03:57 localhost kernel:  #3
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 3, msr 1668010c1, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 3 Converting physical 0 to logical die 3
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 3, msr 277cef080
Jan 17 19:03:57 localhost kernel:  #4
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 4, msr 166801101, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 4 Converting physical 0 to logical die 4
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 4, msr 277d2f080
Jan 17 19:03:57 localhost kernel:  #5
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 5, msr 166801141, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 5 Converting physical 0 to logical die 5
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 5, msr 277d6f080
Jan 17 19:03:57 localhost kernel:  #6
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 6, msr 166801181, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 6 Converting physical 0 to logical die 6
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 6, msr 277daf080
Jan 17 19:03:57 localhost kernel:  #7
Jan 17 19:03:57 localhost kernel: kvm-clock: cpu 7, msr 1668011c1, secondary cpu clock
Jan 17 19:03:57 localhost kernel: smpboot: CPU 7 Converting physical 0 to logical die 7
Jan 17 19:03:57 localhost kernel: kvm-guest: stealtime: cpu 7, msr 277def080
Jan 17 19:03:57 localhost kernel: smp: Brought up 1 node, 8 CPUs
Jan 17 19:03:57 localhost kernel: smpboot: Max logical packages: 8
Jan 17 19:03:57 localhost kernel: smpboot: Total of 8 processors activated (55327.96 BogoMIPS)
Jan 17 19:03:57 localhost kernel: devtmpfs: initialized
Jan 17 19:03:57 localhost kernel: x86/mm: Memory block size: 128MB
Jan 17 19:03:57 localhost kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Jan 17 19:03:57 localhost kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Jan 17 19:03:57 localhost kernel: pinctrl core: initialized pinctrl subsystem
Jan 17 19:03:57 localhost kernel: PM: RTC time: 19:03:56, date: 2022-01-17
Jan 17 19:03:57 localhost kernel: NET: Registered protocol family 16
Jan 17 19:03:57 localhost kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Jan 17 19:03:57 localhost kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Jan 17 19:03:57 localhost kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Jan 17 19:03:57 localhost kernel: audit: initializing netlink subsys (disabled)
Jan 17 19:03:57 localhost kernel: audit: type=2000 audit(1642446236.047:1): state=initialized audit_enabled=0 res=1
Jan 17 19:03:57 localhost kernel: thermal_sys: Registered thermal governor 'fair_share'
Jan 17 19:03:57 localhost kernel: thermal_sys: Registered thermal governor 'bang_bang'
Jan 17 19:03:57 localhost kernel: thermal_sys: Registered thermal governor 'step_wise'
Jan 17 19:03:57 localhost kernel: thermal_sys: Registered thermal governor 'user_space'
Jan 17 19:03:57 localhost kernel: thermal_sys: Registered thermal governor 'power_allocator'
Jan 17 19:03:57 localhost kernel: EISA bus registered
Jan 17 19:03:57 localhost kernel: cpuidle: using governor ladder
Jan 17 19:03:57 localhost kernel: cpuidle: using governor menu
Jan 17 19:03:57 localhost kernel: ACPI: bus type PCI registered
Jan 17 19:03:57 localhost kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Jan 17 19:03:57 localhost kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xb0000000-0xbfffffff] (base 0xb0000000)
Jan 17 19:03:57 localhost kernel: PCI: MMCONFIG at [mem 0xb0000000-0xbfffffff] reserved in E820
Jan 17 19:03:57 localhost kernel: PCI: Using configuration type 1 for base access
Jan 17 19:03:57 localhost kernel: Kprobes globally optimized
Jan 17 19:03:57 localhost kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Jan 17 19:03:57 localhost kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(Module Device)
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(Processor Device)
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(Processor Aggregator Device)
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(Linux-Dell-Video)
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Jan 17 19:03:57 localhost kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Jan 17 19:03:57 localhost kernel: ACPI: 1 ACPI AML tables successfully acquired and loaded
Jan 17 19:03:57 localhost kernel: ACPI: Interpreter enabled
Jan 17 19:03:57 localhost kernel: ACPI: (supports S0 S5)
Jan 17 19:03:57 localhost kernel: ACPI: Using IOAPIC for interrupt routing
Jan 17 19:03:57 localhost kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Jan 17 19:03:57 localhost kernel: ACPI: Enabled 1 GPEs in block 00 to 3F
Jan 17 19:03:57 localhost kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Jan 17 19:03:57 localhost kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Jan 17 19:03:57 localhost kernel: acpi PNP0A08:00: _OSC: platform does not support [LTR]
Jan 17 19:03:57 localhost kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability]
Jan 17 19:03:57 localhost kernel: PCI host bridge to bus 0000:00
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x80000000-0xafffffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xfebfffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: root bus resource [mem 0x280000000-0xa7fffffff window]
Jan 17 19:03:57 localhost kernel: pci 0000:00:00.0: [8086:29c0] type 00 class 0x060000
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: [1b36:0100] type 00 class 0x030000
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: reg 0x10: [mem 0xf4000000-0xf7ffffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: reg 0x14: [mem 0xf8000000-0xfbffffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: reg 0x18: [mem 0xfcc14000-0xfcc15fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: reg 0x1c: [io  0xc040-0xc05f]
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: reg 0x30: [mem 0xfcc00000-0xfcc0ffff pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0: [1b36:000c] type 01 class 0x060400
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0: reg 0x10: [mem 0xfcc16000-0xfcc16fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1: reg 0x10: [mem 0xfcc17000-0xfcc17fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2: reg 0x10: [mem 0xfcc18000-0xfcc18fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3: reg 0x10: [mem 0xfcc19000-0xfcc19fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4: reg 0x10: [mem 0xfcc1a000-0xfcc1afff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5: reg 0x10: [mem 0xfcc1b000-0xfcc1bfff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1b.0: [8086:293e] type 00 class 0x040300
Jan 17 19:03:57 localhost kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfcc10000-0xfcc13fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.0: reg 0x20: [io  0xc060-0xc07f]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.1: reg 0x20: [io  0xc080-0xc09f]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.2: [8086:2936] type 00 class 0x0c0300
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.2: reg 0x20: [io  0xc0a0-0xc0bf]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320
Jan 17 19:03:57 localhost kernel: pci 0000:00:1d.7: reg 0x10: [mem 0xfcc1c000-0xfcc1cfff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.0: quirk: [io  0x0600-0x067f] claimed by ICH6 ACPI/GPIO/TCO
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.2: [8086:2922] type 00 class 0x010601
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.2: reg 0x20: [io  0xc0c0-0xc0df]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfcc1d000-0xfcc1dfff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.3: [8086:2930] type 00 class 0x0c0500
Jan 17 19:03:57 localhost kernel: pci 0000:00:1f.3: reg 0x20: [io  0x0700-0x073f]
Jan 17 19:03:57 localhost kernel: pci 0000:01:00.0: [1af4:1041] type 00 class 0x020000
Jan 17 19:03:57 localhost kernel: pci 0000:01:00.0: reg 0x14: [mem 0xfca80000-0xfca80fff]
Jan 17 19:03:57 localhost kernel: pci 0000:01:00.0: reg 0x20: [mem 0xfea00000-0xfea03fff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfca00000-0xfca7ffff pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0:   bridge window [mem 0xfca00000-0xfcbfffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0:   bridge window [mem 0xfea00000-0xfebfffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:02:00.0: [1af4:1043] type 00 class 0x078000
Jan 17 19:03:57 localhost kernel: pci 0000:02:00.0: reg 0x14: [mem 0xfc800000-0xfc800fff]
Jan 17 19:03:57 localhost kernel: pci 0000:02:00.0: reg 0x20: [mem 0xfe800000-0xfe803fff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1:   bridge window [mem 0xfc800000-0xfc9fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1:   bridge window [mem 0xfe800000-0xfe9fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:03:00.0: [1af4:1042] type 00 class 0x010000
Jan 17 19:03:57 localhost kernel: pci 0000:03:00.0: reg 0x14: [mem 0xfc600000-0xfc600fff]
Jan 17 19:03:57 localhost kernel: pci 0000:03:00.0: reg 0x20: [mem 0xfe600000-0xfe603fff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2:   bridge window [mem 0xfc600000-0xfc7fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2:   bridge window [mem 0xfe600000-0xfe7fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:04:00.0: [1af4:1045] type 00 class 0x00ff00
Jan 17 19:03:57 localhost kernel: pci 0000:04:00.0: reg 0x20: [mem 0xfe400000-0xfe403fff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3: PCI bridge to [bus 04]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3:   bridge window [mem 0xfc400000-0xfc5fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3:   bridge window [mem 0xfe400000-0xfe5fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:05:00.0: [1af4:1044] type 00 class 0x00ff00
Jan 17 19:03:57 localhost kernel: pci 0000:05:00.0: reg 0x20: [mem 0xfe200000-0xfe203fff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4: PCI bridge to [bus 05]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4:   bridge window [mem 0xfc200000-0xfc3fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4:   bridge window [mem 0xfe200000-0xfe3fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5: PCI bridge to [bus 06]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5:   bridge window [mem 0xfc000000-0xfc1fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5:   bridge window [mem 0xfe000000-0xfe1fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 10
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 11
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 10
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 10
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 11
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIA configured for IRQ 16
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIB configured for IRQ 17
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIC configured for IRQ 18
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSID configured for IRQ 19
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIE configured for IRQ 20
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIF configured for IRQ 21
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIG configured for IRQ 22
Jan 17 19:03:57 localhost kernel: ACPI: PCI: Interrupt link GSIH configured for IRQ 23
Jan 17 19:03:57 localhost kernel: iommu: Default domain type: Translated 
Jan 17 19:03:57 localhost kernel: SCSI subsystem initialized
Jan 17 19:03:57 localhost kernel: libata version 3.00 loaded.
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: vgaarb: setting as boot VGA device
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: vgaarb: bridge control possible
Jan 17 19:03:57 localhost kernel: vgaarb: loaded
Jan 17 19:03:57 localhost kernel: ACPI: bus type USB registered
Jan 17 19:03:57 localhost kernel: usbcore: registered new interface driver usbfs
Jan 17 19:03:57 localhost kernel: usbcore: registered new interface driver hub
Jan 17 19:03:57 localhost kernel: usbcore: registered new device driver usb
Jan 17 19:03:57 localhost kernel: pps_core: LinuxPPS API ver. 1 registered
Jan 17 19:03:57 localhost kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <[email protected]>
Jan 17 19:03:57 localhost kernel: PTP clock support registered
Jan 17 19:03:57 localhost kernel: EDAC MC: Ver: 3.0.0
Jan 17 19:03:57 localhost kernel: NetLabel: Initializing
Jan 17 19:03:57 localhost kernel: NetLabel:  domain hash size = 128
Jan 17 19:03:57 localhost kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Jan 17 19:03:57 localhost kernel: NetLabel:  unlabeled traffic allowed by default
Jan 17 19:03:57 localhost kernel: PCI: Using ACPI for IRQ routing
Jan 17 19:03:57 localhost kernel: PCI: pci_cache_line_size set to 64 bytes
Jan 17 19:03:57 localhost kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Jan 17 19:03:57 localhost kernel: e820: reserve RAM buffer [mem 0x7ffd8000-0x7fffffff]
Jan 17 19:03:57 localhost kernel: clocksource: Switched to clocksource kvm-clock
Jan 17 19:03:57 localhost kernel: VFS: Disk quotas dquot_6.6.0
Jan 17 19:03:57 localhost kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Jan 17 19:03:57 localhost kernel: AppArmor: AppArmor Filesystem Enabled
Jan 17 19:03:57 localhost kernel: pnp: PnP ACPI init
Jan 17 19:03:57 localhost kernel: pnp 00:00: Plug and Play ACPI device, IDs PNP0501 (active)
Jan 17 19:03:57 localhost kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
Jan 17 19:03:57 localhost kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0f13 (active)
Jan 17 19:03:57 localhost kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Jan 17 19:03:57 localhost kernel: system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved
Jan 17 19:03:57 localhost kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active)
Jan 17 19:03:57 localhost kernel: pnp: PnP ACPI: found 5 devices
Jan 17 19:03:57 localhost kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Jan 17 19:03:57 localhost kernel: NET: Registered protocol family 2
Jan 17 19:03:57 localhost kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Jan 17 19:03:57 localhost kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Jan 17 19:03:57 localhost kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Jan 17 19:03:57 localhost kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Jan 17 19:03:57 localhost kernel: TCP: Hash tables configured (established 65536 bind 65536)
Jan 17 19:03:57 localhost kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Jan 17 19:03:57 localhost kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jan 17 19:03:57 localhost kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Jan 17 19:03:57 localhost kernel: NET: Registered protocol family 1
Jan 17 19:03:57 localhost kernel: NET: Registered protocol family 44
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0: bridge window [io  0x1000-0x0fff] to [bus 01] add_size 1000
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1: bridge window [io  0x1000-0x0fff] to [bus 02] add_size 1000
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2: bridge window [io  0x1000-0x0fff] to [bus 03] add_size 1000
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3: bridge window [io  0x1000-0x0fff] to [bus 04] add_size 1000
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4: bridge window [io  0x1000-0x0fff] to [bus 05] add_size 1000
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5: bridge window [io  0x1000-0x0fff] to [bus 06] add_size 1000
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0: BAR 13: assigned [io  0x1000-0x1fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1: BAR 13: assigned [io  0x2000-0x2fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2: BAR 13: assigned [io  0x3000-0x3fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3: BAR 13: assigned [io  0x4000-0x4fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4: BAR 13: assigned [io  0x5000-0x5fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5: BAR 13: assigned [io  0x6000-0x6fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0: PCI bridge to [bus 01]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0:   bridge window [io  0x1000-0x1fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0:   bridge window [mem 0xfca00000-0xfcbfffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.0:   bridge window [mem 0xfea00000-0xfebfffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1: PCI bridge to [bus 02]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1:   bridge window [io  0x2000-0x2fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1:   bridge window [mem 0xfc800000-0xfc9fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.1:   bridge window [mem 0xfe800000-0xfe9fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2: PCI bridge to [bus 03]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2:   bridge window [io  0x3000-0x3fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2:   bridge window [mem 0xfc600000-0xfc7fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.2:   bridge window [mem 0xfe600000-0xfe7fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3: PCI bridge to [bus 04]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3:   bridge window [io  0x4000-0x4fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3:   bridge window [mem 0xfc400000-0xfc5fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.3:   bridge window [mem 0xfe400000-0xfe5fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4: PCI bridge to [bus 05]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4:   bridge window [io  0x5000-0x5fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4:   bridge window [mem 0xfc200000-0xfc3fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.4:   bridge window [mem 0xfe200000-0xfe3fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5: PCI bridge to [bus 06]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5:   bridge window [io  0x6000-0x6fff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5:   bridge window [mem 0xfc000000-0xfc1fffff]
Jan 17 19:03:57 localhost kernel: pci 0000:00:02.5:   bridge window [mem 0xfe000000-0xfe1fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: resource 7 [mem 0x80000000-0xafffffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: resource 8 [mem 0xc0000000-0xfebfffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:00: resource 9 [mem 0x280000000-0xa7fffffff window]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:01: resource 0 [io  0x1000-0x1fff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:01: resource 1 [mem 0xfca00000-0xfcbfffff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:01: resource 2 [mem 0xfea00000-0xfebfffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:02: resource 0 [io  0x2000-0x2fff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:02: resource 1 [mem 0xfc800000-0xfc9fffff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:02: resource 2 [mem 0xfe800000-0xfe9fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:03: resource 0 [io  0x3000-0x3fff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:03: resource 1 [mem 0xfc600000-0xfc7fffff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:03: resource 2 [mem 0xfe600000-0xfe7fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:04: resource 0 [io  0x4000-0x4fff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:04: resource 1 [mem 0xfc400000-0xfc5fffff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:04: resource 2 [mem 0xfe400000-0xfe5fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:05: resource 0 [io  0x5000-0x5fff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:05: resource 1 [mem 0xfc200000-0xfc3fffff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:05: resource 2 [mem 0xfe200000-0xfe3fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:06: resource 0 [io  0x6000-0x6fff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:06: resource 1 [mem 0xfc000000-0xfc1fffff]
Jan 17 19:03:57 localhost kernel: pci_bus 0000:06: resource 2 [mem 0xfe000000-0xfe1fffff 64bit pref]
Jan 17 19:03:57 localhost kernel: pci 0000:00:01.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Jan 17 19:03:57 localhost kernel: ACPI: \_SB_.GSIA: Enabled at IRQ 16
Jan 17 19:03:57 localhost kernel: ACPI: \_SB_.GSIB: Enabled at IRQ 17
Jan 17 19:03:57 localhost kernel: ACPI: \_SB_.GSIC: Enabled at IRQ 18
Jan 17 19:03:57 localhost kernel: ACPI: \_SB_.GSID: Enabled at IRQ 19
Jan 17 19:03:57 localhost kernel: PCI: CLS 0 bytes, default 64
Jan 17 19:03:57 localhost kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Jan 17 19:03:57 localhost kernel: software IO TLB: mapped [mem 0x000000007bfd8000-0x000000007ffd8000] (64MB)
Jan 17 19:03:57 localhost kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x31d8530e35b, max_idle_ns: 440795301449 ns
Jan 17 19:03:57 localhost kernel: Trying to unpack rootfs image as initramfs...
Jan 17 19:03:57 localhost kernel: Initialise system trusted keyrings
Jan 17 19:03:57 localhost kernel: Key type blacklist registered
Jan 17 19:03:57 localhost kernel: workingset: timestamp_bits=36 max_order=21 bucket_order=0
Jan 17 19:03:57 localhost kernel: zbud: loaded
Jan 17 19:03:57 localhost kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Jan 17 19:03:57 localhost kernel: fuse: init (API version 7.34)
Jan 17 19:03:57 localhost kernel: integrity: Platform Keyring initialized
Jan 17 19:03:57 localhost kernel: Key type asymmetric registered
Jan 17 19:03:57 localhost kernel: Asymmetric key parser 'x509' registered
Jan 17 19:03:57 localhost kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Jan 17 19:03:57 localhost kernel: io scheduler mq-deadline registered
Jan 17 19:03:57 localhost kernel: ACPI: \_SB_.GSIG: Enabled at IRQ 22
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.0: PME: Signaling with IRQ 24
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.0: AER: enabled with IRQ 24
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.0: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.1: PME: Signaling with IRQ 25
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.1: AER: enabled with IRQ 25
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.1: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.2: PME: Signaling with IRQ 26
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.2: AER: enabled with IRQ 26
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.2: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.3: PME: Signaling with IRQ 27
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.3: AER: enabled with IRQ 27
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.3: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.4: PME: Signaling with IRQ 28
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.4: AER: enabled with IRQ 28
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.4: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.5: PME: Signaling with IRQ 29
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.5: AER: enabled with IRQ 29
Jan 17 19:03:57 localhost kernel: pcieport 0000:00:02.5: pciehp: Slot #0 AttnBtn+ PwrCtrl+ MRL- AttnInd+ PwrInd+ HotPlug+ Surprise+ Interlock+ NoCompl- IbPresDis- LLActRep+
Jan 17 19:03:57 localhost kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Jan 17 19:03:57 localhost kernel: vesafb: mode is 640x480x32, linelength=2560, pages=0
Jan 17 19:03:57 localhost kernel: vesafb: scrolling: redraw
Jan 17 19:03:57 localhost kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Jan 17 19:03:57 localhost kernel: vesafb: framebuffer at 0xf4000000, mapped to 0x(____ptrval____), using 1216k, total 1216k
Jan 17 19:03:57 localhost kernel: fbcon: Deferring console take-over
Jan 17 19:03:57 localhost kernel: fb0: VESA VGA frame buffer device
Jan 17 19:03:57 localhost kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Jan 17 19:03:57 localhost kernel: ACPI: button: Power Button [PWRF]
Jan 17 19:03:57 localhost kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Jan 17 19:03:57 localhost kernel: 00:00: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Jan 17 19:03:57 localhost kernel: Linux agpgart interface v0.103
Jan 17 19:03:57 localhost kernel: loop: module loaded
Jan 17 19:03:57 localhost kernel: libphy: Fixed MDIO Bus: probed
Jan 17 19:03:57 localhost kernel: tun: Universal TUN/TAP device driver, 1.6
Jan 17 19:03:57 localhost kernel: PPP generic driver version 2.4.2
Jan 17 19:03:57 localhost kernel: VFIO - User Level meta-driver version: 0.3
Jan 17 19:03:57 localhost kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Jan 17 19:03:57 localhost kernel: ehci-pci: EHCI PCI platform driver
Jan 17 19:03:57 localhost kernel: ehci-pci 0000:00:1d.7: EHCI Host Controller
Jan 17 19:03:57 localhost kernel: ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 1
Jan 17 19:03:57 localhost kernel: ehci-pci 0000:00:1d.7: irq 19, io mem 0xfcc1c000
Jan 17 19:03:57 localhost kernel: ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Jan 17 19:03:57 localhost kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.13
Jan 17 19:03:57 localhost kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 17 19:03:57 localhost kernel: usb usb1: Product: EHCI Host Controller
Jan 17 19:03:57 localhost kernel: usb usb1: Manufacturer: Linux 5.13.0-19-generic ehci_hcd
Jan 17 19:03:57 localhost kernel: usb usb1: SerialNumber: 0000:00:1d.7
Jan 17 19:03:57 localhost kernel: hub 1-0:1.0: USB hub found
Jan 17 19:03:57 localhost kernel: hub 1-0:1.0: 6 ports detected
Jan 17 19:03:57 localhost kernel: ehci-platform: EHCI generic platform driver
Jan 17 19:03:57 localhost kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Jan 17 19:03:57 localhost kernel: ohci-pci: OHCI PCI platform driver
Jan 17 19:03:57 localhost kernel: ohci-platform: OHCI generic platform driver
Jan 17 19:03:57 localhost kernel: uhci_hcd: USB Universal Host Controller Interface driver
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.0: UHCI Host Controller
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 2
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.0: detected 2 ports
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.0: irq 16, io base 0x0000c060
Jan 17 19:03:57 localhost kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.13
Jan 17 19:03:57 localhost kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 17 19:03:57 localhost kernel: usb usb2: Product: UHCI Host Controller
Jan 17 19:03:57 localhost kernel: usb usb2: Manufacturer: Linux 5.13.0-19-generic uhci_hcd
Jan 17 19:03:57 localhost kernel: usb usb2: SerialNumber: 0000:00:1d.0
Jan 17 19:03:57 localhost kernel: hub 2-0:1.0: USB hub found
Jan 17 19:03:57 localhost kernel: hub 2-0:1.0: 2 ports detected
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.1: UHCI Host Controller
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 3
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.1: detected 2 ports
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.1: irq 17, io base 0x0000c080
Jan 17 19:03:57 localhost kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.13
Jan 17 19:03:57 localhost kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 17 19:03:57 localhost kernel: usb usb3: Product: UHCI Host Controller
Jan 17 19:03:57 localhost kernel: usb usb3: Manufacturer: Linux 5.13.0-19-generic uhci_hcd
Jan 17 19:03:57 localhost kernel: usb usb3: SerialNumber: 0000:00:1d.1
Jan 17 19:03:57 localhost kernel: hub 3-0:1.0: USB hub found
Jan 17 19:03:57 localhost kernel: hub 3-0:1.0: 2 ports detected
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.2: UHCI Host Controller
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 4
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.2: detected 2 ports
Jan 17 19:03:57 localhost kernel: uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000c0a0
Jan 17 19:03:57 localhost kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 5.13
Jan 17 19:03:57 localhost kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Jan 17 19:03:57 localhost kernel: usb usb4: Product: UHCI Host Controller
Jan 17 19:03:57 localhost kernel: usb usb4: Manufacturer: Linux 5.13.0-19-generic uhci_hcd
Jan 17 19:03:57 localhost kernel: usb usb4: SerialNumber: 0000:00:1d.2
Jan 17 19:03:57 localhost kernel: hub 4-0:1.0: USB hub found
Jan 17 19:03:57 localhost kernel: hub 4-0:1.0: 2 ports detected
Jan 17 19:03:57 localhost kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Jan 17 19:03:57 localhost kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Jan 17 19:03:57 localhost kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Jan 17 19:03:57 localhost kernel: mousedev: PS/2 mouse device common for all mice
Jan 17 19:03:57 localhost kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
Jan 17 19:03:57 localhost kernel: rtc_cmos 00:03: RTC can wake from S4
Jan 17 19:03:57 localhost kernel: rtc_cmos 00:03: registered as rtc0
Jan 17 19:03:57 localhost kernel: rtc_cmos 00:03: setting system clock to 2022-01-17T19:03:56 UTC (1642446236)
Jan 17 19:03:57 localhost kernel: rtc_cmos 00:03: alarms up to one day, y3k, 242 bytes nvram
Jan 17 19:03:57 localhost kernel: i2c /dev entries driver
Jan 17 19:03:57 localhost kernel: device-mapper: uevent: version 1.0.3
Jan 17 19:03:57 localhost kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: [email protected]
Jan 17 19:03:57 localhost kernel: platform eisa.0: Probing EISA bus 0
Jan 17 19:03:57 localhost kernel: platform eisa.0: EISA: Cannot allocate resource for mainboard
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 1
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 2
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 3
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 4
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 5
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 6
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 7
Jan 17 19:03:57 localhost kernel: platform eisa.0: Cannot allocate resource for EISA slot 8
Jan 17 19:03:57 localhost kernel: platform eisa.0: EISA: Detected 0 cards
Jan 17 19:03:57 localhost kernel: intel_pstate: CPU model not supported
Jan 17 19:03:57 localhost kernel: ledtrig-cpu: registered to indicate activity on CPUs
Jan 17 19:03:57 localhost kernel: drop_monitor: Initializing network drop monitor service
Jan 17 19:03:57 localhost kernel: NET: Registered protocol family 10
Jan 17 19:03:57 localhost kernel: Freeing initrd memory: 43748K
Jan 17 19:03:57 localhost kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Jan 17 19:03:57 localhost kernel: Segment Routing with IPv6
Jan 17 19:03:57 localhost kernel: NET: Registered protocol family 17
Jan 17 19:03:57 localhost kernel: Key type dns_resolver registered
Jan 17 19:03:57 localhost kernel: IPI shorthand broadcast: enabled
Jan 17 19:03:57 localhost kernel: sched_clock: Marking stable (1096130487, 2132785)->(1232809609, -134546337)
Jan 17 19:03:57 localhost kernel: registered taskstats version 1
Jan 17 19:03:57 localhost kernel: Loading compiled-in X.509 certificates
Jan 17 19:03:57 localhost kernel: Loaded X.509 cert 'Build time autogenerated kernel key: b95acfc8c48e21a7b35c5c04d4e9fe5748a51740'
Jan 17 19:03:57 localhost kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
Jan 17 19:03:57 localhost kernel: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
Jan 17 19:03:57 localhost kernel: blacklist: Loading compiled-in revocation X.509 certificates
Jan 17 19:03:57 localhost kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
Jan 17 19:03:57 localhost kernel: zswap: loaded using pool lzo/zbud
Jan 17 19:03:57 localhost kernel: Key type ._fscrypt registered
Jan 17 19:03:57 localhost kernel: Key type .fscrypt registered
Jan 17 19:03:57 localhost kernel: Key type fscrypt-provisioning registered
Jan 17 19:03:57 localhost kernel: Key type encrypted registered
Jan 17 19:03:57 localhost kernel: AppArmor: AppArmor sha1 policy hashing enabled
Jan 17 19:03:57 localhost kernel: ima: No TPM chip found, activating TPM-bypass!
Jan 17 19:03:57 localhost kernel: Loading compiled-in module X.509 certificates
Jan 17 19:03:57 localhost kernel: Loaded X.509 cert 'Build time autogenerated kernel key: b95acfc8c48e21a7b35c5c04d4e9fe5748a51740'
Jan 17 19:03:57 localhost kernel: ima: Allocated hash algorithm: sha1
Jan 17 19:03:57 localhost kernel: ima: No architecture policies found
Jan 17 19:03:57 localhost kernel: evm: Initialising EVM extended attributes:
Jan 17 19:03:57 localhost kernel: evm: security.selinux
Jan 17 19:03:57 localhost kernel: evm: security.SMACK64
Jan 17 19:03:57 localhost kernel: evm: security.SMACK64EXEC
Jan 17 19:03:57 localhost kernel: evm: security.SMACK64TRANSMUTE
Jan 17 19:03:57 localhost kernel: evm: security.SMACK64MMAP
Jan 17 19:03:57 localhost kernel: evm: security.apparmor
Jan 17 19:03:57 localhost kernel: evm: security.ima
Jan 17 19:03:57 localhost kernel: evm: security.capability
Jan 17 19:03:57 localhost kernel: evm: HMAC attrs: 0x1
Jan 17 19:03:57 localhost kernel: PM:   Magic number: 6:774:91
Jan 17 19:03:57 localhost kernel: RAS: Correctable Errors collector initialized.
Jan 17 19:03:57 localhost kernel: Freeing unused decrypted memory: 2036K
Jan 17 19:03:57 localhost kernel: Freeing unused kernel image (initmem) memory: 2860K
Jan 17 19:03:57 localhost kernel: Write protecting the kernel read-only data: 30720k
Jan 17 19:03:57 localhost kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Jan 17 19:03:57 localhost kernel: Freeing unused kernel image (rodata/data gap) memory: 1788K
Jan 17 19:03:57 localhost kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jan 17 19:03:57 localhost kernel: x86/mm: Checking user space page tables
Jan 17 19:03:57 localhost kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Jan 17 19:03:57 localhost kernel: Run /init as init process
Jan 17 19:03:57 localhost kernel:   with arguments:
Jan 17 19:03:57 localhost kernel:     /init
Jan 17 19:03:57 localhost kernel:     splash
Jan 17 19:03:57 localhost kernel:   with environment:
Jan 17 19:03:57 localhost kernel:     HOME=/
Jan 17 19:03:57 localhost kernel:     TERM=linux
Jan 17 19:03:57 localhost kernel:     BOOT_IMAGE=/ostree/elementary-2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/vmlinuz-5.13.0-19-generic
Jan 17 19:03:57 localhost kernel:     ostree=/ostree/boot.0/elementary/2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/0
Jan 17 19:03:57 localhost systemd[1]: Inserted module 'autofs4'
Jan 17 19:03:57 localhost kernel: usb 1-1: New USB device found, idVendor=0627, idProduct=0001, bcdDevice= 0.00
Jan 17 19:03:57 localhost kernel: usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=10
Jan 17 19:03:57 localhost kernel: usb 1-1: Product: QEMU USB Tablet
Jan 17 19:03:57 localhost kernel: usb 1-1: Manufacturer: QEMU
Jan 17 19:03:57 localhost kernel: usb 1-1: SerialNumber: 28754-0000:00:1d.7-1
Jan 17 19:03:57 localhost kernel: random: fast init done
Jan 17 19:03:57 localhost kernel: random: crng init done
Jan 17 19:03:57 localhost systemd[1]: systemd 249.5-2ubuntu3 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 -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jan 17 19:03:57 localhost systemd[1]: Detected virtualization kvm.
Jan 17 19:03:57 localhost systemd[1]: Detected architecture x86-64.
Jan 17 19:03:57 localhost systemd[1]: Running in initial RAM disk.
Jan 17 19:03:57 localhost systemd[1]: No hostname configured, using default hostname.
Jan 17 19:03:57 localhost systemd[1]: Hostname set to <localhost>.
Jan 17 19:03:57 localhost systemd[1]: Initializing machine ID from VM UUID.
Jan 17 19:03:57 localhost systemd[1]: Queued start job for default target Initrd Default Target.
Jan 17 19:03:57 localhost systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Jan 17 19:03:57 localhost systemd[1]: Reached target Local Encrypted Volumes.
Jan 17 19:03:57 localhost systemd[1]: Reached target Local File Systems.
Jan 17 19:03:57 localhost systemd[1]: Reached target Path Units.
Jan 17 19:03:57 localhost systemd[1]: Reached target Slice Units.
Jan 17 19:03:57 localhost systemd[1]: Reached target Swaps.
Jan 17 19:03:57 localhost systemd[1]: Reached target Timer Units.
Jan 17 19:03:57 localhost systemd[1]: Listening on Journal Audit Socket.
Jan 17 19:03:57 localhost systemd[1]: Listening on Journal Socket (/dev/log).
Jan 17 19:03:57 localhost systemd[1]: Listening on Journal Socket.
Jan 17 19:03:57 localhost systemd[1]: Listening on udev Control Socket.
Jan 17 19:03:57 localhost systemd[1]: Listening on udev Kernel Socket.
Jan 17 19:03:57 localhost systemd[1]: Reached target Socket Units.
Jan 17 19:03:57 localhost systemd[1]: Starting Journal Service...
Jan 17 19:03:57 localhost systemd[1]: Condition check resulted in dracut ask for additional cmdline parameters being skipped.
Jan 17 19:03:57 localhost systemd[1]: Starting dracut cmdline hook...
Jan 17 19:03:57 localhost systemd[1]: Starting Create List of Static Device Nodes...
Jan 17 19:03:57 localhost systemd[1]: Starting Load Kernel Modules...
Jan 17 19:03:57 localhost systemd[1]: Finished Create List of Static Device Nodes.
Jan 17 19:03:57 localhost systemd[1]: Starting Create Static Device Nodes in /dev...
Jan 17 19:03:57 localhost systemd[1]: Finished Create Static Device Nodes in /dev.
Jan 17 19:03:57 localhost kernel: IPMI message handler: version 39.2
Jan 17 19:03:57 localhost kernel: ipmi device interface
Jan 17 19:03:57 localhost kernel: ipmi_si: IPMI System Interface driver
Jan 17 19:03:57 localhost kernel: ipmi_si: Unable to find any System Interface(s)
Jan 17 19:03:57 localhost systemd-journald[209]: Journal started
Jan 17 19:03:57 localhost systemd-journald[209]: Runtime Journal (/run/log/journal/82b4623e4a8740c79c79a12dfed56eb4) is 8.0M, max 159.0M, 151.0M free.
Jan 17 19:03:57 localhost systemd-modules-load[212]: Inserted module 'msr'
Jan 17 19:03:57 localhost dracut-cmdline[210]: dracut-7 Early Access dracut-
Jan 17 19:03:57 localhost dracut-cmdline[210]: Using kernel command line parameters: BOOT_IMAGE=/ostree/elementary-2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/vmlinuz-5.13.0-19-generic root=UUID=8b35f256-68e7-4e96-b6c1-e61206528220 ro quiet splash ostree=/ostree/boot.0/elementary/
Jan 17 19:03:57 localhost dracut-cmdline[210]: 2d58bc1e30138601c2b0b6c070e8539d6da96cd5f20b61c04910b54b09da8780/0
Jan 17 19:03:57 localhost systemd[1]: Started Journal Service.
Jan 17 19:03:57 localhost systemd[1]: Starting Create Volatile Files and Directories...
Jan 17 19:03:57 localhost systemd-modules-load[212]: Failed to insert module 'ipmi_si': No such device
Jan 17 19:03:57 localhost systemd[1]: Finished Load Kernel Modules.
Jan 17 19:03:57 localhost systemd[1]: Starting Apply Kernel Variables...
Jan 17 19:03:57 localhost systemd[1]: Finished Create Volatile Files and Directories.
Jan 17 19:03:57 localhost systemd[1]: Finished Apply Kernel Variables.
Jan 17 19:03:57 localhost systemd[1]: Finished dracut cmdline hook.
Jan 17 19:03:57 localhost systemd[1]: Starting dracut pre-udev hook...
Jan 17 19:03:57 localhost systemd[1]: Finished dracut pre-udev hook.
Jan 17 19:03:57 localhost systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jan 17 19:03:57 localhost systemd[1]: Started Rule-based Manager for Device Events and Files.
Jan 17 19:03:57 localhost systemd[1]: Starting dracut pre-trigger hook...
Jan 17 19:03:57 localhost dracut-pre-trigger[323]: rd.md=0: removing MD RAID activation
Jan 17 19:03:57 localhost systemd[1]: Finished dracut pre-trigger hook.
Jan 17 19:03:57 localhost systemd[1]: Starting Coldplug All udev Devices...
Jan 17 19:03:57 localhost systemd[1]: Finished Coldplug All udev Devices.
Jan 17 19:03:57 localhost systemd[1]: Reached target System Initialization.
Jan 17 19:03:57 localhost systemd[1]: Reached target Basic System.
Jan 17 19:03:57 localhost systemd[1]: Starting dracut initqueue hook...
Jan 17 19:03:57 localhost kernel: ahci 0000:00:1f.2: version 3.0
Jan 17 19:03:57 localhost kernel: hid: raw HID events driver (C) Jiri Kosina
Jan 17 19:03:57 localhost kernel: ahci 0000:00:1f.2: AHCI 0001.0000 32 slots 6 ports 1.5 Gbps 0x3f impl SATA mode
Jan 17 19:03:57 localhost kernel: ahci 0000:00:1f.2: flags: 64bit ncq only 
Jan 17 19:03:57 localhost kernel: virtio_blk virtio2: [vda] 104857600 512-byte logical blocks (53.7 GB/50.0 GiB)
Jan 17 19:03:57 localhost kernel:  vda: vda1 vda2
Jan 17 19:03:57 localhost kernel: scsi host0: ahci
Jan 17 19:03:57 localhost kernel: usbcore: registered new interface driver usbhid
Jan 17 19:03:57 localhost kernel: usbhid: USB HID core driver
Jan 17 19:03:57 localhost kernel: scsi host1: ahci
Jan 17 19:03:57 localhost kernel: scsi host2: ahci
Jan 17 19:03:57 localhost kernel: scsi host3: ahci
Jan 17 19:03:57 localhost kernel: scsi host4: ahci
Jan 17 19:03:57 localhost kernel: scsi host5: ahci
Jan 17 19:03:57 localhost kernel: ata1: SATA max UDMA/133 abar m4096@0xfcc1d000 port 0xfcc1d100 irq 41
Jan 17 19:03:57 localhost kernel: ata2: SATA max UDMA/133 abar m4096@0xfcc1d000 port 0xfcc1d180 irq 41
Jan 17 19:03:57 localhost kernel: ata3: SATA max UDMA/133 abar m4096@0xfcc1d000 port 0xfcc1d200 irq 41
Jan 17 19:03:57 localhost kernel: ata4: SATA max UDMA/133 abar m4096@0xfcc1d000 port 0xfcc1d280 irq 41
Jan 17 19:03:57 localhost kernel: ata5: SATA max UDMA/133 abar m4096@0xfcc1d000 port 0xfcc1d300 irq 41
Jan 17 19:03:57 localhost kernel: ata6: SATA max UDMA/133 abar m4096@0xfcc1d000 port 0xfcc1d380 irq 41
Jan 17 19:03:57 localhost kernel: cryptd: max_cpu_qlen set to 1000
Jan 17 19:03:57 localhost kernel: SSE version of gcm_enc/dec engaged.
Jan 17 19:03:57 localhost kernel: input: QEMU QEMU USB Tablet as /devices/pci0000:00/0000:00:1d.7/usb1/1-1/1-1:1.0/0003:0627:0001.0001/input/input3
Jan 17 19:03:57 localhost kernel: hid-generic 0003:0627:0001.0001: input,hidraw0: USB HID v0.01 Mouse [QEMU QEMU USB Tablet] on usb-0000:00:1d.7-1/input0
Jan 17 19:03:57 localhost systemd[1]: Found device /dev/disk/by-uuid/8b35f256-68e7-4e96-b6c1-e61206528220.
Jan 17 19:03:57 localhost systemd[1]: Reached target Initrd Root Device.
Jan 17 19:03:57 localhost systemd[1]: Finished dracut initqueue hook.
Jan 17 19:03:57 localhost systemd[1]: Reached target Preparation for Remote File Systems.
Jan 17 19:03:57 localhost systemd[1]: Reached target Remote Encrypted Volumes.
Jan 17 19:03:57 localhost systemd[1]: Reached target Remote File Systems.
Jan 17 19:03:57 localhost systemd[1]: Starting dracut pre-mount hook...
Jan 17 19:03:57 localhost systemd[1]: Finished dracut pre-mount hook.
Jan 17 19:03:57 localhost systemd[1]: Starting File System Check on /dev/disk/by-uuid/8b35f256-68e7-4e96-b6c1-e61206528220...
Jan 17 19:03:57 localhost systemd-fsck[467]: /dev/vda2: clean, 505722/3213168 files, 8808590/12850175 blocks
Jan 17 19:03:57 localhost systemd[1]: Finished File System Check on /dev/disk/by-uuid/8b35f256-68e7-4e96-b6c1-e61206528220.
Jan 17 19:03:57 localhost systemd[1]: Mounting /sysroot...
Jan 17 19:03:57 localhost systemd[1]: Mounted /sysroot.
Jan 17 19:03:57 localhost kernel: EXT4-fs (vda2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Jan 17 19:03:57 localhost systemd[1]: Starting OSTree Prepare OS/...
Jan 17 19:03:57 localhost ostree-prepare-root[472]: preparing sysroot at /sysroot
Jan 17 19:03:57 localhost ostree-prepare-root[472]: Resolved OSTree target to: /sysroot/ostree/deploy/elementary/deploy/e2954365656c356c961092f9892ac1e681482bc34473ab8af826d0b71c03c79b.0
Jan 17 19:03:57 localhost ostree-prepare-root[472]: filesystem at /sysroot currently writable: 0
Jan 17 19:03:57 localhost ostree-prepare-root[472]: sysroot.readonly configuration value: 0
Jan 17 19:03:57 localhost systemd[1]: Finished OSTree Prepare OS/.
Jan 17 19:03:57 localhost systemd[1]: Reached target Initrd Root File System.
Jan 17 19:03:57 localhost systemd[1]: Starting Reload Configuration from the Real Root...
Jan 17 19:03:57 localhost systemd[1]: Reloading.
Jan 17 19:03:57 localhost kernel: ata2: SATA link down (SStatus 0 SControl 300)
Jan 17 19:03:57 localhost kernel: ata6: SATA link down (SStatus 0 SControl 300)
Jan 17 19:03:57 localhost kernel: ata3: SATA link down (SStatus 0 SControl 300)
Jan 17 19:03:57 localhost kernel: ata5: SATA link down (SStatus 0 SControl 300)
Jan 17 19:03:57 localhost kernel: ata4: SATA link down (SStatus 0 SControl 300)
Jan 17 19:03:57 localhost kernel: ata1: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Jan 17 19:03:57 localhost kernel: ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
Jan 17 19:03:57 localhost kernel: ata1.00: applying bridge limits
Jan 17 19:03:57 localhost kernel: ata1.00: configured for UDMA/100
Jan 17 19:03:57 localhost kernel: scsi 0:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.5+ PQ: 0 ANSI: 5
Jan 17 19:03:57 localhost systemd[1]: initrd-parse-etc.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Finished Reload Configuration from the Real Root.
Jan 17 19:03:57 localhost systemd[1]: Reached target Initrd File Systems.
Jan 17 19:03:57 localhost systemd[1]: Reached target Initrd Default Target.
Jan 17 19:03:57 localhost systemd[1]: Condition check resulted in dracut mount hook being skipped.
Jan 17 19:03:57 localhost systemd[1]: Starting dracut pre-pivot and cleanup hook...
Jan 17 19:03:57 localhost kernel: sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
Jan 17 19:03:57 localhost kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Jan 17 19:03:57 localhost systemd[1]: Finished dracut pre-pivot and cleanup hook.
Jan 17 19:03:57 localhost systemd[1]: Starting Cleaning Up and Shutting Down Daemons...
Jan 17 19:03:57 localhost systemd[1]: Stopped target Remote Encrypted Volumes.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Timer Units.
Jan 17 19:03:57 localhost systemd[1]: dracut-pre-pivot.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped dracut pre-pivot and cleanup hook.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Initrd Default Target.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Basic System.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Initrd Root Device.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Path Units.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Remote File Systems.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Preparation for Remote File Systems.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Slice Units.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Socket Units.
Jan 17 19:03:57 localhost systemd[1]: Stopped target System Initialization.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Swaps.
Jan 17 19:03:57 localhost systemd[1]: dracut-pre-mount.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped dracut pre-mount hook.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Local Encrypted Volumes.
Jan 17 19:03:57 localhost systemd[1]: systemd-ask-password-console.path: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
Jan 17 19:03:57 localhost systemd[1]: dracut-initqueue.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped dracut initqueue hook.
Jan 17 19:03:57 localhost systemd[1]: systemd-sysctl.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Apply Kernel Variables.
Jan 17 19:03:57 localhost systemd[1]: systemd-modules-load.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Load Kernel Modules.
Jan 17 19:03:57 localhost systemd[1]: systemd-tmpfiles-setup.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Create Volatile Files and Directories.
Jan 17 19:03:57 localhost systemd[1]: Stopped target Local File Systems.
Jan 17 19:03:57 localhost systemd[1]: systemd-udev-trigger.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Coldplug All udev Devices.
Jan 17 19:03:57 localhost systemd[1]: dracut-pre-trigger.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped dracut pre-trigger hook.
Jan 17 19:03:57 localhost systemd[1]: Stopping Rule-based Manager for Device Events and Files...
Jan 17 19:03:57 localhost systemd[1]: initrd-cleanup.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Finished Cleaning Up and Shutting Down Daemons.
Jan 17 19:03:57 localhost kernel: sr 0:0:0:0: Attached scsi CD-ROM sr0
Jan 17 19:03:57 localhost kernel: sr 0:0:0:0: Attached scsi generic sg0 type 5
Jan 17 19:03:57 localhost systemd[1]: systemd-udevd.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Rule-based Manager for Device Events and Files.
Jan 17 19:03:57 localhost systemd[1]: systemd-udevd-control.socket: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Closed udev Control Socket.
Jan 17 19:03:57 localhost systemd[1]: systemd-udevd-kernel.socket: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Closed udev Kernel Socket.
Jan 17 19:03:57 localhost systemd[1]: dracut-pre-udev.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped dracut pre-udev hook.
Jan 17 19:03:57 localhost systemd[1]: dracut-cmdline.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped dracut cmdline hook.
Jan 17 19:03:57 localhost systemd[1]: Starting Cleanup udev Database...
Jan 17 19:03:57 localhost systemd[1]: systemd-tmpfiles-setup-dev.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Create Static Device Nodes in /dev.
Jan 17 19:03:57 localhost systemd[1]: kmod-static-nodes.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Stopped Create List of Static Device Nodes.
Jan 17 19:03:57 localhost systemd[1]: initrd-udevadm-cleanup-db.service: Deactivated successfully.
Jan 17 19:03:57 localhost systemd[1]: Finished Cleanup udev Database.
Jan 17 19:03:57 localhost systemd[1]: Reached target Switch Root.
Jan 17 19:03:57 localhost systemd[1]: Starting Switch Root...
Jan 17 19:03:57 localhost systemd[1]: Switching root.
Jan 17 19:03:57 localhost systemd-journald[209]: Journal stopped
Jan 17 19:03:58 elementary systemd-journald[209]: Received SIGTERM from PID 1 (systemd).
Jan 17 19:03:58 elementary systemd[1]: systemd 249.5-2ubuntu3 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 -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Jan 17 19:03:58 elementary systemd[1]: Detected virtualization kvm.
Jan 17 19:03:58 elementary systemd[1]: Detected architecture x86-64.
Jan 17 19:03:58 elementary systemd[1]: Hostname set to <elementary>.
Jan 17 19:03:58 elementary systemd[1]: initrd-switch-root.service: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Stopped Switch Root.
Jan 17 19:03:58 elementary systemd[1]: systemd-journald.service: Scheduled restart job, restart counter is at 1.
Jan 17 19:03:58 elementary systemd[1]: Created slice Slice /system/modprobe.
Jan 17 19:03:58 elementary systemd[1]: Created slice User and Session Slice.
Jan 17 19:03:58 elementary systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Jan 17 19:03:58 elementary systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Jan 17 19:03:58 elementary systemd[1]: Stopped target Switch Root.
Jan 17 19:03:58 elementary systemd[1]: Stopped target Initrd File Systems.
Jan 17 19:03:58 elementary systemd[1]: Stopped target Initrd Root File System.
Jan 17 19:03:58 elementary systemd[1]: Reached target User and Group Name Lookups.
Jan 17 19:03:58 elementary systemd[1]: Reached target Remote File Systems.
Jan 17 19:03:58 elementary systemd[1]: Reached target Slice Units.
Jan 17 19:03:58 elementary systemd[1]: Reached target Swaps.
Jan 17 19:03:58 elementary systemd[1]: Reached target Local Verity Integrity Protected Volumes.
Jan 17 19:03:58 elementary systemd[1]: Listening on Device-mapper event daemon FIFOs.
Jan 17 19:03:58 elementary systemd[1]: Listening on LVM2 poll daemon socket.
Jan 17 19:03:58 elementary systemd[1]: Listening on initctl Compatibility Named Pipe.
Jan 17 19:03:58 elementary systemd[1]: Listening on udev Control Socket.
Jan 17 19:03:58 elementary systemd[1]: Listening on udev Kernel Socket.
Jan 17 19:03:58 elementary systemd[1]: Mounting Huge Pages File System...
Jan 17 19:03:58 elementary systemd[1]: Mounting POSIX Message Queue File System...
Jan 17 19:03:58 elementary systemd[1]: Mounting Kernel Debug File System...
Jan 17 19:03:58 elementary systemd[1]: Mounting Kernel Trace File System...
Jan 17 19:03:58 elementary systemd[1]: Stopped Journal Service.
Jan 17 19:03:58 elementary systemd[1]: Listening on Syslog Socket.
Jan 17 19:03:58 elementary systemd[1]: Starting Journal Service...
Jan 17 19:03:58 elementary systemd[1]: Finished Availability of block devices.
Jan 17 19:03:58 elementary systemd[1]: Starting Set the console keyboard layout...
Jan 17 19:03:58 elementary systemd[1]: Starting Create List of Static Device Nodes...
Jan 17 19:03:58 elementary systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Jan 17 19:03:58 elementary systemd[1]: Starting Load Kernel Module configfs...
Jan 17 19:03:58 elementary systemd[1]: Starting Load Kernel Module drm...
Jan 17 19:03:58 elementary systemd[1]: Starting Load Kernel Module fuse...
Jan 17 19:03:58 elementary systemd[1]: ostree-prepare-root.service: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Stopped OSTree Prepare OS/.
Jan 17 19:03:58 elementary systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 17 19:03:58 elementary systemd[1]: systemd-fsck-root.service: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Stopped File System Check on Root Device.
Jan 17 19:03:58 elementary systemd[1]: Starting Load Kernel Modules...
Jan 17 19:03:58 elementary systemd[1]: Starting Remount Root and Kernel File Systems...
Jan 17 19:03:58 elementary systemd[1]: Starting Coldplug All udev Devices...
Jan 17 19:03:58 elementary systemd[1]: Mounted Huge Pages File System.
Jan 17 19:03:58 elementary systemd-journald[544]: Journal started
Jan 17 19:03:58 elementary systemd-journald[544]: Runtime Journal (/run/log/journal/82b4623e4a8740c79c79a12dfed56eb4) is 8.0M, max 159.0M, 151.0M free.
Jan 17 19:03:58 elementary systemd[1]: Mounted POSIX Message Queue File System.
Jan 17 19:03:58 elementary systemd[1]: Mounted Kernel Debug File System.
Jan 17 19:03:58 elementary systemd[1]: Queued start job for default target Graphical Interface.
Jan 17 19:03:58 elementary systemd[1]: systemd-journald.service: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Mounted Kernel Trace File System.
Jan 17 19:03:58 elementary systemd[1]: Started Journal Service.
Jan 17 19:03:58 elementary systemd[1]: Finished Set the console keyboard layout.
Jan 17 19:03:58 elementary systemd[1]: Finished Create List of Static Device Nodes.
Jan 17 19:03:58 elementary systemd[1]: [email protected]: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Finished Load Kernel Module configfs.
Jan 17 19:03:58 elementary systemd[1]: [email protected]: Deactivated successfully.
Jan 17 19:03:58 elementary kernel: EXT4-fs (vda2): re-mounted. Opts: errors=remount-ro. Quota mode: none.
Jan 17 19:03:58 elementary systemd[1]: Finished Load Kernel Module fuse.
Jan 17 19:03:58 elementary systemd[1]: Finished Remount Root and Kernel File Systems.
Jan 17 19:03:58 elementary systemd[1]: Mounting FUSE Control File System...
Jan 17 19:03:58 elementary systemd[1]: Mounting Kernel Configuration File System...
Jan 17 19:03:58 elementary systemd[1]: Starting Create System Users...
Jan 17 19:03:58 elementary systemd[1]: [email protected]: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Finished Load Kernel Module drm.
Jan 17 19:03:58 elementary systemd[1]: Mounted FUSE Control File System.
Jan 17 19:03:58 elementary systemd[1]: Mounted Kernel Configuration File System.
Jan 17 19:03:58 elementary systemd-modules-load[553]: Inserted module 'lp'
Jan 17 19:03:58 elementary kernel: lp: driver loaded but no devices found
Jan 17 19:03:58 elementary systemd-modules-load[553]: Inserted module 'ppdev'
Jan 17 19:03:58 elementary systemd-modules-load[553]: Inserted module 'parport_pc'
Jan 17 19:03:58 elementary kernel: ppdev: user-space parallel port driver
Jan 17 19:03:58 elementary systemd[1]: Finished Create System Users.
Jan 17 19:03:58 elementary systemd[1]: Starting Create Static Device Nodes in /dev...
Jan 17 19:03:58 elementary kernel: ipmi_si: IPMI System Interface driver
Jan 17 19:03:58 elementary kernel: ipmi_si: Unable to find any System Interface(s)
Jan 17 19:03:58 elementary systemd[1]: Finished Create Static Device Nodes in /dev.
Jan 17 19:03:58 elementary systemd[1]: Starting Rule-based Manager for Device Events and Files...
Jan 17 19:03:58 elementary systemd-modules-load[553]: Failed to insert module 'ipmi_si': No such device
Jan 17 19:03:58 elementary systemd[1]: Finished Load Kernel Modules.
Jan 17 19:03:58 elementary systemd[1]: Starting Apply Kernel Variables...
Jan 17 19:03:58 elementary systemd[1]: Finished Apply Kernel Variables.
Jan 17 19:03:58 elementary systemd[1]: Finished Coldplug All udev Devices.
Jan 17 19:03:58 elementary systemd[1]: Started Rule-based Manager for Device Events and Files.
Jan 17 19:03:58 elementary systemd[1]: Starting Show Plymouth Boot Screen...
Jan 17 19:03:58 elementary systemd[1]: Received SIGRTMIN+20 from PID 589 (plymouthd).
Jan 17 19:03:58 elementary systemd[1]: Started Show Plymouth Boot Screen.
Jan 17 19:03:58 elementary systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Jan 17 19:03:58 elementary systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Jan 17 19:03:58 elementary systemd[1]: Reached target Local Encrypted Volumes.
Jan 17 19:03:58 elementary systemd[1]: Starting Load Kernel Module configfs...
Jan 17 19:03:58 elementary systemd[1]: [email protected]: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Finished Load Kernel Module configfs.
Jan 17 19:03:58 elementary systemd[1]: Starting Load Kernel Module fuse...
Jan 17 19:03:58 elementary systemd[1]: [email protected]: Deactivated successfully.
Jan 17 19:03:58 elementary systemd[1]: Finished Load Kernel Module fuse.
Jan 17 19:03:59 elementary kernel: lpc_ich 0000:00:1f.0: I/O space for GPIO uninitialized
Jan 17 19:03:59 elementary kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Jan 17 19:03:59 elementary kernel: i2c i2c-0: 1/1 memory slots populated (from DMI)
Jan 17 19:03:59 elementary kernel: i2c i2c-0: Memory type 0x07 not supported yet, not instantiating SPD
Jan 17 19:03:59 elementary mtp-probe[609]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:1d.7/usb1/1-1"
Jan 17 19:03:59 elementary mtp-probe[609]: bus: 1, device: 2 was not an MTP device
Jan 17 19:03:59 elementary kernel: ACPI: \_SB_.GSIF: Enabled at IRQ 21
Jan 17 19:03:59 elementary kernel: checking generic (f4000000 130000) vs hw (f4000000 4000000)
Jan 17 19:03:59 elementary kernel: fb0: switching to qxl from VESA VGA
Jan 17 19:03:59 elementary kernel: qxl 0000:00:01.0: vgaarb: deactivate vga console
Jan 17 19:03:59 elementary kernel: [drm] Device Version 0.0
Jan 17 19:03:59 elementary kernel: [drm] Compression level 0 log level 0
Jan 17 19:03:59 elementary kernel: [drm] 12286 io pages at offset 0x1000000
Jan 17 19:03:59 elementary kernel: [drm] 16777216 byte draw area at offset 0x0
Jan 17 19:03:59 elementary kernel: [drm] RAM header offset: 0x3ffe000
Jan 17 19:03:59 elementary kernel: [drm] qxl: 16M of VRAM memory size
Jan 17 19:03:59 elementary kernel: [drm] qxl: 63M of IO pages memory ready (VRAM domain)
Jan 17 19:03:59 elementary kernel: [drm] qxl: 64M of Surface memory size
Jan 17 19:03:59 elementary kernel: [drm] slot 0 (main): base 0xf4000000, size 0x03ffe000
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 17 19:03:59 elementary kernel: [drm] slot 1 (surfaces): base 0xf8000000, size 0x04000000
Jan 17 19:03:59 elementary kernel: [drm] Initialized qxl 0.1.0 20120117 for 0000:00:01.0 on minor 0
Jan 17 19:03:59 elementary kernel: fbcon: qxldrmfb (fb0) is primary device
Jan 17 19:03:59 elementary kernel: fbcon: Deferring console take-over
Jan 17 19:03:59 elementary kernel: qxl 0000:00:01.0: [drm] fb0: qxldrmfb frame buffer device
Jan 17 19:03:59 elementary systemd-udevd[581]: Using default interface naming scheme 'v249'.
Jan 17 19:03:59 elementary kernel: virtio_net virtio0 enp1s0: renamed from eth0
Jan 17 19:03:59 elementary systemd-udevd[571]: Using default interface naming scheme 'v249'.
Jan 17 19:03:59 elementary kernel: kvm: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
Jan 17 19:03:59 elementary systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Jan 17 19:03:59 elementary systemd[1]: Reached target Preparation for Local File Systems.
Jan 17 19:03:59 elementary systemd[1]: boot.mount: Directory /boot to mount over is not empty, mounting anyway.
Jan 17 19:03:59 elementary systemd[1]: Mounting /boot...
Jan 17 19:03:59 elementary systemd[1]: var.mount: Directory /var to mount over is not empty, mounting anyway.
Jan 17 19:03:59 elementary systemd[1]: Mounting /var...
Jan 17 19:03:59 elementary systemd[1]: Mounted /var.
Jan 17 19:03:59 elementary systemd[1]: Starting OSTree Remount OS/ Bind Mounts...
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jan 17 19:03:59 elementary ostree-remount[655]: Remounted rw: /sysroot
Jan 17 19:03:59 elementary ostree-remount[655]: Remounted rw: /var
Jan 17 19:03:59 elementary kernel: EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: errors=remount-ro. Quota mode: none.
Jan 17 19:03:59 elementary kernel: EXT4-fs (vda2): re-mounted. Opts: (null). Quota mode: none.
Jan 17 19:03:59 elementary kernel: EXT4-fs (vda2): re-mounted. Opts: (null). Quota mode: none.
Jan 17 19:03:59 elementary systemd[1]: Mounted /boot.
Jan 17 19:03:59 elementary systemd[1]: Finished OSTree Remount OS/ Bind Mounts.
Jan 17 19:03:59 elementary systemd[1]: Reached target Local File Systems.
Jan 17 19:03:59 elementary systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Jan 17 19:03:59 elementary systemd[1]: Starting Load AppArmor profiles...
Jan 17 19:03:59 elementary systemd[1]: Starting Set console font and keymap...
Jan 17 19:03:59 elementary systemd[1]: Starting Restore /run/initramfs on shutdown...
Jan 17 19:03:59 elementary systemd[1]: Starting Create final runtime dir for shutdown pivot root...
Jan 17 19:03:59 elementary systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Jan 17 19:03:59 elementary systemd[1]: Starting Flush Journal to Persistent Storage...
Jan 17 19:03:59 elementary systemd[1]: Starting Load/Save Random Seed...
Jan 17 19:03:59 elementary systemd[1]: Starting Uncomplicated firewall...
Jan 17 19:03:59 elementary systemd[1]: Finished Set console font and keymap.
Jan 17 19:03:59 elementary systemd[1]: Finished Restore /run/initramfs on shutdown.
Jan 17 19:03:59 elementary systemd-journald[544]: Runtime Journal (/run/log/journal/82b4623e4a8740c79c79a12dfed56eb4) is 8.0M, max 159.0M, 151.0M free.
Jan 17 19:03:59 elementary systemd[1]: Finished Create final runtime dir for shutdown pivot root.
Jan 17 19:03:59 elementary systemd[1]: Finished Flush Journal to Persistent Storage.
Jan 17 19:03:59 elementary apparmor.systemd[656]: Restarting AppArmor
Jan 17 19:03:59 elementary apparmor.systemd[656]: Reloading AppArmor profiles
Jan 17 19:03:59 elementary systemd[1]: Finished Uncomplicated firewall.
Jan 17 19:03:59 elementary systemd[1]: Reached target Preparation for Network.
Jan 17 19:03:59 elementary systemd[1]: Starting Create Volatile Files and Directories...
Jan 17 19:03:59 elementary systemd[1]: Received SIGRTMIN+20 from PID 589 (plymouthd).
Jan 17 19:03:59 elementary kernel: snd_hda_codec_generic hdaudioC0D0: autoconfig for Generic: line_outs=1 (0x3/0x0/0x0/0x0/0x0) type:line
Jan 17 19:03:59 elementary kernel: snd_hda_codec_generic hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jan 17 19:03:59 elementary kernel: snd_hda_codec_generic hdaudioC0D0:    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
Jan 17 19:03:59 elementary kernel: snd_hda_codec_generic hdaudioC0D0:    mono: mono_out=0x0
Jan 17 19:03:59 elementary kernel: snd_hda_codec_generic hdaudioC0D0:    inputs:
Jan 17 19:03:59 elementary kernel: snd_hda_codec_generic hdaudioC0D0:      Line=0x5
Jan 17 19:03:59 elementary systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Jan 17 19:03:59 elementary systemd[1]: Finished Load/Save Random Seed.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in First Boot Complete being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jan 17 19:03:59 elementary audit[673]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=673 comm="apparmor_parser"
Jan 17 19:03:59 elementary systemd[1]: Finished Create Volatile Files and Directories.
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.316:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=673 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[674]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=674 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[674]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=674 comm="apparmor_parser"
Jan 17 19:03:59 elementary apparmor.systemd[682]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Jan 17 19:03:59 elementary systemd[1]: Starting Network Name Resolution...
Jan 17 19:03:59 elementary audit[676]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=676 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[676]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=676 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[676]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=676 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[677]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/libexec/ibus-engine-hangul" pid=677 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.320:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=674 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.320:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=674 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.320:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=676 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.320:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=676 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.320:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=676 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.320:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/libexec/ibus-engine-hangul" pid=677 comm="apparmor_parser"
Jan 17 19:03:59 elementary systemd[1]: Starting Network Time Synchronization...
Jan 17 19:03:59 elementary systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Jan 17 19:03:59 elementary systemd[683]: systemd-resolved.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[684]: systemd-timesyncd.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary audit[679]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=679 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[678]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/libexec/ibus-setup-hangul" pid=678 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[678]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/libexec/ibus-setup-hangul//python_profile" pid=678 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[675]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=675 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[675]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=675 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[675]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=675 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[675]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=675 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.324:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=679 comm="apparmor_parser"
Jan 17 19:03:59 elementary kernel: audit: type=1400 audit(1642446239.328:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/libexec/ibus-setup-hangul" pid=678 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[672]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=672 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[672]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=672 comm="apparmor_parser"
Jan 17 19:03:59 elementary systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Jan 17 19:03:59 elementary audit[681]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=681 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[681]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=681 comm="apparmor_parser"
Jan 17 19:03:59 elementary audit[681]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=681 comm="apparmor_parser"
Jan 17 19:03:59 elementary systemd[1]: Finished Load AppArmor profiles.
Jan 17 19:03:59 elementary systemd-udevd[602]: controlC0: Process '/usr/sbin/alsactl -E HOME=/run/alsa -E XDG_RUNTIME_DIR=/run/alsa/runtime restore 0' failed with exit code 99.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Scheduled restart job, restart counter is at 1.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: Starting Network Name Resolution...
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Scheduled restart job, restart counter is at 1.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[688]: systemd-resolved.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: Starting Network Time Synchronization...
Jan 17 19:03:59 elementary systemd[691]: systemd-timesyncd.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Scheduled restart job, restart counter is at 2.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: Starting Network Name Resolution...
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Scheduled restart job, restart counter is at 2.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[694]: systemd-resolved.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: Starting Network Time Synchronization...
Jan 17 19:03:59 elementary systemd[697]: systemd-timesyncd.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Scheduled restart job, restart counter is at 3.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: Starting Network Name Resolution...
Jan 17 19:03:59 elementary systemd[701]: systemd-resolved.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Scheduled restart job, restart counter is at 3.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: Starting Network Time Synchronization...
Jan 17 19:03:59 elementary systemd[704]: systemd-timesyncd.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Scheduled restart job, restart counter is at 4.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: Starting Network Name Resolution...
Jan 17 19:03:59 elementary systemd[707]: systemd-resolved.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Scheduled restart job, restart counter is at 4.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: Starting Network Time Synchronization...
Jan 17 19:03:59 elementary systemd[710]: systemd-timesyncd.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Scheduled restart job, restart counter is at 5.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Start request repeated too quickly.
Jan 17 19:03:59 elementary systemd[1]: systemd-resolved.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Name Resolution.
Jan 17 19:03:59 elementary systemd[1]: Reached target Host and Network Name Lookups.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Main process exited, code=exited, status=200/CHDIR
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Scheduled restart job, restart counter is at 5.
Jan 17 19:03:59 elementary systemd[1]: Stopped Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Start request repeated too quickly.
Jan 17 19:03:59 elementary systemd[1]: systemd-timesyncd.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Network Time Synchronization.
Jan 17 19:03:59 elementary systemd[1]: Reached target System Initialization.
Jan 17 19:03:59 elementary systemd[1]: Started ACPI Events Check.
Jan 17 19:03:59 elementary systemd[1]: Started CUPS Scheduler.
Jan 17 19:03:59 elementary systemd[1]: Started OSTree Monitor Staged Deployment.
Jan 17 19:03:59 elementary systemd[1]: Started Trigger to poll for Ubuntu Pro licenses (Only enabled on GCP LTS non-pro).
Jan 17 19:03:59 elementary systemd[1]: Started Daily Cleanup of Temporary Directories.
Jan 17 19:03:59 elementary systemd[1]: Started Ubuntu Advantage Timer for running repeated jobs.
Jan 17 19:03:59 elementary systemd[1]: Reached target Path Units.
Jan 17 19:03:59 elementary systemd[1]: Reached target System Time Set.
Jan 17 19:03:59 elementary systemd[1]: Started Trigger anacron every hour.
Jan 17 19:03:59 elementary systemd[1]: Started Daily apt download activities.
Jan 17 19:03:59 elementary systemd[1]: Started Daily apt upgrade and clean activities.
Jan 17 19:03:59 elementary systemd[1]: Started Periodic ext4 Online Metadata Check for All Filesystems.
Jan 17 19:03:59 elementary systemd[1]: Started Discard unused blocks once a week.
Jan 17 19:03:59 elementary systemd[1]: Started Refresh fwupd metadata regularly.
Jan 17 19:03:59 elementary systemd[1]: Started Daily rotation of log files.
Jan 17 19:03:59 elementary systemd[1]: Started Daily man-db regeneration.
Jan 17 19:03:59 elementary systemd[1]: Started Message of the Day.
Jan 17 19:03:59 elementary systemd[1]: Reached target Timer Units.
Jan 17 19:03:59 elementary systemd[1]: Listening on ACPID Listen Socket.
Jan 17 19:03:59 elementary systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Jan 17 19:03:59 elementary systemd[1]: Listening on CUPS Scheduler.
Jan 17 19:03:59 elementary systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 17 19:03:59 elementary systemd[1]: Listening on Activation socket for spice guest agent daemon.
Jan 17 19:03:59 elementary systemd[1]: Reached target Socket Units.
Jan 17 19:03:59 elementary systemd[1]: Reached target Basic System.
Jan 17 19:03:59 elementary systemd[1]: Starting Accounts Service...
Jan 17 19:03:59 elementary systemd[1]: Started ACPI event daemon.
Jan 17 19:03:59 elementary systemd[1]: Started Run anacron jobs.
Jan 17 19:03:59 elementary systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Jan 17 19:03:59 elementary anacron[718]: Can't chdir to /var/spool/anacron: No such file or directory
Jan 17 19:03:59 elementary anacron[718]: anacron: Can't chdir to /var/spool/anacron: No such file or directory
Jan 17 19:03:59 elementary systemd[1]: Started Regular background program processing daemon.
Jan 17 19:03:59 elementary systemd[1]: Started D-Bus System Message Bus.
Jan 17 19:03:59 elementary cron[722]: (CRON) INFO (pidfile fd = 3)
Jan 17 19:03:59 elementary systemd[1]: Starting Network Manager...
Jan 17 19:03:59 elementary cron[722]: (CRON) INFO (Running @reboot jobs)
Jan 17 19:03:59 elementary systemd[1]: Started Save initial kernel messages after boot.
Jan 17 19:03:59 elementary avahi-daemon[719]: Found user 'avahi' (UID 112) and group 'avahi' (GID 119).
Jan 17 19:03:59 elementary systemd[1]: Starting Remove Stale Online ext4 Metadata Check Snapshots...
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in getty on tty2-tty6 if dbus and logind are not available being skipped.
Jan 17 19:03:59 elementary systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Jan 17 19:03:59 elementary systemd[1]: Starting Record successful boot for GRUB...
Jan 17 19:03:59 elementary systemd[1]: Starting Dispatcher daemon for systemd-networkd...
Jan 17 19:03:59 elementary systemd[1]: Starting Pantheon Screen Time & Limits Daemon...
Jan 17 19:03:59 elementary systemd[1]: Starting Authorization Manager...
Jan 17 19:03:59 elementary systemd[1]: Starting Power Profiles daemon...
Jan 17 19:03:59 elementary systemd[1]: Starting System Logging Service...
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Secure Boot updates for DB and DBX being skipped.
Jan 17 19:03:59 elementary systemd[1]: Starting Switcheroo Control Proxy service...
Jan 17 19:03:59 elementary systemd[1]: Starting User Login Management...
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Thermal Daemon Service being skipped.
Jan 17 19:03:59 elementary systemd[1]: Condition check resulted in Ubuntu Advantage reboot cmds being skipped.
Jan 17 19:03:59 elementary systemd[1]: Starting Disk Manager...
Jan 17 19:03:59 elementary systemd[1]: Starting WPA supplicant...
Jan 17 19:03:59 elementary systemd[1]: anacron.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:03:59 elementary systemd[1]: anacron.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary avahi-daemon[719]: Successfully dropped root privileges.
Jan 17 19:03:59 elementary avahi-daemon[719]: open(/run/avahi-daemon//pid): Permission denied
Jan 17 19:03:59 elementary dbus-daemon[723]: dbus[723]: Unknown username "whoopsie" in message bus configuration file
Jan 17 19:03:59 elementary avahi-daemon[719]: Failed to create PID file: Permission denied
Jan 17 19:03:59 elementary systemd[1]: avahi-daemon.service: Main process exited, code=exited, status=255/EXCEPTION
Jan 17 19:03:59 elementary systemd[1]: avahi-daemon.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start Avahi mDNS/DNS-SD Stack.
Jan 17 19:03:59 elementary systemd[1]: grub-common.service: Deactivated successfully.
Jan 17 19:03:59 elementary systemd[1]: Finished Record successful boot for GRUB.
Jan 17 19:03:59 elementary systemd[1]: Starting GRUB failed boot detection...
Jan 17 19:03:59 elementary dbus-daemon[723]: dbus[723]: Unknown group "power" in message bus configuration file
Jan 17 19:03:59 elementary systemd[1]: e2scrub_reap.service: Deactivated successfully.
Jan 17 19:03:59 elementary udisksd[748]: udisks daemon version 2.9.4 starting
Jan 17 19:03:59 elementary systemd[1]: Finished Remove Stale Online ext4 Metadata Check Snapshots.
Jan 17 19:03:59 elementary systemd[1]: grub-initrd-fallback.service: Deactivated successfully.
Jan 17 19:03:59 elementary systemd[1]: Finished GRUB failed boot detection.
Jan 17 19:03:59 elementary acpid[717]: starting up with netlink and the input layer
Jan 17 19:03:59 elementary acpid[717]: 8 rules loaded
Jan 17 19:03:59 elementary acpid[717]: waiting for events: event logging is off
Jan 17 19:03:59 elementary systemd-logind[745]: New seat seat0.
Jan 17 19:03:59 elementary systemd[1]: gpu-manager.service: Deactivated successfully.
Jan 17 19:03:59 elementary systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Jan 17 19:03:59 elementary systemd-logind[745]: Watching system buttons on /dev/input/event0 (Power Button)
Jan 17 19:03:59 elementary systemd-logind[745]: Watching system buttons on /dev/input/event1 (AT Translated Set 2 keyboard)
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Started D-Bus System Message Bus.
Jan 17 19:03:59 elementary dbus-daemon[780]: dbus[780]: Unknown username "whoopsie" in message bus configuration file
Jan 17 19:03:59 elementary dbus-daemon[780]: dbus[780]: Unknown group "power" in message bus configuration file
Jan 17 19:03:59 elementary NetworkManager[724]: <info>  [1642446239.8203] NetworkManager (version 1.32.12) is starting... (for the first time)
Jan 17 19:03:59 elementary NetworkManager[724]: <info>  [1642446239.8209] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 10-globally-managed-devices.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (etc: default-wifi-powersave-on.conf)
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Started D-Bus System Message Bus.
Jan 17 19:03:59 elementary dbus-daemon[783]: dbus[783]: Unknown username "whoopsie" in message bus configuration file
Jan 17 19:03:59 elementary dbus-daemon[783]: dbus[783]: Unknown group "power" in message bus configuration file
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Started D-Bus System Message Bus.
Jan 17 19:03:59 elementary dbus-daemon[784]: dbus[784]: Unknown username "whoopsie" in message bus configuration file
Jan 17 19:03:59 elementary dbus-daemon[784]: dbus[784]: Unknown group "power" in message bus configuration file
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Started D-Bus System Message Bus.
Jan 17 19:03:59 elementary dbus-daemon[785]: dbus[785]: Unknown username "whoopsie" in message bus configuration file
Jan 17 19:03:59 elementary dbus-daemon[785]: dbus[785]: Unknown group "power" in message bus configuration file
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Start request repeated too quickly.
Jan 17 19:03:59 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:03:59 elementary systemd[1]: Failed to start D-Bus System Message Bus.
Jan 17 19:03:59 elementary systemd[1]: dbus.socket: Failed with result 'service-start-limit-hit'.
Jan 17 19:04:00 elementary kernel: input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
Jan 17 19:04:04 elementary pantheon-parent[732]: Failed to connect to the D-Bus daemon: Error receiving data: Connection reset by peer
Jan 17 19:04:04 elementary networkd-dispatcher[787]: WARNING: systemd-networkd is not running, output will be incomplete.
Jan 17 19:04:04 elementary NetworkManager[724]: <error> [1642446244.7005] bus-manager: cannot connect to D-Bus: Error receiving data: Connection reset by peer
Jan 17 19:04:04 elementary NetworkManager[724]: <info>  [1642446244.7006] exiting (error)
Jan 17 19:04:04 elementary udisksd[748]: Failed to connect to the system message bus
Jan 17 19:04:04 elementary udisksd[748]: udisks daemon version 2.9.4 exiting
Jan 17 19:04:04 elementary pantheon-parent[732]: SessionManager.vala:45: Could not connect: Connection refused
Jan 17 19:04:04 elementary pantheon-parent[732]: pc_daemon_daemon_on_bus_lost: assertion 'connection != NULL' failed
Jan 17 19:04:04 elementary wpa_supplicant[750]: dbus: Could not acquire the system bus: org.freedesktop.DBus.Error.NoReply - Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
Jan 17 19:04:04 elementary systemd[1]: accounts-daemon.service: Deactivated successfully.
Jan 17 19:04:04 elementary systemd[1]: Started Accounts Service.
Jan 17 19:04:04 elementary systemd[1]: polkit.service: Deactivated successfully.
Jan 17 19:04:04 elementary systemd[1]: Started Authorization Manager.
Jan 17 19:04:04 elementary systemd[1]: power-profiles-daemon.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:04 elementary systemd[1]: power-profiles-daemon.service: Failed with result 'exit-code'.
Jan 17 19:04:04 elementary systemd[1]: Failed to start Power Profiles daemon.
Jan 17 19:04:04 elementary wpa_supplicant[750]: Failed to initialize wpa_supplicant
Jan 17 19:04:04 elementary systemd[1]: NetworkManager.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:04 elementary systemd[1]: NetworkManager.service: Failed with result 'exit-code'.
Jan 17 19:04:04 elementary systemd[1]: Failed to start Network Manager.
Jan 17 19:04:04 elementary systemd[1]: Dependency failed for Network Manager Wait Online.
Jan 17 19:04:04 elementary systemd[1]: NetworkManager-wait-online.service: Job NetworkManager-wait-online.service/start failed with result 'dependency'.
Jan 17 19:04:04 elementary systemd[1]: switcheroo-control.service: Deactivated successfully.
Jan 17 19:04:04 elementary systemd[1]: Started Switcheroo Control Proxy service.
Jan 17 19:04:04 elementary systemd[1]: udisks2.service: Deactivated successfully.
Jan 17 19:04:04 elementary systemd[1]: Started Disk Manager.
Jan 17 19:04:04 elementary systemd[1]: wpa_supplicant.service: Main process exited, code=exited, status=255/EXCEPTION
Jan 17 19:04:04 elementary systemd[1]: wpa_supplicant.service: Failed with result 'exit-code'.
Jan 17 19:04:04 elementary systemd[1]: Failed to start WPA supplicant.
Jan 17 19:04:04 elementary systemd[1]: Reached target Network.
Jan 17 19:04:04 elementary systemd[1]: Reached target Network is Online.
Jan 17 19:04:04 elementary systemd[1]: Starting Modem Manager...
Jan 17 19:04:04 elementary systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
Jan 17 19:04:04 elementary systemd[1]: Starting Save/Restore Sound Card State...
Jan 17 19:04:04 elementary systemd[1]: Starting CUPS Scheduler...
Jan 17 19:04:04 elementary systemd[1]: Starting Tool to automatically collect and submit kernel crash signatures...
Jan 17 19:04:04 elementary systemd[1]: Starting OpenVPN service...
Jan 17 19:04:04 elementary systemd[1]: Starting Permit User Sessions...
Jan 17 19:04:04 elementary systemd[1]: Finished OpenVPN service.
Jan 17 19:04:04 elementary alsactl[807]: /usr/sbin/alsactl: load_state:1651: Cannot open /var/lib/alsa/asound.state for reading: No such file or directory
Jan 17 19:04:04 elementary systemd[802]: kerneloops.service: Failed to connect stdout to the journal socket, ignoring: Permission denied
Jan 17 19:04:04 elementary systemd[1]: kerneloops.service: Control process exited, code=exited, status=200/CHDIR
Jan 17 19:04:04 elementary systemd[1]: kerneloops.service: Failed with result 'exit-code'.
Jan 17 19:04:04 elementary systemd[1]: Failed to start Tool to automatically collect and submit kernel crash signatures.
Jan 17 19:04:04 elementary systemd[1]: Finished Permit User Sessions.
Jan 17 19:04:04 elementary systemd[1]: Starting Light Display Manager...
Jan 17 19:04:04 elementary alsactl[807]: alsa-lib ucm_subs.c:186:(rval_card_id_by_name) ${CardIdByName} substitution is obsolete - use ${find-card}!
Jan 17 19:04:04 elementary alsactl[807]: alsa-lib parser.c:242:(error_node) UCM is not supported for this HDA model (HDA Intel at 0xfcc10000 irq 45)
Jan 17 19:04:04 elementary alsactl[807]: alsa-lib main.c:1405:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -6
Jan 17 19:04:04 elementary alsactl[807]: Found hardware: "HDA-Intel" "QEMU Generic" "HDA:1af40022,1af40022,00100101" "0x1af4" "0x1100"
Jan 17 19:04:04 elementary alsactl[807]: Hardware is initialized using a generic method
Jan 17 19:04:04 elementary systemd[1]: Starting Hold until boot process finishes up...
Jan 17 19:04:04 elementary systemd[1]: Finished Save/Restore Sound Card State.
Jan 17 19:04:04 elementary systemd[1]: Reached target Sound Card.
Jan 17 19:04:04 elementary lightdm[815]: Failed to get system bus: Could not connect: Connection refused
Jan 17 19:04:04 elementary audit[800]: AVC apparmor="DENIED" operation="capable" profile="/usr/sbin/cupsd" pid=800 comm="cupsd" capability=12  capname="net_admin"
Jan 17 19:04:04 elementary systemd[1]: Started CUPS Scheduler.
Jan 17 19:04:04 elementary kernel: kauditd_printk_skb: 10 callbacks suppressed
Jan 17 19:04:04 elementary kernel: audit: type=1400 audit(1642446244.760:21): apparmor="DENIED" operation="capable" profile="/usr/sbin/cupsd" pid=800 comm="cupsd" capability=12  capname="net_admin"
Jan 17 19:04:04 elementary systemd[1]: Started Make remote CUPS printers available locally.
Jan 17 19:04:04 elementary ModemManager[797]: <info>  ModemManager (version 1.18.2) starting in system bus...
Jan 17 19:04:04 elementary systemd[1]: Received SIGRTMIN+21 from PID 589 (plymouthd).
Jan 17 19:04:04 elementary ModemManager[797]: <warn>  could not acquire the 'org.freedesktop.ModemManager1' service name
Jan 17 19:04:04 elementary ModemManager[797]: <info>  ModemManager is shut down
Jan 17 19:04:04 elementary systemd[1]: Received SIGRTMIN+21 from PID 589 (plymouthd).
Jan 17 19:04:04 elementary systemd[1]: Finished Hold until boot process finishes up.
Jan 17 19:04:04 elementary lightdm[815]: Failed to get D-Bus connection
Jan 17 19:04:04 elementary systemd[1]: Starting Set console scheme...
Jan 17 19:04:04 elementary systemd[1]: ModemManager.service: Deactivated successfully.
Jan 17 19:04:04 elementary systemd[1]: Started Modem Manager.
Jan 17 19:04:04 elementary systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:04 elementary systemd[1]: Finished Set console scheme.
Jan 17 19:04:04 elementary systemd[1]: Created slice Slice /system/getty.
Jan 17 19:04:04 elementary systemd[1]: Started Getty on tty1.
Jan 17 19:04:04 elementary systemd[1]: Reached target Login Prompts.
Jan 17 19:04:04 elementary systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jan 17 19:04:04 elementary systemd[1]: Failed to start Light Display Manager.
Jan 17 19:04:04 elementary kernel: fbcon: Taking over console
Jan 17 19:04:04 elementary kernel: Console: switching to colour frame buffer device 128x48
Jan 17 19:04:04 elementary kernel: audit: type=1400 audit(1642446244.800:22): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=833 comm="cups-browsed" capability=23  capname="sys_nice"
Jan 17 19:04:04 elementary audit[833]: AVC apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=833 comm="cups-browsed" capability=23  capname="sys_nice"
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Scheduled restart job, restart counter is at 1.
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 1.
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Scheduled restart job, restart counter is at 1.
Jan 17 19:04:05 elementary systemd[1]: Stopped Network Manager.
Jan 17 19:04:05 elementary systemd[1]: Stopped Light Display Manager.
Jan 17 19:04:05 elementary systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Jan 17 19:04:05 elementary systemd[1]: Stopped Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 17 19:04:05 elementary systemd[1]: Starting Network Manager...
Jan 17 19:04:05 elementary systemd[1]: Starting Power Profiles daemon...
Jan 17 19:04:05 elementary NetworkManager[867]: <info>  [1642446245.0813] NetworkManager (version 1.32.12) is starting... (after a restart)
Jan 17 19:04:05 elementary NetworkManager[867]: <info>  [1642446245.0814] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 10-globally-managed-devices.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (etc: default-wifi-powersave-on.conf)
Jan 17 19:04:05 elementary systemd[1]: dbus.service: Start request repeated too quickly.
Jan 17 19:04:05 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start D-Bus System Message Bus.
Jan 17 19:04:05 elementary systemd[1]: dbus.socket: Failed with result 'service-start-limit-hit'.
Jan 17 19:04:05 elementary NetworkManager[867]: <error> [1642446245.0832] bus-manager: cannot connect to D-Bus: Error receiving data: Connection reset by peer
Jan 17 19:04:05 elementary NetworkManager[867]: <info>  [1642446245.0833] exiting (error)
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Network Manager.
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: gpu-manager.service: Deactivated successfully.
Jan 17 19:04:05 elementary systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Jan 17 19:04:05 elementary systemd[1]: Starting Light Display Manager...
Jan 17 19:04:05 elementary lightdm[893]: Failed to get system bus: Could not connect: Connection refused
Jan 17 19:04:05 elementary lightdm[893]: Failed to get D-Bus connection
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Light Display Manager.
Jan 17 19:04:05 elementary networkd-dispatcher[730]: Traceback (most recent call last):
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 497, in <module>
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     init()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 494, in init
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     main()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 478, in main
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     dispatcher.register()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 252, in register
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     bus = dbus.SystemBus()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/dbus/_dbus.py", line 195, in __new__
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     return Bus.__new__(cls, Bus.TYPE_SYSTEM, mainloop=mainloop,
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/dbus/_dbus.py", line 102, in __new__
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     bus = BusConnection.__new__(subclass, bus_type, mainloop=mainloop)
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 124, in __new__
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
Jan 17 19:04:05 elementary networkd-dispatcher[730]: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoServer: Failed to connect to socket /run/dbus/system_bus_socket: Connection refused
Jan 17 19:04:05 elementary networkd-dispatcher[730]: Error in sys.excepthook:
Jan 17 19:04:05 elementary networkd-dispatcher[730]: Traceback (most recent call last):
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 153, in apport_excepthook
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     with os.fdopen(os.open(pr_filename,
Jan 17 19:04:05 elementary networkd-dispatcher[730]: FileNotFoundError: [Errno 2] No such file or directory: '/var/crash/_usr_bin_networkd-dispatcher.0.crash'
Jan 17 19:04:05 elementary networkd-dispatcher[730]: Original exception was:
Jan 17 19:04:05 elementary networkd-dispatcher[730]: Traceback (most recent call last):
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 497, in <module>
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     init()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 494, in init
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     main()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 478, in main
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     dispatcher.register()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/bin/networkd-dispatcher", line 252, in register
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     bus = dbus.SystemBus()
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/dbus/_dbus.py", line 195, in __new__
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     return Bus.__new__(cls, Bus.TYPE_SYSTEM, mainloop=mainloop,
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/dbus/_dbus.py", line 102, in __new__
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     bus = BusConnection.__new__(subclass, bus_type, mainloop=mainloop)
Jan 17 19:04:05 elementary networkd-dispatcher[730]:   File "/usr/lib/python3/dist-packages/dbus/bus.py", line 124, in __new__
Jan 17 19:04:05 elementary networkd-dispatcher[730]:     bus = cls._new_for_bus(address_or_type, mainloop=mainloop)
Jan 17 19:04:05 elementary networkd-dispatcher[730]: dbus.exceptions.DBusException: org.freedesktop.DBus.Error.NoServer: Failed to connect to socket /run/dbus/system_bus_socket: Connection refused
Jan 17 19:04:05 elementary systemd[1]: networkd-dispatcher.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: networkd-dispatcher.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Dispatcher daemon for systemd-networkd.
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Scheduled restart job, restart counter is at 2.
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Scheduled restart job, restart counter is at 2.
Jan 17 19:04:05 elementary systemd[1]: Stopped Network Manager.
Jan 17 19:04:05 elementary systemd[1]: Stopped Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 17 19:04:05 elementary systemd[1]: Starting Network Manager...
Jan 17 19:04:05 elementary systemd[1]: Starting Power Profiles daemon...
Jan 17 19:04:05 elementary NetworkManager[899]: <info>  [1642446245.2305] NetworkManager (version 1.32.12) is starting... (after a restart)
Jan 17 19:04:05 elementary NetworkManager[899]: <info>  [1642446245.2306] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 10-globally-managed-devices.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (etc: default-wifi-powersave-on.conf)
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 2.
Jan 17 19:04:05 elementary systemd[1]: dbus.service: Start request repeated too quickly.
Jan 17 19:04:05 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start D-Bus System Message Bus.
Jan 17 19:04:05 elementary systemd[1]: dbus.socket: Failed with result 'service-start-limit-hit'.
Jan 17 19:04:05 elementary systemd[1]: Stopped Light Display Manager.
Jan 17 19:04:05 elementary NetworkManager[899]: <error> [1642446245.2323] bus-manager: cannot connect to D-Bus: Error receiving data: Connection reset by peer
Jan 17 19:04:05 elementary NetworkManager[899]: <info>  [1642446245.2323] exiting (error)
Jan 17 19:04:05 elementary systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Network Manager.
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: gpu-manager.service: Deactivated successfully.
Jan 17 19:04:05 elementary systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Jan 17 19:04:05 elementary systemd[1]: Starting Light Display Manager...
Jan 17 19:04:05 elementary lightdm[926]: Failed to get system bus: Could not connect: Connection refused
Jan 17 19:04:05 elementary lightdm[926]: Failed to get D-Bus connection
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Light Display Manager.
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Scheduled restart job, restart counter is at 3.
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 3.
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Scheduled restart job, restart counter is at 3.
Jan 17 19:04:05 elementary systemd[1]: Stopped Network Manager.
Jan 17 19:04:05 elementary systemd[1]: Stopped Light Display Manager.
Jan 17 19:04:05 elementary systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Jan 17 19:04:05 elementary systemd[1]: Stopped Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 17 19:04:05 elementary systemd[1]: Starting Network Manager...
Jan 17 19:04:05 elementary systemd[1]: Starting Power Profiles daemon...
Jan 17 19:04:05 elementary NetworkManager[932]: <info>  [1642446245.6158] NetworkManager (version 1.32.12) is starting... (after a restart)
Jan 17 19:04:05 elementary NetworkManager[932]: <info>  [1642446245.6159] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 10-globally-managed-devices.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (etc: default-wifi-powersave-on.conf)
Jan 17 19:04:05 elementary systemd[1]: dbus.service: Start request repeated too quickly.
Jan 17 19:04:05 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start D-Bus System Message Bus.
Jan 17 19:04:05 elementary systemd[1]: dbus.socket: Failed with result 'service-start-limit-hit'.
Jan 17 19:04:05 elementary NetworkManager[932]: <error> [1642446245.6180] bus-manager: cannot connect to D-Bus: Error receiving data: Connection reset by peer
Jan 17 19:04:05 elementary NetworkManager[932]: <info>  [1642446245.6181] exiting (error)
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Network Manager.
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: gpu-manager.service: Deactivated successfully.
Jan 17 19:04:05 elementary systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Jan 17 19:04:05 elementary systemd[1]: Starting Light Display Manager...
Jan 17 19:04:05 elementary lightdm[958]: Failed to get system bus: Could not connect: Connection refused
Jan 17 19:04:05 elementary lightdm[958]: Failed to get D-Bus connection
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jan 17 19:04:05 elementary systemd[1]: Failed to start Light Display Manager.
Jan 17 19:04:05 elementary systemd[1]: NetworkManager.service: Scheduled restart job, restart counter is at 4.
Jan 17 19:04:05 elementary systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 4.
Jan 17 19:04:05 elementary systemd[1]: power-profiles-daemon.service: Scheduled restart job, restart counter is at 4.
Jan 17 19:04:05 elementary systemd[1]: Stopped Network Manager.
Jan 17 19:04:05 elementary systemd[1]: Stopped Light Display Manager.
Jan 17 19:04:05 elementary systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Jan 17 19:04:05 elementary systemd[1]: Stopped Power Profiles daemon.
Jan 17 19:04:05 elementary systemd[1]: Listening on D-Bus System Message Bus Socket.
Jan 17 19:04:05 elementary systemd[1]: Starting Network Manager...
Jan 17 19:04:05 elementary systemd[1]: Starting Power Profiles daemon...
Jan 17 19:04:05 elementary NetworkManager[965]: <info>  [1642446245.9998] NetworkManager (version 1.32.12) is starting... (after a restart)
Jan 17 19:04:05 elementary NetworkManager[965]: <info>  [1642446245.9998] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 10-globally-managed-devices.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (etc: default-wifi-powersave-on.conf)
Jan 17 19:04:06 elementary systemd[1]: dbus.service: Start request repeated too quickly.
Jan 17 19:04:06 elementary systemd[1]: dbus.service: Failed with result 'exit-code'.
Jan 17 19:04:06 elementary systemd[1]: Failed to start D-Bus System Message Bus.
Jan 17 19:04:06 elementary systemd[1]: dbus.socket: Failed with result 'service-start-limit-hit'.
Jan 17 19:04:06 elementary NetworkManager[965]: <error> [1642446246.0017] bus-manager: cannot connect to D-Bus: Error receiving data: Connection reset by peer
Jan 17 19:04:06 elementary NetworkManager[965]: <info>  [1642446246.0017] exiting (error)
Jan 17 19:04:06 elementary systemd[1]: NetworkManager.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:06 elementary systemd[1]: NetworkManager.service: Failed with result 'exit-code'.
Jan 17 19:04:06 elementary systemd[1]: Failed to start Network Manager.
Jan 17 19:04:06 elementary systemd[1]: power-profiles-daemon.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:06 elementary systemd[1]: power-profiles-daemon.service: Failed with result 'exit-code'.
Jan 17 19:04:06 elementary systemd[1]: Failed to start Power Profiles daemon.
Jan 17 19:04:06 elementary systemd[1]: gpu-manager.service: Deactivated successfully.
Jan 17 19:04:06 elementary systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Jan 17 19:04:06 elementary systemd[1]: Starting Light Display Manager...
Jan 17 19:04:06 elementary lightdm[991]: Failed to get system bus: Could not connect: Connection refused
Jan 17 19:04:06 elementary lightdm[991]: Failed to get D-Bus connection
Jan 17 19:04:06 elementary systemd[1]: lightdm.service: Main process exited, code=exited, status=1/FAILURE
Jan 17 19:04:06 elementary systemd[1]: lightdm.service: Failed with result 'exit-code'.
Jan 17 19:04:06 elementary systemd[1]: Failed to start Light Display Manager.
Jan 17 19:04:06 elementary systemd[1]: NetworkManager.service: Scheduled restart job, restart counter is at 5.
Jan 17 19:04:06 elementary systemd[1]: lightdm.service: Scheduled restart job, restart counter is at 5.
Jan 17 19:04:06 elementary systemd[1]: power-profiles-daemon.service: Scheduled restart job, restart counter is at 5.
Jan 17 19:04:06 elementary systemd[1]: Stopped Network Manager.
Jan 17 19:04:06 elementary systemd[1]: Stopped Light Display Manager.
Jan 17 19:04:06 elementary systemd[1]: gpu-manager.service: Start request repeated too quickly.
Jan 17 19:04:06 elementary systemd[1]: gpu-manager.service: Failed with result 'start-limit-hit'.
Jan 17 19:04:06 elementary systemd[1]: Failed to start Detect the available GPUs and deal with any system changes.
Jan 17 19:04:06 elementary systemd[1]: Stopped Power Profiles daemon.
Jan 17 19:04:06 elementary systemd[1]: dbus.socket: Start request repeated too quickly.
Jan 17 19:04:06 elementary systemd[1]: dbus.socket: Failed with result 'service-start-limit-hit'.
Jan 17 19:04:06 elementary systemd[1]: Failed to listen on D-Bus System Message Bus Socket.
Jan 17 19:04:06 elementary systemd[1]: Dependency failed for Power Profiles daemon.
Jan 17 19:04:06 elementary systemd[1]: power-profiles-daemon.service: Job power-profiles-daemon.service/start failed with result 'dependency'.
Jan 17 19:04:06 elementary systemd[1]: Dependency failed for Pantheon Screen Time & Limits Daemon.
Jan 17 19:04:06 elementary systemd[1]: pantheon-parental-controls.service: Job pantheon-parental-controls.service/start failed with result 'dependency'.
Jan 17 19:04:06 elementary systemd[1]: Dependency failed for Network Manager.
Jan 17 19:04:06 elementary systemd[1]: NetworkManager.service: Job NetworkManager.service/start failed with result 'dependency'.
Jan 17 19:04:06 elementary systemd[1]: Dependency failed for User Login Management.
Jan 17 19:04:06 elementary systemd[1]: systemd-logind.service: Job systemd-logind.service/start failed with result 'dependency'.
Jan 17 19:04:06 elementary systemd[1]: Dependency failed for Light Display Manager.
Jan 17 19:04:06 elementary systemd[1]: lightdm.service: Job lightdm.service/start failed with result 'dependency'.
Jan 17 19:04:09 elementary systemd[1]: dmesg.service: Deactivated successfully.
Jan 17 19:04:15 elementary login[839]: pam_unix(login:session): session opened for user root(uid=0) by LOGIN(uid=0)
Jan 17 19:04:15 elementary login[839]: pam_systemd(login:session): Failed to connect to system bus: Connection refused
Jan 17 19:04:15 elementary login[1014]: ROOT LOGIN  on '/dev/tty1'

This results in me only being able to log into a terminal.

meisenzahl avatar Jan 17 '22 19:01 meisenzahl

Hi @meisenzahl, I don't know where or how to begin, but I'd like to assist with this effort if at all possible.

chrisdotcode avatar Feb 27 '23 19:02 chrisdotcode

May I ask, just of curiosity, why this PR was closed? Is a different solution being proposed? There was a lot of good work in here and just wondering.

mpanhans avatar Mar 12 '24 14:03 mpanhans