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
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321 | ubuntu@ubuntu:~$ sudo dmesg
[ 0.000000] Linux version 6.2.0-26-generic (buildd@bos03-amd64-042) (x86_64-linux-gnu-gcc-11 (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #26~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Jul 13 16:27:29 UTC 2 (Ubuntu 6.2.0-26.26~22.04.1-generic 6.2.13)
[ 0.000000] Command line: BOOT_IMAGE=/casper/vmlinuz persistent file=/cdrom/preseed/ubuntu.seed quiet splash ---
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
[ 0.000000] x86/fpu: xstate_offset[3]: 576, xstate_sizes[3]: 64
[ 0.000000] x86/fpu: xstate_offset[4]: 640, xstate_sizes[4]: 64
[ 0.000000] x86/fpu: Enabled xstate features 0x1b, context size is 704 bytes, using 'compacted' format.
[ 0.000000] signal: max sigframe size: 2032
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x0000000000057fff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000000058000-0x0000000000058fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000059000-0x000000000009dfff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000403fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040400000-0x00000000b80a8fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000b80a9000-0x00000000b80a9fff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000b80aa000-0x00000000b80aafff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000b80ab000-0x00000000c8f9afff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000c8f9b000-0x00000000c9d7efff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000c9d7f000-0x00000000c9f7efff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000c9f7f000-0x00000000c9ffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000c9fff000-0x00000000c9ffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ca000000-0x00000000ce7fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fe010000-0x00000000fe010fff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000042f7fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] efi: EFI v2.50 by HP
[ 0.000000] efi: ACPI=0xc9ffe000 ACPI 2.0=0xc9ffe014 TPMFinalLog=0xc9f76000 SMBIOS=0xc9765000 SMBIOS 3.0=0xc9763000 MEMATTR=0xc3a15518 ESRT=0xc9766d98 MOKvar=0xc9761000 RNG=0xc9fbe018 TPMEventLog=0xb818d018
[ 0.000000] random: crng init done
[ 0.000000] efi: Remove mem47: MMIO range=[0xf8000000-0xfbffffff] (64MB) from e820 map
[ 0.000000] e820: remove [mem 0xf8000000-0xfbffffff] reserved
[ 0.000000] efi: Not removing mem48: MMIO range=[0xfe010000-0xfe010fff] (4KB) from e820 map
[ 0.000000] secureboot: Secure boot disabled
[ 0.000000] SMBIOS 3.0.0 present.
[ 0.000000] DMI: HP HP ProDesk 600 G3 SFF/82B4, BIOS P07 Ver. 02.47 06/15/2023
[ 0.000000] tsc: Detected 3500.000 MHz processor
[ 0.000000] tsc: Detected 3499.912 MHz TSC
[ 0.001054] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001057] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001064] last_pfn = 0x42f800 max_arch_pfn = 0x400000000
[ 0.001068] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.001564] last_pfn = 0xca000 max_arch_pfn = 0x400000000
[ 0.014825] esrt: Reserving ESRT space from 0x00000000c9766d98 to 0x00000000c9766dd0.
[ 0.014832] Using GB pages for direct mapping
[ 0.015247] secureboot: Secure boot disabled
[ 0.015247] RAMDISK: [mem 0xaa57c000-0xb319bfff]
[ 0.015251] ACPI: Early table checksum verification disabled
[ 0.015254] ACPI: RSDP 0x00000000C9FFE014 000024 (v02 HPQOEM)
[ 0.015257] ACPI: XSDT 0x00000000C9FC3188 0000F4 (v01 HPQOEM SLIC-BPC 00000000 01000013)
[ 0.015262] ACPI: FACP 0x00000000C9FF2000 00010C (v05 HPQOEM SLIC-BPC 00000000 HP 00000001)
[ 0.015267] ACPI: DSDT 0x00000000C9FCE000 02021A (v02 HPQOEM 82B4 00000000 INTL 20160422)
[ 0.015269] ACPI: FACS 0x00000000C9F63000 000040
[ 0.015272] ACPI: SSDT 0x00000000C9FFC000 00012A (v02 HP ShmTable 00000001 INTL 20160422)
[ 0.015274] ACPI: UEFI 0x00000000C9F71000 000042 (v01 HPQOEM EDK2 00000002 01000013)
[ 0.015277] ACPI: SSDT 0x00000000C9FFB000 0003B3 (v02 HPQOEM Tpm2Tabl 00001000 INTL 20160422)
[ 0.015279] ACPI: TPM2 0x00000000C9FFA000 000034 (v03 HPQOEM EDK2 00000002 01000013)
[ 0.015282] ACPI: SSDT 0x00000000C9FF6000 0032D6 (v02 SaSsdt SaSsdt 00003000 INTL 20160422)
[ 0.015285] ACPI: MSDM 0x00000000C9FF5000 000055 (v03 HPQOEM SLIC-BPC 00000000 HP 00000001)
[ 0.015287] ACPI: SLIC 0x00000000C9FF4000 000176 (v01 HPQOEM SLIC-BPC 00000001 HP 00000001)
[ 0.015290] ACPI: WSMT 0x00000000C9FF3000 000028 (v01 HPQOEM 82B4 00000001 HP 00000001)
[ 0.015292] ACPI: HPET 0x00000000C9FF1000 000038 (v01 HPQOEM 82B4 00000001 HP 00000001)
[ 0.015295] ACPI: APIC 0x00000000C9FF0000 00012C (v03 HPQOEM 82B4 00000001 HP 00000001)
[ 0.015297] ACPI: MCFG 0x00000000C9FEF000 00003C (v01 HPQOEM 82B4 00000001 HP 00000001)
[ 0.015300] ACPI: SSDT 0x00000000C9FCD000 0001BC (v02 HPQOEM Sata0Ide 00001000 INTL 20160422)
[ 0.015302] ACPI: SSDT 0x00000000C9FCC000 000734 (v01 HPQOEM PtidDevc 00001000 INTL 20160422)
[ 0.015305] ACPI: SSDT 0x00000000C9FCA000 0017AE (v02 CpuRef CpuSsdt 00003000 INTL 20160422)
[ 0.015307] ACPI: SSDT 0x00000000C9FC9000 0009CF (v02 CtdpB CtdpB 00001000 INTL 20160422)
[ 0.015310] ACPI: SSDT 0x00000000C9FC8000 000141 (v02 INTEL HdaDsp 00000000 INTL 20160422)
[ 0.015312] ACPI: SSDT 0x00000000C9FC7000 00029F (v02 INTEL sensrhub 00000000 INTL 20160422)
[ 0.015315] ACPI: SSDT 0x00000000C9FC6000 000346 (v01 INTEL EInkApp 00000000 INTL 20160422)
[ 0.015317] ACPI: SSDT 0x00000000C9FC5000 000358 (v02 INTEL AMLY4ISH 00000000 INTL 20160422)
[ 0.015320] ACPI: DBGP 0x00000000C9FC4000 000034 (v01 INTEL 00000002 MSFT 0000005F)
[ 0.015323] ACPI: DBG2 0x00000000C9FFD000 000054 (v00 INTEL 00000002 MSFT 0000005F)
[ 0.015325] ACPI: SSDT 0x00000000C9FC2000 000069 (v01 HP HPCAHWID 00001000 INTL 20160422)
[ 0.015328] ACPI: ASF! 0x00000000C9FC1000 0000A0 (v32 HPQOEM UYA 00000001 TFSM 000F4240)
[ 0.015331] ACPI: FPDT 0x00000000C9FC0000 000044 (v01 HPQOEM EDK2 00000002 01000013)
[ 0.015333] ACPI: BGRT 0x00000000C9FBF000 000038 (v01 HPQOEM EDK2 00000002 01000013)
[ 0.015335] ACPI: Reserving FACP table memory at [mem 0xc9ff2000-0xc9ff210b]
[ 0.015337] ACPI: Reserving DSDT table memory at [mem 0xc9fce000-0xc9fee219]
[ 0.015338] ACPI: Reserving FACS table memory at [mem 0xc9f63000-0xc9f6303f]
[ 0.015338] ACPI: Reserving SSDT table memory at [mem 0xc9ffc000-0xc9ffc129]
[ 0.015339] ACPI: Reserving UEFI table memory at [mem 0xc9f71000-0xc9f71041]
[ 0.015340] ACPI: Reserving SSDT table memory at [mem 0xc9ffb000-0xc9ffb3b2]
[ 0.015341] ACPI: Reserving TPM2 table memory at [mem 0xc9ffa000-0xc9ffa033]
[ 0.015341] ACPI: Reserving SSDT table memory at [mem 0xc9ff6000-0xc9ff92d5]
[ 0.015342] ACPI: Reserving MSDM table memory at [mem 0xc9ff5000-0xc9ff5054]
[ 0.015343] ACPI: Reserving SLIC table memory at [mem 0xc9ff4000-0xc9ff4175]
[ 0.015344] ACPI: Reserving WSMT table memory at [mem 0xc9ff3000-0xc9ff3027]
[ 0.015344] ACPI: Reserving HPET table memory at [mem 0xc9ff1000-0xc9ff1037]
[ 0.015345] ACPI: Reserving APIC table memory at [mem 0xc9ff0000-0xc9ff012b]
[ 0.015346] ACPI: Reserving MCFG table memory at [mem 0xc9fef000-0xc9fef03b]
[ 0.015347] ACPI: Reserving SSDT table memory at [mem 0xc9fcd000-0xc9fcd1bb]
[ 0.015347] ACPI: Reserving SSDT table memory at [mem 0xc9fcc000-0xc9fcc733]
[ 0.015348] ACPI: Reserving SSDT table memory at [mem 0xc9fca000-0xc9fcb7ad]
[ 0.015349] ACPI: Reserving SSDT table memory at [mem 0xc9fc9000-0xc9fc99ce]
[ 0.015350] ACPI: Reserving SSDT table memory at [mem 0xc9fc8000-0xc9fc8140]
[ 0.015350] ACPI: Reserving SSDT table memory at [mem 0xc9fc7000-0xc9fc729e]
[ 0.015351] ACPI: Reserving SSDT table memory at [mem 0xc9fc6000-0xc9fc6345]
[ 0.015352] ACPI: Reserving SSDT table memory at [mem 0xc9fc5000-0xc9fc5357]
[ 0.015353] ACPI: Reserving DBGP table memory at [mem 0xc9fc4000-0xc9fc4033]
[ 0.015353] ACPI: Reserving DBG2 table memory at [mem 0xc9ffd000-0xc9ffd053]
[ 0.015354] ACPI: Reserving SSDT table memory at [mem 0xc9fc2000-0xc9fc2068]
[ 0.015355] ACPI: Reserving ASF! table memory at [mem 0xc9fc1000-0xc9fc109f]
[ 0.015356] ACPI: Reserving FPDT table memory at [mem 0xc9fc0000-0xc9fc0043]
[ 0.015357] ACPI: Reserving BGRT table memory at [mem 0xc9fbf000-0xc9fbf037]
[ 0.015542] No NUMA configuration found
[ 0.015543] Faking a node at [mem 0x0000000000000000-0x000000042f7fffff]
[ 0.015550] NODE_DATA(0) allocated [mem 0x42f7d5000-0x42f7fffff]
[ 0.015744] Zone ranges:
[ 0.015745] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.015746] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.015748] Normal [mem 0x0000000100000000-0x000000042f7fffff]
[ 0.015749] Device empty
[ 0.015750] Movable zone start for each node
[ 0.015752] Early memory node ranges
[ 0.015752] node 0: [mem 0x0000000000001000-0x0000000000057fff]
[ 0.015753] node 0: [mem 0x0000000000059000-0x000000000009dfff]
[ 0.015754] node 0: [mem 0x0000000000100000-0x000000003fffffff]
[ 0.015755] node 0: [mem 0x0000000040400000-0x00000000b80a8fff]
[ 0.015756] node 0: [mem 0x00000000b80ab000-0x00000000c8f9afff]
[ 0.015757] node 0: [mem 0x00000000c9fff000-0x00000000c9ffffff]
[ 0.015757] node 0: [mem 0x0000000100000000-0x000000042f7fffff]
[ 0.015759] Initmem setup node 0 [mem 0x0000000000001000-0x000000042f7fffff]
[ 0.015763] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.015764] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.015789] On node 0, zone DMA: 98 pages in unavailable ranges
[ 0.021658] On node 0, zone DMA32: 1024 pages in unavailable ranges
[ 0.022202] On node 0, zone DMA32: 2 pages in unavailable ranges
[ 0.022236] On node 0, zone DMA32: 4196 pages in unavailable ranges
[ 0.048634] On node 0, zone Normal: 24576 pages in unavailable ranges
[ 0.048651] On node 0, zone Normal: 2048 pages in unavailable ranges
[ 0.048670] Reserving Intel graphics memory at [mem 0xcc800000-0xce7fffff]
[ 0.048800] ACPI: PM-Timer IO Port: 0x1808
[ 0.048806] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[ 0.048807] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
[ 0.048808] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
[ 0.048809] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
[ 0.048809] ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1])
[ 0.048810] ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1])
[ 0.048811] ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1])
[ 0.048811] ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1])
[ 0.048812] ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1])
[ 0.048813] ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1])
[ 0.048813] ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1])
[ 0.048814] ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1])
[ 0.048815] ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1])
[ 0.048815] ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1])
[ 0.048816] ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1])
[ 0.048817] ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1])
[ 0.048854] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
[ 0.048856] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.048858] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.048861] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.048862] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.048867] e820: update [mem 0xc39fd000-0xc3a10fff] usable ==> reserved
[ 0.048877] TSC deadline timer available
[ 0.048878] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
[ 0.048894] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.048895] PM: hibernation: Registered nosave memory: [mem 0x00058000-0x00058fff]
[ 0.048897] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff]
[ 0.048899] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x403fffff]
[ 0.048900] PM: hibernation: Registered nosave memory: [mem 0xb80a9000-0xb80a9fff]
[ 0.048901] PM: hibernation: Registered nosave memory: [mem 0xb80aa000-0xb80aafff]
[ 0.048902] PM: hibernation: Registered nosave memory: [mem 0xc39fd000-0xc3a10fff]
[ 0.048904] PM: hibernation: Registered nosave memory: [mem 0xc8f9b000-0xc9d7efff]
[ 0.048905] PM: hibernation: Registered nosave memory: [mem 0xc9d7f000-0xc9f7efff]
[ 0.048905] PM: hibernation: Registered nosave memory: [mem 0xc9f7f000-0xc9ffefff]
[ 0.048907] PM: hibernation: Registered nosave memory: [mem 0xca000000-0xce7fffff]
[ 0.048907] PM: hibernation: Registered nosave memory: [mem 0xce800000-0xfe00ffff]
[ 0.048908] PM: hibernation: Registered nosave memory: [mem 0xfe010000-0xfe010fff]
[ 0.048909] PM: hibernation: Registered nosave memory: [mem 0xfe011000-0xffffffff]
[ 0.048910] [mem 0xce800000-0xfe00ffff] available for PCI devices
[ 0.048911] Booting paravirtualized kernel on bare hardware
[ 0.048913] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.048919] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
[ 0.049295] percpu: Embedded 62 pages/cpu s217088 r8192 d28672 u524288
[ 0.049302] pcpu-alloc: s217088 r8192 d28672 u524288 alloc=1*2097152
[ 0.049304] pcpu-alloc: [0] 0 1 2 3
[ 0.049327] Fallback order for Node 0: 0
[ 0.049329] Built 1 zonelists, mobility grouping on. Total pages: 4097163
[ 0.049330] Policy zone: Normal
[ 0.049331] Kernel command line: BOOT_IMAGE=/casper/vmlinuz persistent file=/cdrom/preseed/ubuntu.seed quiet splash ---
[ 0.049413] Unknown kernel command line parameters "persistent splash --- BOOT_IMAGE=/casper/vmlinuz file=/cdrom/preseed/ubuntu.seed", will be passed to user space.
[ 0.051474] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
[ 0.052500] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.052555] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.052558] software IO TLB: area num 4.
[ 0.110181] Memory: 16026440K/16649432K available (20480K kernel code, 4150K rwdata, 12696K rodata, 4664K init, 17644K bss, 622732K reserved, 0K cma-reserved)
[ 0.110280] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
[ 0.110289] Kernel/User page tables isolation: enabled
[ 0.110317] ftrace: allocating 53364 entries in 209 pages
[ 0.118093] ftrace: allocated 209 pages with 4 groups
[ 0.118762] Dynamic Preempt: voluntary
[ 0.118783] rcu: Preemptible hierarchical RCU implementation.
[ 0.118784] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
[ 0.118785] Trampoline variant of Tasks RCU enabled.
[ 0.118786] Rude variant of Tasks RCU enabled.
[ 0.118786] Tracing variant of Tasks RCU enabled.
[ 0.118787] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.118787] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
[ 0.121211] NR_IRQS: 524544, nr_irqs: 1024, preallocated irqs: 16
[ 0.121433] rcu: srcu_init: Setting srcu_struct sizes based on contention.
[ 0.121605] Console: colour dummy device 80x25
[ 0.121607] printk: console [tty0] enabled
[ 0.121642] ACPI: Core revision 20221020
[ 0.121883] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
[ 0.121955] APIC: Switch to symmetric I/O mode setup
[ 0.123180] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.127509] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.145961] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x3272fd97217, max_idle_ns: 440795241220 ns
[ 0.145966] Calibrating delay loop (skipped), value calculated using timer frequency.. 6999.82 BogoMIPS (lpj=13999648)
[ 0.145968] pid_max: default: 32768 minimum: 301
[ 0.147841] LSM: initializing lsm=lockdown,capability,landlock,yama,integrity,apparmor
[ 0.147850] landlock: Up and running.
[ 0.147851] Yama: becoming mindful.
[ 0.147877] AppArmor: AppArmor initialized
[ 0.147927] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.147958] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes, linear)
[ 0.148154] x86/cpu: VMX (outside TXT) disabled by BIOS
[ 0.148158] x86/cpu: SGX disabled by BIOS.
[ 0.148163] CPU0: Thermal monitoring enabled (TM1)
[ 0.148198] process: using mwait in idle threads
[ 0.148200] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
[ 0.148201] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
[ 0.148206] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.148207] Spectre V2 : Mitigation: IBRS
[ 0.148208] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.148209] Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
[ 0.148210] RETBleed: Mitigation: IBRS
[ 0.148211] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.148212] Spectre V2 : User space: Mitigation: STIBP via prctl
[ 0.148213] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
[ 0.148220] MDS: Mitigation: Clear CPU buffers
[ 0.148221] MMIO Stale Data: Mitigation: Clear CPU buffers
[ 0.148226] SRBDS: Mitigation: Microcode
[ 0.173568] Freeing SMP alternatives memory: 44K
[ 0.174039] smpboot: CPU0: Intel(R) Pentium(R) CPU G4560 @ 3.50GHz (family: 0x6, model: 0x9e, stepping: 0x9)
[ 0.174140] cblist_init_generic: Setting adjustable number of callback queues.
[ 0.174141] cblist_init_generic: Setting shift to 2 and lim to 1.
[ 0.174155] cblist_init_generic: Setting shift to 2 and lim to 1.
[ 0.174165] cblist_init_generic: Setting shift to 2 and lim to 1.
[ 0.174175] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
[ 0.174199] ... version: 4
[ 0.174200] ... bit width: 48
[ 0.174200] ... generic registers: 4
[ 0.174201] ... value mask: 0000ffffffffffff
[ 0.174202] ... max period: 00007fffffffffff
[ 0.174203] ... fixed-purpose events: 3
[ 0.174204] ... event mask: 000000070000000f
[ 0.174316] Estimated ratio of average max frequency by base frequency (times 1024): 1024
[ 0.174332] rcu: Hierarchical SRCU implementation.
[ 0.174333] rcu: Max phase no-delay instances is 1000.
[ 0.174798] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.174840] smp: Bringing up secondary CPUs ...
[ 0.174917] x86: Booting SMP configuration:
[ 0.174918] .... node #0, CPUs: #1 #2
[ 0.176125] 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.176125] 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.177985] #3
[ 0.179183] smp: Brought up 1 node, 4 CPUs
[ 0.179183] smpboot: Max logical packages: 1
[ 0.179183] smpboot: Total of 4 processors activated (27999.29 BogoMIPS)
[ 0.179843] devtmpfs: initialized
[ 0.179843] x86/mm: Memory block size: 128MB
[ 0.182888] ACPI: PM: Registering ACPI NVS region [mem 0xb80a9000-0xb80a9fff] (4096 bytes)
[ 0.182888] ACPI: PM: Registering ACPI NVS region [mem 0xc9d7f000-0xc9f7efff] (2097152 bytes)
[ 0.182888] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.182888] futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
[ 0.182888] pinctrl core: initialized pinctrl subsystem
[ 0.182888] PM: RTC time: 09:53:27, date: 2024-07-24
[ 0.182888] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.182912] DMA: preallocated 2048 KiB GFP_KERNEL pool for atomic allocations
[ 0.183045] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.183194] DMA: preallocated 2048 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.183207] audit: initializing netlink subsys (disabled)
[ 0.183222] audit: type=2000 audit(1721814807.060:1): state=initialized audit_enabled=0 res=1
[ 0.183222] thermal_sys: Registered thermal governor 'fair_share'
[ 0.183222] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.183222] thermal_sys: Registered thermal governor 'step_wise'
[ 0.183222] thermal_sys: Registered thermal governor 'user_space'
[ 0.183222] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.183222] EISA bus registered
[ 0.183222] cpuidle: using governor ladder
[ 0.183222] cpuidle: using governor menu
[ 0.183222] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.183222] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.183222] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.183222] PCI: not using MMCONFIG
[ 0.183222] PCI: Using configuration type 1 for base access
[ 0.183222] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.183222] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[ 0.183222] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
[ 0.183222] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
[ 0.183222] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.183222] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
[ 0.183222] fbcon: Taking over console
[ 0.183222] ACPI: Added _OSI(Module Device)
[ 0.183222] ACPI: Added _OSI(Processor Device)
[ 0.183222] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.183222] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.220844] ACPI: 13 ACPI AML tables successfully acquired and loaded
[ 0.223816] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
[ 0.229967] ACPI: Dynamic OEM Table Load:
[ 0.229967] ACPI: SSDT 0xFFFF8A28012E8800 000717 (v02 PmRef Cpu0Ist 00003000 INTL 20160422)
[ 0.229967] ACPI: \_PR_.PR00: _OSC native thermal LVT Acked
[ 0.230305] ACPI: Dynamic OEM Table Load:
[ 0.230312] ACPI: SSDT 0xFFFF8A2801297400 0003FF (v02 PmRef Cpu0Cst 00003001 INTL 20160422)
[ 0.232269] ACPI: Dynamic OEM Table Load:
[ 0.232276] ACPI: SSDT 0xFFFF8A28009AB000 000D14 (v02 PmRef ApIst 00003000 INTL 20160422)
[ 0.234623] ACPI: Dynamic OEM Table Load:
[ 0.234629] ACPI: SSDT 0xFFFF8A2801297C00 000317 (v02 PmRef ApHwp 00003000 INTL 20160422)
[ 0.236116] ACPI: Dynamic OEM Table Load:
[ 0.236122] ACPI: SSDT 0xFFFF8A2801297800 00030A (v02 PmRef ApCst 00003000 INTL 20160422)
[ 0.238689] ACPI: EC: EC started
[ 0.238690] ACPI: EC: interrupt blocked
[ 0.238708] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.238710] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.238711] ACPI: Interpreter enabled
[ 0.238756] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.238757] ACPI: Using IOAPIC for interrupt routing
[ 0.240718] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
[ 0.241862] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved as ACPI motherboard resource
[ 0.241871] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.241872] PCI: Ignoring E820 reservations for host bridge windows
[ 0.242291] ACPI: Enabled 5 GPEs in block 00 to 7F
[ 0.242937] ACPI Warning: \_SB._PLD: Return Package type mismatch at index 0 - found Package, expected Buffer (20221020/nspredef-260)
[ 0.243805] ACPI: \_SB_.PCI0.PEG0.PEGP.WRST: New power resource
[ 0.252925] ACPI: \_SB_.PCI0.RP01.PXSX.WRST: New power resource
[ 0.253343] ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
[ 0.253758] ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
[ 0.254172] ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
[ 0.254592] ACPI: \_SB_.PCI0.RP05.PXSX.WRST: New power resource
[ 0.255011] ACPI: \_SB_.PCI0.RP06.PXSX.WRST: New power resource
[ 0.255429] ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
[ 0.255843] ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
[ 0.256256] ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
[ 0.256669] ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
[ 0.257085] ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
[ 0.257503] ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
[ 0.257919] ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
[ 0.258343] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
[ 0.258762] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
[ 0.259181] ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
[ 0.259607] ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
[ 0.260027] ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
[ 0.260455] ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
[ 0.260869] ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
[ 0.266257] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.266263] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.270023] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
[ 0.270025] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
[ 0.273033] PCI host bridge to bus 0000:00
[ 0.273035] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.273038] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.273039] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window]
[ 0.273041] pci_bus 0000:00: root bus resource [mem 0xce800000-0xf7ffffff window]
[ 0.273042] pci_bus 0000:00: root bus resource [mem 0x1c00000000-0x1fffffffff window]
[ 0.273043] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
[ 0.273045] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.273074] pci 0000:00:00.0: [8086:590f] type 00 class 0x060000
[ 0.273177] pci 0000:00:02.0: [8086:5902] type 00 class 0x030000
[ 0.273194] pci 0000:00:02.0: reg 0x10: [mem 0x1ff0000000-0x1ff0ffffff 64bit]
[ 0.273207] pci 0000:00:02.0: reg 0x18: [mem 0x1fe0000000-0x1fefffffff 64bit pref]
[ 0.273216] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.273240] pci 0000:00:02.0: BAR 2: assigned to efifb
[ 0.273244] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.273523] pci 0000:00:14.0: [8086:a2af] type 00 class 0x0c0330
[ 0.273559] pci 0000:00:14.0: reg 0x10: [mem 0xce920000-0xce92ffff 64bit]
[ 0.273679] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.274554] pci 0000:00:14.2: [8086:a2b1] type 00 class 0x118000
[ 0.274590] pci 0000:00:14.2: reg 0x10: [mem 0x1ff1016000-0x1ff1016fff 64bit]
[ 0.274798] pci 0000:00:16.0: [8086:a2ba] type 00 class 0x078000
[ 0.274829] pci 0000:00:16.0: reg 0x10: [mem 0x1ff1015000-0x1ff1015fff 64bit]
[ 0.274922] pci 0000:00:16.0: PME# supported from D3hot
[ 0.275330] pci 0000:00:16.3: [8086:a2bd] type 00 class 0x070002
[ 0.275352] pci 0000:00:16.3: reg 0x10: [io 0x3088-0x308f]
[ 0.275364] pci 0000:00:16.3: reg 0x14: [mem 0xce938000-0xce938fff]
[ 0.275538] pci 0000:00:17.0: [8086:a282] type 00 class 0x010601
[ 0.275566] pci 0000:00:17.0: reg 0x10: [mem 0xce934000-0xce935fff]
[ 0.275582] pci 0000:00:17.0: reg 0x14: [mem 0xce937000-0xce9370ff]
[ 0.275598] pci 0000:00:17.0: reg 0x18: [io 0x3080-0x3087]
[ 0.275614] pci 0000:00:17.0: reg 0x1c: [io 0x3090-0x3093]
[ 0.275630] pci 0000:00:17.0: reg 0x20: [io 0x3060-0x307f]
[ 0.275646] pci 0000:00:17.0: reg 0x24: [mem 0xce936000-0xce9367ff]
[ 0.275712] pci 0000:00:17.0: PME# supported from D3hot
[ 0.276058] pci 0000:00:1f.0: [8086:a2c6] type 00 class 0x060100
[ 0.276463] pci 0000:00:1f.2: [8086:a2a1] type 00 class 0x058000
[ 0.276484] pci 0000:00:1f.2: reg 0x10: [mem 0xce930000-0xce933fff]
[ 0.276825] pci 0000:00:1f.3: [8086:a2f0] type 00 class 0x040300
[ 0.276856] pci 0000:00:1f.3: reg 0x10: [mem 0x1ff1010000-0x1ff1013fff 64bit]
[ 0.276894] pci 0000:00:1f.3: reg 0x20: [mem 0x1ff1000000-0x1ff100ffff 64bit]
[ 0.276949] pci 0000:00:1f.3: PME# supported from D3hot D3cold
[ 0.277745] pci 0000:00:1f.4: [8086:a2a3] type 00 class 0x0c0500
[ 0.277803] pci 0000:00:1f.4: reg 0x10: [mem 0x1ff1014000-0x1ff10140ff 64bit]
[ 0.277859] pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf]
[ 0.278205] pci 0000:00:1f.6: [8086:15e3] type 00 class 0x020000
[ 0.278233] pci 0000:00:1f.6: reg 0x10: [mem 0xce900000-0xce91ffff]
[ 0.278375] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
[ 0.280445] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
[ 0.280540] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
[ 0.280633] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.280725] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
[ 0.280816] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
[ 0.280904] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
[ 0.280997] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
[ 0.281090] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
[ 0.281470] ACPI: EC: interrupt unblocked
[ 0.281471] ACPI: EC: event unblocked
[ 0.281480] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.281481] ACPI: EC: GPE=0x6e
[ 0.281483] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.281485] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.282001] iommu: Default domain type: Translated
[ 0.282001] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.282130] SCSI subsystem initialized
[ 0.282136] libata version 3.00 loaded.
[ 0.282136] ACPI: bus type USB registered
[ 0.282136] usbcore: registered new interface driver usbfs
[ 0.282136] usbcore: registered new interface driver hub
[ 0.282136] usbcore: registered new device driver usb
[ 0.282136] pps_core: LinuxPPS API ver. 1 registered
[ 0.282136] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.282136] PTP clock support registered
[ 0.282136] EDAC MC: Ver: 3.0.0
[ 0.282136] Registered efivars operations
[ 0.286175] NetLabel: Initializing
[ 0.286176] NetLabel: domain hash size = 128
[ 0.286177] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.286193] NetLabel: unlabeled traffic allowed by default
[ 0.286206] mctp: management component transport protocol core
[ 0.286206] NET: Registered PF_MCTP protocol family
[ 0.286206] PCI: Using ACPI for IRQ routing
[ 0.290352] PCI: pci_cache_line_size set to 64 bytes
[ 0.290392] e820: reserve RAM buffer [mem 0x00058000-0x0005ffff]
[ 0.290394] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
[ 0.290395] e820: reserve RAM buffer [mem 0xb80a9000-0xbbffffff]
[ 0.290396] e820: reserve RAM buffer [mem 0xc39fd000-0xc3ffffff]
[ 0.290397] e820: reserve RAM buffer [mem 0xc8f9b000-0xcbffffff]
[ 0.290398] e820: reserve RAM buffer [mem 0xca000000-0xcbffffff]
[ 0.290399] e820: reserve RAM buffer [mem 0x42f800000-0x42fffffff]
[ 0.290425] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.290425] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.290425] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.290425] vgaarb: loaded
[ 0.290841] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.290849] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
[ 0.296034] clocksource: Switched to clocksource tsc-early
[ 0.304537] VFS: Disk quotas dquot_6.6.0
[ 0.304551] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.304660] AppArmor: AppArmor Filesystem Enabled
[ 0.304712] pnp: PnP ACPI init
[ 0.304811] system 00:00: [mem 0x40000000-0x403fffff] has been reserved
[ 0.304941] system 00:01: [mem 0xfd000000-0xfdabffff] has been reserved
[ 0.304944] system 00:01: [mem 0xfdad0000-0xfdadffff] has been reserved
[ 0.304945] system 00:01: [mem 0xfdb00000-0xfdffffff] has been reserved
[ 0.304947] system 00:01: [mem 0xfe000000-0xfe01ffff] could not be reserved
[ 0.304948] system 00:01: [mem 0xfe03d000-0xfe3fffff] has been reserved
[ 0.305272] system 00:02: [io 0x2000-0x20fe] has been reserved
[ 0.305423] system 00:03: [io 0x0680-0x069f] has been reserved
[ 0.305425] system 00:03: [io 0xffff] has been reserved
[ 0.305427] system 00:03: [io 0xffff] has been reserved
[ 0.305428] system 00:03: [io 0xffff] has been reserved
[ 0.305431] system 00:03: [io 0x1800-0x18fe] has been reserved
[ 0.305432] system 00:03: [io 0x164e-0x164f] has been reserved
[ 0.305525] system 00:04: [io 0x0800-0x087f] has been reserved
[ 0.305590] system 00:05: [io 0x1854-0x1857] has been reserved
[ 0.305840] system 00:08: [io 0x0200-0x023f] has been reserved
[ 0.305842] system 00:08: [mem 0xfedb0000-0xfedbffff] has been reserved
[ 0.306236] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.306238] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.306239] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.306241] system 00:09: [mem 0xf8000000-0xfbffffff] has been reserved
[ 0.306242] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.306244] system 00:09: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.306245] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
[ 0.306247] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
[ 0.306248] system 00:09: [mem 0xfee00000-0xfeefffff] has been reserved
[ 0.306250] system 00:09: [mem 0xce800000-0xce81ffff] has been reserved
[ 0.306708] pnp: PnP ACPI: found 10 devices
[ 0.312504] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.312556] NET: Registered PF_INET protocol family
[ 0.312672] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
[ 0.315122] tcp_listen_portaddr_hash hash table entries: 8192 (order: 5, 131072 bytes, linear)
[ 0.315147] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
[ 0.315214] TCP established hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.315413] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
[ 0.315607] TCP: Hash tables configured (established 131072 bind 65536)
[ 0.315686] MPTCP token hash table entries: 16384 (order: 6, 393216 bytes, linear)
[ 0.315730] UDP hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.315780] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes, linear)
[ 0.315831] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.315837] NET: Registered PF_XDP protocol family
[ 0.315847] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.315850] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.315851] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window]
[ 0.315853] pci_bus 0000:00: resource 7 [mem 0xce800000-0xf7ffffff window]
[ 0.315854] pci_bus 0000:00: resource 8 [mem 0x1c00000000-0x1fffffffff window]
[ 0.315855] pci_bus 0000:00: resource 9 [mem 0xfd000000-0xfe7fffff window]
[ 0.316364] PCI: CLS 0 bytes, default 64
[ 0.316371] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.316372] software IO TLB: mapped [mem 0x00000000c4382000-0x00000000c8382000] (64MB)
[ 0.316425] Trying to unpack rootfs image as initramfs...
[ 0.326173] platform rtc_cmos: registered platform RTC device (no PNP device found)
[ 0.326555] Initialise system trusted keyrings
[ 0.326562] Key type blacklist registered
[ 0.326621] workingset: timestamp_bits=36 max_order=22 bucket_order=0
[ 0.326633] zbud: loaded
[ 0.326822] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.326899] fuse: init (API version 7.38)
[ 0.326998] integrity: Platform Keyring initialized
[ 0.327003] integrity: Machine keyring initialized
[ 0.333294] Key type asymmetric registered
[ 0.333297] Asymmetric key parser 'x509' registered
[ 0.333317] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.333373] io scheduler mq-deadline registered
[ 0.333533] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.333906] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
[ 0.333927] ACPI: button: Sleep Button [SLPB]
[ 0.333956] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
[ 0.333981] ACPI: button: Power Button [PWRB]
[ 0.334010] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.334070] ACPI: button: Power Button [PWRF]
[ 0.334622] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.335974] serial 0000:00:16.3: enabling device (0000 -> 0003)
[ 0.356829] 0000:00:16.3: ttyS4 at I/O 0x3088 (irq = 19, base_baud = 115200) is a 16550A
[ 0.357219] Linux agpgart interface v0.103
[ 0.361753] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0x1B, rev-id 16)
[ 0.389759] loop: module loaded
[ 0.390000] tun: Universal TUN/TAP device driver, 1.6
[ 0.390026] PPP generic driver version 2.4.2
[ 0.390147] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.393507] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.393515] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.393661] mousedev: PS/2 mouse device common for all mice
[ 0.393790] rtc_cmos rtc_cmos: RTC can wake from S4
[ 0.394484] rtc_cmos rtc_cmos: registered as rtc0
[ 0.394624] rtc_cmos rtc_cmos: setting system clock to 2024-07-24T09:53:28 UTC (1721814808)
[ 0.394666] rtc_cmos rtc_cmos: alarms up to one month, y3k, 114 bytes nvram
[ 0.394673] i2c_dev: i2c /dev entries driver
[ 0.394889] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.394900] device-mapper: uevent: version 1.0.3
[ 0.394934] device-mapper: ioctl: 4.47.0-ioctl (2022-07-28) initialised: dm-devel@redhat.com
[ 0.394954] platform eisa.0: Probing EISA bus 0
[ 0.394956] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.394957] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.394959] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.394960] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.394961] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.394962] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.394963] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.394964] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.394965] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.394966] platform eisa.0: EISA: Detected 0 cards
[ 0.394969] intel_pstate: Intel P-state driver initializing
[ 0.395082] intel_pstate: Disabling energy efficiency optimization
[ 0.395082] intel_pstate: HWP enabled
[ 0.395166] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.395184] efifb: probing for efifb
[ 0.395202] efifb: showing boot graphics
[ 0.395827] efifb: framebuffer at 0x1fe0000000, using 7500k, total 7500k
[ 0.395833] efifb: mode is 1600x1200x32, linelength=6400, pages=1
[ 0.395835] efifb: scrolling: redraw
[ 0.395835] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.395958] Console: switching to colour frame buffer device 200x75
[ 0.397192] fb0: EFI VGA frame buffer device
[ 0.397306] intel_pmc_core intel_pmc_core.0: initialized
[ 0.397363] drop_monitor: Initializing network drop monitor service
[ 0.412402] NET: Registered PF_INET6 protocol family
[ 1.096675] Freeing initrd memory: 143488K
[ 1.103170] Segment Routing with IPv6
[ 1.103183] In-situ OAM (IOAM) with IPv6
[ 1.103209] NET: Registered PF_PACKET protocol family
[ 1.103242] Key type dns_resolver registered
[ 1.103580] microcode: Microcode Update Driver: v2.2.
[ 1.103586] IPI shorthand broadcast: enabled
[ 1.104945] sched_clock: Marking stable (1103096619, 393077)->(1106909968, -3420272)
[ 1.105103] registered taskstats version 1
[ 1.105274] Loading compiled-in X.509 certificates
[ 1.105787] Loaded X.509 cert 'Build time autogenerated kernel key: 7e8a911f7d9cb786faff21a04ffcc222d06c6972'
[ 1.106237] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.106676] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.106677] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.106692] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.106707] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
[ 1.106719] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
[ 1.106732] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
[ 1.106745] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
[ 1.106757] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
[ 1.106770] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
[ 1.106782] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
[ 1.106860] zswap: loaded using pool lzo/zbud
[ 1.108543] Key type .fscrypt registered
[ 1.108545] Key type fscrypt-provisioning registered
[ 1.108663] Key type trusted registered
[ 1.111605] Key type encrypted registered
[ 1.111610] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.112466] integrity: Loading X.509 certificate: UEFI:db
[ 1.112503] integrity: Loaded X.509 cert 'Hewlett-Packard Company: HP UEFI Secure Boot 2013 DB key: 1d7cf2c2b92673f69c8ee1ec7063967ab9b62bec'
[ 1.112504] integrity: Loading X.509 certificate: UEFI:db
[ 1.112521] integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53'
[ 1.112522] integrity: Loading X.509 certificate: UEFI:db
[ 1.112538] integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4'
[ 1.113731] Loading compiled-in module X.509 certificates
[ 1.114202] Loaded X.509 cert 'Build time autogenerated kernel key: 7e8a911f7d9cb786faff21a04ffcc222d06c6972'
[ 1.114204] ima: Allocated hash algorithm: sha1
[ 1.150199] ima: No architecture policies found
[ 1.150218] evm: Initialising EVM extended attributes:
[ 1.150219] evm: security.selinux
[ 1.150221] evm: security.SMACK64
[ 1.150222] evm: security.SMACK64EXEC
[ 1.150223] evm: security.SMACK64TRANSMUTE
[ 1.150224] evm: security.SMACK64MMAP
[ 1.150224] evm: security.apparmor
[ 1.150225] evm: security.ima
[ 1.150226] evm: security.capability
[ 1.150227] evm: HMAC attrs: 0x1
[ 1.150499] PM: Magic number: 0:104:880
[ 1.150752] RAS: Correctable Errors collector initialized.
[ 1.152350] Freeing unused decrypted memory: 2036K
[ 1.152975] Freeing unused kernel image (initmem) memory: 4664K
[ 1.174206] Write protecting the kernel read-only data: 34816k
[ 1.175014] Freeing unused kernel image (rodata/data gap) memory: 1640K
[ 1.239053] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.239054] x86/mm: Checking user space page tables
[ 1.282292] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.282296] Run /init as init process
[ 1.282298] with arguments:
[ 1.282299] /init
[ 1.282300] persistent
[ 1.282301] splash
[ 1.282302] ---
[ 1.282303] with environment:
[ 1.282303] HOME=/
[ 1.282304] TERM=linux
[ 1.282305] BOOT_IMAGE=/casper/vmlinuz
[ 1.282306] file=/cdrom/preseed/ubuntu.seed
[ 1.333995] tsc: Refined TSC clocksource calibration: 3504.000 MHz
[ 1.334004] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x3282142a9b0, max_idle_ns: 440795384778 ns
[ 1.334018] clocksource: Switched to clocksource tsc
[ 1.388211] acpi PNP0C14:02: duplicate WMI GUID 2B814318-4BE8-4707-9D84-A190A859B5D0 (first instance was on PNP0C14:00)
[ 1.388220] acpi PNP0C14:02: duplicate WMI GUID 41227C2D-80E1-423F-8B8E-87E32755A0EB (first instance was on PNP0C14:00)
[ 1.388224] wmi_bus wmi_bus-PNP0C14:02: WQZZ data block query control method not found
[ 1.423875] cryptd: max_cpu_qlen set to 1000
[ 1.424124] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.424132] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
[ 1.424271] i801_smbus 0000:00:1f.4: enabling device (0100 -> 0103)
[ 1.424477] i801_smbus 0000:00:1f.4: SPD Write Disable is set
[ 1.424524] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
[ 1.424586] pci 0000:00:1f.1: [8086:a2a0] type 00 class 0x058000
[ 1.424652] pci 0000:00:1f.1: reg 0x10: [mem 0xfd000000-0xfdffffff 64bit]
[ 1.425275] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000000009810
[ 1.428782] i2c i2c-0: 2/4 memory slots populated (from DMI)
[ 1.429157] i2c i2c-0: Successfully instantiated SPD at 0x50
[ 1.429626] i2c i2c-0: Successfully instantiated SPD at 0x51
[ 1.432023] e1000e: Intel(R) PRO/1000 Network Driver
[ 1.432025] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
[ 1.432257] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
[ 1.437051] ahci 0000:00:17.0: version 3.0
[ 1.437785] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.437790] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
[ 1.437794] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 1.437855] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.02
[ 1.437857] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.437859] usb usb1: Product: xHCI Host Controller
[ 1.437861] usb usb1: Manufacturer: Linux 6.2.0-26-generic xhci-hcd
[ 1.437862] usb usb1: SerialNumber: 0000:00:14.0
[ 1.438018] hub 1-0:1.0: USB hub found
[ 1.438173] hub 1-0:1.0: 16 ports detected
[ 1.447856] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 4 ports 6 Gbps 0xf impl SATA mode
[ 1.447867] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst
[ 1.453219] SSE version of gcm_enc/dec engaged.
[ 1.453961] ACPI: bus type drm_connector registered
[ 1.469831] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 6.02
[ 1.469836] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.469839] usb usb2: Product: xHCI Host Controller
[ 1.469841] usb usb2: Manufacturer: Linux 6.2.0-26-generic xhci-hcd
[ 1.469843] usb usb2: SerialNumber: 0000:00:14.0
[ 1.470001] hub 2-0:1.0: USB hub found
[ 1.470037] hub 2-0:1.0: 10 ports detected
[ 1.472867] usb: port power management may be unreliable
[ 1.482706] scsi host0: ahci
[ 1.483036] scsi host1: ahci
[ 1.483162] scsi host2: ahci
[ 1.483267] scsi host3: ahci
[ 1.483325] ata1: SATA max UDMA/133 abar m2048@0xce936000 port 0xce936100 irq 122
[ 1.483329] ata2: SATA max UDMA/133 abar m2048@0xce936000 port 0xce936180 irq 122
[ 1.483332] ata3: SATA max UDMA/133 abar m2048@0xce936000 port 0xce936200 irq 122
[ 1.483334] ata4: SATA max UDMA/133 abar m2048@0xce936000 port 0xce936280 irq 122
[ 1.523192] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
[ 1.592656] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) c8:d3:ff:a3:86:81
[ 1.592661] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
[ 1.592771] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
[ 1.730004] usb 1-2: new low-speed USB device number 2 using xhci_hcd
[ 1.796411] ata2: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 1.796431] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 1.796737] ata1.00: ACPI cmd f5/00:00:00:00:00:e0(SECURITY FREEZE LOCK) filtered out
[ 1.796743] ata1.00: supports DRM functions and may not be fully accessible
[ 1.796744] ata1.00: ATA-10: MTFDDAK256TBN-1AR15ABHA, HPC0T12, max UDMA/100
[ 1.796765] ata3: SATA link down (SStatus 4 SControl 300)
[ 1.796785] ata4: SATA link down (SStatus 4 SControl 300)
[ 1.797496] ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
[ 1.800009] ata2.00: ATAPI: hp PLDS DVDRW DU8AESH, 6HS3, max UDMA/133
[ 1.800455] ata1.00: Features: Trust Dev-Sleep NCQ-sndrcv
[ 1.800824] ata1.00: ACPI cmd f5/00:00:00:00:00:e0(SECURITY FREEZE LOCK) filtered out
[ 1.800828] ata1.00: supports DRM functions and may not be fully accessible
[ 1.800956] ata2.00: configured for UDMA/133
[ 1.804691] ata1.00: configured for UDMA/100
[ 1.804789] scsi 0:0:0:0: Direct-Access ATA MTFDDAK256TBN-1A 0T12 PQ: 0 ANSI: 5
[ 1.805183] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 1.805205] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
[ 1.805209] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 1.805219] sd 0:0:0:0: [sda] Write Protect is off
[ 1.805222] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 1.805237] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 1.805268] sd 0:0:0:0: [sda] Preferred minimum I/O size 4096 bytes
[ 1.809008] scsi 1:0:0:0: CD-ROM hp PLDS DVDRW DU8AESH 6HS3 PQ: 0 ANSI: 5
[ 1.842841] Console: switching to colour dummy device 80x25
[ 1.842886] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 1.855571] sda: sda1 sda2
[ 1.855946] sd 0:0:0:0: [sda] supports TCG Opal
[ 1.855951] sd 0:0:0:0: [sda] Attached SCSI disk
[ 1.884196] usb 1-2: New USB device found, idVendor=046d, idProduct=c312, bcdDevice= 1.00
[ 1.884203] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.884207] usb 1-2: Product: USB Multimedia Keyboard
[ 1.884210] usb 1-2: Manufacturer: BTC
[ 1.893859] hid: raw HID events driver (C) Jiri Kosina
[ 1.894338] i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem
[ 1.895087] i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/kbl_dmc_ver1_04.bin (v1.4)
[ 1.918817] sr 1:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 1.918827] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 1.953647] sr 1:0:0:0: Attached scsi CD-ROM sr0
[ 1.953702] sr 1:0:0:0: Attached scsi generic sg1 type 5
[ 1.956176] e1000e 0000:00:1f.6 eno1: renamed from eth0
[ 1.962880] usbcore: registered new interface driver usbhid
[ 1.962885] usbhid: USB HID core driver
[ 1.965041] input: BTC USB Multimedia Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.0/0003:046D:C312.0001/input/input6
[ 2.010384] usb 2-6: new SuperSpeed USB device number 2 using xhci_hcd
[ 2.022057] hid-generic 0003:046D:C312.0001: input,hidraw0: USB HID v1.10 Keyboard [BTC USB Multimedia Keyboard] on usb-0000:00:14.0-2/input0
[ 2.022251] input: BTC USB Multimedia Keyboard System Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C312.0002/input/input7
[ 2.039457] usb 2-6: New USB device found, idVendor=058f, idProduct=6387, bcdDevice= 0.02
[ 2.039461] usb 2-6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.039462] usb 2-6: Product: Intenso Slim Line
[ 2.039464] usb 2-6: Manufacturer: 6989
[ 2.039465] usb 2-6: SerialNumber: 58E0822E
[ 2.044473] usb-storage 2-6:1.0: USB Mass Storage device detected
[ 2.044570] scsi host4: usb-storage 2-6:1.0
[ 2.044649] usbcore: registered new interface driver usb-storage
[ 2.045956] usbcore: registered new interface driver uas
[ 2.082038] input: BTC USB Multimedia Keyboard Consumer Control as /devices/pci0000:00/0000:00:14.0/usb1/1-2/1-2:1.1/0003:046D:C312.0002/input/input8
[ 2.082132] hid-generic 0003:046D:C312.0002: input,hiddev0,hidraw1: USB HID v1.10 Device [BTC USB Multimedia Keyboard] on usb-0000:00:14.0-2/input1
[ 2.161971] usb 1-3: new high-speed USB device number 3 using xhci_hcd
[ 2.165032] i915 0000:00:02.0: [drm] [ENCODER:94:DDI A/PHY A] failed to retrieve link info, disabling eDP
[ 2.165207] i915 0000:00:02.0: [drm] [ENCODER:111:DDI C/PHY C] is disabled/in DSI mode with an ungated DDI clock, gate it
[ 2.165210] i915 0000:00:02.0: [drm] [ENCODER:121:DDI D/PHY D] is disabled/in DSI mode with an ungated DDI clock, gate it
[ 2.194606] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 2.196963] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 2.197338] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input10
[ 2.310190] usb 1-3: New USB device found, idVendor=1a40, idProduct=0201, bcdDevice= 1.00
[ 2.310195] usb 1-3: New USB device strings: Mfr=0, Product=1, SerialNumber=0
[ 2.310197] usb 1-3: Product: USB 2.0 Hub [MTT]
[ 2.311306] hub 1-3:1.0: USB hub found
[ 2.311339] hub 1-3:1.0: 7 ports detected
[ 2.441970] usb 1-12: new high-speed USB device number 4 using xhci_hcd
[ 2.494043] fbcon: i915drmfb (fb0) is primary device
[ 2.535468] Console: switching to colour frame buffer device 200x75
[ 2.553732] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 2.605823] usb 1-12: New USB device found, idVendor=148f, idProduct=5572, bcdDevice= 1.01
[ 2.605830] usb 1-12: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2.605833] usb 1-12: Product: 802.11 n WLAN
[ 2.605836] usb 1-12: Manufacturer: Ralink
[ 2.605838] usb 1-12: SerialNumber: 1.0
[ 2.673975] usb 1-3.1: new low-speed USB device number 5 using xhci_hcd
[ 2.798143] usb 1-3.1: New USB device found, idVendor=046d, idProduct=c077, bcdDevice=72.00
[ 2.798146] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 2.798147] usb 1-3.1: Product: USB Optical Mouse
[ 2.798149] usb 1-3.1: Manufacturer: Logitech
[ 2.803020] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1/1-3.1:1.0/0003:046D:C077.0003/input/input11
[ 2.803388] hid-generic 0003:046D:C077.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:14.0-3.1/input0
[ 3.106960] scsi 4:0:0:0: Direct-Access Intenso Slim Line 8.01 PQ: 0 ANSI: 6
[ 3.107125] sd 4:0:0:0: Attached scsi generic sg2 type 0
[ 3.107702] sd 4:0:0:0: [sdb] 122675200 512-byte logical blocks: (62.8 GB/58.5 GiB)
[ 3.107874] sd 4:0:0:0: [sdb] Write Protect is off
[ 3.107876] sd 4:0:0:0: [sdb] Mode Sense: 23 00 00 00
[ 3.108044] sd 4:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
[ 3.110817] sdb: sdb1 sdb2
[ 3.110900] sd 4:0:0:0: [sdb] Attached SCSI removable disk
[ 3.352372] EXT4-fs (sda2): INFO: recovery required on readonly filesystem
[ 3.352378] EXT4-fs (sda2): write access will be enabled during recovery
[ 3.558304] EXT4-fs (sda2): orphan cleanup on readonly fs
[ 3.558346] EXT4-fs (sda2): 1 orphan inode deleted
[ 3.558348] EXT4-fs (sda2): recovery complete
[ 3.563624] EXT4-fs (sda2): mounted filesystem 4df927cd-7e71-49ac-a322-a1f32fff6636 with ordered data mode. Quota mode: none.
[ 3.564477] EXT4-fs (sda2): unmounting filesystem 4df927cd-7e71-49ac-a322-a1f32fff6636.
[ 3.769654] EXT4-fs (sdb2): mounting ext3 file system using the ext4 subsystem
[ 3.775295] EXT4-fs (sdb2): warning: mounting fs with errors, running e2fsck is recommended
[ 3.818619] EXT4-fs (sdb2): Errors on filesystem, clearing orphan list.
[ 3.818624] EXT4-fs (sdb2): recovery complete
[ 3.818630] EXT4-fs (sdb2): mounted filesystem 8009cb3e-7f35-0241-b16b-7b4bc087e797 with ordered data mode. Quota mode: none.
[ 3.916982] loop0: detected capacity change from 0 to 6330528
[ 4.086941] overlayfs: null uuid detected in lower fs '/', falling back to xino=off,index=off,nfs_export=off.
[ 4.126877] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 4.650889] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 5.147114] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[ 14.617153] systemd[1]: Inserted module 'autofs4'
[ 14.856288] systemd[1]: systemd 249.11-0ubuntu3.9 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 14.856411] systemd[1]: Detected architecture x86-64.
[ 15.823620] systemd[1]: Queued start job for default target Graphical Interface.
[ 15.851293] systemd[1]: Created slice Slice /system/modprobe.
[ 15.851797] systemd[1]: Created slice User and Session Slice.
[ 15.851972] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 15.852330] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 15.852436] systemd[1]: Reached target Remote File Systems.
[ 15.852465] systemd[1]: Reached target Slice Units.
[ 15.852522] systemd[1]: Reached target Swaps.
[ 15.852558] systemd[1]: Reached target Local Verity Protected Volumes.
[ 15.852732] systemd[1]: Listening on Device-mapper event daemon FIFOs.
[ 15.853986] systemd[1]: Listening on LVM2 poll daemon socket.
[ 15.854366] systemd[1]: Listening on Syslog Socket.
[ 15.854483] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 15.855238] systemd[1]: Listening on Journal Audit Socket.
[ 15.855448] systemd[1]: Listening on Journal Socket (/dev/log).
[ 15.855693] systemd[1]: Listening on Journal Socket.
[ 15.856636] systemd[1]: Listening on udev Control Socket.
[ 15.856866] systemd[1]: Listening on udev Kernel Socket.
[ 15.858419] systemd[1]: Mounting Huge Pages File System...
[ 15.860218] systemd[1]: Mounting POSIX Message Queue File System...
[ 15.863081] systemd[1]: Mounting Kernel Debug File System...
[ 15.865790] systemd[1]: Mounting Kernel Trace File System...
[ 15.874102] systemd[1]: Starting Journal Service...
[ 15.874488] systemd[1]: Finished Availability of block devices.
[ 15.876618] systemd[1]: Starting Set the console keyboard layout...
[ 15.879999] systemd[1]: Starting Create List of Static Device Nodes...
[ 15.882127] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
[ 15.884421] systemd[1]: Starting Load Kernel Module chromeos_pstore...
[ 15.886512] systemd[1]: Starting Load Kernel Module configfs...
[ 15.888651] systemd[1]: Starting Load Kernel Module drm...
[ 15.890682] systemd[1]: Starting Load Kernel Module efi_pstore...
[ 15.892534] systemd[1]: Starting Load Kernel Module fuse...
[ 15.894242] systemd[1]: Starting Load Kernel Module pstore_blk...
[ 15.895909] systemd[1]: Starting Load Kernel Module pstore_zone...
[ 15.897333] systemd[1]: Starting Load Kernel Module ramoops...
[ 15.958777] pstore: Using crash dump compression: deflate
[ 15.976174] systemd[1]: Starting Load Kernel Modules...
[ 15.981172] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 15.989011] systemd[1]: Starting Coldplug All udev Devices...
[ 16.009434] systemd[1]: Mounted Huge Pages File System.
[ 16.011674] systemd[1]: Mounted POSIX Message Queue File System.
[ 16.013419] systemd[1]: Mounted Kernel Debug File System.
[ 16.015376] systemd[1]: Mounted Kernel Trace File System.
[ 16.016961] systemd[1]: Finished Create List of Static Device Nodes.
[ 16.017418] systemd[1]: Finished Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
[ 16.017765] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 16.018094] systemd[1]: Finished Load Kernel Module configfs.
[ 16.018910] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 16.021492] systemd[1]: Finished Load Kernel Module drm.
[ 16.025055] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 16.027566] pstore: Registered efi_pstore as persistent store backend
[ 16.027702] systemd[1]: Finished Load Kernel Module fuse.
[ 16.028150] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 16.028449] systemd[1]: Finished Load Kernel Module efi_pstore.
[ 16.028794] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully.
[ 16.029097] systemd[1]: Finished Load Kernel Module pstore_blk.
[ 16.029408] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully.
[ 16.029706] systemd[1]: Finished Load Kernel Module pstore_zone.
[ 16.042243] systemd[1]: Mounting FUSE Control File System...
[ 16.043196] systemd[1]: Mounting Kernel Configuration File System...
[ 16.063642] systemd[1]: Started Journal Service.
[ 16.190663] systemd-journald[1162]: Received client request to flush runtime journal.
[ 16.294923] systemd-journald[1162]: File /var/log/journal/3133487760cc4feaaa69e598c8704058/system.journal corrupted or uncleanly shut down, renaming and replacing.
[ 16.309989] lp: driver loaded but no devices found
[ 16.348709] ppdev: user-space parallel port driver
[ 17.314022] mei_me 0000:00:16.0: enabling device (0004 -> 0006)
[ 17.372445] ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 17.372477] ee1004 0-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
[ 17.403748] RAPL PMU: API unit is 2^-32 Joules, 5 fixed counters, 655360 ms ovfl timer
[ 17.403753] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
[ 17.403754] RAPL PMU: hw unit of domain package 2^-14 Joules
[ 17.403756] RAPL PMU: hw unit of domain dram 2^-14 Joules
[ 17.403757] RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules
[ 17.403758] RAPL PMU: hw unit of domain psys 2^-14 Joules
[ 17.698609] hp_wmi: query 0x4 returned error 0x5
[ 17.709383] input: HP WMI hotkeys as /devices/virtual/input/input12
[ 17.746035] mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915])
[ 17.975953] intel_tcc_cooling: Programmable TCC Offset detected
[ 18.049087] intel_rapl_common: Found RAPL domain package
[ 18.049094] intel_rapl_common: Found RAPL domain core
[ 18.049098] intel_rapl_common: Found RAPL domain uncore
[ 18.049101] intel_rapl_common: Found RAPL domain dram
[ 18.049104] intel_rapl_common: Found RAPL domain psys
[ 18.150380] cfg80211: Loading compiled-in X.509 certificates for regulatory database
[ 18.151413] cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7'
[ 18.246692] snd_hda_intel 0000:00:1f.3: enabling device (0100 -> 0102)
[ 18.247057] snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 18.350960] snd_hda_codec_conexant hdaudioC0D0: CX20632: BIOS auto-probing.
[ 18.351756] snd_hda_codec_conexant hdaudioC0D0: autoconfig for CX20632: line_outs=1 (0x1c/0x0/0x0/0x0/0x0) type:line
[ 18.351764] snd_hda_codec_conexant hdaudioC0D0: speaker_outs=1 (0x1f/0x0/0x0/0x0/0x0)
[ 18.351768] snd_hda_codec_conexant hdaudioC0D0: hp_outs=1 (0x19/0x0/0x0/0x0/0x0)
[ 18.351772] snd_hda_codec_conexant hdaudioC0D0: mono: mono_out=0x0
[ 18.351774] snd_hda_codec_conexant hdaudioC0D0: inputs:
[ 18.351777] snd_hda_codec_conexant hdaudioC0D0: Headset Mic=0x1a
[ 18.351779] snd_hda_codec_conexant hdaudioC0D0: Line=0x1d
[ 18.450540] input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1f.3/sound/card0/input13
[ 18.450639] input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input14
[ 18.450709] input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1f.3/sound/card0/input15
[ 18.450769] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
[ 18.450854] input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
[ 18.450951] input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
[ 18.730386] usb 1-12: reset high-speed USB device number 4 using xhci_hcd
[ 18.887841] ieee80211 phy0: rt2x00_set_rt: Info - RT chipset 5592, rev 0222 detected
[ 18.900786] ieee80211 phy0: rt2x00_set_rf: Info - RF chipset 000f detected
[ 18.901110] ieee80211 phy0: Selected rate control algorithm 'minstrel_ht'
[ 18.901888] usbcore: registered new interface driver rt2800usb
[ 18.915562] rt2800usb 1-12:1.0 wlx24050fe57f1f: renamed from wlan0
[ 19.232252] spl: loading out-of-tree module taints kernel.
[ 19.258777] znvpair: module license 'CDDL' taints kernel.
[ 19.258782] Disabling lock debugging due to kernel taint
[ 19.910190] ZFS: Loaded module v2.1.9-2ubuntu1.1, ZFS pool version 5000, ZFS filesystem version 5
[ 20.080345] loop1: detected capacity change from 0 to 8
[ 20.093114] loop2: detected capacity change from 0 to 19216
[ 20.096716] loop3: detected capacity change from 0 to 27112
[ 20.167263] loop4: detected capacity change from 0 to 113992
[ 20.170845] loop5: detected capacity change from 0 to 130888
[ 20.182103] loop6: detected capacity change from 0 to 130880
[ 20.191280] loop7: detected capacity change from 0 to 151784
[ 20.195610] loop8: detected capacity change from 0 to 151992
[ 20.208735] loop9: detected capacity change from 0 to 547760
[ 20.226927] loop10: detected capacity change from 0 to 547696
[ 20.229333] loop11: detected capacity change from 0 to 716176
[ 20.243092] loop12: detected capacity change from 0 to 1017816
[ 20.259505] loop13: detected capacity change from 0 to 1034424
[ 20.306389] loop14: detected capacity change from 0 to 187776
[ 20.319482] loop15: detected capacity change from 0 to 309592
[ 20.354425] loop16: detected capacity change from 0 to 72896
[ 20.391922] loop17: detected capacity change from 0 to 72904
[ 20.431621] loop18: detected capacity change from 0 to 82800
[ 20.495050] loop19: detected capacity change from 0 to 25240
[ 20.580796] loop20: detected capacity change from 0 to 80072
[ 20.583644] loop21: detected capacity change from 0 to 904
[ 20.700287] loop22: detected capacity change from 0 to 657576
[ 22.707138] audit: type=1400 audit(1721814830.807:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.opera" pid=1614 comm="apparmor_parser"
[ 22.725661] audit: type=1400 audit(1721814830.823:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.firefox" pid=1613 comm="apparmor_parser"
[ 22.810794] audit: type=1400 audit(1721814830.911:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/20671/usr/lib/snapd/snap-confine" pid=1611 comm="apparmor_parser"
[ 22.810806] audit: type=1400 audit(1721814830.911:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/20671/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1611 comm="apparmor_parser"
[ 22.835422] audit: type=1400 audit(1721814830.935:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.pinta" pid=1615 comm="apparmor_parser"
[ 22.838642] audit: type=1400 audit(1721814830.939:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.snap-store" pid=1616 comm="apparmor_parser"
[ 22.857322] audit: type=1400 audit(1721814830.955:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=1612 comm="apparmor_parser"
[ 22.857336] audit: type=1400 audit(1721814830.955:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/21184/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1612 comm="apparmor_parser"
[ 22.884932] audit: type=1400 audit(1721814830.983:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.vlc" pid=1618 comm="apparmor_parser"
[ 22.922567] audit: type=1400 audit(1721814831.023:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.snapd-desktop-integration" pid=1617 comm="apparmor_parser"
[ 28.585990] ieee80211 phy0: rt2x00lib_request_firmware: Info - Loading firmware file 'rt2870.bin'
[ 28.664082] ieee80211 phy0: rt2x00lib_request_firmware: Info - Firmware detected - version: 0.36
[ 29.492168] loop23: detected capacity change from 0 to 8
[ 34.447633] kauditd_printk_skb: 17 callbacks suppressed
[ 34.447638] audit: type=1400 audit(1721814842.547:29): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=1930 comm="snap-confine" capability=12 capname="net_admin"
[ 34.449159] audit: type=1400 audit(1721814842.547:30): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=1930 comm="snap-confine" capability=38 capname="perfmon"
[ 36.752523] wlx24050fe57f1f: authenticate with 7c:ff:4d:50:c1:3e
[ 36.779462] wlx24050fe57f1f: send auth to 7c:ff:4d:50:c1:3e (try 1/3)
[ 36.781715] wlx24050fe57f1f: authenticated
[ 36.786009] wlx24050fe57f1f: associate with 7c:ff:4d:50:c1:3e (try 1/3)
[ 36.788287] wlx24050fe57f1f: RX AssocResp from 7c:ff:4d:50:c1:3e (capab=0x1511 status=0 aid=1)
[ 36.794250] wlx24050fe57f1f: associated
[ 37.075619] wlx24050fe57f1f: Limiting TX power to 27 (30 - 3) dBm as advertised by 7c:ff:4d:50:c1:3e
[ 37.116057] IPv6: ADDRCONF(NETDEV_CHANGE): wlx24050fe57f1f: link becomes ready
[ 46.527189] audit: type=1400 audit(1721814854.627:31): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=2175 comm="snap-confine" capability=12 capname="net_admin"
[ 46.527196] audit: type=1400 audit(1721814854.627:32): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=2175 comm="snap-confine" capability=38 capname="perfmon"
[ 50.978568] audit: type=1326 audit(1721814859.079:33): auid=999 uid=999 gid=999 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=2249 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/83/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fcd31d66531 code=0x50000
[ 50.978578] audit: type=1326 audit(1721814859.079:34): auid=999 uid=999 gid=999 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=2249 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/83/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=141 compat=0 ip=0x7fcd31de578b code=0x50000
[ 50.991601] audit: type=1326 audit(1721814859.091:35): auid=999 uid=999 gid=999 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=2249 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/83/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fcd31d66531 code=0x50000
[ 50.991662] audit: type=1326 audit(1721814859.091:36): auid=999 uid=999 gid=999 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=2249 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/83/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fcd31d66531 code=0x50000
[ 50.991667] audit: type=1326 audit(1721814859.091:37): auid=999 uid=999 gid=999 ses=2 subj=snap.snapd-desktop-integration.snapd-desktop-integration pid=2249 comm="snapd-desktop-i" exe="/snap/snapd-desktop-integration/83/usr/bin/snapd-desktop-integration" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fcd31d66531 code=0x50000
[ 77.270689] rfkill: input handler disabled
[ 88.576436] audit: type=1326 audit(1721814896.390:38): auid=999 uid=999 gid=999 ses=2 subj=snap.snap-store.ubuntu-software pid=2687 comm="snap-store" exe="/snap/snap-store/959/usr/bin/snap-store" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7ff77d20fa9b code=0x50000
[ 88.746194] audit: type=1107 audit(1721814896.558:39): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.10" pid=2687 label="snap.snap-store.ubuntu-software" peer_pid=1649 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 88.746973] audit: type=1107 audit(1721814896.562:40): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.PolicyKit1.Authority" member="CheckAuthorization" mask="send" name=":1.10" pid=2687 label="snap.snap-store.ubuntu-software" peer_pid=1649 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 88.751506] audit: type=1107 audit(1721814896.566:41): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.10" pid=2687 label="snap.snap-store.ubuntu-software" peer_pid=1649 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 88.752095] audit: type=1107 audit(1721814896.566:42): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/PolicyKit1/Authority" interface="org.freedesktop.PolicyKit1.Authority" member="CheckAuthorization" mask="send" name=":1.10" pid=2687 label="snap.snap-store.ubuntu-software" peer_pid=1649 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 91.552178] audit: type=1400 audit(1721814899.367:43): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=2949 comm="snap-confine" capability=12 capname="net_admin"
[ 91.552188] audit: type=1400 audit(1721814899.367:44): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=2949 comm="snap-confine" capability=38 capname="perfmon"
[ 91.703648] audit: type=1400 audit(1721814899.519:45): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firefox" name="/usr/local/share/" pid=2976 comm="5" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 91.736852] audit: type=1400 audit(1721814899.551:46): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firefox" name="/var/lib/" pid=2976 comm="5" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 91.739041] audit: type=1400 audit(1721814899.555:47): apparmor="DENIED" operation="open" class="file" profile="snap-update-ns.firefox" name="/var/lib/" pid=2976 comm="5" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 126.772244] kauditd_printk_skb: 1 callbacks suppressed
[ 126.772247] audit: type=1107 audit(1721814934.585:49): pid=1641 uid=102 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.87" pid=2949 label="snap.firefox.firefox" peer_pid=3878 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 126.773483] audit: type=1107 audit(1721814934.589:50): pid=1641 uid=102 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.87" pid=2949 label="snap.firefox.firefox" peer_pid=3878 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 228.917556] audit: type=1400 audit(1721815036.733:51): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=4614 comm="snap-confine" capability=12 capname="net_admin"
[ 228.917568] audit: type=1400 audit(1721815036.733:52): apparmor="DENIED" operation="capable" class="cap" profile="/snap/snapd/21184/usr/lib/snapd/snap-confine" pid=4614 comm="snap-confine" capability=38 capname="perfmon"
[ 316.786504] EXT4-fs (sdb2): error count since last fsck: 1
[ 316.786518] EXT4-fs (sdb2): initial error at time 1719991632: __ext4_find_entry:1662: inode 289138
[ 316.786528] EXT4-fs (sdb2): last error at time 1719991632: __ext4_find_entry:1662: inode 289138
[ 334.755483] audit: type=1107 audit(1721815142.575:53): pid=1641 uid=102 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.106" pid=2949 label="snap.firefox.firefox" peer_pid=5061 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 540.019683] audit: type=1400 audit(1721815347.837:54): apparmor="DENIED" operation="open" class="file" profile="snap.firefox.firefox" name="/etc/fstab" pid=2949 comm="firefox" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 540.357558] audit: type=1107 audit(1721815348.177:55): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.158" pid=2949 label="snap.firefox.firefox" peer_pid=7942 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 540.357959] audit: type=1107 audit(1721815348.177:56): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.158" pid=2949 label="snap.firefox.firefox" peer_pid=7942 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 963.214257] usb 2-7: new SuperSpeed USB device number 3 using xhci_hcd
[ 963.235313] usb 2-7: New USB device found, idVendor=1058, idProduct=25e2, bcdDevice=40.05
[ 963.235321] usb 2-7: New USB device strings: Mfr=2, Product=3, SerialNumber=1
[ 963.235325] usb 2-7: Product: My Passport 25E2
[ 963.235328] usb 2-7: Manufacturer: Western Digital
[ 963.235330] usb 2-7: SerialNumber: 5758343144413852354C5932
[ 963.240292] usb-storage 2-7:1.0: USB Mass Storage device detected
[ 963.240471] scsi host5: usb-storage 2-7:1.0
[ 964.266738] scsi 5:0:0:0: Direct-Access WD My Passport 25E2 4005 PQ: 0 ANSI: 6
[ 964.267154] scsi 5:0:0:1: Enclosure WD SES Device 4005 PQ: 0 ANSI: 6
[ 964.269412] sd 5:0:0:0: Attached scsi generic sg3 type 0
[ 964.269674] scsi 5:0:0:1: Attached scsi generic sg4 type 13
[ 964.270925] sd 5:0:0:0: [sdc] Spinning up disk...
[ 965.290212] ......ready
[ 970.410771] sd 5:0:0:0: [sdc] Very big device. Trying to use READ CAPACITY(16).
[ 970.411039] sd 5:0:0:0: [sdc] 7813969920 512-byte logical blocks: (4.00 TB/3.64 TiB)
[ 970.411043] sd 5:0:0:0: [sdc] 4096-byte physical blocks
[ 970.411404] sd 5:0:0:0: [sdc] Write Protect is off
[ 970.411408] sd 5:0:0:0: [sdc] Mode Sense: 47 00 10 08
[ 970.411862] sd 5:0:0:0: [sdc] No Caching mode page found
[ 970.411865] sd 5:0:0:0: [sdc] Assuming drive cache: write through
[ 970.586835] sdc: sdc1
[ 970.587037] sd 5:0:0:0: [sdc] Attached SCSI disk
[ 970.594177] scsi 5:0:0:1: Wrong diagnostic page; asked for 1 got 8
[ 970.594183] scsi 5:0:0:1: Failed to get diagnostic page 0x1
[ 970.594186] scsi 5:0:0:1: Failed to bind enclosure -19
[ 970.594200] ses 5:0:0:1: Attached Enclosure device
[ 971.235584] ntfs3: Max link count 4000
[ 971.235589] ntfs3: Enabled Linux POSIX ACLs support
[ 971.235591] ntfs3: Read-only LZX/Xpress compression included
[ 1022.404406] audit: type=1107 audit(1721815830.228:57): pid=1641 uid=102 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.185" pid=9151 label="snap.firefox.firefox" peer_pid=9297 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 1022.405113] audit: type=1107 audit(1721815830.228:58): pid=1641 uid=102 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.185" pid=9151 label="snap.firefox.firefox" peer_pid=9297 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 1077.287051] audit: type=1326 audit(1721815885.112:59): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10284 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f9614082c7f code=0x50000
[ 1077.287058] audit: type=1326 audit(1721815885.112:60): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10284 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f9614082c7f code=0x50000
[ 1077.287096] audit: type=1326 audit(1721815885.112:61): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10284 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f9614082c7f code=0x50000
[ 1077.287131] audit: type=1326 audit(1721815885.112:62): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10284 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f9614082c7f code=0x50000
[ 1079.286092] audit: type=1326 audit(1721815887.112:63): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10192 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f3293210c7f code=0x50000
[ 1079.286166] audit: type=1326 audit(1721815887.112:64): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10192 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f3293210c7f code=0x50000
[ 1079.286180] audit: type=1326 audit(1721815887.112:65): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10192 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f3293210c7f code=0x50000
[ 1079.286217] audit: type=1326 audit(1721815887.112:66): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10192 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f3293210c7f code=0x50000
[ 1080.525730] audit: type=1400 audit(1721815888.352:67): apparmor="DENIED" operation="open" class="file" profile="snap.vlc.vlc" name="/etc/glvnd/egl_vendor.d/" pid=10192 comm="vlc" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 1080.535146] audit: type=1326 audit(1721815888.360:68): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=10192 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f3293210c7f code=0x50000
[ 1827.995473] kauditd_printk_skb: 11 callbacks suppressed
[ 1827.995476] audit: type=1326 audit(1721816635.834:80): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12303 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f59c2996c7f code=0x50000
[ 1827.995563] audit: type=1326 audit(1721816635.834:81): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12303 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f59c2996c7f code=0x50000
[ 1827.995619] audit: type=1326 audit(1721816635.834:82): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12303 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f59c2996c7f code=0x50000
[ 1827.995663] audit: type=1326 audit(1721816635.834:83): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12303 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f59c2996c7f code=0x50000
[ 1828.142537] audit: type=1326 audit(1721816635.978:84): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12219 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f83a7d31c7f code=0x50000
[ 1828.142675] audit: type=1326 audit(1721816635.978:85): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12219 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f83a7d31c7f code=0x50000
[ 1828.142680] audit: type=1326 audit(1721816635.978:86): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12219 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f83a7d31c7f code=0x50000
[ 1828.142719] audit: type=1326 audit(1721816635.978:87): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12219 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f83a7d31c7f code=0x50000
[ 1828.335436] audit: type=1400 audit(1721816636.174:88): apparmor="DENIED" operation="open" class="file" profile="snap.vlc.vlc" name="/etc/glvnd/egl_vendor.d/" pid=12219 comm="vlc" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 1828.352474] audit: type=1326 audit(1721816636.190:89): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12219 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f83a7d31c7f code=0x50000
[ 1902.117621] wlx24050fe57f1f: authenticate with 7c:ff:4d:2c:3c:14
[ 1902.145118] wlx24050fe57f1f: send auth to 7c:ff:4d:2c:3c:14 (try 1/3)
[ 1902.147334] wlx24050fe57f1f: authenticated
[ 1902.149848] wlx24050fe57f1f: associate with 7c:ff:4d:2c:3c:14 (try 1/3)
[ 1902.152014] wlx24050fe57f1f: RX AssocResp from 7c:ff:4d:2c:3c:14 (capab=0x1511 status=0 aid=1)
[ 1902.157634] wlx24050fe57f1f: associated
[ 1902.201916] wlx24050fe57f1f: Limiting TX power to 27 (30 - 3) dBm as advertised by 7c:ff:4d:2c:3c:14
[ 1910.227181] wlx24050fe57f1f: disassociated from 7c:ff:4d:2c:3c:14 (Reason: 8=DISASSOC_STA_HAS_LEFT)
[ 1917.646428] wlx24050fe57f1f: authenticate with 7c:ff:4d:50:c1:3e
[ 1917.692709] wlx24050fe57f1f: send auth to 7c:ff:4d:50:c1:3e (try 1/3)
[ 1917.694671] wlx24050fe57f1f: authenticated
[ 1917.697593] wlx24050fe57f1f: associate with 7c:ff:4d:50:c1:3e (try 1/3)
[ 1917.700333] wlx24050fe57f1f: RX AssocResp from 7c:ff:4d:50:c1:3e (capab=0x1511 status=0 aid=2)
[ 1917.709028] wlx24050fe57f1f: associated
[ 1917.771057] wlx24050fe57f1f: Limiting TX power to 23 (23 - 0) dBm as advertised by 7c:ff:4d:50:c1:3e
[ 1947.823954] kauditd_printk_skb: 11 callbacks suppressed
[ 1947.823957] audit: type=1326 audit(1721816755.660:102): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12798 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f77d179fc7f code=0x50000
[ 1947.823963] audit: type=1326 audit(1721816755.660:101): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12798 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f77d179fc7f code=0x50000
[ 1947.823988] audit: type=1326 audit(1721816755.660:103): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12798 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f77d179fc7f code=0x50000
[ 1947.824035] audit: type=1326 audit(1721816755.660:104): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12798 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f77d179fc7f code=0x50000
[ 1947.961760] audit: type=1326 audit(1721816755.800:105): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12714 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f4f9f688c7f code=0x50000
[ 1947.961858] audit: type=1326 audit(1721816755.800:106): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12714 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f4f9f688c7f code=0x50000
[ 1947.961863] audit: type=1326 audit(1721816755.800:107): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12714 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f4f9f688c7f code=0x50000
[ 1947.961938] audit: type=1326 audit(1721816755.800:108): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12714 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f4f9f688c7f code=0x50000
[ 1950.454337] audit: type=1400 audit(1721816758.292:109): apparmor="DENIED" operation="open" class="file" profile="snap.vlc.vlc" name="/etc/glvnd/egl_vendor.d/" pid=12714 comm="vlc" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 1950.505829] audit: type=1326 audit(1721816758.344:110): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=12714 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f4f9f688c7f code=0x50000
[ 2052.714112] kauditd_printk_skb: 11 callbacks suppressed
[ 2052.714115] audit: type=1326 audit(1721816860.553:122): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13228 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fe073657c7f code=0x50000
[ 2052.714408] audit: type=1326 audit(1721816860.553:123): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13228 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fe073657c7f code=0x50000
[ 2052.714524] audit: type=1326 audit(1721816860.553:124): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13228 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fe073657c7f code=0x50000
[ 2052.714565] audit: type=1326 audit(1721816860.553:125): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13228 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fe073657c7f code=0x50000
[ 2052.855026] audit: type=1326 audit(1721816860.693:126): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13144 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc28189fc7f code=0x50000
[ 2052.855067] audit: type=1326 audit(1721816860.693:127): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13144 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc28189fc7f code=0x50000
[ 2052.855107] audit: type=1326 audit(1721816860.693:128): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13144 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc28189fc7f code=0x50000
[ 2052.855134] audit: type=1326 audit(1721816860.693:129): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13144 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc28189fc7f code=0x50000
[ 2053.019843] audit: type=1400 audit(1721816860.857:130): apparmor="DENIED" operation="open" class="file" profile="snap.vlc.vlc" name="/etc/glvnd/egl_vendor.d/" pid=13144 comm="vlc" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2053.076210] audit: type=1326 audit(1721816860.917:131): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13144 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc28189fc7f code=0x50000
[ 2081.384760] kauditd_printk_skb: 11 callbacks suppressed
[ 2081.384763] audit: type=1326 audit(1721816889.225:143): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13392 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f23f6276c7f code=0x50000
[ 2081.384769] audit: type=1326 audit(1721816889.225:144): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13392 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f23f6276c7f code=0x50000
[ 2081.384780] audit: type=1326 audit(1721816889.225:145): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13392 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f23f6276c7f code=0x50000
[ 2081.384823] audit: type=1326 audit(1721816889.225:146): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13392 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f23f6276c7f code=0x50000
[ 2081.525992] audit: type=1326 audit(1721816889.365:147): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13308 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f7849cf0c7f code=0x50000
[ 2081.526113] audit: type=1326 audit(1721816889.365:148): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13308 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f7849cf0c7f code=0x50000
[ 2081.526118] audit: type=1326 audit(1721816889.365:149): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13308 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f7849cf0c7f code=0x50000
[ 2081.526158] audit: type=1326 audit(1721816889.365:150): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13308 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f7849cf0c7f code=0x50000
[ 2081.737526] audit: type=1400 audit(1721816889.577:151): apparmor="DENIED" operation="open" class="file" profile="snap.vlc.vlc" name="/etc/glvnd/egl_vendor.d/" pid=13308 comm="vlc" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2081.755428] audit: type=1326 audit(1721816889.593:152): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13308 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7f7849cf0c7f code=0x50000
[ 2108.354123] kauditd_printk_skb: 11 callbacks suppressed
[ 2108.354126] audit: type=1326 audit(1721816916.193:164): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13561 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7ff5c877dc7f code=0x50000
[ 2108.354141] audit: type=1326 audit(1721816916.193:165): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13561 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7ff5c877dc7f code=0x50000
[ 2108.354181] audit: type=1326 audit(1721816916.193:166): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13561 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7ff5c877dc7f code=0x50000
[ 2108.354205] audit: type=1326 audit(1721816916.193:167): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13561 comm="glxinfo" exe="/snap/vlc/3721/usr/bin/glxinfo" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7ff5c877dc7f code=0x50000
[ 2108.512162] audit: type=1326 audit(1721816916.353:168): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13476 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc97fad9c7f code=0x50000
[ 2108.512285] audit: type=1326 audit(1721816916.353:169): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13476 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc97fad9c7f code=0x50000
[ 2108.512354] audit: type=1326 audit(1721816916.353:170): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13476 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc97fad9c7f code=0x50000
[ 2108.512416] audit: type=1326 audit(1721816916.353:171): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13476 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc97fad9c7f code=0x50000
[ 2110.975617] audit: type=1400 audit(1721816918.813:172): apparmor="DENIED" operation="open" class="file" profile="snap.vlc.vlc" name="/etc/glvnd/egl_vendor.d/" pid=13476 comm="vlc" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2111.010883] audit: type=1326 audit(1721816918.849:173): auid=999 uid=999 gid=999 ses=2 subj=snap.vlc.vlc pid=13476 comm="vlc" exe="/snap/vlc/3721/usr/bin/vlc" sig=0 arch=c000003e syscall=203 compat=0 ip=0x7fc97fad9c7f code=0x50000
[ 2156.119395] kauditd_printk_skb: 11 callbacks suppressed
[ 2156.119398] audit: type=1107 audit(1721816963.957:185): pid=1641 uid=102 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.240" pid=13626 label="snap.firefox.firefox" peer_pid=13772 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 2156.120829] audit: type=1107 audit(1721816963.961:186): pid=1641 uid=102 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.240" pid=13626 label="snap.firefox.firefox" peer_pid=13772 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 2495.311775] usb 2-7: USB disconnect, device number 3
[ 2495.399974] Buffer I/O error on dev sdc1, logical block 786440, lost async page write
[ 2495.399984] Buffer I/O error on dev sdc1, logical block 786441, lost async page write
[ 2495.399987] Buffer I/O error on dev sdc1, logical block 786444, lost async page write
[ 2495.399990] Buffer I/O error on dev sdc1, logical block 786448, lost async page write
[ 2495.399992] Buffer I/O error on dev sdc1, logical block 786449, lost async page write
[ 2495.399995] Buffer I/O error on dev sdc1, logical block 786451, lost async page write
[ 2495.399998] Buffer I/O error on dev sdc1, logical block 786452, lost async page write
[ 2495.400001] Buffer I/O error on dev sdc1, logical block 786454, lost async page write
[ 2495.400004] Buffer I/O error on dev sdc1, logical block 786457, lost async page write
[ 2495.400006] Buffer I/O error on dev sdc1, logical block 786458, lost async page write
[ 2503.203930] usb 1-13: new high-speed USB device number 6 using xhci_hcd
[ 2503.429250] usb 1-13: New USB device found, idVendor=152d, idProduct=0579, bcdDevice=12.03
[ 2503.429259] usb 1-13: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 2503.429263] usb 1-13: Product: External USB-3.0
[ 2503.429266] usb 1-13: Manufacturer: Intenso
[ 2503.429268] usb 1-13: SerialNumber: 202011200006B
[ 2503.436231] scsi host5: uas
[ 2503.437038] scsi 5:0:0:0: Direct-Access Intenso External USB-3.0 1203 PQ: 0 ANSI: 6
[ 2503.439996] sd 5:0:0:0: Attached scsi generic sg3 type 0
[ 2509.528675] sd 5:0:0:0: [sdc] 976754646 4096-byte logical blocks: (4.00 TB/3.64 TiB)
[ 2509.529028] sd 5:0:0:0: [sdc] Write Protect is off
[ 2509.529034] sd 5:0:0:0: [sdc] Mode Sense: 5f 00 00 08
[ 2509.529525] sd 5:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2509.529706] sd 5:0:0:0: [sdc] Preferred minimum I/O size 32768 bytes
[ 2509.529712] sd 5:0:0:0: [sdc] Optimal transfer size 268431360 bytes not a multiple of preferred minimum block size (32768 bytes)
[ 2509.559100] sd 5:0:0:0: [sdc] Attached SCSI disk
[ 2512.225350] ntfs3: sdc: volume is dirty and "force" flag is not set!
[ 2668.089834] ntfs3: sdc: volume is dirty and "force" flag is not set!
[ 2693.675149] ntfs3: sdc: volume is dirty and "force" flag is not set!
[ 2760.980879] audit: type=1107 audit(1721817568.823:187): pid=1641 uid=102 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.267" pid=13626 label="snap.firefox.firefox" peer_pid=14741 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 2764.968792] audit: type=1400 audit(1721817572.811:188): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2764.968799] audit: type=1400 audit(1721817572.811:189): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2765.059430] audit: type=1400 audit(1721817572.903:190): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2765.059438] audit: type=1400 audit(1721817572.903:191): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2765.427370] audit: type=1400 audit(1721817573.271:192): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/usr/share/zoneinfo-icu/44/le/zoneinfo64.res" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2765.436090] audit: type=1400 audit(1721817573.279:193): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/usr/share/zoneinfo-icu/44/le/timezoneTypes.res" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2765.468630] audit: type=1400 audit(1721817573.311:194): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/usr/share/zoneinfo-icu/44/le/metaZones.res" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2765.474469] audit: type=1400 audit(1721817573.319:195): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/usr/share/zoneinfo-icu/44/le/windowsZones.res" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2790.062297] audit: type=1400 audit(1721817597.903:196): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="gmain" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2790.062470] audit: type=1400 audit(1721817597.903:197): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/etc/fstab" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 2790.062498] audit: type=1400 audit(1721817597.903:198): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2790.062506] audit: type=1400 audit(1721817597.903:199): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mounts" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2790.141335] audit: type=1400 audit(1721817597.979:200): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2790.141342] audit: type=1400 audit(1721817597.979:201): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mounts" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2790.275429] audit: type=1107 audit(1721817598.115:202): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.274" pid=14901 label="snap.pinta.pinta" peer_pid=15015 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 2790.276401] audit: type=1107 audit(1721817598.115:203): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.274" pid=14901 label="snap.pinta.pinta" peer_pid=15015 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 2816.445528] audit: type=1400 audit(1721817624.283:204): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mountinfo" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2816.445753] audit: type=1400 audit(1721817624.283:205): apparmor="DENIED" operation="open" class="file" profile="snap.pinta.pinta" name="/proc/14901/mounts" pid=14901 comm="dotnet" requested_mask="r" denied_mask="r" fsuid=999 ouid=999
[ 2818.538350] audit: type=1326 audit(1721817626.379:206): auid=999 uid=999 gid=999 ses=2 subj=snap.pinta.pinta pid=14901 comm="dotnet" exe="/snap/pinta/29/usr/lib/dotnet/dotnet" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7ff78bf05a9b code=0x50000
[ 3714.941138] audit: type=1400 audit(1721818522.788:207): apparmor="DENIED" operation="open" class="file" profile="snap.firefox.firefox" name="/etc/fstab" pid=13626 comm="firefox" requested_mask="r" denied_mask="r" fsuid=999 ouid=0
[ 3715.159548] audit: type=1107 audit(1721818523.008:208): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.305" pid=13626 label="snap.firefox.firefox" peer_pid=16601 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3715.160366] audit: type=1107 audit(1721818523.008:209): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.305" pid=13626 label="snap.firefox.firefox" peer_pid=16601 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3789.139510] audit: type=1107 audit(1721818596.988:210): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.306" pid=13626 label="snap.firefox.firefox" peer_pid=16688 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3789.139533] audit: type=1107 audit(1721818596.988:211): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.306" pid=13626 label="snap.firefox.firefox" peer_pid=16688 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3789.140479] audit: type=1107 audit(1721818596.988:212): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.306" pid=13626 label="snap.firefox.firefox" peer_pid=16688 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3930.514698] audit: type=1107 audit(1721818738.366:213): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.307" pid=13626 label="snap.firefox.firefox" peer_pid=16780 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3930.514708] audit: type=1107 audit(1721818738.366:214): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.307" pid=13626 label="snap.firefox.firefox" peer_pid=16780 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3930.514713] audit: type=1107 audit(1721818738.366:215): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.307" pid=13626 label="snap.firefox.firefox" peer_pid=16780 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3930.515283] audit: type=1107 audit(1721818738.366:216): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.307" pid=13626 label="snap.firefox.firefox" peer_pid=16780 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3963.425695] audit: type=1107 audit(1721818771.278:217): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.308" pid=13626 label="snap.firefox.firefox" peer_pid=16845 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3963.426034] audit: type=1107 audit(1721818771.278:218): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.308" pid=13626 label="snap.firefox.firefox" peer_pid=16845 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3963.426040] audit: type=1107 audit(1721818771.278:219): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.308" pid=13626 label="snap.firefox.firefox" peer_pid=16845 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3963.426044] audit: type=1107 audit(1721818771.278:220): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.308" pid=13626 label="snap.firefox.firefox" peer_pid=16845 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3963.426465] audit: type=1107 audit(1721818771.278:221): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.308" pid=13626 label="snap.firefox.firefox" peer_pid=16845 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 3988.233615] audit: type=1107 audit(1721818796.086:222): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.308" pid=13626 label="snap.firefox.firefox" peer_pid=16845 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.099758] audit: type=1107 audit(1721818847.951:223): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.099767] audit: type=1107 audit(1721818847.951:224): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.099771] audit: type=1107 audit(1721818847.951:225): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.099775] audit: type=1107 audit(1721818847.951:226): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.099778] audit: type=1107 audit(1721818847.951:227): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.099781] audit: type=1107 audit(1721818847.951:228): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4040.101342] audit: type=1107 audit(1721818847.951:229): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4054.252765] audit: type=1107 audit(1721818862.103:230): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.314" pid=13626 label="snap.firefox.firefox" peer_pid=17116 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.089256] audit: type=1107 audit(1721818897.940:231): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.089268] audit: type=1107 audit(1721818897.940:232): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.089272] audit: type=1107 audit(1721818897.940:233): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.090530] audit: type=1107 audit(1721818897.940:234): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.090541] audit: type=1107 audit(1721818897.940:235): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.090548] audit: type=1107 audit(1721818897.940:236): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.090555] audit: type=1107 audit(1721818897.944:237): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.090562] audit: type=1107 audit(1721818897.944:238): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4090.091909] audit: type=1107 audit(1721818897.944:239): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4110.824278] audit: type=1107 audit(1721818918.676:240): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.315" pid=13626 label="snap.firefox.firefox" peer_pid=17209 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809184] audit: type=1107 audit(1721818982.660:241): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809197] audit: type=1107 audit(1721818982.660:242): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809203] audit: type=1107 audit(1721818982.660:243): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809207] audit: type=1107 audit(1721818982.660:244): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809211] audit: type=1107 audit(1721818982.660:245): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809216] audit: type=1107 audit(1721818982.660:246): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.809220] audit: type=1107 audit(1721818982.664:247): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.810128] audit: type=1107 audit(1721818982.664:248): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.810144] audit: type=1107 audit(1721818982.664:249): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4174.810148] audit: type=1107 audit(1721818982.664:250): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4201.776530] kauditd_printk_skb: 1 callbacks suppressed
[ 4201.776533] audit: type=1107 audit(1721819009.628:252): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.316" pid=13626 label="snap.firefox.firefox" peer_pid=17354 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4255.424090] ntfs3: sdc: volume is dirty and "force" flag is not set!
[ 4258.227705] ntfs3: sdc: volume is dirty and "force" flag is not set!
[ 4260.659094] audit: type=1107 audit(1721819068.512:253): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.659102] audit: type=1107 audit(1721819068.512:254): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.659106] audit: type=1107 audit(1721819068.512:255): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.659109] audit: type=1107 audit(1721819068.512:256): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.660324] audit: type=1107 audit(1721819068.512:257): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.660331] audit: type=1107 audit(1721819068.512:258): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.660335] audit: type=1107 audit(1721819068.512:259): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.660338] audit: type=1107 audit(1721819068.512:260): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.660342] audit: type=1107 audit(1721819068.512:261): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4260.660346] audit: type=1107 audit(1721819068.512:262): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.317" pid=13626 label="snap.firefox.firefox" peer_pid=17534 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4261.816668] ntfs3: sdc: volume is dirty and "force" flag is not set!
[ 4538.623815] kauditd_printk_skb: 1 callbacks suppressed
[ 4538.623817] audit: type=1107 audit(1721819346.478:264): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623827] audit: type=1107 audit(1721819346.478:265): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623845] audit: type=1107 audit(1721819346.478:266): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623855] audit: type=1107 audit(1721819346.478:267): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623859] audit: type=1107 audit(1721819346.482:268): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623863] audit: type=1107 audit(1721819346.482:269): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623867] audit: type=1107 audit(1721819346.482:270): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623871] audit: type=1107 audit(1721819346.482:271): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623874] audit: type=1107 audit(1721819346.482:272): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 4538.623878] audit: type=1107 audit(1721819346.482:273): pid=1641 uid=102 auid=4294967295 ses=4294967295 subj=unconfined msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.359" pid=13626 label="snap.firefox.firefox" peer_pid=19340 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=102 hostname=? addr=? terminal=?'
[ 7339.940780] ntfs3: sdc: volume is dirty and "force" flag is not set!
ubuntu@ubuntu:~$
|