Richard2010
(Themenstarter)
Anmeldungsdatum: 30. März 2010
Beiträge: 40
|
Lidux schrieb: Hallo Richard2010, Das "Programm" ist schon vorhanden und nennt sich Networkmanager .... recht oben in der Menueleiste. Bitte Ausgabe jeweils von: sudo dmesg
lsmod
iwconfig
ifconfig nur im Codeblock, wegen Lesbarkeit & Portalregel, posten. Gruss Lidux
Hallo Lidux,
leider finde ich den "Networkmanager" nicht auch in der Sucher erscheint er nicht. Code wie du meintest hier nachfolgend: 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 | ubuntu@ubuntu-SVF1521A1EB:~$ sudo dmesg
[sudo] Passwort für ubuntu:
[ 0.000000] microcode: microcode updated early to revision 0x2f, date = 2019-02-17
[ 0.000000] Linux version 5.15.0-47-generic (buildd@lcy02-amd64-060) (gcc (Ubuntu 11.2.0-19ubuntu1) 11.2.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #51-Ubuntu SMP Thu Aug 11 07:51:15 UTC 2022 (Ubuntu 5.15.0-47.51-generic 5.15.46)
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-47-generic root=UUID=fab716cf-d2cb-49a9-ba71-2e59bf4d77b6 ro quiet splash vt.handoff=7
[ 0.000000] KERNEL supported cpus:
[ 0.000000] Intel GenuineIntel
[ 0.000000] AMD AuthenticAMD
[ 0.000000] Hygon HygonGenuine
[ 0.000000] Centaur CentaurHauls
[ 0.000000] zhaoxin Shanghai
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
[ 0.000000] x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format.
[ 0.000000] signal: max sigframe size: 1520
[ 0.000000] reserving inaccessible SNB gfx pages
[ 0.000000] BIOS-provided physical RAM map:
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
[ 0.000000] BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000001fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000020000000-0x00000000201fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000020200000-0x000000003fffffff] usable
[ 0.000000] BIOS-e820: [mem 0x0000000040000000-0x00000000401fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000040200000-0x00000000a4d36fff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000a4d37000-0x00000000a61affff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000a61b0000-0x00000000aaabefff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000aaabf000-0x00000000aaebefff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000aaebf000-0x00000000aafbefff] ACPI NVS
[ 0.000000] BIOS-e820: [mem 0x00000000aafbf000-0x00000000aaffefff] ACPI data
[ 0.000000] BIOS-e820: [mem 0x00000000aafff000-0x00000000aaffffff] usable
[ 0.000000] BIOS-e820: [mem 0x00000000ab000000-0x00000000af9fffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000f0000000-0x00000000f3ffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000feb00000-0x00000000feb03fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
[ 0.000000] BIOS-e820: [mem 0x00000000ffd00000-0x00000000ffffffff] reserved
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000024f5fffff] usable
[ 0.000000] NX (Execute Disable) protection: active
[ 0.000000] SMBIOS 2.7 present.
[ 0.000000] DMI: Sony Corporation SVF1521A1EB/VAIO, BIOS R0200DA 03/26/2013
[ 0.000000] tsc: Fast TSC calibration using PIT
[ 0.000000] tsc: Detected 1496.629 MHz processor
[ 0.001560] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[ 0.001567] e820: remove [mem 0x000a0000-0x000fffff] usable
[ 0.001588] last_pfn = 0x24f600 max_arch_pfn = 0x400000000
[ 0.002235] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
[ 0.003103] last_pfn = 0xab000 max_arch_pfn = 0x400000000
[ 0.023954] found SMP MP-table at [mem 0x000fe1b0-0x000fe1bf]
[ 0.025906] RAMDISK: [mem 0x30727000-0x3438afff]
[ 0.025918] ACPI: Early table checksum verification disabled
[ 0.025924] ACPI: RSDP 0x00000000000FE020 000024 (v02 Sony )
[ 0.025933] ACPI: XSDT 0x00000000AAFFE210 000094 (v01 Sony VAIO 20130322 01000013)
[ 0.025945] ACPI: FACP 0x00000000AAFFB000 00010C (v05 Sony VAIO 20130322 INTL 20100121)
[ 0.025958] ACPI: DSDT 0x00000000AAFEE000 0090AB (v02 Sony VAIO 20130322 INTL 20100121)
[ 0.025966] ACPI: FACS 0x00000000AAFBB000 000040
[ 0.025972] ACPI: UEFI 0x00000000AAFFD000 000236 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.025979] ACPI: ASF! 0x00000000AAFFC000 0000A5 (v32 Sony VAIO 20130322 INTL 20100121)
[ 0.025987] ACPI: HPET 0x00000000AAFFA000 000038 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.025994] ACPI: APIC 0x00000000AAFF9000 00008C (v03 Sony VAIO 20130322 INTL 20100121)
[ 0.026001] ACPI: MCFG 0x00000000AAFF8000 00003C (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026008] ACPI: WDAT 0x00000000AAFEC000 000224 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026015] ACPI: BOOT 0x00000000AAFEA000 000028 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026022] ACPI: ASPT 0x00000000AAFE9000 000034 (v07 Sony VAIO 20130322 INTL 20100121)
[ 0.026029] ACPI: DBGP 0x00000000AAFE8000 000034 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026036] ACPI: FPDT 0x00000000AAFE6000 000044 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026043] ACPI: MSDM 0x00000000AAFE5000 000055 (v03 Sony VAIO 20130322 INTL 20100121)
[ 0.026050] ACPI: SSDT 0x00000000AAFE4000 00079A (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026057] ACPI: SSDT 0x00000000AAFE3000 000B22 (v01 Sony VAIO 20130322 INTL 20100121)
[ 0.026063] ACPI: Reserving FACP table memory at [mem 0xaaffb000-0xaaffb10b]
[ 0.026066] ACPI: Reserving DSDT table memory at [mem 0xaafee000-0xaaff70aa]
[ 0.026069] ACPI: Reserving FACS table memory at [mem 0xaafbb000-0xaafbb03f]
[ 0.026071] ACPI: Reserving UEFI table memory at [mem 0xaaffd000-0xaaffd235]
[ 0.026073] ACPI: Reserving ASF! table memory at [mem 0xaaffc000-0xaaffc0a4]
[ 0.026075] ACPI: Reserving HPET table memory at [mem 0xaaffa000-0xaaffa037]
[ 0.026077] ACPI: Reserving APIC table memory at [mem 0xaaff9000-0xaaff908b]
[ 0.026080] ACPI: Reserving MCFG table memory at [mem 0xaaff8000-0xaaff803b]
[ 0.026082] ACPI: Reserving WDAT table memory at [mem 0xaafec000-0xaafec223]
[ 0.026084] ACPI: Reserving BOOT table memory at [mem 0xaafea000-0xaafea027]
[ 0.026086] ACPI: Reserving ASPT table memory at [mem 0xaafe9000-0xaafe9033]
[ 0.026088] ACPI: Reserving DBGP table memory at [mem 0xaafe8000-0xaafe8033]
[ 0.026090] ACPI: Reserving FPDT table memory at [mem 0xaafe6000-0xaafe6043]
[ 0.026092] ACPI: Reserving MSDM table memory at [mem 0xaafe5000-0xaafe5054]
[ 0.026095] ACPI: Reserving SSDT table memory at [mem 0xaafe4000-0xaafe4799]
[ 0.026097] ACPI: Reserving SSDT table memory at [mem 0xaafe3000-0xaafe3b21]
[ 0.026307] No NUMA configuration found
[ 0.026309] Faking a node at [mem 0x0000000000000000-0x000000024f5fffff]
[ 0.026327] NODE_DATA(0) allocated [mem 0x24f5d2000-0x24f5fbfff]
[ 0.027172] Zone ranges:
[ 0.027174] DMA [mem 0x0000000000001000-0x0000000000ffffff]
[ 0.027178] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
[ 0.027182] Normal [mem 0x0000000100000000-0x000000024f5fffff]
[ 0.027185] Device empty
[ 0.027187] Movable zone start for each node
[ 0.027193] Early memory node ranges
[ 0.027194] node 0: [mem 0x0000000000001000-0x000000000009cfff]
[ 0.027197] node 0: [mem 0x0000000000100000-0x000000001fffffff]
[ 0.027200] node 0: [mem 0x0000000020200000-0x000000003fffffff]
[ 0.027202] node 0: [mem 0x0000000040200000-0x00000000a4d36fff]
[ 0.027204] node 0: [mem 0x00000000a61b0000-0x00000000aaabefff]
[ 0.027206] node 0: [mem 0x00000000aafff000-0x00000000aaffffff]
[ 0.027208] node 0: [mem 0x0000000100000000-0x000000024f5fffff]
[ 0.027213] Initmem setup node 0 [mem 0x0000000000001000-0x000000024f5fffff]
[ 0.027223] On node 0, zone DMA: 1 pages in unavailable ranges
[ 0.027291] On node 0, zone DMA: 99 pages in unavailable ranges
[ 0.031468] On node 0, zone DMA32: 512 pages in unavailable ranges
[ 0.038104] On node 0, zone DMA32: 512 pages in unavailable ranges
[ 0.038565] On node 0, zone DMA32: 5241 pages in unavailable ranges
[ 0.038611] On node 0, zone DMA32: 1344 pages in unavailable ranges
[ 0.061215] On node 0, zone Normal: 20480 pages in unavailable ranges
[ 0.061298] On node 0, zone Normal: 2560 pages in unavailable ranges
[ 0.061309] Reserving Intel graphics memory at [mem 0xaba00000-0xaf9fffff]
[ 0.061566] ACPI: PM-Timer IO Port: 0x408
[ 0.061594] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
[ 0.061600] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[ 0.061604] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[ 0.061612] ACPI: Using ACPI (MADT) for SMP configuration information
[ 0.061615] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[ 0.061623] TSC deadline timer available
[ 0.061625] smpboot: Allowing 8 CPUs, 6 hotplug CPUs
[ 0.061674] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
[ 0.061679] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
[ 0.061681] PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
[ 0.061683] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[ 0.061685] PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[ 0.061689] PM: hibernation: Registered nosave memory: [mem 0x20000000-0x201fffff]
[ 0.061693] PM: hibernation: Registered nosave memory: [mem 0x40000000-0x401fffff]
[ 0.061697] PM: hibernation: Registered nosave memory: [mem 0xa4d37000-0xa61affff]
[ 0.061702] PM: hibernation: Registered nosave memory: [mem 0xaaabf000-0xaaebefff]
[ 0.061704] PM: hibernation: Registered nosave memory: [mem 0xaaebf000-0xaafbefff]
[ 0.061705] PM: hibernation: Registered nosave memory: [mem 0xaafbf000-0xaaffefff]
[ 0.061710] PM: hibernation: Registered nosave memory: [mem 0xab000000-0xaf9fffff]
[ 0.061712] PM: hibernation: Registered nosave memory: [mem 0xafa00000-0xefffffff]
[ 0.061713] PM: hibernation: Registered nosave memory: [mem 0xf0000000-0xf3ffffff]
[ 0.061715] PM: hibernation: Registered nosave memory: [mem 0xf4000000-0xfeafffff]
[ 0.061717] PM: hibernation: Registered nosave memory: [mem 0xfeb00000-0xfeb03fff]
[ 0.061719] PM: hibernation: Registered nosave memory: [mem 0xfeb04000-0xfebfffff]
[ 0.061721] PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
[ 0.061722] PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfed0ffff]
[ 0.061724] PM: hibernation: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
[ 0.061726] PM: hibernation: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
[ 0.061728] PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
[ 0.061730] PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
[ 0.061731] PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
[ 0.061733] PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xffcfffff]
[ 0.061735] PM: hibernation: Registered nosave memory: [mem 0xffd00000-0xffffffff]
[ 0.061738] [mem 0xafa00000-0xefffffff] available for PCI devices
[ 0.061741] Booting paravirtualized kernel on bare hardware
[ 0.061745] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[ 0.061761] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
[ 0.062252] percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u262144
[ 0.062274] pcpu-alloc: s208896 r8192 d28672 u262144 alloc=1*2097152
[ 0.062280] pcpu-alloc: [0] 0 1 2 3 4 5 6 7
[ 0.062350] Built 1 zonelists, mobility grouping on. Total pages: 2033957
[ 0.062353] Policy zone: Normal
[ 0.062356] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-47-generic root=UUID=fab716cf-d2cb-49a9-ba71-2e59bf4d77b6 ro quiet splash vt.handoff=7
[ 0.062531] Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.0-47-generic", will be passed to user space.
[ 0.063331] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
[ 0.063730] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
[ 0.063931] mem auto-init: stack:off, heap alloc:on, heap free:off
[ 0.110526] Memory: 7945940K/8265612K available (16393K kernel code, 4377K rwdata, 10800K rodata, 3224K init, 6580K bss, 319412K reserved, 0K cma-reserved)
[ 0.111136] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
[ 0.111168] Kernel/User page tables isolation: enabled
[ 0.111199] ftrace: allocating 50478 entries in 198 pages
[ 0.156750] ftrace: allocated 198 pages with 4 groups
[ 0.156991] rcu: Hierarchical RCU implementation.
[ 0.156994] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
[ 0.156997] Rude variant of Tasks RCU enabled.
[ 0.156998] Tracing variant of Tasks RCU enabled.
[ 0.157000] rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
[ 0.157002] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
[ 0.166253] NR_IRQS: 524544, nr_irqs: 488, preallocated irqs: 16
[ 0.166582] Console: colour dummy device 80x25
[ 0.166610] printk: console [tty0] enabled
[ 0.166658] ACPI: Core revision 20210730
[ 0.166883] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
[ 0.166905] APIC: Switch to symmetric I/O mode setup
[ 0.166982] x2apic: IRQ remapping doesn't support X2APIC mode
[ 0.167462] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[ 0.186905] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1592b235539, max_idle_ns: 440795228396 ns
[ 0.186917] Calibrating delay loop (skipped), value calculated using timer frequency.. 2993.25 BogoMIPS (lpj=5986516)
[ 0.186923] pid_max: default: 32768 minimum: 301
[ 0.187047] LSM: Security Framework initializing
[ 0.187074] landlock: Up and running.
[ 0.187075] Yama: becoming mindful.
[ 0.187134] AppArmor: AppArmor initialized
[ 0.187255] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.187279] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
[ 0.187869] CPU0: Thermal monitoring enabled (TM1)
[ 0.187899] process: using mwait in idle threads
[ 0.187903] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
[ 0.187906] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
[ 0.187913] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
[ 0.187917] Spectre V2 : Mitigation: Retpolines
[ 0.187919] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
[ 0.187920] Spectre V2 : Enabling Restricted Speculation for firmware calls
[ 0.187923] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
[ 0.187926] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
[ 0.187931] MDS: Mitigation: Clear CPU buffers
[ 0.224962] Freeing SMP alternatives memory: 40K
[ 0.227102] smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1024
[ 0.227116] smpboot: CPU0: Intel(R) Pentium(R) CPU 987 @ 1.50GHz (family: 0x6, model: 0x2a, stepping: 0x7)
[ 0.227480] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
[ 0.227496] ... version: 3
[ 0.227498] ... bit width: 48
[ 0.227500] ... generic registers: 8
[ 0.227501] ... value mask: 0000ffffffffffff
[ 0.227503] ... max period: 00007fffffffffff
[ 0.227505] ... fixed-purpose events: 3
[ 0.227507] ... event mask: 00000007000000ff
[ 0.227764] rcu: Hierarchical SRCU implementation.
[ 0.229365] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
[ 0.229581] smp: Bringing up secondary CPUs ...
[ 0.229836] x86: Booting SMP configuration:
[ 0.229838] .... node #0, CPUs: #1
[ 0.234505] smp: Brought up 1 node, 2 CPUs
[ 0.234505] smpboot: Max logical packages: 4
[ 0.234505] smpboot: Total of 2 processors activated (5986.51 BogoMIPS)
[ 0.235424] devtmpfs: initialized
[ 0.235424] x86/mm: Memory block size: 128MB
[ 0.235424] ACPI: PM: Registering ACPI NVS region [mem 0xaaebf000-0xaafbefff] (1048576 bytes)
[ 0.235424] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[ 0.235424] futex hash table entries: 2048 (order: 5, 131072 bytes, linear)
[ 0.235424] pinctrl core: initialized pinctrl subsystem
[ 0.235469] PM: RTC time: 17:36:01, date: 2022-09-06
[ 0.235865] NET: Registered PF_NETLINK/PF_ROUTE protocol family
[ 0.236208] DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
[ 0.236377] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
[ 0.238936] DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
[ 0.238962] audit: initializing netlink subsys (disabled)
[ 0.238992] audit: type=2000 audit(1662485761.072:1): state=initialized audit_enabled=0 res=1
[ 0.239234] thermal_sys: Registered thermal governor 'fair_share'
[ 0.239237] thermal_sys: Registered thermal governor 'bang_bang'
[ 0.239240] thermal_sys: Registered thermal governor 'step_wise'
[ 0.239241] thermal_sys: Registered thermal governor 'user_space'
[ 0.239243] thermal_sys: Registered thermal governor 'power_allocator'
[ 0.239255] EISA bus registered
[ 0.239282] cpuidle: using governor ladder
[ 0.239282] cpuidle: using governor menu
[ 0.239282] Simple Boot Flag at 0x44 set to 0x1
[ 0.239282] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
[ 0.239282] ACPI: bus type PCI registered
[ 0.239282] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[ 0.239282] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf0000000-0xf3ffffff] (base 0xf0000000)
[ 0.239282] PCI: MMCONFIG at [mem 0xf0000000-0xf3ffffff] reserved in E820
[ 0.239282] PCI: Using configuration type 1 for base access
[ 0.239341] core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
[ 0.239651] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
[ 0.243037] Kprobes globally optimized
[ 0.243047] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[ 0.243098] ACPI: Added _OSI(Module Device)
[ 0.243102] ACPI: Added _OSI(Processor Device)
[ 0.243104] ACPI: Added _OSI(3.0 _SCP Extensions)
[ 0.243105] ACPI: Added _OSI(Processor Aggregator Device)
[ 0.243108] ACPI: Added _OSI(Linux-Dell-Video)
[ 0.243110] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
[ 0.243112] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
[ 0.256429] ACPI: 3 ACPI AML tables successfully acquired and loaded
[ 0.259361] ACPI: Dynamic OEM Table Load:
[ 0.259378] ACPI: SSDT 0xFFFF8A0840924000 00083B (v01 PmRef Cpu0Cst 00003001 INTL 20111123)
[ 0.261046] ACPI: Dynamic OEM Table Load:
[ 0.261058] ACPI: SSDT 0xFFFF8A08408F1400 000303 (v01 PmRef ApIst 00003000 INTL 20111123)
[ 0.262244] ACPI: Dynamic OEM Table Load:
[ 0.262254] ACPI: SSDT 0xFFFF8A084098C400 000119 (v01 PmRef ApCst 00003000 INTL 20111123)
[ 0.263531] ACPI: EC: EC started
[ 0.263533] ACPI: EC: interrupt blocked
[ 0.265113] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.265119] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC used to handle transactions
[ 0.265122] ACPI: Interpreter enabled
[ 0.265165] ACPI: PM: (supports S0 S3 S4 S5)
[ 0.265168] ACPI: Using IOAPIC for interrupt routing
[ 0.265223] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[ 0.265226] PCI: Using E820 reservations for host bridge windows
[ 0.265599] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
[ 0.265617] ACPI: Enabled 7 GPEs in block 00 to 3F
[ 0.278502] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3e])
[ 0.278516] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
[ 0.278891] acpi PNP0A08:00: _OSC: platform retains control of PCIe features (AE_ERROR)
[ 0.280108] PCI host bridge to bus 0000:00
[ 0.280114] pci_bus 0000:00: root bus resource [bus 00-3e]
[ 0.280118] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
[ 0.280122] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
[ 0.280125] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[ 0.280128] pci_bus 0000:00: root bus resource [mem 0xafa00000-0xfeafffff window]
[ 0.280192] pci 0000:00:00.0: [8086:0104] type 00 class 0x060000
[ 0.280446] pci 0000:00:02.0: [8086:0106] type 00 class 0x030000
[ 0.280461] pci 0000:00:02.0: reg 0x10: [mem 0xc0000000-0xc03fffff 64bit]
[ 0.280471] pci 0000:00:02.0: reg 0x18: [mem 0xb0000000-0xbfffffff 64bit pref]
[ 0.280478] pci 0000:00:02.0: reg 0x20: [io 0x3000-0x303f]
[ 0.280500] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[ 0.281021] pci 0000:00:14.0: [8086:1e31] type 00 class 0x0c0330
[ 0.281060] pci 0000:00:14.0: reg 0x10: [mem 0xc0800000-0xc080ffff 64bit]
[ 0.281183] pci 0000:00:14.0: PME# supported from D3hot D3cold
[ 0.281390] pci 0000:00:16.0: [8086:1e3a] type 00 class 0x078000
[ 0.281427] pci 0000:00:16.0: reg 0x10: [mem 0xc0814000-0xc081400f 64bit]
[ 0.281545] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
[ 0.281808] pci 0000:00:1a.0: [8086:1e2d] type 00 class 0x0c0320
[ 0.281838] pci 0000:00:1a.0: reg 0x10: [mem 0xc0819000-0xc08193ff]
[ 0.281978] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
[ 0.282240] pci 0000:00:1b.0: [8086:1e20] type 00 class 0x040300
[ 0.282276] pci 0000:00:1b.0: reg 0x10: [mem 0xc0810000-0xc0813fff 64bit]
[ 0.282424] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
[ 0.282681] pci 0000:00:1c.0: [8086:1e10] type 01 class 0x060400
[ 0.282841] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
[ 0.283092] pci 0000:00:1c.1: [8086:1e12] type 01 class 0x060400
[ 0.283255] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
[ 0.283510] pci 0000:00:1c.2: [8086:1e14] type 01 class 0x060400
[ 0.283667] pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
[ 0.283927] pci 0000:00:1d.0: [8086:1e26] type 00 class 0x0c0320
[ 0.283956] pci 0000:00:1d.0: reg 0x10: [mem 0xc0818000-0xc08183ff]
[ 0.284092] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
[ 0.284335] pci 0000:00:1f.0: [8086:1e5e] type 00 class 0x060100
[ 0.284728] pci 0000:00:1f.2: [8086:1e03] type 00 class 0x010601
[ 0.284758] pci 0000:00:1f.2: reg 0x10: [io 0x3088-0x308f]
[ 0.284773] pci 0000:00:1f.2: reg 0x14: [io 0x3094-0x3097]
[ 0.284790] pci 0000:00:1f.2: reg 0x18: [io 0x3080-0x3087]
[ 0.284805] pci 0000:00:1f.2: reg 0x1c: [io 0x3090-0x3093]
[ 0.284819] pci 0000:00:1f.2: reg 0x20: [io 0x3060-0x307f]
[ 0.284834] pci 0000:00:1f.2: reg 0x24: [mem 0xc0817000-0xc08177ff]
[ 0.284917] pci 0000:00:1f.2: PME# supported from D3hot
[ 0.285143] pci 0000:00:1f.3: [8086:1e22] type 00 class 0x0c0500
[ 0.285179] pci 0000:00:1f.3: reg 0x10: [mem 0xc0815000-0xc08150ff 64bit]
[ 0.285219] pci 0000:00:1f.3: reg 0x20: [io 0x3040-0x305f]
[ 0.285533] pci 0000:07:00.0: [14e4:4365] type 00 class 0x028000
[ 0.285584] pci 0000:07:00.0: reg 0x10: [mem 0xc0700000-0xc0707fff 64bit]
[ 0.285689] pci 0000:07:00.0: enabling Extended Tags
[ 0.285834] pci 0000:07:00.0: supports D1 D2
[ 0.285836] pci 0000:07:00.0: PME# supported from D0 D3hot D3cold
[ 0.286078] pci 0000:00:1c.0: PCI bridge to [bus 07]
[ 0.286089] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
[ 0.286308] pci 0000:08:00.0: [10ec:5209] type 00 class 0xff0000
[ 0.286401] pci 0000:08:00.0: reg 0x10: [mem 0xc0600000-0xc0600fff]
[ 0.286979] pci 0000:08:00.0: supports D1 D2
[ 0.286981] pci 0000:08:00.0: PME# supported from D1 D2 D3hot
[ 0.287371] pci 0000:00:1c.1: PCI bridge to [bus 08]
[ 0.287383] pci 0000:00:1c.1: bridge window [mem 0xc0600000-0xc06fffff]
[ 0.287530] pci 0000:0e:00.0: [10ec:8168] type 00 class 0x020000
[ 0.287570] pci 0000:0e:00.0: reg 0x10: [io 0x2000-0x20ff]
[ 0.287617] pci 0000:0e:00.0: reg 0x18: [mem 0xc0500000-0xc0500fff 64bit]
[ 0.287648] pci 0000:0e:00.0: reg 0x20: [mem 0xc0400000-0xc0403fff 64bit pref]
[ 0.287822] pci 0000:0e:00.0: supports D1 D2
[ 0.287824] pci 0000:0e:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[ 0.288065] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[ 0.288073] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 0.288079] pci 0000:00:1c.2: bridge window [mem 0xc0500000-0xc05fffff]
[ 0.288089] pci 0000:00:1c.2: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
[ 0.289250] ACPI: PCI: Interrupt link LNKA configured for IRQ 7
[ 0.289398] ACPI: PCI: Interrupt link LNKB configured for IRQ 11
[ 0.289541] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
[ 0.289683] ACPI: PCI: Interrupt link LNKD configured for IRQ 10
[ 0.289824] ACPI: PCI: Interrupt link LNKE configured for IRQ 0
[ 0.289826] ACPI: PCI: Interrupt link LNKE disabled
[ 0.289966] ACPI: PCI: Interrupt link LNKF configured for IRQ 10
[ 0.290108] ACPI: PCI: Interrupt link LNKG configured for IRQ 10
[ 0.290260] ACPI: PCI: Interrupt link LNKH configured for IRQ 7
[ 0.290719] ACPI: EC: interrupt unblocked
[ 0.290722] ACPI: EC: event unblocked
[ 0.290727] ACPI: EC: EC_CMD/EC_SC=0x66, EC_DATA=0x62
[ 0.290729] ACPI: EC: GPE=0x17
[ 0.290733] ACPI: \_SB_.PCI0.LPCB.EC0_: Boot DSDT EC initialization complete
[ 0.290737] ACPI: \_SB_.PCI0.LPCB.EC0_: EC: Used to handle transactions and events
[ 0.290955] iommu: Default domain type: Translated
[ 0.290955] iommu: DMA domain TLB invalidation policy: lazy mode
[ 0.291275] SCSI subsystem initialized
[ 0.291290] libata version 3.00 loaded.
[ 0.291290] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[ 0.291290] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[ 0.291290] pci 0000:00:02.0: vgaarb: bridge control possible
[ 0.291290] vgaarb: loaded
[ 0.291290] ACPI: bus type USB registered
[ 0.291290] usbcore: registered new interface driver usbfs
[ 0.291290] usbcore: registered new interface driver hub
[ 0.291290] usbcore: registered new device driver usb
[ 0.291290] pps_core: LinuxPPS API ver. 1 registered
[ 0.291290] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[ 0.291290] PTP clock support registered
[ 0.291290] EDAC MC: Ver: 3.0.0
[ 0.291290] NetLabel: Initializing
[ 0.291290] NetLabel: domain hash size = 128
[ 0.291290] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
[ 0.291290] NetLabel: unlabeled traffic allowed by default
[ 0.291300] PCI: Using ACPI for IRQ routing
[ 0.296520] PCI: pci_cache_line_size set to 64 bytes
[ 0.296613] e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
[ 0.296617] e820: reserve RAM buffer [mem 0xa4d37000-0xa7ffffff]
[ 0.296619] e820: reserve RAM buffer [mem 0xaaabf000-0xabffffff]
[ 0.296622] e820: reserve RAM buffer [mem 0xab000000-0xabffffff]
[ 0.296624] e820: reserve RAM buffer [mem 0x24f600000-0x24fffffff]
[ 0.296633] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
[ 0.296633] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
[ 0.298946] clocksource: Switched to clocksource tsc-early
[ 0.323629] VFS: Disk quotas dquot_6.6.0
[ 0.323673] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[ 0.323920] AppArmor: AppArmor Filesystem Enabled
[ 0.323979] pnp: PnP ACPI init
[ 0.324243] system 00:00: [io 0x0680-0x069f] has been reserved
[ 0.324249] system 00:00: [io 0x1000-0x100f] has been reserved
[ 0.324253] system 00:00: [io 0xffff] has been reserved
[ 0.324256] system 00:00: [io 0xffff] has been reserved
[ 0.324259] system 00:00: [io 0x0400-0x0453] has been reserved
[ 0.324262] system 00:00: [io 0x0458-0x047f] has been reserved
[ 0.324274] system 00:00: [io 0x0500-0x057f] has been reserved
[ 0.324278] system 00:00: [io 0x164e-0x164f] has been reserved
[ 0.324446] system 00:02: [io 0x0454-0x0457] has been reserved
[ 0.324954] system 00:05: [mem 0xfed1c000-0xfed1ffff] has been reserved
[ 0.324959] system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved
[ 0.324962] system 00:05: [mem 0xfed18000-0xfed18fff] has been reserved
[ 0.324965] system 00:05: [mem 0xfed19000-0xfed19fff] has been reserved
[ 0.324969] system 00:05: [mem 0xf0000000-0xf3ffffff] has been reserved
[ 0.324972] system 00:05: [mem 0xfed20000-0xfed3ffff] has been reserved
[ 0.324975] system 00:05: [mem 0xfed90000-0xfed93fff] has been reserved
[ 0.324979] system 00:05: [mem 0xff000000-0xffffffff] could not be reserved
[ 0.324982] system 00:05: [mem 0xfee00000-0xfeefffff] could not be reserved
[ 0.324985] system 00:05: [mem 0xafa00000-0xafa00fff] has been reserved
[ 0.325520] system 00:06: [mem 0x20000000-0x201fffff] has been reserved
[ 0.325525] system 00:06: [mem 0x40000000-0x401fffff] has been reserved
[ 0.325552] pnp: PnP ACPI: found 7 devices
[ 0.332625] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[ 0.332765] NET: Registered PF_INET protocol family
[ 0.332960] IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
[ 0.335418] tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
[ 0.335539] TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
[ 0.335844] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
[ 0.336014] TCP: Hash tables configured (established 65536 bind 65536)
[ 0.336167] MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
[ 0.336256] UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.336307] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
[ 0.336424] NET: Registered PF_UNIX/PF_LOCAL protocol family
[ 0.336440] NET: Registered PF_XDP protocol family
[ 0.336459] pci 0000:00:1c.0: PCI bridge to [bus 07]
[ 0.336471] pci 0000:00:1c.0: bridge window [mem 0xc0700000-0xc07fffff]
[ 0.336487] pci 0000:00:1c.1: PCI bridge to [bus 08]
[ 0.336495] pci 0000:00:1c.1: bridge window [mem 0xc0600000-0xc06fffff]
[ 0.336509] pci 0000:00:1c.2: PCI bridge to [bus 0e]
[ 0.336514] pci 0000:00:1c.2: bridge window [io 0x2000-0x2fff]
[ 0.336522] pci 0000:00:1c.2: bridge window [mem 0xc0500000-0xc05fffff]
[ 0.336529] pci 0000:00:1c.2: bridge window [mem 0xc0400000-0xc04fffff 64bit pref]
[ 0.336540] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
[ 0.336544] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
[ 0.336547] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
[ 0.336550] pci_bus 0000:00: resource 7 [mem 0xafa00000-0xfeafffff window]
[ 0.336554] pci_bus 0000:07: resource 1 [mem 0xc0700000-0xc07fffff]
[ 0.336557] pci_bus 0000:08: resource 1 [mem 0xc0600000-0xc06fffff]
[ 0.336560] pci_bus 0000:0e: resource 0 [io 0x2000-0x2fff]
[ 0.336562] pci_bus 0000:0e: resource 1 [mem 0xc0500000-0xc05fffff]
[ 0.336565] pci_bus 0000:0e: resource 2 [mem 0xc0400000-0xc04fffff 64bit pref]
[ 0.355104] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x160 took 16433 usecs
[ 0.375098] pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x160 took 19492 usecs
[ 0.375152] PCI: CLS 64 bytes, default 64
[ 0.375163] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
[ 0.375164] software IO TLB: mapped [mem 0x00000000a6abf000-0x00000000aaabf000] (64MB)
[ 0.375252] Trying to unpack rootfs image as initramfs...
[ 0.383836] Initialise system trusted keyrings
[ 0.383856] Key type blacklist registered
[ 0.383958] workingset: timestamp_bits=36 max_order=21 bucket_order=0
[ 0.386687] zbud: loaded
[ 0.387303] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[ 0.387616] fuse: init (API version 7.34)
[ 0.387923] integrity: Platform Keyring initialized
[ 0.407336] Key type asymmetric registered
[ 0.407341] Asymmetric key parser 'x509' registered
[ 0.407379] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
[ 0.407478] io scheduler mq-deadline registered
[ 0.408696] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[ 0.410383] ACPI: AC: AC Adapter [ACAD] (on-line)
[ 0.410491] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[ 0.410538] ACPI: button: Power Button [PWRB]
[ 0.410599] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
[ 0.410631] ACPI: button: Lid Switch [LID0]
[ 0.410683] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[ 0.410751] ACPI: button: Power Button [PWRF]
[ 0.412110] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.PEG0.PEGP.LVL0], AE_NOT_FOUND (20210730/psargs-330)
[ 0.412132] fbcon: Taking over console
[ 0.412149] No Local Variables are initialized for Method [GPIR]
[ 0.412153] Initialized Arguments for Method [GPIR]: (1 arguments defined for method invocation)
[ 0.412155] Arg0: (____ptrval____) <Obj> Integer 0000000000000010
[ 0.412168] ACPI Error: Aborting method \_TZ.THRM.GPIR due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412186] ACPI Error: Aborting method \_TZ.THRM.ISTT due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412199] ACPI Error: Aborting method \_TZ.THRM.FTTF due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412216] ACPI Error: Aborting method \_TZ.THRM._CRT due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412864] ACPI BIOS Error (bug): Could not resolve symbol [\_SB.PCI0.PEG0.PEGP.LVL0], AE_NOT_FOUND (20210730/psargs-330)
[ 0.412886] No Local Variables are initialized for Method [GPIR]
[ 0.412889] Initialized Arguments for Method [GPIR]: (1 arguments defined for method invocation)
[ 0.412891] Arg0: (____ptrval____) <Obj> Integer 0000000000000010
[ 0.412902] ACPI Error: Aborting method \_TZ.THRM.GPIR due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412917] ACPI Error: Aborting method \_TZ.THRM.ISTT due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412930] ACPI Error: Aborting method \_TZ.THRM.FTTF due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.412947] ACPI Error: Aborting method \_TZ.THRM._CRT due to previous error (AE_NOT_FOUND) (20210730/psparse-529)
[ 0.414493] thermal LNXTHERM:00: registered as thermal_zone0
[ 0.414499] ACPI: thermal: Thermal Zone [THRM] (54 C)
[ 0.414818] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[ 0.418073] Linux agpgart interface v0.103
[ 0.422070] loop: module loaded
[ 0.422555] tun: Universal TUN/TAP device driver, 1.6
[ 0.422613] PPP generic driver version 2.4.2
[ 0.422700] VFIO - User Level meta-driver version: 0.3
[ 0.422852] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[ 0.422858] ehci-pci: EHCI PCI platform driver
[ 0.423739] ehci-pci 0000:00:1a.0: EHCI Host Controller
[ 0.423753] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
[ 0.423772] ehci-pci 0000:00:1a.0: debug port 2
[ 0.427720] ehci-pci 0000:00:1a.0: irq 16, io mem 0xc0819000
[ 0.443129] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
[ 0.443603] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.443611] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.443615] usb usb1: Product: EHCI Host Controller
[ 0.443618] usb usb1: Manufacturer: Linux 5.15.0-47-generic ehci_hcd
[ 0.443620] usb usb1: SerialNumber: 0000:00:1a.0
[ 0.443853] hub 1-0:1.0: USB hub found
[ 0.443866] hub 1-0:1.0: 2 ports detected
[ 0.445496] ehci-pci 0000:00:1d.0: EHCI Host Controller
[ 0.445510] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
[ 0.445529] ehci-pci 0000:00:1d.0: debug port 2
[ 0.449492] ehci-pci 0000:00:1d.0: irq 23, io mem 0xc0818000
[ 0.462955] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
[ 0.463064] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 0.463070] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 0.463073] usb usb2: Product: EHCI Host Controller
[ 0.463076] usb usb2: Manufacturer: Linux 5.15.0-47-generic ehci_hcd
[ 0.463079] usb usb2: SerialNumber: 0000:00:1d.0
[ 0.463315] hub 2-0:1.0: USB hub found
[ 0.463328] hub 2-0:1.0: 2 ports detected
[ 0.463664] ehci-platform: EHCI generic platform driver
[ 0.463688] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[ 0.463702] ohci-pci: OHCI PCI platform driver
[ 0.463723] ohci-platform: OHCI generic platform driver
[ 0.463735] uhci_hcd: USB Universal Host Controller Interface driver
[ 0.463823] i8042: PNP: PS/2 Controller [PNP030b:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[ 0.466334] serio: i8042 KBD port at 0x60,0x64 irq 1
[ 0.466356] serio: i8042 AUX port at 0x60,0x64 irq 12
[ 0.466577] mousedev: PS/2 mouse device common for all mice
[ 0.466832] rtc_cmos 00:01: RTC can wake from S4
[ 0.467156] rtc_cmos 00:01: registered as rtc0
[ 0.467192] rtc_cmos 00:01: setting system clock to 2022-09-06T17:36:02 UTC (1662485762)
[ 0.467240] rtc_cmos 00:01: alarms up to one month, 242 bytes nvram, hpet irqs
[ 0.467259] i2c_dev: i2c /dev entries driver
[ 0.467637] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
[ 0.467696] device-mapper: uevent: version 1.0.3
[ 0.467799] device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
[ 0.467846] platform eisa.0: Probing EISA bus 0
[ 0.467851] platform eisa.0: EISA: Cannot allocate resource for mainboard
[ 0.467854] platform eisa.0: Cannot allocate resource for EISA slot 1
[ 0.467857] platform eisa.0: Cannot allocate resource for EISA slot 2
[ 0.467859] platform eisa.0: Cannot allocate resource for EISA slot 3
[ 0.467861] platform eisa.0: Cannot allocate resource for EISA slot 4
[ 0.467864] platform eisa.0: Cannot allocate resource for EISA slot 5
[ 0.467866] platform eisa.0: Cannot allocate resource for EISA slot 6
[ 0.467868] platform eisa.0: Cannot allocate resource for EISA slot 7
[ 0.467871] platform eisa.0: Cannot allocate resource for EISA slot 8
[ 0.467873] platform eisa.0: EISA: Detected 0 cards
[ 0.467881] intel_pstate: Intel P-state driver initializing
[ 0.468123] ledtrig-cpu: registered to indicate activity on CPUs
[ 0.468220] vesafb: mode is 1366x768x32, linelength=5504, pages=0
[ 0.468224] vesafb: scrolling: redraw
[ 0.468225] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
[ 0.468247] vesafb: framebuffer at 0xb0000000, mapped to 0x(____ptrval____), using 4160k, total 4160k
[ 0.468401] Console: switching to colour frame buffer device 170x48
[ 0.487652] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[ 0.579333] fb0: VESA VGA frame buffer device
[ 0.579554] drop_monitor: Initializing network drop monitor service
[ 0.579884] NET: Registered PF_INET6 protocol family
[ 0.624901] ACPI: battery: Slot [BAT1] (battery present)
[ 0.782957] usb 1-1: new high-speed USB device number 2 using ehci-pci
[ 0.810960] usb 2-1: new high-speed USB device number 2 using ehci-pci
[ 0.939429] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[ 0.939439] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.939874] hub 1-1:1.0: USB hub found
[ 0.940048] hub 1-1:1.0: 4 ports detected
[ 0.967298] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
[ 0.967308] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
[ 0.967740] hub 2-1:1.0: USB hub found
[ 0.967917] hub 2-1:1.0: 4 ports detected
[ 1.222973] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
[ 1.233050] Freeing initrd memory: 61840K
[ 1.248988] Segment Routing with IPv6
[ 1.249018] In-situ OAM (IOAM) with IPv6
[ 1.249062] NET: Registered PF_PACKET protocol family
[ 1.249138] Key type dns_resolver registered
[ 1.249537] microcode: sig=0x206a7, pf=0x10, revision=0x2f
[ 1.249608] microcode: Microcode Update Driver: v2.2.
[ 1.249618] IPI shorthand broadcast: enabled
[ 1.249649] sched_clock: Marking stable (1249199415, 398482)->(1262885978, -13288081)
[ 1.249861] registered taskstats version 1
[ 1.249902] Loading compiled-in X.509 certificates
[ 1.250942] usb 2-1.3: new low-speed USB device number 3 using ehci-pci
[ 1.251575] Loaded X.509 cert 'Build time autogenerated kernel key: cde495e0b2d1f7434a00f56392509d3a0e4cbe31'
[ 1.253043] Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
[ 1.254494] Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
[ 1.254497] blacklist: Loading compiled-in revocation X.509 certificates
[ 1.254535] Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
[ 1.254954] zswap: loaded using pool lzo/zbud
[ 1.255372] Key type ._fscrypt registered
[ 1.255377] Key type .fscrypt registered
[ 1.255379] Key type fscrypt-provisioning registered
[ 1.261511] Key type encrypted registered
[ 1.261522] AppArmor: AppArmor sha1 policy hashing enabled
[ 1.261546] ima: No TPM chip found, activating TPM-bypass!
[ 1.261558] Loading compiled-in module X.509 certificates
[ 1.263091] Loaded X.509 cert 'Build time autogenerated kernel key: cde495e0b2d1f7434a00f56392509d3a0e4cbe31'
[ 1.263097] ima: Allocated hash algorithm: sha1
[ 1.263109] ima: No architecture policies found
[ 1.263125] evm: Initialising EVM extended attributes:
[ 1.263127] evm: security.selinux
[ 1.263129] evm: security.SMACK64
[ 1.263130] evm: security.SMACK64EXEC
[ 1.263132] evm: security.SMACK64TRANSMUTE
[ 1.263133] evm: security.SMACK64MMAP
[ 1.263135] evm: security.apparmor
[ 1.263136] evm: security.ima
[ 1.263137] evm: security.capability
[ 1.263139] evm: HMAC attrs: 0x1
[ 1.263800] PM: Magic number: 6:852:642
[ 1.263810] usb 1-1-port3: hash matches
[ 1.264199] RAS: Correctable Errors collector initialized.
[ 1.267063] Freeing unused decrypted memory: 2036K
[ 1.267932] Freeing unused kernel image (initmem) memory: 3224K
[ 1.279046] Write protecting the kernel read-only data: 30720k
[ 1.279908] Freeing unused kernel image (text/rodata gap) memory: 2036K
[ 1.280362] Freeing unused kernel image (rodata/data gap) memory: 1488K
[ 1.378355] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.378359] x86/mm: Checking user space page tables
[ 1.410943] tsc: Refined TSC clocksource calibration: 1496.600 MHz
[ 1.410956] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x159296d3708, max_idle_ns: 440795218047 ns
[ 1.472516] x86/mm: Checked W+X mappings: passed, no W+X pages found.
[ 1.472530] clocksource: Switched to clocksource tsc
[ 1.472544] Run /init as init process
[ 1.472547] with arguments:
[ 1.472549] /init
[ 1.472551] splash
[ 1.472553] with environment:
[ 1.472554] HOME=/
[ 1.472556] TERM=linux
[ 1.472557] BOOT_IMAGE=/boot/vmlinuz-5.15.0-47-generic
[ 1.495426] usb 2-1.3: New USB device found, idVendor=046d, idProduct=c05a, bcdDevice=54.00
[ 1.495442] usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[ 1.495447] usb 2-1.3: Product: USB Optical Mouse
[ 1.495451] usb 2-1.3: Manufacturer: Logitech
[ 1.564878] usb 1-1.3: New USB device found, idVendor=04f2, idProduct=b3aa, bcdDevice=55.07
[ 1.564887] usb 1-1.3: New USB device strings: Mfr=3, Product=1, SerialNumber=2
[ 1.564891] usb 1-1.3: Product: Front Camera
[ 1.564894] usb 1-1.3: Manufacturer: Chicony Electronics Co.,Ltd.
[ 1.564897] usb 1-1.3: SerialNumber: 0001
[ 1.574943] usb 2-1.4: new high-speed USB device number 4 using ehci-pci
[ 1.684118] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 1.684128] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 1.684132] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 1.684134] usb 2-1.4: Manufacturer: Realtek
[ 1.684136] usb 2-1.4: SerialNumber: 123456
[ 1.760079] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.760092] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
[ 1.761174] xhci_hcd 0000:00:14.0: hcc params 0x20007181 hci version 0x100 quirks 0x000000000000b930
[ 1.763150] ahci 0000:00:1f.2: version 3.0
[ 1.763230] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
[ 1.763324] ACPI Warning: SystemIO range 0x0000000000000428-0x000000000000042F conflicts with OpRegion 0x0000000000000400-0x000000000000047F (\PMIO) (20210730/utaddress-204)
[ 1.763336] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.763342] ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20210730/utaddress-204)
[ 1.763349] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.763351] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20210730/utaddress-204)
[ 1.763359] ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000053F (\_SB.PCI0.LPCB.NFCM.GPIO) (20210730/utaddress-204)
[ 1.763365] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.763367] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x0000000000000563 (\GPIO) (20210730/utaddress-204)
[ 1.763373] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000053F (\_SB.PCI0.LPCB.NFCM.GPIO) (20210730/utaddress-204)
[ 1.763380] ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000051F (\_SB.PCI0.LPCB.SNC.GPIO) (20210730/utaddress-204)
[ 1.763386] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 1.763387] lpc_ich: Resource conflict(s) found affecting gpio_ich
[ 1.764311] ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
[ 1.765022] usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
[ 1.765029] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.765033] usb usb3: Product: xHCI Host Controller
[ 1.765035] usb usb3: Manufacturer: Linux 5.15.0-47-generic xhci-hcd
[ 1.765038] usb usb3: SerialNumber: 0000:00:14.0
[ 1.767875] hub 3-0:1.0: USB hub found
[ 1.767896] hub 3-0:1.0: 4 ports detected
[ 1.774426] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 4 ports 6 Gbps 0x11 impl SATA mode
[ 1.774437] ahci 0000:00:1f.2: flags: 64bit ncq stag pm led clo pio slum part ems apst
[ 1.785140] xhci_hcd 0000:00:14.0: xHCI Host Controller
[ 1.785151] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4
[ 1.785157] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
[ 1.785230] usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15
[ 1.785235] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[ 1.785238] usb usb4: Product: xHCI Host Controller
[ 1.785241] usb usb4: Manufacturer: Linux 5.15.0-47-generic xhci-hcd
[ 1.785243] usb usb4: SerialNumber: 0000:00:14.0
[ 1.785455] hub 4-0:1.0: USB hub found
[ 1.785472] hub 4-0:1.0: 4 ports detected
[ 1.789626] scsi host0: ahci
[ 1.799485] i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
[ 1.799494] ACPI: watchdog: Skipping WDAT on this system because it uses RTC SRAM
[ 1.804446] scsi host1: ahci
[ 1.806122] i2c i2c-0: 2/2 memory slots populated (from DMI)
[ 1.808038] scsi host2: ahci
[ 1.808379] scsi host3: ahci
[ 1.808612] scsi host4: ahci
[ 1.808730] ata1: SATA max UDMA/133 abar m2048@0xc0817000 port 0xc0817100 irq 26
[ 1.808736] ata2: DUMMY
[ 1.808738] ata3: DUMMY
[ 1.808739] ata4: DUMMY
[ 1.808743] ata5: SATA max UDMA/133 abar m2048@0xc0817000 port 0xc0817300 irq 26
[ 1.821220] r8169 0000:0e:00.0 eth0: RTL8168g/8111g, 3c:07:71:57:47:22, XID 4c0, IRQ 27
[ 1.821230] r8169 0000:0e:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
[ 1.840581] i2c i2c-0: Successfully instantiated SPD at 0x50
[ 1.846079] hid: raw HID events driver (C) Jiri Kosina
[ 2.121789] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
[ 2.122656] ata1.00: supports DRM functions and may not be fully accessible
[ 2.122669] ata1.00: ATA-10: CT500MX500SSD1, M3CR033, max UDMA/133
[ 2.122783] ata1.00: 976773168 sectors, multi 1: LBA48 NCQ (depth 32), AA
[ 2.124041] ata1.00: Features: Trust Dev-Sleep
[ 2.124263] ata1.00: supports DRM functions and may not be fully accessible
[ 2.125168] ata1.00: configured for UDMA/133
[ 2.135856] scsi 0:0:0:0: Direct-Access ATA CT500MX500SSD1 033 PQ: 0 ANSI: 5
[ 2.137017] sd 0:0:0:0: [sda] 976773168 512-byte logical blocks: (500 GB/466 GiB)
[ 2.137023] sd 0:0:0:0: [sda] 4096-byte physical blocks
[ 2.137041] sd 0:0:0:0: [sda] Write Protect is off
[ 2.137046] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[ 2.137074] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[ 2.137598] sd 0:0:0:0: Attached scsi generic sg0 type 0
[ 2.151579] sda: sda1 sda2 sda3 sda4
[ 2.167834] sd 0:0:0:0: [sda] supports TCG Opal
[ 2.167848] sd 0:0:0:0: [sda] Attached SCSI disk
[ 2.255204] psmouse serio1: synaptics: queried max coordinates: x [..5666], y [..4710]
[ 2.284555] psmouse serio1: synaptics: queried min coordinates: x [1276..], y [1144..]
[ 2.284585] psmouse serio1: synaptics: Your touchpad (PNP: SYN2706 SYN2700 SYN0002 PNP0f13) says it can support a different bus. If i2c-hid and hid-rmi are not used, you might want to try setting psmouse.synaptics_intertouch to 1 and report this to linux-input@vger.kernel.org.
[ 2.342495] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd00123/0x840300/0x126800/0x0, board id: 2739, fw id: 1366777
[ 2.382160] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
[ 2.453979] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[ 2.455595] ata5.00: ATAPI: MATSHITADVD-RAM UJ8C2, 1.00, max UDMA/133
[ 2.457117] ata5.00: configured for UDMA/133
[ 2.459195] scsi 4:0:0:0: CD-ROM MATSHITA DVD-RAM UJ8C2 1.00 PQ: 0 ANSI: 5
[ 2.517030] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[ 2.517040] cdrom: Uniform CD-ROM driver Revision: 3.20
[ 2.544336] sr 4:0:0:0: Attached scsi CD-ROM sr0
[ 2.544565] sr 4:0:0:0: Attached scsi generic sg1 type 5
[ 2.553033] r8169 0000:0e:00.0 enp14s0: renamed from eth0
[ 2.567443] usbcore: registered new interface driver usbhid
[ 2.567450] usbhid: USB HID core driver
[ 2.572599] input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/0003:046D:C05A.0001/input/input6
[ 2.572950] hid-generic 0003:046D:C05A.0001: input,hidraw0: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.3/input0
[ 2.831993] EXT4-fs (sda4): mounting ext3 file system using the ext4 subsystem
[ 2.855795] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
[ 3.060158] systemd[1]: Inserted module 'autofs4'
[ 3.093013] systemd[1]: systemd 249.11-0ubuntu3.4 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP -LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
[ 3.111218] systemd[1]: Detected architecture x86-64.
[ 3.111927] systemd[1]: Hostname set to <ubuntu-SVF1521A1EB>.
[ 3.419420] systemd[1]: Queued start job for default target Graphical Interface.
[ 3.420112] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.422047] systemd[1]: Created slice Slice /system/modprobe.
[ 3.422170] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.422587] systemd[1]: Created slice User and Session Slice.
[ 3.422649] random: systemd: uninitialized urandom read (16 bytes read)
[ 3.422766] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[ 3.423181] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
[ 3.423367] systemd[1]: Reached target Remote File Systems.
[ 3.423412] systemd[1]: Reached target Slice Units.
[ 3.423496] systemd[1]: Reached target Local Verity Protected Volumes.
[ 3.424071] systemd[1]: Listening on Syslog Socket.
[ 3.424298] systemd[1]: Listening on fsck to fsckd communication Socket.
[ 3.424438] systemd[1]: Listening on initctl Compatibility Named Pipe.
[ 3.424866] systemd[1]: Listening on Journal Audit Socket.
[ 3.425092] systemd[1]: Listening on Journal Socket (/dev/log).
[ 3.425370] systemd[1]: Listening on Journal Socket.
[ 3.425719] systemd[1]: Listening on udev Control Socket.
[ 3.425931] systemd[1]: Listening on udev Kernel Socket.
[ 3.427520] systemd[1]: Mounting Huge Pages File System...
[ 3.429284] systemd[1]: Mounting POSIX Message Queue File System...
[ 3.431503] systemd[1]: Mounting Kernel Debug File System...
[ 3.433276] systemd[1]: Mounting Kernel Trace File System...
[ 3.437055] systemd[1]: Starting Journal Service...
[ 3.442248] systemd[1]: Starting Set the console keyboard layout...
[ 3.444610] systemd[1]: Starting Create List of Static Device Nodes...
[ 3.446590] systemd[1]: Starting Load Kernel Module chromeos_pstore...
[ 3.448682] systemd[1]: Starting Load Kernel Module configfs...
[ 3.460158] systemd[1]: Starting Load Kernel Module drm...
[ 3.465522] systemd[1]: Starting Load Kernel Module efi_pstore...
[ 3.468026] systemd[1]: Starting Load Kernel Module fuse...
[ 3.483649] systemd[1]: Starting Load Kernel Module mtdpstore...
[ 3.493533] systemd[1]: Starting Load Kernel Module pstore_blk...
[ 3.496335] systemd[1]: Starting Load Kernel Module pstore_zone...
[ 3.500674] systemd[1]: Starting Load Kernel Module ramoops...
[ 3.501144] systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
[ 3.522433] mtd device must be supplied (device name is empty)
[ 3.529092] systemd[1]: Starting Load Kernel Modules...
[ 3.530855] systemd[1]: Starting Remount Root and Kernel File Systems...
[ 3.547509] systemd[1]: Starting Coldplug All udev Devices...
[ 3.550132] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro. Quota mode: none.
[ 3.559853] systemd[1]: Mounted Huge Pages File System.
[ 3.560081] systemd[1]: Mounted POSIX Message Queue File System.
[ 3.560260] systemd[1]: Mounted Kernel Debug File System.
[ 3.560434] systemd[1]: Mounted Kernel Trace File System.
[ 3.560977] systemd[1]: Finished Create List of Static Device Nodes.
[ 3.561643] systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully.
[ 3.562064] systemd[1]: Finished Load Kernel Module chromeos_pstore.
[ 3.562604] systemd[1]: modprobe@configfs.service: Deactivated successfully.
[ 3.563383] systemd[1]: Finished Load Kernel Module configfs.
[ 3.563915] systemd[1]: modprobe@drm.service: Deactivated successfully.
[ 3.564334] systemd[1]: Finished Load Kernel Module drm.
[ 3.564849] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
[ 3.583314] systemd[1]: Finished Load Kernel Module efi_pstore.
[ 3.584050] systemd[1]: modprobe@fuse.service: Deactivated successfully.
[ 3.584456] systemd[1]: Finished Load Kernel Module fuse.
[ 3.584970] systemd[1]: modprobe@mtdpstore.service: Deactivated successfully.
[ 3.585339] systemd[1]: Finished Load Kernel Module mtdpstore.
[ 3.585841] systemd[1]: modprobe@pstore_blk.service: Deactivated successfully.
[ 3.586213] systemd[1]: Finished Load Kernel Module pstore_blk.
[ 3.586700] systemd[1]: modprobe@pstore_zone.service: Deactivated successfully.
[ 3.599358] lp: driver loaded but no devices found
[ 3.599871] systemd[1]: Finished Load Kernel Module pstore_zone.
[ 3.600477] systemd[1]: modprobe@ramoops.service: Deactivated successfully.
[ 3.600865] systemd[1]: Finished Load Kernel Module ramoops.
[ 3.601432] systemd[1]: Finished Remount Root and Kernel File Systems.
[ 3.607192] systemd[1]: Activating swap /swapfile...
[ 3.609100] systemd[1]: Mounting FUSE Control File System...
[ 3.610136] ppdev: user-space parallel port driver
[ 3.615220] systemd[1]: Mounting Kernel Configuration File System...
[ 3.616105] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
[ 3.618034] systemd[1]: Starting Load/Save Random Seed...
[ 3.660181] IPMI message handler: version 39.2
[ 3.662336] systemd[1]: Starting Create System Users...
[ 3.666258] systemd[1]: Mounted FUSE Control File System.
[ 3.666514] systemd[1]: Mounted Kernel Configuration File System.
[ 3.668807] ipmi device interface
[ 3.676897] systemd[1]: Finished Load Kernel Modules.
[ 3.678786] systemd[1]: Starting Apply Kernel Variables...
[ 3.704379] systemd[1]: Finished Create System Users.
[ 3.707747] systemd[1]: Starting Create Static Device Nodes in /dev...
[ 3.750417] systemd[1]: Finished Create Static Device Nodes in /dev.
[ 3.753388] systemd[1]: Starting Rule-based Manager for Device Events and Files...
[ 3.793422] systemd[1]: Finished Apply Kernel Variables.
[ 3.810387] Adding 2097148k swap on /swapfile. Priority:-2 extents:23 across:2245952k SSFS
[ 3.810526] systemd[1]: Activated swap /swapfile.
[ 3.810682] systemd[1]: Reached target Swaps.
[ 3.849691] systemd[1]: Started Journal Service.
[ 3.872572] systemd-journald[248]: Received client request to flush runtime journal.
[ 3.875246] loop0: detected capacity change from 0 to 8
[ 3.887302] loop1: detected capacity change from 0 to 233448
[ 3.903943] loop2: detected capacity change from 0 to 113792
[ 3.905172] loop3: detected capacity change from 0 to 113792
[ 3.947274] loop4: detected capacity change from 0 to 126896
[ 3.947885] loop5: detected capacity change from 0 to 126888
[ 3.986970] loop6: detected capacity change from 0 to 334384
[ 4.002179] loop7: detected capacity change from 0 to 362240
[ 4.014563] loop8: detected capacity change from 0 to 801328
[ 4.020933] loop9: detected capacity change from 0 to 1067904
[ 4.043128] loop10: detected capacity change from 0 to 333552
[ 4.048856] loop11: detected capacity change from 0 to 337424
[ 4.053498] loop12: detected capacity change from 0 to 820832
[ 4.088883] loop13: detected capacity change from 0 to 709216
[ 4.103387] loop14: detected capacity change from 0 to 280
[ 4.124039] loop15: detected capacity change from 0 to 187776
[ 4.132182] loop16: detected capacity change from 0 to 166424
[ 4.148092] loop17: detected capacity change from 0 to 533936
[ 4.149011] loop18: detected capacity change from 0 to 93920
[ 4.163481] loop19: detected capacity change from 0 to 93928
[ 4.187515] loop20: detected capacity change from 0 to 96176
[ 4.189299] loop21: detected capacity change from 0 to 96160
[ 4.371160] audit: type=1400 audit(1662485766.401:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=347 comm="apparmor_parser"
[ 4.375326] audit: type=1400 audit(1662485766.405:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=348 comm="apparmor_parser"
[ 4.375336] audit: type=1400 audit(1662485766.405:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=348 comm="apparmor_parser"
[ 4.427537] urandom_read_iter: 163 callbacks suppressed
[ 4.427543] random: systemd: uninitialized urandom read (16 bytes read)
[ 4.437858] random: systemd-journal: uninitialized urandom read (16 bytes read)
[ 4.479515] audit: type=1400 audit(1662485766.509:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=349 comm="apparmor_parser"
[ 4.479526] audit: type=1400 audit(1662485766.509:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=349 comm="apparmor_parser"
[ 4.479531] audit: type=1400 audit(1662485766.509:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=349 comm="apparmor_parser"
[ 4.479536] audit: type=1400 audit(1662485766.509:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=349 comm="apparmor_parser"
[ 4.516531] audit: type=1400 audit(1662485766.545:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=356 comm="apparmor_parser"
[ 4.516542] audit: type=1400 audit(1662485766.545:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=356 comm="apparmor_parser"
[ 5.168839] random: systemd: uninitialized urandom read (16 bytes read)
[ 5.338941] random: crng init done
[ 5.338946] random: 2 urandom warning(s) missed due to ratelimiting
[ 5.413745] kauditd_printk_skb: 19 callbacks suppressed
[ 5.413751] audit: type=1400 audit(1662485767.441:30): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/sssd" pid=367 comm="apparmor_parser"
[ 5.505240] audit: type=1400 audit(1662485767.533:31): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/13425/usr/lib/snapd/snap-confine" pid=378 comm="apparmor_parser"
[ 5.505253] audit: type=1400 audit(1662485767.533:32): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/13425/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=378 comm="apparmor_parser"
[ 5.506203] audit: type=1400 audit(1662485767.533:33): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/16010/usr/lib/snapd/snap-confine" pid=379 comm="apparmor_parser"
[ 5.506214] audit: type=1400 audit(1662485767.533:34): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/16010/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=379 comm="apparmor_parser"
[ 5.511277] audit: type=1400 audit(1662485767.541:35): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.core" pid=381 comm="apparmor_parser"
[ 5.537307] audit: type=1400 audit(1662485767.565:36): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/16292/usr/lib/snapd/snap-confine" pid=380 comm="apparmor_parser"
[ 5.537318] audit: type=1400 audit(1662485767.565:37): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/16292/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=380 comm="apparmor_parser"
[ 5.544599] audit: type=1400 audit(1662485767.573:38): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.firefox" pid=382 comm="apparmor_parser"
[ 5.585880] audit: type=1400 audit(1662485767.613:39): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gimp" pid=383 comm="apparmor_parser"
[ 5.613577] input: Sony Vaio Keys as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/SNY5001:00/input/input7
[ 5.630397] input: Sony Vaio Jogdial as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/device:01/SNY5001:00/input/input8
[ 5.959239] mei_me 0000:00:16.0: Could not read IF version
[ 6.029834] sony_laptop: SNC setup done.
[ 7.287926] checking generic (b0000000 410000) vs hw (c0000000 400000)
[ 7.287933] checking generic (b0000000 410000) vs hw (b0000000 10000000)
[ 7.287936] fb0: switching to i915 from VESA VGA
[ 7.439325] loop22: detected capacity change from 0 to 8
[ 7.443135] Console: switching to colour dummy device 80x25
[ 7.444493] i915 0000:00:02.0: vgaarb: deactivate vga console
[ 7.492684] at24 0-0050: supply vcc not found, using dummy regulator
[ 7.577638] at24 0-0050: 256 byte spd EEPROM, read-only
[ 7.659382] mc: Linux media interface: v0.10
[ 8.020368] [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0
[ 8.064138] ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
[ 8.064395] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input9
[ 8.066054] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
[ 8.066060] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
[ 8.066063] RAPL PMU: hw unit of domain package 2^-16 Joules
[ 8.066064] RAPL PMU: hw unit of domain pp1-gpu 2^-16 Joules
[ 8.218480] snd_hda_intel 0000:00:1b.0: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915])
[ 8.232699] cryptd: max_cpu_qlen set to 1000
[ 8.307497] videodev: Linux video capture interface: v2.00
[ 8.511065] Generic FE-GE Realtek PHY r8169-0-e00:00: attached PHY driver (mii_bus:phy_addr=r8169-0-e00:00, irq=MAC)
[ 8.535359] fbcon: i915drmfb (fb0) is primary device
[ 8.711380] r8169 0000:0e:00.0 enp14s0: Link is Down
[ 9.397065] Console: switching to colour frame buffer device 170x48
[ 9.419014] i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device
[ 9.548902] usb 1-1.3: Found UVC 1.00 device Front Camera (04f2:b3aa)
[ 9.584098] snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC233: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
[ 9.584107] snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[ 9.584116] snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0)
[ 9.584120] snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0
[ 9.584122] snd_hda_codec_realtek hdaudioC0D0: inputs:
[ 9.584124] snd_hda_codec_realtek hdaudioC0D0: Mic=0x1a
[ 9.584127] snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12
[ 9.586618] input: Front Camera: Front Camera as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.3/1-1.3:1.0/input/input10
[ 9.605095] usbcore: registered new interface driver uvcvideo
[ 9.628429] intel_rapl_common: Found RAPL domain package
[ 9.628435] intel_rapl_common: Found RAPL domain core
[ 9.628437] intel_rapl_common: Found RAPL domain uncore
[ 9.628446] intel_rapl_common: RAPL package-0 domain package locked by BIOS
[ 9.701351] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input11
[ 9.701493] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input12
[ 9.701589] input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1b.0/sound/card0/input13
[ 14.798787] kauditd_printk_skb: 13 callbacks suppressed
[ 14.798792] audit: type=1400 audit(1662485776.825:53): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=1174 comm="cups-browsed" capability=23 capname="sys_nice"
[ 15.365991] rfkill: input handler disabled
[ 16.097561] audit: type=1400 audit(1662485778.125:54): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=1327 comm="snap-confine" capability=12 capname="net_admin"
[ 16.097879] audit: type=1400 audit(1662485778.125:55): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=1327 comm="snap-confine" capability=38 capname="perfmon"
[ 16.320146] audit: type=1400 audit(1662485778.349:56): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=1327 comm="snap-confine" capability=4 capname="fsetid"
[ 22.629516] audit: type=1326 audit(1662485784.657:57): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=1327 comm="snap-store" exe="/snap/snap-store/582/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f81069a173d code=0x50000
[ 25.292384] audit: type=1107 audit(1662485787.321:58): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? 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.4" pid=1327 label="snap.snap-store.ubuntu-software" peer_pid=452 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 25.292400] audit: type=1420 audit(1662485787.321:59): subj_apparmor=unconfined
[ 25.293539] audit: type=1107 audit(1662485787.321:60): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? 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.4" pid=1327 label="snap.snap-store.ubuntu-software" peer_pid=452 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 25.293554] audit: type=1420 audit(1662485787.321:61): subj_apparmor=unconfined
[ 25.303607] audit: type=1107 audit(1662485787.333:62): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? 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.4" pid=1327 label="snap.snap-store.ubuntu-software" peer_pid=452 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 25.303623] audit: type=1420 audit(1662485787.333:63): subj_apparmor=unconfined
[ 25.304672] audit: type=1107 audit(1662485787.333:64): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? 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.4" pid=1327 label="snap.snap-store.ubuntu-software" peer_pid=452 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 25.304686] audit: type=1420 audit(1662485787.333:65): subj_apparmor=unconfined
[ 26.146865] audit: type=1400 audit(1662485788.173:66): apparmor="DENIED" operation="open" profile="snap.snap-store.ubuntu-software" name="/etc/PackageKit/Vendor.conf" pid=1327 comm="snap-store" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 36.527512] kauditd_printk_skb: 1 callbacks suppressed
[ 36.527519] audit: type=1400 audit(1662485798.557:68): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=1569 comm="snap-confine" capability=12 capname="net_admin"
[ 36.527530] audit: type=1400 audit(1662485798.557:69): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=1569 comm="snap-confine" capability=38 capname="perfmon"
[ 36.846979] audit: type=1326 audit(1662485798.873:70): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=1569 comm="snap-store" exe="/snap/snap-store/582/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f9a46a2373d code=0x50000
[ 52.674666] usb 2-1.4: USB disconnect, device number 4
[ 53.123083] usb 2-1.4: new high-speed USB device number 5 using ehci-pci
[ 53.232903] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 53.232923] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 53.232930] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 53.232935] usb 2-1.4: Manufacturer: Realtek
[ 53.232939] usb 2-1.4: SerialNumber: 123456
[ 56.514761] usb 2-1.4: USB disconnect, device number 5
[ 56.739058] usb 2-1.4: new high-speed USB device number 6 using ehci-pci
[ 56.848818] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 56.848838] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 56.848845] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 56.848850] usb 2-1.4: Manufacturer: Realtek
[ 56.848854] usb 2-1.4: SerialNumber: 123456
[ 61.122590] usb 2-1.4: USB disconnect, device number 6
[ 61.346971] usb 2-1.4: new high-speed USB device number 7 using ehci-pci
[ 61.456085] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 61.456096] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 61.456100] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 61.456102] usb 2-1.4: Manufacturer: Realtek
[ 61.456105] usb 2-1.4: SerialNumber: 123456
[ 61.822188] r8169 0000:0e:00.0 enp14s0: Link is Up - 1Gbps/Full - flow control rx/tx
[ 61.822212] IPv6: ADDRCONF(NETDEV_CHANGE): enp14s0: link becomes ready
[ 64.493890] audit: type=1400 audit(1662485826.521:71): apparmor="DENIED" operation="capable" profile="/usr/lib/snapd/snap-confine" pid=1751 comm="snap-confine" capability=4 capname="fsetid"
[ 64.789125] audit: type=1400 audit(1662485826.817:72): apparmor="DENIED" operation="mkdir" profile="snap-update-ns.firefox" name="/usr/share/libreoffice/help/" pid=1771 comm="5" requested_mask="c" denied_mask="c" fsuid=0 ouid=0
[ 64.793535] audit: type=1400 audit(1662485826.821:73): apparmor="DENIED" operation="open" profile="snap-update-ns.firefox" name="/var/lib/" pid=1771 comm="5" requested_mask="r" denied_mask="r" fsuid=0 ouid=0
[ 67.395516] audit: type=1326 audit(1662485829.373:74): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=1751 comm="firefox" exe="/snap/firefox/1810/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fcd34f1173d code=0x50000
[ 114.638648] audit: type=1326 audit(1662485876.355:75): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=2097 comm="firefox" exe="/snap/firefox/1810/usr/lib/firefox/firefox" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f47dc42473d code=0x50000
[ 167.362200] usb 2-1.4: USB disconnect, device number 7
[ 167.583202] usb 2-1.4: new high-speed USB device number 8 using ehci-pci
[ 167.692249] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 167.692267] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 167.692274] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 167.692279] usb 2-1.4: Manufacturer: Realtek
[ 167.692283] usb 2-1.4: SerialNumber: 123456
[ 207.004333] audit: type=1107 audit(1662485968.735:76): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? 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.4" pid=1327 label="snap.snap-store.ubuntu-software" peer_pid=452 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 207.004355] audit: type=1420 audit(1662485968.735:77): subj_apparmor=unconfined
[ 207.007496] audit: type=1107 audit(1662485968.739:78): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? 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.4" pid=1327 label="snap.snap-store.ubuntu-software" peer_pid=452 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 207.007516] audit: type=1420 audit(1662485968.739:79): subj_apparmor=unconfined
[ 309.113824] audit: type=1326 audit(1662486070.844:80): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=3489 comm="snap-store" exe="/snap/snap-store/582/usr/bin/snap-store" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f1885adb73d code=0x50000
[ 438.976222] usb 2-1.4: USB disconnect, device number 8
[ 439.200765] usb 2-1.4: new high-speed USB device number 9 using ehci-pci
[ 439.309922] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 439.309939] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 439.309945] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 439.309950] usb 2-1.4: Manufacturer: Realtek
[ 439.309954] usb 2-1.4: SerialNumber: 123456
[ 641.982982] usb 2-1.4: USB disconnect, device number 9
[ 642.223288] usb 2-1.4: new high-speed USB device number 10 using ehci-pci
[ 642.333031] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 642.333051] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 642.333059] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 642.333066] usb 2-1.4: Manufacturer: Realtek
[ 642.333071] usb 2-1.4: SerialNumber: 123456
[ 643.518858] usb 2-1.4: USB disconnect, device number 10
[ 643.923209] usb 2-1.4: new high-speed USB device number 11 using ehci-pci
[ 644.223276] usb 2-1.4: device descriptor read/64, error -71
[ 644.440539] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 644.440552] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 644.440557] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 644.440560] usb 2-1.4: Manufacturer: Realtek
[ 644.440563] usb 2-1.4: SerialNumber: 123456
[ 730.302051] usb 2-1.4: USB disconnect, device number 11
[ 730.542462] usb 2-1.4: new high-speed USB device number 12 using ehci-pci
[ 730.656169] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 730.656188] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 730.656195] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 730.656200] usb 2-1.4: Manufacturer: Realtek
[ 730.656204] usb 2-1.4: SerialNumber: 123456
[ 801.754113] audit: type=1400 audit(1662486563.499:81): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/etc/fstab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 801.759707] audit: type=1400 audit(1662486563.503:82): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 801.929969] audit: type=1400 audit(1662486563.675:83): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 802.134878] audit: type=1107 audit(1662486563.879:84): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.165" pid=2097 label="snap.firefox.firefox" peer_pid=4523 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 802.134890] audit: type=1420 audit(1662486563.879:85): subj_apparmor=unconfined
[ 802.136317] audit: type=1107 audit(1662486563.879:86): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.165" pid=2097 label="snap.firefox.firefox" peer_pid=4523 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 802.136327] audit: type=1420 audit(1662486563.879:87): subj_apparmor=unconfined
[ 833.213373] usb 2-1.4: USB disconnect, device number 12
[ 833.444298] usb 2-1.4: new high-speed USB device number 13 using ehci-pci
[ 833.553449] usb 2-1.4: New USB device found, idVendor=0bda, idProduct=b812, bcdDevice= 2.10
[ 833.553460] usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 833.553463] usb 2-1.4: Product: USB3.0 802.11ac 1200M Adapter
[ 833.553466] usb 2-1.4: Manufacturer: Realtek
[ 833.553468] usb 2-1.4: SerialNumber: 123456
[ 891.509652] audit: type=1400 audit(1662486653.253:88): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 891.729462] audit: type=1107 audit(1662486653.473:89): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.170" pid=2097 label="snap.firefox.firefox" peer_pid=4593 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 891.729477] audit: type=1420 audit(1662486653.473:90): subj_apparmor=unconfined
[ 891.732131] audit: type=1107 audit(1662486653.477:91): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.170" pid=2097 label="snap.firefox.firefox" peer_pid=4593 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 891.732146] audit: type=1420 audit(1662486653.477:92): subj_apparmor=unconfined
[ 891.734967] audit: type=1107 audit(1662486653.481:93): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.170" pid=2097 label="snap.firefox.firefox" peer_pid=4593 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 891.734979] audit: type=1420 audit(1662486653.481:94): subj_apparmor=unconfined
[ 936.329134] audit: type=1400 audit(1662486698.074:95): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/etc/fstab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 936.348569] audit: type=1400 audit(1662486698.094:96): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 936.384324] audit: type=1400 audit(1662486698.130:97): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/etc/fstab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 936.388604] audit: type=1400 audit(1662486698.134:98): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 937.030297] audit: type=1326 audit(1662486698.778:99): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4722 comm="gdk-pixbuf-quer" exe="/snap/gimp/393/data-dir/gnome-platform/usr/lib/x86_64-linux-gnu/gdk-pixbuf-2.0/gdk-pixbuf-query-loaders" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fa1e0a2c73d code=0x50000
[ 939.153409] audit: type=1326 audit(1662486700.898:100): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7fdb200bc73d code=0x50000
[ 939.956169] audit: type=1326 audit(1662486701.702:101): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 947.798733] audit: type=1326 audit(1662486709.547:102): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4943 comm="script-fu" exe="/usr/lib/gimp/2.0/plug-ins/script-fu/script-fu" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f311874973d code=0x50000
[ 952.763714] audit: type=1326 audit(1662486714.511:103): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4947 comm="file-png" exe="/usr/lib/gimp/2.0/plug-ins/file-png/file-png" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f4a59a2c73d code=0x50000
[ 959.736229] audit: type=1400 audit(1662486721.483:104): apparmor="DENIED" operation="open" profile="snap.gimp.gimp" name="/etc/fstab" pid=4654 comm="gimp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 959.751197] audit: type=1400 audit(1662486721.499:105): apparmor="DENIED" operation="open" profile="snap.gimp.gimp" name="/run/mount/utab" pid=4654 comm="gimp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 959.851123] audit: type=1400 audit(1662486721.599:106): apparmor="DENIED" operation="open" profile="snap.gimp.gimp" name="/run/mount/utab" pid=4654 comm="gimp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 959.877852] audit: type=1400 audit(1662486721.627:107): apparmor="DENIED" operation="open" profile="snap.gimp.gimp" name="/run/mount/utab" pid=4654 comm="gimp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 973.725293] audit: type=1326 audit(1662486735.471:108): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4962 comm="file-jpeg" exe="/usr/lib/gimp/2.0/plug-ins/file-jpeg/file-jpeg" sig=0 arch=c000003e syscall=314 compat=0 ip=0x7f4d29f5173d code=0x50000
[ 977.299400] audit: type=1400 audit(1662486739.043:109): apparmor="DENIED" operation="open" profile="snap.gimp.gimp" name="/run/mount/utab" pid=4654 comm="gimp" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 979.687611] audit: type=1326 audit(1662486741.431:110): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 979.695257] audit: type=1326 audit(1662486741.439:111): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 979.701874] audit: type=1326 audit(1662486741.447:112): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 979.722098] audit: type=1326 audit(1662486741.467:113): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 980.037536] audit: type=1326 audit(1662486741.783:114): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 980.042337] audit: type=1326 audit(1662486741.787:115): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 980.050250] audit: type=1326 audit(1662486741.795:116): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 980.053041] audit: type=1326 audit(1662486741.799:117): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 980.057337] audit: type=1326 audit(1662486741.803:118): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 980.064823] audit: type=1326 audit(1662486741.811:119): auid=1000 uid=1000 gid=1000 ses=2 subj=? pid=4654 comm="gimp" exe="/snap/gimp/393/usr/bin/gimp-2.10" sig=0 arch=c000003e syscall=93 compat=0 ip=0x7fdb200b339b code=0x50000
[ 1002.727855] kauditd_printk_skb: 49 callbacks suppressed
[ 1002.727861] audit: type=1400 audit(1662486764.476:169): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 1002.985148] audit: type=1107 audit(1662486764.732:170): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.171" pid=2097 label="snap.firefox.firefox" peer_pid=5031 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1002.985162] audit: type=1420 audit(1662486764.732:171): subj_apparmor=unconfined
[ 1002.985167] audit: type=1107 audit(1662486764.732:172): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.171" pid=2097 label="snap.firefox.firefox" peer_pid=5031 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1002.985173] audit: type=1420 audit(1662486764.732:173): subj_apparmor=unconfined
[ 1002.985177] audit: type=1107 audit(1662486764.732:174): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.171" pid=2097 label="snap.firefox.firefox" peer_pid=5031 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1002.985183] audit: type=1420 audit(1662486764.732:175): subj_apparmor=unconfined
[ 1002.986208] audit: type=1107 audit(1662486764.732:176): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.171" pid=2097 label="snap.firefox.firefox" peer_pid=5031 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1002.986219] audit: type=1420 audit(1662486764.732:177): subj_apparmor=unconfined
[ 1049.588093] audit: type=1400 audit(1662486811.337:178): apparmor="DENIED" operation="open" profile="snap.firefox.firefox" name="/run/mount/utab" pid=2097 comm="firefox" requested_mask="r" denied_mask="r" fsuid=1000 ouid=0
[ 1049.825968] audit: type=1107 audit(1662486811.573:179): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.172" pid=2097 label="snap.firefox.firefox" peer_pid=5059 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1049.825980] audit: type=1420 audit(1662486811.573:180): subj_apparmor=unconfined
[ 1049.827059] audit: type=1107 audit(1662486811.577:181): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.172" pid=2097 label="snap.firefox.firefox" peer_pid=5059 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1049.827069] audit: type=1420 audit(1662486811.577:182): subj_apparmor=unconfined
[ 1049.827978] audit: type=1107 audit(1662486811.577:183): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.172" pid=2097 label="snap.firefox.firefox" peer_pid=5059 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1049.827988] audit: type=1420 audit(1662486811.577:184): subj_apparmor=unconfined
[ 1049.828763] audit: type=1107 audit(1662486811.577:185): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.172" pid=2097 label="snap.firefox.firefox" peer_pid=5059 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
[ 1049.828772] audit: type=1420 audit(1662486811.577:186): subj_apparmor=unconfined
[ 1049.831335] audit: type=1107 audit(1662486811.581:187): pid=411 uid=103 auid=4294967295 ses=4294967295 subj=? msg='apparmor="DENIED" operation="dbus_method_call" bus="system" path="/org/freedesktop/hostname1" interface="org.freedesktop.DBus.Properties" member="GetAll" mask="send" name=":1.172" pid=2097 label="snap.firefox.firefox" peer_pid=5059 peer_label="unconfined"
exe="/usr/bin/dbus-daemon" sauid=103 hostname=? addr=? terminal=?'
ubuntu@ubuntu-SVF1521A1EB:~$ lsmod
Module Size Used by
snd_hda_codec_hdmi 77824 1
intel_rapl_msr 20480 0
intel_rapl_common 40960 1 intel_rapl_msr
x86_pkg_temp_thermal 20480 0
snd_hda_codec_realtek 159744 1
intel_powerclamp 20480 0
snd_hda_codec_generic 102400 1 snd_hda_codec_realtek
ledtrig_audio 16384 1 snd_hda_codec_generic
uvcvideo 106496 0
videobuf2_vmalloc 20480 1 uvcvideo
videobuf2_memops 20480 1 videobuf2_vmalloc
videobuf2_v4l2 32768 1 uvcvideo
coretemp 24576 0
crct10dif_pclmul 16384 1
ghash_clmulni_intel 16384 0
videobuf2_common 77824 4 videobuf2_vmalloc,videobuf2_v4l2,uvcvideo,videobuf2_memops
mei_hdcp 24576 0
cryptd 24576 1 ghash_clmulni_intel
rapl 20480 0
intel_cstate 20480 0
videodev 258048 3 videobuf2_v4l2,uvcvideo,videobuf2_common
input_leds 16384 0
at24 24576 0
mc 65536 4 videodev,videobuf2_v4l2,uvcvideo,videobuf2_common
joydev 32768 0
snd_hda_intel 53248 3
snd_intel_dspcfg 28672 1 snd_hda_intel
snd_intel_sdw_acpi 20480 1 snd_intel_dspcfg
snd_hda_codec 163840 4 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec_realtek
i915 3104768 25
snd_hda_core 110592 5 snd_hda_codec_generic,snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek
snd_hwdep 16384 1 snd_hda_codec
snd_pcm 143360 4 snd_hda_codec_hdmi,snd_hda_intel,snd_hda_codec,snd_hda_core
ttm 86016 1 i915
serio_raw 20480 0
snd_seq_midi 20480 0
snd_seq_midi_event 16384 1 snd_seq_midi
drm_kms_helper 311296 1 i915
snd_rawmidi 49152 1 snd_seq_midi
cec 61440 2 drm_kms_helper,i915
rc_core 65536 1 cec
snd_seq 77824 2 snd_seq_midi,snd_seq_midi_event
snd_seq_device 16384 3 snd_seq,snd_seq_midi,snd_rawmidi
i2c_algo_bit 16384 1 i915
fb_sys_fops 16384 1 drm_kms_helper
snd_timer 40960 2 snd_seq,snd_pcm
syscopyarea 16384 1 drm_kms_helper
snd 106496 17 snd_hda_codec_generic,snd_seq,snd_seq_device,snd_hda_codec_hdmi,snd_hwdep,snd_hda_intel,snd_hda_codec,snd_hda_codec_realtek,snd_timer,snd_pcm,snd_rawmidi
sysfillrect 20480 1 drm_kms_helper
soundcore 16384 1 snd
sysimgblt 16384 1 drm_kms_helper
mei_me 40960 1
mei 135168 3 mei_hdcp,mei_me
sony_laptop 65536 0
mac_hid 16384 0
sch_fq_codel 20480 2
ipmi_devintf 20480 0
ipmi_msghandler 122880 1 ipmi_devintf
msr 16384 0
parport_pc 49152 0
ppdev 24576 0
lp 28672 0
parport 69632 3 parport_pc,lp,ppdev
ramoops 32768 0
reed_solomon 28672 1 ramoops
pstore_blk 16384 0
pstore_zone 32768 1 pstore_blk
drm 622592 12 drm_kms_helper,i915,ttm
mtd 77824 0
efi_pstore 16384 0
ip_tables 32768 0
x_tables 53248 1 ip_tables
autofs4 49152 2
hid_generic 16384 0
usbhid 65536 0
rtsx_pci_sdmmc 32768 0
psmouse 176128 0
hid 151552 2 usbhid,hid_generic
crc32_pclmul 16384 0
i2c_i801 36864 0
i2c_smbus 20480 1 i2c_i801
ahci 45056 1
r8169 102400 0
libahci 45056 1 ahci
lpc_ich 28672 0
rtsx_pci 106496 1 rtsx_pci_sdmmc
realtek 32768 1
xhci_pci 24576 0
xhci_pci_renesas 20480 1 xhci_pci
video 61440 2 i915,sony_laptop
ubuntu@ubuntu-SVF1521A1EB:~$ iwconfig
lo no wireless extensions.
enp14s0 no wireless extensions.
ubuntu@ubuntu-SVF1521A1EB:~$ ifconfig
Der Befehl 'ifconfig' wurde nicht gefunden, kann aber installiert werden mit:
sudo apt install net-tools
ubuntu@ubuntu-SVF1521A1EB:~$
|
|