ubuntuusers.de

Checks User Standard

Autor:
michahe
Datum:
22. April 2021 19:34
Code:
  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
=========================================================
systemd-analyze critical-chain
The time when unit became active or started is printed after the "@" character.
The time the unit took to start is printed after the "+" character.

graphical.target @10.326s
└─multi-user.target @10.326s
  └─smbd.service @10.220s +105ms
    └─network-online.target @10.206s
      └─NetworkManager-wait-online.service @2.477s +7.728s
        └─NetworkManager.service @2.132s +330ms
          └─dbus.service @2.116s
            └─basic.target @2.082s
              └─sockets.target @2.078s
                └─uuidd.socket @2.076s
                  └─sysinit.target @1.966s
                    └─systemd-backlight@leds:tpacpi::kbd_backlight.service @2.363s +11ms
                      └─system-systemd\x2dbacklight.slice @1.493s
                        └─system.slice @221ms
                          └─-.slice @221ms
=========================================================
journalctl -k
-- Logs begin at Sun 2020-03-08 11:20:40 CET, end at Thu 2021-04-22 18:45:01 CEST. --
Apr 22 17:04:35 PCmichael kernel: microcode: microcode updated early to revision 0x26, date = 2019-11-12
Apr 22 17:04:35 PCmichael kernel: Linux version 5.4.0-72-generic (buildd@lcy01-amd64-019) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) #80-Ubuntu SMP Mon Apr 12 17:35:00 UTC 2021 (Ubuntu 5.4.0-72.80-generic 5.4.101)
Apr 22 17:04:35 PCmichael kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-72-generic root=UUID=7b971027-9189-4e6e-96b8-4d0357f18ad6 ro text
Apr 22 17:04:35 PCmichael kernel: KERNEL supported cpus:
Apr 22 17:04:35 PCmichael kernel:   Intel GenuineIntel
Apr 22 17:04:35 PCmichael kernel:   AMD AuthenticAMD
Apr 22 17:04:35 PCmichael kernel:   Hygon HygonGenuine
Apr 22 17:04:35 PCmichael kernel:   Centaur CentaurHauls
Apr 22 17:04:35 PCmichael kernel:   zhaoxin   Shanghai  
Apr 22 17:04:35 PCmichael kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Apr 22 17:04:35 PCmichael kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Apr 22 17:04:35 PCmichael kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Apr 22 17:04:35 PCmichael kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Apr 22 17:04:35 PCmichael kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Apr 22 17:04:35 PCmichael kernel: BIOS-provided physical RAM map:
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000ce20efff] usable
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000ce20f000-0x00000000dcd3efff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000dcd3f000-0x00000000dce7efff] ACPI NVS
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000dce7f000-0x00000000dcefefff] ACPI data
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000dceff000-0x00000000df9fffff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Apr 22 17:04:35 PCmichael kernel: BIOS-e820: [mem 0x0000000100000000-0x000000021e5fffff] usable
Apr 22 17:04:35 PCmichael kernel: NX (Execute Disable) protection: active
Apr 22 17:04:35 PCmichael kernel: SMBIOS 2.7 present.
Apr 22 17:04:35 PCmichael kernel: DMI: LENOVO 20AL00C6GE/20AL00C6GE, BIOS GIET98WW (2.48 ) 08/08/2019
Apr 22 17:04:35 PCmichael kernel: tsc: Fast TSC calibration using PIT
Apr 22 17:04:35 PCmichael kernel: tsc: Detected 2693.845 MHz processor
Apr 22 17:04:35 PCmichael kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Apr 22 17:04:35 PCmichael kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Apr 22 17:04:35 PCmichael kernel: last_pfn = 0x21e600 max_arch_pfn = 0x400000000
Apr 22 17:04:35 PCmichael kernel: MTRR default type: write-back
Apr 22 17:04:35 PCmichael kernel: MTRR fixed ranges enabled:
Apr 22 17:04:35 PCmichael kernel:   00000-9FFFF write-back
Apr 22 17:04:35 PCmichael kernel:   A0000-BFFFF uncachable
Apr 22 17:04:35 PCmichael kernel:   C0000-FFFFF write-protect
Apr 22 17:04:35 PCmichael kernel: MTRR variable ranges enabled:
Apr 22 17:04:35 PCmichael kernel:   0 base 00E0000000 mask 7FE0000000 uncachable
Apr 22 17:04:35 PCmichael kernel:   1 base 00DE000000 mask 7FFE000000 uncachable
Apr 22 17:04:35 PCmichael kernel:   2 base 00DD000000 mask 7FFF000000 uncachable
Apr 22 17:04:35 PCmichael kernel:   3 base 00DCF00000 mask 7FFFF00000 uncachable
Apr 22 17:04:35 PCmichael kernel:   4 disabled
Apr 22 17:04:35 PCmichael kernel:   5 disabled
Apr 22 17:04:35 PCmichael kernel:   6 disabled
Apr 22 17:04:35 PCmichael kernel:   7 disabled
Apr 22 17:04:35 PCmichael kernel:   8 disabled
Apr 22 17:04:35 PCmichael kernel:   9 disabled
Apr 22 17:04:35 PCmichael kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Apr 22 17:04:35 PCmichael kernel: last_pfn = 0xce20f max_arch_pfn = 0x400000000
Apr 22 17:04:35 PCmichael kernel: found SMP MP-table at [mem 0x000f0100-0x000f010f]
Apr 22 17:04:35 PCmichael kernel: check: Scanning 1 areas for low memory corruption
Apr 22 17:04:35 PCmichael kernel: Using GB pages for direct mapping
Apr 22 17:04:35 PCmichael kernel: RAMDISK: [mem 0x2e1af000-0x330cefff]
Apr 22 17:04:35 PCmichael kernel: ACPI: Early table checksum verification disabled
Apr 22 17:04:35 PCmichael kernel: ACPI: RSDP 0x00000000000F0120 000024 (v02 LENOVO)
Apr 22 17:04:35 PCmichael kernel: ACPI: XSDT 0x00000000DCEFE170 0000F4 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: FACP 0x00000000DCEF8000 00010C (v05 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: DSDT 0x00000000DCEE2000 010C3E (v01 LENOVO TP-GI    00002480 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: FACS 0x00000000DCE6A000 000040
Apr 22 17:04:35 PCmichael kernel: ACPI: SLIC 0x00000000DCEFD000 000176 (v01 LENOVO TP-GI    00002480 PTEC 00000001)
Apr 22 17:04:35 PCmichael kernel: ACPI: DBGP 0x00000000DCEFB000 000034 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: ECDT 0x00000000DCEFA000 000052 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: HPET 0x00000000DCEF7000 000038 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: APIC 0x00000000DCEF6000 000098 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: MCFG 0x00000000DCEF5000 00003C (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEF4000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEF3000 000486 (v01 LENOVO TP-SSDT2 00000200 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEE1000 0009CB (v01 LENOVO SataAhci 00001000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEE0000 000152 (v01 LENOVO Rmv_Batt 00001000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEDF000 0007F5 (v01 LENOVO Cpu0Ist  00003000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEDE000 000AD8 (v01 LENOVO CpuPm    00003000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEDC000 00125C (v01 LENOVO SaSsdt   00003000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCEDB000 000379 (v01 LENOVO CppcTabl 00001000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCCT 0x00000000DCEDA000 00006E (v05 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCED9000 000AC4 (v01 LENOVO Cpc_Tabl 00001000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: TCPA 0x00000000DCED8000 000032 (v02 PTL    LENOVO   06040000 LNVO 00000001)
Apr 22 17:04:35 PCmichael kernel: ACPI: UEFI 0x00000000DCED7000 000042 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: MSDM 0x00000000DCDD2000 000055 (v03 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: ASF! 0x00000000DCEFC000 0000A5 (v32 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: BATB 0x00000000DCED6000 000046 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: FPDT 0x00000000DCED5000 000064 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: UEFI 0x00000000DCED4000 0002F6 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0x00000000DCED3000 00047F (v01 LENOVO IsctTabl 00001000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: DMAR 0x00000000DCED2000 0000B0 (v01 LENOVO TP-GI    00002480 PTEC 00000002)
Apr 22 17:04:35 PCmichael kernel: ACPI: Local APIC address 0xfee00000
Apr 22 17:04:35 PCmichael kernel: No NUMA configuration found
Apr 22 17:04:35 PCmichael kernel: Faking a node at [mem 0x0000000000000000-0x000000021e5fffff]
Apr 22 17:04:35 PCmichael kernel: NODE_DATA(0) allocated [mem 0x21e5d3000-0x21e5fdfff]
Apr 22 17:04:35 PCmichael kernel: Zone ranges:
Apr 22 17:04:35 PCmichael kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Apr 22 17:04:35 PCmichael kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Apr 22 17:04:35 PCmichael kernel:   Normal   [mem 0x0000000100000000-0x000000021e5fffff]
Apr 22 17:04:35 PCmichael kernel:   Device   empty
Apr 22 17:04:35 PCmichael kernel: Movable zone start for each node
Apr 22 17:04:35 PCmichael kernel: Early memory node ranges
Apr 22 17:04:35 PCmichael kernel:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
Apr 22 17:04:35 PCmichael kernel:   node   0: [mem 0x0000000000100000-0x00000000ce20efff]
Apr 22 17:04:35 PCmichael kernel:   node   0: [mem 0x0000000100000000-0x000000021e5fffff]
Apr 22 17:04:35 PCmichael kernel: Zeroed struct page in unavailable ranges: 14421 pages
Apr 22 17:04:35 PCmichael kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000021e5fffff]
Apr 22 17:04:35 PCmichael kernel: On node 0 totalpages: 2017195
Apr 22 17:04:35 PCmichael kernel:   DMA zone: 64 pages used for memmap
Apr 22 17:04:35 PCmichael kernel:   DMA zone: 21 pages reserved
Apr 22 17:04:35 PCmichael kernel:   DMA zone: 3996 pages, LIFO batch:0
Apr 22 17:04:35 PCmichael kernel:   DMA32 zone: 13129 pages used for memmap
Apr 22 17:04:35 PCmichael kernel:   DMA32 zone: 840207 pages, LIFO batch:63
Apr 22 17:04:35 PCmichael kernel:   Normal zone: 18328 pages used for memmap
Apr 22 17:04:35 PCmichael kernel:   Normal zone: 1172992 pages, LIFO batch:63
Apr 22 17:04:35 PCmichael kernel: Reserving Intel graphics memory at [mem 0xdda00000-0xdf9fffff]
Apr 22 17:04:35 PCmichael kernel: ACPI: PM-Timer IO Port: 0x1808
Apr 22 17:04:35 PCmichael kernel: ACPI: Local APIC address 0xfee00000
Apr 22 17:04:35 PCmichael kernel: ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Apr 22 17:04:35 PCmichael kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Apr 22 17:04:35 PCmichael kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
Apr 22 17:04:35 PCmichael kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Apr 22 17:04:35 PCmichael kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Apr 22 17:04:35 PCmichael kernel: ACPI: IRQ0 used by override.
Apr 22 17:04:35 PCmichael kernel: ACPI: IRQ9 used by override.
Apr 22 17:04:35 PCmichael kernel: Using ACPI (MADT) for SMP configuration information
Apr 22 17:04:35 PCmichael kernel: ACPI: HPET id: 0x8086a301 base: 0xfed00000
Apr 22 17:04:35 PCmichael kernel: TSC deadline timer available
Apr 22 17:04:35 PCmichael kernel: smpboot: Allowing 8 CPUs, 4 hotplug CPUs
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xce20f000-0xdcd3efff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xdcd3f000-0xdce7efff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xdce7f000-0xdcefefff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xdceff000-0xdf9fffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfe100fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfe113000-0xfebfffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Apr 22 17:04:35 PCmichael kernel: PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Apr 22 17:04:35 PCmichael kernel: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
Apr 22 17:04:35 PCmichael kernel: Booting paravirtualized kernel on bare hardware
Apr 22 17:04:35 PCmichael kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Apr 22 17:04:35 PCmichael kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
Apr 22 17:04:35 PCmichael kernel: percpu: Embedded 55 pages/cpu s188416 r8192 d28672 u262144
Apr 22 17:04:35 PCmichael kernel: pcpu-alloc: s188416 r8192 d28672 u262144 alloc=1*2097152
Apr 22 17:04:35 PCmichael kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Apr 22 17:04:35 PCmichael kernel: Built 1 zonelists, mobility grouping on.  Total pages: 1985653
Apr 22 17:04:35 PCmichael kernel: Policy zone: Normal
Apr 22 17:04:35 PCmichael kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.4.0-72-generic root=UUID=7b971027-9189-4e6e-96b8-4d0357f18ad6 ro text
Apr 22 17:04:35 PCmichael kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Apr 22 17:04:35 PCmichael kernel: Calgary: detecting Calgary via BIOS EBDA area
Apr 22 17:04:35 PCmichael kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Apr 22 17:04:35 PCmichael kernel: Memory: 7747672K/8068780K available (14339K kernel code, 2400K rwdata, 5008K rodata, 2732K init, 4972K bss, 321108K reserved, 0K cma-reserved)
Apr 22 17:04:35 PCmichael kernel: random: get_random_u64 called from kmem_cache_open+0x2d/0x410 with crng_init=0
Apr 22 17:04:35 PCmichael kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Apr 22 17:04:35 PCmichael kernel: Kernel/User page tables isolation: enabled
Apr 22 17:04:35 PCmichael kernel: ftrace: allocating 44576 entries in 175 pages
Apr 22 17:04:35 PCmichael kernel: rcu: Hierarchical RCU implementation.
Apr 22 17:04:35 PCmichael kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
Apr 22 17:04:35 PCmichael kernel:         Tasks RCU enabled.
Apr 22 17:04:35 PCmichael kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Apr 22 17:04:35 PCmichael kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
Apr 22 17:04:35 PCmichael kernel: NR_IRQS: 524544, nr_irqs: 760, preallocated irqs: 16
Apr 22 17:04:35 PCmichael kernel: random: crng done (trusting CPU's manufacturer)
Apr 22 17:04:35 PCmichael kernel: Console: colour dummy device 80x25
Apr 22 17:04:35 PCmichael kernel: printk: console [tty0] enabled
Apr 22 17:04:35 PCmichael kernel: ACPI: Core revision 20190816
Apr 22 17:04:35 PCmichael kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Apr 22 17:04:35 PCmichael kernel: APIC: Switch to symmetric I/O mode setup
Apr 22 17:04:35 PCmichael kernel: DMAR: Host address width 39
Apr 22 17:04:35 PCmichael kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Apr 22 17:04:35 PCmichael kernel: DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c0000020660462 ecap f0101a
Apr 22 17:04:35 PCmichael kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Apr 22 17:04:35 PCmichael kernel: DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008020660462 ecap f010da
Apr 22 17:04:35 PCmichael kernel: DMAR: RMRR base: 0x000000daec4000 end: 0x000000daedafff
Apr 22 17:04:35 PCmichael kernel: DMAR: RMRR base: 0x000000dd800000 end: 0x000000df9fffff
Apr 22 17:04:35 PCmichael kernel: DMAR-IR: IOAPIC id 2 under DRHD base  0xfed91000 IOMMU 1
Apr 22 17:04:35 PCmichael kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Apr 22 17:04:35 PCmichael kernel: DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
Apr 22 17:04:35 PCmichael kernel: DMAR-IR: Enabled IRQ remapping in x2apic mode
Apr 22 17:04:35 PCmichael kernel: x2apic enabled
Apr 22 17:04:35 PCmichael kernel: Switched APIC routing to cluster x2apic.
Apr 22 17:04:35 PCmichael kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Apr 22 17:04:35 PCmichael kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x26d488488f3, max_idle_ns: 440795332517 ns
Apr 22 17:04:35 PCmichael kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 5387.69 BogoMIPS (lpj=10775380)
Apr 22 17:04:35 PCmichael kernel: pid_max: default: 32768 minimum: 301
Apr 22 17:04:35 PCmichael kernel: LSM: Security Framework initializing
Apr 22 17:04:35 PCmichael kernel: Yama: becoming mindful.
Apr 22 17:04:35 PCmichael kernel: AppArmor: AppArmor initialized
Apr 22 17:04:35 PCmichael kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE tmpfs ***
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE proc ***
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE cgroup1 ***
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE cgroup2 ***
Apr 22 17:04:35 PCmichael kernel: mce: CPU0: Thermal monitoring enabled (TM1)
Apr 22 17:04:35 PCmichael kernel: process: using mwait in idle threads
Apr 22 17:04:35 PCmichael kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
Apr 22 17:04:35 PCmichael kernel: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
Apr 22 17:04:35 PCmichael kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Apr 22 17:04:35 PCmichael kernel: Spectre V2 : Mitigation: Full generic retpoline
Apr 22 17:04:35 PCmichael kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Apr 22 17:04:35 PCmichael kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Apr 22 17:04:35 PCmichael kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Apr 22 17:04:35 PCmichael kernel: Spectre V2 : User space: Mitigation: STIBP via seccomp and prctl
Apr 22 17:04:35 PCmichael kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Apr 22 17:04:35 PCmichael kernel: SRBDS: Mitigation: Microcode
Apr 22 17:04:35 PCmichael kernel: MDS: Mitigation: Clear CPU buffers
Apr 22 17:04:35 PCmichael kernel: Freeing SMP alternatives memory: 40K
Apr 22 17:04:35 PCmichael kernel: smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (family: 0x6, model: 0x45, stepping: 0x1)
Apr 22 17:04:35 PCmichael kernel: Performance Events: PEBS fmt2+, Haswell events, 16-deep LBR, full-width counters, Intel PMU driver.
Apr 22 17:04:35 PCmichael kernel: ... version:                3
Apr 22 17:04:35 PCmichael kernel: ... bit width:              48
Apr 22 17:04:35 PCmichael kernel: ... generic registers:      4
Apr 22 17:04:35 PCmichael kernel: ... value mask:             0000ffffffffffff
Apr 22 17:04:35 PCmichael kernel: ... max period:             00007fffffffffff
Apr 22 17:04:35 PCmichael kernel: ... fixed-purpose events:   3
Apr 22 17:04:35 PCmichael kernel: ... event mask:             000000070000000f
Apr 22 17:04:35 PCmichael kernel: rcu: Hierarchical SRCU implementation.
Apr 22 17:04:35 PCmichael kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Apr 22 17:04:35 PCmichael kernel: smp: Bringing up secondary CPUs ...
Apr 22 17:04:35 PCmichael kernel: x86: Booting SMP configuration:
Apr 22 17:04:35 PCmichael kernel: .... node  #0, CPUs:      #1
Apr 22 17:04:35 PCmichael kernel: MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
Apr 22 17:04:35 PCmichael kernel:  #2 #3
Apr 22 17:04:35 PCmichael kernel: smp: Brought up 1 node, 4 CPUs
Apr 22 17:04:35 PCmichael kernel: smpboot: Max logical packages: 2
Apr 22 17:04:35 PCmichael kernel: smpboot: Total of 4 processors activated (21550.76 BogoMIPS)
Apr 22 17:04:35 PCmichael kernel: devtmpfs: initialized
Apr 22 17:04:35 PCmichael kernel: x86/mm: Memory block size: 128MB
Apr 22 17:04:35 PCmichael kernel: PM: Registering ACPI NVS region [mem 0xdcd3f000-0xdce7efff] (1310720 bytes)
Apr 22 17:04:35 PCmichael kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Apr 22 17:04:35 PCmichael kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: pinctrl core: initialized pinctrl subsystem
Apr 22 17:04:35 PCmichael kernel: PM: RTC time: 15:04:21, date: 2021-04-22
Apr 22 17:04:35 PCmichael kernel: NET: Registered protocol family 16
Apr 22 17:04:35 PCmichael kernel: audit: initializing netlink subsys (disabled)
Apr 22 17:04:35 PCmichael kernel: audit: type=2000 audit(1619103861.052:1): state=initialized audit_enabled=0 res=1
Apr 22 17:04:35 PCmichael kernel: EISA bus registered
Apr 22 17:04:35 PCmichael kernel: cpuidle: using governor ladder
Apr 22 17:04:35 PCmichael kernel: cpuidle: using governor menu
Apr 22 17:04:35 PCmichael kernel: Detected 1 PCC Subspaces
Apr 22 17:04:35 PCmichael kernel: Registering PCC driver as Mailbox controller
Apr 22 17:04:35 PCmichael kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Apr 22 17:04:35 PCmichael kernel: ACPI: bus type PCI registered
Apr 22 17:04:35 PCmichael kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Apr 22 17:04:35 PCmichael kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Apr 22 17:04:35 PCmichael kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Apr 22 17:04:35 PCmichael kernel: PCI: Using configuration type 1 for base access
Apr 22 17:04:35 PCmichael kernel: core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
Apr 22 17:04:35 PCmichael kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Apr 22 17:04:35 PCmichael kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Apr 22 17:04:35 PCmichael kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Apr 22 17:04:35 PCmichael kernel: fbcon: Taking over console
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(Module Device)
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(Processor Device)
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(Processor Aggregator Device)
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(Linux-Dell-Video)
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Apr 22 17:04:35 PCmichael kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Apr 22 17:04:35 PCmichael kernel: ACPI: 11 ACPI AML tables successfully acquired and loaded
Apr 22 17:04:35 PCmichael kernel: ACPI: EC: EC started
Apr 22 17:04:35 PCmichael kernel: ACPI: EC: interrupt blocked
Apr 22 17:04:35 PCmichael kernel: ACPI: \: Used as first EC
Apr 22 17:04:35 PCmichael kernel: ACPI: \: GPE=0x25, IRQ=-1, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Apr 22 17:04:35 PCmichael kernel: ACPI: EC: Boot ECDT EC used to handle transactions
Apr 22 17:04:35 PCmichael kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Apr 22 17:04:35 PCmichael kernel: ACPI Error: Needed type [Reference], found [Integer] 00000000b2cbba90 (20190816/exresop-66)
Apr 22 17:04:35 PCmichael kernel: ACPI Error: AE_AML_OPERAND_TYPE, While resolving operands for [Store] (20190816/dswexec-431)
Apr 22 17:04:35 PCmichael kernel: No Local Variables are initialized for Method [_PDC]
Apr 22 17:04:35 PCmichael kernel: Initialized Arguments for Method [_PDC]:  (1 arguments defined for method invocation)
Apr 22 17:04:35 PCmichael kernel:   Arg0:   0000000048d0fb4d <Obj>           Buffer(12) 01 00 00 00 01 00 00 00
Apr 22 17:04:35 PCmichael kernel: ACPI Error: Aborting method \_PR.CPU0._PDC due to previous error (AE_AML_OPERAND_TYPE) (20190816/psparse-529)
Apr 22 17:04:35 PCmichael kernel: ACPI: Dynamic OEM Table Load:
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0xFFFF9713D4B39000 0005AA (v01 PmRef  ApIst    00003000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: Dynamic OEM Table Load:
Apr 22 17:04:35 PCmichael kernel: ACPI: SSDT 0xFFFF9713D4AB1C00 000119 (v01 PmRef  ApCst    00003000 INTL 20120711)
Apr 22 17:04:35 PCmichael kernel: ACPI: Interpreter enabled
Apr 22 17:04:35 PCmichael kernel: ACPI: (supports S0 S3 S4 S5)
Apr 22 17:04:35 PCmichael kernel: ACPI: Using IOAPIC for interrupt routing
Apr 22 17:04:35 PCmichael kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Apr 22 17:04:35 PCmichael kernel: ACPI: Enabled 6 GPEs in block 00 to 7F
Apr 22 17:04:35 PCmichael kernel: ACPI: Power Resource [PUBS] (on)
Apr 22 17:04:35 PCmichael kernel: acpi PNP0C0A:01: ACPI dock station (docks/bays count: 1)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 *6 7 9 10 11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 *10 11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 9 10 11)
Apr 22 17:04:35 PCmichael kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Apr 22 17:04:35 PCmichael kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Apr 22 17:04:35 PCmichael kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug PCIeCapability LTR]
Apr 22 17:04:35 PCmichael kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Apr 22 17:04:35 PCmichael kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR]
Apr 22 17:04:35 PCmichael kernel: acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
Apr 22 17:04:35 PCmichael kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Apr 22 17:04:35 PCmichael kernel: PCI host bridge to bus 0000:00
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: root bus resource [bus 00-3f]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:03.0: reg 0x10: [mem 0xf0630000-0xf0633fff 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:14.0: reg 0x10: [mem 0xf0620000-0xf062ffff 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:16.0: reg 0x10: [mem 0xf0639000-0xf063901f 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:19.0: [8086:155a] type 00 class 0x020000
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:19.0: reg 0x10: [mem 0xf0600000-0xf061ffff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:19.0: reg 0x14: [mem 0xf063e000-0xf063efff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:19.0: reg 0x18: [io  0x3080-0x309f]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xf0634000-0xf0637fff 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.0: [8086:9c1a] type 01 class 0x060400
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.1: [8086:9c14] type 01 class 0x060400
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xf063d000-0xf063d3ff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: reg 0x10: [io  0x30a8-0x30af]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: reg 0x14: [io  0x30b4-0x30b7]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: reg 0x18: [io  0x30a0-0x30a7]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x30b0-0x30b3]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xf063c000-0xf063c7ff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.2: PME# supported from D3hot
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xf0638000-0xf06380ff 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Apr 22 17:04:35 PCmichael kernel: pci 0000:02:00.0: [10ec:5227] type 00 class 0xff0000
Apr 22 17:04:35 PCmichael kernel: pci 0000:02:00.0: reg 0x10: [mem 0xf0500000-0xf0500fff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:02:00.0: supports D1 D2
Apr 22 17:04:35 PCmichael kernel: pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0500000-0xf05fffff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:03:00.0: [8086:08b2] type 00 class 0x028000
Apr 22 17:04:35 PCmichael kernel: pci 0000:03:00.0: reg 0x10: [mem 0xf0400000-0xf0401fff 64bit]
Apr 22 17:04:35 PCmichael kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf04fffff]
Apr 22 17:04:35 PCmichael kernel: ACPI: EC: interrupt unblocked
Apr 22 17:04:35 PCmichael kernel: ACPI: EC: event unblocked
Apr 22 17:04:35 PCmichael kernel: ACPI: \_SB_.PCI0.LPC_.EC__: GPE=0x25, IRQ=-1, EC_CMD/EC_SC=0x66, EC_DATA=0x62
Apr 22 17:04:35 PCmichael kernel: ACPI: \_SB_.PCI0.LPC_.EC__: Boot DSDT EC used to handle transactions and events
Apr 22 17:04:35 PCmichael kernel: iommu: Default domain type: Translated 
Apr 22 17:04:35 PCmichael kernel: SCSI subsystem initialized
Apr 22 17:04:35 PCmichael kernel: libata version 3.00 loaded.
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Apr 22 17:04:35 PCmichael kernel: vgaarb: loaded
Apr 22 17:04:35 PCmichael kernel: ACPI: bus type USB registered
Apr 22 17:04:35 PCmichael kernel: usbcore: registered new interface driver usbfs
Apr 22 17:04:35 PCmichael kernel: usbcore: registered new interface driver hub
Apr 22 17:04:35 PCmichael kernel: usbcore: registered new device driver usb
Apr 22 17:04:35 PCmichael kernel: pps_core: LinuxPPS API ver. 1 registered
Apr 22 17:04:35 PCmichael kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Apr 22 17:04:35 PCmichael kernel: PTP clock support registered
Apr 22 17:04:35 PCmichael kernel: EDAC MC: Ver: 3.0.0
Apr 22 17:04:35 PCmichael kernel: PCI: Using ACPI for IRQ routing
Apr 22 17:04:35 PCmichael kernel: PCI: pci_cache_line_size set to 64 bytes
Apr 22 17:04:35 PCmichael kernel: e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
Apr 22 17:04:35 PCmichael kernel: e820: reserve RAM buffer [mem 0xce20f000-0xcfffffff]
Apr 22 17:04:35 PCmichael kernel: e820: reserve RAM buffer [mem 0x21e600000-0x21fffffff]
Apr 22 17:04:35 PCmichael kernel: NetLabel: Initializing
Apr 22 17:04:35 PCmichael kernel: NetLabel:  domain hash size = 128
Apr 22 17:04:35 PCmichael kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Apr 22 17:04:35 PCmichael kernel: NetLabel:  unlabeled traffic allowed by default
Apr 22 17:04:35 PCmichael kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Apr 22 17:04:35 PCmichael kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Apr 22 17:04:35 PCmichael kernel: clocksource: Switched to clocksource tsc-early
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE bpf ***
Apr 22 17:04:35 PCmichael kernel: VFS: Disk quotas dquot_6.6.0
Apr 22 17:04:35 PCmichael kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE ramfs ***
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE hugetlbfs ***
Apr 22 17:04:35 PCmichael kernel: AppArmor: AppArmor Filesystem Enabled
Apr 22 17:04:35 PCmichael kernel: pnp: PnP ACPI init
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Apr 22 17:04:35 PCmichael kernel: pnp 00:01: [Firmware Bug]: PNP resource [mem 0xfed10000-0xfed13fff] covers only part of 0000:00:00.0 Intel MCH; extending to [mem 0xfed10000-0xfed17fff]
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x1800-0x189f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0800-0x087f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0880-0x08ff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0900-0x097f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0980-0x09ff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0a00-0x0a7f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0a80-0x0aff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0b00-0x0b7f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x0b80-0x0bff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x15e0-0x15ef] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x1600-0x167f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [io  0x1640-0x165f] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0x00000000-0x00000fff] could not be reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0xfed10000-0xfed17fff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Apr 22 17:04:35 PCmichael kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 22 17:04:35 PCmichael kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Apr 22 17:04:35 PCmichael kernel: pnp 00:03: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Apr 22 17:04:35 PCmichael kernel: pnp 00:04: Plug and Play ACPI device, IDs LEN0035 PNP0f13 (active)
Apr 22 17:04:35 PCmichael kernel: pnp 00:05: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
Apr 22 17:04:35 PCmichael kernel: pnp: PnP ACPI: found 6 devices
Apr 22 17:04:35 PCmichael kernel: thermal_sys: Registered thermal governor 'fair_share'
Apr 22 17:04:35 PCmichael kernel: thermal_sys: Registered thermal governor 'bang_bang'
Apr 22 17:04:35 PCmichael kernel: thermal_sys: Registered thermal governor 'step_wise'
Apr 22 17:04:35 PCmichael kernel: thermal_sys: Registered thermal governor 'user_space'
Apr 22 17:04:35 PCmichael kernel: thermal_sys: Registered thermal governor 'power_allocator'
Apr 22 17:04:35 PCmichael kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.0:   bridge window [mem 0xf0500000-0xf05fffff]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf04fffff]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff window]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:02: resource 1 [mem 0xf0500000-0xf05fffff]
Apr 22 17:04:35 PCmichael kernel: pci_bus 0000:03: resource 1 [mem 0xf0400000-0xf04fffff]
Apr 22 17:04:35 PCmichael kernel: NET: Registered protocol family 2
Apr 22 17:04:35 PCmichael kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: TCP: Hash tables configured (established 65536 bind 65536)
Apr 22 17:04:35 PCmichael kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Apr 22 17:04:35 PCmichael kernel: NET: Registered protocol family 1
Apr 22 17:04:35 PCmichael kernel: NET: Registered protocol family 44
Apr 22 17:04:35 PCmichael kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Apr 22 17:04:35 PCmichael kernel: PCI: CLS 64 bytes, default 64
Apr 22 17:04:35 PCmichael kernel: Trying to unpack rootfs image as initramfs...
Apr 22 17:04:35 PCmichael kernel: Freeing initrd memory: 81024K
Apr 22 17:04:35 PCmichael kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Apr 22 17:04:35 PCmichael kernel: software IO TLB: mapped [mem 0xca20f000-0xce20f000] (64MB)
Apr 22 17:04:35 PCmichael kernel: check: Scanning for low memory corruption every 60 seconds
Apr 22 17:04:35 PCmichael kernel: Initialise system trusted keyrings
Apr 22 17:04:35 PCmichael kernel: Key type blacklist registered
Apr 22 17:04:35 PCmichael kernel: workingset: timestamp_bits=36 max_order=21 bucket_order=0
Apr 22 17:04:35 PCmichael kernel: zbud: loaded
Apr 22 17:04:35 PCmichael kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Apr 22 17:04:35 PCmichael kernel: fuse: init (API version 7.31)
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE fuse ***
Apr 22 17:04:35 PCmichael kernel: *** VALIDATE fuse ***
Apr 22 17:04:35 PCmichael kernel: Platform Keyring initialized
Apr 22 17:04:35 PCmichael kernel: Key type asymmetric registered
Apr 22 17:04:35 PCmichael kernel: Asymmetric key parser 'x509' registered
Apr 22 17:04:35 PCmichael kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
Apr 22 17:04:35 PCmichael kernel: io scheduler mq-deadline registered
Apr 22 17:04:35 PCmichael kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Apr 22 17:04:35 PCmichael kernel: vesafb: mode is 1920x1080x32, linelength=7680, pages=0
Apr 22 17:04:35 PCmichael kernel: vesafb: scrolling: redraw
Apr 22 17:04:35 PCmichael kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Apr 22 17:04:35 PCmichael kernel: vesafb: framebuffer at 0xe0000000, mapped to 0x00000000d4d878d2, using 8128k, total 8128k
Apr 22 17:04:35 PCmichael kernel: Console: switching to colour frame buffer device 240x67
Apr 22 17:04:35 PCmichael kernel: fb0: VESA VGA frame buffer device
Apr 22 17:04:35 PCmichael kernel: intel_idle: MWAIT substates: 0x11142120
Apr 22 17:04:35 PCmichael kernel: intel_idle: v0.4.1 model 0x45
Apr 22 17:04:35 PCmichael kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Apr 22 17:04:35 PCmichael kernel: ACPI: AC Adapter [AC] (off-line)
Apr 22 17:04:35 PCmichael kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0
Apr 22 17:04:35 PCmichael kernel: ACPI: Lid Switch [LID]
Apr 22 17:04:35 PCmichael kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input1
Apr 22 17:04:35 PCmichael kernel: ACPI: Sleep Button [SLPB]
Apr 22 17:04:35 PCmichael kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Apr 22 17:04:35 PCmichael kernel: ACPI: Power Button [PWRF]
Apr 22 17:04:35 PCmichael kernel: thermal LNXTHERM:00: registered as thermal_zone0
Apr 22 17:04:35 PCmichael kernel: ACPI: Thermal Zone [THM0] (46 C)
Apr 22 17:04:35 PCmichael kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Apr 22 17:04:35 PCmichael kernel: Linux agpgart interface v0.103
Apr 22 17:04:35 PCmichael kernel: tpm_tis 00:05: 1.2 TPM (device-id 0x0, rev-id 78)
Apr 22 17:04:35 PCmichael kernel: battery: ACPI: Battery Slot [BAT0] (battery present)
Apr 22 17:04:35 PCmichael kernel: battery: ACPI: Battery Slot [BAT1] (battery present)
Apr 22 17:04:35 PCmichael kernel: tpm tpm0: TPM is disabled/deactivated (0x6)
Apr 22 17:04:35 PCmichael kernel: loop: module loaded
Apr 22 17:04:35 PCmichael kernel: libphy: Fixed MDIO Bus: probed
Apr 22 17:04:35 PCmichael kernel: tun: Universal TUN/TAP device driver, 1.6
Apr 22 17:04:35 PCmichael kernel: PPP generic driver version 2.4.2
Apr 22 17:04:35 PCmichael kernel: VFIO - User Level meta-driver version: 0.3
Apr 22 17:04:35 PCmichael kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Apr 22 17:04:35 PCmichael kernel: ehci-pci: EHCI PCI platform driver
Apr 22 17:04:35 PCmichael kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Apr 22 17:04:35 PCmichael kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
Apr 22 17:04:35 PCmichael kernel: ehci-pci 0000:00:1d.0: debug port 2
Apr 22 17:04:35 PCmichael kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Apr 22 17:04:35 PCmichael kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xf063d000
Apr 22 17:04:35 PCmichael kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Apr 22 17:04:35 PCmichael kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Apr 22 17:04:35 PCmichael kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 22 17:04:35 PCmichael kernel: usb usb1: Product: EHCI Host Controller
Apr 22 17:04:35 PCmichael kernel: usb usb1: Manufacturer: Linux 5.4.0-72-generic ehci_hcd
Apr 22 17:04:35 PCmichael kernel: usb usb1: SerialNumber: 0000:00:1d.0
Apr 22 17:04:35 PCmichael kernel: hub 1-0:1.0: USB hub found
Apr 22 17:04:35 PCmichael kernel: hub 1-0:1.0: 3 ports detected
Apr 22 17:04:35 PCmichael kernel: ehci-platform: EHCI generic platform driver
Apr 22 17:04:35 PCmichael kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Apr 22 17:04:35 PCmichael kernel: ohci-pci: OHCI PCI platform driver
Apr 22 17:04:35 PCmichael kernel: ohci-platform: OHCI generic platform driver
Apr 22 17:04:35 PCmichael kernel: uhci_hcd: USB Universal Host Controller Interface driver
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x000000000004b810
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Apr 22 17:04:35 PCmichael kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Apr 22 17:04:35 PCmichael kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Apr 22 17:04:35 PCmichael kernel: tsc: Refined TSC clocksource calibration: 2693.764 MHz
Apr 22 17:04:35 PCmichael kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 22 17:04:35 PCmichael kernel: usb usb2: Product: xHCI Host Controller
Apr 22 17:04:35 PCmichael kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x26d43bb7f27, max_idle_ns: 440795270902 ns
Apr 22 17:04:35 PCmichael kernel: usb usb2: Manufacturer: Linux 5.4.0-72-generic xhci-hcd
Apr 22 17:04:35 PCmichael kernel: usb usb2: SerialNumber: 0000:00:14.0
Apr 22 17:04:35 PCmichael kernel: clocksource: Switched to clocksource tsc
Apr 22 17:04:35 PCmichael kernel: hub 2-0:1.0: USB hub found
Apr 22 17:04:35 PCmichael kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=8000, bcdDevice= 0.04
Apr 22 17:04:35 PCmichael kernel: hub 2-0:1.0: 9 ports detected
Apr 22 17:04:35 PCmichael kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Apr 22 17:04:35 PCmichael kernel: hub 1-1:1.0: USB hub found
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller
Apr 22 17:04:35 PCmichael kernel: hub 1-1:1.0: 8 ports detected
Apr 22 17:04:35 PCmichael kernel: usb usb2-port4: couldn't allocate usb_device
Apr 22 17:04:35 PCmichael kernel: usb usb2-port6: couldn't allocate usb_device
Apr 22 17:04:35 PCmichael kernel: usb usb2-port7: couldn't allocate usb_device
Apr 22 17:04:35 PCmichael kernel: usb usb2-port8: couldn't allocate usb_device
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Apr 22 17:04:35 PCmichael kernel: usb 1-1.5: new full-speed USB device number 3 using ehci-pci
Apr 22 17:04:35 PCmichael kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
Apr 22 17:04:35 PCmichael kernel: usb 1-1.5: New USB device found, idVendor=058f, idProduct=9540, bcdDevice= 1.20
Apr 22 17:04:35 PCmichael kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
Apr 22 17:04:35 PCmichael kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Apr 22 17:04:35 PCmichael kernel: usb 2-4: new high-speed USB device number 2 using xhci_hcd
Apr 22 17:04:35 PCmichael kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 22 17:04:35 PCmichael kernel: usb 2-4: New USB device found, idVendor=1199, idProduct=a001, bcdDevice=17.29
Apr 22 17:04:35 PCmichael kernel: usb 2-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Apr 22 17:04:35 PCmichael kernel: usb 2-4: Product: Sierra Wireless EM7345 4G LTE
Apr 22 17:04:35 PCmichael kernel: usb 2-4: Manufacturer: Sierra Wireless Inc.
Apr 22 17:04:35 PCmichael kernel: usb 2-4: SerialNumber: 013937000274181
Apr 22 17:04:35 PCmichael kernel: usb 1-1.5: Product: EMV Smartcard Reader
Apr 22 17:04:35 PCmichael kernel: usb 2-6: new full-speed USB device number 3 using xhci_hcd
Apr 22 17:04:35 PCmichael kernel: usb usb3: Product: xHCI Host Controller
Apr 22 17:04:35 PCmichael kernel: usb usb3: Manufacturer: Linux 5.4.0-72-generic xhci-hcd
Apr 22 17:04:35 PCmichael kernel: usb usb3: SerialNumber: 0000:00:14.0
Apr 22 17:04:35 PCmichael kernel: usb 1-1.5: Manufacturer: Generic
Apr 22 17:04:35 PCmichael kernel: usb 2-6: New USB device found, idVendor=138a, idProduct=0017, bcdDevice= 0.78
Apr 22 17:04:35 PCmichael kernel: hub 3-0:1.0: USB hub found
Apr 22 17:04:35 PCmichael kernel: usb 2-6: New USB device strings: Mfr=0, Product=0, SerialNumber=1
Apr 22 17:04:35 PCmichael kernel: usb 2-6: SerialNumber: 9c4c4f5b5be2
Apr 22 17:04:35 PCmichael kernel: usb 2-7: new full-speed USB device number 4 using xhci_hcd
Apr 22 17:04:35 PCmichael kernel: hub 3-0:1.0: 4 ports detected
Apr 22 17:04:35 PCmichael kernel: usb 2-7: New USB device found, idVendor=8087, idProduct=07dc, bcdDevice= 0.01
Apr 22 17:04:35 PCmichael kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Apr 22 17:04:35 PCmichael kernel: usb 2-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Apr 22 17:04:35 PCmichael kernel: usb 2-8: new high-speed USB device number 5 using xhci_hcd
Apr 22 17:04:35 PCmichael kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Apr 22 17:04:35 PCmichael kernel: usb 2-8: New USB device found, idVendor=04ca, idProduct=7035, bcdDevice=10.04
Apr 22 17:04:35 PCmichael kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Apr 22 17:04:35 PCmichael kernel: usb 2-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Apr 22 17:04:35 PCmichael kernel: usb 2-8: Product: Integrated Camera
Apr 22 17:04:35 PCmichael kernel: mousedev: PS/2 mouse device common for all mice
Apr 22 17:04:35 PCmichael kernel: usb 2-8: Manufacturer: J31DBG6SG
Apr 22 17:04:35 PCmichael kernel: rtc_cmos 00:02: RTC can wake from S4
Apr 22 17:04:35 PCmichael kernel: rtc_cmos 00:02: registered as rtc0
Apr 22 17:04:35 PCmichael kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Apr 22 17:04:35 PCmichael kernel: i2c /dev entries driver
Apr 22 17:04:35 PCmichael kernel: device-mapper: uevent: version 1.0.3
Apr 22 17:04:35 PCmichael kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Apr 22 17:04:35 PCmichael kernel: device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Probing EISA bus 0
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: EISA: Cannot allocate resource for mainboard
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 1
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 2
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 3
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 4
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 5
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 6
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 7
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: Cannot allocate resource for EISA slot 8
Apr 22 17:04:35 PCmichael kernel: platform eisa.0: EISA: Detected 0 cards
Apr 22 17:04:35 PCmichael kernel: intel_pstate: Intel P-state driver initializing
Apr 22 17:04:35 PCmichael kernel: ledtrig-cpu: registered to indicate activity on CPUs
Apr 22 17:04:35 PCmichael kernel: drop_monitor: Initializing network drop monitor service
Apr 22 17:04:35 PCmichael kernel: NET: Registered protocol family 10
Apr 22 17:04:35 PCmichael kernel: Segment Routing with IPv6
Apr 22 17:04:35 PCmichael kernel: NET: Registered protocol family 17
Apr 22 17:04:35 PCmichael kernel: Key type dns_resolver registered
Apr 22 17:04:35 PCmichael kernel: RAS: Correctable Errors collector initialized.
Apr 22 17:04:35 PCmichael kernel: microcode: sig=0x40651, pf=0x40, revision=0x26
Apr 22 17:04:35 PCmichael kernel: microcode: Microcode Update Driver: v2.2.
Apr 22 17:04:35 PCmichael kernel: IPI shorthand broadcast: enabled
Apr 22 17:04:35 PCmichael kernel: sched_clock: Marking stable (10483012328, 1590187)->(10488571595, -3969080)
Apr 22 17:04:35 PCmichael kernel: registered taskstats version 1
Apr 22 17:04:35 PCmichael kernel: Loading compiled-in X.509 certificates
Apr 22 17:04:35 PCmichael kernel: Loaded X.509 cert 'Build time autogenerated kernel key: f55c4634ad654377a9ba7bad1ef0d32977b1cff1'
Apr 22 17:04:35 PCmichael kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
Apr 22 17:04:35 PCmichael kernel: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
Apr 22 17:04:35 PCmichael kernel: zswap: loaded using pool lzo/zbud
Apr 22 17:04:35 PCmichael kernel: Key type ._fscrypt registered
Apr 22 17:04:35 PCmichael kernel: Key type .fscrypt registered
Apr 22 17:04:35 PCmichael kernel: Key type big_key registered
Apr 22 17:04:35 PCmichael kernel: Key type trusted registered
Apr 22 17:04:35 PCmichael kernel: Key type encrypted registered
Apr 22 17:04:35 PCmichael kernel: AppArmor: AppArmor sha1 policy hashing enabled
Apr 22 17:04:35 PCmichael kernel: ima: Allocated hash algorithm: sha1
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: Error Communicating to TPM chip
Apr 22 17:04:35 PCmichael kernel: ima: No architecture policies found
Apr 22 17:04:35 PCmichael kernel: evm: Initialising EVM extended attributes:
Apr 22 17:04:35 PCmichael kernel: evm: security.selinux
Apr 22 17:04:35 PCmichael kernel: evm: security.SMACK64
Apr 22 17:04:35 PCmichael kernel: evm: security.SMACK64EXEC
Apr 22 17:04:35 PCmichael kernel: evm: security.SMACK64TRANSMUTE
Apr 22 17:04:35 PCmichael kernel: evm: security.SMACK64MMAP
Apr 22 17:04:35 PCmichael kernel: evm: security.apparmor
Apr 22 17:04:35 PCmichael kernel: evm: security.ima
Apr 22 17:04:35 PCmichael kernel: evm: security.capability
Apr 22 17:04:35 PCmichael kernel: evm: HMAC attrs: 0x1
Apr 22 17:04:35 PCmichael kernel: PM:   Magic number: 1:744:83
Apr 22 17:04:35 PCmichael kernel: event_source uncore_cbox_1: hash matches
Apr 22 17:04:35 PCmichael kernel: rtc_cmos 00:02: setting system clock to 2021-04-22T15:04:32 UTC (1619103872)
Apr 22 17:04:35 PCmichael kernel: Freeing unused decrypted memory: 2040K
Apr 22 17:04:35 PCmichael kernel: Freeing unused kernel image memory: 2732K
Apr 22 17:04:35 PCmichael kernel: Write protecting the kernel read-only data: 22528k
Apr 22 17:04:35 PCmichael kernel: Freeing unused kernel image memory: 2008K
Apr 22 17:04:35 PCmichael kernel: Freeing unused kernel image memory: 1136K
Apr 22 17:04:35 PCmichael kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Apr 22 17:04:35 PCmichael kernel: x86/mm: Checking user space page tables
Apr 22 17:04:35 PCmichael kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Apr 22 17:04:35 PCmichael kernel: Run /init as init process
Apr 22 17:04:35 PCmichael kernel: acpi PNP0C14:01: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Apr 22 17:04:35 PCmichael kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:00)
Apr 22 17:04:35 PCmichael kernel: ahci 0000:00:1f.2: version 3.0
Apr 22 17:04:35 PCmichael kernel: i801_smbus 0000:00:1f.3: SPD Write Disable is set
Apr 22 17:04:35 PCmichael kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x1 impl SATA mode
Apr 22 17:04:35 PCmichael kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Apr 22 17:04:35 PCmichael kernel: ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Apr 22 17:04:35 PCmichael kernel: e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
Apr 22 17:04:35 PCmichael kernel: scsi host0: ahci
Apr 22 17:04:35 PCmichael kernel: e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Apr 22 17:04:35 PCmichael kernel: scsi host1: ahci
Apr 22 17:04:35 PCmichael kernel: e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Apr 22 17:04:35 PCmichael kernel: scsi host2: ahci
Apr 22 17:04:35 PCmichael kernel: ata1: SATA max UDMA/133 abar m2048@0xf063c000 port 0xf063c100 irq 46
Apr 22 17:04:35 PCmichael kernel: ata2: DUMMY
Apr 22 17:04:35 PCmichael kernel: ata3: DUMMY
Apr 22 17:04:35 PCmichael kernel: cryptd: max_cpu_qlen set to 1000
Apr 22 17:04:35 PCmichael kernel: AVX2 version of gcm_enc/dec engaged.
Apr 22 17:04:35 PCmichael kernel: AES CTR mode by8 optimization enabled
Apr 22 17:04:35 PCmichael kernel: e1000e 0000:00:19.0 0000:00:19.0 (uninitialized): registered PHC clock
Apr 22 17:04:35 PCmichael kernel: checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
Apr 22 17:04:35 PCmichael kernel: fb0: switching to inteldrmfb from VESA VGA
Apr 22 17:04:35 PCmichael kernel: Console: switching to colour dummy device 80x25
Apr 22 17:04:35 PCmichael kernel: i915 0000:00:02.0: vgaarb: deactivate vga console
Apr 22 17:04:35 PCmichael kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Apr 22 17:04:35 PCmichael kernel: [drm] Driver supports precise vblank timestamp query.
Apr 22 17:04:35 PCmichael kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
Apr 22 17:04:35 PCmichael kernel: e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 28:d2:44:64:57:78
Apr 22 17:04:35 PCmichael kernel: e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Apr 22 17:04:35 PCmichael kernel: e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: 1000FF-0FF
Apr 22 17:04:35 PCmichael kernel: e1000e 0000:00:19.0 enp0s25: renamed from eth0
Apr 22 17:04:35 PCmichael kernel: [drm] Initialized i915 1.6.0 20190822 for 0000:00:02.0 on minor 0
Apr 22 17:04:35 PCmichael kernel: ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
Apr 22 17:04:35 PCmichael kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
Apr 22 17:04:35 PCmichael kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Apr 22 17:04:35 PCmichael kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Apr 22 17:04:35 PCmichael kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Apr 22 17:04:35 PCmichael kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Apr 22 17:04:35 PCmichael kernel: ata1.00: NCQ Send/Recv Log not supported
Apr 22 17:04:35 PCmichael kernel: ata1.00: ATA-9: Samsung SSD 840 EVO 1TB, EXT0BB0Q, max UDMA/133
Apr 22 17:04:35 PCmichael kernel: ata1.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Apr 22 17:04:35 PCmichael kernel: ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Apr 22 17:04:35 PCmichael kernel: ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Apr 22 17:04:35 PCmichael kernel: ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Apr 22 17:04:35 PCmichael kernel: ata1.00: NCQ Send/Recv Log not supported
Apr 22 17:04:35 PCmichael kernel: ata1.00: configured for UDMA/133
Apr 22 17:04:35 PCmichael kernel: scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 840  BB0Q PQ: 0 ANSI: 5
Apr 22 17:04:35 PCmichael kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Apr 22 17:04:35 PCmichael kernel: sd 0:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Apr 22 17:04:35 PCmichael kernel: sd 0:0:0:0: [sda] Write Protect is off
Apr 22 17:04:35 PCmichael kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Apr 22 17:04:35 PCmichael kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Apr 22 17:04:35 PCmichael kernel:  sda: sda1 sda2 < sda5 sda6 sda7 sda8 >
Apr 22 17:04:35 PCmichael kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Apr 22 17:04:35 PCmichael kernel: fbcon: i915drmfb (fb0) is primary device
Apr 22 17:04:35 PCmichael kernel: psmouse serio1: synaptics: queried max coordinates: x [..5712], y [..4780]
Apr 22 17:04:35 PCmichael kernel: psmouse serio1: synaptics: queried min coordinates: x [1232..], y [1074..]
Apr 22 17:04:35 PCmichael kernel: psmouse serio1: synaptics: Trying to set up SMBus access
Apr 22 17:04:35 PCmichael kernel: Console: switching to colour frame buffer device 240x67
Apr 22 17:04:35 PCmichael kernel: i915 0000:00:02.0: fb0: i915drmfb frame buffer device
Apr 22 17:04:35 PCmichael kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Apr 22 17:04:35 PCmichael systemd[1]: Inserted module 'autofs4'
Apr 22 17:04:35 PCmichael systemd[1]: systemd 245.4-4ubuntu3.6 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)
Apr 22 17:04:35 PCmichael systemd[1]: Detected architecture x86-64.
Apr 22 17:04:35 PCmichael systemd[1]: Set hostname to <PCmichael>.
Apr 22 17:04:35 PCmichael systemd[1]: Created slice system-modprobe.slice.
Apr 22 17:04:35 PCmichael systemd[1]: Created slice system-postgresql.slice.
Apr 22 17:04:35 PCmichael systemd[1]: Created slice system-systemd\x2dfsck.slice.
Apr 22 17:04:35 PCmichael systemd[1]: Created slice User and Session Slice.
Apr 22 17:04:35 PCmichael systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Apr 22 17:04:35 PCmichael systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Apr 22 17:04:35 PCmichael systemd[1]: Reached target User and Group Name Lookups.
Apr 22 17:04:35 PCmichael systemd[1]: Reached target Remote File Systems.
Apr 22 17:04:35 PCmichael systemd[1]: Reached target Slices.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on Syslog Socket.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on fsck to fsckd communication Socket.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on initctl Compatibility Named Pipe.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on Journal Audit Socket.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on Journal Socket (/dev/log).
Apr 22 17:04:35 PCmichael systemd[1]: Listening on Journal Socket.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on udev Control Socket.
Apr 22 17:04:35 PCmichael systemd[1]: Listening on udev Kernel Socket.
Apr 22 17:04:35 PCmichael systemd[1]: Mounting Huge Pages File System...
Apr 22 17:04:35 PCmichael systemd[1]: Mounting POSIX Message Queue File System...
Apr 22 17:04:35 PCmichael systemd[1]: Mounting Kernel Debug File System...
Apr 22 17:04:35 PCmichael systemd[1]: Mounting Kernel Trace File System...
Apr 22 17:04:35 PCmichael systemd[1]: Starting Journal Service...
Apr 22 17:04:35 PCmichael systemd[1]: Starting Set the console keyboard layout...
Apr 22 17:04:35 PCmichael systemd[1]: Starting Create list of static device nodes for the current kernel...
Apr 22 17:04:35 PCmichael systemd[1]: Condition check resulted in Load Kernel Module drm being skipped.
Apr 22 17:04:35 PCmichael systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Apr 22 17:04:35 PCmichael systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Apr 22 17:04:35 PCmichael systemd[1]: Starting Load Kernel Modules...
Apr 22 17:04:35 PCmichael systemd[1]: Starting Remount Root and Kernel File Systems...
Apr 22 17:04:35 PCmichael systemd[1]: Starting udev Coldplug all Devices...
Apr 22 17:04:35 PCmichael kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Apr 22 17:04:35 PCmichael systemd[1]: Starting Uncomplicated firewall...
Apr 22 17:04:35 PCmichael systemd[1]: Started Read required files in advance.
Apr 22 17:04:35 PCmichael systemd[1]: Mounted Huge Pages File System.
Apr 22 17:04:35 PCmichael kernel: lp: driver loaded but no devices found
Apr 22 17:04:35 PCmichael systemd[1]: Mounted POSIX Message Queue File System.
Apr 22 17:04:35 PCmichael systemd[1]: Mounted Kernel Debug File System.
Apr 22 17:04:35 PCmichael systemd[1]: Mounted Kernel Trace File System.
Apr 22 17:04:35 PCmichael kernel: ppdev: user-space parallel port driver
Apr 22 17:04:35 PCmichael systemd[1]: Finished Create list of static device nodes for the current kernel.
Apr 22 17:04:35 PCmichael systemd[1]: Finished Remount Root and Kernel File Systems.
Apr 22 17:04:35 PCmichael systemd[1]: Finished Uncomplicated firewall.
Apr 22 17:04:35 PCmichael systemd[1]: Starting Rebuild Hardware Database...
Apr 22 17:04:35 PCmichael systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Apr 22 17:04:35 PCmichael systemd[1]: Starting Load/Save Random Seed...
Apr 22 17:04:35 PCmichael systemd[1]: Starting Create System Users...
Apr 22 17:04:35 PCmichael systemd[1]: Started Journal Service.
Apr 22 17:04:36 PCmichael kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database
Apr 22 17:04:36 PCmichael kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
Apr 22 17:04:36 PCmichael kernel: Non-volatile memory driver v1.3
Apr 22 17:04:36 PCmichael kernel: mc: Linux media interface: v0.10
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: ThinkPad ACPI Extras v0.26
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: http://ibm-acpi.sf.net/
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: ThinkPad BIOS GIET98WW (2.48 ), EC GIHT33WW
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: Lenovo ThinkPad X240, model 20AL00C6GE
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: radio switch found; radios are enabled
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Apr 22 17:04:36 PCmichael kernel: videodev: Linux video capture interface: v2.00
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Apr 22 17:04:36 PCmichael kernel: Intel(R) Wireless WiFi driver for Linux
Apr 22 17:04:36 PCmichael kernel: Copyright(c) 2003- 2015 Intel Corporation
Apr 22 17:04:36 PCmichael kernel: thinkpad_acpi: rfkill switch tpacpi_wwan_sw: radio is unblocked
Apr 22 17:04:37 PCmichael kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer
Apr 22 17:04:37 PCmichael kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
Apr 22 17:04:37 PCmichael kernel: RAPL PMU: hw unit of domain package 2^-14 Joules
Apr 22 17:04:37 PCmichael kernel: RAPL PMU: hw unit of domain dram 2^-14 Joules
Apr 22 17:04:37 PCmichael kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
Apr 22 17:04:37 PCmichael kernel: iwlwifi 0000:03:00.0: loaded firmware version 17.3216344376.0 op_mode iwlmvm
Apr 22 17:04:37 PCmichael kernel: thinkpad_acpi: battery 2 registered (start 80, stop 100)
Apr 22 17:04:37 PCmichael kernel: thinkpad_acpi: battery 1 registered (start 80, stop 100)
Apr 22 17:04:37 PCmichael kernel: battery: new extension: ThinkPad Battery Extension
Apr 22 17:04:37 PCmichael kernel: input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input7
Apr 22 17:04:37 PCmichael kernel: iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
Apr 22 17:04:37 PCmichael kernel: iwlwifi 0000:03:00.0: base HW address: 7c:7a:91:4e:0a:3e
Apr 22 17:04:37 PCmichael kernel: Adding 15998972k swap on /dev/sda5.  Priority:-2 extents:1 across:15998972k SSFS
Apr 22 17:04:37 PCmichael kernel: rmi4_smbus 0-002c: registering SMbus-connected sensor
Apr 22 17:04:37 PCmichael kernel: EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
Apr 22 17:04:37 PCmichael kernel: EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
Apr 22 17:04:37 PCmichael kernel: rmi4_f01 rmi4-00.fn01: found RMI device, manufacturer: Synaptics, product: TM3075-002, fw id: 1741313
Apr 22 17:04:37 PCmichael kernel: snd_hda_intel 0000:00:03.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input9
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input10
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input11
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.0/sound/card0/input12
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC3232: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=2 (0x16/0x15/0x0/0x0/0x0)
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:      Dock Mic=0x19
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:      Mic=0x1a
Apr 22 17:04:37 PCmichael kernel: snd_hda_codec_realtek hdaudioC1D0:      Internal Mic=0x12
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.240:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=509 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.240:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=508 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.240:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=508 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.240:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=511 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.244:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=514 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.244:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=514 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.244:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=514 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.252:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=526 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.252:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ippusbxd" pid=531 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: audit: type=1400 audit(1619103877.252:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=528 comm="apparmor_parser"
Apr 22 17:04:37 PCmichael kernel: ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input14
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input15
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel PCH Dock Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input16
Apr 22 17:04:37 PCmichael kernel: input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input17
Apr 22 17:04:37 PCmichael kernel: input: Synaptics TM3075-002 as /devices/rmi4-00/input/input8
Apr 22 17:04:37 PCmichael kernel: serio: RMI4 PS/2 pass-through port at rmi4-00.fn03
Apr 22 17:04:37 PCmichael kernel: psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Apr 22 17:04:37 PCmichael kernel: input: TPPS/2 IBM TrackPoint as /devices/rmi4-00/rmi4-00.fn03/serio2/input/input18
Apr 22 17:04:37 PCmichael kernel: intel_rapl_common: Found RAPL domain package
Apr 22 17:04:37 PCmichael kernel: intel_rapl_common: Found RAPL domain core
Apr 22 17:04:37 PCmichael kernel: intel_rapl_common: Found RAPL domain uncore
Apr 22 17:04:37 PCmichael kernel: intel_rapl_common: Found RAPL domain dram
Apr 22 17:04:38 PCmichael kernel: iwlwifi 0000:03:00.0 wlp3s0: renamed from wlan0
Apr 22 17:04:39 PCmichael kernel: cdc_acm 2-4:1.2: ttyACM0: USB ACM device
Apr 22 17:04:39 PCmichael kernel: usbcore: registered new interface driver cdc_ncm
Apr 22 17:04:39 PCmichael kernel: usbcore: registered new interface driver cdc_acm
Apr 22 17:04:39 PCmichael kernel: cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters
Apr 22 17:04:39 PCmichael kernel: usbcore: registered new interface driver cdc_wdm
Apr 22 17:04:39 PCmichael kernel: cdc_mbim 2-4:1.0: setting rx_max = 16384
Apr 22 17:04:39 PCmichael kernel: cdc_mbim 2-4:1.0: cdc-wdm0: USB WDM device
Apr 22 17:04:39 PCmichael kernel: cdc_mbim 2-4:1.0 wwan0: register 'cdc_mbim' at usb-0000:00:14.0-4, CDC MBIM, e2:53:33:95:e2:e0
Apr 22 17:04:39 PCmichael kernel: usbcore: registered new interface driver cdc_mbim
Apr 22 17:04:39 PCmichael kernel: Bluetooth: Core ver 2.22
Apr 22 17:04:39 PCmichael kernel: NET: Registered protocol family 31
Apr 22 17:04:39 PCmichael kernel: Bluetooth: HCI device and connection manager initialized
Apr 22 17:04:39 PCmichael kernel: Bluetooth: HCI socket layer initialized
Apr 22 17:04:39 PCmichael kernel: Bluetooth: L2CAP socket layer initialized
Apr 22 17:04:39 PCmichael kernel: Bluetooth: SCO socket layer initialized
Apr 22 17:04:39 PCmichael kernel: usbcore: registered new interface driver btusb
Apr 22 17:04:39 PCmichael kernel: Bluetooth: hci0: read Intel version: 370710018002030d57
Apr 22 17:04:39 PCmichael kernel: Bluetooth: hci0: Intel device is already patched. patch num: 57
Apr 22 17:04:39 PCmichael kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Apr 22 17:04:39 PCmichael kernel: Bluetooth: BNEP filters: protocol multicast
Apr 22 17:04:39 PCmichael kernel: Bluetooth: BNEP socket layer initialized
Apr 22 17:04:39 PCmichael kernel: NET: Registered protocol family 38
Apr 22 17:04:39 PCmichael kernel: uvcvideo: Found UVC 1.00 device Integrated Camera (04ca:7035)
Apr 22 17:04:39 PCmichael kernel: input: Integrated Camera: Integrated C as /devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input19
Apr 22 17:04:39 PCmichael kernel: usbcore: registered new interface driver uvcvideo
Apr 22 17:04:39 PCmichael kernel: USB Video Class driver (1.1.1)
Apr 22 17:04:40 PCmichael kernel: Bluetooth: RFCOMM TTY layer initialized
Apr 22 17:04:40 PCmichael kernel: Bluetooth: RFCOMM socket layer initialized
Apr 22 17:04:40 PCmichael kernel: Bluetooth: RFCOMM ver 1.11
Apr 22 17:04:46 PCmichael kernel: acpi_call: loading out-of-tree module taints kernel.
Apr 22 17:04:46 PCmichael kernel: acpi_call: module verification failed: signature and/or required key missing - tainting kernel
Apr 22 17:04:48 PCmichael kernel: EXT4-fs (sda8): mounted filesystem with ordered data mode. Opts: (null)
Apr 22 17:06:45 PCmichael kernel: wlp3s0: authenticate with 44:4e:6d:77:82:04
Apr 22 17:06:45 PCmichael kernel: wlp3s0: send auth to 44:4e:6d:77:82:04 (try 1/3)
Apr 22 17:06:45 PCmichael kernel: wlp3s0: authenticated
Apr 22 17:06:45 PCmichael kernel: wlp3s0: associate with 44:4e:6d:77:82:04 (try 1/3)
Apr 22 17:06:45 PCmichael kernel: wlp3s0: RX AssocResp from 44:4e:6d:77:82:04 (capab=0x1511 status=0 aid=1)
Apr 22 17:06:45 PCmichael kernel: wlp3s0: associated
Apr 22 17:06:46 PCmichael kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp3s0: link becomes ready
Apr 22 17:06:46 PCmichael kernel: wlp3s0: Limiting TX power to 20 (23 - 3) dBm as advertised by 44:4e:6d:77:82:04
=========================================================
systemctl status mnt-Daten.mount
● mnt-Daten.mount - /mnt/Daten
     Loaded: loaded (/etc/fstab; generated)
     Active: active (mounted) since Thu 2021-04-22 17:04:37 CEST; 1h 42min ago
      Where: /mnt/Daten
       What: /dev/sda7
       Docs: man:fstab(5)
             man:systemd-fstab-generator(8)
      Tasks: 0 (limit: 9079)
     Memory: 440.0K
     CGroup: /system.slice/mnt-Daten.mount

Apr 22 17:04:37 PCmichael systemd[1]: Mounting /mnt/Daten...
Apr 22 17:04:37 PCmichael systemd[1]: Mounted /mnt/Daten.