Omega3
(Themenstarter)
Anmeldungsdatum: 6. August 2024
Beiträge: 34
|
Deaktiviere dieses nordvpn und überzeuge dich durch sudo dmesg, dass nichts neues mehr davon ins log gespamt wird.
Dann wiederhole den von mir beschriebenen Vorgang.
Ich habe Nordvpn sogar deinstalliert. Das kam nach sudo dmesg heraus: 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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224 | bash: /etc/profile.d/vte.sh: Datei oder Verzeichnis nicht gefunden
abdullah@abdullah-tuxedo:~$ sudo dmesg
[sudo] Passwort für abdullah:
[ 0.000000] Linux version 6.8.0-41-generic (buildd@lcy02-amd64-100) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.2.0-23ubuntu4) 13.2.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #41-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 2 20:41:06 UTC 2024 (Ubuntu 6.8.0-41.41-generic 6.8.12)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.8.0-41-generic root=UUID=25d39438-15e8-4695-96af-77b175419b29 ro quiet splash acpi_os_name=Linux acpi_osi= acpi_backlight=vendor vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007d857fff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007d858000-0x000000007e9b6fff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007e9b7000-0x000000007ea4cfff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x000000007ea4d000-0x000000007f1e8fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x000000007f1e9000-0x000000007fd0dfff] reserved
[ 0.000000] BIOS-e820: [mem 0x000000007fd0e000-0x000000007fd0efff] usable
[ 0.000000] BIOS-e820: [mem 0x000000007fd0f000-0x000000008cffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000870ffffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] APIC: Static calls initialized
[ 0.000000] e820: update [mem 0x64868018-0x64875857] usable ==> usable
[ 0.000000] e820: update [mem 0x64868018-0x64875857] usable ==> usable
[ 0.000000] extended physical RAM map:
[ 0.000000] reserve setup_data: [mem 0x0000000000000000-0x000000000009efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000000009f000-0x00000000000fffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x0000000064868017] usable
[ 0.000000] reserve setup_data: [mem 0x0000000064868018-0x0000000064875857] usable
[ 0.000000] reserve setup_data: [mem 0x0000000064875858-0x000000007d857fff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007d858000-0x000000007e9b6fff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000007e9b7000-0x000000007ea4cfff] ACPI data
[ 0.000000] reserve setup_data: [mem 0x000000007ea4d000-0x000000007f1e8fff] ACPI NVS
[ 0.000000] reserve setup_data: [mem 0x000000007f1e9000-0x000000007fd0dfff] reserved
[ 0.000000] reserve setup_data: [mem 0x000000007fd0e000-0x000000007fd0efff] usable
[ 0.000000] reserve setup_data: [mem 0x000000007fd0f000-0x000000008cffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fed00000-0x00000000fed03fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] reserve setup_data: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x0000000870ffffff] usable
[ 0.000000] efi: EFI v2.7 by American Megatrends
[ 0.000000] efi: ACPI 2.0=0x7f0eb000 ACPI=0x7f0eb000 TPMFinalLog=0x7f153000 SMBIOS=0x7fa9b000 SMBIOS 3.0=0x7fa9a000 MEMATTR=0x799ad018 ESRT=0x7c09a298 INITRD=0x6bb1da98 RNG=0x7ea4c018 TPMEventLog=0x64876018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem42: MMIO range=[0xe0000000-0xefffffff] (256MB) from e820 map
[ 0.000000] e820: remove [mem 0xe0000000-0xefffffff] reserved
[ 0.000000] efi: Not removing mem43: MMIO range=[0xfe000000-0xfe010fff] (68KB) from e820 map
[ 0.000000] efi: Not removing mem44: MMIO range=[0xfec00000-0xfec00fff] (4KB) from e820 map
[ 0.000000] efi: Not removing mem45: MMIO range=[0xfed00000-0xfed03fff] (16KB) from e820 map
[ 0.000000] efi: Not removing mem46: MMIO range=[0xfee00000-0xfee00fff] (4KB) from e820 map
[ 0.000000] efi: Remove mem47: MMIO range=[0xff000000-0xffffffff] (16MB) from e820 map
[ 0.000000] e820: remove [mem 0xff000000-0xffffffff] reserved
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] SMBIOS 3.1.1 present.
[ 0.000000] DMI: Notebook N8xxEZ /N8xxEZ , BIOS 1.07.09RTR1 06/12/2019
[ 0.000000] tsc: Detected 2200.000 MHz processor
[ 0.000000] tsc: Detected 2199.996 MHz TSC
[ 0.000696] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.000701] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.000712] last_pfn = 0x871000 max_arch_pfn = 0x400000000
[ 0.000720] MTRR map: 6 entries (3 fixed + 3 variable; max 23), built from 10 variable MTRRs
[ 0.000724] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001369] last_pfn = 0x7fd0f max_arch_pfn = 0x400000000
[ 0.021612] esrt: Reserving ESRT space from 0x000000007c09a298 to 0x000000007c09a2d0.
[ 0.021619] e820: update [mem 0x7c09a000-0x7c09afff] usable ==> reserved
[ 0.021639] Using GB pages for direct mapping
[ 0.022140] secureboot: Secure boot disabled
[ 0.022142] RAMDISK: [mem 0x64882000-0x6871cfff]
[ 0.022736] ACPI: Early table checksum verification disabled
[ 0.022740] ACPI: RSDP 0x000000007F0EB000 000024 (v02 ALASKA)
[ 0.022746] ACPI: XSDT 0x000000007F0EB0A0 0000C4 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.022755] ACPI: FACP 0x000000007F131458 000114 (v06 ALASKA A M I 01072009 AMI 00010013)
[ 0.022763] ACPI: DSDT 0x000000007F0EB200 046254 (v02 ALASKA A M I 01072009 INTL 20160527)
[ 0.022769] ACPI: FACS 0x000000007F1E8080 000040
[ 0.022773] ACPI: APIC 0x000000007F131570 0000F4 (v04 ALASKA A M I 01072009 AMI 00010013)
[ 0.022778] ACPI: FPDT 0x000000007F131668 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.022783] ACPI: FIDT 0x000000007F1316B0 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.022788] ACPI: MCFG 0x000000007F131750 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
[ 0.022793] ACPI: SSDT 0x000000007F131790 000378 (v01 SataRe SataTabl 00001000 INTL 20160527)
[ 0.022798] ACPI: SSDT 0x000000007F131B08 0017D5 (v02 CpuRef CpuSsdt 00003000 INTL 20160527)
[ 0.022804] ACPI: SSDT 0x000000007F1332E0 00189E (v02 SaSsdt SaSsdt 00003000 INTL 20160527)
[ 0.022809] ACPI: UEFI 0x000000007F134B80 000048 (v01 ALASKA A M I 00000002 01000013)
[ 0.022814] ACPI: SSDT 0x000000007F134BC8 00058A (v02 Intel PerfTune 00001000 INTL 20160527)
[ 0.022819] ACPI: LPIT 0x000000007F135158 00005C (v01 INTEL A M I 00000002 01000013)
[ 0.022824] ACPI: SSDT 0x000000007F1351B8 001A28 (v02 INTEL PtidDevc 00001000 INTL 20160527)
[ 0.022829] ACPI: SSDT 0x000000007F136BE0 0014E2 (v02 INTEL TbtTypeC 00000000 INTL 20160527)
[ 0.022834] ACPI: DBGP 0x000000007F1380C8 000034 (v01 ALASKA A M I 00000002 01000013)
[ 0.022838] ACPI: DBG2 0x000000007F138100 000054 (v00 ALASKA A M I 00000002 01000013)
[ 0.022843] ACPI: SSDT 0x000000007F138158 000144 (v02 Intel ADebTabl 00001000 INTL 20160527)
[ 0.022848] ACPI: DMAR 0x000000007F1382A0 0000A8 (v01 INTEL EDK2 00000002 01000013)
[ 0.022853] ACPI: BGRT 0x000000007F138348 000038 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.022858] ACPI: TPM2 0x000000007F138380 000034 (v04 ALASKA A M I 00000001 AMI 00000000)
[ 0.022863] ACPI: WSMT 0x000000007F1383B8 000028 (v01 ALASKA A M I 01072009 AMI 00010013)
[ 0.022867] ACPI: Reserving FACP table memory at [mem 0x7f131458-0x7f13156b]
[ 0.022869] ACPI: Reserving DSDT table memory at [mem 0x7f0eb200-0x7f131453]
[ 0.022871] ACPI: Reserving FACS table memory at [mem 0x7f1e8080-0x7f1e80bf]
[ 0.022872] ACPI: Reserving APIC table memory at [mem 0x7f131570-0x7f131663]
[ 0.022873] ACPI: Reserving FPDT table memory at [mem 0x7f131668-0x7f1316ab]
[ 0.022875] ACPI: Reserving FIDT table memory at [mem 0x7f1316b0-0x7f13174b]
[ 0.022876] ACPI: Reserving MCFG table memory at [mem 0x7f131750-0x7f13178b]
[ 0.022877] ACPI: Reserving SSDT table memory at [mem 0x7f131790-0x7f131b07]
[ 0.022879] ACPI: Reserving SSDT table memory at [mem 0x7f131b08-0x7f1332dc]
[ 0.022880] ACPI: Reserving SSDT table memory at [mem 0x7f1332e0-0x7f134b7d]
[ 0.022881] ACPI: Reserving UEFI table memory at [mem 0x7f134b80-0x7f134bc7]
[ 0.022883] ACPI: Reserving SSDT table memory at [mem 0x7f134bc8-0x7f135151]
[ 0.022884] ACPI: Reserving LPIT table memory at [mem 0x7f135158-0x7f1351b3]
[ 0.022885] ACPI: Reserving SSDT table memory at [mem 0x7f1351b8-0x7f136bdf]
[ 0.022887] ACPI: Reserving SSDT table memory at [mem 0x7f136be0-0x7f1380c1]
[ 0.022888] ACPI: Reserving DBGP table memory at [mem 0x7f1380c8-0x7f1380fb]
[ 0.022889] ACPI: Reserving DBG2 table memory at [mem 0x7f138100-0x7f138153]
[ 0.022891] ACPI: Reserving SSDT table memory at [mem 0x7f138158-0x7f13829b]
[ 0.022892] ACPI: Reserving DMAR table memory at [mem 0x7f1382a0-0x7f138347]
[ 0.022893] ACPI: Reserving BGRT table memory at [mem 0x7f138348-0x7f13837f]
[ 0.022895] ACPI: Reserving TPM2 table memory at [mem 0x7f138380-0x7f1383b3]
[ 0.022896] ACPI: Reserving WSMT table memory at [mem 0x7f1383b8-0x7f1383df]
[ 0.023350] No NUMA configuration found
[ 0.023351] Faking a node at [mem 0x0000000000000000-0x0000000870ffffff]
[ 0.023365] NODE_DATA(0) allocated [mem 0x870fd5000-0x870ffffff]
[ 0.023690] Zone ranges:
[ 0.023691] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.023694] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.023696] Normal [mem 0x0000000100000000-0x0000000870ffffff]
[ 0.023699] Device empty
[ 0.023700] Movable zone start for each node
[ 0.023703] Early memory node ranges
[ 0.023704] node 0: [mem 0x0000000000001000-0x000000000009efff]
[ 0.023706] node 0: [mem 0x0000000000100000-0x000000007d857fff]
[ 0.023708] node 0: [mem 0x000000007fd0e000-0x000000007fd0efff]
[ 0.023710] node 0: [mem 0x0000000100000000-0x0000000870ffffff]
[ 0.023714] Initmem setup node 0 [mem 0x0000000000001000-0x0000000870ffffff]
[ 0.023720] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.023746] On node 0, zone DMA: 97 pages in unavailable ranges
[ 0.027004] On node 0, zone DMA32: 9398 pages in unavailable ranges
[ 0.075139] On node 0, zone Normal: 753 pages in unavailable ranges
[ 0.075491] On node 0, zone Normal: 28672 pages in unavailable ranges
[ 0.075508] Reserving Intel graphics memory at [mem 0x89000000-0x8cffffff]
[ 0.075882] ACPI: PM-Timer IO Port: 0x1808
[ 0.075894] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.075896] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.075897] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.075899] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.075900] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.075901] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.075902] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.075904] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.075905] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.075906] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.075907] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.075909] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.075973] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.075977] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.075979] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.075986] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.075994] e820: update [mem 0x7a3b2000-0x7a42dfff] usable ==> reserved
[ 0.076010] TSC deadline timer available
[ 0.076011] smpboot: Allowing 12 CPUs, 0 hotplug CPUs
[ 0.076028] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.076031] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x000fffff]
[ 0.076033] PM: hibernation: Registered nosave memory: [mem 0x64868000-0x64868fff]
[ 0.076036] PM: hibernation: Registered nosave memory: [mem 0x64875000-0x64875fff]
[ 0.076038] PM: hibernation: Registered nosave memory: [mem 0x7a3b2000-0x7a42dfff]
[ 0.076040] PM: hibernation: Registered nosave memory: [mem 0x7c09a000-0x7c09afff]
[ 0.076042] PM: hibernation: Registered nosave memory: [mem 0x7d858000-0x7e9b6fff]
[ 0.076044] PM: hibernation: Registered nosave memory: [mem 0x7e9b7000-0x7ea4cfff]
[ 0.076045] PM: hibernation: Registered nosave memory: [mem 0x7ea4d000-0x7f1e8fff]
[ 0.076046] PM: hibernation: Registered nosave memory: [mem 0x7f1e9000-0x7fd0dfff]
[ 0.076048] PM: hibernation: Registered nosave memory: [mem 0x7fd0f000-0x8cffffff]
[ 0.076049] PM: hibernation: Registered nosave memory: [mem 0x8d000000-0xfdffffff]
[ 0.076050] PM: hibernation: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
[ 0.076052] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
[ 0.076053] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.076054] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfecfffff]
[ 0.076055] PM: hibernation: Registered nosave memory: [mem 0xfed00000-0xfed03fff]
[ 0.076056] PM: hibernation: Registered nosave memory: [mem 0xfed04000-0xfedfffff]
[ 0.076057] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.076059] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffffffff]
[ 0.076061] [mem 0x8d000000-0xfdffffff] available for PCI devices
[ 0.076063] Booting paravirtualized kernel on bare hardware
[ 0.076065] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
[ 0.076075] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:12 nr_cpu_ids:12 nr_node_ids:1
[ 0.076975] percpu: Embedded 86 pages/cpu s229376 r8192 d114688 u524288
[ 0.076984] pcpu-alloc: s229376 r8192 d114688 u524288 alloc=1*2097152
[ 0.076987] pcpu-alloc: [0] 00 01 02 03 [0] 04 05 06 07
[ 0.076996] pcpu-alloc: [0] 08 09 10 11
[ 0.077024] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.8.0-41-generic root=UUID=25d39438-15e8-4695-96af-77b175419b29 ro quiet splash acpi_os_name=Linux acpi_osi= acpi_backlight=vendor vt.handoff=7
[ 0.077154] ACPI: _OSI method disabled
[ 0.077201] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.8.0-41-generic", will be passed to user space.
[ 0.080262] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
[ 0.081787] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.082059] Fallback order for Node 0: 0
[ 0.082063] Built 1 zonelists, mobility grouping on. Total pages: 8186807
[ 0.082065] Policy zone: Normal
[ 0.082072] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
[ 0.082080] software IO TLB: area num 16.
[ 0.183064] Memory: 32467132K/33267676K available (22528K kernel code, 4441K rwdata, 14308K rodata, 4972K init, 4736K bss, 800284K reserved, 0K cma-reserved)
[ 0.184527] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=12, Nodes=1
[ 0.184544] Kernel/User page tables isolation: enabled
[ 0.184588] ftrace: allocating 57864 entries in 227 pages
[ 0.197775] ftrace: allocated 227 pages with 5 groups
[ 0.198834] Dynamic Preempt: voluntary
[ 0.198947] rcu: Preemptible hierarchical RCU implementation.
[ 0.198949] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=12.
[ 0.198951] Trampoline variant of Tasks RCU enabled.
[ 0.198952] Rude variant of Tasks RCU enabled.
[ 0.198952] Tracing variant of Tasks RCU enabled.
[ 0.198953] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
[ 0.198954] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=12
[ 0.203060] NR_IRQS: 524544, nr_irqs: 2152, preallocated irqs: 16
[ 0.203389] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.203791] Console: colour dummy device 80x25
[ 0.203795] printk: legacy console [tty0] enabled
[ 0.203865] ACPI: Core revision 20230628
[ 0.204162] ACPI: OSL: Overriding _OS definition to 'Linux'
[ 0.204174] APIC: Switch to symmetric I/O mode setup
[ 0.204177] DMAR: Host address width 39
[ 0.204179] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
[ 0.204190] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 19e2ff0505e
[ 0.204194] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
[ 0.204198] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
[ 0.204201] DMAR: RMRR base: 0x0000007f82e000 end: 0x0000007fa77fff
[ 0.204204] DMAR: RMRR base: 0x00000088800000 end: 0x0000008cffffff
[ 0.204206] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
[ 0.204209] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
[ 0.204210] DMAR-IR: Queued invalidation will be enabled to support x2apic and Intr-remapping.
[ 0.207484] DMAR-IR: Enabled IRQ remapping in x2apic mode
[ 0.207486] x2apic enabled
[ 0.207587] APIC: Switched APIC routing to: cluster x2apic
[ 0.216862] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1fb62f12e8c, max_idle_ns: 440795238402 ns
[ 0.216869] Calibrating delay loop (skipped), value calculated using timer frequency.. 4399.99 BogoMIPS (lpj=2199996)
[ 0.216910] CPU0: Thermal monitoring enabled (TM1)
[ 0.216983] process: using mwait in idle threads
[ 0.216987] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.216989] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.216997] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.217000] Spectre V2 : Mitigation: IBRS
[ 0.217002] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.217003] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.217005] RETBleed: Mitigation: IBRS
[ 0.217007] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.217009] Spectre V2 : User space: Mitigation: STIBP via prctl
[ 0.217012] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.217020] MDS: Mitigation: Clear CPU buffers
[ 0.217022] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.217027] SRBDS: Mitigation: Microcode
[ 0.217035] GDS: Mitigation: Microcode
[ 0.217043] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.217046] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.217048] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
[ 0.217049] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.217051] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.217054] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
[ 0.217057] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
[ 0.217060] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
[ 0.217062] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
[ 0.217866] Freeing SMP alternatives memory: 48K
[ 0.217866] pid_max: default: 32768 minimum: 301
[ 0.217866] LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
[ 0.217866] landlock: Up and running.
[ 0.217866] Yama: becoming mindful.
[ 0.217866] AppArmor: AppArmor initialized
[ 0.217866] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.217866] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.217866] smpboot: CPU0: Intel(R) Core(TM) i7-8750H CPU @ 2.20GHz (family: 0x6, model: 0x9e, stepping: 0xa)
[ 0.217866] RCU Tasks: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.217866] RCU Tasks Rude: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.217866] RCU Tasks Trace: Setting shift to 4 and lim to 1 rcu_task_cb_adjust=1.
[ 0.217866] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.217866] ... version: 4
[ 0.217866] ... bit width: 48
[ 0.217866] ... generic registers: 4
[ 0.217866] ... value mask: 0000ffffffffffff
[ 0.217866] ... max period: 00007fffffffffff
[ 0.217866] ... fixed-purpose events: 3
[ 0.217866] ... event mask: 000000070000000f
[ 0.217866] signal: max sigframe size: 2032
[ 0.217866] Estimated ratio of average max frequency by base frequency (times 1024): 1861
[ 0.219074] rcu: Hierarchical SRCU implementation.
[ 0.219076] rcu: Max phase no-delay instances is 400.
[ 0.220397] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.220553] smp: Bringing up secondary CPUs ...
[ 0.220697] smpboot: x86: Booting SMP configuration:
[ 0.220699] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7 #8 #9 #10 #11
[ 0.224899] 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.
[ 0.224904] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
[ 0.225925] smp: Brought up 1 node, 12 CPUs
[ 0.225925] smpboot: Max logical packages: 1
[ 0.225925] smpboot: Total of 12 processors activated (52799.90 BogoMIPS)
[ 0.228102] devtmpfs: initialized
[ 0.228102] x86/mm: Memory block size: 128MB
[ 0.233135] ACPI: PM: Registering ACPI NVS region [mem 0x7ea4d000-0x7f1e8fff] (7979008 bytes)
[ 0.233210] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
[ 0.233234] futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
[ 0.233340] pinctrl core: initialized pinctrl subsystem
[ 0.233869] PM: RTC time: 19:36:37, date: 2024-09-09
[ 0.234590] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.235211] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
[ 0.235532] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.235857] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.235899] audit: initializing netlink subsys (disabled)
[ 0.235924] audit: type=2000 audit(1725910597.019:1): state=initialized audit_enabled=0 res=1
[ 0.236174] thermal_sys: Registered thermal governor 'fair_share'
[ 0.236177] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.236179] thermal_sys: Registered thermal governor 'step_wise'
[ 0.236181] thermal_sys: Registered thermal governor 'user_space'
[ 0.236182] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.236200] EISA bus registered
[ 0.236224] cpuidle: using governor ladder
[ 0.236224] cpuidle: using governor menu
[ 0.236224] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.236224] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.236224] PCI: not using ECAM ([mem 0xe0000000-0xefffffff] not reserved)
[ 0.236224] PCI: Using configuration type 1 for base access
[ 0.237030] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.238922] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.238922] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.238922] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.238922] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.240043] ACPI: Added _OSI(Module Device)
[ 0.240046] ACPI: Added _OSI(Processor Device)
[ 0.240048] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.240050] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.325657] ACPI: 8 ACPI AML tables successfully acquired and loaded
[ 0.338698] ACPI: Dynamic OEM Table Load:
[ 0.338710] ACPI: SSDT 0xFFFF97A081625C00 000400 (v02 PmRef Cpu0Cst 00003001 INTL 20160527)
[ 0.341369] ACPI: Dynamic OEM Table Load:
[ 0.341378] ACPI: SSDT 0xFFFF97A08161B000 0005BE (v02 PmRef Cpu0Ist 00003000 INTL 20160527)
[ 0.344990] ACPI: Dynamic OEM Table Load:
[ 0.345001] ACPI: SSDT 0xFFFF97A08162E000 000EF1 (v02 PmRef ApIst 00003000 INTL 20160527)
[ 0.349295] ACPI: Dynamic OEM Table Load:
[ 0.349304] ACPI: SSDT 0xFFFF97A081622400 00030A (v02 PmRef ApCst 00003000 INTL 20160527)
[ 0.359213] ACPI: _OSC evaluated successfully for all CPUs
[ 0.359682] ACPI: EC: EC started
[ 0.359683] ACPI: EC: interrupt blocked
[ 0.361652] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.361657] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC used to handle transactions
[ 0.361660] ACPI: Interpreter enabled
[ 0.361727] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.361729] ACPI: Using IOAPIC for interrupt routing
[ 0.365246] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
[ 0.368105] PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as ACPI motherboard resource
[ 0.368126] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.368128] PCI: Using E820 reservations for host bridge windows
[ 0.370633] ACPI: Enabled 7 GPEs in block 00 to 7F
[ 0.380977] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
[ 0.381441] ACPI: \_SB_.PCI0.RP14.PXSX.DRST: New power resource
[ 0.395212] ACPI: \_SB_.PCI0.XDCI.USBC: New power resource
[ 0.401866] ACPI: \_SB_.PCI0.SAT0.VOL0.V0PR: New power resource
[ 0.402617] ACPI: \_SB_.PCI0.SAT0.VOL1.V1PR: New power resource
[ 0.403356] ACPI: \_SB_.PCI0.SAT0.VOL2.V2PR: New power resource
[ 0.425426] ACPI: \_SB_.PCI0.CNVW.WRST: New power resource
[ 0.431152] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PAGD._STA._OSI], AE_NOT_FOUND (20230628/psargs-330)
[ 0.431165] No Local Variables are initialized for Method [_STA]
[ 0.431168] No Arguments are initialized for method [_STA]
[ 0.431172] ACPI Error: Aborting method \_SB.PAGD._STA due to previous error (AE_NOT_FOUND) (20230628/psparse-529)
[ 0.739274] ACPI: \PIN_: New power resource
[ 0.740229] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
[ 0.740240] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.744237] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.746192] PCI host bridge to bus 0000:00
[ 0.746196] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.746200] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.746203] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.746206] pci_bus 0000:00: root bus resource [mem 0x000e0000-0x000fffff window]
[ 0.746209] pci_bus 0000:00: root bus resource [mem 0x8d000000-0xdfffffff window]
[ 0.746211] pci_bus 0000:00: root bus resource [mem 0xfc800000-0xfe7fffff window]
[ 0.746216] pci_bus 0000:00: root bus resource [bus 00-fe]
[ 0.746363] pci 0000:00:00.0: [8086:3ec4] type 00 class 0x060000 conventional PCI endpoint
[ 0.746484] pci 0000:00:02.0: [8086:3e9b] type 00 class 0x030000 PCIe Root Complex Integrated Endpoint
[ 0.746496] pci 0000:00:02.0: BAR 0 [mem 0x8d000000-0x8dffffff 64bit]
[ 0.746505] pci 0000:00:02.0: BAR 2 [mem 0x90000000-0x9fffffff 64bit pref]
[ 0.746511] pci 0000:00:02.0: BAR 4 [io 0x4000-0x403f]
[ 0.746535] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.746884] pci 0000:00:08.0: [8086:1911] type 00 class 0x088000 conventional PCI endpoint
[ 0.746897] pci 0000:00:08.0: BAR 0 [mem 0x8e41e000-0x8e41efff 64bit]
[ 0.747083] pci 0000:00:12.0: [8086:a379] type 00 class 0x118000 conventional PCI endpoint
[ 0.747113] pci 0000:00:12.0: BAR 0 [mem 0x8e41d000-0x8e41dfff 64bit]
[ 0.747378] pci 0000:00:14.0: [8086:a36d] type 00 class 0x0c0330 conventional PCI endpoint
[ 0.747406] pci 0000:00:14.0: BAR 0 [mem 0x8e400000-0x8e40ffff 64bit]
[ 0.747520] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.750346] pci 0000:00:14.2: [8086:a36f] type 00 class 0x050000 conventional PCI endpoint
[ 0.750374] pci 0000:00:14.2: BAR 0 [mem 0x8e416000-0x8e417fff 64bit]
[ 0.750391] pci 0000:00:14.2: BAR 2 [mem 0x8e41c000-0x8e41cfff 64bit]
[ 0.750642] pci 0000:00:16.0: [8086:a360] type 00 class 0x078000 conventional PCI endpoint
[ 0.750669] pci 0000:00:16.0: BAR 0 [mem 0x8e41b000-0x8e41bfff 64bit]
[ 0.750766] pci 0000:00:16.0: PME# supported from D3hot
[ 0.751644] pci 0000:00:17.0: [8086:a353] type 00 class 0x010601 conventional PCI endpoint
[ 0.751669] pci 0000:00:17.0: BAR 0 [mem 0x8e414000-0x8e415fff]
[ 0.751683] pci 0000:00:17.0: BAR 1 [mem 0x8e41a000-0x8e41a0ff]
[ 0.751696] pci 0000:00:17.0: BAR 2 [io 0x4090-0x4097]
[ 0.751709] pci 0000:00:17.0: BAR 3 [io 0x4080-0x4083]
[ 0.751721] pci 0000:00:17.0: BAR 4 [io 0x4060-0x407f]
[ 0.751735] pci 0000:00:17.0: BAR 5 [mem 0x8e419000-0x8e4197ff]
[ 0.751805] pci 0000:00:17.0: PME# supported from D3hot
[ 0.752803] pci 0000:00:1d.0: [8086:a330] type 01 class 0x060400 PCIe Root Port
[ 0.752857] pci 0000:00:1d.0: PCI bridge to [bus 01]
[ 0.752868] pci 0000:00:1d.0: bridge window [mem 0x8e300000-0x8e3fffff]
[ 0.753029] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.753102] pci 0000:00:1d.0: PTM enabled (root), 4ns granularity
[ 0.754603] pci 0000:00:1d.5: [8086:a335] type 01 class 0x060400 PCIe Root Port
[ 0.754652] pci 0000:00:1d.5: PCI bridge to [bus 02]
[ 0.754662] pci 0000:00:1d.5: bridge window [mem 0x8e200000-0x8e2fffff]
[ 0.754811] pci 0000:00:1d.5: PME# supported from D0 D3hot D3cold
[ 0.754878] pci 0000:00:1d.5: PTM enabled (root), 4ns granularity
[ 0.756303] pci 0000:00:1d.6: [8086:a336] type 01 class 0x060400 PCIe Root Port
[ 0.756351] pci 0000:00:1d.6: PCI bridge to [bus 03]
[ 0.756359] pci 0000:00:1d.6: bridge window [io 0x3000-0x3fff]
[ 0.756364] pci 0000:00:1d.6: bridge window [mem 0x8e100000-0x8e1fffff]
[ 0.756511] pci 0000:00:1d.6: PME# supported from D0 D3hot D3cold
[ 0.756576] pci 0000:00:1d.6: PTM enabled (root), 4ns granularity
[ 0.758010] pci 0000:00:1f.0: [8086:a30d] type 00 class 0x060100 conventional PCI endpoint
[ 0.758746] pci 0000:00:1f.3: [8086:a348] type 00 class 0x040300 conventional PCI endpoint
[ 0.758800] pci 0000:00:1f.3: BAR 0 [mem 0x8e410000-0x8e413fff 64bit]
[ 0.758872] pci 0000:00:1f.3: BAR 4 [mem 0x8e000000-0x8e0fffff 64bit]
[ 0.759020] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.764518] pci 0000:00:1f.4: [8086:a323] type 00 class 0x0c0500 conventional PCI endpoint
[ 0.764590] pci 0000:00:1f.4: BAR 0 [mem 0x8e418000-0x8e4180ff 64bit]
[ 0.764687] pci 0000:00:1f.4: BAR 4 [io 0xefa0-0xefbf]
[ 0.765228] pci 0000:00:1f.5: [8086:a324] type 00 class 0x0c8000 conventional PCI endpoint
[ 0.765252] pci 0000:00:1f.5: BAR 0 [mem 0xfe010000-0xfe010fff]
[ 0.765558] pci 0000:01:00.0: [144d:a808] type 00 class 0x010802 PCIe Endpoint
[ 0.765588] pci 0000:01:00.0: BAR 0 [mem 0x8e300000-0x8e303fff 64bit]
[ 0.766089] pci 0000:00:1d.0: PCI bridge to [bus 01]
[ 0.766350] pci 0000:02:00.0: [8086:24fd] type 00 class 0x028000 PCIe Endpoint
[ 0.766455] pci 0000:02:00.0: BAR 0 [mem 0x8e200000-0x8e201fff 64bit]
[ 0.766921] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
[ 0.767964] pci 0000:00:1d.5: PCI bridge to [bus 02]
[ 0.768126] pci 0000:03:00.0: [10ec:5287] type 00 class 0xff0000 PCIe Endpoint
[ 0.768147] pci 0000:03:00.0: BAR 0 [mem 0x8e115000-0x8e115fff]
[ 0.768197] pci 0000:03:00.0: ROM [mem 0x8e100000-0x8e10ffff pref]
[ 0.768328] pci 0000:03:00.0: supports D1 D2
[ 0.768330] pci 0000:03:00.0: PME# supported from D1 D2 D3hot D3cold
[ 0.768613] pci 0000:03:00.1: [10ec:8168] type 00 class 0x020000 PCIe Endpoint
[ 0.768637] pci 0000:03:00.1: BAR 0 [io 0x3000-0x30ff]
[ 0.768667] pci 0000:03:00.1: BAR 2 [mem 0x8e114000-0x8e114fff 64bit]
[ 0.768687] pci 0000:03:00.1: BAR 4 [mem 0x8e110000-0x8e113fff 64bit]
[ 0.768823] pci 0000:03:00.1: supports D1 D2
[ 0.768825] pci 0000:03:00.1: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.769081] pci 0000:00:1d.6: PCI bridge to [bus 03]
[ 0.772325] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PAGD._STA._OSI], AE_NOT_FOUND (20230628/psargs-330)
[ 0.772337] No Local Variables are initialized for Method [_STA]
[ 0.772341] No Arguments are initialized for method [_STA]
[ 0.772345] ACPI Error: Aborting method \_SB.PAGD._STA due to previous error (AE_NOT_FOUND) (20230628/psparse-529)
[ 0.772478] ACPI: PCI: Interrupt link LNKA configured for IRQ 0
[ 0.772545] ACPI: PCI: Interrupt link LNKB configured for IRQ 1
[ 0.772610] ACPI: PCI: Interrupt link LNKC configured for IRQ 0
[ 0.772673] ACPI: PCI: Interrupt link LNKD configured for IRQ 0
[ 0.772736] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.772799] ACPI: PCI: Interrupt link LNKF configured for IRQ 0
[ 0.772863] ACPI: PCI: Interrupt link LNKG configured for IRQ 0
[ 0.772931] ACPI: PCI: Interrupt link LNKH configured for IRQ 0
[ 1.088479] ACPI: EC: interrupt unblocked
[ 1.088481] ACPI: EC: event unblocked
[ 1.088493] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 1.088496] ACPI: EC: GPE=0x3
[ 1.088498] ACPI: \_SB_.PCI0.LPCB.EC__: Boot DSDT EC initialization complete
[ 1.088502] ACPI: \_SB_.PCI0.LPCB.EC__: EC: Used to handle transactions and events
[ 1.088671] iommu: Default domain type: Translated
[ 1.088671] iommu: DMA domain TLB invalidation policy: lazy mode
[ 1.088975] SCSI subsystem initialized
[ 1.088987] libata version 3.00 loaded.
[ 1.088987] ACPI: bus type USB registered
[ 1.088987] usbcore: registered new interface driver usbfs
[ 1.088987] usbcore: registered new interface driver hub
[ 1.088987] usbcore: registered new device driver usb
[ 1.088988] pps_core: LinuxPPS API ver. 1 registered
[ 1.088990] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 1.088994] PTP clock support registered
[ 1.089014] EDAC MC: Ver: 3.0.0
[ 1.089130] efivars: Registered efivars operations
[ 1.089252] NetLabel: Initializing
[ 1.089255] NetLabel: domain hash size = 128
[ 1.089257] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 1.089291] NetLabel: unlabeled traffic allowed by default
[ 1.089899] mctp: management component transport protocol core
[ 1.089899] NET: Registered PF_MCTP protocol family
[ 1.089899] PCI: Using ACPI for IRQ routing
[ 1.175465] PCI: pci_cache_line_size set to 64 bytes
[ 1.175628] e820: reserve RAM buffer [mem 0x0009f000-0x0009ffff]
[ 1.175631] e820: reserve RAM buffer [mem 0x64868018-0x67ffffff]
[ 1.175633] e820: reserve RAM buffer [mem 0x7a3b2000-0x7bffffff]
[ 1.175635] e820: reserve RAM buffer [mem 0x7c09a000-0x7fffffff]
[ 1.175638] e820: reserve RAM buffer [mem 0x7d858000-0x7fffffff]
[ 1.175640] e820: reserve RAM buffer [mem 0x7fd0f000-0x7fffffff]
[ 1.175641] e820: reserve RAM buffer [mem 0x871000000-0x873ffffff]
[ 1.175876] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 1.175880] pci 0000:00:02.0: vgaarb: bridge control possible
[ 1.175882] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 1.175889] vgaarb: loaded
[ 1.175946] clocksource: Switched to clocksource tsc-early
[ 1.176936] VFS: Disk quotas dquot_6.6.0
[ 1.176958] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 1.177152] AppArmor: AppArmor Filesystem Enabled
[ 1.177199] pnp: PnP ACPI init
[ 1.177716] system 00:00: [io 0x0680-0x069f] has been reserved
[ 1.177721] system 00:00: [io 0x164e-0x164f] has been reserved
[ 1.177934] system 00:02: [io 0x1854-0x1857] has been reserved
[ 1.178445] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 1.178450] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 1.178453] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 1.178455] system 00:05: [mem 0xe0000000-0xefffffff] has been reserved
[ 1.178458] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 1.178461] system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved
[ 1.178464] system 00:05: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 1.178467] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 1.178839] system 00:06: [io 0x1800-0x18fe] could not be reserved
[ 1.178843] system 00:06: [mem 0xfd000000-0xfd69ffff] has been reserved
[ 1.178846] system 00:06: [mem 0xfd6c0000-0xfd6cffff] has been reserved
[ 1.178849] system 00:06: [mem 0xfd6f0000-0xfdffffff] has been reserved
[ 1.178852] system 00:06: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 1.178855] system 00:06: [mem 0xfe200000-0xfe7fffff] has been reserved
[ 1.178857] system 00:06: [mem 0xff000000-0xffffffff] has been reserved
[ 1.179387] system 00:07: [io 0x2000-0x20fe] has been reserved
[ 1.179856] system 00:08: [mem 0xfd6e0000-0xfd6effff] has been reserved
[ 1.179860] system 00:08: [mem 0xfd6d0000-0xfd6dffff] has been reserved
[ 1.179863] system 00:08: [mem 0xfd6b0000-0xfd6bffff] has been reserved
[ 1.179865] system 00:08: [mem 0xfd6a0000-0xfd6affff] has been reserved
[ 1.182627] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PAGD._STA._OSI], AE_NOT_FOUND (20230628/psargs-330)
[ 1.182639] No Local Variables are initialized for Method [_STA]
[ 1.182643] No Arguments are initialized for method [_STA]
[ 1.182646] ACPI Error: Aborting method \_SB.PAGD._STA due to previous error (AE_NOT_FOUND) (20230628/psparse-529)
[ 1.488495] pnp: PnP ACPI: found 10 devices
[ 1.495062] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 1.495331] NET: Registered PF_INET protocol family
[ 1.495512] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 1.522918] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
[ 1.522961] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 1.523102] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 1.523646] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 1.523964] TCP: Hash tables configured (established 262144 bind 65536)
[ 1.524106] MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear)
[ 1.524222] UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 1.524326] UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
[ 1.524453] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 1.524463] NET: Registered PF_XDP protocol family
[ 1.524480] pci 0000:00:1d.0: PCI bridge to [bus 01]
[ 1.524495] pci 0000:00:1d.0: bridge window [mem 0x8e300000-0x8e3fffff]
[ 1.524508] pci 0000:00:1d.5: PCI bridge to [bus 02]
[ 1.524515] pci 0000:00:1d.5: bridge window [mem 0x8e200000-0x8e2fffff]
[ 1.524528] pci 0000:00:1d.6: PCI bridge to [bus 03]
[ 1.524532] pci 0000:00:1d.6: bridge window [io 0x3000-0x3fff]
[ 1.524538] pci 0000:00:1d.6: bridge window [mem 0x8e100000-0x8e1fffff]
[ 1.524551] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 1.524554] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 1.524557] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 1.524559] pci_bus 0000:00: resource 7 [mem 0x000e0000-0x000fffff window]
[ 1.524562] pci_bus 0000:00: resource 8 [mem 0x8d000000-0xdfffffff window]
[ 1.524564] pci_bus 0000:00: resource 9 [mem 0xfc800000-0xfe7fffff window]
[ 1.524567] pci_bus 0000:01: resource 1 [mem 0x8e300000-0x8e3fffff]
[ 1.524570] pci_bus 0000:02: resource 1 [mem 0x8e200000-0x8e2fffff]
[ 1.524572] pci_bus 0000:03: resource 0 [io 0x3000-0x3fff]
[ 1.524575] pci_bus 0000:03: resource 1 [mem 0x8e100000-0x8e1fffff]
[ 1.525016] PCI: CLS 64 bytes, default 64
[ 1.525037] DMAR: No ATSR found
[ 1.525038] DMAR: No SATC found
[ 1.525040] DMAR: IOMMU feature fl1gp_support inconsistent
[ 1.525042] DMAR: IOMMU feature pgsel_inv inconsistent
[ 1.525043] DMAR: IOMMU feature nwfs inconsistent
[ 1.525045] DMAR: IOMMU feature pasid inconsistent
[ 1.525046] DMAR: IOMMU feature eafs inconsistent
[ 1.525048] DMAR: IOMMU feature prs inconsistent
[ 1.525049] DMAR: IOMMU feature nest inconsistent
[ 1.525050] DMAR: IOMMU feature mts inconsistent
[ 1.525051] DMAR: IOMMU feature sc_support inconsistent
[ 1.525053] DMAR: IOMMU feature dev_iotlb_support inconsistent
[ 1.525055] DMAR: dmar0: Using Queued invalidation
[ 1.525059] DMAR: dmar1: Using Queued invalidation
[ 1.525086] Trying to unpack rootfs image as initramfs...
[ 1.525548] pci 0000:00:02.0: Adding to iommu group 0
[ 1.526624] pci 0000:00:00.0: Adding to iommu group 1
[ 1.526640] pci 0000:00:08.0: Adding to iommu group 2
[ 1.526660] pci 0000:00:12.0: Adding to iommu group 3
[ 1.526684] pci 0000:00:14.0: Adding to iommu group 4
[ 1.526696] pci 0000:00:14.2: Adding to iommu group 4
[ 1.526716] pci 0000:00:16.0: Adding to iommu group 5
[ 1.526729] pci 0000:00:17.0: Adding to iommu group 6
[ 1.526752] pci 0000:00:1d.0: Adding to iommu group 7
[ 1.526773] pci 0000:00:1d.5: Adding to iommu group 8
[ 1.526795] pci 0000:00:1d.6: Adding to iommu group 9
[ 1.526828] pci 0000:00:1f.0: Adding to iommu group 10
[ 1.526842] pci 0000:00:1f.3: Adding to iommu group 10
[ 1.526856] pci 0000:00:1f.4: Adding to iommu group 10
[ 1.526870] pci 0000:00:1f.5: Adding to iommu group 10
[ 1.526893] pci 0000:01:00.0: Adding to iommu group 11
[ 1.526914] pci 0000:02:00.0: Adding to iommu group 12
[ 1.526944] pci 0000:03:00.0: Adding to iommu group 13
[ 1.526966] pci 0000:03:00.1: Adding to iommu group 13
[ 1.528840] DMAR: Intel(R) Virtualization Technology for Directed I/O
[ 1.528843] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 1.528845] software IO TLB: mapped [mem 0x00000000759ad000-0x00000000799ad000] (64MB)
[ 1.531325] sgx: EPC section 0x80200000-0x85f7ffff
[ 1.532507] Initialise system trusted keyrings
[ 1.532518] Key type blacklist registered
[ 1.532567] workingset: timestamp_bits=36 max_order=23 bucket_order=0
[ 1.532582] zbud: loaded
[ 1.532948] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 1.533065] fuse: init (API version 7.39)
[ 1.533262] integrity: Platform Keyring initialized
[ 1.533266] integrity: Machine keyring initialized
[ 1.552332] Key type asymmetric registered
[ 1.552336] Asymmetric key parser 'x509' registered
[ 1.552365] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 1.552429] io scheduler mq-deadline registered
[ 1.555631] pcieport 0000:00:1d.0: PME: Signaling with IRQ 122
[ 1.555730] pcieport 0000:00:1d.0: AER: enabled with IRQ 122
[ 1.555793] pcieport 0000:00:1d.0: DPC: enabled with IRQ 122
[ 1.555795] pcieport 0000:00:1d.0: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 1.556214] pcieport 0000:00:1d.5: PME: Signaling with IRQ 123
[ 1.556296] pcieport 0000:00:1d.5: AER: enabled with IRQ 123
[ 1.556359] pcieport 0000:00:1d.5: DPC: enabled with IRQ 123
[ 1.556362] pcieport 0000:00:1d.5: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 1.556744] pcieport 0000:00:1d.6: PME: Signaling with IRQ 124
[ 1.556828] pcieport 0000:00:1d.6: AER: enabled with IRQ 124
[ 1.556889] pcieport 0000:00:1d.6: DPC: enabled with IRQ 124
[ 1.556891] pcieport 0000:00:1d.6: DPC: error containment capabilities: Int Msg #0, RPExt+ PoisonedTLP+ SwTrigger+ RP PIO Log 4, DL_ActiveErr+
[ 1.557057] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 1.564309] ACPI: AC: AC Adapter [AC] (on-line)
[ 1.564648] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 1.564753] ACPI: button: Power Button [PWRB]
[ 1.564820] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 1.564915] ACPI: button: Lid Switch [LID0]
[ 1.564973] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2
[ 1.565067] ACPI: button: Sleep Button [SLPB]
[ 1.565131] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
[ 1.565294] ACPI: button: Power Button [PWRF]
[ 1.566490] thermal LNXTHERM:00: registered as thermal_zone0
[ 1.566494] ACPI: thermal: Thermal Zone [TZ0] (51 C)
[ 1.566834] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 1.570457] hpet_acpi_add: no address or irqs in _CRS
[ 1.570491] Linux agpgart interface v0.103
[ 1.583571] loop: module loaded
[ 1.584028] ACPI: bus type drm_connector registered
[ 1.584422] tun: Universal TUN/TAP device driver, 1.6
[ 1.584524] PPP generic driver version 2.4.2
[ 1.584777] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:SYNM] at 0x60,0x64 irq 1,12
[ 1.590527] i8042: Detected active multiplexing controller, rev 1.1
[ 1.592730] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 1.592737] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[ 1.592740] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[ 1.592743] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[ 1.592745] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[ 1.593022] mousedev: PS/2 mouse device common for all mice
[ 1.593508] rtc_cmos 00:01: RTC can wake from S4
[ 1.595332] rtc_cmos 00:01: registered as rtc0
[ 1.595704] rtc_cmos 00:01: setting system clock to 2024-09-09T19:36:39 UTC (1725910599)
[ 1.595747] rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram
[ 1.595761] i2c_dev: i2c /dev entries driver
[ 1.596315] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
[ 1.596653] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 1.596672] device-mapper: uevent: version 1.0.3
[ 1.596780] device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
[ 1.596817] platform eisa.0: Probing EISA bus 0
[ 1.596820] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 1.596823] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 1.596825] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 1.596828] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 1.596830] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 1.596832] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 1.596834] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 1.596836] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 1.596838] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 1.596840] platform eisa.0: EISA: Detected 0 cards
[ 1.596845] intel_pstate: Intel P-state driver initializing
[ 1.597743] intel_pstate: Disabling energy efficiency optimization
[ 1.597745] intel_pstate: HWP enabled
[ 1.598096] ledtrig-cpu: registered to indicate activity on CPUs
[ 1.598308] [drm] Initialized simpledrm 1.0.0 20200625 for simple-framebuffer.0 on minor 0
[ 1.598820] fbcon: Deferring console take-over
[ 1.598822] simple-framebuffer simple-framebuffer.0: [drm] fb0: simpledrmdrmfb frame buffer device
[ 1.598906] drop_monitor: Initializing network drop monitor service
[ 1.598998] NET: Registered PF_INET6 protocol family
[ 1.636171] Freeing initrd memory: 64108K
[ 1.642151] Segment Routing with IPv6
[ 1.642173] In-situ OAM (IOAM) with IPv6
[ 1.642241] NET: Registered PF_PACKET protocol family
[ 1.642414] Key type dns_resolver registered
[ 1.643758] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 1.644228] microcode: Current revision: 0x000000f8
[ 1.644230] microcode: Updated early from: 0x000000b4
[ 1.644772] IPI shorthand broadcast: enabled
[ 1.646366] sched_clock: Marking stable (1633000725, 13165002)->(1720836517, -74670790)
[ 1.646690] registered taskstats version 1
[ 1.647486] Loading compiled-in X.509 certificates
[ 1.648031] Loaded X.509 cert 'Build time autogenerated kernel key: d20b288af354b2a30a8094f4881ca576c390e95f'
[ 1.648453] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.648820] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.648821] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.648839] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.648851] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 1.648863] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 1.648874] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 1.648885] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 1.648898] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 1.648909] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 1.648920] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 1.652388] Key type .fscrypt registered
[ 1.652390] Key type fscrypt-provisioning registered
[ 1.652428] Key type trusted registered
[ 1.666887] Key type encrypted registered
[ 1.666891] AppArmor: AppArmor sha256 policy hashing enabled
[ 1.668047] integrity: Loading X.509 certificate: UEFI:db
[ 1.668071] integrity: Loaded X.509 cert 'OWN CA: 846b6d893190c19448ac37cb889444c0'
[ 1.668072] integrity: Loading X.509 certificate: UEFI:db
[ 1.668093] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.668094] integrity: Loading X.509 certificate: UEFI:db
[ 1.668124] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.669070] integrity: Revoking X.509 certificate: UEFI:dbx
[ 1.669089] blacklist: Revoked X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.669090] integrity: Revoking X.509 certificate: UEFI:dbx
[ 1.669101] blacklist: Revoked X.509 cert 'Debian Secure Boot Signer: 00a7468def'
[ 1.669272] blacklist: Duplicate blacklisted hash bin:47ff1b63b140b6fc04ed79131331e651da5b2e2f170f5daef4153dc2fbc532b1
[ 1.669337] blacklist: Duplicate blacklisted hash bin:992d359aa7a5f789d268b94c11b9485a6b1ce64362b0edb4441ccc187c39647b
[ 1.669377] blacklist: Duplicate blacklisted hash bin:c452ab846073df5ace25cca64d6b7a09d906308a1a65eb5240e3c4ebcaa9cc0c
[ 1.669404] blacklist: Duplicate blacklisted hash bin:e051b788ecbaeda53046c70e6af6058f95222c046157b8c4c1b9c2cfc65f46e5
[ 1.669876] Loading compiled-in module X.509 certificates
[ 1.670266] Loaded X.509 cert 'Build time autogenerated kernel key: d20b288af354b2a30a8094f4881ca576c390e95f'
[ 1.670268] ima: Allocated hash algorithm: sha256
[ 1.690084] ima: No architecture policies found
[ 1.690119] evm: Initialising EVM extended attributes:
[ 1.690122] evm: security.selinux
[ 1.690127] evm: security.SMACK64
[ 1.690130] evm: security.SMACK64EXEC
[ 1.690133] evm: security.SMACK64TRANSMUTE
[ 1.690136] evm: security.SMACK64MMAP
[ 1.690138] evm: security.apparmor
[ 1.690141] evm: security.ima
[ 1.690144] evm: security.capability
[ 1.690147] evm: HMAC attrs: 0x1
[ 1.691074] PM: Magic number: 8:292:647
[ 1.691155] acpi LNXCPU:00: hash matches
[ 1.708682] RAS: Correctable Errors collector initialized.
[ 1.708905] clk: Disabling unused clocks
[ 1.873935] ACPI: battery: Slot [BAT0] (battery present)
[ 1.878672] Freeing unused decrypted memory: 2028K
[ 1.880783] Freeing unused kernel image (initmem) memory: 4972K
[ 1.881052] Write protecting the kernel read-only data: 36864k
[ 1.881945] Freeing unused kernel image (rodata/data gap) memory: 28K
[ 1.954885] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.954887] x86/mm: Checking user space page tables
[ 1.993526] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.993539] Run /init as init process
[ 1.993540] with arguments:
[ 1.993541] /init
[ 1.993542] splash
[ 1.993543] with environment:
[ 1.993544] HOME=/
[ 1.993545] TERM=linux
[ 1.993546] BOOT_IMAGE=/boot/vmlinuz-6.8.0-41-generic
[ 2.159474] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.159484] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 2.160735] xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x110 quirks 0x0000000000009810
[ 2.161191] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 2.161197] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 2.161202] xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed
[ 2.161332] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.08
[ 2.161335] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.161337] usb usb1: Product: xHCI Host Controller
[ 2.161339] usb usb1: Manufacturer: Linux 6.8.0-41-generic xhci-hcd
[ 2.161340] usb usb1: SerialNumber: 0000:00:14.0
[ 2.161555] hub 1-0:1.0: USB hub found
[ 2.161593] hub 1-0:1.0: 16 ports detected
[ 2.162270] ahci 0000:00:17.0: version 3.0
[ 2.162792] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x10 impl SATA mode
[ 2.162796] ahci 0000:00:17.0: flags: 64bit ncq sntf pm clo only pio slum part ems deso sadm sds apst
[ 2.165033] rtsx_pci 0000:03:00.0: enabling device (0000 -> 0002)
[ 2.175054] scsi host0: ahci
[ 2.175854] scsi host1: ahci
[ 2.176552] scsi host2: ahci
[ 2.176776] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.08
[ 2.176780] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 2.176783] usb usb2: Product: xHCI Host Controller
[ 2.176785] usb usb2: Manufacturer: Linux 6.8.0-41-generic xhci-hcd
[ 2.176787] usb usb2: SerialNumber: 0000:00:14.0
[ 2.176874] scsi host3: ahci
[ 2.177084] scsi host4: ahci
[ 2.177627] ata1: DUMMY
[ 2.177629] ata2: DUMMY
[ 2.177630] ata3: DUMMY
[ 2.177631] ata4: DUMMY
[ 2.177637] ata5: SATA max UDMA/133 abar m2048@0x8e419000 port 0x8e419300 irq 133 lpm-pol 0
[ 2.178096] hub 2-0:1.0: USB hub found
[ 2.178130] hub 2-0:1.0: 8 ports detected
[ 2.179713] usb: port power management may be unreliable
[ 2.418501] usb 1-5: new full-speed USB device number 2 using xhci_hcd
[ 2.486933] ata5: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.497860] ata5.00: ACPI cmd f5/00:00:00:00:00:00(SECURITY FREEZE LOCK) filtered out
[ 2.497863] ata5.00: ACPI cmd b1/c1:00:00:00:00:00(DEVICE CONFIGURATION OVERLAY) filtered out
[ 2.525706] ata5.00: ATA-10: ST1000LM049-2GH172, SDM1, max UDMA/133
[ 2.534854] ata5.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 2.550796] usb 1-5: New USB device found, idVendor=046d, idProduct=c52b, bcdDevice=24.11
[ 2.550801] usb 1-5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.550802] usb 1-5: Product: USB Receiver
[ 2.550804] usb 1-5: Manufacturer: Logitech
[ 2.552218] tsc: Refined TSC clocksource calibration: 2207.998 MHz
[ 2.552224] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fd3b6211b4, max_idle_ns: 440795230313 ns
[ 2.552310] clocksource: Switched to clocksource tsc
[ 2.558891] ata5.00: ACPI cmd f5/00:00:00:00:00:00(SECURITY FREEZE LOCK) filtered out
[ 2.558895] ata5.00: ACPI cmd b1/c1:00:00:00:00:00(DEVICE CONFIGURATION OVERLAY) filtered out
[ 2.595716] ata5.00: configured for UDMA/133
[ 2.595925] scsi 4:0:0:0: Direct-Access ATA ST1000LM049-2GH1 SDM1 PQ: 0 ANSI: 5
[ 2.596351] sd 4:0:0:0: Attached scsi generic sg0 type 0
[ 2.596455] sd 4:0:0:0: [sda] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
[ 2.596458] sd 4:0:0:0: [sda] 4096-byte physical blocks
[ 2.596484] sd 4:0:0:0: [sda] Write Protect is off
[ 2.596487] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.596500] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.596513] sd 4:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 2.669510] usb 1-8: new high-speed USB device number 3 using xhci_hcd
[ 2.719161] sda: sda1
[ 2.719339] sd 4:0:0:0: [sda] Attached SCSI disk
[ 2.791461] nvme nvme0: pci function 0000:01:00.0
[ 2.797653] nvme nvme0: missing or invalid SUBNQN field.
[ 2.797853] nvme nvme0: Shutdown timeout set to 8 seconds
[ 2.804994] usb 1-8: New USB device found, idVendor=5986, idProduct=2110, bcdDevice= 6.06
[ 2.804997] usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.804998] usb 1-8: Product: BisonCam, NB Pro
[ 2.805000] usb 1-8: Manufacturer: SunplusIT Inc
[ 2.813861] nvme nvme0: 12/0/0 default/read/poll queues
[ 2.818245] nvme0n1: p1 p2 p3 p4 p5 p6 p7
[ 2.920212] usb 1-14: new full-speed USB device number 4 using xhci_hcd
[ 3.049140] usb 1-14: New USB device found, idVendor=8087, idProduct=0a2b, bcdDevice= 0.10
[ 3.049144] usb 1-14: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 3.060494] hid: raw HID events driver (C) Jiri Kosina
[ 3.069044] usbcore: registered new interface driver usbhid
[ 3.069047] usbhid: USB HID core driver
[ 3.154053] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.0/0003:046D:C52B.0001/input/input12
[ 3.205520] hid-generic 0003:046D:C52B.0001: input,hidraw0: USB HID v1.11 Keyboard [Logitech USB Receiver] on usb-0000:00:14.0-5/input0
[ 3.205739] input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1/0003:046D:C52B.0002/input/input13
[ 3.206026] input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1/0003:046D:C52B.0002/input/input14
[ 3.257384] input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.1/0003:046D:C52B.0002/input/input15
[ 3.257614] hid-generic 0003:046D:C52B.0002: input,hiddev0,hidraw1: USB HID v1.11 Mouse [Logitech USB Receiver] on usb-0000:00:14.0-5/input1
[ 3.257805] hid-generic 0003:046D:C52B.0003: hiddev1,hidraw2: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-5/input2
[ 3.424405] logitech-djreceiver 0003:046D:C52B.0003: hiddev0,hidraw0: USB HID v1.11 Device [Logitech USB Receiver] on usb-0000:00:14.0-5/input2
[ 3.430231] psmouse serio2: synaptics: queried max coordinates: x [..5656], y [..4728]
[ 3.531598] input: Logitech Wireless Device PID:407b Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/0003:046D:C52B.0003/0003:046D:407B.0004/input/input17
[ 3.531822] input: Logitech Wireless Device PID:407b Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/0003:046D:C52B.0003/0003:046D:407B.0004/input/input18
[ 3.531984] hid-generic 0003:046D:407B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech Wireless Device PID:407b] on usb-0000:00:14.0-5/input2:1
[ 3.552219] psmouse serio2: synaptics: queried min coordinates: x [1284..], y [1128..]
[ 3.552225] psmouse serio2: synaptics: Your touchpad (PNP: SYN1222 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.
[ 3.667048] input: Logitech MX Vertical as /devices/pci0000:00/0000:00:14.0/usb1/1-5/1-5:1.2/0003:046D:C52B.0003/0003:046D:407B.0004/input/input22
[ 3.667177] logitech-hidpp-device 0003:046D:407B.0004: input,hidraw1: USB HID v1.11 Keyboard [Logitech MX Vertical] on usb-0000:00:14.0-5/input2:1
[ 3.707658] psmouse serio2: synaptics: Touchpad model: 1, fw: 8.2, id: 0x1e2b1, caps: 0xf00223/0x840300/0x26800/0x0, board id: 3163, fw id: 2180635
[ 3.753813] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio2/input/input11
[ 3.825710] EXT4-fs (nvme0n1p7): mounted filesystem 25d39438-15e8-4695-96af-77b175419b29 ro with ordered data mode. Quota mode: none.
[ 3.982023] systemd[1]: Inserted module 'autofs4'
[ 4.063861] systemd[1]: systemd 255.4-1ubuntu8.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 4.063873] systemd[1]: Detected architecture x86-64.
[ 4.064569] systemd[1]: Hostname set to <abdullah-tuxedo>.
[ 4.273145] systemd[1]: Configuration file /run/systemd/system/netplan-ovs-cleanup.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway.
[ 4.386573] systemd[1]: Queued start job for default target graphical.target.
[ 4.404502] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
[ 4.404863] systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
[ 4.405066] systemd[1]: Created slice user.slice - User and Session Slice.
[ 4.405127] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
[ 4.405291] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
[ 4.405310] systemd[1]: Expecting device dev-disk-by\x2duuid-3691\x2d2F79.device - /dev/disk/by-uuid/3691-2F79...
[ 4.405316] systemd[1]: Expecting device dev-nvme0n1p6.device - /dev/nvme0n1p6...
[ 4.405321] systemd[1]: Expecting device dev-sda1.device - /dev/sda1...
[ 4.405339] systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
[ 4.405362] systemd[1]: Reached target remote-fs.target - Remote File Systems.
[ 4.405371] systemd[1]: Reached target slices.target - Slice Units.
[ 4.405385] systemd[1]: Reached target snapd.mounts-pre.target - Mounting snaps.
[ 4.405407] systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
[ 4.405558] systemd[1]: Listening on syslog.socket - Syslog Socket.
[ 4.405647] systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
[ 4.405698] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
[ 4.405789] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
[ 4.405903] systemd[1]: Listening on systemd-journald.socket - Journal Socket.
[ 4.406062] systemd[1]: Listening on systemd-oomd.socket - Userspace Out-Of-Memory (OOM) Killer Socket.
[ 4.406093] systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 4.406221] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
[ 4.406309] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
[ 4.407102] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[ 4.407746] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
[ 4.408683] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
[ 4.409342] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
[ 4.411047] systemd[1]: Starting systemd-journald.service - Journal Service...
[ 4.412139] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
[ 4.413525] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
[ 4.414840] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
[ 4.416044] systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
[ 4.417365] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
[ 4.418900] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
[ 4.420071] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
[ 4.421609] systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
[ 4.421863] systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
[ 4.423721] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
[ 4.423750] systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 4.425100] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
[ 4.425199] systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 4.426612] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
[ 4.427039] systemd-journald[433]: Collecting audit messages is disabled.
[ 4.427146] pstore: Using crash dump compression: deflate
[ 4.430297] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[ 4.430585] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
[ 4.430813] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
[ 4.431034] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
[ 4.431514] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
[ 4.432255] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 4.432706] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
[ 4.433621] systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
[ 4.434048] systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
[ 4.434793] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 4.435277] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
[ 4.436154] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 4.436607] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
[ 4.437327] systemd[1]: modprobe@loop.service: Deactivated successfully.
[ 4.437614] systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
[ 4.440995] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
[ 4.445522] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
[ 4.445571] systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
[ 4.447898] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
[ 4.454156] pstore: Registered efi_pstore as persistent store backend
[ 4.454989] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 4.455208] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
[ 4.456621] lp: driver loaded but no devices found
[ 4.457341] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
[ 4.457608] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
[ 4.457811] EXT4-fs (nvme0n1p7): re-mounted 25d39438-15e8-4695-96af-77b175419b29 r/w. Quota mode: none.
[ 4.459590] ppdev: user-space parallel port driver
[ 4.459853] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
[ 4.460751] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
[ 4.460815] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
[ 4.462325] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
[ 4.462357] systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
[ 4.470150] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
[ 4.470412] systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
[ 4.471661] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
[ 4.476536] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
[ 4.478848] systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
[ 4.479902] systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
[ 4.483369] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
[ 4.484580] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
[ 4.490760] systemd[1]: Started systemd-journald.service - Journal Service.
[ 4.499000] systemd-journald[433]: Received client request to flush runtime journal.
[ 4.508001] systemd-journald[433]: /var/log/journal/b9345171accd4bbdb68fb20877168a24/system.journal: Journal file uses a different sequence number ID, rotating.
[ 4.508008] systemd-journald[433]: Rotating system journal.
[ 4.508760] loop0: detected capacity change from 0 to 36344
[ 4.509199] loop1: detected capacity change from 0 to 8
[ 4.511467] loop2: detected capacity change from 0 to 18720
[ 4.511689] loop3: detected capacity change from 0 to 27112
[ 4.514641] loop4: detected capacity change from 0 to 177264
[ 4.516856] loop5: detected capacity change from 0 to 113992
[ 4.518578] loop6: detected capacity change from 0 to 113992
[ 4.520219] loop7: detected capacity change from 0 to 130960
[ 4.522014] loop8: detected capacity change from 0 to 152112
[ 4.523408] loop9: detected capacity change from 0 to 130960
[ 4.523997] loop10: detected capacity change from 0 to 152112
[ 4.526601] loop11: detected capacity change from 0 to 135520
[ 4.528482] loop12: detected capacity change from 0 to 135512
[ 4.530493] loop13: detected capacity change from 0 to 4072
[ 4.532370] loop14: detected capacity change from 0 to 164000
[ 4.532838] loop15: detected capacity change from 0 to 552488
[ 4.535923] loop16: detected capacity change from 0 to 555496
[ 4.536058] loop17: detected capacity change from 0 to 21952
[ 4.539083] loop18: detected capacity change from 0 to 38856
[ 4.540040] loop19: detected capacity change from 0 to 1055336
[ 4.540701] loop20: detected capacity change from 0 to 1056096
[ 4.543608] loop21: detected capacity change from 0 to 337560
[ 4.544034] loop22: detected capacity change from 0 to 337560
[ 4.547251] loop23: detected capacity change from 0 to 447264
[ 4.548716] loop24: detected capacity change from 0 to 447264
[ 4.550617] loop25: detected capacity change from 0 to 716168
[ 4.552199] loop26: detected capacity change from 0 to 716176
[ 4.553483] loop27: detected capacity change from 0 to 1032504
[ 4.554787] loop28: detected capacity change from 0 to 1034424
[ 4.556462] loop29: detected capacity change from 0 to 824040
[ 4.559496] loop30: detected capacity change from 0 to 832024
[ 4.560639] loop31: detected capacity change from 0 to 280
[ 4.563379] loop32: detected capacity change from 0 to 166424
[ 4.565939] loop33: detected capacity change from 0 to 187776
[ 4.567256] loop34: detected capacity change from 0 to 75960
[ 4.567828] loop35: detected capacity change from 0 to 893552
[ 4.571142] loop36: detected capacity change from 0 to 533936
[ 4.572811] loop37: detected capacity change from 0 to 593464
[ 4.575390] loop38: detected capacity change from 0 to 918896
[ 4.576404] loop39: detected capacity change from 0 to 919392
[ 4.578638] loop40: detected capacity change from 0 to 919168
[ 4.580014] loop41: detected capacity change from 0 to 921912
[ 4.580198] loop42: detected capacity change from 0 to 919400
[ 4.585068] loop43: detected capacity change from 0 to 897608
[ 4.586105] loop44: detected capacity change from 0 to 14528
[ 4.588806] loop45: detected capacity change from 0 to 14528
[ 4.591319] loop46: detected capacity change from 0 to 433128
[ 4.591492] loop47: detected capacity change from 0 to 460720
[ 4.616688] loop49: detected capacity change from 0 to 321576
[ 4.616714] loop50: detected capacity change from 0 to 884528
[ 4.627523] loop48: detected capacity change from 0 to 321584
[ 4.643634] loop51: detected capacity change from 0 to 884888
[ 4.647874] loop53: detected capacity change from 0 to 529752
[ 4.651227] loop52: detected capacity change from 0 to 332072
[ 4.651424] loop54: detected capacity change from 0 to 617376
[ 4.654963] loop56: detected capacity change from 0 to 617368
[ 4.655368] loop55: detected capacity change from 0 to 450064
[ 4.657382] loop57: detected capacity change from 0 to 450072
[ 4.659285] loop58: detected capacity change from 0 to 529752
[ 4.659573] loop59: detected capacity change from 0 to 305840
[ 4.661231] loop60: detected capacity change from 0 to 306832
[ 4.663619] loop62: detected capacity change from 0 to 360464
[ 4.663647] loop61: detected capacity change from 0 to 360312
[ 4.665502] loop63: detected capacity change from 0 to 26472
[ 4.669870] loop64: detected capacity change from 0 to 21584
[ 4.672058] loop66: detected capacity change from 0 to 1000
[ 4.672645] loop65: detected capacity change from 0 to 952
[ 4.674830] loop67: detected capacity change from 0 to 914472
[ 4.676305] loop68: detected capacity change from 0 to 916120
[ 4.678510] loop69: detected capacity change from 0 to 306448
[ 4.680287] loop70: detected capacity change from 0 to 306752
[ 4.680774] loop71: detected capacity change from 0 to 45056
[ 4.681437] loop72: detected capacity change from 0 to 46088
[ 4.685190] loop73: detected capacity change from 0 to 29024
[ 4.687226] loop74: detected capacity change from 0 to 5152
[ 4.692042] loop75: detected capacity change from 0 to 5152
[ 4.694400] loop77: detected capacity change from 0 to 53072
[ 4.694455] loop76: detected capacity change from 0 to 165128
[ 4.695146] loop78: detected capacity change from 0 to 53184
[ 4.697355] loop79: detected capacity change from 0 to 657576
[ 4.699539] loop80: detected capacity change from 0 to 657616
[ 4.702383] loop81: detected capacity change from 0 to 661400
[ 4.706014] loop82: detected capacity change from 0 to 854448
[ 4.707522] loop83: detected capacity change from 0 to 710752
[ 4.708101] loop84: detected capacity change from 0 to 710976
[ 4.711045] loop85: detected capacity change from 0 to 1018104
[ 4.711225] loop86: detected capacity change from 0 to 1023544
[ 4.713685] loop87: detected capacity change from 0 to 726144
[ 4.714919] loop88: detected capacity change from 0 to 190888
[ 4.715852] loop89: detected capacity change from 0 to 190936
[ 4.929621] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
[ 4.984567] mc: Linux media interface: v0.10
[ 5.011664] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 5.011725] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 5.018254] i2c i2c-0: 1/2 memory slots populated (from DMI)
[ 5.020017] i2c i2c-0: Successfully instantiated SPD at 0x50
[ 5.111844] Bluetooth: Core ver 2.22
[ 5.111871] NET: Registered PF_BLUETOOTH protocol family
[ 5.111873] Bluetooth: HCI device and connection manager initialized
[ 5.111878] Bluetooth: HCI socket layer initialized
[ 5.111881] Bluetooth: L2CAP socket layer initialized
[ 5.111886] Bluetooth: SCO socket layer initialized
[ 5.113761] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 5.114418] Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 5.114606] Loaded X.509 cert 'wens: 61c038651aabdcf94bd0ac7ff06c7248db18c600'
[ 5.119140] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 5.119145] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 5.119148] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 5.119149] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 5.119151] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 5.119152] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 5.122911] videodev: Linux video capture interface: v2.00
[ 5.126395] cryptd: max_cpu_qlen set to 1000
[ 5.133661] ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 5.140064] Intel(R) Wireless WiFi driver for Linux
[ 5.140179] iwlwifi 0000:02:00.0: enabling device (0000 -> 0002)
[ 5.141932] iwlwifi 0000:02:00.0: Detected crf-id 0xbadcafe, cnv-id 0x10 wfpm id 0x80000000
[ 5.141955] iwlwifi 0000:02:00.0: PCI dev 24fd/1010, rev=0x230, rfid=0xd55555d5
[ 5.143621] AVX2 version of gcm_enc/dec engaged.
[ 5.143670] AES CTR mode by8 optimization enabled
[ 5.144301] usbcore: registered new interface driver btusb
[ 5.144879] Bluetooth: hci0: Firmware revision 0.1 build 19 week 44 2021
[ 5.147323] Creating 1 MTD partitions on "0000:00:1f.5":
[ 5.147328] 0x000000000000-0x000001000000 : "BIOS"
[ 5.147864] Bluetooth: hci0: Reading supported features failed (-16)
[ 5.147870] Bluetooth: hci0: Error reading debug features
[ 5.147873] Bluetooth: hci0: HCI LE Coded PHY feature bit is set, but its usage is not supported.
[ 5.148881] usb 1-8: Found UVC 1.00 device BisonCam, NB Pro (5986:2110)
[ 5.164517] usbcore: registered new interface driver uvcvideo
[ 5.171993] iwlwifi 0000:02:00.0: loaded firmware version 36.ca7b901d.0 8265-36.ucode op_mode iwlmvm
[ 5.606385] i915 0000:00:02.0: [drm] VT-d active for gfx access
[ 5.628415] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 5.628825] i915 0000:00:02.0: [drm] Using Transparent Hugepages
[ 5.632814] i915 0000:00:02.0: vgaarb: VGA decodes changed: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 5.634721] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_ops [i915])
[ 5.635406] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 5.656863] snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002)
[ 5.726708] i915 0000:00:02.0: [drm] Skipping intel_backlight registration
[ 5.727040] [drm] Initialized i915 1.6.0 20230929 for 0000:00:02.0 on minor 1
[ 5.728668] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 5.728816] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input25
[ 5.729073] i915 display info: display version: 9
[ 5.729076] i915 display info: cursor_needs_physical: no
[ 5.729079] i915 display info: has_cdclk_crawl: no
[ 5.729081] i915 display info: has_cdclk_squash: no
[ 5.729083] i915 display info: has_ddi: yes
[ 5.729085] i915 display info: has_dp_mst: yes
[ 5.729086] i915 display info: has_dsb: no
[ 5.729088] i915 display info: has_fpga_dbg: yes
[ 5.729090] i915 display info: has_gmch: no
[ 5.729092] i915 display info: has_hotplug: yes
[ 5.729093] i915 display info: has_hti: no
[ 5.729095] i915 display info: has_ipc: yes
[ 5.729097] i915 display info: has_overlay: no
[ 5.729098] i915 display info: has_psr: yes
[ 5.729100] i915 display info: has_psr_hw_tracking: yes
[ 5.729102] i915 display info: overlay_needs_physical: no
[ 5.729103] i915 display info: supports_tv: no
[ 5.729105] i915 display info: has_hdcp: yes
[ 5.729108] i915 display info: has_dmc: yes
[ 5.729109] i915 display info: has_dsc: no
[ 5.729084] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 5.739581] fbcon: i915drmfb (fb0) is primary device
[ 5.739584] fbcon: Deferring console take-over
[ 5.739587] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 5.753709] iwlwifi 0000:02:00.0: Detected Intel(R) Dual Band Wireless AC 8265, REV=0x230
[ 5.753807] thermal thermal_zone2: failed to read out thermal zone (-61)
[ 5.776293] intel_tcc_cooling: Programmable TCC Offset detected
[ 5.781469] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC269VC: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 5.781475] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 5.781477] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
[ 5.781480] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 5.781481] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 5.781483] snd_hda_codec_realtek hdaudioC0D0: Mic=0x18
[ 5.781485] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 5.787543] intel_pmc_core intel_pmc_core.0: initialized
[ 5.802638] intel_rapl_common: Found RAPL domain package
[ 5.802644] intel_rapl_common: Found RAPL domain core
[ 5.802645] intel_rapl_common: Found RAPL domain uncore
[ 5.802648] intel_rapl_common: Found RAPL domain dram
[ 5.802649] intel_rapl_common: Found RAPL domain psys
[ 5.806347] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26
[ 5.806422] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27
[ 5.806665] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28
[ 5.806718] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29
[ 5.806761] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30
[ 5.812517] iwlwifi 0000:02:00.0: base HW address: 74:70:fd:fb:98:7a, OTP minor version: 0x0
[ 5.887392] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
[ 5.890671] iwlwifi 0000:02:00.0 wlp2s0: renamed from wlan0
[ 5.959951] audit: type=1400 audit(1725910603.862:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=1280 comm="apparmor_parser"
[ 5.960051] audit: type=1400 audit(1725910603.862:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=1279 comm="apparmor_parser"
[ 5.960056] audit: type=1400 audit(1725910603.862:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=1283 comm="apparmor_parser"
[ 5.960060] audit: type=1400 audit(1725910603.862:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=1277 comm="apparmor_parser"
[ 5.960089] audit: type=1400 audit(1725910603.862:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=1275 comm="apparmor_parser"
[ 5.960123] audit: type=1400 audit(1725910603.862:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=1287 comm="apparmor_parser"
[ 5.960164] audit: type=1400 audit(1725910603.862:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=1281 comm="apparmor_parser"
[ 5.960230] audit: type=1400 audit(1725910603.863:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=1284 comm="apparmor_parser"
[ 5.960237] audit: type=1400 audit(1725910603.863:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=1285 comm="apparmor_parser"
[ 5.960382] audit: type=1400 audit(1725910603.863:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=1278 comm="apparmor_parser"
[ 6.410645] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 6.410649] Bluetooth: BNEP filters: protocol multicast
[ 6.410654] Bluetooth: BNEP socket layer initialized
[ 6.412852] Bluetooth: MGMT ver 1.22
[ 6.417171] NET: Registered PF_ALG protocol family
[ 6.521880] loop90: detected capacity change from 0 to 8
[ 6.645512] NET: Registered PF_QIPCRTR protocol family
[ 7.674097] iwlwifi 0000:02:00.0: Registered PHC clock: iwlwifi-PTP, with index: 0
[ 8.597822] Bluetooth: RFCOMM TTY layer initialized
[ 8.597843] Bluetooth: RFCOMM socket layer initialized
[ 8.597847] Bluetooth: RFCOMM ver 1.11
[ 9.572593] rfkill: input handler disabled
[ 11.071049] wlp2s0: authenticate with c8:99:b2:79:13:6f (local address=74:70:fd:fb:98:7a)
[ 11.072203] wlp2s0: send auth to c8:99:b2:79:13:6f (try 1/3)
[ 11.092798] wlp2s0: authenticate with c8:99:b2:79:13:6f (local address=74:70:fd:fb:98:7a)
[ 11.092804] wlp2s0: send auth to c8:99:b2:79:13:6f (try 1/3)
[ 11.094613] wlp2s0: authenticated
[ 11.095239] wlp2s0: associate with c8:99:b2:79:13:6f (try 1/3)
[ 11.102446] wlp2s0: RX AssocResp from c8:99:b2:79:13:6f (capab=0x1011 status=0 aid=18)
[ 11.106487] wlp2s0: associated
[ 11.155343] wlp2s0: Limiting TX power to 23 (23 - 0) dBm as advertised by c8:99:b2:79:13:6f
[ 14.252838] systemd-journald[433]: /var/log/journal/b9345171accd4bbdb68fb20877168a24/user-1000.journal: Journal file uses a different sequence number ID, rotating.
[ 14.751064] kauditd_printk_skb: 215 callbacks suppressed
[ 14.751067] audit: type=1400 audit(1725910612.653:227): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=2761 comm="snap-confine" capability=12 capname="net_admin"
[ 14.751196] audit: type=1400 audit(1725910612.653:228): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=2761 comm="snap-confine" capability=38 capname="perfmon"
[ 14.759335] audit: type=1400 audit(1725910612.662:229): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/proc/2829/maps" pid=2829 comm="5" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 15.011971] rfkill: input handler enabled
[ 16.141668] rfkill: input handler disabled
[ 16.890425] warning: `kdeconnectd' uses wireless extensions which will stop working for Wi-Fi 7 hardware; use nl80211
[ 17.408296] audit: type=1400 audit(1725910615.311:230): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=3607 comm="snap-confine" capability=12 capname="net_admin"
[ 17.408302] audit: type=1400 audit(1725910615.311:231): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=3607 comm="snap-confine" capability=38 capname="perfmon"
[ 17.414930] audit: type=1400 audit(1725910615.317:232): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.snapd-desktop-integration" name="/proc/3647/maps" pid=3647 comm="5" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 21.474948] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
[ 21.488106] usb 2-1: New USB device found, idVendor=1058, idProduct=0820, bcdDevice=10.07
[ 21.488111] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=5
[ 21.488112] usb 2-1: Product: My Passport 0820
[ 21.488114] usb 2-1: Manufacturer: Western Digital
[ 21.488115] usb 2-1: SerialNumber: 575843314141334835303839
[ 21.509559] usb-storage 2-1:1.0: USB Mass Storage device detected
[ 21.509956] scsi host5: usb-storage 2-1:1.0
[ 21.510034] usbcore: registered new interface driver usb-storage
[ 21.511657] usbcore: registered new interface driver uas
[ 22.521484] scsi 5:0:0:0: Direct-Access WD My Passport 0820 1007 PQ: 0 ANSI: 6
[ 22.521754] scsi 5:0:0:1: Enclosure WD SES Device 1007 PQ: 0 ANSI: 6
[ 22.523863] sd 5:0:0:0: Attached scsi generic sg1 type 0
[ 22.524101] scsi 5:0:0:1: Attached scsi generic sg2 type 13
[ 22.525006] sd 5:0:0:0: [sdb] Spinning up disk...
[ 23.544827] .
[ 23.651182] logitech-hidpp-device 0003:046D:407B.0004: HID++ 4.5 device connected.
[ 24.569509] ....ready
[ 27.646672] sd 5:0:0:0: [sdb] 1953458176 512-byte logical blocks: (1.00 TB/931 GiB)
[ 27.647253] sd 5:0:0:0: [sdb] Write Protect is off
[ 27.647257] sd 5:0:0:0: [sdb] Mode Sense: 47 00 10 08
[ 27.647618] sd 5:0:0:0: [sdb] No Caching mode page found
[ 27.647619] sd 5:0:0:0: [sdb] Assuming drive cache: write through
[ 27.649901] sd 5:0:0:0: [sdb] Attached SCSI disk
[ 27.669958] scsi 5:0:0:1: Wrong diagnostic page; asked for 1 got 8
[ 27.669963] scsi 5:0:0:1: Failed to get diagnostic page 0x1
[ 27.669966] scsi 5:0:0:1: Failed to bind enclosure -19
[ 27.669978] ses 5:0:0:1: Attached Enclosure device
[ 40.193986] audit: type=1400 audit(1725910637.586:233): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=4236 comm="snap-confine" capability=12 capname="net_admin"
[ 40.193990] audit: type=1400 audit(1725910637.586:234): apparmor="DENIED" operation="capable" class="cap" profile="/usr/lib/snapd/snap-confine" pid=4236 comm="snap-confine" capability=38 capname="perfmon"
[ 40.300706] audit: type=1400 audit(1725910637.693:235): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firefox" name="/usr/local/share/" pid=4256 comm="5" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 40.359380] audit: type=1400 audit(1725910637.752:236): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firefox" name="/proc/4265/maps" pid=4265 comm="5" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 41.467835] audit: type=1107 audit(1725910638.860:237): pid=1646 uid=103 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/timedate1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.22" pid=4236 label="snap.firefox.firefox" peer_pid=2004 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 309.306848] audit: type=1107 audit(1725910906.698:238): pid=1646 uid=103 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/timedate1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.141" pid=4236 label="snap.firefox.firefox" peer_pid=5530 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
abdullah@abdullah-tuxedo:~$
|
|