1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486 | Dez 18 19:37:11 user-VirtualBox kernel: Linux version 6.8.0-88-generic (buildd@lcy02-amd64-004) (x86_64-linux-gnu-gcc-13 (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0, GNU ld (GNU Binutils for Ubuntu) 2.42) #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 (Ubuntu 6.8.0-88.89-generic 6.8.12)
Dez 18 19:37:11 user-VirtualBox kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-6.8.0-88-generic root=UUID=d4fda175-7bc6-4fcf-820d-fbf014d77909 ro quiet splash
Dez 18 19:37:11 user-VirtualBox kernel: KERNEL supported cpus:
Dez 18 19:37:11 user-VirtualBox kernel: Intel GenuineIntel
Dez 18 19:37:11 user-VirtualBox kernel: AMD AuthenticAMD
Dez 18 19:37:11 user-VirtualBox kernel: Hygon HygonGenuine
Dez 18 19:37:11 user-VirtualBox kernel: Centaur CentaurHauls
Dez 18 19:37:11 user-VirtualBox kernel: zhaoxin Shanghai
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-provided physical RAM map:
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000dffeffff] usable
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x00000000dfff0000-0x00000000dfffffff] ACPI data
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Dez 18 19:37:11 user-VirtualBox kernel: BIOS-e820: [mem 0x0000000100000000-0x0000000213ffffff] usable
Dez 18 19:37:11 user-VirtualBox kernel: NX (Execute Disable) protection: active
Dez 18 19:37:11 user-VirtualBox kernel: APIC: Static calls initialized
Dez 18 19:37:11 user-VirtualBox kernel: SMBIOS 2.5 present.
Dez 18 19:37:11 user-VirtualBox kernel: DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
Dez 18 19:37:11 user-VirtualBox kernel: Hypervisor detected: KVM
Dez 18 19:37:11 user-VirtualBox kernel: kvm-clock: Using msrs 4b564d01 and 4b564d00
Dez 18 19:37:11 user-VirtualBox kernel: kvm-clock: using sched offset of 5563409749 cycles
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
Dez 18 19:37:11 user-VirtualBox kernel: tsc: Detected 3591.666 MHz processor
Dez 18 19:37:11 user-VirtualBox kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Dez 18 19:37:11 user-VirtualBox kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Dez 18 19:37:11 user-VirtualBox kernel: last_pfn = 0x214000 max_arch_pfn = 0x400000000
Dez 18 19:37:11 user-VirtualBox kernel: MTRRs disabled by BIOS
Dez 18 19:37:11 user-VirtualBox kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
Dez 18 19:37:11 user-VirtualBox kernel: last_pfn = 0xdfff0 max_arch_pfn = 0x400000000
Dez 18 19:37:11 user-VirtualBox kernel: found SMP MP-table at [mem 0x0009fff0-0x0009ffff]
Dez 18 19:37:11 user-VirtualBox kernel: RAMDISK: [mem 0x2d463000-0x32a28fff]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Early table checksum verification disabled
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: XSDT 0x00000000DFFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: FACP 0x00000000DFFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: DSDT 0x00000000DFFF0610 002353 (v02 VBOX VBOXBIOS 00000002 INTL 20200925)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: FACS 0x00000000DFFF0200 000040
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: FACS 0x00000000DFFF0200 000040
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: APIC 0x00000000DFFF0240 00005C (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: SSDT 0x00000000DFFF02A0 00036C (v01 VBOX VBOXCPUT 00000002 INTL 20200925)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Reserving FACP table memory at [mem 0xdfff00f0-0xdfff01e3]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Reserving DSDT table memory at [mem 0xdfff0610-0xdfff2962]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Reserving FACS table memory at [mem 0xdfff0200-0xdfff023f]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Reserving FACS table memory at [mem 0xdfff0200-0xdfff023f]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Reserving APIC table memory at [mem 0xdfff0240-0xdfff029b]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Reserving SSDT table memory at [mem 0xdfff02a0-0xdfff060b]
Dez 18 19:37:11 user-VirtualBox kernel: No NUMA configuration found
Dez 18 19:37:11 user-VirtualBox kernel: Faking a node at [mem 0x0000000000000000-0x0000000213ffffff]
Dez 18 19:37:11 user-VirtualBox kernel: NODE_DATA(0) allocated [mem 0x213fd4000-0x213ffefff]
Dez 18 19:37:11 user-VirtualBox kernel: Zone ranges:
Dez 18 19:37:11 user-VirtualBox kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff]
Dez 18 19:37:11 user-VirtualBox kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Dez 18 19:37:11 user-VirtualBox kernel: Normal [mem 0x0000000100000000-0x0000000213ffffff]
Dez 18 19:37:11 user-VirtualBox kernel: Device empty
Dez 18 19:37:11 user-VirtualBox kernel: Movable zone start for each node
Dez 18 19:37:11 user-VirtualBox kernel: Early memory node ranges
Dez 18 19:37:11 user-VirtualBox kernel: node 0: [mem 0x0000000000001000-0x000000000009efff]
Dez 18 19:37:11 user-VirtualBox kernel: node 0: [mem 0x0000000000100000-0x00000000dffeffff]
Dez 18 19:37:11 user-VirtualBox kernel: node 0: [mem 0x0000000100000000-0x0000000213ffffff]
Dez 18 19:37:11 user-VirtualBox kernel: Initmem setup node 0 [mem 0x0000000000001000-0x0000000213ffffff]
Dez 18 19:37:11 user-VirtualBox kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Dez 18 19:37:11 user-VirtualBox kernel: On node 0, zone DMA: 97 pages in unavailable ranges
Dez 18 19:37:11 user-VirtualBox kernel: On node 0, zone Normal: 16 pages in unavailable ranges
Dez 18 19:37:11 user-VirtualBox kernel: On node 0, zone Normal: 16384 pages in unavailable ranges
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PM-Timer IO Port: 0x4008
Dez 18 19:37:11 user-VirtualBox kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Dez 18 19:37:11 user-VirtualBox kernel: smpboot: Allowing 2 CPUs, 0 hotplug CPUs
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xdfff0000-0xdfffffff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xe0000000-0xfebfffff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xfee01000-0xfffbffff]
Dez 18 19:37:11 user-VirtualBox kernel: PM: hibernation: Registered nosave memory: [mem 0xfffc0000-0xffffffff]
Dez 18 19:37:11 user-VirtualBox kernel: [mem 0xe0000000-0xfebfffff] available for PCI devices
Dez 18 19:37:11 user-VirtualBox kernel: Booting paravirtualized kernel on KVM
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
Dez 18 19:37:11 user-VirtualBox kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:2 nr_cpu_ids:2 nr_node_ids:1
Dez 18 19:37:11 user-VirtualBox kernel: percpu: Embedded 86 pages/cpu s229376 r8192 d114688 u1048576
Dez 18 19:37:11 user-VirtualBox kernel: pcpu-alloc: s229376 r8192 d114688 u1048576 alloc=1*2097152
Dez 18 19:37:11 user-VirtualBox kernel: pcpu-alloc: [0] 0 1
Dez 18 19:37:11 user-VirtualBox kernel: kvm-guest: PV spinlocks enabled
Dez 18 19:37:11 user-VirtualBox kernel: PV qspinlock hash table entries: 256 (order: 0, 4096 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.8.0-88-generic root=UUID=d4fda175-7bc6-4fcf-820d-fbf014d77909 ro quiet splash
Dez 18 19:37:11 user-VirtualBox kernel: Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-6.8.0-88-generic", will be passed to user space.
Dez 18 19:37:11 user-VirtualBox kernel: random: crng init done
Dez 18 19:37:11 user-VirtualBox kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: Fallback order for Node 0: 0
Dez 18 19:37:11 user-VirtualBox kernel: Built 1 zonelists, mobility grouping on. Total pages: 2015728
Dez 18 19:37:11 user-VirtualBox kernel: Policy zone: Normal
Dez 18 19:37:11 user-VirtualBox kernel: mem auto-init: stack:all(zero), heap alloc:on, heap free:off
Dez 18 19:37:11 user-VirtualBox kernel: software IO TLB: area num 2.
Dez 18 19:37:11 user-VirtualBox kernel: Memory: 7840956K/8191544K available (22528K kernel code, 4441K rwdata, 14384K rodata, 4912K init, 4796K bss, 350328K reserved, 0K cma-reserved)
Dez 18 19:37:11 user-VirtualBox kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Dez 18 19:37:11 user-VirtualBox kernel: Kernel/User page tables isolation: enabled
Dez 18 19:37:11 user-VirtualBox kernel: ftrace: allocating 58192 entries in 228 pages
Dez 18 19:37:11 user-VirtualBox kernel: ftrace: allocated 228 pages with 4 groups
Dez 18 19:37:11 user-VirtualBox kernel: Dynamic Preempt: voluntary
Dez 18 19:37:11 user-VirtualBox kernel: rcu: Preemptible hierarchical RCU implementation.
Dez 18 19:37:11 user-VirtualBox kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=2.
Dez 18 19:37:11 user-VirtualBox kernel: Trampoline variant of Tasks RCU enabled.
Dez 18 19:37:11 user-VirtualBox kernel: Rude variant of Tasks RCU enabled.
Dez 18 19:37:11 user-VirtualBox kernel: Tracing variant of Tasks RCU enabled.
Dez 18 19:37:11 user-VirtualBox kernel: rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
Dez 18 19:37:11 user-VirtualBox kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
Dez 18 19:37:11 user-VirtualBox kernel: RCU Tasks: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
Dez 18 19:37:11 user-VirtualBox kernel: RCU Tasks Rude: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
Dez 18 19:37:11 user-VirtualBox kernel: RCU Tasks Trace: Setting shift to 1 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=2.
Dez 18 19:37:11 user-VirtualBox kernel: NR_IRQS: 524544, nr_irqs: 440, preallocated irqs: 16
Dez 18 19:37:11 user-VirtualBox kernel: rcu: srcu_init: Setting srcu_struct sizes based on contention.
Dez 18 19:37:11 user-VirtualBox kernel: Console: colour VGA+ 80x25
Dez 18 19:37:11 user-VirtualBox kernel: printk: legacy console [tty0] enabled
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Core revision 20230628
Dez 18 19:37:11 user-VirtualBox kernel: APIC: Switch to symmetric I/O mode setup
Dez 18 19:37:11 user-VirtualBox kernel: x2apic enabled
Dez 18 19:37:11 user-VirtualBox kernel: APIC: Switched APIC routing to: physical x2apic
Dez 18 19:37:11 user-VirtualBox kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x33c592f671b, max_idle_ns: 440795318662 ns
Dez 18 19:37:11 user-VirtualBox kernel: Calibrating delay loop (skipped) preset value.. 7183.33 BogoMIPS (lpj=3591666)
Dez 18 19:37:11 user-VirtualBox kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 1024
Dez 18 19:37:11 user-VirtualBox kernel: Last level dTLB entries: 4KB 1024, 2MB 1024, 4MB 1024, 1GB 4
Dez 18 19:37:11 user-VirtualBox kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Dez 18 19:37:11 user-VirtualBox kernel: Spectre V2 : Mitigation: Retpolines
Dez 18 19:37:11 user-VirtualBox kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Dez 18 19:37:11 user-VirtualBox kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Dez 18 19:37:11 user-VirtualBox kernel: Speculative Store Bypass: Vulnerable
Dez 18 19:37:11 user-VirtualBox kernel: MDS: Mitigation: Clear CPU buffers
Dez 18 19:37:11 user-VirtualBox kernel: MMIO Stale Data: Unknown: No mitigations
Dez 18 19:37:11 user-VirtualBox kernel: SRBDS: Unknown: Dependent on hypervisor status
Dez 18 19:37:11 user-VirtualBox kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Dez 18 19:37:11 user-VirtualBox kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Dez 18 19:37:11 user-VirtualBox kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Dez 18 19:37:11 user-VirtualBox kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Dez 18 19:37:11 user-VirtualBox kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Dez 18 19:37:11 user-VirtualBox kernel: Freeing SMP alternatives memory: 48K
Dez 18 19:37:11 user-VirtualBox kernel: pid_max: default: 32768 minimum: 301
Dez 18 19:37:11 user-VirtualBox kernel: LSM: initializing lsm=lockdown,capability,landlock,yama,apparmor,integrity
Dez 18 19:37:11 user-VirtualBox kernel: landlock: Up and running.
Dez 18 19:37:11 user-VirtualBox kernel: Yama: becoming mindful.
Dez 18 19:37:11 user-VirtualBox kernel: AppArmor: AppArmor initialized
Dez 18 19:37:11 user-VirtualBox kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: APIC calibration not consistent with PM-Timer: 114ms instead of 100ms
Dez 18 19:37:11 user-VirtualBox kernel: APIC delta adjusted to PM-Timer: 6358655 (7306927)
Dez 18 19:37:11 user-VirtualBox kernel: smpboot: CPU0: Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz (family: 0x6, model: 0x3c, stepping: 0x3)
Dez 18 19:37:11 user-VirtualBox kernel: Performance Events: unsupported p6 CPU model 60 no PMU driver, software events only.
Dez 18 19:37:11 user-VirtualBox kernel: signal: max sigframe size: 1776
Dez 18 19:37:11 user-VirtualBox kernel: rcu: Hierarchical SRCU implementation.
Dez 18 19:37:11 user-VirtualBox kernel: rcu: Max phase no-delay instances is 400.
Dez 18 19:37:11 user-VirtualBox kernel: NMI watchdog: Perf NMI watchdog permanently disabled
Dez 18 19:37:11 user-VirtualBox kernel: smp: Bringing up secondary CPUs ...
Dez 18 19:37:11 user-VirtualBox kernel: smpboot: x86: Booting SMP configuration:
Dez 18 19:37:11 user-VirtualBox kernel: .... node #0, CPUs: #1
Dez 18 19:37:11 user-VirtualBox kernel: smp: Brought up 1 node, 2 CPUs
Dez 18 19:37:11 user-VirtualBox kernel: smpboot: Max logical packages: 1
Dez 18 19:37:11 user-VirtualBox kernel: smpboot: Total of 2 processors activated (14366.66 BogoMIPS)
Dez 18 19:37:11 user-VirtualBox kernel: devtmpfs: initialized
Dez 18 19:37:11 user-VirtualBox kernel: x86/mm: Memory block size: 128MB
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
Dez 18 19:37:11 user-VirtualBox kernel: futex hash table entries: 512 (order: 3, 32768 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: pinctrl core: initialized pinctrl subsystem
Dez 18 19:37:11 user-VirtualBox kernel: PM: RTC time: 18:36:59, date: 2025-12-18
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Dez 18 19:37:11 user-VirtualBox kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Dez 18 19:37:11 user-VirtualBox kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Dez 18 19:37:11 user-VirtualBox kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Dez 18 19:37:11 user-VirtualBox kernel: audit: initializing netlink subsys (disabled)
Dez 18 19:37:11 user-VirtualBox kernel: audit: type=2000 audit(1766083027.151:1): state=initialized audit_enabled=0 res=1
Dez 18 19:37:11 user-VirtualBox kernel: thermal_sys: Registered thermal governor 'fair_share'
Dez 18 19:37:11 user-VirtualBox kernel: thermal_sys: Registered thermal governor 'bang_bang'
Dez 18 19:37:11 user-VirtualBox kernel: thermal_sys: Registered thermal governor 'step_wise'
Dez 18 19:37:11 user-VirtualBox kernel: thermal_sys: Registered thermal governor 'user_space'
Dez 18 19:37:11 user-VirtualBox kernel: thermal_sys: Registered thermal governor 'power_allocator'
Dez 18 19:37:11 user-VirtualBox kernel: cpuidle: using governor ladder
Dez 18 19:37:11 user-VirtualBox kernel: cpuidle: using governor menu
Dez 18 19:37:11 user-VirtualBox kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Dez 18 19:37:11 user-VirtualBox kernel: PCI: Using configuration type 1 for base access
Dez 18 19:37:11 user-VirtualBox kernel: kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
Dez 18 19:37:11 user-VirtualBox kernel: HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
Dez 18 19:37:11 user-VirtualBox kernel: HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Added _OSI(Module Device)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Added _OSI(Processor Device)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Added _OSI(Processor Aggregator Device)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: _OSC evaluation for CPUs failed, trying _PDC
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Interpreter enabled
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PM: (supports S0 S5)
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Using IOAPIC for interrupt routing
Dez 18 19:37:11 user-VirtualBox kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Dez 18 19:37:11 user-VirtualBox kernel: PCI: Using E820 reservations for host bridge windows
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: Enabled 2 GPEs in block 00 to 07
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Dez 18 19:37:11 user-VirtualBox kernel: acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI EDR HPX-Type3]
Dez 18 19:37:11 user-VirtualBox kernel: acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
Dez 18 19:37:11 user-VirtualBox kernel: acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended configuration space under this bridge
Dez 18 19:37:11 user-VirtualBox kernel: PCI host bridge to bus 0000:00
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfdffffff window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:00.0: [8086:1237] type 00 class 0x060000 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.0: [8086:7000] type 00 class 0x060100 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.1: BAR 4 [io 0xd000-0xd00f]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.1: BAR 0 [io 0x01f0-0x01f7]: legacy IDE quirk
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.1: BAR 1 [io 0x03f6]: legacy IDE quirk
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.1: BAR 2 [io 0x0170-0x0177]: legacy IDE quirk
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:01.1: BAR 3 [io 0x0376]: legacy IDE quirk
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: [15ad:0405] type 00 class 0x030000 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: BAR 0 [io 0xd010-0xd01f]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: BAR 1 [mem 0xe0000000-0xe0ffffff pref]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: BAR 2 [mem 0xf0000000-0xf01fffff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:03.0: [8086:100e] type 00 class 0x020000 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:03.0: BAR 0 [mem 0xf0200000-0xf021ffff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:03.0: BAR 2 [io 0xd020-0xd027]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:04.0: BAR 0 [io 0xd040-0xd05f]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:04.0: BAR 1 [mem 0xf0400000-0xf07fffff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:04.0: BAR 2 [mem 0xf0800000-0xf0803fff pref]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:05.0: [8086:2415] type 00 class 0x040100 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:05.0: BAR 0 [io 0xd100-0xd1ff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:05.0: BAR 1 [io 0xd200-0xd23f]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:06.0: BAR 0 [mem 0xf0804000-0xf0804fff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:07.0: [8086:7113] type 00 class 0x068000 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601 conventional PCI endpoint
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: BAR 0 [io 0xd240-0xd247]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: BAR 1 [io 0xd248-0xd24b]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: BAR 2 [io 0xd250-0xd257]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: BAR 3 [io 0xd258-0xd25b]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: BAR 4 [io 0xd260-0xd26f]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:0d.0: BAR 5 [mem 0xf0806000-0xf0807fff]
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 9
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 11
Dez 18 19:37:11 user-VirtualBox kernel: iommu: Default domain type: Translated
Dez 18 19:37:11 user-VirtualBox kernel: iommu: DMA domain TLB invalidation policy: lazy mode
Dez 18 19:37:11 user-VirtualBox kernel: SCSI subsystem initialized
Dez 18 19:37:11 user-VirtualBox kernel: libata version 3.00 loaded.
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: bus type USB registered
Dez 18 19:37:11 user-VirtualBox kernel: usbcore: registered new interface driver usbfs
Dez 18 19:37:11 user-VirtualBox kernel: usbcore: registered new interface driver hub
Dez 18 19:37:11 user-VirtualBox kernel: usbcore: registered new device driver usb
Dez 18 19:37:11 user-VirtualBox kernel: pps_core: LinuxPPS API ver. 1 registered
Dez 18 19:37:11 user-VirtualBox kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Dez 18 19:37:11 user-VirtualBox kernel: PTP clock support registered
Dez 18 19:37:11 user-VirtualBox kernel: EDAC MC: Ver: 3.0.0
Dez 18 19:37:11 user-VirtualBox kernel: NetLabel: Initializing
Dez 18 19:37:11 user-VirtualBox kernel: NetLabel: domain hash size = 128
Dez 18 19:37:11 user-VirtualBox kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
Dez 18 19:37:11 user-VirtualBox kernel: NetLabel: unlabeled traffic allowed by default
Dez 18 19:37:11 user-VirtualBox kernel: mctp: management component transport protocol core
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_MCTP protocol family
Dez 18 19:37:11 user-VirtualBox kernel: PCI: Using ACPI for IRQ routing
Dez 18 19:37:11 user-VirtualBox kernel: PCI: pci_cache_line_size set to 64 bytes
Dez 18 19:37:11 user-VirtualBox kernel: e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Dez 18 19:37:11 user-VirtualBox kernel: e820: reserve RAM buffer [mem 0xdfff0000-0xdfffffff]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: vgaarb: bridge control possible
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Dez 18 19:37:11 user-VirtualBox kernel: vgaarb: loaded
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: Switched to clocksource kvm-clock
Dez 18 19:37:11 user-VirtualBox kernel: VFS: Disk quotas dquot_6.6.0
Dez 18 19:37:11 user-VirtualBox kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Dez 18 19:37:11 user-VirtualBox kernel: AppArmor: AppArmor Filesystem Enabled
Dez 18 19:37:11 user-VirtualBox kernel: pnp: PnP ACPI init
Dez 18 19:37:11 user-VirtualBox kernel: pnp: PnP ACPI: found 2 devices
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_INET protocol family
Dez 18 19:37:11 user-VirtualBox kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: TCP: Hash tables configured (established 65536 bind 65536)
Dez 18 19:37:11 user-VirtualBox kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_XDP protocol family
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Dez 18 19:37:11 user-VirtualBox kernel: pci_bus 0000:00: resource 7 [mem 0xe0000000-0xfdffffff window]
Dez 18 19:37:11 user-VirtualBox kernel: pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Dez 18 19:37:11 user-VirtualBox kernel: PCI: CLS 0 bytes, default 64
Dez 18 19:37:11 user-VirtualBox kernel: Trying to unpack rootfs image as initramfs...
Dez 18 19:37:11 user-VirtualBox kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Dez 18 19:37:11 user-VirtualBox kernel: software IO TLB: mapped [mem 0x00000000dbff0000-0x00000000dfff0000] (64MB)
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x33c592f671b, max_idle_ns: 440795318662 ns
Dez 18 19:37:11 user-VirtualBox kernel: clocksource: Switched to clocksource tsc
Dez 18 19:37:11 user-VirtualBox kernel: platform rtc_cmos: registered platform RTC device (no PNP device found)
Dez 18 19:37:11 user-VirtualBox kernel: Initialise system trusted keyrings
Dez 18 19:37:11 user-VirtualBox kernel: Key type blacklist registered
Dez 18 19:37:11 user-VirtualBox kernel: workingset: timestamp_bits=36 max_order=21 bucket_order=0
Dez 18 19:37:11 user-VirtualBox kernel: zbud: loaded
Dez 18 19:37:11 user-VirtualBox kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Dez 18 19:37:11 user-VirtualBox kernel: fuse: init (API version 7.39)
Dez 18 19:37:11 user-VirtualBox kernel: integrity: Platform Keyring initialized
Dez 18 19:37:11 user-VirtualBox kernel: integrity: Machine keyring initialized
Dez 18 19:37:11 user-VirtualBox kernel: Key type asymmetric registered
Dez 18 19:37:11 user-VirtualBox kernel: Asymmetric key parser 'x509' registered
Dez 18 19:37:11 user-VirtualBox kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Dez 18 19:37:11 user-VirtualBox kernel: io scheduler mq-deadline registered
Dez 18 19:37:11 user-VirtualBox kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: AC: AC Adapter [AC] (on-line)
Dez 18 19:37:11 user-VirtualBox kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: button: Power Button [PWRF]
Dez 18 19:37:11 user-VirtualBox kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: button: Sleep Button [SLPF]
Dez 18 19:37:11 user-VirtualBox kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Dez 18 19:37:11 user-VirtualBox kernel: Linux agpgart interface v0.103
Dez 18 19:37:11 user-VirtualBox kernel: loop: module loaded
Dez 18 19:37:11 user-VirtualBox kernel: ata_piix 0000:00:01.1: version 2.13
Dez 18 19:37:11 user-VirtualBox kernel: scsi host0: ata_piix
Dez 18 19:37:11 user-VirtualBox kernel: scsi host1: ata_piix
Dez 18 19:37:11 user-VirtualBox kernel: ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14 lpm-pol 0
Dez 18 19:37:11 user-VirtualBox kernel: ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15 lpm-pol 0
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: bus type drm_connector registered
Dez 18 19:37:11 user-VirtualBox kernel: tun: Universal TUN/TAP device driver, 1.6
Dez 18 19:37:11 user-VirtualBox kernel: PPP generic driver version 2.4.2
Dez 18 19:37:11 user-VirtualBox kernel: ohci-pci 0000:00:06.0: OHCI PCI host controller
Dez 18 19:37:11 user-VirtualBox kernel: ohci-pci 0000:00:06.0: new USB bus registered, assigned bus number 1
Dez 18 19:37:11 user-VirtualBox kernel: ohci-pci 0000:00:06.0: irq 22, io mem 0xf0804000
Dez 18 19:37:11 user-VirtualBox kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.08
Dez 18 19:37:11 user-VirtualBox kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Dez 18 19:37:11 user-VirtualBox kernel: usb usb1: Product: OHCI PCI host controller
Dez 18 19:37:11 user-VirtualBox kernel: usb usb1: Manufacturer: Linux 6.8.0-88-generic ohci_hcd
Dez 18 19:37:11 user-VirtualBox kernel: usb usb1: SerialNumber: 0000:00:06.0
Dez 18 19:37:11 user-VirtualBox kernel: hub 1-0:1.0: USB hub found
Dez 18 19:37:11 user-VirtualBox kernel: hub 1-0:1.0: 12 ports detected
Dez 18 19:37:11 user-VirtualBox kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
Dez 18 19:37:11 user-VirtualBox kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Dez 18 19:37:11 user-VirtualBox kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Dez 18 19:37:11 user-VirtualBox kernel: mousedev: PS/2 mouse device common for all mice
Dez 18 19:37:11 user-VirtualBox kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Dez 18 19:37:11 user-VirtualBox kernel: rtc_cmos rtc_cmos: registered as rtc0
Dez 18 19:37:11 user-VirtualBox kernel: rtc_cmos rtc_cmos: setting system clock to 2025-12-18T18:36:59 UTC (1766083019)
Dez 18 19:37:11 user-VirtualBox kernel: rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
Dez 18 19:37:11 user-VirtualBox kernel: i2c_dev: i2c /dev entries driver
Dez 18 19:37:11 user-VirtualBox kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Dez 18 19:37:11 user-VirtualBox kernel: device-mapper: uevent: version 1.0.3
Dez 18 19:37:11 user-VirtualBox kernel: device-mapper: ioctl: 4.48.0-ioctl (2023-03-01) initialised: dm-devel@redhat.com
Dez 18 19:37:11 user-VirtualBox kernel: intel_pstate: CPU model not supported
Dez 18 19:37:11 user-VirtualBox kernel: ledtrig-cpu: registered to indicate activity on CPUs
Dez 18 19:37:11 user-VirtualBox kernel: drop_monitor: Initializing network drop monitor service
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_INET6 protocol family
Dez 18 19:37:11 user-VirtualBox kernel: Freeing initrd memory: 87832K
Dez 18 19:37:11 user-VirtualBox kernel: Segment Routing with IPv6
Dez 18 19:37:11 user-VirtualBox kernel: In-situ OAM (IOAM) with IPv6
Dez 18 19:37:11 user-VirtualBox kernel: NET: Registered PF_PACKET protocol family
Dez 18 19:37:11 user-VirtualBox kernel: Key type dns_resolver registered
Dez 18 19:37:11 user-VirtualBox kernel: IPI shorthand broadcast: enabled
Dez 18 19:37:11 user-VirtualBox kernel: sched_clock: Marking stable (404162354, 7400245)->(432968121, -21405522)
Dez 18 19:37:11 user-VirtualBox kernel: registered taskstats version 1
Dez 18 19:37:11 user-VirtualBox kernel: Loading compiled-in X.509 certificates
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 3c10d2cce41e4e020037eb894f94af5dd81a8c9c'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing 2025 Kmod: d541cef61dc7e793b7eb7e899970a2eef0b5dc8c'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
Dez 18 19:37:11 user-VirtualBox kernel: blacklist: Loading compiled-in revocation X.509 certificates
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
Dez 18 19:37:11 user-VirtualBox kernel: Key type .fscrypt registered
Dez 18 19:37:11 user-VirtualBox kernel: Key type fscrypt-provisioning registered
Dez 18 19:37:11 user-VirtualBox kernel: cryptd: max_cpu_qlen set to 1000
Dez 18 19:37:11 user-VirtualBox kernel: ata2.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
Dez 18 19:37:11 user-VirtualBox kernel: scsi 1:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
Dez 18 19:37:11 user-VirtualBox kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 32x/32x xa/form2 tray
Dez 18 19:37:11 user-VirtualBox kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Dez 18 19:37:11 user-VirtualBox kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
Dez 18 19:37:11 user-VirtualBox kernel: sr 1:0:0:0: Attached scsi generic sg0 type 5
Dez 18 19:37:11 user-VirtualBox kernel: AVX2 version of gcm_enc/dec engaged.
Dez 18 19:37:11 user-VirtualBox kernel: AES CTR mode by8 optimization enabled
Dez 18 19:37:11 user-VirtualBox kernel: Key type encrypted registered
Dez 18 19:37:11 user-VirtualBox kernel: AppArmor: AppArmor sha256 policy hashing enabled
Dez 18 19:37:11 user-VirtualBox kernel: ima: No TPM chip found, activating TPM-bypass!
Dez 18 19:37:11 user-VirtualBox kernel: Loading compiled-in module X.509 certificates
Dez 18 19:37:11 user-VirtualBox kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 3c10d2cce41e4e020037eb894f94af5dd81a8c9c'
Dez 18 19:37:11 user-VirtualBox kernel: ima: Allocated hash algorithm: sha256
Dez 18 19:37:11 user-VirtualBox kernel: ima: No architecture policies found
Dez 18 19:37:11 user-VirtualBox kernel: evm: Initialising EVM extended attributes:
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.selinux
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.SMACK64
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.SMACK64EXEC
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.SMACK64TRANSMUTE
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.SMACK64MMAP
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.apparmor
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.ima
Dez 18 19:37:11 user-VirtualBox kernel: evm: security.capability
Dez 18 19:37:11 user-VirtualBox kernel: evm: HMAC attrs: 0x1
Dez 18 19:37:11 user-VirtualBox kernel: PM: Magic number: 5:880:645
Dez 18 19:37:11 user-VirtualBox kernel: RAS: Correctable Errors collector initialized.
Dez 18 19:37:11 user-VirtualBox kernel: clk: Disabling unused clocks
Dez 18 19:37:11 user-VirtualBox kernel: Freeing unused decrypted memory: 2028K
Dez 18 19:37:11 user-VirtualBox kernel: Freeing unused kernel image (initmem) memory: 4912K
Dez 18 19:37:11 user-VirtualBox kernel: Write protecting the kernel read-only data: 38912k
Dez 18 19:37:11 user-VirtualBox kernel: Freeing unused kernel image (rodata/data gap) memory: 2000K
Dez 18 19:37:11 user-VirtualBox kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Dez 18 19:37:11 user-VirtualBox kernel: x86/mm: Checking user space page tables
Dez 18 19:37:11 user-VirtualBox kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Dez 18 19:37:11 user-VirtualBox kernel: Run /init as init process
Dez 18 19:37:11 user-VirtualBox kernel: with arguments:
Dez 18 19:37:11 user-VirtualBox kernel: /init
Dez 18 19:37:11 user-VirtualBox kernel: splash
Dez 18 19:37:11 user-VirtualBox kernel: with environment:
Dez 18 19:37:11 user-VirtualBox kernel: HOME=/
Dez 18 19:37:11 user-VirtualBox kernel: TERM=linux
Dez 18 19:37:11 user-VirtualBox kernel: BOOT_IMAGE=/boot/vmlinuz-6.8.0-88-generic
Dez 18 19:37:11 user-VirtualBox kernel: usb 1-1: new full-speed USB device number 2 using ohci-pci
Dez 18 19:37:11 user-VirtualBox kernel: ahci 0000:00:0d.0: version 3.0
Dez 18 19:37:11 user-VirtualBox kernel: e1000: Intel(R) PRO/1000 Network Driver
Dez 18 19:37:11 user-VirtualBox kernel: e1000: Copyright (c) 1999-2006 Intel Corporation.
Dez 18 19:37:11 user-VirtualBox kernel: ahci 0000:00:0d.0: SSS flag set, parallel bus scan disabled
Dez 18 19:37:11 user-VirtualBox kernel: ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
Dez 18 19:37:11 user-VirtualBox kernel: ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
Dez 18 19:37:11 user-VirtualBox kernel: scsi host2: ahci
Dez 18 19:37:11 user-VirtualBox kernel: ata3: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 21 lpm-pol 0
Dez 18 19:37:11 user-VirtualBox kernel: input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
Dez 18 19:37:11 user-VirtualBox kernel: usb 1-1: New USB device found, idVendor=80ee, idProduct=0021, bcdDevice= 1.00
Dez 18 19:37:11 user-VirtualBox kernel: usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
Dez 18 19:37:11 user-VirtualBox kernel: usb 1-1: Product: USB Tablet
Dez 18 19:37:11 user-VirtualBox kernel: usb 1-1: Manufacturer: VirtualBox
Dez 18 19:37:11 user-VirtualBox kernel: hid: raw HID events driver (C) Jiri Kosina
Dez 18 19:37:11 user-VirtualBox kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Dez 18 19:37:11 user-VirtualBox kernel: ata3.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
Dez 18 19:37:11 user-VirtualBox kernel: ata3.00: 52428800 sectors, multi 128: LBA48 NCQ (depth 32)
Dez 18 19:37:11 user-VirtualBox kernel: ata3.00: configured for UDMA/133
Dez 18 19:37:11 user-VirtualBox kernel: scsi 2:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: [sda] 52428800 512-byte logical blocks: (26.8 GB/25.0 GiB)
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: [sda] Write Protect is off
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: [sda] Preferred minimum I/O size 512 bytes
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: Attached scsi generic sg1 type 0
Dez 18 19:37:11 user-VirtualBox kernel: e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 08:00:27:d8:f6:96
Dez 18 19:37:11 user-VirtualBox kernel: e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
Dez 18 19:37:11 user-VirtualBox kernel: sda: sda1 sda2 sda3
Dez 18 19:37:11 user-VirtualBox kernel: sd 2:0:0:0: [sda] Attached SCSI disk
Dez 18 19:37:11 user-VirtualBox kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no)
Dez 18 19:37:11 user-VirtualBox kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input5
Dez 18 19:37:11 user-VirtualBox kernel: e1000 0000:00:03.0 enp0s3: renamed from eth0
Dez 18 19:37:11 user-VirtualBox kernel: usbcore: registered new interface driver usbhid
Dez 18 19:37:11 user-VirtualBox kernel: usbhid: USB HID core driver
Dez 18 19:37:11 user-VirtualBox kernel: input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/0003:80EE:0021.0001/input/input6
Dez 18 19:37:11 user-VirtualBox kernel: hid-generic 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
Dez 18 19:37:11 user-VirtualBox kernel: raid6: avx2x4 gen() 16715 MB/s
Dez 18 19:37:11 user-VirtualBox kernel: raid6: avx2x2 gen() 80166 MB/s
Dez 18 19:37:11 user-VirtualBox kernel: raid6: avx2x1 gen() 335932 MB/s
Dez 18 19:37:11 user-VirtualBox kernel: raid6: using algorithm avx2x1 gen() 335932 MB/s
Dez 18 19:37:11 user-VirtualBox kernel: raid6: .... xor() 20470 MB/s, rmw enabled
Dez 18 19:37:11 user-VirtualBox kernel: raid6: using avx2x2 recovery algorithm
Dez 18 19:37:11 user-VirtualBox kernel: xor: automatically using best checksumming function avx
Dez 18 19:37:11 user-VirtualBox kernel: Btrfs loaded, zoned=yes, fsverity=yes
Dez 18 19:37:11 user-VirtualBox kernel: EXT4-fs (sda3): mounted filesystem d4fda175-7bc6-4fcf-820d-fbf014d77909 ro with ordered data mode. Quota mode: none.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Inserted module 'autofs4'
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd 255.4-1ubuntu8.11 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Dez 18 19:37:11 user-VirtualBox systemd[1]: Detected virtualization oracle.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Detected architecture x86-64.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Invalid DMI field header.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Queued start job for default target graphical.target.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Created slice system-systemd\x2dfsck.slice - Slice /system/systemd-fsck.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Created slice user.slice - User and Session Slice.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Expecting device dev-disk-by\x2duuid-D626\x2d2D7C.device - /dev/disk/by-uuid/D626-2D7C...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target integritysetup.target - Local Integrity Protected Volumes.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target nss-user-lookup.target - User and Group Name Lookups.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target remote-fs.target - Remote File Systems.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target slices.target - Slice Units.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target time-set.target - System Time Set.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target veritysetup.target - Local Verity Protected Volumes.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on syslog.socket - Syslog Socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-coredump.socket - Process Core Dump Socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-fsckd.socket - fsck to fsckd communication Socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-journald.socket - Journal Socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-pcrextend.socket - TPM2 PCR Extension (Varlink) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-journald.service - Journal Service...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished blk-availability.service - Availability of block devices.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
Dez 18 19:37:11 user-VirtualBox systemd[1]: modprobe@configfs.service: Deactivated successfully.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
Dez 18 19:37:11 user-VirtualBox systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
Dez 18 19:37:11 user-VirtualBox systemd[1]: modprobe@drm.service: Deactivated successfully.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
Dez 18 19:37:11 user-VirtualBox systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Dez 18 19:37:11 user-VirtualBox systemd[1]: modprobe@fuse.service: Deactivated successfully.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
Dez 18 19:37:11 user-VirtualBox systemd[1]: modprobe@loop.service: Deactivated successfully.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
Dez 18 19:37:11 user-VirtualBox systemd[1]: run-vmblock\x2dfuse.mount - VMware vmblock fuse mount was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Dez 18 19:37:11 user-VirtualBox systemd-journald[278]: Collecting audit messages is disabled.
Dez 18 19:37:11 user-VirtualBox systemd-journald[278]: Journal started
Dez 18 19:37:11 user-VirtualBox systemd-journald[278]: Runtime Journal (/run/log/journal/13da9b9ba4b64ddebab4fcc2387bfa6d) is 8.0M, max 77.5M, 69.5M free.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Started systemd-journald.service - Journal Service.
Dez 18 19:37:11 user-VirtualBox kernel: EXT4-fs (sda3): re-mounted d4fda175-7bc6-4fcf-820d-fbf014d77909 r/w. Quota mode: none.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Activating swap swapfile.swap - /swapfile...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-journal-flush.service - Flush Journal to Persistent Storage...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
Dez 18 19:37:11 user-VirtualBox systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
Dez 18 19:37:11 user-VirtualBox systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:11 user-VirtualBox systemd-journald[278]: Time spent on flushing to /var/log/journal/13da9b9ba4b64ddebab4fcc2387bfa6d is 6.742841s for 565 entries.
Dez 18 19:37:11 user-VirtualBox systemd-journald[278]: System Journal (/var/log/journal/13da9b9ba4b64ddebab4fcc2387bfa6d) is 415.8M, max 2.3G, 1.9G free.
Dez 18 19:37:20 user-VirtualBox systemd-journald[278]: Received client request to flush runtime journal.
Dez 18 19:37:20 user-VirtualBox kernel: lp: driver loaded but no devices found
Dez 18 19:37:20 user-VirtualBox kernel: ppdev: user-space parallel port driver
Dez 18 19:37:20 user-VirtualBox kernel: Adding 1190288k swap on /swapfile. Priority:-2 extents:5 across:1223056k
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: vgaarb: deactivate vga console
Dez 18 19:37:20 user-VirtualBox kernel: Console: switching to colour dummy device 80x25
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] FIFO at 0x00000000f0000000 size is 2048 kiB
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] VRAM at 0x00000000e0000000 size is 16384 kiB
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Running on SVGA version 2.
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Capabilities: rect copy, cursor, cursor bypass, cursor bypass 2, alpha cursor, extended fifo, pitchlock, irq mask, gmr, traces, gmr2, screen object 2, command buffers, gbobject,
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] *ERROR* vmwgfx seems to be running on an unsupported hypervisor.
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] *ERROR* This configuration is likely broken.
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] *ERROR* Please switch to a supported graphics device to avoid problems.
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] DMA map mode: Caching DMA mappings.
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Legacy memory limits: VRAM = 16384 kB, FIFO = 2048 kB, surface = 507904 kB
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] MOB limits: max mob size = 131072 kB, max mob pages = 4096
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Max GMR ids is 8192
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Max number of GMR pages is 1048576
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Maximum display memory size is 16384 kiB
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Screen Target display unit initialized
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Fifo max 0x00200000 min 0x00001000 cap 0x00000355
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Using command buffers with DMA pool.
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] Available shader model: Legacy.
Dez 18 19:37:20 user-VirtualBox kernel: [drm] Initialized vmwgfx 2.20.0 20211206 for 0000:00:02.0 on minor 0
Dez 18 19:37:20 user-VirtualBox kernel: fbcon: vmwgfxdrmfb (fb0) is primary device
Dez 18 19:37:20 user-VirtualBox kernel: Console: switching to colour frame buffer device 160x50
Dez 18 19:37:20 user-VirtualBox kernel: vmwgfx 0000:00:02.0: [drm] fb0: vmwgfxdrmfb frame buffer device
Dez 18 19:37:20 user-VirtualBox systemd-journald[278]: /var/log/journal/13da9b9ba4b64ddebab4fcc2387bfa6d/system.journal: Journal file uses a different sequence number ID, rotating.
Dez 18 19:37:20 user-VirtualBox systemd-journald[278]: Rotating system journal.
Dez 18 19:37:11 user-VirtualBox systemd-modules-load[289]: Inserted module 'lp'
Dez 18 19:37:11 user-VirtualBox systemd-modules-load[289]: Inserted module 'ppdev'
Dez 18 19:37:11 user-VirtualBox systemd[1]: Activated swap swapfile.swap - /swapfile.
Dez 18 19:37:11 user-VirtualBox systemd[1]: Reached target swap.target - Swaps.
Dez 18 19:37:11 user-VirtualBox systemd-modules-load[289]: Inserted module 'parport_pc'
Dez 18 19:37:12 user-VirtualBox systemd-modules-load[289]: Module 'ecryptfs' is built in
Dez 18 19:37:12 user-VirtualBox systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
Dez 18 19:37:12 user-VirtualBox systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
Dez 18 19:37:12 user-VirtualBox systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
Dez 18 19:37:12 user-VirtualBox systemd[1]: Starting ifupdown-pre.service - Helper to synchronize boot up for ifupdown...
Dez 18 19:37:12 user-VirtualBox systemd[1]: Starting systemd-udev-settle.service - Wait for udev To Complete Device Initialization...
Dez 18 19:37:12 user-VirtualBox systemd-modules-load[289]: Inserted module 'msr'
Dez 18 19:37:12 user-VirtualBox udevadm[331]: systemd-udev-settle.service is deprecated. Please fix zfs-import-cache.service, zfs-load-module.service not to pull it in.
Dez 18 19:37:13 user-VirtualBox systemd-modules-load[289]: Module 'fuse' is built in
Dez 18 19:37:13 user-VirtualBox systemd[1]: Finished ifupdown-pre.service - Helper to synchronize boot up for ifupdown.
Dez 18 19:37:13 user-VirtualBox systemd-modules-load[289]: Inserted module 'vmwgfx'
Dez 18 19:37:13 user-VirtualBox systemd[1]: Finished systemd-modules-load.service - Load Kernel Modules.
Dez 18 19:37:13 user-VirtualBox systemd[1]: Starting systemd-sysctl.service - Apply Kernel Variables...
Dez 18 19:37:13 user-VirtualBox systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
Dez 18 19:37:13 user-VirtualBox systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
Dez 18 19:37:13 user-VirtualBox systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
Dez 18 19:37:13 user-VirtualBox systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
Dez 18 19:37:13 user-VirtualBox systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
Dez 18 19:37:14 user-VirtualBox systemd-udevd[342]: Using default interface naming scheme 'v255'.
Dez 18 19:37:14 user-VirtualBox systemd[1]: Finished lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Dez 18 19:37:14 user-VirtualBox systemd[1]: Reached target local-fs-pre.target - Preparation for Local File Systems.
Dez 18 19:37:15 user-VirtualBox systemd[1]: Finished systemd-sysctl.service - Apply Kernel Variables.
Dez 18 19:37:19 user-VirtualBox systemd[1]: Started systemd-udevd.service - Rule-based Manager for Device Events and Files.
Dez 18 19:37:19 user-VirtualBox systemd[1]: Starting plymouth-start.service - Show Plymouth Boot Screen...
Dez 18 19:37:20 user-VirtualBox kernel: vboxguest: host-version: 7.0.26r168464 0x8000000f
Dez 18 19:37:20 user-VirtualBox systemd[1]: Finished systemd-journal-flush.service - Flush Journal to Persistent Storage.
Dez 18 19:37:20 user-VirtualBox kernel: vbg_heartbeat_init: Setting up heartbeat to trigger every 2000 milliseconds
Dez 18 19:37:20 user-VirtualBox systemd[1]: Listening on systemd-rfkill.socket - Load/Save RF Kill Switch Status /dev/rfkill Watch.
Dez 18 19:37:20 user-VirtualBox kernel: input: VirtualBox mouse integration as /devices/pci0000:00/0000:00:04.0/input/input7
Dez 18 19:37:20 user-VirtualBox (udev-worker)[361]: enp0s3: Could not set WakeOnLan to magic, ignoring: Vorgang wird nicht unterstützt
Dez 18 19:37:21 user-VirtualBox (udev-worker)[361]: vboxguest: /etc/udev/rules.d/60-vboxadd.rules:1 Only network interfaces can be renamed, ignoring NAME="vboxguest".
Dez 18 19:37:21 user-VirtualBox (udev-worker)[361]: vboxuser: /etc/udev/rules.d/60-vboxadd.rules:2 Only network interfaces can be renamed, ignoring NAME="vboxuser".
Dez 18 19:37:21 user-VirtualBox kernel: piix4_smbus 0000:00:07.0: SMBus Host Controller at 0x4100, revision 0
Dez 18 19:37:21 user-VirtualBox kernel: RAPL PMU: API unit is 2^-32 Joules, 0 fixed counters, 10737418240 ms ovfl timer
Dez 18 19:37:21 user-VirtualBox mtp-probe[401]: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:06.0/usb1/1-1"
Dez 18 19:37:21 user-VirtualBox mtp-probe[401]: bus: 1, device: 2 was not an MTP device
Dez 18 19:37:22 user-VirtualBox systemd[1]: Found device dev-disk-by\x2duuid-D626\x2d2D7C.device - VBOX_HARDDISK EFI\x20System\x20Partition.
Dez 18 19:37:22 user-VirtualBox systemd[1]: Starting systemd-fsck@dev-disk-by\x2duuid-D626\x2d2D7C.service - File System Check on /dev/disk/by-uuid/D626-2D7C...
Dez 18 19:37:22 user-VirtualBox systemd[1]: Started systemd-fsckd.service - File System Check Daemon to report status.
Dez 18 19:37:22 user-VirtualBox kernel: snd_intel8x0 0000:00:05.0: allow list rate for 1028:0177 is 48000
Dez 18 19:37:23 user-VirtualBox systemd-fsck[515]: fsck.fat 4.2 (2021-01-31)
Dez 18 19:37:23 user-VirtualBox systemd-fsck[515]: /dev/sda2: 11 files, 1572/131063 clusters
Dez 18 19:37:23 user-VirtualBox systemd[1]: Finished systemd-fsck@dev-disk-by\x2duuid-D626\x2d2D7C.service - File System Check on /dev/disk/by-uuid/D626-2D7C.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Mounting boot-efi.mount - /boot/efi...
Dez 18 19:37:23 user-VirtualBox systemd[1]: Mounted boot-efi.mount - /boot/efi.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Finished systemd-udev-settle.service - Wait for udev To Complete Device Initialization.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Starting modprobe@dm_mod.service - Load Kernel Module dm_mod...
Dez 18 19:37:23 user-VirtualBox systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
Dez 18 19:37:23 user-VirtualBox systemd[1]: Starting modprobe@loop.service - Load Kernel Module loop...
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-fsck-root.service - File System Check on Root Device was skipped because of an unmet condition check (ConditionPathExists=!/run/initramfs/fsck-root).
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database was skipped because of an unmet condition check (ConditionNeedsUpdate=/etc).
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-pcrmachine.service - TPM2 PCR Machine ID Measurement was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-sysusers.service - Create System Users was skipped because no trigger condition checks were met.
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-tpm2-setup-early.service - TPM2 SRK Setup (Early) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-tpm2-setup.service - TPM2 SRK Setup was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:23 user-VirtualBox systemd[1]: Started plymouth-start.service - Show Plymouth Boot Screen.
Dez 18 19:37:23 user-VirtualBox systemd[1]: modprobe@dm_mod.service: Deactivated successfully.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Finished modprobe@dm_mod.service - Load Kernel Module dm_mod.
Dez 18 19:37:23 user-VirtualBox systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch was skipped because of an unmet condition check (ConditionPathExists=!/run/plymouth/pid).
Dez 18 19:37:23 user-VirtualBox systemd[1]: Started systemd-ask-password-plymouth.path - Forward Password Requests to Plymouth Directory Watch.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Reached target cryptsetup.target - Local Encrypted Volumes.
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival was skipped because of an unmet condition check (ConditionDirectoryNotEmpty=/sys/fs/pstore).
Dez 18 19:37:23 user-VirtualBox systemd[1]: Starting zfs-load-module.service - Install ZFS kernel module...
Dez 18 19:37:23 user-VirtualBox systemd[1]: modprobe@loop.service: Deactivated successfully.
Dez 18 19:37:23 user-VirtualBox systemd[1]: Finished modprobe@loop.service - Load Kernel Module loop.
Dez 18 19:37:23 user-VirtualBox systemd[1]: systemd-repart.service - Repartition Root Disk was skipped because no trigger condition checks were met.
Dez 18 19:37:23 user-VirtualBox kernel: spl: loading out-of-tree module taints kernel.
Dez 18 19:37:24 user-VirtualBox kernel: zfs: module license 'CDDL' taints kernel.
Dez 18 19:37:24 user-VirtualBox kernel: Disabling lock debugging due to kernel taint
Dez 18 19:37:24 user-VirtualBox kernel: zfs: module license taints kernel.
Dez 18 19:37:25 user-VirtualBox kernel: ZFS: Loaded module v2.2.2-0ubuntu9.4, ZFS pool version 5000, ZFS filesystem version 5
Dez 18 19:37:25 user-VirtualBox systemd[1]: Finished zfs-load-module.service - Install ZFS kernel module.
Dez 18 19:37:25 user-VirtualBox systemd[1]: zfs-import-cache.service - Import ZFS pools by cache file was skipped because of an unmet condition check (ConditionFileNotEmpty=/etc/zfs/zpool.cache).
Dez 18 19:37:25 user-VirtualBox systemd[1]: Reached target zfs-import.target - ZFS pool import target.
Dez 18 19:37:25 user-VirtualBox systemd[1]: Starting zfs-mount.service - Mount ZFS filesystems...
Dez 18 19:37:25 user-VirtualBox systemd[1]: Starting zfs-volume-wait.service - Wait for ZFS Volume (zvol) links in /dev...
Dez 18 19:37:25 user-VirtualBox zvol_wait[545]: No zvols found, nothing to do.
Dez 18 19:37:25 user-VirtualBox systemd[1]: Finished zfs-mount.service - Mount ZFS filesystems.
Dez 18 19:37:25 user-VirtualBox systemd[1]: Finished zfs-volume-wait.service - Wait for ZFS Volume (zvol) links in /dev.
Dez 18 19:37:25 user-VirtualBox systemd[1]: Reached target local-fs.target - Local File Systems.
Dez 18 19:37:25 user-VirtualBox systemd[1]: Reached target zfs-volumes.target - ZFS volumes are ready.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Listening on systemd-sysext.socket - System Extension Image Management (Varlink).
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting apparmor.service - Load AppArmor profiles...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting console-setup.service - Set console font and keymap...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting dns-clean.service - Clean up any mess left by 0dns-up...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting finalrd.service - Create final runtime dir for shutdown pivot root...
Dez 18 19:37:26 user-VirtualBox systemd[1]: ldconfig.service - Rebuild Dynamic Linker Cache was skipped because no trigger condition checks were met.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting systemd-binfmt.service - Set Up Additional Binary Formats...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting systemd-tmpfiles-setup.service - Create Volatile Files and Directories...
Dez 18 19:37:26 user-VirtualBox apparmor.systemd[552]: Restarting AppArmor
Dez 18 19:37:26 user-VirtualBox systemd[1]: Starting ufw.service - Uncomplicated firewall...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Finished console-setup.service - Set console font and keymap.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Finished finalrd.service - Create final runtime dir for shutdown pivot root.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Received SIGRTMIN+20 from PID 191 (plymouthd).
Dez 18 19:37:26 user-VirtualBox systemd[1]: Finished plymouth-read-write.service - Tell Plymouth To Write Out Runtime Data.
Dez 18 19:37:26 user-VirtualBox apparmor.systemd[552]: Reloading AppArmor profiles
Dez 18 19:37:26 user-VirtualBox systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 561 (systemd-binfmt)
Dez 18 19:37:26 user-VirtualBox systemd[1]: Mounting proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System...
Dez 18 19:37:26 user-VirtualBox systemd[1]: Finished ufw.service - Uncomplicated firewall.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Reached target network-pre.target - Preparation for Network.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Mounted proc-sys-fs-binfmt_misc.mount - Arbitrary Executable File Formats File System.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Finished systemd-binfmt.service - Set Up Additional Binary Formats.
Dez 18 19:37:26 user-VirtualBox systemd[1]: dns-clean.service: Deactivated successfully.
Dez 18 19:37:26 user-VirtualBox systemd[1]: Finished dns-clean.service - Clean up any mess left by 0dns-up.
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.099:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=585 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.100:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=586 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.126:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=587 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.127:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=588 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox systemd[1]: Finished systemd-tmpfiles-setup.service - Create Volatile Files and Directories.
Dez 18 19:37:27 user-VirtualBox systemd[1]: systemd-firstboot.service - First Boot Wizard was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Dez 18 19:37:27 user-VirtualBox systemd[1]: first-boot-complete.target - First Boot Complete was skipped because of an unmet condition check (ConditionFirstBoot=yes).
Dez 18 19:37:27 user-VirtualBox systemd[1]: systemd-journal-catalog-update.service - Rebuild Journal Catalog was skipped because of an unmet condition check (ConditionNeedsUpdate=/var).
Dez 18 19:37:27 user-VirtualBox systemd[1]: systemd-machine-id-commit.service - Commit a transient machine-id on disk was skipped because of an unmet condition check (ConditionPathIsMountPoint=/etc/machine-id).
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.151:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=589 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.151:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=590 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.165:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=592 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.165:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=593 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox systemd[1]: Starting systemd-resolved.service - Network Name Resolution...
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.186:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=596 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox systemd[1]: Starting systemd-timesyncd.service - Network Time Synchronization...
Dez 18 19:37:27 user-VirtualBox systemd[1]: systemd-update-done.service - Update is Completed was skipped because no trigger condition checks were met.
Dez 18 19:37:27 user-VirtualBox systemd[1]: Starting systemd-update-utmp.service - Record System Boot/Shutdown in UTMP...
Dez 18 19:37:27 user-VirtualBox kernel: audit: type=1400 audit(1766083047.215:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=595 comm="apparmor_parser"
Dez 18 19:37:27 user-VirtualBox systemd[1]: Finished systemd-update-utmp.service - Record System Boot/Shutdown in UTMP.
Dez 18 19:37:27 user-VirtualBox systemd[1]: Started systemd-timesyncd.service - Network Time Synchronization.
Dez 18 19:37:27 user-VirtualBox systemd-resolved[594]: Positive Trust Anchors:
Dez 18 19:37:27 user-VirtualBox systemd-resolved[594]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Dez 18 19:37:27 user-VirtualBox systemd-resolved[594]: Negative trust anchors: home.arpa 10.in-addr.arpa 16.172.in-addr.arpa 17.172.in-addr.arpa 18.172.in-addr.arpa 19.172.in-addr.arpa 20.172.in-addr.arpa 21.172.in-addr.arpa 22.172.in-addr.arpa 23.172.in-addr.arpa 24.172.in-addr.arpa 25.172.in-addr.arpa 26.172.in-addr.arpa 27.172.in-addr.arpa 28.172.in-addr.arpa 29.172.in-addr.arpa 30.172.in-addr.arpa 31.172.in-addr.arpa 170.0.0.192.in-addr.arpa 171.0.0.192.in-addr.arpa 168.192.in-addr.arpa d.f.ip6.arpa ipv4only.arpa corp home internal intranet lan local private test
Dez 18 19:37:28 user-VirtualBox systemd-resolved[594]: Using system hostname 'user-VirtualBox'.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started systemd-resolved.service - Network Name Resolution.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Reached target nss-lookup.target - Host and Network Name Lookups.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Finished apparmor.service - Load AppArmor profiles.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Reached target sysinit.target - System Initialization.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started acpid.path - ACPI Events Check.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started cups.path - CUPS Scheduler.
Dez 18 19:37:28 user-VirtualBox systemd[1]: tpm-udev.path - Handle dynamically added tpm devices was skipped because of an unmet condition check (ConditionVirtualization=container).
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started anacron.timer - Trigger anacron every hour.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started apt-daily.timer - Daily apt download activities.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started apt-daily-upgrade.timer - Daily apt upgrade and clean activities.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started dpkg-db-backup.timer - Daily dpkg database backup timer.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started e2scrub_all.timer - Periodic ext4 Online Metadata Check for All Filesystems.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started fstrim.timer - Discard unused filesystem blocks once a week.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started fwupd-refresh.timer - Refresh fwupd metadata regularly.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started logrotate.timer - Daily rotation of log files.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started man-db.timer - Daily man-db regeneration.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started motd-news.timer - Message of the Day.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started plocate-updatedb.timer - Update the plocate database daily.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Started systemd-tmpfiles-clean.timer - Daily Cleanup of Temporary Directories.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Reached target paths.target - Path Units.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Reached target timers.target - Timer Units.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Listening on acpid.socket - ACPID Listen Socket.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Listening on avahi-daemon.socket - Avahi mDNS/DNS-SD Stack Activation Socket.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Listening on cups.socket - CUPS Scheduler.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Listening on dbus.socket - D-Bus System Message Bus Socket.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Listening on ssh.socket - OpenBSD Secure Shell server socket.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Listening on uuidd.socket - UUID daemon activation socket.
Dez 18 19:37:28 user-VirtualBox systemd[1]: Reached target sockets.target - Socket Units.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting networking.service - Raise network interfaces...
Dez 18 19:37:29 user-VirtualBox systemd[1]: systemd-pcrphase-sysinit.service - TPM2 PCR Barrier (Initialization) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:29 user-VirtualBox systemd[1]: Reached target basic.target - Basic System.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting accounts-daemon.service - Accounts Service...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Started anacron.service - Run anacron jobs.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting avahi-daemon.service - Avahi mDNS/DNS-SD Stack...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting blueman-mechanism.service - Bluetooth management mechanism...
Dez 18 19:37:29 user-VirtualBox anacron[710]: Anacron 2.3 started on 2025-12-18
Dez 18 19:37:29 user-VirtualBox systemd[1]: Started cron.service - Regular background program processing daemon.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting dbus.service - D-Bus System Message Bus...
Dez 18 19:37:29 user-VirtualBox (cron)[715]: cron.service: Referenced but unset environment variable evaluates to an empty string: EXTRA_OPTS
Dez 18 19:37:29 user-VirtualBox systemd[1]: Started dmesg.service - Save initial kernel messages after boot.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting e2scrub_reap.service - Remove Stale Online ext4 Metadata Check Snapshots...
Dez 18 19:37:29 user-VirtualBox systemd[1]: getty-static.service - getty on tty2-tty6 if dbus and logind are not available was skipped because of an unmet condition check (ConditionPathExists=!/usr/bin/dbus-daemon).
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting gpu-manager.service - Detect the available GPUs and deal with any system changes...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting grub-common.service - Record successful boot for GRUB...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Started irqbalance.service - irqbalance daemon.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting lm-sensors.service - Initialize hardware monitoring sensors...
Dez 18 19:37:29 user-VirtualBox (qbalance)[731]: irqbalance.service: Referenced but unset environment variable evaluates to an empty string: IRQBALANCE_ARGS
Dez 18 19:37:29 user-VirtualBox systemd[1]: Started mintsystem.service.
Dez 18 19:37:29 user-VirtualBox sensors[732]: No sensors found!
Dez 18 19:37:29 user-VirtualBox sensors[732]: Make sure you loaded all the kernel drivers you need.
Dez 18 19:37:29 user-VirtualBox sensors[732]: Try sensors-detect to find out which these are.
Dez 18 19:37:29 user-VirtualBox anacron[710]: Normal exit (0 jobs run)
Dez 18 19:37:29 user-VirtualBox dbus-daemon[720]: dbus[720]: Unknown username "whoopsie" in message bus configuration file
Dez 18 19:37:29 user-VirtualBox systemd[1]: networkd-dispatcher.service - Dispatcher daemon for systemd-networkd was skipped because no trigger condition checks were met.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting polkit.service - Authorization Manager...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting power-profiles-daemon.service - Power Profiles daemon...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting rsyslog.service - System Logging Service...
Dez 18 19:37:29 user-VirtualBox systemd[1]: secureboot-db.service - Secure Boot updates for DB and DBX was skipped because of an unmet condition check (ConditionPathExists=/sys/firmware/efi/efivars/db-d719b2cb-3d3a-4596-a3bc-dad00e67656f).
Dez 18 19:37:29 user-VirtualBox systemd[1]: ssl-cert.service - Generate snakeoil SSL keypair was skipped because of an unmet condition check (ConditionPathExists=!/etc/ssl/private/ssl-cert-snakeoil.key).
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting switcheroo-control.service - Switcheroo Control Proxy service...
Dez 18 19:37:29 user-VirtualBox cron[715]: (CRON) INFO (pidfile fd = 3)
Dez 18 19:37:29 user-VirtualBox avahi-daemon[712]: Found user 'avahi' (UID 123) and group 'avahi' (GID 133).
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting systemd-logind.service - User Login Management...
Dez 18 19:37:29 user-VirtualBox systemd[1]: systemd-pcrphase.service - TPM2 PCR Barrier (User) was skipped because of an unmet condition check (ConditionSecurity=measured-uki).
Dez 18 19:37:29 user-VirtualBox systemd[1]: thermald.service - Thermal Daemon Service was skipped because of an unmet condition check (ConditionVirtualization=no).
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting ubuntu-system-adjustments.service - Ubuntu system adjustments...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting udisks2.service - Disk Manager...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting vboxadd.service...
Dez 18 19:37:29 user-VirtualBox systemd[1]: vgauth.service - Authentication service for virtual machines hosted on VMware was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Dez 18 19:37:29 user-VirtualBox systemd[1]: open-vm-tools.service - Service for virtual machines hosted on VMware was skipped because of an unmet condition check (ConditionVirtualization=vmware).
Dez 18 19:37:29 user-VirtualBox systemd[1]: Starting zfs-share.service - ZFS file system shares...
Dez 18 19:37:29 user-VirtualBox systemd[1]: Started zfs-zed.service - ZFS Event Daemon (zed).
Dez 18 19:37:29 user-VirtualBox systemd[1]: anacron.service: Deactivated successfully.
Dez 18 19:37:29 user-VirtualBox dbus-daemon[720]: dbus[720]: Unknown group "power" in message bus configuration file
Dez 18 19:37:29 user-VirtualBox systemd[1]: Finished zfs-share.service - ZFS file system shares.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Reached target zfs.target - ZFS startup target.
Dez 18 19:37:29 user-VirtualBox avahi-daemon[712]: Successfully dropped root privileges.
Dez 18 19:37:29 user-VirtualBox avahi-daemon[712]: avahi-daemon 0.8 starting up.
Dez 18 19:37:29 user-VirtualBox sensors[763]: No sensors found!
Dez 18 19:37:29 user-VirtualBox sensors[763]: Make sure you loaded all the kernel drivers you need.
Dez 18 19:37:29 user-VirtualBox sensors[763]: Try sensors-detect to find out which these are.
Dez 18 19:37:29 user-VirtualBox systemd[1]: Finished lm-sensors.service - Initialize hardware monitoring sensors.
Dez 18 19:37:30 user-VirtualBox cron[715]: (CRON) INFO (Running @reboot jobs)
Dez 18 19:37:30 user-VirtualBox polkitd[747]: Started polkitd version 124
Dez 18 19:37:30 user-VirtualBox zed[761]: ZFS Event Daemon 2.2.2-0ubuntu9.4 (PID 761)
Dez 18 19:37:30 user-VirtualBox zed[761]: Processing events since eid=0
Dez 18 19:37:31 user-VirtualBox systemd[1]: grub-common.service: Deactivated successfully.
Dez 18 19:37:31 user-VirtualBox systemd[1]: Finished grub-common.service - Record successful boot for GRUB.
Dez 18 19:37:31 user-VirtualBox systemd[1]: Starting grub-initrd-fallback.service - GRUB failed boot detection...
Dez 18 19:37:31 user-VirtualBox systemd-logind[755]: New seat seat0.
Dez 18 19:37:31 user-VirtualBox systemd-logind[755]: Watching system buttons on /dev/input/event0 (Power Button)
Dez 18 19:37:31 user-VirtualBox systemd-logind[755]: Watching system buttons on /dev/input/event1 (Sleep Button)
Dez 18 19:37:31 user-VirtualBox systemd-logind[755]: Watching system buttons on /dev/input/event2 (AT Translated Set 2 keyboard)
Dez 18 19:37:31 user-VirtualBox systemd[1]: Started systemd-logind.service - User Login Management.
Dez 18 19:37:31 user-VirtualBox udisksd[757]: udisks daemon version 2.10.1 starting
Dez 18 19:37:32 user-VirtualBox systemd[1]: grub-initrd-fallback.service: Deactivated successfully.
Dez 18 19:37:32 user-VirtualBox systemd[1]: Finished grub-initrd-fallback.service - GRUB failed boot detection.
Dez 18 19:37:32 user-VirtualBox systemd[1]: Finished networking.service - Raise network interfaces.
Dez 18 19:37:32 user-VirtualBox rsyslogd[775]: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd. [v8.2312.0]
Dez 18 19:37:32 user-VirtualBox systemd[1]: Started rsyslog.service - System Logging Service.
Dez 18 19:37:32 user-VirtualBox rsyslogd[775]: rsyslogd's groupid changed to 111
Dez 18 19:37:32 user-VirtualBox rsyslogd[775]: rsyslogd's userid changed to 104
Dez 18 19:37:32 user-VirtualBox rsyslogd[775]: [origin software="rsyslogd" swVersion="8.2312.0" x-pid="775" x-info="https://www.rsyslog.com"] start
Dez 18 19:37:33 user-VirtualBox dbus-daemon[720]: dbus[720]: Unknown group "power" in message bus configuration file
Dez 18 19:37:34 user-VirtualBox systemd[1]: gpu-manager.service: Deactivated successfully.
Dez 18 19:37:34 user-VirtualBox systemd[1]: Finished gpu-manager.service - Detect the available GPUs and deal with any system changes.
Dez 18 19:37:36 user-VirtualBox dbus-daemon[720]: [system] AppArmor D-Bus mediation is enabled
Dez 18 19:37:36 user-VirtualBox systemd[1]: Started dbus.service - D-Bus System Message Bus.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Successfully called chroot().
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Successfully dropped remaining capabilities.
Dez 18 19:37:36 user-VirtualBox polkitd[747]: Loading rules from directory /etc/polkit-1/rules.d
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: No service file found in /etc/avahi/services.
Dez 18 19:37:36 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.systemd1'
Dez 18 19:37:36 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.7' (uid=0 pid=749 comm="/usr/libexec/power-profiles-daemon" label="unconfined")
Dez 18 19:37:36 user-VirtualBox systemd[1]: Starting NetworkManager.service - Network Manager...
Dez 18 19:37:36 user-VirtualBox systemd[1]: Starting wpa_supplicant.service - WPA supplicant...
Dez 18 19:37:36 user-VirtualBox systemd[1]: Started avahi-daemon.service - Avahi mDNS/DNS-SD Stack.
Dez 18 19:37:36 user-VirtualBox systemd[1]: Started switcheroo-control.service - Switcheroo Control Proxy service.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: New relevant interface lo.IPv6 for mDNS.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: New relevant interface lo.IPv4 for mDNS.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Network interface enumeration completed.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Registering new address record for ::1 on lo.*.
Dez 18 19:37:36 user-VirtualBox avahi-daemon[712]: Registering new address record for 127.0.0.1 on lo.IPv4.
Dez 18 19:37:36 user-VirtualBox systemd[1]: alsa-state.service - Manage Sound Card State (restore and store) was skipped because of an unmet condition check (ConditionPathExists=/etc/alsa/state-daemon.conf).
Dez 18 19:37:36 user-VirtualBox systemd[1]: Starting alsa-restore.service - Save/Restore Sound Card State...
Dez 18 19:37:36 user-VirtualBox alsactl[905]: alsa-lib main.c:1554:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -2
Dez 18 19:37:36 user-VirtualBox systemd[1]: Finished alsa-restore.service - Save/Restore Sound Card State.
Dez 18 19:37:36 user-VirtualBox systemd[1]: Reached target sound.target - Sound Card.
Dez 18 19:37:36 user-VirtualBox polkitd[747]: Loading rules from directory /usr/share/polkit-1/rules.d
Dez 18 19:37:37 user-VirtualBox avahi-daemon[712]: Server startup complete. Host name is user-VirtualBox.local. Local service cookie is 3772845460.
Dez 18 19:37:38 user-VirtualBox polkitd[747]: Finished loading, compiling and executing 14 rules
Dez 18 19:37:38 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Dez 18 19:37:38 user-VirtualBox systemd[1]: Started polkit.service - Authorization Manager.
Dez 18 19:37:38 user-VirtualBox polkitd[747]: Acquired the name org.freedesktop.PolicyKit1 on the system bus
Dez 18 19:37:38 user-VirtualBox systemd[1]: Starting ModemManager.service - Modem Manager...
Dez 18 19:37:38 user-VirtualBox systemd[1]: Started power-profiles-daemon.service - Power Profiles daemon.
Dez 18 19:37:38 user-VirtualBox systemd[1]: Finished ubuntu-system-adjustments.service - Ubuntu system adjustments.
Dez 18 19:37:38 user-VirtualBox systemd[1]: Started wpa_supplicant.service - WPA supplicant.
Dez 18 19:37:38 user-VirtualBox wpa_supplicant[903]: Successfully initialized wpa_supplicant
Dez 18 19:37:38 user-VirtualBox accounts-daemon[708]: started daemon version 23.13.9
Dez 18 19:37:38 user-VirtualBox systemd[1]: Started accounts-daemon.service - Accounts Service.
Dez 18 19:37:39 user-VirtualBox NetworkManager[902]: <info> [1766083059.3866] NetworkManager (version 1.46.0) is starting... (boot:a5635db7-6c5d-4051-a1ca-3df742933d12)
Dez 18 19:37:39 user-VirtualBox NetworkManager[902]: <info> [1766083059.4234] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (run: 10-globally-managed-devices.conf) (etc: default-wifi-powersave-on.conf, ubuntu-system-adjustments.conf)
Dez 18 19:37:39 user-VirtualBox NetworkManager[902]: <info> [1766083059.7395] manager[0x6517569eeb30]: monitoring kernel firmware directory '/lib/firmware'.
Dez 18 19:37:39 user-VirtualBox NetworkManager[902]: <info> [1766083059.7396] monitoring ifupdown state file '/run/network/ifstate'.
Dez 18 19:37:39 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.11' (uid=0 pid=902 comm="/usr/sbin/NetworkManager --no-daemon" label="unconfined")
Dez 18 19:37:39 user-VirtualBox systemd[1]: Starting systemd-hostnamed.service - Hostname Service...
Dez 18 19:37:40 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.hostname1'
Dez 18 19:37:40 user-VirtualBox systemd[1]: Started systemd-hostnamed.service - Hostname Service.
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.0212] hostname: hostname: using hostnamed
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.0213] hostname: static hostname changed from (none) to "user-VirtualBox"
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.0504] dns-mgr: init: dns=systemd-resolved rc-manager=unmanaged (auto), plugin=systemd-resolved
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.0723] manager[0x6517569eeb30]: rfkill: Wi-Fi hardware radio set enabled
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.0724] manager[0x6517569eeb30]: rfkill: WWAN hardware radio set enabled
Dez 18 19:37:40 user-VirtualBox ModemManager[926]: <msg> ModemManager (version 1.23.4) starting in system bus...
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.4184] Loaded device plugin: NMAtmManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-device-plugin-adsl.so)
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.5866] Loaded device plugin: NMWwanFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-device-plugin-wwan.so)
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.9161] Loaded device plugin: NMTeamFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-device-plugin-team.so)
Dez 18 19:37:40 user-VirtualBox NetworkManager[902]: <info> [1766083060.9783] Loaded device plugin: NMWifiFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-device-plugin-wifi.so)
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.3166] Loaded device plugin: NMBluezManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-device-plugin-bluetooth.so)
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.3200] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.3204] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.3211] manager: Networking is enabled by state file
Dez 18 19:37:41 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.11' (uid=0 pid=902 comm="/usr/sbin/NetworkManager --no-daemon" label="unconfined")
Dez 18 19:37:41 user-VirtualBox systemd[1]: Starting NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service...
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4445] settings: Loaded settings plugin: ifupdown ("/usr/lib/x86_64-linux-gnu/NetworkManager/1.46.0/libnm-settings-plugin-ifupdown.so")
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4446] settings: Loaded settings plugin: keyfile (internal)
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4447] ifupdown: management mode: unmanaged
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4447] ifupdown: interface-parser: parsing file /etc/network/interfaces
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4448] ifupdown: interface-parser: source line includes interfaces file(s) /etc/network/interfaces.d/*
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4453] ifupdown: interfaces file /etc/network/interfaces.d/* doesn't exist
Dez 18 19:37:41 user-VirtualBox NetworkManager[902]: <info> [1766083061.4454] ifupdown: interface-parser: finished parsing file /etc/network/interfaces
Dez 18 19:37:41 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dez 18 19:37:41 user-VirtualBox systemd[1]: Started NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service.
Dez 18 19:37:42 user-VirtualBox systemd[1]: Started udisks2.service - Disk Manager.
Dez 18 19:37:42 user-VirtualBox udisksd[757]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Dez 18 19:37:44 user-VirtualBox kernel: NET: Registered PF_QIPCRTR protocol family
Dez 18 19:37:44 user-VirtualBox systemd[1]: Started ModemManager.service - Modem Manager.
Dez 18 19:37:47 user-VirtualBox vboxadd[758]: VirtualBox Guest Additions: Starting.
Dez 18 19:37:47 user-VirtualBox vboxadd[1022]: VirtualBox Guest Additions: Setting up modules
Dez 18 19:37:47 user-VirtualBox vboxadd[1031]: VirtualBox Guest Additions: Building the VirtualBox Guest Additions kernel
Dez 18 19:37:47 user-VirtualBox vboxadd[1031]: modules. This may take a while.
Dez 18 19:37:47 user-VirtualBox vboxadd[1033]: VirtualBox Guest Additions: To build modules for other installed kernels, run
Dez 18 19:37:47 user-VirtualBox vboxadd[1035]: VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup <version>
Dez 18 19:37:47 user-VirtualBox vboxadd[1037]: VirtualBox Guest Additions: or
Dez 18 19:37:47 user-VirtualBox vboxadd[1039]: VirtualBox Guest Additions: /sbin/rcvboxadd quicksetup all
Dez 18 19:37:48 user-VirtualBox vboxadd[1041]: VirtualBox Guest Additions: Building the modules for kernel 6.8.0-88-generic.
Dez 18 19:37:48 user-VirtualBox ModemManager[926]: <msg> [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:03.0': not supported by any plugin
Dez 18 19:37:49 user-VirtualBox generate[1048]: Permissions for /etc/netplan/1-network-manager-all.yaml are too open. Netplan configuration should NOT be accessible by others.
Dez 18 19:37:50 user-VirtualBox systemd[1]: Reloading requested from client PID 1051 ('systemctl') (unit NetworkManager.service)...
Dez 18 19:37:50 user-VirtualBox systemd[1]: Reloading...
Dez 18 19:37:50 user-VirtualBox systemd[1]: Reloading finished in 277 ms.
Dez 18 19:37:51 user-VirtualBox systemd[1]: Started blueman-mechanism.service - Bluetooth management mechanism.
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3644] dhcp: init: Using DHCP client 'internal'
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3654] manager: (lo): new Loopback device (/org/freedesktop/NetworkManager/Devices/1)
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3693] device (lo): state change: unmanaged -> unavailable (reason 'connection-assumed', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3706] device (lo): state change: unavailable -> disconnected (reason 'connection-assumed', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3733] device (lo): Activation: starting connection 'lo' (c0addf00-183f-41ca-8188-2e87281f1af7)
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3762] manager: (enp0s3): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.3771] device (enp0s3): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox kernel: e1000: enp0s3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
Dez 18 19:37:51 user-VirtualBox systemd[1]: Started NetworkManager.service - Network Manager.
Dez 18 19:37:51 user-VirtualBox systemd[1]: Reached target network.target - Network.
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5619] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <warn> [1766083071.5630] dns-mgr: update-pending changed: DNS plugin did not become ready again. Assume something is wrong
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5679] device (lo): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox systemd[1]: Starting NetworkManager-wait-online.service - Network Manager Wait Online...
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5771] device (lo): state change: prepare -> config (reason 'none', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5778] device (lo): state change: config -> ip-config (reason 'none', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5789] device (enp0s3): carrier: link connected
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5899] device (lo): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.5956] device (enp0s3): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6055] policy: auto-activating connection 'Kabelgebundene Verbindung 1' (99f19c44-fd79-3e59-ab90-84a8c8ba9f13)
Dez 18 19:37:51 user-VirtualBox systemd[1]: Starting cups.service - CUPS Scheduler...
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6066] device (enp0s3): Activation: starting connection 'Kabelgebundene Verbindung 1' (99f19c44-fd79-3e59-ab90-84a8c8ba9f13)
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6067] modem-manager: ModemManager available
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6068] device (enp0s3): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6073] manager: NetworkManager state is now CONNECTING
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6127] device (enp0s3): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Dez 18 19:37:51 user-VirtualBox systemd[1]: Starting openvpn.service - OpenVPN service...
Dez 18 19:37:51 user-VirtualBox systemd[1]: Starting systemd-user-sessions.service - Permit User Sessions...
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6267] device (enp0s3): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.6307] dhcp4 (enp0s3): activation: beginning transaction (timeout in 45 seconds)
Dez 18 19:37:51 user-VirtualBox systemd[1]: Finished openvpn.service - OpenVPN service.
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.7127] device (lo): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.7133] dhcp4 (enp0s3): state changed new lease, address=192.168.178.24, acd pending
Dez 18 19:37:51 user-VirtualBox avahi-daemon[712]: Joining mDNS multicast group on interface enp0s3.IPv6 with address fe80::2d09:3b99:4551:66c8.
Dez 18 19:37:51 user-VirtualBox avahi-daemon[712]: New relevant interface enp0s3.IPv6 for mDNS.
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.7156] device (lo): state change: secondaries -> activated (reason 'none', sys-iface-state: 'external')
Dez 18 19:37:51 user-VirtualBox avahi-daemon[712]: Registering new address record for fe80::2d09:3b99:4551:66c8 on enp0s3.*.
Dez 18 19:37:51 user-VirtualBox NetworkManager[902]: <info> [1766083071.7166] device (lo): Activation: successful, device activated.
Dez 18 19:37:51 user-VirtualBox systemd[1]: Finished systemd-user-sessions.service - Permit User Sessions.
Dez 18 19:37:51 user-VirtualBox systemd[1]: Starting plymouth-quit-wait.service - Hold until boot process finishes up...
Dez 18 19:37:51 user-VirtualBox systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Dez 18 19:37:53 user-VirtualBox systemd[1]: systemd-fsckd.service: Deactivated successfully.
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.2078] dhcp6 (enp0s3): activation: beginning transaction (timeout in 45 seconds)
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.2129] policy: set 'Kabelgebundene Verbindung 1' (enp0s3) as default for IPv6 routing and DNS
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Leaving mDNS multicast group on interface enp0s3.IPv6 with address fe80::2d09:3b99:4551:66c8.
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.2226] dhcp6 (enp0s3): state changed new lease
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Joining mDNS multicast group on interface enp0s3.IPv6 with address fdd5:94e4:f3fc:0:d63e:a926:5de2:4fb5.
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Registering new address record for fdd5:94e4:f3fc:0:d63e:a926:5de2:4fb5 on enp0s3.*.
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Withdrawing address record for fe80::2d09:3b99:4551:66c8 on enp0s3.
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Registering new address record for 2a02:3100:82f2:e000:da7e:a5bc:a0d8:2b62 on enp0s3.*.
Dez 18 19:37:53 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.11' (uid=0 pid=902 comm="/usr/sbin/NetworkManager --no-daemon" label="unconfined")
Dez 18 19:37:53 user-VirtualBox systemd-resolved[594]: enp0s3: Bus client set default route setting: yes
Dez 18 19:37:53 user-VirtualBox systemd-resolved[594]: enp0s3: Bus client set DNS server list to: fdd5:94e4:f3fc:0:3ea6:2fff:feb6:beaf, 2a02:3100:82f2:e000:3ea6:2fff:feb6:beaf
Dez 18 19:37:53 user-VirtualBox systemd[1]: Starting NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service...
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.2845] dhcp4 (enp0s3): state changed new lease, address=192.168.178.24
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.2859] policy: set 'Kabelgebundene Verbindung 1' (enp0s3) as default for IPv4 routing and DNS
Dez 18 19:37:53 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Dez 18 19:37:53 user-VirtualBox systemd-resolved[594]: enp0s3: Bus client set search domain list to: fritz.box
Dez 18 19:37:53 user-VirtualBox systemd[1]: Started NetworkManager-dispatcher.service - Network Manager Script Dispatcher Service.
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Joining mDNS multicast group on interface enp0s3.IPv4 with address 192.168.178.24.
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: New relevant interface enp0s3.IPv4 for mDNS.
Dez 18 19:37:53 user-VirtualBox avahi-daemon[712]: Registering new address record for 192.168.178.24 on enp0s3.IPv4.
Dez 18 19:37:53 user-VirtualBox systemd-resolved[594]: enp0s3: Bus client set DNS server list to: 192.168.178.1, fdd5:94e4:f3fc:0:3ea6:2fff:feb6:beaf, 2a02:3100:82f2:e000:3ea6:2fff:feb6:beaf
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.9643] device (enp0s3): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.9807] device (enp0s3): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.9820] device (enp0s3): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.9844] manager: NetworkManager state is now CONNECTED_SITE
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.9854] device (enp0s3): Activation: successful, device activated.
Dez 18 19:37:53 user-VirtualBox NetworkManager[902]: <info> [1766083073.9904] manager: startup complete
Dez 18 19:37:54 user-VirtualBox systemd[1]: Finished NetworkManager-wait-online.service - Network Manager Wait Online.
Dez 18 19:37:54 user-VirtualBox systemd[1]: Reached target network-online.target - Network is Online.
Dez 18 19:37:54 user-VirtualBox systemd[1]: Starting kerneloops.service - Tool to automatically collect and submit kernel crash signatures...
Dez 18 19:37:55 user-VirtualBox systemd[1]: kerneloops.service: Found left-over process 1120 (kerneloops) in control group while starting unit. Ignoring.
Dez 18 19:37:55 user-VirtualBox systemd[1]: kerneloops.service: This usually indicates unclean termination of a previous run, or service implementation deficiencies.
Dez 18 19:37:55 user-VirtualBox avahi-daemon[712]: Registering new address record for fdd5:94e4:f3fc:0:5bba:e444:df8:bbc on enp0s3.*.
Dez 18 19:37:55 user-VirtualBox (rneloops)[1121]: kerneloops.service: Referenced but unset environment variable evaluates to an empty string: DAEMON_ARGS
Dez 18 19:37:55 user-VirtualBox systemd[1]: Started kerneloops.service - Tool to automatically collect and submit kernel crash signatures.
Dez 18 19:37:55 user-VirtualBox NetworkManager[902]: <info> [1766083075.0689] manager: NetworkManager state is now CONNECTED_GLOBAL
Dez 18 19:37:55 user-VirtualBox avahi-daemon[712]: Registering new address record for 2a02:3100:82f2:e000:dfa9:ee0b:756d:be00 on enp0s3.*.
Dez 18 19:37:56 user-VirtualBox kernel: kauditd_printk_skb: 115 callbacks suppressed
Dez 18 19:37:56 user-VirtualBox kernel: audit: type=1400 audit(1766083076.264:127): apparmor="DENIED" operation="capable" class="cap" profile="/usr/sbin/cupsd" pid=1101 comm="cupsd" capability=12 capname="net_admin"
Dez 18 19:37:56 user-VirtualBox systemd[1]: Started cups.service - CUPS Scheduler.
Dez 18 19:37:56 user-VirtualBox systemd[1]: Started cups-browsed.service - Make remote CUPS printers available locally.
Dez 18 19:37:58 user-VirtualBox systemd-resolved[594]: Clock change detected. Flushing caches.
Dez 18 19:37:58 user-VirtualBox systemd-timesyncd[598]: Contacted time server [2620:2d:4000:1::40]:123 (ntp.ubuntu.com).
Dez 18 19:37:58 user-VirtualBox systemd-timesyncd[598]: Initial clock synchronization to Thu 2025-12-18 19:37:58.877719 CET.
Dez 18 19:37:59 user-VirtualBox systemd[1]: dmesg.service: Deactivated successfully.
Dez 18 19:38:00 user-VirtualBox systemd[1]: e2scrub_reap.service: Deactivated successfully.
Dez 18 19:38:00 user-VirtualBox systemd[1]: Finished e2scrub_reap.service - Remove Stale Online ext4 Metadata Check Snapshots.
Dez 18 19:38:02 user-VirtualBox systemd[1]: mintsystem.service: Deactivated successfully.
Dez 18 19:38:04 user-VirtualBox systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Dez 18 19:38:11 user-VirtualBox systemd[1]: Started anacron.service - Run anacron jobs.
Dez 18 19:38:11 user-VirtualBox anacron[1462]: Anacron 2.3 started on 2025-12-18
Dez 18 19:38:11 user-VirtualBox systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Dez 18 19:38:11 user-VirtualBox anacron[1462]: Normal exit (0 jobs run)
Dez 18 19:38:11 user-VirtualBox systemd[1]: anacron.service: Deactivated successfully.
Dez 18 19:38:13 user-VirtualBox vboxadd[1482]: VirtualBox Guest Additions: Look at /var/log/vboxadd-setup.log to find out what
Dez 18 19:38:13 user-VirtualBox vboxadd[1482]: went wrong
Dez 18 19:38:21 user-VirtualBox systemd[1]: blueman-mechanism.service: Deactivated successfully.
Dez 18 19:38:32 user-VirtualBox useradd[1485]: failed adding user 'vboxadd', exit code: 9
Dez 18 19:38:32 user-VirtualBox useradd[1486]: failed adding user 'vboxadd', exit code: 9
Dez 18 19:38:32 user-VirtualBox vboxadd[1502]: VirtualBox Guest Additions: Running kernel modules will not be replaced until
Dez 18 19:38:32 user-VirtualBox vboxadd[1502]: the system is restarted or 'rcvboxadd reload' triggered
Dez 18 19:38:33 user-VirtualBox vboxadd[758]: VirtualBox Guest Additions: reloading kernel modules and services
Dez 18 19:38:34 user-VirtualBox kernel: vboxguest: host-version: 7.0.26r168464 0x8000000f
Dez 18 19:38:34 user-VirtualBox kernel: vbg_heartbeat_init: Setting up heartbeat to trigger every 2000 milliseconds
Dez 18 19:38:34 user-VirtualBox kernel: input: VirtualBox mouse integration as /devices/pci0000:00/0000:00:04.0/input/input8
Dez 18 19:38:34 user-VirtualBox (udev-worker)[1934]: vboxguest: /etc/udev/rules.d/60-vboxadd.rules:1 Only network interfaces can be renamed, ignoring NAME="vboxguest".
Dez 18 19:38:34 user-VirtualBox (udev-worker)[1532]: vboxuser: /etc/udev/rules.d/60-vboxadd.rules:2 Only network interfaces can be renamed, ignoring NAME="vboxuser".
Dez 18 19:38:34 user-VirtualBox vboxadd-service.sh[1944]: Starting VirtualBox Guest Addition service.
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.302946 main VBoxService 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:38:34.3029
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.305663 main OS Product: Linux
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.307171 main OS Release: 6.8.0-88-generic
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.308392 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.310918 main Executable: /opt/VBoxGuestAdditions-7.0.12/sbin/VBoxService
18:38:34.310924 main Process ID: 1947
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.336542 main 7.0.12 r159484 started. Verbose level = 0
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.340668 main vbglR3GuestCtrlDetectPeekGetCancelSupport: Supported (#1)
Dez 18 19:38:34 user-VirtualBox vboxadd-service.sh[1954]: VirtualBox Guest Addition service started.
Dez 18 19:38:34 user-VirtualBox kernel: vboxsf: Unknown parameter 'tag'
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.374431 automount vbsvcAutomounterMountIt: Running outdated vboxsf module without support for the 'tag' option?
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.381362 automount vbsvcAutomounterMountIt: Successfully mounted 'Austausch_MINT' on '/media/sf_Austausch_MINT'
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.397355 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:55:01) release log
18:38:34.39736
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.399325 main OS Product: Linux
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.400161 main OS Release: 6.8.0-88-generic
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.402104 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.403655 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxDRMClient
18:38:34.403658 main Process ID: 1951
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.405877 main VBoxDRMClient: found compatible device: /dev/dri/renderD128
Dez 18 19:38:34 user-VirtualBox kernel: 18:38:34.407675 main VBoxDRMClient: IPC server socket access granted to all users
Dez 18 19:38:44 user-VirtualBox vboxadd[2229]: VirtualBox Guest Additions: kernel modules were not reloaded
Dez 18 19:38:44 user-VirtualBox vboxadd[758]: VirtualBox Guest Additions: kernel modules and services were not reloaded
Dez 18 19:38:44 user-VirtualBox vboxadd[758]: The log file /var/log/vboxadd-setup.log may contain further information.
Dez 18 19:38:44 user-VirtualBox systemd[1]: vboxadd.service: Main process exited, code=exited, status=1/FAILURE
Dez 18 19:38:44 user-VirtualBox systemd[1]: vboxadd.service: Failed with result 'exit-code'.
Dez 18 19:38:44 user-VirtualBox systemd[1]: vboxadd.service: Unit process 1951 (VBoxDRMClient) remains running after unit stopped.
Dez 18 19:38:44 user-VirtualBox systemd[1]: vboxadd.service: Unit process 1953 (VBoxService) remains running after unit stopped.
Dez 18 19:38:44 user-VirtualBox systemd[1]: Failed to start vboxadd.service.
Dez 18 19:38:44 user-VirtualBox systemd[1]: vboxadd.service: Consumed 21.825s CPU time, 318.9M memory peak, 0B memory swap peak.
Dez 18 19:38:44 user-VirtualBox systemd[1]: Starting lightdm.service - Light Display Manager...
Dez 18 19:38:44 user-VirtualBox systemd[1]: Starting vboxadd-service.service...
Dez 18 19:38:44 user-VirtualBox systemd[1]: Started vboxadd-service.service.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Received SIGRTMIN+21 from PID 191 (plymouthd).
Dez 18 19:38:45 user-VirtualBox systemd[1]: Finished plymouth-quit-wait.service - Hold until boot process finishes up.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Starting setvtrgb.service - Set console scheme...
Dez 18 19:38:45 user-VirtualBox systemd[1]: Started lightdm.service - Light Display Manager.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Finished setvtrgb.service - Set console scheme.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Created slice system-getty.slice - Slice /system/getty.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Started getty@tty1.service - Getty on tty1.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Reached target getty.target - Login Prompts.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Reached target multi-user.target - Multi-User System.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Reached target graphical.target - Graphical Interface.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Starting systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP...
Dez 18 19:38:45 user-VirtualBox systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Finished systemd-update-utmp-runlevel.service - Record Runlevel Change in UTMP.
Dez 18 19:38:45 user-VirtualBox systemd[1]: Startup finished in 5.059s (kernel) + 1min 40.286s (userspace) = 1min 45.346s.
Dez 18 19:38:50 user-VirtualBox lightdm[2486]: pam_unix(lightdm-autologin:session): session opened for user user(uid=1000) by (uid=0)
Dez 18 19:38:50 user-VirtualBox systemd[1]: Created slice user-1000.slice - User Slice of UID 1000.
Dez 18 19:38:50 user-VirtualBox systemd[1]: Starting user-runtime-dir@1000.service - User Runtime Directory /run/user/1000...
Dez 18 19:38:50 user-VirtualBox systemd-logind[755]: New session c1 of user user.
Dez 18 19:38:50 user-VirtualBox systemd[1]: Finished user-runtime-dir@1000.service - User Runtime Directory /run/user/1000.
Dez 18 19:38:50 user-VirtualBox systemd[1]: Starting user@1000.service - User Manager for UID 1000...
Dez 18 19:38:50 user-VirtualBox (systemd)[2494]: pam_unix(systemd-user:session): session opened for user user(uid=1000) by user(uid=0)
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Queued start job for default target default.target.
Dez 18 19:38:54 user-VirtualBox kernel: 18:38:34.412753 DrmResizeThread VBoxDRMClient: push screen layout data of 1 display(s) to DRM stack, fPartialLayout=false, rc=V
Dez 18 19:38:54 user-VirtualBox systemd-journald[278]: /var/log/journal/13da9b9ba4b64ddebab4fcc2387bfa6d/user-1000.journal: Journal file uses a different sequence number ID, rotating.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Created slice app.slice - User Application Slice.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Created slice session.slice - User Core Session Slice.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Started launchpadlib-cache-clean.timer - Clean up old files in the Launchpadlib cache.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Reached target paths.target - Paths.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Reached target timers.target - Timers.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Starting dbus.socket - D-Bus User Message Bus Socket...
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on dirmngr.socket - GnuPG network certificate management daemon.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on gcr-ssh-agent.socket - GCR ssh-agent wrapper.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on gnome-keyring-daemon.socket - GNOME Keyring daemon.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on gpg-agent-browser.socket - GnuPG cryptographic agent and passphrase cache (access for web browsers).
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on gpg-agent-extra.socket - GnuPG cryptographic agent and passphrase cache (restricted).
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Starting gpg-agent-ssh.socket - GnuPG cryptographic agent (ssh-agent emulation)...
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on gpg-agent.socket - GnuPG cryptographic agent and passphrase cache.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on keyboxd.socket - GnuPG public key management service.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on pipewire-pulse.socket - PipeWire PulseAudio.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on pipewire.socket - PipeWire Multimedia System Sockets.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on pk-debconf-helper.socket - debconf communication socket.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on speech-dispatcher.socket - Speech Dispatcher Socket.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on dbus.socket - D-Bus User Message Bus Socket.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Listening on gpg-agent-ssh.socket - GnuPG cryptographic agent (ssh-agent emulation).
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Reached target sockets.target - Sockets.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Reached target basic.target - Basic System.
Dez 18 19:38:52 user-VirtualBox systemd[1]: Started user@1000.service - User Manager for UID 1000.
Dez 18 19:38:52 user-VirtualBox systemd[1]: Started session-c1.scope - Session c1 of User user.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Started pipewire.service - PipeWire Multimedia Service.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Started filter-chain.service - PipeWire filter chain daemon.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Started wireplumber.service - Multimedia Service Session Manager.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Started pipewire-pulse.service - PipeWire PulseAudio.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Reached target default.target - Main User Target.
Dez 18 19:38:52 user-VirtualBox systemd[2494]: Startup finished in 1.362s.
Dez 18 19:38:53 user-VirtualBox systemd[2494]: Starting dbus.service - D-Bus User Message Bus...
Dez 18 19:38:56 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] AppArmor D-Bus mediation is enabled
Dez 18 19:38:56 user-VirtualBox systemd[2494]: Started dbus.service - D-Bus User Message Bus.
Dez 18 19:38:56 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.systemd1'
Dez 18 19:38:56 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.30' (uid=1000 pid=2504 comm="/usr/bin/pipewire" label="unconfined")
Dez 18 19:38:56 user-VirtualBox systemd[1]: Starting rtkit-daemon.service - RealtimeKit Scheduling Policy Service...
Dez 18 19:38:56 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully called chroot.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully dropped privileges.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully limited resources.
Dez 18 19:38:56 user-VirtualBox systemd[1]: Started rtkit-daemon.service - RealtimeKit Scheduling Policy Service.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Running.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Canary thread running.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Watchdog thread running.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 0 threads of 0 processes of 0 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2506 of process 2506 owned by '1000' high priority at nice level -11.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 1 threads of 1 processes of 1 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2504 of process 2504 owned by '1000' high priority at nice level -11.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 2 threads of 2 processes of 1 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2507 of process 2507 owned by '1000' high priority at nice level -11.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 3 threads of 3 processes of 1 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2556 of process 2505 owned by '1000' RT at priority 20.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 4 threads of 4 processes of 1 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2559 of process 2506 owned by '1000' RT at priority 20.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 5 threads of 4 processes of 1 users.
Dez 18 19:38:56 user-VirtualBox pipewire[2504]: mod.jackdbus-detect: Failed to receive jackdbus reply: org.freedesktop.DBus.Error.ServiceUnknown: The name org.jackaudio.service was not provided by any .service files
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2564 of process 2504 owned by '1000' RT at priority 20.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 6 threads of 4 processes of 1 users.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Successfully made thread 2572 of process 2507 owned by '1000' RT at priority 20.
Dez 18 19:38:56 user-VirtualBox rtkit-daemon[2539]: Supervising 7 threads of 4 processes of 1 users.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: SPA handle 'api.libcamera.enum.manager' could not be loaded; is it installed?
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: PipeWire's libcamera SPA missing or broken. libcamera not supported.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: Failed to get percentage from UPower: org.freedesktop.DBus.Error.NameHasNoOwner
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: BlueZ system service is not available
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'Center' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'LFE' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'Center' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'LFE' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'Center' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'LFE' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'Center' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'LFE' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'Center' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:57 user-VirtualBox wireplumber[2506]: The decibel volume range for element 'LFE' (-4650 dB - -2400 dB) has negative maximum. Disabling the decibel range.
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.803398 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:38:58.80340
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.806831 main OS Product: Linux
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.808010 main OS Release: 6.8.0-88-generic
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.810986 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.812856 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:38:58.812859 main Process ID: 2663
18
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.815301 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.817550 main Service: Shared Clipboard
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.824795 main Initializing service ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.826167 main Creating worker thread ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.852350 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:38:58.85236
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.855038 main OS Product: Linux
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.856064 main OS Release: 6.8.0-88-generic
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.857207 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.859176 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:38:58.859180 main Process ID: 2671
18
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.861706 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.863702 main Service: VirtualBox host version check
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.868762 main Creating worker thread ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.872687 main Service started
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.876680 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:38:58.87668
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.878669 main OS Product: Linux
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.879304 main OS Release: 6.8.0-88-generic
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.880441 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.881993 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:38:58.881996 main Process ID: 2676
18
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.883800 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.885580 main Service: Seamless Mode Support
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.891343 main Initializing service ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.896752 main Creating worker thread ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.898499 main Service started
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.903631 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:38:58.90363
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.905724 main OS Product: Linux
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.906901 main OS Release: 6.8.0-88-generic
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.908144 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.910119 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:38:58.910123 main Process ID: 2683
18
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.912408 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.914366 main Service: Drag'n'Drop
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.918478 main Initializing service ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.926861 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:38:58.92686
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.928700 main Creating worker thread ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.928723 main OS Product: Linux
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.930436 main OS Release: 6.8.0-88-generic
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.931248 dnd Proxy window=0x600001 (debug mode: false), root window=0x22f ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.931373 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.933773 main Service started
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.933784 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:38:58.933788 main Process ID: 2691
18
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.936116 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.938713 main Service: VMSVGA display assistant
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.958846 main Initializing service ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.959625 main VBoxClient VMSVGA: probing Desktop Environment helper 'GNOME3'
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.961298 main VBoxClient VMSVGA: probing Desktop Environment helper 'GENERIC'
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.966990 main VBoxClient VMSVGA: attempt to start display change monitor thread, rc=VINF_SUCCESS
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.968795 main VBoxClient VMSVGA: using Desktop Environment specific display helper 'GENERIC'
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.971081 main VBoxClient VMSVGA: Creating worker thread ...
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.973098 IpcCLT-2699 VBoxDRMClient: IPC client connection started
Dez 18 19:38:58 user-VirtualBox kernel: 18:38:58.974581 main VBoxClient VMSVGA: Service started
Dez 18 19:38:59 user-VirtualBox kernel: 18:38:59.139657 main Service started
Dez 18 19:39:00 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.13' (uid=1000 pid=2508 comm="mate-session" label="unconfined")
Dez 18 19:39:00 user-VirtualBox systemd[2494]: Starting gvfs-daemon.service - Virtual filesystem service...
Dez 18 19:39:00 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.Daemon'
Dez 18 19:39:00 user-VirtualBox systemd[2494]: Started gvfs-daemon.service - Virtual filesystem service.
Dez 18 19:39:00 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.15' (uid=1000 pid=2508 comm="mate-session" label="unconfined")
Dez 18 19:39:00 user-VirtualBox systemd[2494]: Starting at-spi-dbus-bus.service - Accessibility services bus...
Dez 18 19:39:00 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.a11y.Bus'
Dez 18 19:39:00 user-VirtualBox systemd[2494]: Started at-spi-dbus-bus.service - Accessibility services bus.
Dez 18 19:39:02 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.13' (uid=1000 pid=2508 comm="mate-session" label="unconfined")
Dez 18 19:39:02 user-VirtualBox systemd[2494]: Starting dconf.service - User preferences database...
Dez 18 19:39:02 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'ca.desrt.dconf'
Dez 18 19:39:02 user-VirtualBox systemd[2494]: Started dconf.service - User preferences database.
Dez 18 19:39:03 user-VirtualBox mate-session[2508]: WARNING: Unable to find provider '' of required component 'dock'
Dez 18 19:39:03 user-VirtualBox at-spi-bus-launcher[2801]: dbus-daemon[2801]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=2508 comm="mate-session" label="unconfined")
Dez 18 19:39:03 user-VirtualBox systemd[2494]: Started gnome-keyring-daemon.service - GNOME Keyring daemon.
Dez 18 19:39:03 user-VirtualBox gnome-keyring-daemon[2829]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring
Dez 18 19:39:03 user-VirtualBox at-spi-bus-launcher[2801]: dbus-daemon[2801]: Successfully activated service 'org.a11y.atspi.Registry'
Dez 18 19:39:03 user-VirtualBox at-spi-bus-launcher[2831]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Dez 18 19:39:03 user-VirtualBox gnome-keyring-daemon[2829]: The Secret Service was already initialized
Dez 18 19:39:03 user-VirtualBox gnome-keyring-d[2829]: The Secret Service was already initialized
Dez 18 19:39:03 user-VirtualBox gnome-keyring-daemon[2829]: The PKCS#11 component was already initialized
Dez 18 19:39:03 user-VirtualBox gnome-keyring-d[2829]: The PKCS#11 component was already initialized
Dez 18 19:39:03 user-VirtualBox gnome-keyring-daemon[2828]: discover_other_daemon: 1
Dez 18 19:39:04 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.38' (uid=1000 pid=2827 comm="/usr/libexec/mate-settings-daemon" label="unconfined")
Dez 18 19:39:04 user-VirtualBox systemd[1]: Starting systemd-hostnamed.service - Hostname Service...
Dez 18 19:39:04 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.hostname1'
Dez 18 19:39:04 user-VirtualBox systemd[1]: Started systemd-hostnamed.service - Hostname Service.
Dez 18 19:39:06 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.23' (uid=1000 pid=2827 comm="/usr/libexec/mate-settings-daemon" label="unconfined")
Dez 18 19:39:06 user-VirtualBox systemd[2494]: Starting gvfs-udisks2-volume-monitor.service - Virtual filesystem service - disk device monitor...
Dez 18 19:39:06 user-VirtualBox kernel: ------------[ cut here ]------------
Dez 18 19:39:06 user-VirtualBox kernel: UBSAN: array-index-out-of-bounds in /build/linux-7x3OcU/linux-6.8.0/drivers/virt/vboxguest/vboxguest_utils.c:367:20
Dez 18 19:39:06 user-VirtualBox kernel: index 1 is out of range for type '__u64 [1]'
Dez 18 19:39:06 user-VirtualBox kernel: CPU: 1 PID: 2865 Comm: gvfs-udisks2-vo Tainted: P O 6.8.0-88-generic #89-Ubuntu
Dez 18 19:39:06 user-VirtualBox kernel: Hardware name: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
Dez 18 19:39:06 user-VirtualBox kernel: Call Trace:
Dez 18 19:39:06 user-VirtualBox kernel: <TASK>
Dez 18 19:39:06 user-VirtualBox kernel: dump_stack_lvl+0x76/0xa0
Dez 18 19:39:06 user-VirtualBox kernel: dump_stack+0x10/0x20
Dez 18 19:39:06 user-VirtualBox kernel: __ubsan_handle_out_of_bounds+0xc6/0x110
Dez 18 19:39:06 user-VirtualBox kernel: hgcm_call_init_linaddr.part.0+0x1b0/0x1d0 [vboxguest]
Dez 18 19:39:06 user-VirtualBox kernel: vbg_hgcm_call+0x1f8/0x3d0 [vboxguest]
Dez 18 19:39:06 user-VirtualBox kernel: vboxsf_call+0x6c/0xd0 [vboxsf]
Dez 18 19:39:06 user-VirtualBox kernel: vboxsf_dirinfo+0xe1/0x150 [vboxsf]
Dez 18 19:39:06 user-VirtualBox kernel: vboxsf_dir_read_all+0x11c/0x1e0 [vboxsf]
Dez 18 19:39:06 user-VirtualBox kernel: vboxsf_dir_open+0x10d/0x170 [vboxsf]
Dez 18 19:39:06 user-VirtualBox kernel: ? __pfx_vboxsf_dir_open+0x10/0x10 [vboxsf]
Dez 18 19:39:06 user-VirtualBox kernel: do_dentry_open+0x220/0x570
Dez 18 19:39:06 user-VirtualBox kernel: vfs_open+0x33/0x50
Dez 18 19:39:06 user-VirtualBox kernel: do_open+0x2ed/0x470
Dez 18 19:39:06 user-VirtualBox kernel: path_openat+0x135/0x2d0
Dez 18 19:39:06 user-VirtualBox kernel: do_filp_open+0xaf/0x170
Dez 18 19:39:06 user-VirtualBox kernel: do_sys_openat2+0xb3/0xe0
Dez 18 19:39:06 user-VirtualBox kernel: __x64_sys_openat+0x55/0xa0
Dez 18 19:39:06 user-VirtualBox kernel: x64_sys_call+0x1eb1/0x25a0
Dez 18 19:39:06 user-VirtualBox kernel: do_syscall_64+0x7f/0x180
Dez 18 19:39:06 user-VirtualBox kernel: ? do_read_fault+0x112/0x200
Dez 18 19:39:06 user-VirtualBox kernel: ? do_fault+0xf0/0x260
Dez 18 19:39:06 user-VirtualBox kernel: ? handle_pte_fault+0x114/0x1d0
Dez 18 19:39:06 user-VirtualBox kernel: ? __handle_mm_fault+0x654/0x800
Dez 18 19:39:06 user-VirtualBox kernel: ? rseq_get_rseq_cs+0x22/0x280
Dez 18 19:39:06 user-VirtualBox kernel: ? rseq_ip_fixup+0x90/0x1f0
Dez 18 19:39:06 user-VirtualBox kernel: ? restore_fpregs_from_fpstate+0x3d/0xd0
Dez 18 19:39:06 user-VirtualBox kernel: ? switch_fpu_return+0x55/0xf0
Dez 18 19:39:06 user-VirtualBox kernel: ? arch_exit_to_user_mode_prepare.isra.0+0x95/0xe0
Dez 18 19:39:06 user-VirtualBox kernel: ? irqentry_exit_to_user_mode+0x38/0x1e0
Dez 18 19:39:06 user-VirtualBox kernel: ? irqentry_exit+0x43/0x50
Dez 18 19:39:06 user-VirtualBox kernel: ? exc_page_fault+0x94/0x1b0
Dez 18 19:39:06 user-VirtualBox kernel: entry_SYSCALL_64_after_hwframe+0x78/0x80
Dez 18 19:39:06 user-VirtualBox kernel: RIP: 0033:0x7bb19ab1c8e4
Dez 18 19:39:06 user-VirtualBox kernel: Code: 00 00 48 89 45 c8 31 c0 41 83 e2 40 75 38 89 f0 f7 d0 a9 00 00 41 00 74 2d 89 f2 b8 01 01 00 00 48 89 fe bf 9c ff ff ff 0f 05 <48> 3d 00 f0 ff ff 77 34 48 8b 55 c8 64 48 2b 14 25 28 00 00 00 75
Dez 18 19:39:06 user-VirtualBox kernel: RSP: 002b:00007ffc3d88fab0 EFLAGS: 00000206 ORIG_RAX: 0000000000000101
Dez 18 19:39:06 user-VirtualBox kernel: RAX: ffffffffffffffda RBX: 00005ee824ad73c0 RCX: 00007bb19ab1c8e4
Dez 18 19:39:06 user-VirtualBox kernel: RDX: 0000000000090800 RSI: 00005ee824ad70f0 RDI: 00000000ffffff9c
Dez 18 19:39:06 user-VirtualBox kernel: RBP: 00007ffc3d88fb00 R08: 00007bb18c006ee0 R09: 00007bb18c00b9c8
Dez 18 19:39:06 user-VirtualBox kernel: R10: 0000000000000000 R11: 0000000000000206 R12: 00005ee824ad70f0
Dez 18 19:39:06 user-VirtualBox kernel: R13: 0000000000000000 R14: 00007bb19b1e90b5 R15: 00007bb19b1fa608
Dez 18 19:39:06 user-VirtualBox kernel: </TASK>
Dez 18 19:39:06 user-VirtualBox kernel: ---[ end trace ]---
Dez 18 19:39:06 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Dez 18 19:39:06 user-VirtualBox systemd[2494]: Started gvfs-udisks2-volume-monitor.service - Virtual filesystem service - disk device monitor.
Dez 18 19:39:06 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.23' (uid=1000 pid=2827 comm="/usr/libexec/mate-settings-daemon" label="unconfined")
Dez 18 19:39:06 user-VirtualBox systemd[2494]: Starting gvfs-goa-volume-monitor.service - Virtual filesystem service - GNOME Online Accounts monitor...
Dez 18 19:39:06 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.gnome.OnlineAccounts' requested by ':1.28' (uid=1000 pid=2873 comm="/usr/libexec/gvfs-goa-volume-monitor" label="unconfined")
Dez 18 19:39:07 user-VirtualBox gnome-keyring-daemon[2829]: The Secret Service was already initialized
Dez 18 19:39:07 user-VirtualBox gnome-keyring-d[2829]: The Secret Service was already initialized
Dez 18 19:39:08 user-VirtualBox gnome-keyring-daemon[2829]: The SSH agent was already initialized
Dez 18 19:39:08 user-VirtualBox gnome-keyring-d[2829]: The SSH agent was already initialized
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.616546 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:39:08.61655
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.617835 main OS Product: Linux
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.618172 main OS Release: 6.8.0-88-generic
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.618813 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.619491 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:39:08.619492 main Process ID: 2934
18
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.620345 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.621324 main Service: Shared Clipboard
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.634847 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:39:08.63485
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.636230 main OS Product: Linux
Dez 18 19:39:08 user-VirtualBox polkitd[747]: Registered Authentication Agent for unix-session:c1 (system bus name :1.44 [/usr/libexec/polkit-mate-authentication-agent-1], object path /org/mate/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.641064 main OS Release: 6.8.0-88-generic
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.641750 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.642463 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:39:08.642464 main Process ID: 2940
18
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.647128 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.648004 main Service: VirtualBox host version check
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.654076 main Creating worker thread ...
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.654828 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:39:08.65483
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.655633 main OS Product: Linux
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.655915 main OS Release: 6.8.0-88-generic
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.656229 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.656956 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:39:08.656957 main Process ID: 2945
18
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.657808 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.658597 main Service started
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.658911 main Service: Seamless Mode Support
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.664817 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:39:08.66482
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.666556 main OS Product: Linux
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.666825 main OS Release: 6.8.0-88-generic
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.667094 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.668545 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:39:08.668546 main Process ID: 2950
18
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.669189 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.672128 main Service: Drag'n'Drop
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.676773 main VBoxClient 7.0.12 r159484 (verbosity: 0) linux.amd64 (Oct 12 2023 18:54:58) release log
18:39:08.67677
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.677527 main OS Product: Linux
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.677876 main OS Release: 6.8.0-88-generic
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.678204 main OS Version: #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.679116 main Executable: /opt/VBoxGuestAdditions-7.0.12/bin/VBoxClient
18:39:08.679117 main Process ID: 2955
18
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.679834 main VBoxClient 7.0.12 r159484 started. Verbose level = 0. Wayland environment detected: no
Dez 18 19:39:08 user-VirtualBox kernel: 18:39:08.680425 main Service: VMSVGA display assistant
Dez 18 19:39:08 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-desktop-portal.service' requested by ':1.29' (uid=1000 pid=2866 comm="/usr/bin/caja" label="unconfined")
Dez 18 19:39:08 user-VirtualBox gnome-keyring-daemon[2829]: The PKCS#11 component was already initialized
Dez 18 19:39:08 user-VirtualBox gnome-keyring-d[2829]: The PKCS#11 component was already initialized
Dez 18 19:39:08 user-VirtualBox systemd[2494]: Starting xdg-desktop-portal.service - Portal service...
Dez 18 19:39:09 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.47' (uid=1000 pid=2965 comm="mate-power-manager" label="unconfined")
Dez 18 19:39:09 user-VirtualBox systemd[1]: Starting upower.service - Daemon for power management...
Dez 18 19:39:09 user-VirtualBox NetworkManager[902]: <info> [1766083149.7570] agent-manager: agent[5eea518fbc498a32,:1.48/org.freedesktop.nm-applet/1000]: agent registered
Dez 18 19:39:09 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.freedesktop.Notifications' requested by ':1.36' (uid=1000 pid=2907 comm="nm-applet" label="unconfined")
Dez 18 19:39:09 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.43' (uid=1000 pid=2974 comm="/usr/libexec/xdg-desktop-portal" label="unconfined")
Dez 18 19:39:09 user-VirtualBox systemd[2494]: Starting xdg-permission-store.service - sandboxed app permission store...
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Dez 18 19:39:10 user-VirtualBox systemd[2494]: Started xdg-permission-store.service - sandboxed app permission store.
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg-document-portal.service' requested by ':1.43' (uid=1000 pid=2974 comm="/usr/libexec/xdg-desktop-portal" label="unconfined")
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.Notifications'
Dez 18 19:39:10 user-VirtualBox systemd[2494]: Starting xdg-document-portal.service - flatpak document portal service...
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.portal.Documents'
Dez 18 19:39:10 user-VirtualBox systemd[2494]: Started xdg-document-portal.service - flatpak document portal service.
Dez 18 19:39:10 user-VirtualBox xdg-document-portal[3027]: Ignoring invalid max threads value 4294967295 > max (100000).
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gtk' unit='xdg-desktop-portal-gtk.service' requested by ':1.43' (uid=1000 pid=2974 comm="/usr/libexec/xdg-desktop-portal" label="unconfined")
Dez 18 19:39:10 user-VirtualBox systemd[2494]: Starting xdg-desktop-portal-gtk.service - Portal service (GTK/GNOME implementation)...
Dez 18 19:39:10 user-VirtualBox goa-daemon[2878]: goa-daemon version 3.50.4 starting
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.gnome.Identity' requested by ':1.47' (uid=1000 pid=2878 comm="/usr/libexec/goa-daemon" label="unconfined")
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gnome.OnlineAccounts'
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Dez 18 19:39:10 user-VirtualBox systemd[2494]: Started gvfs-goa-volume-monitor.service - Virtual filesystem service - GNOME Online Accounts monitor.
Dez 18 19:39:10 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.23' (uid=1000 pid=2827 comm="/usr/libexec/mate-settings-daemon" label="unconfined")
Dez 18 19:39:11 user-VirtualBox systemd[2494]: Starting gvfs-gphoto2-volume-monitor.service - Virtual filesystem service - digital camera monitor...
Dez 18 19:39:11 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk'
Dez 18 19:39:11 user-VirtualBox systemd[2494]: Started xdg-desktop-portal-gtk.service - Portal service (GTK/GNOME implementation).
Dez 18 19:39:11 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gnome.Identity'
Dez 18 19:39:11 user-VirtualBox dbus-daemon[720]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.45' (uid=1000 pid=2899 comm="/usr/bin/python3 /usr/bin/blueman-applet" label="unconfined")
Dez 18 19:39:11 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.bluez.obex' unit='obex.service' requested by ':1.34' (uid=1000 pid=2899 comm="/usr/bin/python3 /usr/bin/blueman-applet" label="unconfined")
Dez 18 19:39:11 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.mate.ScreenSaver' requested by ':1.45' (uid=1000 pid=3008 comm="/usr/libexec/mate-notification-daemon/mate-notific" label="unconfined")
Dez 18 19:39:11 user-VirtualBox systemd[2494]: Starting obex.service - Bluetooth OBEX service...
Dez 18 19:39:11 user-VirtualBox systemd[1]: bluetooth.service - Bluetooth service was skipped because of an unmet condition check (ConditionPathIsDirectory=/sys/class/bluetooth).
Dez 18 19:39:12 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Dez 18 19:39:12 user-VirtualBox systemd[2494]: Started gvfs-gphoto2-volume-monitor.service - Virtual filesystem service - digital camera monitor.
Dez 18 19:39:12 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.23' (uid=1000 pid=2827 comm="/usr/libexec/mate-settings-daemon" label="unconfined")
Dez 18 19:39:12 user-VirtualBox systemd[2494]: Starting gvfs-mtp-volume-monitor.service - Virtual filesystem service - Media Transfer Protocol monitor...
Dez 18 19:39:12 user-VirtualBox rtkit-daemon[2539]: Supervising 7 threads of 4 processes of 1 users.
Dez 18 19:39:12 user-VirtualBox rtkit-daemon[2539]: Supervising 7 threads of 4 processes of 1 users.
Dez 18 19:39:12 user-VirtualBox rtkit-daemon[2539]: Supervising 7 threads of 4 processes of 1 users.
Dez 18 19:39:12 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.xapp' unit='xdg-desktop-portal-xapp.service' requested by ':1.43' (uid=1000 pid=2974 comm="/usr/libexec/xdg-desktop-portal" label="unconfined")
Dez 18 19:39:12 user-VirtualBox systemd[2494]: Starting xdg-desktop-portal-xapp.service - Portal service (XApp implementation)...
Dez 18 19:39:12 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Dez 18 19:39:12 user-VirtualBox systemd[2494]: Started gvfs-mtp-volume-monitor.service - Virtual filesystem service - Media Transfer Protocol monitor.
Dez 18 19:39:12 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.23' (uid=1000 pid=2827 comm="/usr/libexec/mate-settings-daemon" label="unconfined")
Dez 18 19:39:12 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.freedesktop.UPower'
Dez 18 19:39:12 user-VirtualBox systemd[1]: Started upower.service - Daemon for power management.
Dez 18 19:39:12 user-VirtualBox systemd[2494]: Starting gvfs-afc-volume-monitor.service - Virtual filesystem service - Apple File Conduit monitor...
Dez 18 19:39:12 user-VirtualBox obexd[3063]: OBEX daemon 5.72
Dez 18 19:39:12 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.bluez.obex'
Dez 18 19:39:12 user-VirtualBox systemd[2494]: Started obex.service - Bluetooth OBEX service.
Dez 18 19:39:13 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Dez 18 19:39:13 user-VirtualBox systemd[2494]: Started gvfs-afc-volume-monitor.service - Virtual filesystem service - Apple File Conduit monitor.
Dez 18 19:39:13 user-VirtualBox kernel: 18:39:13.694126 main cannot aquire pidfile /home/user/.vboxclient-clipboard-tty7-control.pid, exitting
Dez 18 19:39:13 user-VirtualBox kernel: 18:39:13.732062 main cannot aquire pidfile /home/user/.vboxclient-draganddrop-tty7-control.pid, exitting
Dez 18 19:39:13 user-VirtualBox kernel: 18:39:13.733447 main cannot aquire pidfile /home/user/.vboxclient-seamless-tty7-control.pid, exitting
Dez 18 19:39:13 user-VirtualBox kernel: 18:39:13.744822 main cannot aquire pidfile /home/user/.vboxclient-vmsvga-session-tty7-control.pid, exitting
Dez 18 19:39:15 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.59' (uid=1000 pid=2958 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Dez 18 19:39:15 user-VirtualBox systemd[2494]: Starting evolution-source-registry.service - Evolution source registry...
Dez 18 19:39:16 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Dez 18 19:39:16 user-VirtualBox systemd[2494]: Started evolution-source-registry.service - Evolution source registry.
Dez 18 19:39:17 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.59' (uid=1000 pid=2958 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Dez 18 19:39:17 user-VirtualBox systemd[2494]: Starting evolution-calendar-factory.service - Evolution calendar service...
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.mate.ScreenSaver'
Dez 18 19:39:18 user-VirtualBox mate-screensave[3061]: Der Bildschirmschoner ist in dieser Sitzung bereits aktiv
Dez 18 19:39:18 user-VirtualBox xdg-desktop-por[3074]: ../../../gobject/gsignal.c:2533: signal 'active-changed' is invalid for instance '0x5f6db0074be0' of type 'OrgMateScreenSaverProxy'
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.impl.portal.desktop.xapp'
Dez 18 19:39:18 user-VirtualBox systemd[2494]: Started xdg-desktop-portal-xapp.service - Portal service (XApp implementation).
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.freedesktop.portal.Desktop'
Dez 18 19:39:18 user-VirtualBox systemd[2494]: Started xdg-desktop-portal.service - Portal service.
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.mate.panel.applet.WnckletFactory' requested by ':1.26' (uid=1000 pid=2849 comm="mate-panel" label="unconfined")
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.mate.panel.applet.ClockAppletFactory' requested by ':1.26' (uid=1000 pid=2849 comm="mate-panel" label="unconfined")
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating service name='org.mate.panel.applet.NotificationAreaAppletFactory' requested by ':1.26' (uid=1000 pid=2849 comm="mate-panel" label="unconfined")
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Dez 18 19:39:18 user-VirtualBox systemd[2494]: Started evolution-calendar-factory.service - Evolution calendar service.
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.61' (uid=1000 pid=3113 comm="/usr/libexec/evolution-calendar-factory" label="unconfined")
Dez 18 19:39:18 user-VirtualBox systemd[2494]: Starting evolution-addressbook-factory.service - Evolution address book service...
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.mate.panel.applet.NotificationAreaAppletFactory'
Dez 18 19:39:18 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.mate.panel.applet.WnckletFactory'
Dez 18 19:39:19 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.mate.panel.applet.ClockAppletFactory'
Dez 18 19:39:19 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Dez 18 19:39:19 user-VirtualBox systemd[2494]: Started evolution-addressbook-factory.service - Evolution address book service.
Dez 18 19:39:19 user-VirtualBox dbus-daemon[720]: [system] Activating service name='org.mate.SettingsDaemon.DateTimeMechanism' requested by ':1.58' (uid=1000 pid=3133 comm="/usr/libexec/mate-panel/clock-applet" label="unconfined") (using servicehelper)
Dez 18 19:39:19 user-VirtualBox dbus-daemon[720]: [system] Successfully activated service 'org.mate.SettingsDaemon.DateTimeMechanism'
Dez 18 19:39:20 user-VirtualBox clock-applet[3133]: Negative content width -9 (allocation 1, extents 5x5) while allocating gadget (node button, owner GtkToggleButton)
Dez 18 19:39:22 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.29' (uid=1000 pid=2866 comm="/usr/bin/caja" label="unconfined")
Dez 18 19:39:22 user-VirtualBox systemd[2494]: Starting gvfs-metadata.service - Virtual filesystem metadata service...
Dez 18 19:39:22 user-VirtualBox dbus-daemon[2518]: [session uid=1000 pid=2518] Successfully activated service 'org.gtk.vfs.Metadata'
Dez 18 19:39:22 user-VirtualBox systemd[2494]: Started gvfs-metadata.service - Virtual filesystem metadata service.
Dez 18 19:39:31 user-VirtualBox wnck-applet[3127]: Negative content width -1 (allocation 1, extents 1x1) while allocating gadget (node button, owner WnckButton)
Dez 18 19:39:31 user-VirtualBox wnck-applet[3127]: Negative content width -1 (allocation 1, extents 1x1) while allocating gadget (node button, owner WnckButton)
Dez 18 19:39:34 user-VirtualBox systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Dez 18 19:39:36 user-VirtualBox dbus-daemon[720]: [system] Failed to activate service 'org.bluez': timed out (service_start_timeout=25000ms)
|