Skip to content

Instantly share code, notes, and snippets.

@rgrunbla
Created February 22, 2022 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rgrunbla/296db04d19c22063d354a64b521f01b1 to your computer and use it in GitHub Desktop.
Save rgrunbla/296db04d19c22063d354a64b521f01b1 to your computer and use it in GitHub Desktop.
{ stdenv, fetchurl, qemu, cloud-utils, gnutar, coreutils }:
stdenv.mkDerivation {
name = "cagregos";
dontUnpack = true;
srcs = [
(fetchurl {
url = "https://cloud-images.ubuntu.com/focal/current/focal-server-cloudimg-amd64.img";
sha256 = "sha256-GJcUlqgh0mDT4FYcYviPS3GdnswKQiq8C2zhWsk9awo=";
})
./cloud-config.yaml
];
buildPhase = ''
cp $srcs[1] ./cloud-config.yaml
${cloud-utils}/bin/cloud-localds seed.img cloud-config.yaml
cp $srcs[0] ./focal-server-cloudimg-amd64.img
${coreutils}/bin/chmod u+rw ./focal-server-cloudimg-amd64.img
${qemu}/bin/qemu-img resize focal-server-cloudimg-amd64.img +10G
${qemu}/bin/qemu-system-x86_64 -m 2048 -smp $(nproc) -net nic -net user -hda focal-server-cloudimg-amd64.img -hdb seed.img -nographic
${gnutar}/bin/tar cvzf image.img.gz focal-server-cloudimg-amd64.img
'';
}
#cloud-config
users:
- name: candidat
gecos: Candidat Agreg
plain_text_passwd: 'concours'
lock_passwd: false
sudo: ALL=(ALL) NOPASSWD:ALL
packages:
- ubuntu-desktop-minimal
- ocaml
- jupyter
- inkscape
- gimp
- apache2
- wget
- htop
- language-pack-fr
package_upgrade: true
runcmd:
- apt autoclean
- localectl set-locale fr_FR.UTF-8
- localectl set-x11-keymap fr
power_state:
mode: poweroff
condition: True
message: Aaaaand.... done.
{
"nodes": {
"nixpkgs": {
"locked": {
"lastModified": 1645159530,
"narHash": "sha256-RXBjZ4hwKI/aAgHk3prUFmHIb0BkIBkHRN8l01Z5yXk=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "4afca382d80b68bff9e154a97210e5a7bf5df8b3",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixos-21.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"nixpkgs": "nixpkgs"
}
}
},
"root": "root",
"version": 7
}
{
description = " A collection of various NixOS packages in a single tree ";
inputs = { nixpkgs.url = "github:NixOS/nixpkgs/nixos-21.11"; };
outputs = { self, nixpkgs }:
with import nixpkgs { system = "x86_64-linux"; }; {
packages.x86_64-linux.cagregos = callPackage ./pkgs/cagregos.nix { };
};
}
warning: Git tree '/home/remy/clef-agreg' is dirty
cagregos> patching sources
cagregos> configuring
cagregos> no configure script, doing nothing
cagregos> building
cagregos> Image resized.
cagregos> WARNING: Image format was not specified for 'seed.img' and probing guessed raw.
cagregos> Automatically detecting the format is dangerous for raw images, write operations on block 0 will be restricted.
cagregos> Specify the 'raw' format explicitly to remove the restrictions.
cagregos> cSeaBIOS (version rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org)
cagregos> iPXE (http://ipxe.org) 00:03.0 CA00 PCI2.10 PnP PMM+7FF8F290+7FEEF290 CA00
cagregos> Booting from Hard Disk...
cagregos> [ 0.000000] Linux version 5.4.0-99-generic (buildd@lgw01-amd64-007) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #112-Ubuntu SMP Thu Feb 3 13:50:55 UTC 2022 (Ubuntu 5.4.0-99.112-generic 5.4.162)
cagregos> [ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-99-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
cagregos> [ 0.000000] KERNEL supported cpus:
cagregos> [ 0.000000] Intel GenuineIntel
cagregos> [ 0.000000] AMD AuthenticAMD
cagregos> [ 0.000000] Hygon HygonGenuine
cagregos> [ 0.000000] Centaur CentaurHauls
cagregos> [ 0.000000] zhaoxin Shanghai
cagregos> [ 0.000000] x86/fpu: x87 FPU will use FXSAVE
cagregos> [ 0.000000] BIOS-provided physical RAM map:
cagregos> [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
cagregos> [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
cagregos> [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
cagregos> [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffdefff] usable
cagregos> [ 0.000000] BIOS-e820: [mem 0x000000007ffdf000-0x000000007fffffff] reserved
cagregos> [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
cagregos> [ 0.000000] NX (Execute Disable) protection: active
cagregos> [ 0.000000] SMBIOS 2.8 present.
cagregos> [ 0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.14.0-0-g155821a1990b-prebuilt.qemu.org 04/01/2014
cagregos> [ 0.000000] tsc: Fast TSC calibration using PIT
cagregos> [ 0.000000] tsc: Detected 2304.003 MHz processor
cagregos> [ 0.024113] AGP: No AGP bridge found
cagregos> [ 0.024463] last_pfn = 0x7ffdf max_arch_pfn = 0x400000000
cagregos> [ 0.026430] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
cagregos> [ 0.043815] found SMP MP-table at [mem 0x000f5a20-0x000f5a2f]
cagregos> [ 0.086540] check: Scanning 1 areas for low memory corruption
cagregos> [ 0.092380] RAMDISK: [mem 0x34bbd000-0x365d5fff]
cagregos> [ 0.093041] ACPI: Early table checksum verification disabled
cagregos> [ 0.093820] ACPI: RSDP 0x00000000000F59E0 000014 (v00 BOCHS )
cagregos> [ 0.094239] ACPI: RSDT 0x000000007FFE1815 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)
cagregos> [ 0.095436] ACPI: FACP 0x000000007FFE1691 000074 (v01 BOCHS BXPC 00000001 BXPC 00000001)
cagregos> [ 0.096432] ACPI: DSDT 0x000000007FFDFCC0 0019D1 (v01 BOCHS BXPC 00000001 BXPC 00000001)
cagregos> [ 0.096559] ACPI: FACS 0x000000007FFDFC80 000040
cagregos> [ 0.096648] ACPI: APIC 0x000000007FFE1705 0000B0 (v01 BOCHS BXPC 00000001 BXPC 00000001)
cagregos> [ 0.096695] ACPI: HPET 0x000000007FFE17B5 000038 (v01 BOCHS BXPC 00000001 BXPC 00000001)
cagregos> [ 0.096737] ACPI: WAET 0x000000007FFE17ED 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)
cagregos> [ 0.096878] ACPI: Reserving FACP table memory at [mem 0x7ffe1691-0x7ffe1704]
cagregos> [ 0.096922] ACPI: Reserving DSDT table memory at [mem 0x7ffdfcc0-0x7ffe1690]
cagregos> [ 0.096938] ACPI: Reserving FACS table memory at [mem 0x7ffdfc80-0x7ffdfcbf]
cagregos> [ 0.096951] ACPI: Reserving APIC table memory at [mem 0x7ffe1705-0x7ffe17b4]
cagregos> [ 0.096964] ACPI: Reserving HPET table memory at [mem 0x7ffe17b5-0x7ffe17ec]
cagregos> [ 0.096976] ACPI: Reserving WAET table memory at [mem 0x7ffe17ed-0x7ffe1814]
cagregos> [ 0.100798] No NUMA configuration found
cagregos> [ 0.100843] Faking a node at [mem 0x0000000000000000-0x000000007ffdefff]
cagregos> [ 0.101866] NODE_DATA(0) allocated [mem 0x7ffb4000-0x7ffdefff]
cagregos> [ 0.113382] Zone ranges:
cagregos> [ 0.113474] DMA [mem 0x0000000000001000-0x0000000000ffffff]
cagregos> [ 0.113539] DMA32 [mem 0x0000000001000000-0x000000007ffdefff]
cagregos> [ 0.113557] Normal empty
cagregos> [ 0.113582] Device empty
cagregos> [ 0.113601] Movable zone start for each node
cagregos> [ 0.113656] Early memory node ranges
cagregos> [ 0.113702] node 0: [mem 0x0000000000001000-0x000000000009efff]
cagregos> [ 0.113889] node 0: [mem 0x0000000000100000-0x000000007ffdefff]
cagregos> [ 0.114403] Zeroed struct page in unavailable ranges: 131 pages
cagregos> [ 0.114660] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffdefff]
cagregos> [ 0.261558] ACPI: PM-Timer IO Port: 0x608
cagregos> [ 0.262318] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
cagregos> [ 0.262883] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
cagregos> [ 0.263057] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
cagregos> [ 0.263420] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
cagregos> [ 0.263469] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
cagregos> [ 0.263609] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
cagregos> [ 0.263629] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
cagregos> [ 0.263921] Using ACPI (MADT) for SMP configuration information
cagregos> [ 0.264001] ACPI: HPET id: 0x8086a201 base: 0xfed00000
cagregos> [ 0.264547] smpboot: Allowing 8 CPUs, 0 hotplug CPUs
cagregos> [ 0.265781] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
cagregos> [ 0.265868] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
cagregos> [ 0.265905] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
cagregos> [ 0.265919] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
cagregos> [ 0.266077] [mem 0x80000000-0xfffbffff] available for PCI devices
cagregos> [ 0.266141] Booting paravirtualized kernel on bare hardware
cagregos> [ 0.266743] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
cagregos> [ 0.267252] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
cagregos> [ 0.294064] percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u262144
cagregos> [ 0.298151] Built 1 zonelists, mobility grouping on. Total pages: 515944
cagregos> [ 0.298208] Policy zone: DMA32
cagregos> [ 0.298527] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-99-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
cagregos> [ 0.314151] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes, linear)
cagregos> [ 0.375897] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
cagregos> [ 0.384147] mem auto-init: stack:off, heap alloc:on, heap free:off
cagregos> [ 0.384893] AGP: Checking aperture...
cagregos> [ 0.387647] AGP: No AGP bridge found
cagregos> [ 0.418383] Memory: 1994920K/2096628K available (14339K kernel code, 2400K rwdata, 9500K rodata, 2752K init, 4948K bss, 101708K reserved, 0K cma-reserved)
cagregos> [ 0.420002] random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0
cagregos> [ 0.432729] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
cagregos> [ 0.434796] ftrace: allocating 44643 entries in 175 pages
cagregos> [ 0.564783] rcu: Hierarchical RCU implementation.
cagregos> [ 0.564946] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
cagregos> [ 0.565068] Tasks RCU enabled.
cagregos> [ 0.565211] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
cagregos> [ 0.565259] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
cagregos> [ 0.590879] NR_IRQS: 524544, nr_irqs: 488, preallocated irqs: 16
cagregos> [ 0.605184] Console: colour VGA+ 80x25
cagregos> [ 0.610139] printk: console [tty1] enabled
cagregos> [ 0.633403] printk: console [ttyS0] enabled
cagregos> [ 0.634966] ACPI: Core revision 20190816
cagregos> [ 0.642767] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
cagregos> [ 0.646059] APIC: Switch to symmetric I/O mode setup
cagregos> [ 0.657122] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
cagregos> [ 0.677213] tsc: Marking TSC unstable due to TSCs unsynchronized
cagregos> [ 0.678089] Calibrating delay loop (skipped), value calculated using timer frequency.. 4608.00 BogoMIPS (lpj=9216012)
cagregos> [ 0.678649] pid_max: default: 32768 minimum: 301
cagregos> [ 0.680170] LSM: Security Framework initializing
cagregos> [ 0.682784] Yama: becoming mindful.
cagregos> [ 0.686260] AppArmor: AppArmor initialized
cagregos> [ 0.688964] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
cagregos> [ 0.689397] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes, linear)
cagregos> [ 0.691858] *** VALIDATE tmpfs ***
cagregos> [ 0.704650] *** VALIDATE proc ***
cagregos> [ 0.711010] *** VALIDATE cgroup1 ***
cagregos> [ 0.711246] *** VALIDATE cgroup2 ***
cagregos> [ 0.717904] process: using AMD E400 aware idle routine
cagregos> [ 0.718344] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127
cagregos> [ 0.718538] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0
cagregos> [ 0.719063] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
cagregos> [ 0.719486] Spectre V2 : Mitigation: Full AMD retpoline
cagregos> [ 0.719689] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
cagregos> [ 0.726502] Freeing SMP alternatives memory: 40K
cagregos> [ 0.880389] smpboot: CPU0: AMD QEMU Virtual CPU version 2.5+ (family: 0xf, model: 0x6b, stepping: 0x1)
cagregos> [ 0.884923] Performance Events: PMU not available due to virtualization, using software events only.
cagregos> [ 0.887270] rcu: Hierarchical SRCU implementation.
cagregos> [ 0.895228] NMI watchdog: Perf NMI watchdog permanently disabled
cagregos> [ 0.902360] smp: Bringing up secondary CPUs ...
cagregos> [ 0.906160] x86: Booting SMP configuration:
cagregos> [ 0.906431] .... node #0, CPUs: #1
cagregos> [ 0.057085] calibrate_delay_direct() dropping min bogoMips estimate 4 = 6690978
cagregos> [ 0.997997] #2 #3 #4 #5 #6 #7
cagregos> [ 1.480526] smp: Brought up 1 node, 8 CPUs
cagregos> [ 1.482005] smpboot: Max logical packages: 8
cagregos> [ 1.482325] smpboot: Total of 8 processors activated (36881.07 BogoMIPS)
cagregos> [ 1.502519] devtmpfs: initialized
cagregos> [ 1.508337] x86/mm: Memory block size: 128MB
cagregos> [ 1.517907] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
cagregos> [ 1.518537] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
cagregos> [ 1.522759] pinctrl core: initialized pinctrl subsystem
cagregos> [ 1.533225] PM: RTC time: 10:18:43, date: 2022-02-22
cagregos> [ 1.542013] NET: Registered protocol family 16
cagregos> [ 1.546288] audit: initializing netlink subsys (disabled)
cagregos> [ 1.547106] audit: type=2000 audit(1645525122.896:1): state=initialized audit_enabled=0 res=1
cagregos> [ 1.553080] EISA bus registered
cagregos> [ 1.553698] cpuidle: using governor ladder
cagregos> [ 1.554400] cpuidle: using governor menu
cagregos> [ 1.556331] ACPI: bus type PCI registered
cagregos> [ 1.556729] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
cagregos> [ 1.560255] PCI: Using configuration type 1 for base access
cagregos> [ 1.565806] mtrr: your CPUs had inconsistent fixed MTRR settings
cagregos> [ 1.566275] mtrr: your CPUs had inconsistent variable MTRR settings
cagregos> [ 1.566606] mtrr: your CPUs had inconsistent MTRRdefType settings
cagregos> [ 1.566962] mtrr: probably your BIOS does not setup all CPUs.
cagregos> [ 1.567258] mtrr: corrected configuration.
cagregos> [ 1.599227] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
cagregos> [ 1.632223] ACPI: Added _OSI(Module Device)
cagregos> [ 1.632700] ACPI: Added _OSI(Processor Device)
cagregos> [ 1.632944] ACPI: Added _OSI(3.0 _SCP Extensions)
cagregos> [ 1.633193] ACPI: Added _OSI(Processor Aggregator Device)
cagregos> [ 1.633832] ACPI: Added _OSI(Linux-Dell-Video)
cagregos> [ 1.634083] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
cagregos> [ 1.634367] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
cagregos> [ 1.673594] ACPI: 1 ACPI AML tables successfully acquired and loaded
cagregos> [ 1.699570] ACPI: Interpreter enabled
cagregos> [ 1.701030] ACPI: (supports S0 S3 S4 S5)
cagregos> [ 1.701314] ACPI: Using IOAPIC for interrupt routing
cagregos> [ 1.702249] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
cagregos> [ 1.705346] ACPI: Enabled 2 GPEs in block 00 to 0F
cagregos> [ 1.768266] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
cagregos> [ 1.769501] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI HPX-Type3]
cagregos> [ 1.770656] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
cagregos> [ 1.780245] acpiphp: Slot [3] registered
cagregos> [ 1.781001] acpiphp: Slot [4] registered
cagregos> [ 1.781570] acpiphp: Slot [5] registered
cagregos> [ 1.781842] acpiphp: Slot [6] registered
cagregos> [ 1.782181] acpiphp: Slot [7] registered
cagregos> [ 1.782650] acpiphp: Slot [8] registered
cagregos> [ 1.783095] acpiphp: Slot [9] registered
cagregos> [ 1.783462] acpiphp: Slot [10] registered
cagregos> [ 1.783820] acpiphp: Slot [11] registered
cagregos> [ 1.784161] acpiphp: Slot [12] registered
cagregos> [ 1.784617] acpiphp: Slot [13] registered
cagregos> [ 1.784981] acpiphp: Slot [14] registered
cagregos> [ 1.785661] acpiphp: Slot [15] registered
cagregos> [ 1.786031] acpiphp: Slot [16] registered
cagregos> [ 1.786366] acpiphp: Slot [17] registered
cagregos> [ 1.786724] acpiphp: Slot [18] registered
cagregos> [ 1.787053] acpiphp: Slot [19] registered
cagregos> [ 1.787382] acpiphp: Slot [20] registered
cagregos> [ 1.787720] acpiphp: Slot [21] registered
cagregos> [ 1.788067] acpiphp: Slot [22] registered
cagregos> [ 1.788401] acpiphp: Slot [23] registered
cagregos> [ 1.788958] acpiphp: Slot [24] registered
cagregos> [ 1.789288] acpiphp: Slot [25] registered
cagregos> [ 1.789667] acpiphp: Slot [26] registered
cagregos> [ 1.789995] acpiphp: Slot [27] registered
cagregos> [ 1.790338] acpiphp: Slot [28] registered
cagregos> [ 1.790663] acpiphp: Slot [29] registered
cagregos> [ 1.791070] acpiphp: Slot [30] registered
cagregos> [ 1.791474] acpiphp: Slot [31] registered
cagregos> [ 1.792141] PCI host bridge to bus 0000:00
cagregos> [ 1.792670] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
cagregos> [ 1.793054] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
cagregos> [ 1.793414] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
cagregos> [ 1.793699] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfebfffff window]
cagregos> [ 1.794104] pci_bus 0000:00: root bus resource [mem 0x100000000-0x17fffffff window]
cagregos> [ 1.794745] pci_bus 0000:00: root bus resource [bus 00-ff]
cagregos> [ 1.796561] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
cagregos> [ 1.809909] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
cagregos> [ 1.812974] pci 0000:00:01.1: [8086:7010] type 00 class 0x010180
cagregos> [ 1.820689] pci 0000:00:01.1: reg 0x20: [io 0xc040-0xc04f]
cagregos> [ 1.823898] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
cagregos> [ 1.824713] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
cagregos> [ 1.825123] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
cagregos> [ 1.825742] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
cagregos> [ 1.828324] pci 0000:00:01.3: [8086:7113] type 00 class 0x068000
cagregos> [ 1.830502] pci 0000:00:01.3: quirk: [io 0x0600-0x063f] claimed by PIIX4 ACPI
cagregos> [ 1.830976] pci 0000:00:01.3: quirk: [io 0x0700-0x070f] claimed by PIIX4 SMB
cagregos> [ 1.833304] pci 0000:00:02.0: [1234:1111] type 00 class 0x030000
cagregos> [ 1.835696] pci 0000:00:02.0: reg 0x10: [mem 0xfd000000-0xfdffffff pref]
cagregos> [ 1.839243] pci 0000:00:02.0: reg 0x18: [mem 0xfebf0000-0xfebf0fff]
cagregos> [ 1.848413] pci 0000:00:02.0: reg 0x30: [mem 0xfebe0000-0xfebeffff pref]
cagregos> [ 1.853163] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
cagregos> [ 1.855245] pci 0000:00:03.0: reg 0x10: [mem 0xfebc0000-0xfebdffff]
cagregos> [ 1.857122] pci 0000:00:03.0: reg 0x14: [io 0xc000-0xc03f]
cagregos> [ 1.870591] pci 0000:00:03.0: reg 0x30: [mem 0xfeb80000-0xfebbffff pref]
cagregos> [ 1.885327] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
cagregos> [ 1.887078] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
cagregos> [ 1.888627] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
cagregos> [ 1.890315] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
cagregos> [ 1.891149] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
cagregos> [ 1.901638] iommu: Default domain type: Translated
cagregos> [ 1.907690] SCSI subsystem initialized
cagregos> [ 1.914908] pci 0000:00:02.0: vgaarb: setting as boot VGA device
cagregos> [ 1.915236] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
cagregos> [ 1.917732] pci 0000:00:02.0: vgaarb: bridge control possible
cagregos> [ 1.918185] vgaarb: loaded
cagregos> [ 1.919680] ACPI: bus type USB registered
cagregos> [ 1.920470] usbcore: registered new interface driver usbfs
cagregos> [ 1.921819] usbcore: registered new interface driver hub
cagregos> [ 1.922310] usbcore: registered new device driver usb
cagregos> [ 1.923352] pps_core: LinuxPPS API ver. 1 registered
cagregos> [ 1.923584] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
cagregos> [ 1.924063] PTP clock support registered
cagregos> [ 1.924673] EDAC MC: Ver: 3.0.0
cagregos> [ 1.929894] PCI: Using ACPI for IRQ routing
cagregos> [ 1.944769] NetLabel: Initializing
cagregos> [ 1.945134] NetLabel: domain hash size = 128
cagregos> [ 1.945485] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
cagregos> [ 1.947520] NetLabel: unlabeled traffic allowed by default
cagregos> [ 1.950772] hpet: 3 channels of 0 reserved for per-cpu timers
cagregos> [ 1.951516] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
cagregos> [ 1.951853] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
cagregos> [ 1.957510] clocksource: Switched to clocksource hpet
cagregos> [ 2.169781] *** VALIDATE bpf ***
cagregos> [ 2.171243] VFS: Disk quotas dquot_6.6.0
cagregos> [ 2.171849] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
cagregos> [ 2.175198] *** VALIDATE ramfs ***
cagregos> [ 2.175723] *** VALIDATE hugetlbfs ***
cagregos> [ 2.181040] AppArmor: AppArmor Filesystem Enabled
cagregos> [ 2.182924] pnp: PnP ACPI init
cagregos> [ 2.196618] pnp: PnP ACPI: found 6 devices
cagregos> [ 2.239124] thermal_sys: Registered thermal governor 'fair_share'
cagregos> [ 2.239183] thermal_sys: Registered thermal governor 'bang_bang'
cagregos> [ 2.239625] thermal_sys: Registered thermal governor 'step_wise'
cagregos> [ 2.239957] thermal_sys: Registered thermal governor 'user_space'
cagregos> [ 2.240319] thermal_sys: Registered thermal governor 'power_allocator'
cagregos> [ 2.245893] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
cagregos> [ 2.247890] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
cagregos> [ 2.248136] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
cagregos> [ 2.248360] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
cagregos> [ 2.248599] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfebfffff window]
cagregos> [ 2.248831] pci_bus 0000:00: resource 8 [mem 0x100000000-0x17fffffff window]
cagregos> [ 2.250502] NET: Registered protocol family 2
cagregos> [ 2.252063] IP idents hash table entries: 32768 (order: 6, 262144 bytes, linear)
cagregos> [ 2.262728] tcp_listen_portaddr_hash hash table entries: 1024 (order: 2, 16384 bytes, linear)
cagregos> [ 2.263576] TCP established hash table entries: 16384 (order: 5, 131072 bytes, linear)
cagregos> [ 2.264825] TCP bind hash table entries: 16384 (order: 6, 262144 bytes, linear)
cagregos> [ 2.265918] TCP: Hash tables configured (established 16384 bind 16384)
cagregos> [ 2.268543] UDP hash table entries: 1024 (order: 3, 32768 bytes, linear)
cagregos> [ 2.269418] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes, linear)
cagregos> [ 2.277032] NET: Registered protocol family 1
cagregos> [ 2.277795] NET: Registered protocol family 44
cagregos> [ 2.278320] pci 0000:00:01.0: PIIX3: Enabling Passive Release
cagregos> [ 2.278722] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
cagregos> [ 2.279091] pci 0000:00:01.0: Activating ISA DMA hang workarounds
cagregos> [ 2.279710] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
cagregos> [ 2.280196] PCI: CLS 0 bytes, default 64
cagregos> [ 2.286210] Trying to unpack rootfs image as initramfs...
cagregos> [ 3.023498] Freeing initrd memory: 26724K
cagregos> [ 3.025865] check: Scanning for low memory corruption every 60 seconds
cagregos> [ 3.033209] Initialise system trusted keyrings
cagregos> [ 3.035768] Key type blacklist registered
cagregos> [ 3.037043] workingset: timestamp_bits=36 max_order=19 bucket_order=0
cagregos> [ 3.054133] zbud: loaded
cagregos> [ 3.060429] squashfs: version 4.0 (2009/01/31) Phillip Lougher
cagregos> [ 3.064210] fuse: init (API version 7.31)
cagregos> [ 3.064669] *** VALIDATE fuse ***
cagregos> [ 3.064833] *** VALIDATE fuse ***
cagregos> [ 3.067698] Platform Keyring initialized
cagregos> [ 3.084310] Key type asymmetric registered
cagregos> [ 3.084632] Asymmetric key parser 'x509' registered
cagregos> [ 3.085106] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
cagregos> [ 3.086624] io scheduler mq-deadline registered
cagregos> [ 3.091259] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
cagregos> [ 3.096904] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
cagregos> [ 3.101280] ACPI: Power Button [PWRF]
cagregos> [ 3.106163] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
cagregos> [ 3.131376] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
cagregos> [ 3.166395] Linux agpgart interface v0.103
cagregos> [ 3.342578] loop: module loaded
cagregos> [ 3.365133] scsi host0: ata_piix
cagregos> [ 3.371204] scsi host1: ata_piix
cagregos> [ 3.372443] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc040 irq 14
cagregos> [ 3.372832] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc048 irq 15
cagregos> [ 3.376686] libphy: Fixed MDIO Bus: probed
cagregos> [ 3.377220] tun: Universal TUN/TAP device driver, 1.6
cagregos> [ 3.378945] PPP generic driver version 2.4.2
cagregos> [ 3.380457] VFIO - User Level meta-driver version: 0.3
cagregos> [ 3.382403] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
cagregos> [ 3.382770] ehci-pci: EHCI PCI platform driver
cagregos> [ 3.383197] ehci-platform: EHCI generic platform driver
cagregos> [ 3.383509] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
cagregos> [ 3.383844] ohci-pci: OHCI PCI platform driver
cagregos> [ 3.384316] ohci-platform: OHCI generic platform driver
cagregos> [ 3.384683] uhci_hcd: USB Universal Host Controller Interface driver
cagregos> [ 3.386716] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
cagregos> [ 3.391084] serio: i8042 KBD port at 0x60,0x64 irq 1
cagregos> [ 3.391662] serio: i8042 AUX port at 0x60,0x64 irq 12
cagregos> [ 3.394697] mousedev: PS/2 mouse device common for all mice
cagregos> [ 3.399302] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
cagregos> [ 3.401484] rtc_cmos 00:05: RTC can wake from S4
cagregos> [ 3.405935] rtc_cmos 00:05: registered as rtc0
cagregos> [ 3.407045] rtc_cmos 00:05: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
cagregos> [ 3.407527] i2c /dev entries driver
cagregos> [ 3.408440] device-mapper: uevent: version 1.0.3
cagregos> [ 3.409981] device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
cagregos> [ 3.410776] platform eisa.0: Probing EISA bus 0
cagregos> [ 3.411183] platform eisa.0: EISA: Cannot allocate resource for mainboard
cagregos> [ 3.411552] platform eisa.0: Cannot allocate resource for EISA slot 1
cagregos> [ 3.411848] platform eisa.0: Cannot allocate resource for EISA slot 2
cagregos> [ 3.412109] platform eisa.0: Cannot allocate resource for EISA slot 3
cagregos> [ 3.412361] platform eisa.0: Cannot allocate resource for EISA slot 4
cagregos> [ 3.412601] platform eisa.0: Cannot allocate resource for EISA slot 5
cagregos> [ 3.412851] platform eisa.0: Cannot allocate resource for EISA slot 6
cagregos> [ 3.413118] platform eisa.0: Cannot allocate resource for EISA slot 7
cagregos> [ 3.413360] platform eisa.0: Cannot allocate resource for EISA slot 8
cagregos> [ 3.413629] platform eisa.0: EISA: Detected 0 cards
cagregos> [ 3.415460] ledtrig-cpu: registered to indicate activity on CPUs
cagregos> [ 3.416660] drop_monitor: Initializing network drop monitor service
cagregos> [ 3.419078] NET: Registered protocol family 10
cagregos> [ 3.548130] ata1.00: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
cagregos> [ 3.548715] ata1.00: 25583616 sectors, multi 16: LBA48
cagregos> [ 3.549703] ata1.01: ATA-7: QEMU HARDDISK, 2.5+, max UDMA/100
cagregos> [ 3.551750] ata1.01: 1147992 sectors, multi 16: LBA48
cagregos> [ 3.554085] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
cagregos> [ 3.586762] scsi 0:0:0:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5
cagregos> [ 3.594209] sd 0:0:0:0: Attached scsi generic sg0 type 0
cagregos> [ 3.598627] sd 0:0:0:0: [sda] 25583616 512-byte logical blocks: (13.1 GB/12.2 GiB)
cagregos> [ 3.599211] scsi 0:0:1:0: Direct-Access ATA QEMU HARDDISK 2.5+ PQ: 0 ANSI: 5
cagregos> [ 3.600568] sd 0:0:0:0: [sda] Write Protect is off
cagregos> [ 3.602613] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
cagregos> [ 3.603007] scsi 0:0:1:0: Attached scsi generic sg1 type 0
cagregos> [ 3.606452] sd 0:0:1:0: [sdb] 1147992 512-byte logical blocks: (588 MB/561 MiB)
cagregos> [ 3.607334] sd 0:0:1:0: [sdb] Write Protect is off
cagregos> [ 3.608243] sd 0:0:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
cagregos> [ 3.610684] scsi 1:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5
cagregos> [ 3.638608] GPT:Primary header thinks Alt. header is not at the end of the disk.
cagregos> [ 3.639010] GPT:4612095 != 25583615
cagregos> [ 3.639217] GPT:Alternate GPT header not at the end of the disk.
cagregos> [ 3.639532] GPT:4612095 != 25583615
cagregos> [ 3.639714] GPT: Use GNU Parted to correct GPT errors.
cagregos> [ 3.640670] sda: sda1 sda14 sda15
cagregos> [ 3.652987] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
cagregos> [ 3.653518] cdrom: Uniform CD-ROM driver Revision: 3.20
cagregos> [ 3.668043] sd 0:0:1:0: [sdb] Attached SCSI disk
cagregos> [ 3.677611] sd 0:0:0:0: [sda] Attached SCSI disk
cagregos> [ 3.679447] sr 1:0:0:0: Attached scsi generic sg2 type 5
cagregos> [ 3.756950] Segment Routing with IPv6
cagregos> [ 3.757809] NET: Registered protocol family 17
cagregos> [ 3.758684] Key type dns_resolver registered
cagregos> [ 3.763812] RAS: Correctable Errors collector initialized.
cagregos> [ 3.764510] IPI shorthand broadcast: enabled
cagregos> [ 3.765807] registered taskstats version 1
cagregos> [ 3.766256] Loading compiled-in X.509 certificates
cagregos> [ 3.780883] Loaded X.509 cert 'Build time autogenerated kernel key: 3e9c0893400760cb433d1bad37690f1fbf53b04b'
cagregos> [ 3.784007] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
cagregos> [ 3.786741] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
cagregos> [ 3.787123] blacklist: Loading compiled-in revocation X.509 certificates
cagregos> [ 3.789821] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
cagregos> [ 3.791673] zswap: loaded using pool lzo/zbud
cagregos> [ 3.794048] Key type ._fscrypt registered
cagregos> [ 3.794255] Key type .fscrypt registered
cagregos> [ 4.000894] Key type big_key registered
cagregos> [ 4.104335] Key type encrypted registered
cagregos> [ 4.104624] AppArmor: AppArmor sha1 policy hashing enabled
cagregos> [ 4.105254] ima: No TPM chip found, activating TPM-bypass!
cagregos> [ 4.105551] ima: Allocated hash algorithm: sha1
cagregos> [ 4.107833] ima: No architecture policies found
cagregos> [ 4.108366] evm: Initialising EVM extended attributes:
cagregos> [ 4.108557] evm: security.selinux
cagregos> [ 4.108698] evm: security.SMACK64
cagregos> [ 4.108821] evm: security.SMACK64EXEC
cagregos> [ 4.108976] evm: security.SMACK64TRANSMUTE
cagregos> [ 4.109118] evm: security.SMACK64MMAP
cagregos> [ 4.109248] evm: security.apparmor
cagregos> [ 4.109369] evm: security.ima
cagregos> [ 4.109496] evm: security.capability
cagregos> [ 4.109850] evm: HMAC attrs: 0x1
cagregos> [ 4.117554] PM: Magic number: 10:957:325
cagregos> [ 4.119155] rtc_cmos 00:05: setting system clock to 2022-02-22T10:18:45 UTC (1645525125)
cagregos> [ 4.123449] powernow_k8: Power state transitions not supported
cagregos> [ 4.123937] powernow_k8: Power state transitions not supported
cagregos> [ 4.124444] powernow_k8: Power state transitions not supported
cagregos> [ 4.124693] powernow_k8: Power state transitions not supported
cagregos> [ 4.125197] powernow_k8: Power state transitions not supported
cagregos> [ 4.125591] powernow_k8: Power state transitions not supported
cagregos> [ 4.126163] powernow_k8: Power state transitions not supported
cagregos> [ 4.126695] powernow_k8: Power state transitions not supported
cagregos> [ 4.128138] Unstable clock detected, switching default tracing clock to "global"
cagregos> [ 4.128138] If you want to keep using the local clock, then add:
cagregos> [ 4.128138] "trace_clock=local"
cagregos> [ 4.128138] on the kernel command line
cagregos> [ 4.149501] Freeing unused decrypted memory: 2040K
cagregos> [ 4.232883] Freeing unused kernel image memory: 2752K
cagregos> [ 4.237970] Write protecting the kernel read-only data: 26624k
cagregos> [ 4.244918] Freeing unused kernel image memory: 2008K
cagregos> [ 4.247520] Freeing unused kernel image memory: 740K
cagregos> [ 4.358077] x86/mm: Checked W+X mappings: passed, no W+X pages found.
cagregos> [ 4.358690] Run /init as init process
cagregos> Loading, please wait...
cagregos> Starting version 245.4-4ubuntu3.15
cagregos> [ 5.828810] Floppy drive(s): fd0 is 2.88M AMI BIOS
cagregos> [ 5.871332] FDC 0 is a S82078B
cagregos> [ 5.888785] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
cagregos> [ 5.889314] e1000: Copyright (c) 1999-2006 Intel Corporation.
cagregos> [ 6.577769] random: fast init done
cagregos> [ 6.591962] PCI Interrupt Link [LNKC] enabled at IRQ 11
cagregos> [ 6.773228] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input3
cagregos> [ 6.774020] random: systemd-udevd: uninitialized urandom read (16 bytes read)
cagregos> [ 6.774801] random: systemd-udevd: uninitialized urandom read (16 bytes read)
cagregos> [ 6.775394] random: systemd-udevd: uninitialized urandom read (16 bytes read)
cagregos> [ 6.915573] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
cagregos> [ 6.916178] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
cagregos> [ 6.935807] e1000 0000:00:03.0 ens3: renamed from eth0
cagregos> Begin: Loading essential drivers ... [ 10.001852] raid6: sse2x4 gen() 585 MB/s
cagregos> [ 10.049800] raid6: sse2x4 xor() 349 MB/s
cagregos> [ 10.097964] raid6: sse2x2 gen() 584 MB/s
cagregos> [ 10.145838] raid6: sse2x2 xor() 326 MB/s
cagregos> [ 10.193895] raid6: sse2x1 gen() 511 MB/s
cagregos> [ 10.241802] raid6: sse2x1 xor() 294 MB/s
cagregos> [ 10.242045] raid6: using algorithm sse2x4 gen() 585 MB/s
cagregos> [ 10.242262] raid6: .... xor() 349 MB/s, rmw enabled
cagregos> [ 10.242607] raid6: using intx1 recovery algorithm
cagregos> [ 10.249872] xor: measuring software checksum speed
cagregos> [ 10.289792] prefetch64-sse: 1041.000 MB/sec
cagregos> [ 10.329839] generic_sse: 1035.000 MB/sec
cagregos> [ 10.330124] xor: using function: prefetch64-sse (1041.000 MB/sec)
cagregos> [ 10.336782] async_tx: api initialized (async)
cagregos> done.
cagregos> Begin: Running /scripts/init-premount ... done.
cagregos> Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
cagregos> Begin: Running /scripts/local-premount ... [ 11.385228] Btrfs loaded, crc32c=crc32c-generic
cagregos> Scanning for Btrfs filesystems
cagregos> [ 11.734345] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 11.734766] floppy: error 10 while reading block 0
cagregos> done.
cagregos> Warning: fsck not present, so skipping root file system
cagregos> [ 12.267658] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
cagregos> done.
cagregos> Begin: Running /scripts/local-bottom ... done.
cagregos> Begin: Running /scripts/init-bottom ... done.
cagregos> [ 14.256905] systemd[1]: Inserted module 'autofs4'
cagregos> [ 14.344258] systemd[1]: systemd 245.4-4ubuntu3.15 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
cagregos> [ 14.346069] systemd[1]: Detected virtualization qemu.
cagregos> [ 14.346514] systemd[1]: Detected architecture x86-64.
cagregos> Welcome to Ubuntu 20.04.3 LTS!
cagregos> [ 14.449058] systemd[1]: Set hostname to <ubuntu>.
cagregos> [ 14.505248] systemd[1]: Initializing machine ID from random generator.
cagregos> [ 14.506916] systemd[1]: Installed transient /etc/machine-id file.
cagregos> [ 15.032432] random: crng init done
cagregos> [ 15.033002] random: 7 urandom warning(s) missed due to ratelimiting
cagregos> [ 16.717979] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 16.718359] floppy: error 10 while reading block 0
cagregos> [ 18.283718] systemd[1]: Created slice system-modprobe.slice.
cagregos> [ OK ] Created slice system-modprobe.slice.
cagregos> [ 18.291524] systemd[1]: Created slice system-serial\x2dgetty.slice.
cagregos> [ OK ] Created slice system-serial\x2dgetty.slice.
cagregos> [ 18.295940] systemd[1]: Created slice system-systemd\x2dfsck.slice.
cagregos> [ OK ] Created slice system-systemd\x2dfsck.slice.
cagregos> [ 18.301453] systemd[1]: Created slice User and Session Slice.
cagregos> [ OK ] Created slice User and Session Slice.
cagregos> [ 18.305559] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
cagregos> [ OK ] Started Forward Password R…uests to Wall Directory Watch.
cagregos> [ 18.320440] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
cagregos> [ OK ] Set up automount Arbitrary…s File System Automount Point.
cagregos> [ 18.324881] systemd[1]: Reached target User and Group Name Lookups.
cagregos> [ OK ] Reached target User and Group Name Lookups.
cagregos> [ 18.327208] systemd[1]: Reached target Slices.
cagregos> [ OK ] Reached target Slices.
cagregos> [ 18.328668] systemd[1]: Reached target Swap.
cagregos> [ OK ] Reached target Swap.
cagregos> [ 18.334308] systemd[1]: Listening on Device-mapper event daemon FIFOs.
cagregos> [ OK ] Listening on Device-mapper event daemon FIFOs.
cagregos> [ 18.338594] systemd[1]: Listening on LVM2 poll daemon socket.
cagregos> [ OK ] Listening on LVM2 poll daemon socket.
cagregos> [ 18.341114] systemd[1]: Listening on multipathd control socket.
cagregos> [ OK ] Listening on multipathd control socket.
cagregos> [ 18.344236] systemd[1]: Listening on Syslog Socket.
cagregos> [ OK ] Listening on Syslog Socket.
cagregos> [ 18.346907] systemd[1]: Listening on fsck to fsckd communication Socket.
cagregos> [ OK ] Listening on fsck to fsckd communication Socket.
cagregos> [ 18.350031] systemd[1]: Listening on initctl Compatibility Named Pipe.
cagregos> [ OK ] Listening on initctl Compatibility Named Pipe.
cagregos> [ 18.359015] systemd[1]: Listening on Journal Audit Socket.
cagregos> [ OK ] Listening on Journal Audit Socket.
cagregos> [ 18.362062] systemd[1]: Listening on Journal Socket (/dev/log).
cagregos> [ OK ] Listening on Journal Socket (/dev/log).
cagregos> [ 18.365295] systemd[1]: Listening on Journal Socket.
cagregos> [ OK ] Listening on Journal Socket.
cagregos> [ 18.369013] systemd[1]: Listening on Network Service Netlink Socket.
cagregos> [ OK ] Listening on Network Service Netlink Socket.
cagregos> [ 18.371658] systemd[1]: Listening on udev Control Socket.
cagregos> [ OK ] Listening on udev Control Socket.
cagregos> [ 18.374266] systemd[1]: Listening on udev Kernel Socket.
cagregos> [ OK ] Listening on udev Kernel Socket.
cagregos> [ 18.392871] systemd[1]: Mounting Huge Pages File System...
cagregos> Mounting Huge Pages File System...
cagregos> [ 18.408762] systemd[1]: Mounting POSIX Message Queue File System...
cagregos> Mounting POSIX Message Queue File System...
cagregos> [ 18.437359] systemd[1]: Mounting Kernel Debug File System...
cagregos> Mounting Kernel Debug File System...
cagregos> [ 18.454729] systemd[1]: Mounting Kernel Trace File System...
cagregos> Mounting Kernel Trace File System...
cagregos> [ 18.528874] systemd[1]: Starting Journal Service...
cagregos> Starting Journal Service...
cagregos> [ 18.598333] systemd[1]: Starting Set the console keyboard layout...
cagregos> Starting Set the console keyboard layout...
cagregos> [ 18.620059] systemd[1]: Starting Create list of static device nodes for the current kernel...
cagregos> Starting Create list of st…odes for the current kernel...
cagregos> [ 18.654855] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
cagregos> Starting Monitoring of LVM…meventd or progress polling...
cagregos> [ 18.675331] systemd[1]: Starting Load Kernel Module drm...
cagregos> Starting Load Kernel Module drm...
cagregos> [ 18.679944] systemd[1]: Condition check resulted in OpenVSwitch configuration for cleanup being skipped.
cagregos> [ 18.685472] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
cagregos> [ 18.741905] systemd[1]: Starting File System Check on Root Device...
cagregos> Starting File System Check on Root Device...
cagregos> [ 18.766375] systemd[1]: Starting Load Kernel Modules...
cagregos> Starting Load Kernel Modules...
cagregos> [ 18.803366] systemd[1]: Starting udev Coldplug all Devices...
cagregos> Starting udev Coldplug all Devices...
cagregos> [ 18.858641] systemd[1]: Starting Uncomplicated firewall...
cagregos> Starting Uncomplicated firewall...
cagregos> [ 18.909757] systemd[1]: Mounted Huge Pages File System.
cagregos> [ OK ] Mounted Huge Pages File System.
cagregos> [ 18.916320] systemd[1]: Mounted POSIX Message Queue File System.
cagregos> [ OK ] Mounted POSIX Message Queue File System.
cagregos> [ 18.923051] systemd[1]: Mounted Kernel Debug File System.
cagregos> [ OK ] Mounted Kernel Debug File System.
cagregos> [ 18.926254] systemd[1]: Mounted Kernel Trace File System.
cagregos> [ OK ] Mounted Kernel Trace File System.
cagregos> [ 18.938562] systemd[1]: Finished Create list of static device nodes for the current kernel.
cagregos> [ OK ] Finished Create list of st… nodes for the current kernel.
cagregos> [ 18.955172] systemd[1]: Finished Uncomplicated firewall.
cagregos> [ OK ] Finished Uncomplicated firewall.
cagregos> [ 18.979670] systemd[1]: Started File System Check Daemon to report status.
cagregos> [ OK ] Started File System Check Daemon to report status.
cagregos> [ 19.148036] systemd[1]: Finished Load Kernel Modules.
cagregos> [ OK ] Finished Load Kernel Modules.
cagregos> [ 19.169516] systemd[1]: Mounting FUSE Control File System...
cagregos> Mounting FUSE Control File System...
cagregos> [ 19.191592] systemd[1]: Mounting Kernel Configuration File System...
cagregos> Mounting Kernel Configuration File System...
cagregos> [ 19.214170] systemd[1]: Starting Apply Kernel Variables...
cagregos> Starting Apply Kernel Variables...
cagregos> [ 19.309303] systemd[1]: Mounted FUSE Control File System.
cagregos> [ OK ] Mounted FUSE Control File System.
cagregos> [ 19.353882] systemd[1]: Mounted Kernel Configuration File System.
cagregos> [ OK ] Mounted Kernel Configuration File System.
cagregos> [ OK ] Finished Apply Kernel Variables.
cagregos> [ OK ] Started Journal Service.
cagregos> [ OK ] Finished Load Kernel Module drm.
cagregos> [ OK ] Finished File System Check on Root Device.
cagregos> Starting Remount Root and Kernel File Systems...
cagregos> [ OK ] Finished Set the console keyboard layout.
cagregos> [ OK ] Finished Remount Root and Kernel File Systems.
cagregos> Starting Flush Journal to Persistent Storage...
cagregos> Starting Load/Save Random Seed...
cagregos> Starting Create System Users...
cagregos> [ OK ] Finished Load/Save Random Seed.
cagregos> [ OK ] Finished Flush Journal to Persistent Storage.
cagregos> [ OK ] Finished Create System Users.
cagregos> Starting Create Static Device Nodes in /dev...
cagregos> [ OK ] Finished Monitoring of LVM… dmeventd or progress polling.
cagregos> [ OK ] Finished Create Static Device Nodes in /dev.
cagregos> Starting udev Kernel Device Manager...
cagregos> [ OK ] Finished udev Coldplug all Devices.
cagregos> Starting udev Wait for Complete Device Initialization...
cagregos> [ OK ] Started udev Kernel Device Manager.
cagregos> [ OK ] Started Dispatch Password …ts to Console Directory Watch.
cagregos> [ OK ] Reached target Local Encrypted Volumes.
cagregos> [ OK ] Found device /dev/ttyS0.
cagregos> [ OK ] Listening on Load/Save RF …itch Status /dev/rfkill Watch.
cagregos> [ OK ] Finished udev Wait for Complete Device Initialization.
cagregos> [ OK ] Found device QEMU_HARDDISK UEFI.
cagregos> Starting Device-Mapper Multipath Device Controller...
cagregos> [ OK ] Started Device-Mapper Multipath Device Controller.
cagregos> [ OK ] Reached target Local File Systems (Pre).
cagregos> Mounting Mount unit for core20, revision 1328...
cagregos> Mounting Mount unit for lxd, revision 21835...
cagregos> Mounting Mount unit for snapd, revision 14549...
cagregos> Starting File System Check on /dev/disk/by-label/UEFI...
cagregos> [ OK ] Mounted Mount unit for core20, revision 1328.
cagregos> [ OK ] Mounted Mount unit for lxd, revision 21835.
cagregos> [ OK ] Mounted Mount unit for snapd, revision 14549.
cagregos> [ OK ] Finished File System Check on /dev/disk/by-label/UEFI.
cagregos> Mounting /boot/efi...
cagregos> [ OK ] Mounted /boot/efi.
cagregos> [ OK ] Reached target Local File Systems.
cagregos> Starting Load AppArmor profiles...
cagregos> Starting Set console font and keymap...
cagregos> Starting Create final runt…dir for shutdown pivot root...
cagregos> Starting Tell Plymouth To Write Out Runtime Data...
cagregos> Starting Commit a transient machine-id on disk...
cagregos> Starting Create Volatile Files and Directories...
cagregos> [ OK ] Finished Create final runt…e dir for shutdown pivot root.
cagregos> [ OK ] Finished Tell Plymouth To Write Out Runtime Data.
cagregos> [ OK ] Finished Set console font and keymap.
cagregos> [ OK ] Finished Create Volatile Files and Directories.
cagregos> Starting Network Time Synchronization...
cagregos> Starting Update UTMP about System Boot/Shutdown...
cagregos> [ OK ] Finished Update UTMP about System Boot/Shutdown.
cagregos> [ OK ] Finished Commit a transient machine-id on disk.
cagregos> [ OK ] Started Network Time Synchronization.
cagregos> [ OK ] Reached target System Time Set.
cagregos> [ OK ] Reached target System Time Synchronized.
cagregos> [ OK ] Finished Load AppArmor profiles.
cagregos> Starting Load AppArmor pro…managed internally by snapd...
cagregos> Starting Initial cloud-init job (pre-networking)...
cagregos> [ OK ] Finished Load AppArmor pro…s managed internally by snapd.
cagregos> [ 43.534593] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 43.762316] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 43.966601] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 44.169958] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 44.386022] blk_update_request: I/O error, dev fd0, sector 0 op 0x0:(READ) flags 0x0 phys_seg 1 prio class 0
cagregos> [ 68.843172] cloud-init[644]: Cloud-init v. 21.4-0ubuntu1~20.04.1 running 'init-local' at Tue, 22 Feb 2022 10:19:24 +0000. Up 42.81 seconds.
cagregos> [ OK ] Finished Initial cloud-init job (pre-networking).
cagregos> [ OK ] Reached target Network (Pre).
cagregos> Starting Network Service...
cagregos> [ OK ] Started Network Service.
cagregos> Starting Wait for Network to be Configured...
cagregos> Starting Network Name Resolution...
cagregos> [ OK ] Started Network Name Resolution.
cagregos> [ OK ] Reached target Network.
cagregos> [ OK ] Reached target Host and Network Name Lookups.
cagregos> [ OK ] Finished Wait for Network to be Configured.
cagregos> Starting Initial cloud-ini… (metadata service crawler)...
cagregos> [ 96.764912] cloud-init[705]: Cloud-init v. 21.4-0ubuntu1~20.04.1 running 'init' at Tue, 22 Feb 2022 10:19:58 +0000. Up 76.87 seconds.
cagregos> [ 96.773949] cloud-init[705]: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info++++++++++++++++++++++++++++++++++++++
cagregos> [ 96.776112] cloud-init[705]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
cagregos> [ 96.778316] cloud-init[705]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
cagregos> [ 96.780070] cloud-init[705]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
cagregos> [ 96.782093] cloud-init[705]: ci-info: | ens3 | True | 10.0.2.15 | 255.255.255.0 | global | 52:54:00:12:34:56 |
cagregos> [ 96.784080] cloud-init[705]: ci-info: | ens3 | True | fec0::5054:ff:fe12:3456/64 | . | site | 52:54:00:12:34:56 |
cagregos> [ 96.786083] cloud-init[705]: ci-info: | ens3 | True | fe80::5054:ff:fe12:3456/64 | . | link | 52:54:00:12:34:56 |
cagregos> [ 96.788008] cloud-init[705]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
cagregos> [ 96.790099] cloud-init[705]: ci-info: | lo | True | ::1/128 | . | host | . |
cagregos> [ 96.792005] cloud-init[705]: ci-info: +--------+------+----------------------------+---------------+--------+-------------------+
cagregos> [ 96.793832] cloud-init[705]: ci-info: ++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++
cagregos> [ 96.795612] cloud-init[705]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
cagregos> [ 96.797457] cloud-init[705]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
cagregos> [ 96.800448] cloud-init[705]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
cagregos> [ 96.802185] cloud-init[705]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | ens3 | UG |
cagregos> [ 96.804008] cloud-init[705]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | ens3 | U |
cagregos> [ 96.805898] cloud-init[705]: ci-info: | 2 | 10.0.2.2 | 0.0.0.0 | 255.255.255.255 | ens3 | UH |
cagregos> [ 96.807636] cloud-init[705]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
cagregos> [ 96.809408] cloud-init[705]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
cagregos> [ 96.810823] cloud-init[705]: ci-info: +-------+-------------+---------+-----------+-------+
cagregos> [ 96.812360] cloud-init[705]: ci-info: | Route | Destination | Gateway | Interface | Flags |
cagregos> [ 96.814218] cloud-init[705]: ci-info: +-------+-------------+---------+-----------+-------+
cagregos> [ 96.816275] cloud-init[705]: ci-info: | 1 | fe80::/64 | :: | ens3 | U |
cagregos> [ 96.818250] cloud-init[705]: ci-info: | 2 | fec0::/64 | :: | ens3 | Ue |
cagregos> [ 96.819926] cloud-init[705]: ci-info: | 3 | ::/0 | fe80::2 | ens3 | UGe |
cagregos> [ 96.821882] cloud-init[705]: ci-info: | 5 | local | :: | ens3 | U |
cagregos> [ 96.823630] cloud-init[705]: ci-info: | 6 | local | :: | ens3 | U |
cagregos> [ 96.825304] cloud-init[705]: ci-info: | 7 | multicast | :: | ens3 | U |
cagregos> [ 96.826869] cloud-init[705]: ci-info: +-------+-------------+---------+-----------+-------+
cagregos> [ 96.828127] cloud-init[705]: 2022-02-22 10:20:18,193 - util.py[WARNING]: failed stage init
cagregos> [ 96.829593] cloud-init[705]: failed run of stage init
cagregos> [ 96.830974] cloud-init[705]: ------------------------------------------------------------
cagregos> [ 96.832297] cloud-init[705]: Traceback (most recent call last):
cagregos> [ 96.833717] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 689, in status_wrapper
cagregos> [ 96.834987] cloud-init[705]: ret = functor(name, args)
cagregos> [ 96.836212] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 413, in main_init
cagregos> [ 96.837850] cloud-init[705]: init.update()
cagregos> [ 96.839090] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/stages.py", line 424, in update
cagregos> [ 96.840819] cloud-init[705]: self._store_rawdata(self.datasource.get_userdata_raw(),
cagregos> [ 96.842388] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/stages.py", line 459, in _store_rawdata
cagregos> [ 96.844011] cloud-init[705]: util.write_file(self._get_ipath('%s_raw' % datasource), data, 0o600)
cagregos> [ 96.845687] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/util.py", line 1990, in write_file
cagregos> [ 96.847289] cloud-init[705]: fh.write(content)
cagregos> [ 96.848304] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [ 96.849487] cloud-init[705]: ------------------------------------------------------------
cagregos> [ 97.406758] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [ 97.408150] cloud-init[705]: During handling of the above exception, another exception occurred:
cagregos> [ 97.409785] cloud-init[705]: Traceback (most recent call last):
cagregos> [ 97.411239] cloud-init[705]: File "/usr/bin/cloud-init", line 11, in <module>
cagregos> [ 97.412963] cloud-init[705]: load_entry_point('cloud-init==21.4', 'console_scripts', 'cloud-init')()
cagregos> [ 97.414793] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 927, in main
cagregos> [ 97.416460] cloud-init[705]: retval = util.log_time(
cagregos> [ 97.418018] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/util.py", line 2472, in log_time
cagregos> [ 97.419652] cloud-init[705]: ret = func(*args, **kwargs)
cagregos> [ 97.421104] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 707, in status_wrapper
cagregos> [ 97.422788] cloud-init[705]: atomic_helper.write_json(status_path, status)
cagregos> [ 97.424184] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/atomic_helper.py", line 44, in write_json
cagregos> [ 97.426114] cloud-init[705]: return write_file(
cagregos> [ 97.427393] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/atomic_helper.py", line 39, in write_file
cagregos> [ 97.429024] cloud-init[705]: raise e
cagregos> [ 97.430356] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/atomic_helper.py", line 33, in write_file
cagregos> [ 97.432133] cloud-init[705]: tf.close()
cagregos> [ 97.433746] cloud-init[705]: File "/usr/lib/python3.8/tempfile.py", line 638, in close
cagregos> [ 97.435390] cloud-init[705]: self._closer.close()
cagregos> [ 97.436971] cloud-init[705]: File "/usr/lib/python3.8/tempfile.py", line 572, in close
cagregos> [ 97.438419] cloud-init[705]: self.file.close()
cagregos> [ 97.439631] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [ 97.441197] cloud-init[705]: tee: /var/log/cloud-init-output.log: No space left on device
cagregos> [ 97.442573] cloud-init[705]: Error in sys.excepthook:
cagregos> [ 97.444045] cloud-init[705]: Traceback (most recent call last):
cagregos> [ 97.445565] cloud-init[705]: File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 155, in apport_excepthook
cagregos> [ 97.447079] cloud-init[705]: pr.write(f)
cagregos> [ 97.450020] cloud-init[705]: File "/usr/lib/python3/dist-packages/problem_report.py", line 382, in write
cagregos> [ 97.451862] cloud-init[705]: file.write(v.replace(b'\n', b'\n '))
cagregos> [ 97.453918] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [ 97.455602] cloud-init[705]: During handling of the above exception, another exception occurred:
cagregos> [ 97.457179] cloud-init[705]: Traceback (most recent call last):
cagregos> [ 97.458589] cloud-init[705]: File "/usr/lib/python3/dist-packages/apport_python_hook.py", line 155, in apport_excepthook
cagregos> [ 97.460119] cloud-init[705]: pr.write(f)
cagregos> [ 97.461553] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [ 97.463064] cloud-init[705]: Original exception was:
cagregos> [ 97.464867] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [ 97.466239] cloud-init[705]: During handling of the above exception, another exception occurred:
cagregos> [ 97.467452] cloud-init[705]: Traceback (most recent call last):
cagregos> [ 97.468978] cloud-init[705]: File "/usr/bin/cloud-init", line 11, in <module>
cagregos> [ 97.470514] cloud-init[705]: load_entry_point('cloud-init==21.4', 'console_scripts', 'cloud-init')()
cagregos> [ 97.472508] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 927, in main
cagregos> [ 97.474332] cloud-init[705]: retval = util.log_time(
cagregos> [ 97.475807] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/util.py", line 2472, in log_time
cagregos> [ 97.477688] cloud-init[705]: ret = func(*args, **kwargs)
cagregos> [ 97.479097] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/cmd/main.py", line 707, in status_wrapper
cagregos> [ 97.480915] cloud-init[705]: atomic_helper.write_json(status_path, status)
cagregos> [ 97.482483] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/atomic_helper.py", line 44, in write_json
cagregos> [ 97.484043] cloud-init[705]: return write_file(
cagregos> [ 97.485417] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/atomic_helper.py", line 39, in write_file
cagregos> [ 97.487017] cloud-init[705]: raise e
cagregos> [ 97.488113] cloud-init[705]: File "/usr/lib/python3/dist-packages/cloudinit/atomic_helper.py", line 33, in write_file
cagregos> [ 97.489918] cloud-init[705]: tf.close()
cagregos> [ 97.491229] cloud-init[705]: File "/usr/lib/python3.8/tempfile.py", line 638, in close
cagregos> [ 97.492492] cloud-init[705]: self._closer.close()
cagregos> [ 97.493658] cloud-init[705]: File "/usr/lib/python3.8/tempfile.py", line 572, in close
cagregos> [ 97.494812] cloud-init[705]: self.file.close()
cagregos> [ 97.495843] cloud-init[705]: OSError: [Errno 28] No space left on device
cagregos> [FAILED] Failed to start Initial cl…ob (metadata service crawler).
cagregos> See 'systemctl status cloud-init.service' for details.
cagregos> [ OK ] Reached target Cloud-config availability.
cagregos> [ OK ] Reached target Network is Online.
cagregos> [ OK ] Reached target System Initialization.
cagregos> [ OK ] Started Trigger to poll fo…y enabled on GCP LTS non-pro).
cagregos> [ OK ] Started Daily apt download activities.
cagregos> [ OK ] Started Daily apt upgrade and clean activities.
cagregos> [ OK ] Started Periodic ext4 Onli…ata Check for All Filesystems.
cagregos> [ OK ] Started Discard unused blocks once a week.
cagregos> [ OK ] Started Refresh fwupd metadata regularly.
cagregos> [ OK ] Started Daily rotation of log files.
cagregos> [ OK ] Started Daily man-db regeneration.
cagregos> [ OK ] Started Message of the Day.
cagregos> [ OK ] Started Daily Cleanup of Temporary Directories.
cagregos> [ OK ] Started Ubuntu Advantage Timer for running repeated jobs.
cagregos> [ OK ] Reached target Paths.
cagregos> [ OK ] Reached target Timers.
cagregos> [ OK ] Listening on cloud-init hotplug hook socket.
cagregos> [ OK ] Listening on D-Bus System Message Bus Socket.
cagregos> [ OK ] Listening on Open-iSCSI iscsid Socket.
cagregos> Starting Socket activation for snappy daemon.
cagregos> [ OK ] Listening on UUID daemon activation socket.
cagregos> [ OK ] Reached target Remote File Systems (Pre).
cagregos> [ OK ] Reached target Remote File Systems.
cagregos> Starting Availability of block devices...
cagregos> [ OK ] Listening on Socket activation for snappy daemon.
cagregos> [ OK ] Reached target Sockets.
cagregos> [ OK ] Reached target Basic System.
cagregos> Starting Accounts Service...
cagregos> Starting LSB: automatic crash report generation...
cagregos> Starting Deferred execution scheduler...
cagregos> [ OK ] Started Regular background program processing daemon.
cagregos> [ OK ] Started D-Bus System Message Bus.
cagregos> [ OK ] Started Save initial kernel messages after boot.
cagregos> [FAILED] Failed to start Remove Sta…ext4 Metadata Check Snapshots.
cagregos> See 'systemctl status e2scrub_reap.service' for details.
cagregos> Starting Record successful boot for GRUB...
cagregos> [ OK ] Started irqbalance daemon.
cagregos> Starting Dispatcher daemon for systemd-networkd...
cagregos> Starting Pollinate to seed…udo random number generator...
cagregos> Starting System Logging Service...
cagregos> Starting Snap Daemon...
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> Starting Permit User Sessions...
cagregos> Starting Disk Manager...
cagregos> [ OK ] Started Unattended Upgrades Shutdown.
cagregos> [ OK ] Finished Availability of block devices.
cagregos> [ OK ] Started Deferred execution scheduler.
cagregos> [ OK ] Finished Permit User Sessions.
cagregos> Starting Hold until boot process finishes up...
cagregos> Starting Terminate Plymouth Boot Screen...
cagregos> [ OK ] Stopped Login Service.
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> [FAILED] Failed to start Pollinate …seudo random number generator.
cagregos> See 'systemctl status pollinate.service' for details.
cagregos> [ OK ] Finished Hold until boot process finishes up.
cagregos> [ OK ] Finished Record successful boot for GRUB.
cagregos> [ OK ] Finished Terminate Plymouth Boot Screen.
cagregos> Starting GRUB failed boot detection...
cagregos> [ OK ] Started Serial Getty on ttyS0.
cagregos> Starting Set console scheme...
cagregos> Starting OpenBSD Secure Shell server...
cagregos> [ OK ] Stopped Login Service.
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> [ OK ] Started System Logging Service.
cagregos> [ OK ] Started LSB: automatic crash report generation.
cagregos> [FAILED] Failed to start GRUB failed boot detection.
cagregos> See 'systemctl status grub-initrd-fallback.service' for details.
cagregos> [ OK ] Finished Set console scheme.
cagregos> [ OK ] Created slice system-getty.slice.
cagregos> [ OK ] Started Getty on tty1.
cagregos> [ OK ] Reached target Login Prompts.
cagregos> [ OK ] Stopped Login Service.
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> [ OK ] Stopped Login Service.
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> [FAILED] Failed to start OpenBSD Secure Shell server.
cagregos> See 'systemctl status ssh.service' for details.
cagregos> [ OK ] Stopped Login Service.
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> Starting Authorization Manager...
cagregos> [ OK ] Stopped OpenBSD Secure Shell server.
cagregos> Starting OpenBSD Secure Shell server...
cagregos> [FAILED] Failed to start Login Service.
cagregos> See 'systemctl status systemd-logind.service' for details.
cagregos> [ OK ] Started Dispatcher daemon for systemd-networkd.
cagregos> [FAILED] Failed to start OpenBSD Secure Shell server.
cagregos> See 'systemctl status ssh.service' for details.
cagregos> [ OK ] Started Authorization Manager.
cagregos> [ OK ] Stopped OpenBSD Secure Shell server.
cagregos> Starting OpenBSD Secure Shell server...
cagregos> [ OK ] Started Accounts Service.
cagregos> [FAILED] Failed to start OpenBSD Secure Shell server.
cagregos> See 'systemctl status ssh.service' for details.
cagregos> [ OK ] Stopped OpenBSD Secure Shell server.
cagregos> Starting OpenBSD Secure Shell server...
cagregos> [FAILED] Failed to start OpenBSD Secure Shell server.
cagregos> See 'systemctl status ssh.service' for details.
cagregos> [ OK ] Stopped OpenBSD Secure Shell server.
cagregos> Starting OpenBSD Secure Shell server...
cagregos> [FAILED] Failed to start OpenBSD Secure Shell server.
cagregos> See 'systemctl status ssh.service' for details.
cagregos> [ OK ] Started Disk Manager.
cagregos> [ OK ] Stopped OpenBSD Secure Shell server.
cagregos> [FAILED] Failed to start OpenBSD Secure Shell server.
cagregos> See 'systemctl status ssh.service' for details.
cagregos> Ubuntu 20.04.3 LTS ubuntu ttyS0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment