-
Notifications
You must be signed in to change notification settings - Fork 0
/
ubuntu-bionic-18.04-cloudimg-console.log
1469 lines (1453 loc) · 94.2 KB
/
ubuntu-bionic-18.04-cloudimg-console.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[ 0.000000] Linux version 4.15.0-212-generic (buildd@lcy02-amd64-083) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #223-Ubuntu SMP Tue May 23 13:09:22 UTC 2023 (Ubuntu 4.15.0-212.223-generic 4.15.18)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-212-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] e820: 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-0x000000007ffeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.5 present.
[ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: last_pfn = 0x7fff0 max_arch_pfn = 0x400000000
[ 0.000000] MTRR: Disabled
[ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[ 0.000000] CPU MTRRs all blank - virtualized system.
[ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
[ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] RAMDISK: [mem 0x359cb000-0x36cdcfff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
[ 0.000000] ACPI: XSDT 0x000000007FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
[ 0.000000] ACPI: FACP 0x000000007FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
[ 0.000000] ACPI: DSDT 0x000000007FFF0610 002353 (v02 VBOX VBOXBIOS 00000002 INTL 20210930)
[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
[ 0.000000] ACPI: APIC 0x000000007FFF0240 000054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
[ 0.000000] ACPI: SSDT 0x000000007FFF02A0 00036C (v01 VBOX VBOXCPUT 00000002 INTL 20210930)
[ 0.000000] ACPI: Reserving FACP table memory at [mem 0x7fff00f0-0x7fff01e3]
[ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x7fff0610-0x7fff2962]
[ 0.000000] ACPI: Reserving FACS table memory at [mem 0x7fff0200-0x7fff023f]
[ 0.000000] ACPI: Reserving FACS table memory at [mem 0x7fff0200-0x7fff023f]
[ 0.000000] ACPI: Reserving APIC table memory at [mem 0x7fff0240-0x7fff0293]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x7fff02a0-0x7fff060b]
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007ffeffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x7ffc5000-0x7ffeffff]
[ 0.000000] kvm-clock: cpu 0, msr 0:7ff44001, primary cpu clock
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: using sched offset of 3530056024 cycles
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000007ffeffff]
[ 0.000000] Normal empty
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffeffff]
[ 0.000000] Reserved but unavailable: 104 pages
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffeffff]
[ 0.000000] ACPI: PM-Timer IO Port: 0x4008
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x80000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] percpu: Embedded 50 pages/cpu s167936 r8192 d28672 u2097152
[ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 515961
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-212-generic root=LABEL=cloudimg-rootfs ro console=tty1 console=ttyS0
[ 0.000000] Memory: 2015036K/2096696K available (12300K kernel code, 2477K rwdata, 4324K rodata, 2480K init, 2720K bss, 81660K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] ftrace: allocating 39508 entries in 155 pages
[ 0.004000] Hierarchical RCU implementation.
[ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[ 0.004000] Tasks RCU enabled.
[ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.004000] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16
[ 0.004000] random: crng init done
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty1] enabled
[ 0.004000] console [ttyS0] enabled
[ 0.004000] ACPI: Core revision 20170831
[ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.004000] APIC: Switch to symmetric I/O mode setup
[ 0.004000] x2apic enabled
[ 0.004000] Switched APIC routing to physical x2apic.
[ 0.008000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.008005] tsc: Detected 2597.354 MHz processor
[ 0.012012] Calibrating delay loop (skipped) preset value.. 5194.70 BogoMIPS (lpj=10389416)
[ 0.016004] pid_max: default: 32768 minimum: 301
[ 0.020000] Security Framework initialized
[ 0.020003] Yama: becoming mindful.
[ 0.023408] AppArmor: AppArmor initialized
[ 0.025929] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.029263] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.032000] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.032065] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.037192] process: using mwait in idle threads
[ 0.040000] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.040003] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.044000] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.044004] Spectre V2 : Mitigation: Retpolines
[ 0.048000] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.048003] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.052000] RETBleed: WARNING: Spectre v2 mitigation leaves CPU vulnerable to RETBleed attacks, data leaks possible!
[ 0.052003] RETBleed: Vulnerable
[ 0.056003] Speculative Store Bypass: Vulnerable
[ 0.060000] MDS: Mitigation: Clear CPU buffers
[ 0.060000] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.060023] SRBDS: Unknown: Dependent on hypervisor status
[ 0.072000] Freeing SMP alternatives memory: 36K
[ 0.184004] APIC calibration not consistent with PM-Timer: 200ms instead of 100ms
[ 0.188000] APIC delta adjusted to PM-Timer: 6249989 (12500713)
[ 0.188362] smpboot: CPU0: Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[ 0.192000] Performance Events: unsupported p6 CPU model 158 no PMU driver, software events only.
[ 0.192097] Hierarchical SRCU implementation.
[ 0.196000] NMI watchdog: Perf event create on CPU 0 failed with -2
[ 0.196003] NMI watchdog: Perf NMI watchdog permanently disabled
[ 0.200000] smp: Bringing up secondary CPUs ...
[ 0.200006] smp: Brought up 1 node, 1 CPU
[ 0.203868] smpboot: Max logical packages: 1
[ 0.204006] smpboot: Total of 1 processors activated (5194.70 BogoMIPS)
[ 0.208000] devtmpfs: initialized
[ 0.208082] x86/mm: Memory block size: 128MB
[ 0.212000] evm: security.selinux
[ 0.212000] evm: security.SMACK64
[ 0.212008] evm: security.SMACK64EXEC
[ 0.215795] evm: security.SMACK64TRANSMUTE
[ 0.216000] evm: security.SMACK64MMAP
[ 0.216006] evm: security.apparmor
[ 0.219510] evm: security.ima
[ 0.220000] evm: security.capability
[ 0.220244] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.224027] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.228000] pinctrl core: initialized pinctrl subsystem
[ 0.228489] RTC time: 9:21:23, date: 03/25/24
[ 0.232000] NET: Registered protocol family 16
[ 0.232137] audit: initializing netlink subsys (disabled)
[ 0.236000] cpuidle: using governor ladder
[ 0.236000] cpuidle: using governor menu
[ 0.236087] ACPI: bus type PCI registered
[ 0.239736] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.240014] audit: type=2000 audit(1711358487.824:1): state=initialized audit_enabled=0 res=1
[ 0.244000] PCI: Using configuration type 1 for base access
[ 0.244000] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.244561] ACPI: Added _OSI(Module Device)
[ 0.248000] ACPI: Added _OSI(Processor Device)
[ 0.248013] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.252000] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.252017] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.255934] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.256018] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.260000] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.264000] ACPI: Interpreter enabled
[ 0.264018] ACPI: (supports S0 S5)
[ 0.267108] ACPI: Using IOAPIC for interrupt routing
[ 0.268000] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.268307] ACPI: Enabled 2 GPEs in block 00 to 07
[ 0.280000] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[ 0.280010] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[ 0.284000] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
[ 0.284027] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[ 0.288991] PCI host bridge to bus 0000:00
[ 0.292006] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.296000] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.296005] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.300000] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfdffffff window]
[ 0.300006] pci_bus 0000:00: root bus resource [bus 00-ff]
[ 0.308000] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
[ 0.308004] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
[ 0.312004] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
[ 0.316000] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
[ 0.360000] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
[ 0.360055] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
[ 0.377858] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
[ 0.380000] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
[ 0.380290] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
[ 0.384000] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
[ 0.384590] SCSI subsystem initialized
[ 0.388000] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.388000] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.388007] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.392000] vgaarb: loaded
[ 0.392080] ACPI: bus type USB registered
[ 0.395867] usbcore: registered new interface driver usbfs
[ 0.396000] usbcore: registered new interface driver hub
[ 0.396026] usbcore: registered new device driver usb
[ 0.400000] EDAC MC: Ver: 3.0.0
[ 0.401133] PCI: Using ACPI for IRQ routing
[ 0.404000] NetLabel: Initializing
[ 0.404003] NetLabel: domain hash size = 128
[ 0.408000] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.408076] NetLabel: unlabeled traffic allowed by default
[ 0.412000] clocksource: Switched to clocksource kvm-clock
[ 0.435626] VFS: Disk quotas dquot_6.6.0
[ 0.442950] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.446892] AppArmor: AppArmor Filesystem Enabled
[ 0.453279] pnp: PnP ACPI init
[ 0.457206] pnp: PnP ACPI: found 3 devices
[ 0.471025] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.479100] NET: Registered protocol family 2
[ 0.483541] IP idents hash table entries: 32768 (order: 6, 262144 bytes)
[ 0.487030] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[ 0.496374] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[ 0.502567] TCP: Hash tables configured (established 16384 bind 16384)
[ 0.506110] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.513746] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[ 0.517661] NET: Registered protocol family 1
[ 0.523341] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[ 0.527303] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[ 0.534058] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.541634] Unpacking initramfs...
[ 0.974374] Freeing initrd memory: 19528K
[ 0.982888] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2570788641a, max_idle_ns: 440795256006 ns
[ 0.991826] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.995743] Scanning for low memory corruption every 60 seconds
[ 1.005517] Initialise system trusted keyrings
[ 1.008750] Key type blacklist registered
[ 1.014307] workingset: timestamp_bits=36 max_order=19 bucket_order=0
[ 1.021917] zbud: loaded
[ 1.024508] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.031883] fuse init (API version 7.26)
[ 1.035525] Key type asymmetric registered
[ 1.041559] Asymmetric key parser 'x509' registered
[ 1.045497] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 246)
[ 1.053248] io scheduler noop registered
[ 1.056900] io scheduler deadline registered
[ 1.061052] io scheduler cfq registered (default)
[ 1.064902] ACPI: AC Adapter [AC] (off-line)
[ 1.070935] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[ 1.074832] ACPI: Power Button [PWRF]
[ 1.082112] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
[ 1.085113] ACPI: Sleep Button [SLPF]
[ 1.095141] ACPI: Battery Slot [BAT0] (battery present)
[ 1.096230] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.138221] 00:02: ttyS0 at /O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[ 1.140285] Linux agpgart interface v0.103
[ 1.140285] loop: module loaded
[ 1.140285] scsi host0: ata_piix
[ 1.162954] scsi host1: ata_piix
[ 1.166357] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
[ 1.172584] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
[ 1.181117] tun: Universal TUN/TAP device driver, 1.6
[ 1.183746] PPP generic driver version 2.4.2
[ 1.189864] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 1.193785] ehci-pci: EHCI PCI platform driver
[ 1.199954] ehci-platform: EHCI generic platform driver
[ 1.203900] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 1.210321] ohci-pci: OHCI PCI platform driver
[ 1.214286] ohci-platform: OHCI generic platform driver
[ 1.214286] uhci_hcd: USB Universal Host Controller Interface driver
[ 1.224994] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[ 1.235905] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.240396] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 1.244333] mousedev: PS/2 mouse device common for all mice
[ 1.251919] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
[ 1.258508] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[ 1.266577] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
[ 1.272320] i2c /dev entries driver
[ 1.275550] device-mapper: uevent: version 1.0.3
[ 1.276043] device-mapper: ioctl: 4.37.0-ioctl (2017-09-20) initialised: [email protected]
[ 1.286985] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.290918] intel_pmc_core: initialized
[ 1.290918] NET: Registered protocol family 10
[ 1.304235] Segment Routing with IPv6
[ 1.304235] NET: Registered protocol family 17
[ 1.312380] Key type dns_resolver registered
[ 1.316281] mce: Using 0 MCE banks
[ 1.316312] RAS: Correctable Errors collector initialized.
[ 1.324824] sched_clock: Marking stable (1324754064, 0)->(2496486655, -1171732591)
[ 1.332004] registered taskstats version 1
[ 1.335805] Loading compiled-in X.509 certificates
[ 1.405998] Loaded X.509 cert 'Build time autogenerated kernel key: b5b26778eaa3ab3a4a6cee031137706e947d12ad'
[ 1.415197] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.424792] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.433334] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.439034] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.447397] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 1.456196] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 1.465196] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 1.474043] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 1.483543] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 1.492613] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 1.501728] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 1.511454] zswap: loaded using pool lzo/zbud
[ 1.521262] Key type big_key registered
[ 1.525139] Key type trusted registered
[ 1.532000] Key type encrypted registered
[ 1.535752] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.541295] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[ 1.547449] ima: Allocated hash algorithm: sha1
[ 1.551690] evm: HMAC attrs: 0x1
[ 1.556135] Magic number: 0:636:374
[ 1.560510] acpi LNXVIDEO:00: hash matches
[ 1.565281] rtc_cmos rtc_cmos: setting system clock to 2024-03-25 09:21:25 UTC (1711358485)
[ 1.572983] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[ 1.578753] EDD information not available.
[ 1.587699] Freeing unused kernel image memory: 2480K
[ 1.600293] Write protecting the kernel read-only data: 20480k
[ 1.606293] Freeing unused kernel image memory: 2008K
[ 1.612329] Freeing unused kernel image memory: 1820K
[ 1.625266] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.632666] x86/mm: Checking user space page tables
[ 1.645876] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Loading, please wait...
starting version 237
[ 1.820432] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[ 1.827771] e1000: Copyright (c) 1999-2006 Intel Corporation.
[ 1.842826] Fusion MPT base driver 3.04.20
[ 1.848087] Copyright (c) 1999-2008 LSI Corporation
[ 1.914309] AVX2 version of gcm_enc/dec engaged.
[ 1.919709] AES CTR mode by8 optimization enabled
[ 1.943391] Fusion MPT SPI Host driver 3.04.20
[ 2.111262] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[ 2.554261] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 02:3b:7b:b7:3b:2d
[ 2.560184] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[ 2.567590] mptbase: ioc0: Initiating bringup
[ 2.674576] ioc0: LSI53C1030 A0: Capabilities={Initiator}
[ 2.922418] scsi host2: ioc0: LSI53C1030 A0, FwRev=00000000h, Ports=1, MaxQ=256, IRQ=20
[ 3.097973] scsi 2:0:0:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 3.105968] scsi target2:0:0: Beginning Domain Validation
[ 3.117344] scsi target2:0:0: Domain Validation skipping write tests
[ 3.122738] scsi target2:0:0: Ending Domain Validation
[ 3.127544] scsi target2:0:0: asynchronous
[ 3.132305] scsi 2:0:1:0: Direct-Access VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
[ 3.139392] scsi target2:0:1: Beginning Domain Validation
[ 3.147544] scsi target2:0:1: Domain Validation skipping write tests
[ 3.152939] scsi target2:0:1: Ending Domain Validation
[ 3.170664] scsi target2:0:1: asynchronous
[ 3.269525] sd 2:0:0:0: [sda] 83886080 512-byte logical blocks: (42.9 GB/40.0 GiB)
[ 3.276843] sd 2:0:0:0: Attached scsi generic sg0 type 0
[ 3.296552] sd 2:0:1:0: [sdb] 20480 512-byte logical blocks: (10.5 MB/10.0 MiB)
[ 3.303554] sd 2:0:1:0: Attached scsi generic sg1 type 0
[ 3.308642] sd 2:0:1:0: [sdb] Write Protect is off
[ 3.314025] sd 2:0:0:0: [sda] Write Protect is off
[ 3.327240] sd 2:0:0:0: [sda] Incomplete mode parameter data
[ 3.332310] sd 2:0:0:0: [sda] Assuming drive cache: write through
[ 3.338253] sd 2:0:1:0: [sdb] Incomplete mode parameter data
[ 3.343312] sd 2:0:1:0: [sdb] Assuming drive cache: write through
[ 3.374142] sda: sda1
[ 3.376685] sd 2:0:1:0: [sdb] Attached SCSI disk
[ 3.390444] sd 2:0:0:0: [sda] Attached SCSI disk
[ 3.801675] e1000 0000:00:08.0 eth1: (PCI:33MHz:32-bit) 08:00:27:d6:f7:d5
[ 3.807572] e1000 0000:00:08.0 eth1: Intel(R) PRO/1000 Network Connection
[ 4.350604] e1000 0000:00:09.0 eth2: (PCI:33MHz:32-bit) 08:00:27:8c:e1:53
[ 4.356516] e1000 0000:00:09.0 eth2: Intel(R) PRO/1000 Network Connection
[ 4.364495] e1000 0000:00:08.0 enp0s8: renamed from eth1
[ 4.397482] e1000 0000:00:03.0 enp0s3: renamed from eth0
[ 4.416954] e1000 0000:00:09.0 enp0s9: renamed from eth2
Begin: Loading essential drivers ... [ 6.858096] raid6: sse2x1 gen() 10010 MB/s
[ 6.918765] raid6: sse2x1 xor() 7289 MB/s
[ 6.977955] raid6: sse2x2 gen() 12299 MB/s
[ 7.037977] raid6: sse2x2 xor() 8357 MB/s
[ 7.097958] raid6: sse2x4 gen() 14283 MB/s
[ 7.157565] raid6: sse2x4 xor() 8951 MB/s
[ 7.217584] raid6: avx2x1 gen() 19924 MB/s
[ 7.268194] raid6: avx2x1 xor() 11487 MB/s
[ 7.327177] raid6: avx2x2 gen() 22985 MB/s
[ 7.387905] raid6: avx2x2 xor() 15114 MB/s
[ 7.446921] raid6: avx2x4 gen() 27359 MB/s
[ 7.506920] raid6: avx2x4 xor() 17438 MB/s
[ 7.511269] raid6: using algorithm avx2x4 gen() 27359 MB/s
[ 7.516068] raid6: .... xor() 17438 MB/s, rmw enabled
[ 7.520604] raid6: using avx2x2 recovery algorithm
[ 7.526936] xor: automatically using best checksumming function avx
[ 7.534590] async_tx: api initialized (async)
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [ 7.617218] Btrfs loaded, crc32c=crc32c-intel
Scanning for Btrfs filesystems
done.
Warning: fsck not present, so skipping root file system
[ 7.666418] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... done.
[ 7.872344] ip_tables: (C) 2000-2006 Netfilter Core Team
[ 7.891603] systemd[1]: systemd 237 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)
[ 7.910288] systemd[1]: Detected virtualization oracle.
[ 7.915550] systemd[1]: Detected architecture x86-64.
Welcome to [1mUbuntu 18.04.6 LTS[0m!
[ 7.925968] systemd[1]: Set hostname to <ubuntu>.
[ 7.935180] systemd[1]: Initializing machine ID from random generator.
[ 7.941120] systemd[1]: Installed transient /etc/machine-id file.
[ 8.221307] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[[0;32m OK [0m] Set up automount Arbitrary Executab…rmats File System Automount Point.
[ 8.234400] systemd[1]: Reached target Swap.
[[0;32m OK [0m] Reached target Swap.
[ 8.242491] systemd[1]: Created slice System Slice.
[[0;32m OK [0m] Created slice System Slice.
[ 8.250692] systemd[1]: Listening on Syslog Socket.
[[0;32m OK [0m] Listening on Syslog Socket.
[[0;32m OK [0m] Listening on udev Kernel Socket.
[[0;32m OK [0m] Listening on Network Service Netlink Socket.
[[0;32m OK [0m] Listening on Journal Socket (/dev/log).
[[0;32m OK [0m] Created slice system-serial\x2dgetty.slice.
[[0;32m OK [0m] Listening on LVM2 metadata daemon socket.
[[0;32m OK [0m] Reached target Mounting snaps.
[[0;32m OK [0m] Listening on /dev/initctl Compatibility Named Pipe.
[[0;32m OK [0m] Reached target User and Group Name Lookups.
[[0;32m OK [0m] Listening on Journal Audit Socket.
[[0;32m OK [0m] Reached target Mounted snaps.
[[0;32m OK [0m] Reached target System Time Synchronized.
[[0;32m OK [0m] Listening on Device-mapper event daemon FIFOs.
[[0;32m OK [0m] Listening on udev Control Socket.
[[0;32m OK [0m] Started Forward Password Requests to Wall Directory Watch.
[[0;32m OK [0m] Listening on LVM2 poll daemon socket.
[[0;32m OK [0m] Created slice User and Session Slice.
[[0;32m OK [0m] Reached target Slices.
[[0;32m OK [0m] Listening on Journal Socket.
Starting udev Coldplug all Devices...
Starting Set the console keyboard layout...
Starting Uncomplicated firewall...
Mounting POSIX Message Queue File System...
Mounting Huge Pages File System...
Starting Journal Service...
Starting Load Kernel Modules...
Starting Monitoring of LVM2 mirrors…ng dmeventd or progress polling...
Starting Create list of required st…ce nodes for the current kernel...
Mounting Kernel Debug File System...
[[0;32m OK [0m] Listening on fsck to fsckd communication Socket.
[ 8.472784] Loading iSCSI transport class v2.0-870.
Starting File System Check on Root Device...
[[0;32m OK [0m] Started Uncomplicated firewall.
[[0;32m OK [0m] Started Journal Service.
[[0;32m OK [0m] Mounted POSIX Message Queue File System.
[[0;32m OK [0m] Mounted Huge Pages File System.
[[0;32m OK [0m] Started Create list of required sta…vice nodes for the current kernel.
[[0;32m OK [0m] Mounted Kernel Debug File System.
[[0;32m OK [0m] Started File System Check Daemon to report status.
Starting Create Static Device Nodes in /dev...
[[0;32m OK [0m] Started LVM2 metadata daemon.
[ 8.590615] iscsi: registered transport (tcp)
[[0;32m OK [0m] Started udev Coldplug all Devices.
[[0;32m OK [0m] Started Create Static Device Nodes in /dev.
[[0;32m OK [0m] Started File System Check on Root Device.
Starting Remount Root and Kernel File Systems...
[[0;32m OK [0m] Started Monitoring of LVM2 mirrors,…sing dmeventd or progress polling.
[ 8.701936] EXT4-fs (sda1): re-mounted. Opts: (null)
[[0;32m OK [0m] Started Remount Root and Kernel File Systems.
[ 8.725103] iscsi: registered transport (iser)
Starting Flush Journal to Persistent Storage...
Starting udev Kernel Device Manager...
Starting Load/Save Random Seed...
[[0;32m OK [0m] Started Load Kernel Modules.
Mounting Kernel Configuration File System...
Starting Apply Kernel Variables...
Mounting FUSE Control File System...
[[0;32m OK [0m] Mounted Kernel Configuration File System.
[[0;32m OK [0m] Mounted FUSE Control File System.
[ 8.813560] systemd-journald[406]: Received request to flush runtime journal from PID 1
[[0;32m OK [0m] Started udev Kernel Device Manager.
[[0;32m OK [0m] Started Load/Save Random Seed.
[[0;32m OK [0m] Started Apply Kernel Variables.
[[0;32m OK [0m] Started Flush Journal to Persistent Storage.
[[0;32m OK [0m] Found device /dev/ttyS0.
[[0;32m OK [0m] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Mounting Arbitrary Executable File Formats File System...
[[0;32m OK [0m] Mounted Arbitrary Executable File Formats File System.
[[0;32m OK [0m] Started Set the console keyboard layout.
[[0;32m OK [0m] Started Dispatch Password Requests to Console Directory Watch.
[[0;32m OK [0m] Reached target Local Encrypted Volumes.
[[0;32m OK [0m] Reached target Local File Systems (Pre).
[[0;32m OK [0m] Reached target Local File Systems.
Starting Commit a transient machine-id on disk...
Starting Create Volatile Files and Directories...
Starting Set console font and keymap...
Starting ebtables ruleset management...
Starting AppArmor initialization...
Starting Tell Plymouth To Write Out Runtime Data...
[[0;32m OK [0m] Started Commit a transient machine-id on disk.
[[0;32m OK [0m] Started Create Volatile Files and Directories.
Starting Update UTMP about System Boot/Shutdown...
[[0;32m OK [0m] Started Tell Plymouth To Write Out Runtime Data.
[[0;32m OK [0m] Started Update UTMP about System Boot/Shutdown.
[[0;32m OK [0m] Started ebtables ruleset management.
[[0;32m OK [0m] Started AppArmor initialization.
Starting Load AppArmor profiles managed internally by snapd...
Starting Initial cloud-init job (pre-networking)...
[[0;32m OK [0m] Started Load AppArmor profiles managed internally by snapd.
[[0;32m OK [0m] Started Set console font and keymap.
[ 16.681997] cloud-init[776]: Cloud-init v. 23.1.2-0ubuntu0~18.04.1 running 'init-local' at Mon, 25 Mar 2024 09:21:40 +0000. Up 16.25 seconds.
[[0;32m OK [0m] Started Initial cloud-init job (pre-networking).
[[0;32m OK [0m] Reached target Network (Pre).
Starting Network Service...
[[0;32m OK [0m] Started Network Service.
Starting Network Name Resolution...
Starting Wait for Network to be Configured...
[[0;32m OK [0m] Started Network Name Resolution.
[[0;32m OK [0m] Reached target Network.
[[0;32m OK [0m] Reached target Host and Network Name Lookups.
[[0;32m OK [0m] Started Wait for Network to be Configured.
Starting Initial cloud-init job (metadata service crawler)...
[ 19.212790] cloud-init[889]: Cloud-init v. 23.1.2-0ubuntu0~18.04.1 running 'init' at Mon, 25 Mar 2024 09:21:42 +0000. Up 18.99 seconds.
[ 19.226208] cloud-init[889]: ci-info: ++++++++++++++++++++++++++++++++++++++Net device info+++++++++++++++++++++++++++++++++++++++
[ 19.242872] cloud-init[889]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 19.255753] cloud-init[889]: ci-info: | Device | Up | Address | Mask | Scope | Hw-Address |
[ 19.272972] cloud-init[889]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 19.288662] cloud-init[889]: ci-info: | enp0s3 | True | 10.0.2.15 | 255.255.255.0 | global | 02:3b:7b:b7:3b:2d |
[ 19.301983] cloud-init[889]: ci-info: | enp0s3 | True | fe80::3b:7bff:feb7:3b2d/64 | . | link | 02:3b:7b:b7:3b:2d |
[ 19.313094] cloud-init[889]: ci-info: | enp0s8 | False | . | . | . | 08:00:27:d6:f7:d5 |
[ 19.326899] cloud-init[889]: ci-info: | enp0s9 | False | . | . | . | 08:00:27:8c:e1:53 |
[ 19.343499] cloud-init[889]: ci-info: | lo | True | 127.0.0.1 | 255.0.0.0 | host | . |
[ 19.352939] cloud-init[889]: ci-info: | lo | True | ::1/128 | . | host | . |
[ 19.367087] cloud-init[889]: ci-info: +--------+-------+----------------------------+---------------+--------+-------------------+
[ 19.378690] cloud-init[889]: ci-info: ++++++++++++++++++++++++++++Route IPv4 info+++++++++++++++++++++++++++++
[ 19.394013] cloud-init[889]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 19.405358] cloud-init[889]: ci-info: | Route | Destination | Gateway | Genmask | Interface | Flags |
[ 19.415721] cloud-init[889]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 19.425411] cloud-init[889]: ci-info: | 0 | 0.0.0.0 | 10.0.2.2 | 0.0.0.0 | enp0s3 | UG |
[ 19.431579] cloud-init[889]: ci-info: | 1 | 10.0.2.0 | 0.0.0.0 | 255.255.255.0 | enp0s3 | U |
[ 19.440119] cloud-init[889]: ci-info: | 2 | 10.0.2.2 | 0.0.0.0 | 255.255.255.255 | enp0s3 | UH |
[ 19.450844] cloud-init[889]: ci-info: +-------+-------------+----------+-----------------+-----------+-------+
[ 19.466157] cloud-init[889]: ci-info: +++++++++++++++++++Route IPv6 info+++++++++++++++++++
[ 19.476341] cloud-init[889]: ci-info: +-------+-------------+---------+-----------+-------+
[ 19.486017] cloud-init[889]: ci-info: | Route | Destination | Gateway | Interface | Flags |
[ 19.495942] cloud-init[889]: ci-info: +-------+-------------+---------+-----------+-------+
[ 19.505559] cloud-init[889]: ci-info: | 1 | fe80::/64 | :: | enp0s3 | U |
[ 19.515175] cloud-init[889]: ci-info: | 3 | local | :: | enp0s3 | U |
[ 19.525633] cloud-init[889]: ci-info: | 4 | ff00::/8 | :: | enp0s3 | U |
[ 19.535437] cloud-init[889]: ci-info: +-------+-------------+---------+-----------+-------+
[ 20.330316] cloud-init[889]: Generating public/private rsa key pair.
[ 20.340837] cloud-init[889]: Your identification has been saved in /etc/ssh/ssh_host_rsa_key.
[ 20.350879] cloud-init[889]: Your public key has been saved in /etc/ssh/ssh_host_rsa_key.pub.
[ 20.370326] cloud-init[889]: The key fingerprint is:
[ 20.374334] cloud-init[889]: SHA256:Iu4gjXMfysErJkW9jBMKZK35MOzeqL4YnyJD4BKcvDQ root@ubuntu-bionic
[ 20.391671] cloud-init[889]: The key's randomart image is:
[ 20.396894] cloud-init[889]: +---[RSA 2048]----+
[ 20.410268] cloud-init[889]: | . |
[ 20.414936] cloud-init[889]: | o . |
[ 20.419068] cloud-init[889]: |* +. |
[ 20.434505] cloud-init[889]: |+Eo . |
[ 20.438321] cloud-init[889]: |*+*+... S |
[ 20.447239] cloud-init[889]: |oO+oo. . |
[[0;32m OK [0m] Started Initial cloud-init job (metadata service crawler).
[[0;32m OK [0m] Reached target Network is Online.
[ 20.460716] cloud-init[889]: |O.O.o |
[ 20.464478] cloud-init[889]: |B@ X . |
[ 20.468237] cloud-init[889]: |O*B o | Starting Availability of block devices...
[[0;32m OK [0m] Reached target Remote File Systems (Pre).
[
[ 20.482019] cloud-init[889]: +----[SHA256]-----+
[ 20.485934] cloud-init[889]: Generating public/private dsa key pair.
[ 20.490423] [0;32m OK [0m] Reached target Remote File Systems.
[[0;32m OK [0m] Reached target Cloud-config availability.
[[0;32m OK [0m] Reached target System Initialization.
[cloud-init[889]: Your identification has been saved in /etc/ssh/ssh_host_dsa_key.
[ 20.515710] cloud-init[889]: Your public key has been saved in /etc/ssh/ssh_host_dsa_key.pub.[0;32m OK [0m] Started Discard unused blocks once a week.
[[0;32m OK [0m] Listening on D-Bus System Message Bus Socket.
Starting Socket activation for snappy daemon.
Starting LXD - unix socket.
[[0;32m OK [0m]
[ 20.551692] cloud-init[889]: The key fingerprint is:
[ 20.555806] cloud-init[889]: SHA256:9OFX/oxmJQ+TYIrNqxz6eU6duujfchMmRHa3LTsPmSo root@ubuntu-bionicListening on cloud-init hotplug hook socket.
[[0;32m OK [0m] Listening on UUID daemon activation socket.
[[0;32m OK [0m] Listening on Open-iSCSI iscsid Socket.
[[0;32m OK [0m] Started Message of the Day.
[[0;32m OK [0m] Started Daily Cleanup of Temporary Directories.
[ 20.593727] cloud-init[889]: The key's randomart image is:
[ 20.597789] cloud-init[889]:
[[0;32m OK [0m] Started Ubuntu Advantage Timer for running repeated jobs.
+---[DSA 1024]----+
[ 20.607688] cloud-init[889]: | |
[[0;32m OK [0m] Started ACPI Events Check.
[[0;32m OK [0m] Reached target Paths.
[[ 20.620501] cloud-init[889]: | o . . |
[ 20.624328] cloud-init[889]: | .o..o..o |
[ 20.628072] cloud-init[889]: | . *.+ +o..|[0;32m OK [0m] Listening on ACPID Listen Socket.
[[0;32m OK [0m] Started Daily apt download activities.
[[0;32m OK [0m
[ 20.641297] cloud-init[889]: | S.* . *=.|
[ 20.645059] cloud-init] Started Daily apt upgrade and clean activities.
[[0;32m OK [0m] Reached target Timers.
[889]: | .+o.*X |
[ 20.657044] cloud-init[889]: [[0;32m OK [0m] Started Availability of block devices.
[[0;32m OK [0m] Listening on Socket activation for snappy daemon.
[[0;32m OK [0m| . oooo+++|
[ 20.671888] cloud-init[889]: | o *Eo+o .|
[ 20.675600] cloud-init[889]: | .oB+==.. |
[ 20.679314] ] Listening on LXD - unix socket.
[[0;32m OK [0m] Reached target Sockets.
[[0;32m OK [0m] Reached target Basic System.cloud-init[889]: +----[SHA256]-----+
[ 20.693019] cloud-init[889]: Generating public/private ecdsa key pair.
[ 20.697768] cloud-init
[[0;32m OK [0m] Started D-Bus System Message Bus.
[889]: Your identification has been saved in /etc/ssh/ssh_host_ecdsa_key.
[ 20.726259] cloud-init[889]: Your public key has been saved in /etc/ssh/ssh_host_ecdsa_key.pub.
Starting Login Service...
[ 20.747515] cloud-init[889]: The key fingerprint is:[[0;32m OK [0m] Started Regular background program processing daemon.
[[0;32m OK [0m] Started Deferred execution scheduler.
Starting Virtualbox guest utils...
[ 20.780995] cloud-init[889]: SHA256:sgQV5ZExhJbvYIbew3sFkuk8J/L6kcwHg6KVysXVB4g root@ubuntu-bionic
[ 20.799144] cloud-init[889]: The key's randomart image is:
[ 20.813311] cloud-init[889]: +---[ECDSA 256]---+
[ 20.822266] cloud-init[889]: | . +B*o |
[[0;32m OK [0m] Started irqbalance daemon.
Starting System Logging Service...
Starting Accounts Service...
Starting LSB: automatic crash report generation...
[[0;32m OK [0m] Reached target Login Prompts (Pre).
Starting Permit User Sessions...[ 20.881401]
Starting LSB: Record successful boot for GRUB...
cloud-init[889]: | E o=.oo |
[ 20.911206] cloud-init[889]: | .+ =.. |
[ 20.926117] cloud-init[889]: | ..ooB + | Starting Pollinate to seed the pseudo random number generator...
Starting Snap Daemon...
[ 20.975942] cloud-init[889]: | ++.B=+S. |
[ 20.984497] cloud-init[889]: |.+..o+O*o . |
Starting Dispatcher daemon for systemd-networkd...
[[0;32m OK [0m] Started FUSE filesystem for LXC.
Starting LXD - container startup/shutdown...
[[0;32m OK [0m] Started System Logging Service.
[ 21.024189] cloud-init[889]: |o. o**.. |
[[0;32m OK [0m] Started Permit User Sessions.
[[0;32m OK [0m] Started Login Service.
[ 21.069435] cloud-init[889]: | oo. |
[ 21.099667] cloud-init[889]: | .o.. |
[ 21.111321] cloud-init[889]: +----[SHA256]-----+
[ 21.132193] cloud-init[889]: Generating public/private ed25519 key pair.
[ 21.150459] cloud-init[889]: Your identification has been saved in /etc/ssh/ssh_host_ed25519_key.
Starting Authorization Manager...
[[0;32m OK [0m] Started Unattended Upgrades Shutdown.
Starting Hold until boot process finishes up...
Starting Terminate Plymouth Boot Screen...
[[0;32m OK [0m] Started Hold until boot process finishes up.
Starting Set console scheme...
[[0;32m OK [0m] Started Serial Getty on ttyS0.
[[0;32m OK [0m] Started Terminate Plymouth Boot Screen.
[ 21.290112] cloud-init[889]: Your public key has been saved in /etc/ssh/ssh_host_ed25519_key.pub.
[[0;32m OK [0m] Started LSB: automatic crash report generation.
[ 21.320248] cloud-init[889]: The key fingerprint is:
[[0;32m OK [0m] Started LSB: Record successful boot for GRUB.
[[0;32m OK [0m] Started Set console scheme.
[[0;32m OK [0m] Created slice system-getty.slice.
[[0;32m OK [0m] Started Getty on tty1.
[ 21.388991] cloud-init[889]: SHA256:8SxVDYC+L2kuiT7zrM8df9i9odkbzvxb1Go37VZNys0 root@ubuntu-bionic
[[0;32m OK [0m] Reached target Login Prompts.
[ 21.449718] cloud-init[889]: The key's randomart image is:
[ 21.481192] cloud-init[889]: +--[ED25519 256]--+
[ 21.522551] cloud-init[889]: | ...oo |
[ 21.537561] cloud-init[889]: | . . . |
[[0;32m OK [0m] Started Authorization Manager.
[[0;32m OK [0m] Started Accounts Service.
[ 21.578911] cloud-init[889]: | .. . |
[[0;32m OK [0m] Started LXD - container startup/shutdown.
[ 21.614053] cloud-init[889]: | .= o|
[ 21.645300] cloud-init[889]: | S.o . =+|
[ 21.663511] cloud-init[889]: | .. ooE|
[ 21.695874] cloud-init[889]: | . ..o o .=.=|
[ 21.714476] cloud-init[889]: | +oo.+oo oO.=+|
[ 21.736497] cloud-init[889]: | .o*=+o...o B*+|
[ 21.750962] cloud-init[889]: +----[SHA256]-----+
[[0;32m OK [0m] Started Virtualbox guest utils.
[[0;32m OK [0m] Started Dispatcher daemon for systemd-networkd.
[[0;32m OK [0m] Started Snap Daemon.
Starting Wait until snapd is fully seeded...
[[0;32m OK [0m] Started Pollinate to seed the pseudo random number generator.
Starting OpenBSD Secure Shell server...
[[0;32m OK [0m] Started OpenBSD Secure Shell server.
[[0;32m OK [0m] Created slice User Slice of vagrant.
Starting User Manager for UID 1000...
[[0;32m OK [0m] Started Session 1 of user vagrant.
[[0;32m OK [0m] Started User Manager for UID 1000.
Starting Time & Date Service...
[[0;32m OK [0m] Started Time & Date Service.
[[0;32m OK [0m] Started Wait until snapd is fully seeded.
Starting Apply the settings specified in cloud-config...
Ubuntu 18.04.6 LTS ubuntu-bionic ttyS0
ubuntu-bionic login: [ 27.938679] cloud-init[1348]: Cloud-init v. 23.1.2-0ubuntu0~18.04.1 running 'modules:config' at Mon, 25 Mar 2024 09:21:50 +0000. Up 26.56 seconds.
ci-info: no authorized SSH keys fingerprints found for user ubuntu.
<14>Mar 25 09:21:53 cloud-init: #############################################################
<14>Mar 25 09:21:53 cloud-init: -----BEGIN SSH HOST KEY FINGERPRINTS-----
<14>Mar 25 09:21:53 cloud-init: 1024 SHA256:9OFX/oxmJQ+TYIrNqxz6eU6duujfchMmRHa3LTsPmSo root@ubuntu-bionic (DSA)
<14>Mar 25 09:21:53 cloud-init: 256 SHA256:sgQV5ZExhJbvYIbew3sFkuk8J/L6kcwHg6KVysXVB4g root@ubuntu-bionic (ECDSA)
<14>Mar 25 09:21:53 cloud-init: 256 SHA256:8SxVDYC+L2kuiT7zrM8df9i9odkbzvxb1Go37VZNys0 root@ubuntu-bionic (ED25519)
<14>Mar 25 09:21:53 cloud-init: 2048 SHA256:Iu4gjXMfysErJkW9jBMKZK35MOzeqL4YnyJD4BKcvDQ root@ubuntu-bionic (RSA)
<14>Mar 25 09:21:53 cloud-init: -----END SSH HOST KEY FINGERPRINTS-----
<14>Mar 25 09:21:53 cloud-init: #############################################################
-----BEGIN SSH HOST KEY KEYS-----
ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBHaro1d/A3dyY62wk99JUFhbnplqrZn+3DUCUbgVupLWpSruufGUnnHer8SY7ulBucpKoYvDkuDRb3hfpP6GPkE= root@ubuntu-bionic
ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIES9O6eM2MHj2xn6kA17Wr2VoV3pVyvzHm4zvlku84Ro root@ubuntu-bionic
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDXkhRrVS3uPRm6TOwdQxfgsJ+qDrOxNYDj3F9dA0Tj83mwGZVCD2llAJiutjHCtQI0y7N4RPeiLkI4NbjnZS7CbrJXeoDnIrdXWL3aSPwv159tKLBksb6PQPHhwrkIMCQD6moJZ7PkZ/gnV/Df5kbRlGRk2my2chKxj7oJzI6oHyGpbYrX8+U251fXagm57Hn6sAGPwGay+Tv4/dppSOPqgy+uCYBASBWY9Y/3FcaPeVjyWh+qMBg+/ECuveN2vpC9LdhyT1UNyAUsd4pYGgUz99ooBbcmCbuYijF2g+bAdL0xuDF2jMkOeGleR2MoV8COqSBbUSiJjnMfD+tCBpYb root@ubuntu-bionic
-----END SSH HOST KEY KEYS-----
[ 29.770956] cloud-init[1546]: Cloud-init v. 23.1.2-0ubuntu0~18.04.1 running 'modules:final' at Mon, 25 Mar 2024 09:21:53 +0000. Up 29.26 seconds.
[ 29.788185] cloud-init[1546]: Cloud-init v. 23.1.2-0ubuntu0~18.04.1 finished at Mon, 25 Mar 2024 09:21:53 +0000. Datasource DataSourceNoCloud [seed=/dev/sdb][dsmode=net]. Up 29.75 seconds
Stopping Availability of block devices...
[[0;32m OK [0m] Stopped target Graphical Interface.
Stopping Authorization Manager...
[[0;32m OK [0m] Stopped target Host and Network Name Lookups.
[[0;32m OK [0m] Stopped target Cloud-init target.
[[0;32m OK [0m] Stopped Execute cloud user/final scripts.
[[0;32m OK [0m] Stopped Apply the settings specified in cloud-config.
[[0;32m OK [0m] Stopped target Cloud-config availability.
Stopping Accounts Service...
Stopping User Manager for UID 1000...
[[0;32m OK [0m] Stopped target Timers.
[[0;32m OK [0m] Stopped Message of the Day.
[[0;32m OK [0m] Stopped Daily apt upgrade and clean activities.
[[0;32m OK [0m] Stopped Daily apt download activities.
[[0;32m OK [0m] Stopped Discard unused blocks once a week.
[[0;32m OK [0m] Stopped target System Time Synchronized.
[[0;32m OK [0m] Stopped Daily Cleanup of Temporary Directories.
[[0;32m OK [0m] Closed Load/Save RF Kill Switch Status /dev/rfkill Watch.
Stopping Session 6 of user vagrant.
[[0;32m OK [0m] Stopped target Multi-User System.
Stopping LSB: Record successful boot for GRUB...
Stopping Deferred execution scheduler...
Stopping Regular background program processing daemon...
Stopping D-Bus System Message Bus...
Stopping Virtualbox guest utils...
Stopping System Logging Service...
[[0;32m OK [0m] Stopped Wait until snapd is fully seeded.
Stopping LSB: automatic crash report generation...
Stopping Dispatcher daemon for systemd-networkd...
Stopping OpenBSD Secure Shell server...
Stopping LXD - container startup/shutdown...
[[0;32m OK [0m] Stopped target Login Prompts.
Stopping Getty on tty1...
Stopping Serial Getty on ttyS0...
Stopping FUSE filesystem for LXC...
Stopping Unattended Upgrades Shutdown...
[[0;32m OK [0m] Unmounted /var/lib/lxcfs.
[[0;32m OK [0m] Stopped Regular background program processing daemon.
[[0;32m OK [0m] Stopped Deferred execution scheduler.
[[0;32m OK [0m] Stopped System Logging Service.
[[0;32m OK [0m] Stopped Accounts Service.
[[0;32m OK [0m] Stopped Dispatcher daemon for systemd-networkd.
[[0;32m OK [0m] Stopped Authorization Manager.
[[0;32m OK [0m] Stopped Unattended Upgrades Shutdown.
[[0;32m OK [0m] Stopped Serial Getty on ttyS0.
[[0;32m OK [0m] Stopped Getty on tty1.
[[0;32m OK [0m] Stopped OpenBSD Secure Shell server.
[[0;32m OK [0m] Stopped User Manager for UID 1000.
[[0;32m OK [0m] Stopped Availability of block devices.
[[0;32m OK [0m] Stopped D-Bus System Message Bus.
[[0;32m OK [0m] Stopped FUSE filesystem for LXC.
[[0;32m OK [0m] Stopped Session 6 of user vagrant.
[[0;32m OK [0m] Removed slice User Slice of vagrant.
[[0;32m OK [0m] Removed slice system-getty.slice.
[[0;32m OK [0m] Removed slice system-serial\x2dgetty.slice.
Stopping Permit User Sessions...
[[0;32m OK [0m] Stopped target Login Prompts (Pre).
Stopping Login Service...
[[0;32m OK [0m] Stopped Login Service.
[[0;32m OK [0m] Stopped LSB: Record successful boot for GRUB.
[[0;32m OK [0m] Stopped LSB: automatic crash report generation.
[[0;32m OK [0m] Stopped LXD - container startup/shutdown.
[[0;32m OK [0m] Stopped Permit User Sessions.
[[0;32m OK [0m] Stopped target Remote File Systems.
Unmounting /vagrant...
[[0;32m OK [0m] Stopped target User and Group Name Lookups.
[[0;32m OK [0m] Unmounted /vagrant.
[[0;32m OK [0m] Stopped Virtualbox guest utils.
[[0;32m OK [0m] Stopped target Basic System.
[[0;32m OK [0m] Stopped target Paths.
[[0;32m OK [0m] Stopped ACPI Events Check.
[[0;32m OK [0m] Stopped target Slices.
[[0;32m OK [0m] Removed slice User and Session Slice.
[[0;32m OK [0m] Stopped target Sockets.
[[0;32m OK [0m] Closed Socket activation for snappy daemon.
[[0;32m OK [0m] Closed D-Bus System Message Bus Socket.
[[0;32m OK [0m] Closed Open-iSCSI iscsid Socket.
[[0;32m OK [0m] Closed Syslog Socket.
[[0;32m OK [0m] Closed UUID daemon activation socket.
[[0;32m OK [0m] Closed cloud-init hotplug hook socket.
[[0;32m OK [0m] Closed ACPID Listen Socket.
[[0;32m OK [0m] Closed LXD - unix socket.
[[0;32m OK [0m] Stopped target System Initialization.
Stopping Update UTMP about System Boot/Shutdown...
[[0;32m OK [0m] Stopped target Local Encrypted Volumes.
[[0;32m OK [0m] Stopped Forward Password Requests to Wall Directory Watch.
[[0;32m OK [0m] Stopped Dispatch Password Requests to Console Directory Watch.
Stopping Load/Save Random Seed...
[[0;32m OK [0m] Stopped Commit a transient machine-id on disk.
[[0;32m OK [0m] Stopped target Remote File Systems (Pre).
[[0;32m OK [0m] Stopped target Network is Online.
[[0;32m OK [0m] Stopped Initial cloud-init job (metadata service crawler).
[[0;32m OK [0m] Stopped target Network.
Stopping Network Name Resolution...
[[0;32m OK [0m] Stopped Network Name Resolution.
[[0;32m OK [0m] Stopped Load/Save Random Seed.
[[0;32m OK [0m] Stopped Update UTMP about System Boot/Shutdown.
[[0;32m OK [0m] Stopped Create Volatile Files and Directories.
[[0;32m OK [0m] Stopped target Local File Systems.
[[0;32m OK [0m] Stopped target Mounted snaps.
[[0;32m OK [0m] Stopped target Mounting snaps.
Unmounting /run/user/1000...
Stopping Network Service...
[[0;32m OK [0m] Unmounted /run/user/1000.
[[0;32m OK [0m] Reached target Unmount All Filesystems.
[[0;32m OK [0m] Stopped target Local File Systems (Pre).
Stopping Monitoring of LVM2 mirrors…ng dmeventd or progress polling...
[[0;32m OK [0m] Stopped Create Static Device Nodes in /dev.
[[0;32m OK [0m] Stopped target Swap.
[[0;32m OK [0m] Stopped Monitoring of LVM2 mirrors,…sing dmeventd or progress polling.
Stopping LVM2 metadata daemon...
[[0;32m OK [0m] Stopped LVM2 metadata daemon.
[[0;32m OK [0m] Stopped Network Service.
[[0;32m OK [0m] Stopped target Network (Pre).
[[0;32m OK [0m] Stopped Initial cloud-init job (pre-networking).
[[0;32m OK [0m] Stopped Remount Root and Kernel File Systems.
[[0;32m OK [0m] Stopped Apply Kernel Variables.
[[0;32m OK [0m] Stopped Load Kernel Modules.
[[0;32m OK [0m] Reached target Shutdown.
[[0;32m OK [0m] Reached target Final Step.
Starting Reboot...
[ 363.173229] reboot: Restarting system
[ 0.000000] Linux version 4.15.0-213-generic (buildd@lcy02-amd64-079) (gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)) #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 (Ubuntu 4.15.0-213.224-generic 4.15.18)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-213-generic root=UUID=f685bb41-0e3b-40c4-89c1-eea0f0583525 ro console=tty1 console=ttyS0
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Centaur CentaurHauls
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
[ 0.000000] e820: 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-0x000000007ffeffff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.5 present.
[ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
[ 0.000000] Hypervisor detected: KVM
[ 0.000000] e820: last_pfn = 0x7fff0 max_arch_pfn = 0x400000000
[ 0.000000] MTRR: Disabled
[ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
[ 0.000000] CPU MTRRs all blank - virtualized system.
[ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
[ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff]
[ 0.000000] Scanning 1 areas for low memory corruption
[ 0.000000] RAMDISK: [mem 0x35819000-0x36c03fff]
[ 0.000000] ACPI: Early table checksum verification disabled
[ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
[ 0.000000] ACPI: XSDT 0x000000007FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
[ 0.000000] ACPI: FACP 0x000000007FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
[ 0.000000] ACPI: DSDT 0x000000007FFF0610 002353 (v02 VBOX VBOXBIOS 00000002 INTL 20210930)
[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
[ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
[ 0.000000] ACPI: APIC 0x000000007FFF0240 000054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
[ 0.000000] ACPI: SSDT 0x000000007FFF02A0 00036C (v01 VBOX VBOXCPUT 00000002 INTL 20210930)
[ 0.000000] ACPI: Reserving FACP table memory at [mem 0x7fff00f0-0x7fff01e3]
[ 0.000000] ACPI: Reserving DSDT table memory at [mem 0x7fff0610-0x7fff2962]
[ 0.000000] ACPI: Reserving FACS table memory at [mem 0x7fff0200-0x7fff023f]
[ 0.000000] ACPI: Reserving FACS table memory at [mem 0x7fff0200-0x7fff023f]
[ 0.000000] ACPI: Reserving APIC table memory at [mem 0x7fff0240-0x7fff0293]
[ 0.000000] ACPI: Reserving SSDT table memory at [mem 0x7fff02a0-0x7fff060b]
[ 0.000000] No NUMA configuration found
[ 0.000000] Faking a node at [mem 0x0000000000000000-0x000000007ffeffff]
[ 0.000000] NODE_DATA(0) allocated [mem 0x7ffc5000-0x7ffeffff]
[ 0.000000] kvm-clock: cpu 0, msr 0:7ff44001, primary cpu clock
[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[ 0.000000] kvm-clock: using sched offset of 371707454769 cycles
[ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[ 0.000000] Zone ranges:
[ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.000000] DMA32 [mem 0x0000000001000000-0x000000007ffeffff]
[ 0.000000] Normal empty
[ 0.000000] Device empty
[ 0.000000] Movable zone start for each node
[ 0.000000] Early memory node ranges
[ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffeffff]
[ 0.000000] Reserved but unavailable: 104 pages
[ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffeffff]
[ 0.000000] ACPI: PM-Timer IO Port: 0x4008
[ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[ 0.000000] Using ACPI (MADT) for SMP configuration information
[ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[ 0.000000] e820: [mem 0x80000000-0xfebfffff] available for PCI devices
[ 0.000000] Booting paravirtualized kernel on KVM
[ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[ 0.000000] percpu: Embedded 50 pages/cpu s167936 r8192 d28672 u2097152
[ 0.000000] PV qspinlock hash table entries: 256 (order: 0, 4096 bytes)
[ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 515961
[ 0.000000] Policy zone: DMA32
[ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.15.0-213-generic root=UUID=f685bb41-0e3b-40c4-89c1-eea0f0583525 ro console=tty1 console=ttyS0
[ 0.000000] Memory: 2014168K/2096696K available (12300K kernel code, 2477K rwdata, 4324K rodata, 2480K init, 2720K bss, 82528K reserved, 0K cma-reserved)
[ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[ 0.000000] Kernel/User page tables isolation: enabled
[ 0.000000] ftrace: allocating 39508 entries in 155 pages
[ 0.004000] Hierarchical RCU implementation.
[ 0.004000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[ 0.004000] Tasks RCU enabled.
[ 0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[ 0.004000] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16
[ 0.004000] random: crng init done
[ 0.004000] Console: colour VGA+ 80x25
[ 0.004000] console [tty1] enabled
[ 0.004000] console [ttyS0] enabled
[ 0.004000] ACPI: Core revision 20170831
[ 0.004000] ACPI: 2 ACPI AML tables successfully acquired and loaded
[ 0.004000] APIC: Switch to symmetric I/O mode setup
[ 0.004752] x2apic enabled
[ 0.008000] Switched APIC routing to physical x2apic.
[ 0.012000] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.012004] tsc: Detected 2597.354 MHz processor
[ 0.016013] Calibrating delay loop (skipped) preset value.. 5194.70 BogoMIPS (lpj=10389416)
[ 0.020000] pid_max: default: 32768 minimum: 301
[ 0.020037] Security Framework initialized
[ 0.023768] Yama: becoming mindful.
[ 0.024000] AppArmor: AppArmor initialized
[ 0.024258] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[ 0.028000] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[ 0.028018] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.032009] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[ 0.036000] process: using mwait in idle threads
[ 0.036102] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.040000] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.040024] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.044006] Spectre V2 : Mitigation: Retpolines
[ 0.048000] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.048003] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.052000] RETBleed: WARNING: Spectre v2 mitigation leaves CPU vulnerable to RETBleed attacks, data leaks possible!
[ 0.052003] RETBleed: Vulnerable
[ 0.056003] Speculative Store Bypass: Vulnerable
[ 0.060000] MDS: Mitigation: Clear CPU buffers
[ 0.060003] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.064000] SRBDS: Unknown: Dependent on hypervisor status
[ 0.072000] Freeing SMP alternatives memory: 36K
[ 0.184798] smpboot: CPU0: Intel(R) Core(TM) i7-8850H CPU @ 2.60GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[ 0.188090] Performance Events: unsupported p6 CPU model 158 no PMU driver, software events only.
[ 0.192064] Hierarchical SRCU implementation.
[ 0.196000] NMI watchdog: Perf event create on CPU 0 failed with -2
[ 0.196000] NMI watchdog: Perf NMI watchdog permanently disabled
[ 0.196044] smp: Bringing up secondary CPUs ...
[ 0.200000] smp: Brought up 1 node, 1 CPU
[ 0.200003] smpboot: Max logical packages: 1
[ 0.203799] smpboot: Total of 1 processors activated (5194.70 BogoMIPS)
[ 0.204161] devtmpfs: initialized
[ 0.207264] x86/mm: Memory block size: 128MB
[ 0.208000] evm: security.selinux
[ 0.208006] evm: security.SMACK64
[ 0.211035] evm: security.SMACK64EXEC
[ 0.212000] evm: security.SMACK64TRANSMUTE
[ 0.212004] evm: security.SMACK64MMAP
[ 0.215317] evm: security.apparmor
[ 0.216000] evm: security.ima
[ 0.216003] evm: security.capability
[ 0.219359] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.220011] futex hash table entries: 256 (order: 2, 16384 bytes)
[ 0.224000] pinctrl core: initialized pinctrl subsystem
[ 0.228280] RTC time: 9:26:59, date: 03/25/24
[ 0.232000] NET: Registered protocol family 16
[ 0.232076] audit: initializing netlink subsys (disabled)
[ 0.236000] cpuidle: using governor ladder
[ 0.236004] cpuidle: using governor menu
[ 0.239553] ACPI: bus type PCI registered
[ 0.240000] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.240000] PCI: Using configuration type 1 for base access
[ 0.240000] audit: type=2000 audit(1711359224.866:1): state=initialized audit_enabled=0 res=1
[ 0.240000] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.240000] ACPI: Added _OSI(Module Device)
[ 0.240000] ACPI: Added _OSI(Processor Device)
[ 0.240006] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.244000] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.244000] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.244010] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.248000] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.248867] ACPI: Executed 1 blocks of module-level executable AML code
[ 0.255792] ACPI: Interpreter enabled
[ 0.256000] ACPI: (supports S0 S5)
[ 0.256004] ACPI: Using IOAPIC for interrupt routing