staging.inyokaproject.org

Journal

Autor:
Vin88
Datum:
7. Februar 2023 06:47
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 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
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
Feb 07 06:33:57 T-1000 kernel: microcode: microcode updated early to revision 0x2f, date = 2019-02-17
Feb 07 06:33:57 T-1000 kernel: Linux version 5.15.0-58-generic (buildd@lcy02-amd64-101) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #64-Ubuntu SMP Thu Jan 5 11:43:13 UTC 2023 (Ubuntu 5.15.0-58.64-generic 5.15.74)
Feb 07 06:33:57 T-1000 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-58-generic root=UUID=55e477f1-7806-45e6-b3f9-a4e0605930f6 ro quiet splash vt.handoff=7
Feb 07 06:33:57 T-1000 kernel: KERNEL supported cpus:
Feb 07 06:33:57 T-1000 kernel:   Intel GenuineIntel
Feb 07 06:33:57 T-1000 kernel:   AMD AuthenticAMD
Feb 07 06:33:57 T-1000 kernel:   Hygon HygonGenuine
Feb 07 06:33:57 T-1000 kernel:   Centaur CentaurHauls
Feb 07 06:33:57 T-1000 kernel:   zhaoxin   Shanghai  
Feb 07 06:33:57 T-1000 kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Feb 07 06:33:57 T-1000 kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Feb 07 06:33:57 T-1000 kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Feb 07 06:33:57 T-1000 kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Feb 07 06:33:57 T-1000 kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Feb 07 06:33:57 T-1000 kernel: signal: max sigframe size: 1776
Feb 07 06:33:57 T-1000 kernel: BIOS-provided physical RAM map:
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009ebff] usable
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x000000000009ec00-0x000000000009ffff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000bf538fff] usable
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf539000-0x00000000bf58afff] ACPI NVS
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf58b000-0x00000000bf5aafff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5ab000-0x00000000bf5bbfff] ACPI NVS
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5bc000-0x00000000bf5cffff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5d0000-0x00000000bf5d1fff] usable
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5d2000-0x00000000bf5d2fff] ACPI NVS
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5d3000-0x00000000bf5dafff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5db000-0x00000000bf5e4fff] ACPI NVS
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf5e5000-0x00000000bf640fff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf641000-0x00000000bf683fff] ACPI NVS
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000bf684000-0x00000000bf7fffff] usable
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Feb 07 06:33:57 T-1000 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000023f7fffff] usable
Feb 07 06:33:57 T-1000 kernel: NX (Execute Disable) protection: active
Feb 07 06:33:57 T-1000 kernel: SMBIOS 2.6 present.
Feb 07 06:33:57 T-1000 kernel: DMI: System manufacturer System Product Name/P8H61, BIOS 0604 09/28/2011
Feb 07 06:33:57 T-1000 kernel: tsc: Fast TSC calibration using PIT
Feb 07 06:33:57 T-1000 kernel: tsc: Detected 3399.132 MHz processor
Feb 07 06:33:57 T-1000 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Feb 07 06:33:57 T-1000 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Feb 07 06:33:57 T-1000 kernel: last_pfn = 0x23f800 max_arch_pfn = 0x400000000
Feb 07 06:33:57 T-1000 kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Feb 07 06:33:57 T-1000 kernel: total RAM covered: 8184M
Feb 07 06:33:57 T-1000 kernel: Found optimal setting for mtrr clean up
Feb 07 06:33:57 T-1000 kernel:  gran_size: 64K         chunk_size: 16M         num_reg: 5          lose cover RAM: 0G
Feb 07 06:33:57 T-1000 kernel: e820: update [mem 0xc0000000-0xffffffff] usable ==> reserved
Feb 07 06:33:57 T-1000 kernel: last_pfn = 0xbf800 max_arch_pfn = 0x400000000
Feb 07 06:33:57 T-1000 kernel: found SMP MP-table at [mem 0x000fcd00-0x000fcd0f]
Feb 07 06:33:57 T-1000 kernel: RAMDISK: [mem 0x2b45b000-0x31a24fff]
Feb 07 06:33:57 T-1000 kernel: ACPI: Early table checksum verification disabled
Feb 07 06:33:57 T-1000 kernel: ACPI: RSDP 0x00000000000F0420 000024 (v02 ALASKA)
Feb 07 06:33:57 T-1000 kernel: ACPI: XSDT 0x00000000BF583068 00004C (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 07 06:33:57 T-1000 kernel: ACPI: FACP 0x00000000BF58AA30 0000F4 (v04 ALASKA A M I    01072009 AMI  00010013)
Feb 07 06:33:57 T-1000 kernel: ACPI: DSDT 0x00000000BF583140 0078ED (v02 ALASKA A M I    00000000 INTL 20051117)
Feb 07 06:33:57 T-1000 kernel: ACPI: FACS 0x00000000BF5DCF80 000040
Feb 07 06:33:57 T-1000 kernel: ACPI: APIC 0x00000000BF58AB28 000072 (v03 ALASKA A M I    01072009 AMI  00010013)
Feb 07 06:33:57 T-1000 kernel: ACPI: SSDT 0x00000000BF58ABA0 000102 (v01 AMICPU PROC     00000001 MSFT 03000001)
Feb 07 06:33:57 T-1000 kernel: ACPI: MCFG 0x00000000BF58ACA8 00003C (v01 ALASKA A M I    01072009 MSFT 00000097)
Feb 07 06:33:57 T-1000 kernel: ACPI: HPET 0x00000000BF58ACE8 000038 (v01 ALASKA A M I    01072009 AMI. 00000004)
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving FACP table memory at [mem 0xbf58aa30-0xbf58ab23]
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving DSDT table memory at [mem 0xbf583140-0xbf58aa2c]
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving FACS table memory at [mem 0xbf5dcf80-0xbf5dcfbf]
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving APIC table memory at [mem 0xbf58ab28-0xbf58ab99]
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving SSDT table memory at [mem 0xbf58aba0-0xbf58aca1]
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving MCFG table memory at [mem 0xbf58aca8-0xbf58ace3]
Feb 07 06:33:57 T-1000 kernel: ACPI: Reserving HPET table memory at [mem 0xbf58ace8-0xbf58ad1f]
Feb 07 06:33:57 T-1000 kernel: No NUMA configuration found
Feb 07 06:33:57 T-1000 kernel: Faking a node at [mem 0x0000000000000000-0x000000023f7fffff]
Feb 07 06:33:57 T-1000 kernel: NODE_DATA(0) allocated [mem 0x23f7d3000-0x23f7fcfff]
Feb 07 06:33:57 T-1000 kernel: Zone ranges:
Feb 07 06:33:57 T-1000 kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Feb 07 06:33:57 T-1000 kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Feb 07 06:33:57 T-1000 kernel:   Normal   [mem 0x0000000100000000-0x000000023f7fffff]
Feb 07 06:33:57 T-1000 kernel:   Device   empty
Feb 07 06:33:57 T-1000 kernel: Movable zone start for each node
Feb 07 06:33:57 T-1000 kernel: Early memory node ranges
Feb 07 06:33:57 T-1000 kernel:   node   0: [mem 0x0000000000001000-0x000000000009dfff]
Feb 07 06:33:57 T-1000 kernel:   node   0: [mem 0x0000000000100000-0x00000000bf538fff]
Feb 07 06:33:57 T-1000 kernel:   node   0: [mem 0x00000000bf5d0000-0x00000000bf5d1fff]
Feb 07 06:33:57 T-1000 kernel:   node   0: [mem 0x00000000bf684000-0x00000000bf7fffff]
Feb 07 06:33:57 T-1000 kernel:   node   0: [mem 0x0000000100000000-0x000000023f7fffff]
Feb 07 06:33:57 T-1000 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000023f7fffff]
Feb 07 06:33:57 T-1000 kernel: On node 0, zone DMA: 1 pages in unavailable ranges
Feb 07 06:33:57 T-1000 kernel: On node 0, zone DMA: 98 pages in unavailable ranges
Feb 07 06:33:57 T-1000 kernel: On node 0, zone DMA32: 151 pages in unavailable ranges
Feb 07 06:33:57 T-1000 kernel: On node 0, zone DMA32: 178 pages in unavailable ranges
Feb 07 06:33:57 T-1000 kernel: On node 0, zone Normal: 2048 pages in unavailable ranges
Feb 07 06:33:57 T-1000 kernel: On node 0, zone Normal: 2048 pages in unavailable ranges
Feb 07 06:33:57 T-1000 kernel: ACPI: PM-Timer IO Port: 0x408
Feb 07 06:33:57 T-1000 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Feb 07 06:33:57 T-1000 kernel: IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
Feb 07 06:33:57 T-1000 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Feb 07 06:33:57 T-1000 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Feb 07 06:33:57 T-1000 kernel: ACPI: Using ACPI (MADT) for SMP configuration information
Feb 07 06:33:57 T-1000 kernel: ACPI: HPET id: 0x8086a701 base: 0xfed00000
Feb 07 06:33:57 T-1000 kernel: TSC deadline timer available
Feb 07 06:33:57 T-1000 kernel: smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x0009efff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf539000-0xbf58afff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf58b000-0xbf5aafff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf5ab000-0xbf5bbfff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf5bc000-0xbf5cffff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf5d2000-0xbf5d2fff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf5d3000-0xbf5dafff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf5db000-0xbf5e4fff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf5e5000-0xbf640fff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf641000-0xbf683fff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xbf800000-0xfed1bfff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfeffffff]
Feb 07 06:33:57 T-1000 kernel: PM: hibernation: Registered nosave memory: [mem 0xff000000-0xffffffff]
Feb 07 06:33:57 T-1000 kernel: [mem 0xbf800000-0xfed1bfff] available for PCI devices
Feb 07 06:33:57 T-1000 kernel: Booting paravirtualized kernel on bare hardware
Feb 07 06:33:57 T-1000 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Feb 07 06:33:57 T-1000 kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Feb 07 06:33:57 T-1000 kernel: percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u524288
Feb 07 06:33:57 T-1000 kernel: pcpu-alloc: s208896 r8192 d28672 u524288 alloc=1*2097152
Feb 07 06:33:57 T-1000 kernel: pcpu-alloc: [0] 0 1 2 3 
Feb 07 06:33:57 T-1000 kernel: Built 1 zonelists, mobility grouping on.  Total pages: 2059772
Feb 07 06:33:57 T-1000 kernel: Policy zone: Normal
Feb 07 06:33:57 T-1000 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-5.15.0-58-generic root=UUID=55e477f1-7806-45e6-b3f9-a4e0605930f6 ro quiet splash vt.handoff=7
Feb 07 06:33:57 T-1000 kernel: Unknown kernel command line parameters "splash BOOT_IMAGE=/boot/vmlinuz-5.15.0-58-generic", will be passed to user space.
Feb 07 06:33:57 T-1000 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Feb 07 06:33:57 T-1000 kernel: Memory: 8009408K/8370512K available (16393K kernel code, 4378K rwdata, 10812K rodata, 3232K init, 6568K bss, 360844K reserved, 0K cma-reserved)
Feb 07 06:33:57 T-1000 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Feb 07 06:33:57 T-1000 kernel: Kernel/User page tables isolation: enabled
Feb 07 06:33:57 T-1000 kernel: ftrace: allocating 50532 entries in 198 pages
Feb 07 06:33:57 T-1000 kernel: ftrace: allocated 198 pages with 4 groups
Feb 07 06:33:57 T-1000 kernel: rcu: Hierarchical RCU implementation.
Feb 07 06:33:57 T-1000 kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
Feb 07 06:33:57 T-1000 kernel:         Rude variant of Tasks RCU enabled.
Feb 07 06:33:57 T-1000 kernel:         Tracing variant of Tasks RCU enabled.
Feb 07 06:33:57 T-1000 kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Feb 07 06:33:57 T-1000 kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=4
Feb 07 06:33:57 T-1000 kernel: NR_IRQS: 524544, nr_irqs: 456, preallocated irqs: 16
Feb 07 06:33:57 T-1000 kernel: Console: colour dummy device 80x25
Feb 07 06:33:57 T-1000 kernel: printk: console [tty0] enabled
Feb 07 06:33:57 T-1000 kernel: ACPI: Core revision 20210730
Feb 07 06:33:57 T-1000 kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Feb 07 06:33:57 T-1000 kernel: APIC: Switch to symmetric I/O mode setup
Feb 07 06:33:57 T-1000 kernel: x2apic: IRQ remapping doesn't support X2APIC mode
Feb 07 06:33:57 T-1000 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Feb 07 06:33:57 T-1000 kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x30ff1b2d9ca, max_idle_ns: 440795355807 ns
Feb 07 06:33:57 T-1000 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 6798.26 BogoMIPS (lpj=13596528)
Feb 07 06:33:57 T-1000 kernel: pid_max: default: 32768 minimum: 301
Feb 07 06:33:57 T-1000 kernel: LSM: Security Framework initializing
Feb 07 06:33:57 T-1000 kernel: landlock: Up and running.
Feb 07 06:33:57 T-1000 kernel: Yama: becoming mindful.
Feb 07 06:33:57 T-1000 kernel: AppArmor: AppArmor initialized
Feb 07 06:33:57 T-1000 kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: x86/cpu: VMX (outside TXT) disabled by BIOS
Feb 07 06:33:57 T-1000 kernel: CPU0: Thermal monitoring enabled (TM1)
Feb 07 06:33:57 T-1000 kernel: process: using mwait in idle threads
Feb 07 06:33:57 T-1000 kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Feb 07 06:33:57 T-1000 kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Feb 07 06:33:57 T-1000 kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Feb 07 06:33:57 T-1000 kernel: Spectre V2 : Mitigation: Retpolines
Feb 07 06:33:57 T-1000 kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Feb 07 06:33:57 T-1000 kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Feb 07 06:33:57 T-1000 kernel: Spectre V2 : Enabling Restricted Speculation for firmware calls
Feb 07 06:33:57 T-1000 kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
Feb 07 06:33:57 T-1000 kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Feb 07 06:33:57 T-1000 kernel: MDS: Mitigation: Clear CPU buffers
Feb 07 06:33:57 T-1000 kernel: MMIO Stale Data: Unknown: No mitigations
Feb 07 06:33:57 T-1000 kernel: Freeing SMP alternatives memory: 40K
Feb 07 06:33:57 T-1000 kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 1055
Feb 07 06:33:57 T-1000 kernel: smpboot: CPU0: Intel(R) Core(TM) i5-2500 CPU @ 3.30GHz (family: 0x6, model: 0x2a, stepping: 0x7)
Feb 07 06:33:57 T-1000 kernel: Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
Feb 07 06:33:57 T-1000 kernel: ... version:                3
Feb 07 06:33:57 T-1000 kernel: ... bit width:              48
Feb 07 06:33:57 T-1000 kernel: ... generic registers:      8
Feb 07 06:33:57 T-1000 kernel: ... value mask:             0000ffffffffffff
Feb 07 06:33:57 T-1000 kernel: ... max period:             00007fffffffffff
Feb 07 06:33:57 T-1000 kernel: ... fixed-purpose events:   3
Feb 07 06:33:57 T-1000 kernel: ... event mask:             00000007000000ff
Feb 07 06:33:57 T-1000 kernel: rcu: Hierarchical SRCU implementation.
Feb 07 06:33:57 T-1000 kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Feb 07 06:33:57 T-1000 kernel: smp: Bringing up secondary CPUs ...
Feb 07 06:33:57 T-1000 kernel: x86: Booting SMP configuration:
Feb 07 06:33:57 T-1000 kernel: .... node  #0, CPUs:      #1 #2 #3
Feb 07 06:33:57 T-1000 kernel: smp: Brought up 1 node, 4 CPUs
Feb 07 06:33:57 T-1000 kernel: smpboot: Max logical packages: 1
Feb 07 06:33:57 T-1000 kernel: smpboot: Total of 4 processors activated (27193.05 BogoMIPS)
Feb 07 06:33:57 T-1000 kernel: devtmpfs: initialized
Feb 07 06:33:57 T-1000 kernel: x86/mm: Memory block size: 128MB
Feb 07 06:33:57 T-1000 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbf539000-0xbf58afff] (335872 bytes)
Feb 07 06:33:57 T-1000 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbf5ab000-0xbf5bbfff] (69632 bytes)
Feb 07 06:33:57 T-1000 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbf5d2000-0xbf5d2fff] (4096 bytes)
Feb 07 06:33:57 T-1000 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbf5db000-0xbf5e4fff] (40960 bytes)
Feb 07 06:33:57 T-1000 kernel: ACPI: PM: Registering ACPI NVS region [mem 0xbf641000-0xbf683fff] (274432 bytes)
Feb 07 06:33:57 T-1000 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Feb 07 06:33:57 T-1000 kernel: futex hash table entries: 1024 (order: 4, 65536 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: pinctrl core: initialized pinctrl subsystem
Feb 07 06:33:57 T-1000 kernel: PM: RTC time: 05:33:43, date: 2023-02-07
Feb 07 06:33:57 T-1000 kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family
Feb 07 06:33:57 T-1000 kernel: DMA: preallocated 1024 KiB GFP_KERNEL pool for atomic allocations
Feb 07 06:33:57 T-1000 kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
Feb 07 06:33:57 T-1000 kernel: DMA: preallocated 1024 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
Feb 07 06:33:57 T-1000 kernel: audit: initializing netlink subsys (disabled)
Feb 07 06:33:57 T-1000 kernel: audit: type=2000 audit(1675748022.048:1): state=initialized audit_enabled=0 res=1
Feb 07 06:33:57 T-1000 kernel: thermal_sys: Registered thermal governor 'fair_share'
Feb 07 06:33:57 T-1000 kernel: thermal_sys: Registered thermal governor 'bang_bang'
Feb 07 06:33:57 T-1000 kernel: thermal_sys: Registered thermal governor 'step_wise'
Feb 07 06:33:57 T-1000 kernel: thermal_sys: Registered thermal governor 'user_space'
Feb 07 06:33:57 T-1000 kernel: thermal_sys: Registered thermal governor 'power_allocator'
Feb 07 06:33:57 T-1000 kernel: EISA bus registered
Feb 07 06:33:57 T-1000 kernel: cpuidle: using governor ladder
Feb 07 06:33:57 T-1000 kernel: cpuidle: using governor menu
Feb 07 06:33:57 T-1000 kernel: ACPI: bus type PCI registered
Feb 07 06:33:57 T-1000 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Feb 07 06:33:57 T-1000 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Feb 07 06:33:57 T-1000 kernel: PCI: not using MMCONFIG
Feb 07 06:33:57 T-1000 kernel: PCI: Using configuration type 1 for base access
Feb 07 06:33:57 T-1000 kernel: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
Feb 07 06:33:57 T-1000 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Feb 07 06:33:57 T-1000 kernel: Kprobes globally optimized
Feb 07 06:33:57 T-1000 kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Feb 07 06:33:57 T-1000 kernel: fbcon: Taking over console
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(Module Device)
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(Processor Device)
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(Linux-Dell-Video)
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Feb 07 06:33:57 T-1000 kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Feb 07 06:33:57 T-1000 kernel: ACPI: 2 ACPI AML tables successfully acquired and loaded
Feb 07 06:33:57 T-1000 kernel: ACPI: Dynamic OEM Table Load:
Feb 07 06:33:57 T-1000 kernel: ACPI: SSDT 0xFFFF9D6B00301000 00038C (v01 AMI    IST      00000001 MSFT 03000001)
Feb 07 06:33:57 T-1000 kernel: ACPI: Dynamic OEM Table Load:
Feb 07 06:33:57 T-1000 kernel: ACPI: SSDT 0xFFFF9D6B00BB90C0 000084 (v01 AMI    CST      00000001 MSFT 03000001)
Feb 07 06:33:57 T-1000 kernel: ACPI: Interpreter enabled
Feb 07 06:33:57 T-1000 kernel: ACPI: PM: (supports S0 S1 S3 S4 S5)
Feb 07 06:33:57 T-1000 kernel: ACPI: Using IOAPIC for interrupt routing
Feb 07 06:33:57 T-1000 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Feb 07 06:33:57 T-1000 kernel: PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in ACPI motherboard resources
Feb 07 06:33:57 T-1000 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Feb 07 06:33:57 T-1000 kernel: PCI: Using E820 reservations for host bridge windows
Feb 07 06:33:57 T-1000 kernel: ACPI: Enabled 6 GPEs in block 00 to 3F
Feb 07 06:33:57 T-1000 kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Feb 07 06:33:57 T-1000 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
Feb 07 06:33:57 T-1000 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug SHPCHotplug LTR DPC]
Feb 07 06:33:57 T-1000 kernel: acpi PNP0A08:00: _OSC: OS now controls [PME AER PCIeCapability]
Feb 07 06:33:57 T-1000 kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Feb 07 06:33:57 T-1000 kernel: acpi PNP0A08:00: ignoring host bridge window [mem 0x000c8000-0x000dffff window] (conflicts with Video ROM [mem 0x000c0000-0x000cebff])
Feb 07 06:33:57 T-1000 kernel: PCI host bridge to bus 0000:00
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: root bus resource [mem 0xc0000000-0xffffffff window]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:00.0: [8086:0100] type 00 class 0x060000
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0: [8086:0101] type 01 class 0x060400
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:16.0: [8086:1c3a] type 00 class 0x078000
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:16.0: reg 0x10: [mem 0xfb107000-0xfb10700f 64bit]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xfb106000-0xfb1063ff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1b.0: [8086:1c20] type 00 class 0x040300
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1b.0: reg 0x10: [mem 0xfb100000-0xfb103fff 64bit]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.1: [8086:1c12] type 01 class 0x060400
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2: [8086:1c14] type 01 class 0x060400
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.3: [8086:1c16] type 01 class 0x060400
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4: [8086:244e] type 01 class 0x060401
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.5: [8086:1c1a] type 01 class 0x060400
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.5: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xfb105000-0xfb1053ff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.0: [8086:1c5c] type 00 class 0x060100
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: [8086:1c00] type 00 class 0x01018f
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: reg 0x10: [io  0xf0d0-0xf0d7]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: reg 0x14: [io  0xf0c0-0xf0c3]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: reg 0x18: [io  0xf0b0-0xf0b7]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: reg 0x1c: [io  0xf0a0-0xf0a3]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: reg 0x20: [io  0xf090-0xf09f]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.2: reg 0x24: [io  0xf080-0xf08f]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.3: [8086:1c22] type 00 class 0x0c0500
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.3: reg 0x10: [mem 0xfb104000-0xfb1040ff 64bit]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.3: reg 0x20: [io  0xf000-0xf01f]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: [8086:1c08] type 00 class 0x010185
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: reg 0x10: [io  0xf070-0xf077]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: reg 0x14: [io  0xf060-0xf063]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: reg 0x18: [io  0xf050-0xf057]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: reg 0x1c: [io  0xf040-0xf043]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: reg 0x20: [io  0xf030-0xf03f]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1f.5: reg 0x24: [io  0xf020-0xf02f]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: [10de:13c2] type 00 class 0x030000
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: reg 0x10: [mem 0xfa000000-0xfaffffff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: reg 0x1c: [mem 0xd0000000-0xd1ffffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: reg 0x24: [io  0xe000-0xe07f]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: reg 0x30: [mem 0xfb000000-0xfb07ffff pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: enabling Extended Tags
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.1: [10de:0fbb] type 00 class 0x040300
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.1: reg 0x10: [mem 0xfb080000-0xfb083fff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.1: enabling Extended Tags
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfb0fffff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Feb 07 06:33:57 T-1000 kernel: pci 0000:04:00.0: [10ec:8168] type 00 class 0x020000
Feb 07 06:33:57 T-1000 kernel: pci 0000:04:00.0: reg 0x10: [io  0xd000-0xd0ff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:04:00.0: reg 0x18: [mem 0xd2104000-0xd2104fff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:04:00.0: reg 0x20: [mem 0xd2100000-0xd2103fff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:04:00.0: supports D1 D2
Feb 07 06:33:57 T-1000 kernel: pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2:   bridge window [io  0xd000-0xdfff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2:   bridge window [mem 0xd2100000-0xd21fffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.3: PCI bridge to [bus 05]
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0: [1b21:1080] type 01 class 0x060401
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4: PCI bridge to [bus 06-07] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:07: extended config space not accessible
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0: PCI bridge to [bus 07] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0:   bridge window [io  0x0000-0x0cf7 window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0:   bridge window [io  0x0d00-0xffff window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0:   bridge window [mem 0xc0000000-0xffffffff window] (subtractive decode)
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKA configured for IRQ 11
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKB configured for IRQ 10
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKC configured for IRQ 10
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKD configured for IRQ 3
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKE configured for IRQ 7
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKF configured for IRQ 3
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKG configured for IRQ 11
Feb 07 06:33:57 T-1000 kernel: ACPI: PCI: Interrupt link LNKH configured for IRQ 7
Feb 07 06:33:57 T-1000 kernel: iommu: Default domain type: Translated 
Feb 07 06:33:57 T-1000 kernel: iommu: DMA domain TLB invalidation policy: lazy mode 
Feb 07 06:33:57 T-1000 kernel: SCSI subsystem initialized
Feb 07 06:33:57 T-1000 kernel: libata version 3.00 loaded.
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: vgaarb: setting as boot VGA device
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.0: vgaarb: bridge control possible
Feb 07 06:33:57 T-1000 kernel: vgaarb: loaded
Feb 07 06:33:57 T-1000 kernel: ACPI: bus type USB registered
Feb 07 06:33:57 T-1000 kernel: usbcore: registered new interface driver usbfs
Feb 07 06:33:57 T-1000 kernel: usbcore: registered new interface driver hub
Feb 07 06:33:57 T-1000 kernel: usbcore: registered new device driver usb
Feb 07 06:33:57 T-1000 kernel: pps_core: LinuxPPS API ver. 1 registered
Feb 07 06:33:57 T-1000 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Feb 07 06:33:57 T-1000 kernel: PTP clock support registered
Feb 07 06:33:57 T-1000 kernel: EDAC MC: Ver: 3.0.0
Feb 07 06:33:57 T-1000 kernel: NetLabel: Initializing
Feb 07 06:33:57 T-1000 kernel: NetLabel:  domain hash size = 128
Feb 07 06:33:57 T-1000 kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Feb 07 06:33:57 T-1000 kernel: NetLabel:  unlabeled traffic allowed by default
Feb 07 06:33:57 T-1000 kernel: PCI: Using ACPI for IRQ routing
Feb 07 06:33:57 T-1000 kernel: PCI: pci_cache_line_size set to 64 bytes
Feb 07 06:33:57 T-1000 kernel: e820: reserve RAM buffer [mem 0x0009ec00-0x0009ffff]
Feb 07 06:33:57 T-1000 kernel: e820: reserve RAM buffer [mem 0xbf539000-0xbfffffff]
Feb 07 06:33:57 T-1000 kernel: e820: reserve RAM buffer [mem 0xbf5d2000-0xbfffffff]
Feb 07 06:33:57 T-1000 kernel: e820: reserve RAM buffer [mem 0xbf800000-0xbfffffff]
Feb 07 06:33:57 T-1000 kernel: e820: reserve RAM buffer [mem 0x23f800000-0x23fffffff]
Feb 07 06:33:57 T-1000 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Feb 07 06:33:57 T-1000 kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Feb 07 06:33:57 T-1000 kernel: clocksource: Switched to clocksource tsc-early
Feb 07 06:33:57 T-1000 kernel: VFS: Disk quotas dquot_6.6.0
Feb 07 06:33:57 T-1000 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Feb 07 06:33:57 T-1000 kernel: AppArmor: AppArmor Filesystem Enabled
Feb 07 06:33:57 T-1000 kernel: pnp: PnP ACPI init
Feb 07 06:33:57 T-1000 kernel: system 00:00: [mem 0xfed10000-0xfed19fff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:00: [mem 0xe0000000-0xe3ffffff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:00: [mem 0xfed90000-0xfed93fff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:00: [mem 0xfed20000-0xfed3ffff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:00: [mem 0xfee00000-0xfee0ffff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:01: [io  0x0290-0x029f] has been reserved
Feb 07 06:33:57 T-1000 kernel: pnp 00:02: [dma 0 disabled]
Feb 07 06:33:57 T-1000 kernel: system 00:04: [io  0x04d0-0x04d1] has been reserved
Feb 07 06:33:57 T-1000 kernel: pnp 00:05: [dma 0 disabled]
Feb 07 06:33:57 T-1000 kernel: system 00:06: [io  0x0400-0x0453] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:06: [io  0x0458-0x047f] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:06: [io  0x0500-0x057f] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:06: [mem 0xfed1c000-0xfed1ffff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:06: [mem 0xfec00000-0xfecfffff] could not be reserved
Feb 07 06:33:57 T-1000 kernel: system 00:06: [mem 0xfed08000-0xfed08fff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:06: [mem 0xff000000-0xffffffff] has been reserved
Feb 07 06:33:57 T-1000 kernel: system 00:07: [io  0x0454-0x0457] has been reserved
Feb 07 06:33:57 T-1000 kernel: pnp: PnP ACPI: found 8 devices
Feb 07 06:33:57 T-1000 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Feb 07 06:33:57 T-1000 kernel: NET: Registered PF_INET protocol family
Feb 07 06:33:57 T-1000 kernel: IP idents hash table entries: 131072 (order: 8, 1048576 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: tcp_listen_portaddr_hash hash table entries: 4096 (order: 4, 65536 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: TCP: Hash tables configured (established 65536 bind 65536)
Feb 07 06:33:57 T-1000 kernel: MPTCP token hash table entries: 8192 (order: 5, 196608 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes, linear)
Feb 07 06:33:57 T-1000 kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family
Feb 07 06:33:57 T-1000 kernel: NET: Registered PF_XDP protocol family
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0: PCI bridge to [bus 01]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0:   bridge window [io  0xe000-0xefff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0:   bridge window [mem 0xfa000000-0xfb0fffff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.0: PCI bridge to [bus 02]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.1: PCI bridge to [bus 03]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2: PCI bridge to [bus 04]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2:   bridge window [io  0xd000-0xdfff]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.2:   bridge window [mem 0xd2100000-0xd21fffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.3: PCI bridge to [bus 05]
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0: PCI bridge to [bus 07]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.4: PCI bridge to [bus 06-07]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1c.5: PCI bridge to [bus 08]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7 window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: resource 5 [io  0x0d00-0xffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:00: resource 7 [mem 0xc0000000-0xffffffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:01: resource 0 [io  0xe000-0xefff]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:01: resource 1 [mem 0xfa000000-0xfb0fffff]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:04: resource 2 [mem 0xd2100000-0xd21fffff 64bit pref]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:06: resource 4 [io  0x0000-0x0cf7 window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:06: resource 5 [io  0x0d00-0xffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:06: resource 7 [mem 0xc0000000-0xffffffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:07: resource 4 [io  0x0000-0x0cf7 window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:07: resource 5 [io  0x0d00-0xffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:07: resource 6 [mem 0x000a0000-0x000bffff window]
Feb 07 06:33:57 T-1000 kernel: pci_bus 0000:07: resource 7 [mem 0xc0000000-0xffffffff window]
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x160 took 129245 usecs
Feb 07 06:33:57 T-1000 kernel: pci 0000:00:1d.0: quirk_usb_early_handoff+0x0/0x160 took 128871 usecs
Feb 07 06:33:57 T-1000 kernel: pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
Feb 07 06:33:57 T-1000 kernel: pci 0000:06:00.0: Disabling ASPM L0s/L1
Feb 07 06:33:57 T-1000 kernel: PCI: CLS 64 bytes, default 64
Feb 07 06:33:57 T-1000 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Feb 07 06:33:57 T-1000 kernel: software IO TLB: mapped [mem 0x00000000bb539000-0x00000000bf539000] (64MB)
Feb 07 06:33:57 T-1000 kernel: Trying to unpack rootfs image as initramfs...
Feb 07 06:33:57 T-1000 kernel: Initialise system trusted keyrings
Feb 07 06:33:57 T-1000 kernel: Key type blacklist registered
Feb 07 06:33:57 T-1000 kernel: workingset: timestamp_bits=36 max_order=21 bucket_order=0
Feb 07 06:33:57 T-1000 kernel: zbud: loaded
Feb 07 06:33:57 T-1000 kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Feb 07 06:33:57 T-1000 kernel: fuse: init (API version 7.34)
Feb 07 06:33:57 T-1000 kernel: integrity: Platform Keyring initialized
Feb 07 06:33:57 T-1000 kernel: Key type asymmetric registered
Feb 07 06:33:57 T-1000 kernel: Asymmetric key parser 'x509' registered
Feb 07 06:33:57 T-1000 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243)
Feb 07 06:33:57 T-1000 kernel: io scheduler mq-deadline registered
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:01.0: PME: Signaling with IRQ 24
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:1c.0: PME: Signaling with IRQ 25
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:1c.1: PME: Signaling with IRQ 26
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:1c.2: PME: Signaling with IRQ 27
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:1c.3: PME: Signaling with IRQ 28
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:1c.4: PME: Signaling with IRQ 29
Feb 07 06:33:57 T-1000 kernel: pcieport 0000:00:1c.5: PME: Signaling with IRQ 30
Feb 07 06:33:57 T-1000 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Feb 07 06:33:57 T-1000 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Feb 07 06:33:57 T-1000 kernel: ACPI: button: Power Button [PWRB]
Feb 07 06:33:57 T-1000 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Feb 07 06:33:57 T-1000 kernel: ACPI: button: Power Button [PWRF]
Feb 07 06:33:57 T-1000 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Feb 07 06:33:57 T-1000 kernel: 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Feb 07 06:33:57 T-1000 kernel: Linux agpgart interface v0.103
Feb 07 06:33:57 T-1000 kernel: loop: module loaded
Feb 07 06:33:57 T-1000 kernel: ata_piix 0000:00:1f.2: version 2.13
Feb 07 06:33:57 T-1000 kernel: ata_piix 0000:00:1f.2: MAP [ P0 P2 P1 P3 ]
Feb 07 06:33:57 T-1000 kernel: scsi host0: ata_piix
Feb 07 06:33:57 T-1000 kernel: scsi host1: ata_piix
Feb 07 06:33:57 T-1000 kernel: ata1: SATA max UDMA/133 cmd 0xf0d0 ctl 0xf0c0 bmdma 0xf090 irq 20
Feb 07 06:33:57 T-1000 kernel: ata2: SATA max UDMA/133 cmd 0xf0b0 ctl 0xf0a0 bmdma 0xf098 irq 20
Feb 07 06:33:57 T-1000 kernel: ata_piix 0000:00:1f.5: MAP [ P0 -- P1 -- ]
Feb 07 06:33:57 T-1000 kernel: scsi host2: ata_piix
Feb 07 06:33:57 T-1000 kernel: scsi host3: ata_piix
Feb 07 06:33:57 T-1000 kernel: ata3: SATA max UDMA/133 cmd 0xf070 ctl 0xf060 bmdma 0xf030 irq 20
Feb 07 06:33:57 T-1000 kernel: ata4: SATA max UDMA/133 cmd 0xf050 ctl 0xf040 bmdma 0xf038 irq 20
Feb 07 06:33:57 T-1000 kernel: tun: Universal TUN/TAP device driver, 1.6
Feb 07 06:33:57 T-1000 kernel: PPP generic driver version 2.4.2
Feb 07 06:33:57 T-1000 kernel: VFIO - User Level meta-driver version: 0.3
Feb 07 06:33:57 T-1000 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Feb 07 06:33:57 T-1000 kernel: ehci-pci: EHCI PCI platform driver
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1a.0: debug port 2
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1a.0: irq 23, io mem 0xfb106000
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Feb 07 06:33:57 T-1000 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
Feb 07 06:33:57 T-1000 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 07 06:33:57 T-1000 kernel: usb usb1: Product: EHCI Host Controller
Feb 07 06:33:57 T-1000 kernel: usb usb1: Manufacturer: Linux 5.15.0-58-generic ehci_hcd
Feb 07 06:33:57 T-1000 kernel: usb usb1: SerialNumber: 0000:00:1a.0
Feb 07 06:33:57 T-1000 kernel: hub 1-0:1.0: USB hub found
Feb 07 06:33:57 T-1000 kernel: hub 1-0:1.0: 2 ports detected
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1d.0: debug port 2
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1d.0: irq 23, io mem 0xfb105000
Feb 07 06:33:57 T-1000 kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Feb 07 06:33:57 T-1000 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15
Feb 07 06:33:57 T-1000 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 07 06:33:57 T-1000 kernel: usb usb2: Product: EHCI Host Controller
Feb 07 06:33:57 T-1000 kernel: usb usb2: Manufacturer: Linux 5.15.0-58-generic ehci_hcd
Feb 07 06:33:57 T-1000 kernel: usb usb2: SerialNumber: 0000:00:1d.0
Feb 07 06:33:57 T-1000 kernel: hub 2-0:1.0: USB hub found
Feb 07 06:33:57 T-1000 kernel: hub 2-0:1.0: 2 ports detected
Feb 07 06:33:57 T-1000 kernel: ehci-platform: EHCI generic platform driver
Feb 07 06:33:57 T-1000 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Feb 07 06:33:57 T-1000 kernel: ohci-pci: OHCI PCI platform driver
Feb 07 06:33:57 T-1000 kernel: ohci-platform: OHCI generic platform driver
Feb 07 06:33:57 T-1000 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Feb 07 06:33:57 T-1000 kernel: i8042: PNP: No PS/2 controller found.
Feb 07 06:33:57 T-1000 kernel: mousedev: PS/2 mouse device common for all mice
Feb 07 06:33:57 T-1000 kernel: rtc_cmos 00:03: RTC can wake from S4
Feb 07 06:33:57 T-1000 kernel: rtc_cmos 00:03: registered as rtc0
Feb 07 06:33:57 T-1000 kernel: rtc_cmos 00:03: setting system clock to 2023-02-07T05:33:43 UTC (1675748023)
Feb 07 06:33:57 T-1000 kernel: rtc_cmos 00:03: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Feb 07 06:33:57 T-1000 kernel: i2c_dev: i2c /dev entries driver
Feb 07 06:33:57 T-1000 kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
Feb 07 06:33:57 T-1000 kernel: device-mapper: uevent: version 1.0.3
Feb 07 06:33:57 T-1000 kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Probing EISA bus 0
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: EISA: Cannot allocate resource for mainboard
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 1
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 2
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 3
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 4
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 5
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 6
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 7
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: Cannot allocate resource for EISA slot 8
Feb 07 06:33:57 T-1000 kernel: platform eisa.0: EISA: Detected 0 cards
Feb 07 06:33:57 T-1000 kernel: intel_pstate: Intel P-state driver initializing
Feb 07 06:33:57 T-1000 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Feb 07 06:33:57 T-1000 kernel: vesafb: mode is 1024x768x32, linelength=4096, pages=0
Feb 07 06:33:57 T-1000 kernel: vesafb: scrolling: redraw
Feb 07 06:33:57 T-1000 kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Feb 07 06:33:57 T-1000 kernel: vesafb: framebuffer at 0xd1000000, mapped to 0x(____ptrval____), using 3072k, total 3072k
Feb 07 06:33:57 T-1000 kernel: Console: switching to colour frame buffer device 128x48
Feb 07 06:33:57 T-1000 kernel: fb0: VESA VGA frame buffer device
Feb 07 06:33:57 T-1000 kernel: drop_monitor: Initializing network drop monitor service
Feb 07 06:33:57 T-1000 kernel: NET: Registered PF_INET6 protocol family
Feb 07 06:33:57 T-1000 kernel: Freeing initrd memory: 104232K
Feb 07 06:33:57 T-1000 kernel: Segment Routing with IPv6
Feb 07 06:33:57 T-1000 kernel: In-situ OAM (IOAM) with IPv6
Feb 07 06:33:57 T-1000 kernel: NET: Registered PF_PACKET protocol family
Feb 07 06:33:57 T-1000 kernel: Key type dns_resolver registered
Feb 07 06:33:57 T-1000 kernel: microcode: sig=0x206a7, pf=0x2, revision=0x2f
Feb 07 06:33:57 T-1000 kernel: microcode: Microcode Update Driver: v2.2.
Feb 07 06:33:57 T-1000 kernel: IPI shorthand broadcast: enabled
Feb 07 06:33:57 T-1000 kernel: sched_clock: Marking stable (1027391859, 162509)->(1035539835, -7985467)
Feb 07 06:33:57 T-1000 kernel: registered taskstats version 1
Feb 07 06:33:57 T-1000 kernel: Loading compiled-in X.509 certificates
Feb 07 06:33:57 T-1000 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 506bbeb375a739f193260990a9361a99a99bed1c'
Feb 07 06:33:57 T-1000 kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
Feb 07 06:33:57 T-1000 kernel: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
Feb 07 06:33:57 T-1000 kernel: blacklist: Loading compiled-in revocation X.509 certificates
Feb 07 06:33:57 T-1000 kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
Feb 07 06:33:57 T-1000 kernel: zswap: loaded using pool lzo/zbud
Feb 07 06:33:57 T-1000 kernel: Key type ._fscrypt registered
Feb 07 06:33:57 T-1000 kernel: Key type .fscrypt registered
Feb 07 06:33:57 T-1000 kernel: Key type fscrypt-provisioning registered
Feb 07 06:33:57 T-1000 kernel: Key type encrypted registered
Feb 07 06:33:57 T-1000 kernel: AppArmor: AppArmor sha1 policy hashing enabled
Feb 07 06:33:57 T-1000 kernel: ima: No TPM chip found, activating TPM-bypass!
Feb 07 06:33:57 T-1000 kernel: Loading compiled-in module X.509 certificates
Feb 07 06:33:57 T-1000 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 506bbeb375a739f193260990a9361a99a99bed1c'
Feb 07 06:33:57 T-1000 kernel: ima: Allocated hash algorithm: sha1
Feb 07 06:33:57 T-1000 kernel: ima: No architecture policies found
Feb 07 06:33:57 T-1000 kernel: evm: Initialising EVM extended attributes:
Feb 07 06:33:57 T-1000 kernel: evm: security.selinux
Feb 07 06:33:57 T-1000 kernel: evm: security.SMACK64
Feb 07 06:33:57 T-1000 kernel: evm: security.SMACK64EXEC
Feb 07 06:33:57 T-1000 kernel: evm: security.SMACK64TRANSMUTE
Feb 07 06:33:57 T-1000 kernel: evm: security.SMACK64MMAP
Feb 07 06:33:57 T-1000 kernel: evm: security.apparmor
Feb 07 06:33:57 T-1000 kernel: evm: security.ima
Feb 07 06:33:57 T-1000 kernel: evm: security.capability
Feb 07 06:33:57 T-1000 kernel: evm: HMAC attrs: 0x1
Feb 07 06:33:57 T-1000 kernel: PM:   Magic number: 11:58:567
Feb 07 06:33:57 T-1000 kernel: RAS: Correctable Errors collector initialized.
Feb 07 06:33:57 T-1000 kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Feb 07 06:33:57 T-1000 kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Feb 07 06:33:57 T-1000 kernel: ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Feb 07 06:33:57 T-1000 kernel: ata3.00: ATA-10: WDC WD10EZEX-00BBHA0, 01.01A01, max UDMA/133
Feb 07 06:33:57 T-1000 kernel: ata3.00: 1953525168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Feb 07 06:33:57 T-1000 kernel: ata3.00: configured for UDMA/133
Feb 07 06:33:57 T-1000 kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
Feb 07 06:33:57 T-1000 kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Feb 07 06:33:57 T-1000 kernel: hub 1-1:1.0: USB hub found
Feb 07 06:33:57 T-1000 kernel: hub 1-1:1.0: 4 ports detected
Feb 07 06:33:57 T-1000 kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
Feb 07 06:33:57 T-1000 kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Feb 07 06:33:57 T-1000 kernel: hub 2-1:1.0: USB hub found
Feb 07 06:33:57 T-1000 kernel: hub 2-1:1.0: 6 ports detected
Feb 07 06:33:57 T-1000 kernel: tsc: Refined TSC clocksource calibration: 3398.999 MHz
Feb 07 06:33:57 T-1000 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x30fe9d2c09b, max_idle_ns: 440795216589 ns
Feb 07 06:33:57 T-1000 kernel: clocksource: Switched to clocksource tsc
Feb 07 06:33:57 T-1000 kernel: usb 2-1.1: new high-speed USB device number 3 using ehci-pci
Feb 07 06:33:57 T-1000 kernel: usb 2-1.1: New USB device found, idVendor=1058, idProduct=1140, bcdDevice=10.12
Feb 07 06:33:57 T-1000 kernel: usb 2-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=5
Feb 07 06:33:57 T-1000 kernel: usb 2-1.1: Product: My Book 1140
Feb 07 06:33:57 T-1000 kernel: usb 2-1.1: Manufacturer: Western Digital
Feb 07 06:33:57 T-1000 kernel: usb 2-1.1: SerialNumber: 5743415A4148313937333339
Feb 07 06:33:57 T-1000 kernel: usb 2-1.2: new low-speed USB device number 4 using ehci-pci
Feb 07 06:33:57 T-1000 kernel: ata4: failed to resume link (SControl 0)
Feb 07 06:33:57 T-1000 kernel: ata4: SATA link down (SStatus 4 SControl 0)
Feb 07 06:33:57 T-1000 kernel: usb 2-1.2: New USB device found, idVendor=046d, idProduct=c505, bcdDevice=17.21
Feb 07 06:33:57 T-1000 kernel: usb 2-1.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Feb 07 06:33:57 T-1000 kernel: usb 2-1.2: Product: USB Receiver
Feb 07 06:33:57 T-1000 kernel: usb 2-1.2: Manufacturer: Logitech
Feb 07 06:33:57 T-1000 kernel: usb 2-1.3: new low-speed USB device number 5 using ehci-pci
Feb 07 06:33:57 T-1000 kernel: ata2.01: failed to resume link (SControl 0)
Feb 07 06:33:57 T-1000 kernel: ata1.01: failed to resume link (SControl 0)
Feb 07 06:33:57 T-1000 kernel: usb 2-1.3: New USB device found, idVendor=046d, idProduct=c05a, bcdDevice=63.00
Feb 07 06:33:57 T-1000 kernel: usb 2-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Feb 07 06:33:57 T-1000 kernel: usb 2-1.3: Product: USB Optical Mouse
Feb 07 06:33:57 T-1000 kernel: usb 2-1.3: Manufacturer: Logitech
Feb 07 06:33:57 T-1000 kernel: usb 2-1.4: new high-speed USB device number 6 using ehci-pci
Feb 07 06:33:57 T-1000 kernel: ata1.00: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Feb 07 06:33:57 T-1000 kernel: ata1.01: SATA link down (SStatus 0 SControl 0)
Feb 07 06:33:57 T-1000 kernel: ata2.00: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Feb 07 06:33:57 T-1000 kernel: ata2.01: SATA link down (SStatus 0 SControl 0)
Feb 07 06:33:57 T-1000 kernel: ata2.01: link offline, clearing class 3 to NONE
Feb 07 06:33:57 T-1000 kernel: ata2.00: ATAPI: ATAPI   iHAS624   B, GL2A, max UDMA/100
Feb 07 06:33:57 T-1000 kernel: ata1.00: ATA-7: SAMSUNG HD154UI, 1AG01118, max UDMA7
Feb 07 06:33:57 T-1000 kernel: ata1.00: 2930277168 sectors, multi 16: LBA48 NCQ (depth 0/32)
Feb 07 06:33:57 T-1000 kernel: ata1.00: configured for UDMA/133
Feb 07 06:33:57 T-1000 kernel: scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG HD154UI  1118 PQ: 0 ANSI: 5
Feb 07 06:33:57 T-1000 kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Feb 07 06:33:57 T-1000 kernel: sd 0:0:0:0: [sda] 2930277168 512-byte logical blocks: (1.50 TB/1.36 TiB)
Feb 07 06:33:57 T-1000 kernel: sd 0:0:0:0: [sda] Write Protect is off
Feb 07 06:33:57 T-1000 kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Feb 07 06:33:57 T-1000 kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 07 06:33:57 T-1000 kernel: ata2.00: configured for UDMA/100
Feb 07 06:33:57 T-1000 kernel: scsi 1:0:0:0: CD-ROM            ATAPI    iHAS624   B      GL2A PQ: 0 ANSI: 5
Feb 07 06:33:57 T-1000 kernel: usb 2-1.4: New USB device found, idVendor=1235, idProduct=8004, bcdDevice= 2.60
Feb 07 06:33:57 T-1000 kernel: usb 2-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Feb 07 06:33:57 T-1000 kernel: usb 2-1.4: Product: Scarlett 18i6 USB
Feb 07 06:33:57 T-1000 kernel: usb 2-1.4: Manufacturer: Focusrite
Feb 07 06:33:57 T-1000 kernel: usb 2-1.4: SerialNumber: 000068CD
Feb 07 06:33:57 T-1000 kernel:  sda: sda1 sda2 sda3 sda4 < sda5 sda6 sda7 >
Feb 07 06:33:57 T-1000 kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Feb 07 06:33:57 T-1000 kernel: sr 1:0:0:0: [sr0] scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Feb 07 06:33:57 T-1000 kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Feb 07 06:33:57 T-1000 kernel: sr 1:0:0:0: Attached scsi CD-ROM sr0
Feb 07 06:33:57 T-1000 kernel: sr 1:0:0:0: Attached scsi generic sg1 type 5
Feb 07 06:33:57 T-1000 kernel: scsi 2:0:0:0: Direct-Access     ATA      WDC WD10EZEX-00B 1A01 PQ: 0 ANSI: 5
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: Attached scsi generic sg2 type 0
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: [sdb] 1953525168 512-byte logical blocks: (1.00 TB/932 GiB)
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: [sdb] 4096-byte physical blocks
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: [sdb] Write Protect is off
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 07 06:33:57 T-1000 kernel:  sdb: sdb1 sdb2 sdb3
Feb 07 06:33:57 T-1000 kernel: sd 2:0:0:0: [sdb] Attached SCSI disk
Feb 07 06:33:57 T-1000 kernel: Freeing unused decrypted memory: 2036K
Feb 07 06:33:57 T-1000 kernel: Freeing unused kernel image (initmem) memory: 3232K
Feb 07 06:33:57 T-1000 kernel: Write protecting the kernel read-only data: 30720k
Feb 07 06:33:57 T-1000 kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K
Feb 07 06:33:57 T-1000 kernel: Freeing unused kernel image (rodata/data gap) memory: 1476K
Feb 07 06:33:57 T-1000 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Feb 07 06:33:57 T-1000 kernel: x86/mm: Checking user space page tables
Feb 07 06:33:57 T-1000 kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Feb 07 06:33:57 T-1000 kernel: Run /init as init process
Feb 07 06:33:57 T-1000 kernel:   with arguments:
Feb 07 06:33:57 T-1000 kernel:     /init
Feb 07 06:33:57 T-1000 kernel:     splash
Feb 07 06:33:57 T-1000 kernel:   with environment:
Feb 07 06:33:57 T-1000 kernel:     HOME=/
Feb 07 06:33:57 T-1000 kernel:     TERM=linux
Feb 07 06:33:57 T-1000 kernel:     BOOT_IMAGE=/boot/vmlinuz-5.15.0-58-generic
Feb 07 06:33:57 T-1000 kernel: usb-storage 2-1.1:1.0: USB Mass Storage device detected
Feb 07 06:33:57 T-1000 kernel: hid: raw HID events driver (C) Jiri Kosina
Feb 07 06:33:57 T-1000 kernel: scsi host4: usb-storage 2-1.1:1.0
Feb 07 06:33:57 T-1000 kernel: usbcore: registered new interface driver usb-storage
Feb 07 06:33:57 T-1000 kernel: usbcore: registered new interface driver uas
Feb 07 06:33:57 T-1000 kernel: ACPI Warning: SystemIO range 0x0000000000000540-0x000000000000054F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB.PCI0.SBRG.GPBX) (20210730/utaddress-204)
Feb 07 06:33:57 T-1000 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Feb 07 06:33:57 T-1000 kernel: ACPI Warning: SystemIO range 0x0000000000000530-0x000000000000053F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB.PCI0.SBRG.GPBX) (20210730/utaddress-204)
Feb 07 06:33:57 T-1000 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Feb 07 06:33:57 T-1000 kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000057F (\_SB.PCI0.SBRG.GPBX) (20210730/utaddress-204)
Feb 07 06:33:57 T-1000 kernel: ACPI Warning: SystemIO range 0x0000000000000500-0x000000000000052F conflicts with OpRegion 0x0000000000000500-0x000000000000050F (\_GPE.GPIO) (20210730/utaddress-204)
Feb 07 06:33:57 T-1000 kernel: ACPI: OSL: Resource conflict; ACPI support missing from driver?
Feb 07 06:33:57 T-1000 kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Feb 07 06:33:57 T-1000 kernel: r8169 0000:04:00.0 eth0: RTL8168evl/8111evl, 54:04:a6:c4:da:2b, XID 2c9, IRQ 31
Feb 07 06:33:57 T-1000 kernel: r8169 0000:04:00.0 eth0: jumbo features [frames: 9194 bytes, tx checksumming: ko]
Feb 07 06:33:57 T-1000 kernel: usbcore: registered new interface driver usbhid
Feb 07 06:33:57 T-1000 kernel: usbhid: USB HID core driver
Feb 07 06:33:57 T-1000 kernel: cryptd: max_cpu_qlen set to 1000
Feb 07 06:33:57 T-1000 kernel: AVX version of gcm_enc/dec engaged.
Feb 07 06:33:57 T-1000 kernel: AES CTR mode by8 optimization enabled
Feb 07 06:33:57 T-1000 kernel: i801_smbus 0000:00:1f.3: SMBus using PCI interrupt
Feb 07 06:33:57 T-1000 kernel: i2c i2c-0: 2/2 memory slots populated (from DMI)
Feb 07 06:33:57 T-1000 kernel: i2c i2c-0: Successfully instantiated SPD at 0x50
Feb 07 06:33:57 T-1000 kernel: r8169 0000:04:00.0 enp4s0: renamed from eth0
Feb 07 06:33:57 T-1000 kernel: input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.0/0003:046D:C505.0001/input/input2
Feb 07 06:33:57 T-1000 kernel: asus_wmi: ASUS WMI generic driver loaded
Feb 07 06:33:57 T-1000 kernel: hid-generic 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.0-1.2/input0
Feb 07 06:33:57 T-1000 kernel: input: Logitech USB Receiver Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:046D:C505.0002/input/input3
Feb 07 06:33:57 T-1000 kernel: input: Logitech USB Receiver Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:046D:C505.0002/input/input4
Feb 07 06:33:57 T-1000 kernel: input: Logitech USB Receiver System Control as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2/2-1.2:1.1/0003:046D:C505.0002/input/input5
Feb 07 06:33:57 T-1000 kernel: hid-generic 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.0-1.2/input1
Feb 07 06:33:57 T-1000 kernel: input: Logitech USB Optical Mouse as /devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3/2-1.3:1.0/0003:046D:C05A.0003/input/input6
Feb 07 06:33:57 T-1000 kernel: hid-generic 0003:046D:C05A.0003: input,hidraw2: USB HID v1.11 Mouse [Logitech USB Optical Mouse] on usb-0000:00:1d.0-1.3/input0
Feb 07 06:33:57 T-1000 kernel: scsi 4:0:0:0: Direct-Access     WD       My Book 1140     1012 PQ: 0 ANSI: 6
Feb 07 06:33:57 T-1000 kernel: scsi 4:0:0:1: Enclosure         WD       SES Device       1012 PQ: 0 ANSI: 6
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: Attached scsi generic sg3 type 0
Feb 07 06:33:57 T-1000 kernel: scsi 4:0:0:1: Attached scsi generic sg4 type 13
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: [sdc] 3906963456 512-byte logical blocks: (2.00 TB/1.82 TiB)
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: [sdc] Write Protect is off
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: [sdc] Mode Sense: 47 00 10 08
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: [sdc] No Caching mode page found
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: [sdc] Assuming drive cache: write through
Feb 07 06:33:57 T-1000 kernel:  sdc: sdc1
Feb 07 06:33:57 T-1000 kernel: sd 4:0:0:0: [sdc] Attached SCSI disk
Feb 07 06:33:57 T-1000 kernel: scsi 4:0:0:1: Wrong diagnostic page; asked for 1 got 8
Feb 07 06:33:57 T-1000 kernel: scsi 4:0:0:1: Failed to get diagnostic page 0x1
Feb 07 06:33:57 T-1000 kernel: scsi 4:0:0:1: Failed to bind enclosure -19
Feb 07 06:33:57 T-1000 kernel: ses 4:0:0:1: Attached Enclosure device
Feb 07 06:33:57 T-1000 kernel: EXT4-fs (sdb3): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none.
Feb 07 06:33:57 T-1000 systemd[1]: Inserted module 'autofs4'
Feb 07 06:33:57 T-1000 systemd[1]: systemd 249.11-0ubuntu3.6 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY -P11KIT -QRENCODE +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)
Feb 07 06:33:57 T-1000 systemd[1]: Detected architecture x86-64.
Feb 07 06:33:57 T-1000 systemd[1]: Hostname set to <T-1000>.
Feb 07 06:33:57 T-1000 kernel: random: crng init done
Feb 07 06:33:57 T-1000 systemd[1]: Queued start job for default target Graphical Interface.
Feb 07 06:33:57 T-1000 systemd[1]: Created slice Slice /system/modprobe.
Feb 07 06:33:57 T-1000 systemd[1]: Created slice Slice /system/systemd-fsck.
Feb 07 06:33:57 T-1000 systemd[1]: Created slice User and Session Slice.
Feb 07 06:33:57 T-1000 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Feb 07 06:33:57 T-1000 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Feb 07 06:33:57 T-1000 systemd[1]: Reached target User and Group Name Lookups.
Feb 07 06:33:57 T-1000 systemd[1]: Reached target Remote File Systems.
Feb 07 06:33:57 T-1000 systemd[1]: Reached target Slice Units.
Feb 07 06:33:57 T-1000 systemd[1]: Reached target Mounting snaps.
Feb 07 06:33:57 T-1000 systemd[1]: Reached target Local Verity Protected Volumes.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on Syslog Socket.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on fsck to fsckd communication Socket.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on initctl Compatibility Named Pipe.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on Journal Audit Socket.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on Journal Socket (/dev/log).
Feb 07 06:33:57 T-1000 systemd[1]: Listening on Journal Socket.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on udev Control Socket.
Feb 07 06:33:57 T-1000 systemd[1]: Listening on udev Kernel Socket.
Feb 07 06:33:57 T-1000 systemd[1]: Mounting Huge Pages File System...
Feb 07 06:33:57 T-1000 systemd[1]: Mounting POSIX Message Queue File System...
Feb 07 06:33:57 T-1000 systemd[1]: Mounting Kernel Debug File System...
Feb 07 06:33:57 T-1000 systemd[1]: Mounting Kernel Trace File System...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Journal Service...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Set the console keyboard layout...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Create List of Static Device Nodes...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module chromeos_pstore...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module configfs...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module drm...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module efi_pstore...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module fuse...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module pstore_blk...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module pstore_zone...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Module ramoops...
Feb 07 06:33:57 T-1000 systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load Kernel Modules...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Coldplug All udev Devices...
Feb 07 06:33:57 T-1000 systemd[1]: Mounted Huge Pages File System.
Feb 07 06:33:57 T-1000 systemd[1]: Mounted POSIX Message Queue File System.
Feb 07 06:33:57 T-1000 systemd[1]: Mounted Kernel Debug File System.
Feb 07 06:33:57 T-1000 systemd[1]: Mounted Kernel Trace File System.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Create List of Static Device Nodes.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@configfs.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module configfs.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@fuse.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module fuse.
Feb 07 06:33:57 T-1000 systemd[1]: Mounting FUSE Control File System...
Feb 07 06:33:57 T-1000 systemd[1]: Mounting Kernel Configuration File System...
Feb 07 06:33:57 T-1000 systemd[1]: Mounted FUSE Control File System.
Feb 07 06:33:57 T-1000 systemd[1]: Mounted Kernel Configuration File System.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module efi_pstore.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@ramoops.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module ramoops.
Feb 07 06:33:57 T-1000 systemd-journald[318]: Journal started
Feb 07 06:33:57 T-1000 systemd-journald[318]: Runtime Journal (/run/log/journal/c0934f087c8e4cdcac64dc99e233ba90) is 8.0M, max 79.3M, 71.3M free.
Feb 07 06:33:57 T-1000 systemd[1]: Started Journal Service.
Feb 07 06:33:57 T-1000 kernel: EXT4-fs (sdb3): re-mounted. Opts: errors=remount-ro. Quota mode: none.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Remount Root and Kernel File Systems.
Feb 07 06:33:57 T-1000 systemd[1]: Activating swap /swapfile...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Flush Journal to Persistent Storage...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Load/Save Random Seed...
Feb 07 06:33:57 T-1000 systemd[1]: Starting Create System Users...
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@pstore_zone.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module pstore_zone.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@pstore_blk.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module pstore_blk.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module chromeos_pstore.
Feb 07 06:33:57 T-1000 systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Feb 07 06:33:57 T-1000 systemd[1]: modprobe@drm.service: Deactivated successfully.
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load Kernel Module drm.
Feb 07 06:33:57 T-1000 systemd-journald[318]: Time spent on flushing to /var/log/journal/c0934f087c8e4cdcac64dc99e233ba90 is 1.346302s for 816 entries.
Feb 07 06:33:57 T-1000 systemd-journald[318]: System Journal (/var/log/journal/c0934f087c8e4cdcac64dc99e233ba90) is 328.0M, max 4.0G, 3.6G free.
Feb 07 06:34:05 T-1000 kernel: Adding 2097148k swap on /swapfile.  Priority:-2 extents:6 across:2260988k FS
Feb 07 06:34:05 T-1000 kernel: lp: driver loaded but no devices found
Feb 07 06:34:05 T-1000 kernel: ppdev: user-space parallel port driver
Feb 07 06:34:05 T-1000 kernel: parport_pc 00:02: reported by Plug and Play ACPI
Feb 07 06:34:05 T-1000 kernel: parport0: PC-style at 0x378, irq 5 [PCSPP]
Feb 07 06:34:05 T-1000 kernel: lp0: using parport0 (interrupt-driven).
Feb 07 06:34:05 T-1000 kernel: loop0: detected capacity change from 0 to 8
Feb 07 06:34:05 T-1000 kernel: loop1: detected capacity change from 0 to 553184
Feb 07 06:34:05 T-1000 kernel: loop2: detected capacity change from 0 to 557784
Feb 07 06:34:05 T-1000 kernel: loop3: detected capacity change from 0 to 113888
Feb 07 06:34:05 T-1000 kernel: loop4: detected capacity change from 0 to 113888
Feb 07 06:34:05 T-1000 kernel: loop5: detected capacity change from 0 to 126896
Feb 07 06:34:05 T-1000 kernel: loop6: detected capacity change from 0 to 129584
Feb 07 06:34:05 T-1000 kernel: loop7: detected capacity change from 0 to 488864
Feb 07 06:34:05 T-1000 kernel: loop8: detected capacity change from 0 to 489712
Feb 07 06:34:05 T-1000 kernel: loop9: detected capacity change from 0 to 337424
Feb 07 06:34:05 T-1000 kernel: loop10: detected capacity change from 0 to 820832
Feb 07 06:34:05 T-1000 kernel: loop11: detected capacity change from 0 to 187776
Feb 07 06:34:05 T-1000 kernel: loop12: detected capacity change from 0 to 709280
Feb 07 06:34:05 T-1000 kernel: loop13: detected capacity change from 0 to 101624
Feb 07 06:34:05 T-1000 kernel: loop14: detected capacity change from 0 to 346968
Feb 07 06:34:05 T-1000 kernel: loop15: detected capacity change from 0 to 102048
Feb 07 06:34:05 T-1000 kernel: asus_wmi: Initialization: 0x0
Feb 07 06:34:05 T-1000 kernel: asus_wmi: BIOS WMI version: 0.9
Feb 07 06:34:05 T-1000 kernel: asus_wmi: SFUN value: 0x0
Feb 07 06:34:05 T-1000 kernel: eeepc-wmi eeepc-wmi: Detected ASUSWMI, use DCTS
Feb 07 06:34:05 T-1000 kernel: input: Eee PC WMI hotkeys as /devices/platform/eeepc-wmi/input/input7
Feb 07 06:34:05 T-1000 kernel: at24 0-0050: supply vcc not found, using dummy regulator
Feb 07 06:34:05 T-1000 kernel: at24 0-0050: 256 byte spd EEPROM, read-only
Feb 07 06:34:05 T-1000 kernel: RAPL PMU: API unit is 2^-32 Joules, 2 fixed counters, 163840 ms ovfl timer
Feb 07 06:34:05 T-1000 kernel: RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
Feb 07 06:34:05 T-1000 kernel: RAPL PMU: hw unit of domain package 2^-16 Joules
Feb 07 06:34:05 T-1000 kernel: mc: Linux media interface: v0.10
Feb 07 06:34:05 T-1000 kernel: intel_rapl_common: Found RAPL domain package
Feb 07 06:34:05 T-1000 kernel: intel_rapl_common: Found RAPL domain core
Feb 07 06:34:05 T-1000 kernel: intel_rapl_common: RAPL package-0 domain package locked by BIOS
Feb 07 06:34:05 T-1000 kernel: snd_hda_intel 0000:01:00.1: Disabling MSI
Feb 07 06:34:05 T-1000 kernel: snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
Feb 07 06:34:05 T-1000 kernel: usbcore: registered new interface driver snd-usb-audio
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input8
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input9
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input10
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input11
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input12
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input13
Feb 07 06:34:05 T-1000 kernel: input: HDA NVidia HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card2/input14
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC887-VD: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:line
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:    mono: mono_out=0x0
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:    dig-out=0x11/0x0
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:    inputs:
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:      Front Mic=0x19
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:      Rear Mic=0x18
Feb 07 06:34:05 T-1000 kernel: snd_hda_codec_realtek hdaudioC0D0:      Line=0x1a
Feb 07 06:34:05 T-1000 kernel: input: HDA Intel PCH Front Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input15
Feb 07 06:34:05 T-1000 kernel: input: HDA Intel PCH Rear Mic as /devices/pci0000:00/0000:00:1b.0/sound/card0/input16
Feb 07 06:34:05 T-1000 kernel: input: HDA Intel PCH Line as /devices/pci0000:00/0000:00:1b.0/sound/card0/input17
Feb 07 06:34:05 T-1000 kernel: input: HDA Intel PCH Line Out as /devices/pci0000:00/0000:00:1b.0/sound/card0/input18
Feb 07 06:34:05 T-1000 kernel: input: HDA Intel PCH Front Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input19
Feb 07 06:34:05 T-1000 kernel: nvidia: loading out-of-tree module taints kernel.
Feb 07 06:34:05 T-1000 kernel: nvidia: module license 'NVIDIA' taints kernel.
Feb 07 06:34:05 T-1000 kernel: Disabling lock debugging due to kernel taint
Feb 07 06:34:05 T-1000 kernel: nvidia-nvlink: Nvlink Core is being initialized, major device number 511
Feb 07 06:34:05 T-1000 kernel: 
Feb 07 06:34:05 T-1000 kernel: nvidia 0000:01:00.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=none:owns=io+mem
Feb 07 06:34:05 T-1000 kernel: NVRM: loading NVIDIA UNIX x86_64 Kernel Module  515.86.01  Wed Oct 26 09:12:38 UTC 2022
Feb 07 06:34:05 T-1000 kernel: nvidia-modeset: Loading NVIDIA Kernel Mode Setting Driver for UNIX platforms  515.86.01  Wed Oct 26 09:02:01 UTC 2022
Feb 07 06:34:05 T-1000 kernel: [drm] [nvidia-drm] [GPU ID 0x00000100] Loading driver
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.686:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=621 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.686:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=621 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.690:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=618 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.722:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=631 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.722:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=631 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.722:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=631 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.886:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="mysqld_akonadi" pid=620 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.886:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="mariadbd_akonadi" pid=619 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[621]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=621 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[621]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=621 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[618]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=618 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[631]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=631 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[631]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=631 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[631]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=631 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[620]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="mysqld_akonadi" pid=620 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[619]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="mariadbd_akonadi" pid=619 comm="apparmor_parser"
Feb 07 06:34:01 T-1000 mtp-probe[418]: checking bus 2, device 6: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.4"
Feb 07 06:33:57 T-1000 systemd[1]: Activated swap /swapfile.
Feb 07 06:34:01 T-1000 mtp-probe[422]: checking bus 2, device 4: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.2"
Feb 07 06:33:57 T-1000 systemd[1]: Reached target Swaps.
Feb 07 06:34:01 T-1000 mtp-probe[419]: checking bus 2, device 3: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1"
Feb 07 06:33:57 T-1000 systemd-modules-load[330]: Inserted module 'lp'
Feb 07 06:34:01 T-1000 mtp-probe[419]: bus: 2, device: 3 was not an MTP device
Feb 07 06:33:57 T-1000 systemd[1]: Finished Set the console keyboard layout.
Feb 07 06:34:01 T-1000 mtp-probe[422]: bus: 2, device: 4 was not an MTP device
Feb 07 06:33:57 T-1000 systemd-modules-load[330]: Inserted module 'ppdev'
Feb 07 06:34:01 T-1000 mtp-probe[418]: bus: 2, device: 6 was not an MTP device
Feb 07 06:33:57 T-1000 systemd[1]: Finished Coldplug All udev Devices.
Feb 07 06:34:01 T-1000 mtp-probe[420]: checking bus 2, device 5: "/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.3"
Feb 07 06:33:57 T-1000 systemd[1]: Finished Create System Users.
Feb 07 06:34:01 T-1000 mtp-probe[420]: bus: 2, device: 5 was not an MTP device
Feb 07 06:33:57 T-1000 systemd[1]: Starting Create Static Device Nodes in /dev...
Feb 07 06:33:57 T-1000 systemd[1]: Finished Load/Save Random Seed.
Feb 07 06:33:57 T-1000 systemd[1]: Condition check resulted in First Boot Complete being skipped.
Feb 07 06:33:57 T-1000 systemd-modules-load[330]: Inserted module 'parport_pc'
Feb 07 06:33:58 T-1000 systemd-modules-load[330]: Inserted module 'msr'
Feb 07 06:33:58 T-1000 systemd[1]: Finished Load Kernel Modules.
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.914:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="tcpdump" pid=632 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 kernel: audit: type=1400 audit(1675748045.918:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=630 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[632]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="tcpdump" pid=632 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[630]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=630 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[630]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=630 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[630]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=630 comm="apparmor_parser"
Feb 07 06:34:05 T-1000 audit[630]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=630 comm="apparmor_parser"
Feb 07 06:33:58 T-1000 systemd[1]: Starting Apply Kernel Variables...
Feb 07 06:33:58 T-1000 systemd[1]: Finished Create Static Device Nodes in /dev.
Feb 07 06:33:58 T-1000 systemd[1]: Reached target Preparation for Local File Systems.
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for bare, revision 5...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for brave, revision 196...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for brave, revision 197...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for core18, revision 2667...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for core18, revision 2679...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for core20, revision 1587...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for core20, revision 1778...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for firefox, revision 2277...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for firefox, revision 2311...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for gnome-3-28-1804, revision 161...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for gnome-3-38-2004, revision 112...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for gnome-3-38-2004, revision 119...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1535...
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for snapd, revision 17883...
Feb 07 06:34:05 T-1000 systemd-fsck[598]: fsck.fat 4.2 (2021-01-31)
Feb 07 06:34:05 T-1000 systemd-fsck[598]: /dev/sdb2: 11 files, 1341/131063 clusters
Feb 07 06:33:58 T-1000 systemd[1]: Mounting Mount unit for snapd, revision 17950...
Feb 07 06:33:59 T-1000 systemd[1]: Mounting Mount unit for spotify, revision 60...
Feb 07 06:34:05 T-1000 apparmor.systemd[601]: Restarting AppArmor
Feb 07 06:34:05 T-1000 apparmor.systemd[601]: Reloading AppArmor profiles
Feb 07 06:33:59 T-1000 systemd[1]: Mounting Mount unit for firefox, revision 2211 via mount-control...
Feb 07 06:33:59 T-1000 systemd[1]: Starting Rule-based Manager for Device Events and Files...
Feb 07 06:33:59 T-1000 systemd[1]: Finished Apply Kernel Variables.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for bare, revision 5.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for brave, revision 196.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for brave, revision 197.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for core18, revision 2667.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for core18, revision 2679.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for core20, revision 1587.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for core20, revision 1778.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for firefox, revision 2277.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for firefox, revision 2311.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for gnome-3-28-1804, revision 161.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for gnome-3-38-2004, revision 112.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for gnome-3-38-2004, revision 119.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for gtk-common-themes, revision 1535.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for snapd, revision 17883.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for snapd, revision 17950.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for spotify, revision 60.
Feb 07 06:33:59 T-1000 systemd[1]: Mounted Mount unit for firefox, revision 2211 via mount-control.
Feb 07 06:33:59 T-1000 systemd[1]: Reached target Mounted snaps.
Feb 07 06:33:59 T-1000 systemd[1]: Started Rule-based Manager for Device Events and Files.
Feb 07 06:33:59 T-1000 systemd[1]: Starting Show Plymouth Boot Screen...
Feb 07 06:34:00 T-1000 systemd[1]: Started Show Plymouth Boot Screen.
Feb 07 06:34:00 T-1000 systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Feb 07 06:34:00 T-1000 systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Feb 07 06:34:00 T-1000 systemd[1]: Reached target Local Encrypted Volumes.
Feb 07 06:34:00 T-1000 systemd-udevd[383]: Using default interface naming scheme 'v249'.
Feb 07 06:34:00 T-1000 systemd-udevd[394]: sda: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda' failed with exit code 1.
Feb 07 06:34:00 T-1000 systemd-udevd[379]: sdb: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdb' failed with exit code 1.
Feb 07 06:34:00 T-1000 systemd-udevd[385]: sr0: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sr0' failed with exit code 1.
Feb 07 06:34:01 T-1000 systemd-udevd[383]: sdc: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdc' failed with exit code 1.
Feb 07 06:34:01 T-1000 systemd-udevd[383]: sdc1: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdc1' failed with exit code 1.
Feb 07 06:34:01 T-1000 systemd-udevd[387]: sdb3: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdb3' failed with exit code 1.
Feb 07 06:34:01 T-1000 systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Feb 07 06:34:01 T-1000 systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Feb 07 06:34:01 T-1000 systemd[1]: Starting Load Kernel Module chromeos_pstore...
Feb 07 06:34:01 T-1000 systemd[1]: Starting Load Kernel Module efi_pstore...
Feb 07 06:34:01 T-1000 systemd[1]: Starting Load Kernel Module pstore_blk...
Feb 07 06:34:01 T-1000 systemd[1]: Starting Load Kernel Module pstore_zone...
Feb 07 06:34:01 T-1000 systemd[1]: Starting Load Kernel Module ramoops...
Feb 07 06:34:01 T-1000 systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Feb 07 06:34:01 T-1000 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Feb 07 06:34:01 T-1000 systemd[1]: Finished Load Kernel Module efi_pstore.
Feb 07 06:34:01 T-1000 systemd[1]: modprobe@pstore_blk.service: Deactivated successfully.
Feb 07 06:34:01 T-1000 systemd[1]: Finished Load Kernel Module pstore_blk.
Feb 07 06:34:01 T-1000 systemd[1]: modprobe@pstore_zone.service: Deactivated successfully.
Feb 07 06:34:01 T-1000 systemd[1]: Finished Load Kernel Module pstore_zone.
Feb 07 06:34:01 T-1000 systemd[1]: modprobe@ramoops.service: Deactivated successfully.
Feb 07 06:34:01 T-1000 systemd[1]: Finished Load Kernel Module ramoops.
Feb 07 06:34:01 T-1000 systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully.
Feb 07 06:34:01 T-1000 systemd[1]: Finished Load Kernel Module chromeos_pstore.
Feb 07 06:34:01 T-1000 systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Feb 07 06:34:02 T-1000 systemd-udevd[379]: sdb1: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdb1' failed with exit code 1.
Feb 07 06:34:03 T-1000 systemd-udevd[383]: sdb2: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sdb2' failed with exit code 1.
Feb 07 06:34:03 T-1000 systemd[1]: Found device WDC_WD10EZEX-00BBHA0 EFI\x20System\x20Partition.
Feb 07 06:34:03 T-1000 systemd[1]: Starting File System Check on /dev/disk/by-uuid/215B-95DD...
Feb 07 06:34:04 T-1000 systemd[1]: Started File System Check Daemon to report status.
Feb 07 06:34:04 T-1000 systemd-udevd[378]: sda4: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda4' failed with exit code 1.
Feb 07 06:34:04 T-1000 systemd-udevd[373]: sda6: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda6' failed with exit code 1.
Feb 07 06:34:04 T-1000 systemd-udevd[389]: sda7: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda7' failed with exit code 1.
Feb 07 06:34:04 T-1000 systemd-udevd[394]: sda1: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda1' failed with exit code 1.
Feb 07 06:34:04 T-1000 systemd-udevd[372]: sda5: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda5' failed with exit code 1.
Feb 07 06:34:04 T-1000 systemd-udevd[385]: sda2: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda2' failed with exit code 1.
Feb 07 06:34:04 T-1000 systemd-udevd[379]: sda3: Process '/usr/bin/unshare -m /usr/bin/snap auto-import --mount=/dev/sda3' failed with exit code 1.
Feb 07 06:34:05 T-1000 audit[633]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oosplash" pid=633 comm="apparmor_parser"
Feb 07 06:34:04 T-1000 systemd[1]: Finished File System Check on /dev/disk/by-uuid/215B-95DD.
Feb 07 06:34:04 T-1000 systemd[1]: Mounting /boot/efi...
Feb 07 06:34:05 T-1000 systemd[1]: Mounted /boot/efi.
Feb 07 06:34:05 T-1000 systemd[1]: Reached target Local File Systems.
Feb 07 06:34:05 T-1000 systemd[1]: Starting Load AppArmor profiles...
Feb 07 06:34:05 T-1000 systemd[1]: Starting Set console font and keymap...
Feb 07 06:34:05 T-1000 systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: Starting Uncomplicated firewall...
Feb 07 06:34:05 T-1000 systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Feb 07 06:34:05 T-1000 systemd[1]: Received SIGRTMIN+20 from PID 249 (plymouthd).
Feb 07 06:34:05 T-1000 systemd[1]: Finished Set console font and keymap.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Uncomplicated firewall.
Feb 07 06:34:05 T-1000 systemd[1]: Reached target Preparation for Network.
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: Starting Load Kernel Module chromeos_pstore...
Feb 07 06:34:05 T-1000 systemd[1]: Starting Load Kernel Module efi_pstore...
Feb 07 06:34:05 T-1000 systemd[1]: Starting Load Kernel Module pstore_blk...
Feb 07 06:34:05 T-1000 systemd[1]: Starting Load Kernel Module pstore_zone...
Feb 07 06:34:05 T-1000 systemd[1]: Starting Load Kernel Module ramoops...
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Feb 07 06:34:05 T-1000 systemd[1]: modprobe@pstore_blk.service: Deactivated successfully.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Load Kernel Module pstore_blk.
Feb 07 06:34:05 T-1000 systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Load Kernel Module efi_pstore.
Feb 07 06:34:05 T-1000 systemd[1]: modprobe@pstore_zone.service: Deactivated successfully.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Load Kernel Module pstore_zone.
Feb 07 06:34:05 T-1000 systemd[1]: modprobe@ramoops.service: Deactivated successfully.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Load Kernel Module ramoops.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Flush Journal to Persistent Storage.
Feb 07 06:34:05 T-1000 systemd[1]: Starting Create Volatile Files and Directories...
Feb 07 06:34:05 T-1000 systemd[1]: modprobe@chromeos_pstore.service: Deactivated successfully.
Feb 07 06:34:05 T-1000 systemd[1]: Finished Load Kernel Module chromeos_pstore.
Feb 07 06:34:05 T-1000 systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Feb 07 06:34:06 T-1000 audit[634]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=634 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[636]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=636 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[638]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=638 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[638]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=638 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[639]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=639 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 apparmor.systemd[642]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Feb 07 06:34:06 T-1000 audit[641]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/haveged" pid=641 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[640]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=640 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[640]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=640 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[640]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=640 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 systemd[1]: Finished Create Volatile Files and Directories.
Feb 07 06:34:06 T-1000 systemd[1]: Starting Network Name Resolution...
Feb 07 06:34:06 T-1000 systemd[1]: Starting Network Time Synchronization...
Feb 07 06:34:06 T-1000 systemd[1]: Starting Record System Boot/Shutdown in UTMP...
Feb 07 06:34:06 T-1000 systemd[1]: Finished Record System Boot/Shutdown in UTMP.
Feb 07 06:34:06 T-1000 kernel: [drm] Initialized nvidia-drm 0.0.0 20160202 for 0000:01:00.0 on minor 0
Feb 07 06:34:06 T-1000 audit[635]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice" pid=635 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 audit[635]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice//gpg" pid=635 comm="apparmor_parser"
Feb 07 06:34:06 T-1000 systemd[1]: Finished Load AppArmor profiles.
Feb 07 06:34:06 T-1000 systemd[1]: Started Entropy Daemon based on the HAVEGE algorithm.
Feb 07 06:34:06 T-1000 systemd[1]: Starting Load AppArmor profiles managed internally by snapd...
Feb 07 06:34:06 T-1000 haveged[668]: haveged: command socket is listening at fd 3
Feb 07 06:34:06 T-1000 haveged[668]: haveged starting up
Feb 07 06:34:06 T-1000 systemd[1]: Started Network Time Synchronization.
Feb 07 06:34:06 T-1000 systemd[1]: Reached target System Time Set.
Feb 07 06:34:06 T-1000 haveged[668]: haveged: ver: 1.9.14; arch: x86; vend: GenuineIntel; build: (gcc 11.2.0 ITV); collect: 128K
Feb 07 06:34:06 T-1000 haveged[668]: haveged: cpu: (L4 VC); data: 32K (L4 V); inst: 32K (L4 V); idx: 23/40; sz: 31288/55167
Feb 07 06:34:06 T-1000 haveged[668]: haveged: tot tests(BA8): A:1/1 B:1/1 continuous tests(B):  last entropy estimate 8.00007
Feb 07 06:34:06 T-1000 haveged[668]: haveged: fills: 0, generated: 0
Feb 07 06:34:07 T-1000 systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 669 (snapd-apparmor)
Feb 07 06:34:07 T-1000 systemd[1]: Mounting Arbitrary Executable File Formats File System...
Feb 07 06:34:07 T-1000 systemd[1]: Mounted Arbitrary Executable File Formats File System.
Feb 07 06:34:07 T-1000 systemd-resolved[643]: Positive Trust Anchors:
Feb 07 06:34:07 T-1000 systemd-resolved[643]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Feb 07 06:34:07 T-1000 systemd-resolved[643]: 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 168.192.in-addr.arpa d.f.ip6.arpa corp home internal intranet lan local private test
Feb 07 06:34:07 T-1000 audit[742]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.brave" pid=742 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[740]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/17883/usr/lib/snapd/snap-confine" pid=740 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[740]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/17883/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=740 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[741]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/17950/usr/lib/snapd/snap-confine" pid=741 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[741]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/snapd/17950/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=741 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[743]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.firefox" pid=743 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 systemd-resolved[643]: Using system hostname 'T-1000'.
Feb 07 06:34:07 T-1000 systemd[1]: Started Network Name Resolution.
Feb 07 06:34:07 T-1000 systemd[1]: Reached target Host and Network Name Lookups.
Feb 07 06:34:07 T-1000 kernel: nvidia_uvm: module uses symbols from proprietary module nvidia, inheriting taint.
Feb 07 06:34:07 T-1000 kernel: nvidia-uvm: Loaded the UVM driver, major device number 509.
Feb 07 06:34:07 T-1000 audit[744]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.spotify" pid=744 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[746]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firefox.firefox" pid=746 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[745]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.brave.brave" pid=745 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[753]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firefox.hook.configure" pid=753 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[747]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firefox.geckodriver" pid=747 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[754]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firefox.hook.connect-plug-host-hunspell" pid=754 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[755]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firefox.hook.disconnect-plug-host-hunspell" pid=755 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[756]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.firefox.hook.post-refresh" pid=756 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[757]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.spotify.hook.configure" pid=757 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 audit[758]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.spotify.spotify" pid=758 comm="apparmor_parser"
Feb 07 06:34:07 T-1000 systemd[1]: Finished Load AppArmor profiles managed internally by snapd.
Feb 07 06:34:07 T-1000 systemd[1]: Reached target System Initialization.
Feb 07 06:34:07 T-1000 systemd[1]: Started ACPI Events Check.
Feb 07 06:34:07 T-1000 systemd[1]: Condition check resulted in Process error reports when automatic reporting is enabled (file watch) being skipped.
Feb 07 06:34:07 T-1000 systemd[1]: Started CUPS Scheduler.
Feb 07 06:34:07 T-1000 systemd[1]: Started Start whoopsie on modification of the /var/crash directory.
Feb 07 06:34:07 T-1000 systemd[1]: Started Trigger anacron every hour.
Feb 07 06:34:07 T-1000 systemd[1]: Condition check resulted in Process error reports when automatic reporting is enabled (timer based) being skipped.
Feb 07 06:34:07 T-1000 systemd[1]: Started Daily apt download activities.
Feb 07 06:34:07 T-1000 systemd[1]: Started Daily apt upgrade and clean activities.
Feb 07 06:34:07 T-1000 systemd[1]: Started Daily dpkg database backup timer.
Feb 07 06:34:07 T-1000 systemd[1]: Started Periodic ext4 Online Metadata Check for All Filesystems.
Feb 07 06:34:07 T-1000 systemd[1]: Started Discard unused blocks once a week.
Feb 07 06:34:07 T-1000 systemd[1]: Started Refresh fwupd metadata regularly.
Feb 07 06:34:07 T-1000 systemd[1]: Started Daily rotation of log files.
Feb 07 06:34:07 T-1000 systemd[1]: Started Daily man-db regeneration.
Feb 07 06:34:07 T-1000 systemd[1]: Started Message of the Day.
Feb 07 06:34:07 T-1000 systemd[1]: Started Update the plocate database daily.
Feb 07 06:34:07 T-1000 systemd[1]: Condition check resulted in Timer to automatically fetch and run repair assertions being skipped.
Feb 07 06:34:07 T-1000 systemd[1]: Started Daily Cleanup of Temporary Directories.
Feb 07 06:34:07 T-1000 systemd[1]: Started Ubuntu Advantage Timer for running repeated jobs.
Feb 07 06:34:07 T-1000 systemd[1]: Reached target Path Units.
Feb 07 06:34:07 T-1000 systemd[1]: Listening on ACPID Listen Socket.
Feb 07 06:34:07 T-1000 systemd[1]: Condition check resulted in Unix socket for apport crash forwarding being skipped.
Feb 07 06:34:07 T-1000 systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Feb 07 06:34:07 T-1000 systemd[1]: Listening on CUPS Scheduler.
Feb 07 06:34:07 T-1000 systemd[1]: Listening on D-Bus System Message Bus Socket.
Feb 07 06:34:07 T-1000 systemd[1]: Starting Socket activation for snappy daemon...
Feb 07 06:34:07 T-1000 systemd[1]: Listening on UUID daemon activation socket.
Feb 07 06:34:07 T-1000 systemd[1]: Listening on Socket activation for snappy daemon.
Feb 07 06:34:07 T-1000 systemd[1]: Reached target Socket Units.
Feb 07 06:34:07 T-1000 systemd[1]: Reached target Basic System.
Feb 07 06:34:07 T-1000 systemd[1]: Starting Accounts Service...
Feb 07 06:34:07 T-1000 systemd[1]: Started ACPI event daemon.
Feb 07 06:34:07 T-1000 systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
Feb 07 06:34:07 T-1000 systemd[1]: Starting Save/Restore Sound Card State...
Feb 07 06:34:07 T-1000 systemd[1]: Started Run anacron jobs.
Feb 07 06:34:07 T-1000 systemd[1]: Starting LSB: automatic crash report generation...
Feb 07 06:34:07 T-1000 anacron[763]: Anacron 2.3 started on 2023-02-07
Feb 07 06:34:07 T-1000 systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Feb 07 06:34:07 T-1000 systemd[1]: Started Regular background program processing daemon.
Feb 07 06:34:07 T-1000 systemd[1]: Started D-Bus System Message Bus.
Feb 07 06:34:07 T-1000 systemd[1]: Starting Network Manager...
Feb 07 06:34:07 T-1000 systemd[1]: Started Save initial kernel messages after boot.
Feb 07 06:34:07 T-1000 acpid[761]: starting up with netlink and the input layer
Feb 07 06:34:07 T-1000 cron[766]: (CRON) INFO (pidfile fd = 3)
Feb 07 06:34:07 T-1000 systemd[1]: Starting Remove Stale Online ext4 Metadata Check Snapshots...
Feb 07 06:34:07 T-1000 systemd[1]: Condition check resulted in getty on tty2-tty6 if dbus and logind are not available being skipped.
Feb 07 06:34:07 T-1000 systemd[1]: Reached target Login Prompts.
Feb 07 06:34:07 T-1000 systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Feb 07 06:34:08 T-1000 systemd[1]: Starting Record successful boot for GRUB...
Feb 07 06:34:08 T-1000 systemd[1]: Started irqbalance daemon.
Feb 07 06:34:08 T-1000 anacron[763]: Normal exit (0 jobs run)
Feb 07 06:34:08 T-1000 systemd[1]: Starting Dispatcher daemon for systemd-networkd...
Feb 07 06:34:08 T-1000 systemd[1]: Starting Authorization Manager...
Feb 07 06:34:08 T-1000 systemd[1]: Starting Power Profiles daemon...
Feb 07 06:34:08 T-1000 systemd[1]: Starting System Logging Service...
Feb 07 06:34:08 T-1000 systemd[1]: Condition check resulted in Secure Boot updates for DB and DBX being skipped.
Feb 07 06:34:08 T-1000 avahi-daemon[765]: Found user 'avahi' (UID 113) and group 'avahi' (GID 121).
Feb 07 06:34:08 T-1000 cron[766]: (CRON) INFO (Running @reboot jobs)
Feb 07 06:34:08 T-1000 systemd[1]: Starting Self Monitoring and Reporting Technology (SMART) Daemon...
Feb 07 06:34:08 T-1000 systemd[1]: Condition check resulted in Userspace listener for prompt events being skipped.
Feb 07 06:34:08 T-1000 systemd[1]: Condition check resulted in Automatically repair incorrect owner/permissions on core devices being skipped.
Feb 07 06:34:08 T-1000 systemd[1]: Condition check resulted in Wait for the Ubuntu Core chooser trigger being skipped.
Feb 07 06:34:08 T-1000 systemd[1]: Reached target Preparation for Logins.
Feb 07 06:34:08 T-1000 systemd[1]: Starting Snap Daemon...
Feb 07 06:34:08 T-1000 systemd[1]: Starting User Login Management...
Feb 07 06:34:08 T-1000 systemd[1]: Starting Thermal Daemon Service...
Feb 07 06:34:08 T-1000 systemd[1]: Condition check resulted in Ubuntu Advantage reboot cmds being skipped.
Feb 07 06:34:08 T-1000 systemd[1]: Starting Disk Manager...
Feb 07 06:34:08 T-1000 avahi-daemon[765]: Successfully dropped root privileges.
Feb 07 06:34:08 T-1000 systemd[1]: Starting WPA supplicant...
Feb 07 06:34:08 T-1000 avahi-daemon[765]: avahi-daemon 0.8 starting up.
Feb 07 06:34:08 T-1000 systemd[1]: anacron.service: Deactivated successfully.
Feb 07 06:34:08 T-1000 acpid[761]: 8 rules loaded
Feb 07 06:34:08 T-1000 systemd[1]: Finished Save/Restore Sound Card State.
Feb 07 06:34:08 T-1000 acpid[761]: waiting for events: event logging is off
Feb 07 06:34:08 T-1000 systemd[1]: Reached target Sound Card.
Feb 07 06:34:09 T-1000 systemd-logind[800]: New seat seat0.
Feb 07 06:34:09 T-1000 systemd[1]: grub-common.service: Deactivated successfully.
Feb 07 06:34:09 T-1000 systemd[1]: Finished Record successful boot for GRUB.
Feb 07 06:34:09 T-1000 systemd[1]: Starting GRUB failed boot detection...
Feb 07 06:34:09 T-1000 systemd-logind[800]: Watching system buttons on /dev/input/event1 (Power Button)
Feb 07 06:34:09 T-1000 systemd-logind[800]: Watching system buttons on /dev/input/event0 (Power Button)
Feb 07 06:34:09 T-1000 systemd-logind[800]: Watching system buttons on /dev/input/event2 (Logitech USB Receiver)
Feb 07 06:34:09 T-1000 systemd-logind[800]: Watching system buttons on /dev/input/event4 (Logitech USB Receiver Consumer Control)
Feb 07 06:34:09 T-1000 systemd-logind[800]: Watching system buttons on /dev/input/event5 (Logitech USB Receiver System Control)
Feb 07 06:34:09 T-1000 rsyslogd[783]: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd.  [v8.2112.0]
Feb 07 06:34:09 T-1000 rsyslogd[783]: rsyslogd's groupid changed to 111
Feb 07 06:34:09 T-1000 systemd[1]: Started System Logging Service.
Feb 07 06:34:09 T-1000 rsyslogd[783]: rsyslogd's userid changed to 104
Feb 07 06:34:09 T-1000 rsyslogd[783]: [origin software="rsyslogd" swVersion="8.2112.0" x-pid="783" x-info="https://www.rsyslog.com"] start
Feb 07 06:34:09 T-1000 systemd[1]: e2scrub_reap.service: Deactivated successfully.
Feb 07 06:34:09 T-1000 systemd[1]: Finished Remove Stale Online ext4 Metadata Check Snapshots.
Feb 07 06:34:09 T-1000 smartd[796]: smartd 7.2 2020-12-30 r5155 [x86_64-linux-5.15.0-58-generic] (local build)
Feb 07 06:34:09 T-1000 smartd[796]: Copyright (C) 2002-20, Bruce Allen, Christian Franke, www.smartmontools.org
Feb 07 06:34:09 T-1000 smartd[796]: Opened configuration file /etc/smartd.conf
Feb 07 06:34:09 T-1000 apport[764]:  * Starting automatic crash report generation: apport
Feb 07 06:34:09 T-1000 smartd[796]: Drive: DEVICESCAN, implied '-a' Directive on line 21 of file /etc/smartd.conf
Feb 07 06:34:09 T-1000 smartd[796]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sda, type changed from 'scsi' to 'sat'
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sda [SAT], opened
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sda [SAT], SAMSUNG HD154UI, S/N:S1Y6JD1B200655, WWN:5-0024e9-004b06771, FW:1AG01118, 1.50 TB
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sda [SAT], found in smartd database: SAMSUNG SpinPoint F2 EG
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list.
Feb 07 06:34:09 T-1000 apport[764]:    ...done.
Feb 07 06:34:09 T-1000 systemd[1]: Started LSB: automatic crash report generation.
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sda [SAT], state read from /var/lib/smartmontools/smartd.SAMSUNG_HD154UI-S1Y6JD1B200655.ata.state
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sdb, type changed from 'scsi' to 'sat'
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sdb [SAT], opened
Feb 07 06:34:09 T-1000 udisksd[803]: udisks daemon version 2.9.4 starting
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sdb [SAT], WDC WD10EZEX-00BBHA0, S/N:WD-WCC6Y5LD11RA, WWN:5-0014ee-2bff5e2ea, FW:01.01A01, 1.00 TB
Feb 07 06:34:09 T-1000 smartd[796]: Device: /dev/sdb [SAT], found in smartd database: Western Digital Blue
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdb [SAT], is SMART capable. Adding to "monitor" list.
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdb [SAT], state read from /var/lib/smartmontools/smartd.WDC_WD10EZEX_00BBHA0-WD_WCC6Y5LD11RA.ata.state
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], opened
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], WDC WD20EARX-00PASB0, S/N:WD-WCAZAH197339, WWN:5-0014ee-15a1742da, FW:51.0AB51, 2.00 TB
Feb 07 06:34:10 T-1000 NetworkManager[768]: <info>  [1675748050.3542] NetworkManager (version 1.36.6) is starting... (for the first time)
Feb 07 06:34:10 T-1000 NetworkManager[768]: <info>  [1675748050.3625] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, no-mac-addr-change.conf) (run: 10-globally-managed-devices.conf) (etc: default-wifi-powersave-on.conf)
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], found in smartd database: Western Digital Green
Feb 07 06:34:10 T-1000 systemd[1]: grub-initrd-fallback.service: Deactivated successfully.
Feb 07 06:34:10 T-1000 systemd[1]: Finished GRUB failed boot detection.
Feb 07 06:34:10 T-1000 systemd[1]: gpu-manager.service: Deactivated successfully.
Feb 07 06:34:10 T-1000 systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], not capable of SMART Health Status check
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], no ATA CHECK POWER STATUS support, ignoring -n Directive
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], is SMART capable. Adding to "monitor" list.
Feb 07 06:34:10 T-1000 smartd[796]: Device: /dev/sdc [SAT], state read from /var/lib/smartmontools/smartd.WDC_WD20EARX_00PASB0-WD_WCAZAH197339.ata.state
Feb 07 06:34:10 T-1000 smartd[796]: Monitoring 3 ATA/SATA, 0 SCSI/SAS and 0 NVMe devices
Feb 07 06:34:11 T-1000 dbus-daemon[767]: dbus[767]: Unknown group "power" in message bus configuration file
Feb 07 06:34:11 T-1000 smartd[796]: Device: /dev/sdc [SAT], SMART Prefailure Attribute: 3 Spin_Up_Time changed from 165 to 166
Feb 07 06:34:11 T-1000 smartd[796]: Device: /dev/sdc [SAT], SMART Usage Attribute: 194 Temperature_Celsius changed from 125 to 124
Feb 07 06:34:11 T-1000 smartd[796]: Device: /dev/sda [SAT], state written to /var/lib/smartmontools/smartd.SAMSUNG_HD154UI-S1Y6JD1B200655.ata.state
Feb 07 06:34:11 T-1000 smartd[796]: Device: /dev/sdb [SAT], state written to /var/lib/smartmontools/smartd.WDC_WD10EZEX_00BBHA0-WD_WCC6Y5LD11RA.ata.state
Feb 07 06:34:11 T-1000 smartd[796]: Device: /dev/sdc [SAT], state written to /var/lib/smartmontools/smartd.WDC_WD20EARX_00PASB0-WD_WCAZAH197339.ata.state
Feb 07 06:34:11 T-1000 systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Feb 07 06:34:11 T-1000 dbus-daemon[767]: [system] AppArmor D-Bus mediation is enabled
Feb 07 06:34:11 T-1000 systemd[1]: Started User Login Management.
Feb 07 06:34:11 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.systemd1'
Feb 07 06:34:11 T-1000 systemd[1]: Started Thermal Daemon Service.
Feb 07 06:34:11 T-1000 systemd[1]: Started WPA supplicant.
Feb 07 06:34:11 T-1000 systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Feb 07 06:34:11 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkit.service' requested by ':1.7' (uid=0 pid=782 comm="/usr/libexec/power-profiles-daemon " label="unconfined")
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Successfully called chroot().
Feb 07 06:34:11 T-1000 systemd[1]: Started Network Manager.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Successfully dropped remaining capabilities.
Feb 07 06:34:11 T-1000 systemd[1]: Reached target Network.
Feb 07 06:34:11 T-1000 NetworkManager[768]: <info>  [1675748051.8217] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Feb 07 06:34:11 T-1000 systemd[1]: Starting Network Manager Wait Online...
Feb 07 06:34:11 T-1000 systemd[1]: Starting CUPS Scheduler...
Feb 07 06:34:11 T-1000 systemd[1]: Starting Permit User Sessions...
Feb 07 06:34:11 T-1000 systemd[1]: Started Unattended Upgrades Shutdown.
Feb 07 06:34:11 T-1000 wpa_supplicant[804]: Successfully initialized wpa_supplicant
Feb 07 06:34:11 T-1000 avahi-daemon[765]: No service file found in /etc/avahi/services.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: New relevant interface lo.IPv6 for mDNS.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: New relevant interface lo.IPv4 for mDNS.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Network interface enumeration completed.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Registering new address record for ::1 on lo.*.
Feb 07 06:34:11 T-1000 avahi-daemon[765]: Registering new address record for 127.0.0.1 on lo.IPv4.
Feb 07 06:34:12 T-1000 thermald[801]: 13 CPUID levels; family:model:stepping 0x6:2a:7 (6:42:7)
Feb 07 06:34:12 T-1000 thermald[801]: 13 CPUID levels; family:model:stepping 0x6:2a:7 (6:42:7)
Feb 07 06:34:12 T-1000 systemd[1]: Finished Permit User Sessions.
Feb 07 06:34:12 T-1000 systemd[1]: Starting Terminate Plymouth Boot Screen...
Feb 07 06:34:12 T-1000 systemd[1]: Starting Set console scheme...
Feb 07 06:34:12 T-1000 systemd[1]: Received SIGRTMIN+21 from PID 249 (plymouthd).
Feb 07 06:34:12 T-1000 systemd[1]: Received SIGRTMIN+21 from PID 249 (plymouthd).
Feb 07 06:34:12 T-1000 systemd[1]: Finished Terminate Plymouth Boot Screen.
Feb 07 06:34:12 T-1000 systemd[1]: Starting Simple Desktop Display Manager...
Feb 07 06:34:12 T-1000 systemd[1]: Finished Set console scheme.
Feb 07 06:34:12 T-1000 systemd[1]: Created slice Slice /system/getty.
Feb 07 06:34:12 T-1000 systemd[1]: Started Simple Desktop Display Manager.
Feb 07 06:34:12 T-1000 NetworkManager[768]: <info>  [1675748052.5561] manager[0x558f13878040]: monitoring kernel firmware directory '/lib/firmware'.
Feb 07 06:34:12 T-1000 NetworkManager[768]: <info>  [1675748052.5561] monitoring ifupdown state file '/run/network/ifstate'.
Feb 07 06:34:12 T-1000 polkitd[779]: started daemon version 0.105 using authority implementation `local' version `0.105'
Feb 07 06:34:12 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.9' (uid=0 pid=768 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Feb 07 06:34:12 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Feb 07 06:34:12 T-1000 systemd[1]: Started Authorization Manager.
Feb 07 06:34:12 T-1000 systemd[1]: Started Power Profiles daemon.
Feb 07 06:34:12 T-1000 systemd[1]: Starting Modem Manager...
Feb 07 06:34:12 T-1000 systemd[1]: Starting Hostname Service...
Feb 07 06:34:12 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.hostname1'
Feb 07 06:34:12 T-1000 systemd[1]: Started Hostname Service.
Feb 07 06:34:12 T-1000 NetworkManager[768]: <info>  [1675748052.7797] hostname: hostname: using hostnamed
Feb 07 06:34:12 T-1000 NetworkManager[768]: <info>  [1675748052.7797] hostname: static hostname changed from (none) to "T-1000"
Feb 07 06:34:12 T-1000 NetworkManager[768]: <info>  [1675748052.8884] dns-mgr[0x558f138562a0]: init: dns=systemd-resolved rc-manager=unmanaged (auto), plugin=systemd-resolved
Feb 07 06:34:12 T-1000 avahi-daemon[765]: Server startup complete. Host name is T-1000.local. Local service cookie is 3938201116.
Feb 07 06:34:13 T-1000 NetworkManager[768]: <info>  [1675748053.0378] manager[0x558f13878040]: rfkill: Wi-Fi hardware radio set enabled
Feb 07 06:34:13 T-1000 NetworkManager[768]: <info>  [1675748053.0379] manager[0x558f13878040]: rfkill: WWAN hardware radio set enabled
Feb 07 06:34:13 T-1000 NetworkManager[768]: <info>  [1675748053.3941] Loaded device plugin: NMTeamFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.36.6/libnm-device-plugin-team.so)
Feb 07 06:34:13 T-1000 NetworkManager[768]: <info>  [1675748053.5718] Loaded device plugin: NMAtmManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.36.6/libnm-device-plugin-adsl.so)
Feb 07 06:34:13 T-1000 NetworkManager[768]: <info>  [1675748053.9198] Loaded device plugin: NMBluezManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.36.6/libnm-device-plugin-bluetooth.so)
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.0454] Loaded device plugin: NMWwanFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.36.6/libnm-device-plugin-wwan.so)
Feb 07 06:34:14 T-1000 udisksd[803]: failed to load module mdraid: libbd_mdraid.so.2: cannot open shared object file: No such file or directory
Feb 07 06:34:14 T-1000 thermald[801]: sensor id 4 : No temp sysfs for reading raw temp
Feb 07 06:34:14 T-1000 thermald[801]: sensor id 4 : No temp sysfs for reading raw temp
Feb 07 06:34:14 T-1000 thermald[801]: sensor id 4 : No temp sysfs for reading raw temp
Feb 07 06:34:14 T-1000 thermald[801]: Config file /etc/thermald/thermal-conf.xml does not exist
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.3392] Loaded device plugin: NMWifiFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.36.6/libnm-device-plugin-wifi.so)
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.3397] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.3398] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.3400] manager: Networking is enabled by state file
Feb 07 06:34:14 T-1000 thermald[801]: Config file /etc/thermald/thermal-conf.xml does not exist
Feb 07 06:34:14 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.9' (uid=0 pid=768 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Feb 07 06:34:14 T-1000 systemd[1]: Starting Network Manager Script Dispatcher Service...
Feb 07 06:34:14 T-1000 ModemManager[873]: <info>  ModemManager (version 1.18.6) starting in system bus...
Feb 07 06:34:14 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Feb 07 06:34:14 T-1000 systemd[1]: Started Network Manager Script Dispatcher Service.
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.7574] settings: Loaded settings plugin: ifupdown ("/usr/lib/x86_64-linux-gnu/NetworkManager/1.36.6/libnm-settings-plugin-ifupdown.so")
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.7574] settings: Loaded settings plugin: keyfile (internal)
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.7575] ifupdown: management mode: unmanaged
Feb 07 06:34:14 T-1000 snapd[797]: overlord.go:268: Acquiring state lock file
Feb 07 06:34:14 T-1000 snapd[797]: overlord.go:273: Acquired state lock file
Feb 07 06:34:14 T-1000 NetworkManager[768]: <info>  [1675748054.9856] ifupdown: interfaces file /etc/network/interfaces doesn't exist
Feb 07 06:34:15 T-1000 udisksd[803]: Failed to load the 'mdraid' libblockdev plugin
Feb 07 06:34:15 T-1000 thermald[801]: Config file /etc/thermald/thermal-conf.xml does not exist
Feb 07 06:34:15 T-1000 thermald[801]: Polling mode is enabled: 4
Feb 07 06:34:15 T-1000 NetworkManager[768]: <info>  [1675748055.5528] dhcp-init: Using DHCP client 'internal'
Feb 07 06:34:15 T-1000 NetworkManager[768]: <info>  [1675748055.5529] device (lo): carrier: link connected
Feb 07 06:34:15 T-1000 NetworkManager[768]: <info>  [1675748055.5533] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Feb 07 06:34:15 T-1000 NetworkManager[768]: <info>  [1675748055.5551] manager: (enp4s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Feb 07 06:34:15 T-1000 NetworkManager[768]: <info>  [1675748055.5575] settings: (enp4s0): created default wired connection 'Wired connection 1'
Feb 07 06:34:15 T-1000 NetworkManager[768]: <info>  [1675748055.5578] device (enp4s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Feb 07 06:34:16 T-1000 kernel: RTL8211E Gigabit Ethernet r8169-0-400:00: attached PHY driver (mii_bus:phy_addr=r8169-0-400:00, irq=MAC)
Feb 07 06:34:16 T-1000 kernel: r8169 0000:04:00.0 enp4s0: Link is Down
Feb 07 06:34:16 T-1000 NetworkManager[768]: <info>  [1675748056.6278] failed to open /run/network/ifstate
Feb 07 06:34:16 T-1000 systemd[1]: dmesg.service: Deactivated successfully.
Feb 07 06:34:17 T-1000 snapd[797]: daemon.go:247: started snapd/2.58+22.04 (series 16; classic) ubuntu/22.04 (amd64) linux/5.15.0-58-generic.
Feb 07 06:34:17 T-1000 accounts-daemon[760]: started daemon version 22.07.5
Feb 07 06:34:17 T-1000 systemd[1]: Started Accounts Service.
Feb 07 06:34:17 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.16' (uid=0 pid=862 comm="/usr/sbin/cupsd -l " label="/usr/sbin/cupsd (enforce)")
Feb 07 06:34:17 T-1000 systemd[1]: Starting Manage, Install and Generate Color Profiles...
Feb 07 06:34:17 T-1000 kernel: loop16: detected capacity change from 0 to 8
Feb 07 06:34:17 T-1000 systemd[1]: tmp-syscheck\x2dmountpoint\x2d1517586405.mount: Deactivated successfully.
Feb 07 06:34:17 T-1000 snapd[797]: daemon.go:340: adjusting startup timeout by 1m20s (pessimistic estimate of 30s plus 5s per snap)
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: No valid path found for iw
Feb 07 06:34:17 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.network1' unit='dbus-org.freedesktop.network1.service' requested by ':1.17' (uid=0 pid=942 comm="/usr/bin/networkctl list --no-pager --no-legend " label="unconfined")
Feb 07 06:34:17 T-1000 dbus-daemon[767]: [system] Activation via systemd failed for unit 'dbus-org.freedesktop.network1.service': Unit dbus-org.freedesktop.network1.service not found.
Feb 07 06:34:17 T-1000 networkd-dispatcher[942]: WARNING: systemd-networkd is not running, output will be incomplete.
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: ERROR:Unknown state for interface NetworkctlListState(idx=1, name='lo', type='loopback', operational='n/a', administrative='unmanaged'): n/a
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: Traceback (most recent call last):
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:   File "/usr/bin/networkd-dispatcher", line 298, in trigger_all
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:     self.handle_state(iface_name,
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:   File "/usr/bin/networkd-dispatcher", line 348, in handle_state
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:     raise UnknownState(operational_state)
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: UnknownState: n/a
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: ERROR:Unknown state for interface NetworkctlListState(idx=2, name='enp4s0', type='ether', operational='n/a', administrative='unmanaged'): n/a
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: Traceback (most recent call last):
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:   File "/usr/bin/networkd-dispatcher", line 298, in trigger_all
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:     self.handle_state(iface_name,
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:   File "/usr/bin/networkd-dispatcher", line 348, in handle_state
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]:     raise UnknownState(operational_state)
Feb 07 06:34:17 T-1000 networkd-dispatcher[778]: UnknownState: n/a
Feb 07 06:34:17 T-1000 systemd[1]: Started Dispatcher daemon for systemd-networkd.
Feb 07 06:34:17 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Feb 07 06:34:17 T-1000 systemd[1]: Started Manage, Install and Generate Color Profiles.
Feb 07 06:34:17 T-1000 sddm[869]: Initializing...
Feb 07 06:34:17 T-1000 systemd[1]: Started Modem Manager.
Feb 07 06:34:18 T-1000 NetworkManager[768]: <info>  [1675748058.0000] modem-manager: ModemManager not available
Feb 07 06:34:18 T-1000 sddm[869]: Starting...
Feb 07 06:34:18 T-1000 sddm[869]: Logind interface found
Feb 07 06:34:18 T-1000 sddm[869]: Adding new display on vt 1 ...
Feb 07 06:34:18 T-1000 NetworkManager[768]: <info>  [1675748058.0523] modem-manager: ModemManager now available
Feb 07 06:34:18 T-1000 sddm[869]: Loading theme configuration from ""
Feb 07 06:34:18 T-1000 sddm[869]: Display server starting...
Feb 07 06:34:18 T-1000 sddm[869]: Adding cookie to "/var/run/sddm/{1f6d8a98-c127-4057-949c-7f4ae0d6f752}"
Feb 07 06:34:18 T-1000 sddm[869]: Running: /usr/bin/X -nolisten tcp -auth /var/run/sddm/{1f6d8a98-c127-4057-949c-7f4ae0d6f752} -background none -noreset -displayfd 17 -seat seat0 vt1
Feb 07 06:34:18 T-1000 snapd[797]: backends.go:58: AppArmor status: apparmor is enabled and all features are available
Feb 07 06:34:19 T-1000 systemd[1]: Started Disk Manager.
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3530] device (enp4s0): carrier: link connected
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3536] device (enp4s0): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3543] policy: auto-activating connection 'Wired connection 1' (d3654f04-69dd-3133-bfbd-74bafcf6aa1a)
Feb 07 06:34:19 T-1000 kernel: r8169 0000:04:00.0 enp4s0: Link is Up - 1Gbps/Full - flow control rx/tx
Feb 07 06:34:19 T-1000 kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp4s0: link becomes ready
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3550] device (enp4s0): Activation: starting connection 'Wired connection 1' (d3654f04-69dd-3133-bfbd-74bafcf6aa1a)
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3551] device (enp4s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3556] manager: NetworkManager state is now CONNECTING
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3558] device (enp4s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3567] device (enp4s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.3573] dhcp4 (enp4s0): activation: beginning transaction (timeout in 45 seconds)
Feb 07 06:34:19 T-1000 audit[862]: AVC apparmor="DENIED" operation="capable" profile="/usr/sbin/cupsd" pid=862 comm="cupsd" capability=12  capname="net_admin"
Feb 07 06:34:19 T-1000 kernel: kauditd_printk_skb: 31 callbacks suppressed
Feb 07 06:34:19 T-1000 kernel: audit: type=1400 audit(1675748059.390:43): apparmor="DENIED" operation="capable" profile="/usr/sbin/cupsd" pid=862 comm="cupsd" capability=12  capname="net_admin"
Feb 07 06:34:19 T-1000 systemd[1]: Started CUPS Scheduler.
Feb 07 06:34:19 T-1000 systemd[1]: Reached target Printer Support.
Feb 07 06:34:19 T-1000 udisksd[803]: Cleaning up mount point /media/vin/hdrive (device 8:3 is not mounted)
Feb 07 06:34:19 T-1000 udisksd[803]: Cleaning up mount point /media/vin/225CAC165CABE2B1 (device 8:2 is not mounted)
Feb 07 06:34:19 T-1000 udisksd[803]: Cleaning up mount point /media/vin/Volume (device 8:5 is not mounted)
Feb 07 06:34:19 T-1000 udisksd[803]: Cleaning up mount point /media/vin/WD Extern (device 8:33 is not mounted)
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7255] dhcp4 (enp4s0): state changed new lease, address=192.168.0.248
Feb 07 06:34:19 T-1000 avahi-daemon[765]: Joining mDNS multicast group on interface enp4s0.IPv4 with address 192.168.0.248.
Feb 07 06:34:19 T-1000 avahi-daemon[765]: New relevant interface enp4s0.IPv4 for mDNS.
Feb 07 06:34:19 T-1000 avahi-daemon[765]: Registering new address record for 192.168.0.248 on enp4s0.IPv4.
Feb 07 06:34:19 T-1000 avahi-daemon[765]: Joining mDNS multicast group on interface enp4s0.IPv6 with address fe80::5ee8:5047:2241:3b0c.
Feb 07 06:34:19 T-1000 avahi-daemon[765]: New relevant interface enp4s0.IPv6 for mDNS.
Feb 07 06:34:19 T-1000 avahi-daemon[765]: Registering new address record for fe80::5ee8:5047:2241:3b0c on enp4s0.*.
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7267] device (enp4s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7471] device (enp4s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7474] device (enp4s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7477] manager: NetworkManager state is now CONNECTED_LOCAL
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7480] manager: NetworkManager state is now CONNECTED_SITE
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7480] policy: set 'Wired connection 1' (enp4s0) as default for IPv4 routing and DNS
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7484] device (enp4s0): Activation: successful, device activated.
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7488] manager: NetworkManager state is now CONNECTED_GLOBAL
Feb 07 06:34:19 T-1000 NetworkManager[768]: <info>  [1675748059.7491] manager: startup complete
Feb 07 06:34:19 T-1000 systemd-resolved[643]: enp4s0: Bus client set search domain list to: home
Feb 07 06:34:19 T-1000 systemd-resolved[643]: enp4s0: Bus client set default route setting: yes
Feb 07 06:34:19 T-1000 systemd-resolved[643]: enp4s0: Bus client set DNS server list to: 192.168.0.1
Feb 07 06:34:19 T-1000 systemd[1]: Finished Network Manager Wait Online.
Feb 07 06:34:19 T-1000 systemd[1]: Reached target Network is Online.
Feb 07 06:34:19 T-1000 systemd[1]: Started Download data for packages that failed at package install time.
Feb 07 06:34:19 T-1000 systemd[1]: Started Check to see whether there is a new version of Ubuntu available.
Feb 07 06:34:19 T-1000 systemd[1]: Reached target Timer Units.
Feb 07 06:34:19 T-1000 systemd[1]: Started Make remote CUPS printers available locally.
Feb 07 06:34:19 T-1000 systemd[1]: Starting Tool to automatically collect and submit kernel crash signatures...
Feb 07 06:34:19 T-1000 systemd[1]: Condition check resulted in Ubuntu Pro Background Auto Attach being skipped.
Feb 07 06:34:19 T-1000 systemd[1]: Started crash report submission.
Feb 07 06:34:19 T-1000 systemd[1]: Started Snap Daemon.
Feb 07 06:34:19 T-1000 systemd[1]: Starting Wait until snapd is fully seeded...
Feb 07 06:34:19 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.25' (uid=0 pid=797 comm="/usr/lib/snapd/snapd " label="unconfined")
Feb 07 06:34:20 T-1000 systemd[1]: kerneloops.service: Found left-over process 985 (kerneloops) in control group while starting unit. Ignoring.
Feb 07 06:34:20 T-1000 systemd[1]: This usually indicates unclean termination of a previous run, or service implementation deficiencies.
Feb 07 06:34:20 T-1000 systemd[1]: Starting Time & Date Service...
Feb 07 06:34:20 T-1000 systemd[1]: Started Tool to automatically collect and submit kernel crash signatures.
Feb 07 06:34:20 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.timedate1'
Feb 07 06:34:20 T-1000 systemd[1]: Started Time & Date Service.
Feb 07 06:34:20 T-1000 ModemManager[873]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:1c.2/0000:04:00.0': not supported by any plugin
Feb 07 06:34:20 T-1000 whoopsie[982]: [06:34:20] Using lock path: /var/lock/whoopsie/lock
Feb 07 06:34:20 T-1000 systemd[1]: whoopsie.service: Deactivated successfully.
Feb 07 06:34:20 T-1000 audit[978]: AVC apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=978 comm="cups-browsed" capability=23  capname="sys_nice"
Feb 07 06:34:20 T-1000 kernel: audit: type=1400 audit(1675748060.766:44): apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=978 comm="cups-browsed" capability=23  capname="sys_nice"
Feb 07 06:34:21 T-1000 NetworkManager[768]: <info>  [1675748061.6385] dhcp6 (enp4s0): activation: beginning transaction (timeout in 45 seconds)
Feb 07 06:34:21 T-1000 NetworkManager[768]: <info>  [1675748061.6392] policy: set 'Wired connection 1' (enp4s0) as default for IPv6 routing and DNS
Feb 07 06:34:21 T-1000 udisksd[803]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Feb 07 06:34:21 T-1000 NetworkManager[768]: <info>  [1675748061.7498] dhcp6 (enp4s0): state changed new lease, address=2a02:908:2052:3d20::160
Feb 07 06:34:21 T-1000 avahi-daemon[765]: Leaving mDNS multicast group on interface enp4s0.IPv6 with address fe80::5ee8:5047:2241:3b0c.
Feb 07 06:34:21 T-1000 avahi-daemon[765]: Joining mDNS multicast group on interface enp4s0.IPv6 with address 2a02:908:2052:3d20::160.
Feb 07 06:34:21 T-1000 avahi-daemon[765]: Registering new address record for 2a02:908:2052:3d20::160 on enp4s0.*.
Feb 07 06:34:21 T-1000 avahi-daemon[765]: Withdrawing address record for fe80::5ee8:5047:2241:3b0c on enp4s0.
Feb 07 06:34:21 T-1000 systemd-resolved[643]: enp4s0: Bus client set DNS server list to: 192.168.0.1, 2a02:908:2:b::1, 2a02:908:2:a::1
Feb 07 06:34:22 T-1000 systemd[1]: Finished Wait until snapd is fully seeded.
Feb 07 06:34:22 T-1000 systemd[1]: Condition check resulted in Auto import assertions from block devices being skipped.
Feb 07 06:34:22 T-1000 systemd[1]: Reached target Multi-User System.
Feb 07 06:34:22 T-1000 systemd[1]: Reached target Graphical Interface.
Feb 07 06:34:22 T-1000 systemd[1]: Starting Record Runlevel Change in UTMP...
Feb 07 06:34:22 T-1000 systemd[1]: systemd-update-utmp-runlevel.service: Deactivated successfully.
Feb 07 06:34:22 T-1000 systemd[1]: Finished Record Runlevel Change in UTMP.
Feb 07 06:34:22 T-1000 systemd[1]: Startup finished in 5.971s (kernel) + 33.426s (userspace) = 39.397s.
Feb 07 06:34:25 T-1000 sddm[869]: Setting default cursor
Feb 07 06:34:25 T-1000 sddm[869]: Running display setup script  "/usr/share/sddm/scripts/Xsetup"
Feb 07 06:34:25 T-1000 sddm[869]: Display server started.
Feb 07 06:34:25 T-1000 sddm[869]: Socket server starting...
Feb 07 06:34:25 T-1000 sddm[869]: Socket server started.
Feb 07 06:34:25 T-1000 sddm[869]: Loading theme configuration from "/usr/share/sddm/themes/ubuntu-theme/theme.conf"
Feb 07 06:34:25 T-1000 sddm[869]: Greeter starting...
Feb 07 06:34:25 T-1000 sddm-helper[1037]: [PAM] Starting...
Feb 07 06:34:25 T-1000 sddm-helper[1037]: [PAM] Authenticating...
Feb 07 06:34:25 T-1000 sddm-helper[1037]: [PAM] returning.
Feb 07 06:34:25 T-1000 sddm-helper[1037]: pam_unix(sddm-greeter:session): session opened for user sddm(uid=119) by (uid=0)
Feb 07 06:34:25 T-1000 systemd[1]: Created slice User Slice of UID 119.
Feb 07 06:34:25 T-1000 systemd[1]: Starting User Runtime Directory /run/user/119...
Feb 07 06:34:25 T-1000 systemd-logind[800]: New session 1 of user sddm.
Feb 07 06:34:25 T-1000 systemd[1]: Finished User Runtime Directory /run/user/119.
Feb 07 06:34:25 T-1000 systemd[1]: Starting User Manager for UID 119...
Feb 07 06:34:25 T-1000 systemd[1039]: pam_unix(systemd-user:session): session opened for user sddm(uid=119) by (uid=0)
Feb 07 06:34:26 T-1000 systemd[1039]: Queued start job for default target Main User Target.
Feb 07 06:34:26 T-1000 systemd[1039]: Created slice User Application Slice.
Feb 07 06:34:26 T-1000 systemd[1039]: Created slice User Core Session Slice.
Feb 07 06:34:26 T-1000 systemd[1039]: Reached target Paths.
Feb 07 06:34:26 T-1000 systemd[1039]: Reached target Timers.
Feb 07 06:34:26 T-1000 systemd[1039]: Starting D-Bus User Message Bus Socket...
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on GnuPG network certificate management daemon.
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on PipeWire Multimedia System Socket.
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on debconf communication socket.
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on Sound System.
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on REST API socket for snapd user session agent.
Feb 07 06:34:26 T-1000 systemd[1039]: Listening on D-Bus User Message Bus Socket.
Feb 07 06:34:26 T-1000 systemd[1039]: Reached target Sockets.
Feb 07 06:34:26 T-1000 systemd[1039]: Reached target Basic System.
Feb 07 06:34:26 T-1000 systemd[1]: Started User Manager for UID 119.
Feb 07 06:34:26 T-1000 systemd[1]: Started Session 1 of User sddm.
Feb 07 06:34:26 T-1000 systemd[1039]: Started PipeWire Multimedia Service.
Feb 07 06:34:26 T-1000 systemd[1039]: Started PipeWire Media Session Manager.
Feb 07 06:34:26 T-1000 systemd[1039]: Starting Sound Service...
Feb 07 06:34:26 T-1000 sddm[869]: Greeter session started successfully
Feb 07 06:34:26 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service' requested by ':1.37' (uid=119 pid=1048 comm="/usr/bin/pipewire-media-session " label="unconfined")
Feb 07 06:34:26 T-1000 systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Feb 07 06:34:26 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Feb 07 06:34:26 T-1000 systemd[1]: Started RealtimeKit Scheduling Policy Service.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Successfully called chroot.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Successfully dropped privileges.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Successfully limited resources.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Running.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Canary thread running.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Watchdog thread running.
Feb 07 06:34:26 T-1000 rtkit-daemon[1051]: Supervising 0 threads of 0 processes of 0 users.
Feb 07 06:34:27 T-1000 sddm-greeter[1050]: High-DPI autoscaling not Enabled
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Successfully made thread 1047 of process 1047 owned by '119' high priority at nice level -11.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Supervising 1 threads of 1 processes of 1 users.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Successfully made thread 1049 of process 1049 owned by '119' high priority at nice level -11.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Supervising 2 threads of 2 processes of 1 users.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Supervising 2 threads of 2 processes of 1 users.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Supervising 2 threads of 2 processes of 1 users.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Successfully made thread 1054 of process 1048 owned by '119' RT at priority 20.
Feb 07 06:34:27 T-1000 rtkit-daemon[1051]: Supervising 3 threads of 3 processes of 1 users.
Feb 07 06:34:27 T-1000 systemd[1039]: Started D-Bus User Message Bus.
Feb 07 06:34:28 T-1000 sddm-greeter[1050]: Reading from "/usr/share/xsessions/plasma.desktop"
Feb 07 06:34:28 T-1000 sddm-greeter[1050]: Loading theme configuration from "/usr/share/sddm/themes/ubuntu-theme/theme.conf"
Feb 07 06:34:28 T-1000 dbus-daemon[1056]: [session uid=119 pid=1056] AppArmor D-Bus mediation is enabled
Feb 07 06:34:28 T-1000 sddm-greeter[1050]: Connected to the daemon.
Feb 07 06:34:28 T-1000 sddm-greeter[1050]: QFont::fromString: Invalid description '(empty)'
Feb 07 06:34:28 T-1000 sddm[869]: Message received from greeter: Connect
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 3 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Successfully made thread 1058 of process 1047 owned by '119' RT at priority 20.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 4 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 sddm-greeter[1050]: Loading file:///usr/share/sddm/themes/ubuntu-theme/Main.qml...
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 4 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Successfully made thread 1069 of process 1049 owned by '119' RT at priority 5.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 5 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 5 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Successfully made thread 1070 of process 1049 owned by '119' RT at priority 5.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 6 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 6 threads of 3 processes of 1 users.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Successfully made thread 1071 of process 1049 owned by '119' RT at priority 5.
Feb 07 06:34:29 T-1000 rtkit-daemon[1051]: Supervising 7 threads of 3 processes of 1 users.
Feb 07 06:34:31 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.44' (uid=119 pid=1049 comm="/usr/bin/pulseaudio --daemonize=no --log-target=jo" label="unconfined")
Feb 07 06:34:31 T-1000 systemd[1]: Condition check resulted in Bluetooth service being skipped.
Feb 07 06:34:31 T-1000 sddm-greeter[1050]: QObject: Cannot create children for a parent that is in a different thread.
                                           (Parent is QGuiApplication(0x7ffd796fb680), parent's thread is QThread(0x5568063965a0), current thread is QThread(0x5568067a0590)
Feb 07 06:34:31 T-1000 sddm-greeter[1050]: QObject: Cannot create children for a parent that is in a different thread.
                                           (Parent is QGuiApplication(0x7ffd796fb680), parent's thread is QThread(0x5568063965a0), current thread is QThread(0x5568067a0590)
Feb 07 06:34:31 T-1000 systemd[1]: NetworkManager-dispatcher.service: Deactivated successfully.
Feb 07 06:34:31 T-1000 systemd[1039]: Started Sound Service.
Feb 07 06:34:31 T-1000 systemd[1039]: Reached target Main User Target.
Feb 07 06:34:31 T-1000 systemd[1039]: Startup finished in 6.140s.
Feb 07 06:34:31 T-1000 sddm-greeter[1050]: QObject: Cannot create children for a parent that is in a different thread.
                                           (Parent is QGuiApplication(0x7ffd796fb680), parent's thread is QThread(0x5568063965a0), current thread is QThread(0x5568067a0590)
Feb 07 06:34:31 T-1000 sddm-greeter[1050]: QObject::installEventFilter(): Cannot filter events for objects in a different thread.
Feb 07 06:34:33 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.45' (uid=119 pid=1050 comm="/usr/bin/sddm-greeter --socket /tmp/sddm-:0-dHrQXG" label="unconfined")
Feb 07 06:34:33 T-1000 systemd[1]: Starting Daemon for power management...
Feb 07 06:34:33 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.UPower'
Feb 07 06:34:33 T-1000 systemd[1]: Started Daemon for power management.
Feb 07 06:34:34 T-1000 sddm-greeter[1050]: Adding view for "DVI-I-1" QRect(0,0 1360x768)
Feb 07 06:34:34 T-1000 systemd[1]: systemd-fsckd.service: Deactivated successfully.
Feb 07 06:34:36 T-1000 sddm-greeter[1050]: Message received from daemon: Capabilities
Feb 07 06:34:36 T-1000 sddm-greeter[1050]: Message received from daemon: HostName
Feb 07 06:34:36 T-1000 sddm-greeter[1050]: Hunspell dictionary is missing for "de_DE" . Search paths ("/usr/share/qt5/qtvirtualkeyboard/hunspell", "/usr/share/hunspell", "/usr/share/myspell/dicts")
Feb 07 06:34:36 T-1000 systemd-timesyncd[644]: Initial synchronization to time server [2620:2d:4000:1::3f]:123 (ntp.ubuntu.com).
Feb 07 06:34:42 T-1000 systemd[1]: systemd-hostnamed.service: Deactivated successfully.
Feb 07 06:34:45 T-1000 sddm-greeter[1050]: Reading from "/usr/share/xsessions/plasma.desktop"
Feb 07 06:34:45 T-1000 sddm[869]: Message received from greeter: Login
Feb 07 06:34:45 T-1000 sddm[869]: Reading from "/usr/share/xsessions/plasma.desktop"
Feb 07 06:34:45 T-1000 sddm[869]: Reading from "/usr/share/xsessions/plasma.desktop"
Feb 07 06:34:45 T-1000 sddm[869]: Session "/usr/share/xsessions/plasma.desktop" selected, command: "/usr/bin/startplasma-x11"
Feb 07 06:34:45 T-1000 sddm-helper[1115]: [PAM] Starting...
Feb 07 06:34:45 T-1000 sddm-helper[1115]: [PAM] Authenticating...
Feb 07 06:34:45 T-1000 sddm-helper[1115]: [PAM] Preparing to converse...
Feb 07 06:34:45 T-1000 sddm-helper[1115]: [PAM] Conversation with 1 messages
Feb 07 06:34:45 T-1000 sddm-helper[1115]: gkr-pam: unable to locate daemon control file
Feb 07 06:34:45 T-1000 sddm-helper[1115]: gkr-pam: stashed password to try later in open session
Feb 07 06:34:45 T-1000 sddm-helper[1115]: [PAM] returning.
Feb 07 06:34:45 T-1000 sddm-helper[1115]: pam_kwallet5(sddm:auth): pam_kwallet5: pam_sm_authenticate
Feb 07 06:34:45 T-1000 sddm[869]: Authenticated successfully
Feb 07 06:34:45 T-1000 sddm-helper[1115]: pam_kwallet5(sddm:setcred): pam_kwallet5: pam_sm_setcred
Feb 07 06:34:45 T-1000 sddm-helper[1115]: pam_unix(sddm:session): session opened for user vin(uid=1000) by (uid=0)
Feb 07 06:34:45 T-1000 systemd[1]: Created slice User Slice of UID 1000.
Feb 07 06:34:45 T-1000 systemd[1]: Starting User Runtime Directory /run/user/1000...
Feb 07 06:34:45 T-1000 systemd-logind[800]: New session 3 of user vin.
Feb 07 06:34:45 T-1000 systemd[1]: Finished User Runtime Directory /run/user/1000.
Feb 07 06:34:45 T-1000 systemd[1]: Starting User Manager for UID 1000...
Feb 07 06:34:45 T-1000 systemd[1117]: pam_unix(systemd-user:session): session opened for user vin(uid=1000) by (uid=0)
Feb 07 06:34:45 T-1000 sddm-greeter[1050]: Message received from daemon: LoginSucceeded
Feb 07 06:34:46 T-1000 systemd[1117]: Queued start job for default target Main User Target.
Feb 07 06:34:46 T-1000 systemd[1117]: Created slice User Application Slice.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Successfully made thread 1125 of process 1125 owned by '1000' high priority at nice level -11.
Feb 07 06:34:46 T-1000 systemd[1117]: Created slice User Core Session Slice.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 8 threads of 4 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Reached target Paths.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 8 threads of 4 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Reached target Timers.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 8 threads of 4 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Starting D-Bus User Message Bus Socket...
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 8 threads of 4 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on GnuPG network certificate management daemon.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Successfully made thread 1129 of process 1126 owned by '1000' RT at priority 20.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 9 threads of 5 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Successfully made thread 1127 of process 1127 owned by '1000' high priority at nice level -11.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 10 threads of 6 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 07 06:34:46 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] AppArmor D-Bus mediation is enabled
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on PipeWire Multimedia System Socket.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 10 threads of 6 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on debconf communication socket.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Successfully made thread 1131 of process 1125 owned by '1000' RT at priority 20.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on Sound System.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 11 threads of 6 processes of 2 users.
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on REST API socket for snapd user session agent.
Feb 07 06:34:46 T-1000 sddm-helper[1037]: pam_unix(sddm-greeter:session): session closed for user sddm
Feb 07 06:34:46 T-1000 systemd[1117]: Listening on D-Bus User Message Bus Socket.
Feb 07 06:34:46 T-1000 sddm-helper[1115]: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring
Feb 07 06:34:46 T-1000 systemd[1117]: Reached target Sockets.
Feb 07 06:34:46 T-1000 sddm-helper[1115]: pam_kwallet5(sddm:session): pam_kwallet5: pam_sm_open_session
Feb 07 06:34:46 T-1000 systemd[1117]: Reached target Basic System.
Feb 07 06:34:46 T-1000 systemd[1]: Started User Manager for UID 1000.
Feb 07 06:34:46 T-1000 systemd[1117]: Started PipeWire Multimedia Service.
Feb 07 06:34:46 T-1000 systemd[1]: Started Session 3 of User vin.
Feb 07 06:34:46 T-1000 systemd[1117]: Started PipeWire Media Session Manager.
Feb 07 06:34:46 T-1000 systemd[1117]: Starting Sound Service...
Feb 07 06:34:46 T-1000 systemd[1117]: Started D-Bus User Message Bus.
Feb 07 06:34:46 T-1000 sddm-helper[1037]: [PAM] Closing session
Feb 07 06:34:46 T-1000 sddm-helper[1037]: [PAM] Ended.
Feb 07 06:34:46 T-1000 systemd[1]: session-1.scope: Deactivated successfully.
Feb 07 06:34:46 T-1000 systemd[1]: session-1.scope: Consumed 4.856s CPU time.
Feb 07 06:34:46 T-1000 sddm[869]: Auth: sddm-helper exited successfully
Feb 07 06:34:46 T-1000 sddm[869]: Greeter stopped.
Feb 07 06:34:46 T-1000 systemd-logind[800]: Session 1 logged out. Waiting for processes to exit.
Feb 07 06:34:46 T-1000 systemd-logind[800]: Removed session 1.
Feb 07 06:34:46 T-1000 sddm-helper[1138]: pam_kwallet5: final socket path: /run/user/1000/kwallet5.socket
Feb 07 06:34:46 T-1000 sddm-helper[1115]: Starting: "/etc/sddm/Xsession \"/usr/bin/startplasma-x11\""
Feb 07 06:34:46 T-1000 sddm-helper[1140]: Adding cookie to "/home/vin/.Xauthority"
Feb 07 06:34:46 T-1000 sddm[869]: Session started
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 7 threads of 5 processes of 2 users.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Successfully made thread 1154 of process 1127 owned by '1000' RT at priority 5.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 8 threads of 5 processes of 2 users.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 8 threads of 5 processes of 2 users.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Successfully made thread 1155 of process 1127 owned by '1000' RT at priority 5.
Feb 07 06:34:46 T-1000 rtkit-daemon[1051]: Supervising 9 threads of 5 processes of 2 users.
Feb 07 06:34:47 T-1000 systemd[1117]: Started Sound Service.
Feb 07 06:34:47 T-1000 systemd[1117]: Reached target Main User Target.
Feb 07 06:34:47 T-1000 systemd[1117]: Startup finished in 1.273s.
Feb 07 06:34:49 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating service name='org.kde.KSplash' requested by ':1.10' (uid=1000 pid=1140 comm="/usr/bin/startplasma-x11 " label="unconfined")
Feb 07 06:34:49 T-1000 systemd[1117]: Reloading.
Feb 07 06:34:49 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.kde.KSplash'
Feb 07 06:34:51 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.kde.ActivityManager' unit='plasma-kactivitymanagerd.service' requested by ':1.16' (uid=1000 pid=1387 comm="/usr/bin/kded5 " label="unconfined")
Feb 07 06:34:51 T-1000 systemd[1117]: Created slice User Background Tasks Slice.
Feb 07 06:34:51 T-1000 systemd[1117]: Starting KActivityManager Activity manager Service...
Feb 07 06:34:51 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.kde.ActivityManager'
Feb 07 06:34:51 T-1000 systemd[1117]: Started KActivityManager Activity manager Service.
Feb 07 06:34:52 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.kde.kglobalaccel' unit='plasma-kglobalaccel.service' requested by ':1.18' (uid=1000 pid=1402 comm="/usr/lib/x86_64-linux-gnu/libexec/kactivitymanager" label="unconfined")
Feb 07 06:34:52 T-1000 systemd[1117]: Starting KDE Global Shortcuts Server...
Feb 07 06:34:52 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.kde.kglobalaccel'
Feb 07 06:34:52 T-1000 systemd[1117]: Started KDE Global Shortcuts Server.
Feb 07 06:34:53 T-1000 NetworkManager[768]: <info>  [1675748093.0544] agent-manager: agent[ff66019ce69b6129,:1.58/org.kde.plasma.networkmanagement/1000]: agent registered
Feb 07 06:34:53 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='ca.desrt.dconf' unit='dconf.service' requested by ':1.22' (uid=1000 pid=1425 comm="/usr/bin/gsettings set org.gnome.desktop.a11y.appl" label="unconfined")
Feb 07 06:34:53 T-1000 systemd[1117]: Starting User preferences database...
Feb 07 06:34:53 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'ca.desrt.dconf'
Feb 07 06:34:53 T-1000 systemd[1117]: Started User preferences database.
Feb 07 06:34:53 T-1000 polkitd(authority=local)[779]: Registered Authentication Agent for unix-session:3 (system bus name :1.60 [/usr/lib/x86_64-linux-gnu/libexec/polkit-kde-authentication-agent-1], object path /org/kde/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Feb 07 06:34:54 T-1000 systemd[1]: systemd-timedated.service: Deactivated successfully.
Feb 07 06:34:54 T-1000 systemd[1117]: Started /usr/lib/x86_64-linux-gnu/libexec/DiscoverNotifier.
Feb 07 06:34:54 T-1000 dbus-daemon[767]: [system] Activating service name='org.kde.powerdevil.discretegpuhelper' requested by ':1.61' (uid=1000 pid=1426 comm="/usr/lib/x86_64-linux-gnu/libexec/org_kde_powerdev" label="unconfined") (using servicehelper)
Feb 07 06:34:54 T-1000 systemd[1117]: Started KGpg - Verschlüsselungsprogramm.
Feb 07 06:34:54 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.PackageKit' unit='packagekit.service' requested by ':1.65' (uid=1000 pid=1484 comm="/usr/lib/x86_64-linux-gnu/libexec/DiscoverNotifier" label="unconfined")
Feb 07 06:34:54 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.kde.powerdevil.discretegpuhelper'
Feb 07 06:34:54 T-1000 dbus-daemon[767]: [system] Activating service name='org.kde.powerdevil.chargethresholdhelper' requested by ':1.61' (uid=1000 pid=1426 comm="/usr/lib/x86_64-linux-gnu/libexec/org_kde_powerdev" label="unconfined") (using servicehelper)
Feb 07 06:34:54 T-1000 systemd[1]: Starting PackageKit Daemon...
Feb 07 06:34:54 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.kde.powerdevil.chargethresholdhelper'
Feb 07 06:34:54 T-1000 dbus-daemon[767]: [system] Activating service name='org.kde.powerdevil.backlighthelper' requested by ':1.61' (uid=1000 pid=1426 comm="/usr/lib/x86_64-linux-gnu/libexec/org_kde_powerdev" label="unconfined") (using servicehelper)
Feb 07 06:34:54 T-1000 org.kde.powerdevil.backlighthelper[1526]: org.kde.powerdevil: no kernel backlight interface found
Feb 07 06:34:55 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.kde.powerdevil.backlighthelper'
Feb 07 06:34:55 T-1000 PackageKit[1521]: daemon start
Feb 07 06:34:55 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.kde.KScreen' unit='plasma-kscreen.service' requested by ':1.28' (uid=1000 pid=1426 comm="/usr/lib/x86_64-linux-gnu/libexec/org_kde_powerdev" label="unconfined")
Feb 07 06:34:55 T-1000 systemd[1117]: Starting KScreen...
Feb 07 06:34:55 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.PackageKit'
Feb 07 06:34:55 T-1000 systemd[1]: Started PackageKit Daemon.
Feb 07 06:34:55 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.kde.KScreen'
Feb 07 06:34:55 T-1000 systemd[1117]: Started KScreen.
Feb 07 06:34:56 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr: Connected output 66 to CRTC 62
Feb 07 06:34:56 T-1000 kscreen_backend_launcher[1543]: kscreen.xcb.helper: Detected XRandR 1.6
Feb 07 06:34:56 T-1000 kscreen_backend_launcher[1543]: kscreen.xcb.helper: Event Base:  89
Feb 07 06:34:56 T-1000 kscreen_backend_launcher[1543]: kscreen.xcb.helper: Event Error:  147
Feb 07 06:34:56 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating service name='org.freedesktop.Notifications' requested by ':1.31' (uid=1000 pid=1460 comm="/usr/lib/x86_64-linux-gnu/libexec/kdeconnectd " label="unconfined")
Feb 07 06:34:56 T-1000 systemd[1117]: Started /usr/bin/hp-systray.
Feb 07 06:34:56 T-1000 dbus-daemon[767]: [system] Failed to activate service 'org.bluez': timed out (service_start_timeout=25000ms)
Feb 07 06:34:56 T-1000 pulseaudio[1127]: GetManagedObjects() failed: org.freedesktop.DBus.Error.TimedOut: Failed to activate service 'org.bluez': timed out (service_start_timeout=25000ms)
Feb 07 06:34:56 T-1000 systemd[1]: Stopping User Manager for UID 119...
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped target Main User Target.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopping D-Bus User Message Bus...
Feb 07 06:34:56 T-1000 systemd[1039]: Stopping PipeWire Media Session Manager...
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped D-Bus User Message Bus.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped PipeWire Media Session Manager.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopping PipeWire Multimedia Service...
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped PipeWire Multimedia Service.
Feb 07 06:34:56 T-1000 systemd[1039]: Removed slice User Core Session Slice.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped target Basic System.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped target Paths.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped target Sockets.
Feb 07 06:34:56 T-1000 systemd[1039]: Stopped target Timers.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed D-Bus User Message Bus Socket.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed GnuPG network certificate management daemon.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 07 06:34:56 T-1000 systemd[1039]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Feb 07 06:34:56 T-1000 systemd[1039]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Feb 07 06:34:56 T-1000 systemd[1039]: Closed GnuPG cryptographic agent and passphrase cache.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed PipeWire Multimedia System Socket.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed debconf communication socket.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed Sound System.
Feb 07 06:34:56 T-1000 systemd[1039]: Closed REST API socket for snapd user session agent.
Feb 07 06:34:56 T-1000 systemd[1039]: Removed slice User Application Slice.
Feb 07 06:34:56 T-1000 systemd[1039]: Reached target Shutdown.
Feb 07 06:34:56 T-1000 systemd[1039]: Finished Exit the Session.
Feb 07 06:34:56 T-1000 systemd[1039]: Reached target Exit the Session.
Feb 07 06:34:56 T-1000 systemd[1]: user@119.service: Deactivated successfully.
Feb 07 06:34:56 T-1000 systemd[1]: Stopped User Manager for UID 119.
Feb 07 06:34:56 T-1000 systemd[1]: Stopping User Runtime Directory /run/user/119...
Feb 07 06:34:56 T-1000 systemd[1]: run-user-119.mount: Deactivated successfully.
Feb 07 06:34:56 T-1000 systemd[1]: user-runtime-dir@119.service: Deactivated successfully.
Feb 07 06:34:56 T-1000 systemd[1]: Stopped User Runtime Directory /run/user/119.
Feb 07 06:34:56 T-1000 systemd[1]: Removed slice User Slice of UID 119.
Feb 07 06:34:56 T-1000 systemd[1]: user-119.slice: Consumed 5.425s CPU time.
Feb 07 06:35:00 T-1000 spice-vdagent[1566]: vdagent virtio channel /dev/virtio-ports/com.redhat.spice.0 does not exist, exiting
Feb 07 06:35:01 T-1000 hp-systray[1550]: hp-systray[1550]: error: option -s not recognized
Feb 07 06:35:02 T-1000 systemd[1117]: Started GnuPG cryptographic agent and passphrase cache.
Feb 07 06:35:02 T-1000 gpg-agent[1596]: gpg-agent (GnuPG) 2.2.27 starting in supervised mode.
Feb 07 06:35:02 T-1000 gpg-agent[1596]: using fd 3 for extra socket (/run/user/1000/gnupg/S.gpg-agent.extra)
Feb 07 06:35:02 T-1000 gpg-agent[1596]: using fd 4 for ssh socket (/run/user/1000/gnupg/S.gpg-agent.ssh)
Feb 07 06:35:02 T-1000 gpg-agent[1596]: using fd 5 for browser socket (/run/user/1000/gnupg/S.gpg-agent.browser)
Feb 07 06:35:02 T-1000 gpg-agent[1596]: using fd 6 for std socket (/run/user/1000/gnupg/S.gpg-agent)
Feb 07 06:35:02 T-1000 gpg-agent[1596]: listening on: std=6 extra=3 browser=5 ssh=4
Feb 07 06:35:02 T-1000 kernel: ntfs3: Max link count 4000
Feb 07 06:35:02 T-1000 kernel: ntfs3: Enabled Linux POSIX ACLs support
Feb 07 06:35:02 T-1000 kernel: ntfs3: Read-only LZX/Xpress compression included
Feb 07 06:35:02 T-1000 kernel: ntfs3: Unknown parameter 'windows_names'
Feb 07 06:35:03 T-1000 ntfs-3g[1608]: Version 2021.8.22 integrated FUSE 28
Feb 07 06:35:03 T-1000 udisksd[803]: Mounted /dev/sda3 at /media/vin/hdrive on behalf of uid 1000
Feb 07 06:35:03 T-1000 ntfs-3g[1608]: Mounted /dev/sda3 (Read-Write, label "Spiele", NTFS 3.1)
Feb 07 06:35:03 T-1000 ntfs-3g[1608]: Cmdline options: rw,nodev,nosuid,uid=1000,gid=1000,windows_names,uhelper=udisks2
Feb 07 06:35:03 T-1000 ntfs-3g[1608]: Mount options: nodev,nosuid,uhelper=udisks2,allow_other,nonempty,relatime,rw,default_permissions,fsname=/dev/sda3,blkdev,blksize=4096
Feb 07 06:35:03 T-1000 ntfs-3g[1608]: Global ownership and permissions enforced, configuration type 7
Feb 07 06:35:03 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.46' (uid=1000 pid=1558 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Feb 07 06:35:03 T-1000 systemd[1117]: Starting Virtual filesystem service...
Feb 07 06:35:03 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.gtk.vfs.Daemon'
Feb 07 06:35:03 T-1000 systemd[1117]: Started Virtual filesystem service.
Feb 07 06:35:04 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.46' (uid=1000 pid=1558 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Feb 07 06:35:04 T-1000 systemd[1117]: Starting Evolution source registry...
Feb 07 06:35:05 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service' requested by ':1.58' (uid=1000 pid=1387 comm="/usr/bin/kded5 " label="unconfined")
Feb 07 06:35:05 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.bluez.obex' unit='dbus-org.bluez.obex.service' requested by ':1.16' (uid=1000 pid=1387 comm="/usr/bin/kded5 " label="unconfined")
Feb 07 06:35:05 T-1000 systemd[1]: Condition check resulted in Bluetooth service being skipped.
Feb 07 06:35:05 T-1000 systemd[1117]: Starting Bluetooth OBEX service...
Feb 07 06:35:05 T-1000 obexd[1626]: OBEX daemon 5.64
Feb 07 06:35:05 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.bluez.obex'
Feb 07 06:35:05 T-1000 systemd[1117]: Started Bluetooth OBEX service.
Feb 07 06:35:05 T-1000 dbus-daemon[767]: [system] Activating service name='org.kde.kded.smart' requested by ':1.58' (uid=1000 pid=1387 comm="/usr/bin/kded5 " label="unconfined") (using servicehelper)
Feb 07 06:35:05 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.kde.kded.smart'
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr: XRandR::setConfig
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr: Requested screen size is QSize(1360, 768)
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr: Needed CRTCs:  1
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr: Actions to perform:
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]:          Primary Output: false
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr:         Change Screen Size: false
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr:         Disable outputs: false
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr:         Change outputs: false
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr:         Enable outputs: false
Feb 07 06:35:06 T-1000 kscreen_backend_launcher[1543]: kscreen.xrandr: XRandR::setConfig done!
Feb 07 06:35:06 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Feb 07 06:35:06 T-1000 systemd[1117]: Started Evolution source registry.
Feb 07 06:35:06 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.freedesktop.portal.Desktop' unit='xdg-desktop-portal.service' requested by ':1.46' (uid=1000 pid=1558 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Feb 07 06:35:06 T-1000 systemd[1117]: Starting Portal service...
Feb 07 06:35:06 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.freedesktop.portal.Documents' unit='xdg-document-portal.service' requested by ':1.50' (uid=1000 pid=1640 comm="/usr/libexec/xdg-desktop-portal " label="unconfined")
Feb 07 06:35:06 T-1000 systemd[1117]: Starting flatpak document portal service...
Feb 07 06:35:07 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.freedesktop.impl.portal.PermissionStore' unit='xdg-permission-store.service' requested by ':1.51' (uid=1000 pid=1644 comm="/usr/libexec/xdg-document-portal " label="unconfined")
Feb 07 06:35:07 T-1000 systemd[1117]: Starting sandboxed app permission store...
Feb 07 06:35:07 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.impl.portal.PermissionStore'
Feb 07 06:35:07 T-1000 systemd[1117]: Started sandboxed app permission store.
Feb 07 06:35:07 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.portal.Documents'
Feb 07 06:35:07 T-1000 systemd[1117]: Started flatpak document portal service.
Feb 07 06:35:07 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.gtk' unit='xdg-desktop-portal-gtk.service' requested by ':1.50' (uid=1000 pid=1640 comm="/usr/libexec/xdg-desktop-portal " label="unconfined")
Feb 07 06:35:07 T-1000 systemd[1117]: Starting Portal service (GTK/GNOME implementation)...
Feb 07 06:35:07 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.impl.portal.desktop.gtk'
Feb 07 06:35:07 T-1000 systemd[1117]: Started Portal service (GTK/GNOME implementation).
Feb 07 06:35:07 T-1000 rtkit-daemon[1051]: Supervising 6 threads of 3 processes of 1 users.
Feb 07 06:35:07 T-1000 rtkit-daemon[1051]: Supervising 6 threads of 3 processes of 1 users.
Feb 07 06:35:07 T-1000 rtkit-daemon[1051]: Supervising 6 threads of 3 processes of 1 users.
Feb 07 06:35:07 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.freedesktop.impl.portal.desktop.kde' unit='plasma-xdg-desktop-portal-kde.service' requested by ':1.50' (uid=1000 pid=1640 comm="/usr/libexec/xdg-desktop-portal " label="unconfined")
Feb 07 06:35:08 T-1000 kernel: ntfs3: Unknown parameter 'windows_names'
Feb 07 06:35:08 T-1000 kernel: ntfs3: Unknown parameter 'windows_names'
Feb 07 06:35:08 T-1000 kernel: ntfs3: Unknown parameter 'windows_names'
Feb 07 06:35:08 T-1000 systemd[1117]: Starting Xdg Desktop Portal For KDE...
Feb 07 06:35:08 T-1000 ntfs-3g[1680]: Version 2021.8.22 integrated FUSE 28
Feb 07 06:35:08 T-1000 ntfs-3g[1680]: Mounted /dev/sda2 (Read-Write, label "", NTFS 3.1)
Feb 07 06:35:08 T-1000 ntfs-3g[1680]: Cmdline options: rw,nodev,nosuid,uid=1000,gid=1000,windows_names,uhelper=udisks2
Feb 07 06:35:08 T-1000 ntfs-3g[1680]: Mount options: nodev,nosuid,uhelper=udisks2,allow_other,nonempty,relatime,rw,default_permissions,fsname=/dev/sda2,blkdev,blksize=4096
Feb 07 06:35:08 T-1000 ntfs-3g[1680]: Global ownership and permissions enforced, configuration type 7
Feb 07 06:35:08 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.impl.portal.desktop.kde'
Feb 07 06:35:08 T-1000 systemd[1117]: Started Xdg Desktop Portal For KDE.
Feb 07 06:35:08 T-1000 xdg-desktop-portal-kde[1678]: xdp-kde: Desktop portal registered successfully
Feb 07 06:35:08 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating service name='org.freedesktop.secrets' requested by ':1.50' (uid=1000 pid=1640 comm="/usr/libexec/xdg-desktop-portal " label="unconfined")
Feb 07 06:35:08 T-1000 ntfs-3g[1686]: Version 2021.8.22 integrated FUSE 28
Feb 07 06:35:08 T-1000 ntfs-3g[1686]: Mounted /dev/sda5 (Read-Write, label "Volume", NTFS 3.1)
Feb 07 06:35:08 T-1000 ntfs-3g[1686]: Cmdline options: rw,nodev,nosuid,uid=1000,gid=1000,windows_names,uhelper=udisks2
Feb 07 06:35:08 T-1000 ntfs-3g[1686]: Mount options: nodev,nosuid,uhelper=udisks2,allow_other,nonempty,relatime,rw,default_permissions,fsname=/dev/sda5,blkdev,blksize=4096
Feb 07 06:35:08 T-1000 ntfs-3g[1686]: Global ownership and permissions enforced, configuration type 7
Feb 07 06:35:08 T-1000 udisksd[803]: Mounted /dev/sda2 at /media/vin/225CAC165CABE2B1 on behalf of uid 1000
Feb 07 06:35:09 T-1000 udisksd[803]: Mounted /dev/sda5 at /media/vin/Volume on behalf of uid 1000
Feb 07 06:35:09 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.secrets'
Feb 07 06:35:09 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.portal.Desktop'
Feb 07 06:35:09 T-1000 systemd[1117]: Started Portal service.
Feb 07 06:35:10 T-1000 ntfs-3g[1693]: Version 2021.8.22 integrated FUSE 28
Feb 07 06:35:10 T-1000 ntfs-3g[1693]: Mounted /dev/sdc1 (Read-Write, label "WD Extern", NTFS 3.1)
Feb 07 06:35:10 T-1000 ntfs-3g[1693]: Cmdline options: rw,nodev,nosuid,uid=1000,gid=1000,windows_names,uhelper=udisks2
Feb 07 06:35:10 T-1000 ntfs-3g[1693]: Mount options: nodev,nosuid,uhelper=udisks2,allow_other,nonempty,relatime,rw,default_permissions,fsname=/dev/sdc1,blkdev,blksize=4096
Feb 07 06:35:10 T-1000 ntfs-3g[1693]: Global ownership and permissions enforced, configuration type 7
Feb 07 06:35:10 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.46' (uid=1000 pid=1558 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Feb 07 06:35:10 T-1000 udisksd[803]: Mounted /dev/sdc1 at /media/vin/WD Extern on behalf of uid 1000
Feb 07 06:35:10 T-1000 systemd[1117]: Starting Evolution calendar service...
Feb 07 06:35:11 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Feb 07 06:35:11 T-1000 systemd[1117]: Started Evolution calendar service.
Feb 07 06:35:11 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.58' (uid=1000 pid=1700 comm="/usr/libexec/evolution-calendar-factory " label="unconfined")
Feb 07 06:35:11 T-1000 systemd[1117]: Starting Evolution address book service...
Feb 07 06:35:11 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Feb 07 06:35:11 T-1000 systemd[1117]: Started Evolution address book service.
Feb 07 06:35:15 T-1000 PackageKit[1521]: get-updates transaction /1289_adabaeca from uid 1000 finished with success after 768ms
Feb 07 06:35:18 T-1000 dbus-daemon[767]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service' requested by ':1.91' (uid=1000 pid=1457 comm="/usr/lib/x86_64-linux-gnu/libexec/DiscoverNotifier" label="unconfined")
Feb 07 06:35:18 T-1000 systemd[1]: Starting Locale Service...
Feb 07 06:35:18 T-1000 dbus-daemon[767]: [system] Successfully activated service 'org.freedesktop.locale1'
Feb 07 06:35:18 T-1000 systemd[1]: Started Locale Service.
Feb 07 06:35:19 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Successfully activated service 'org.freedesktop.Notifications'
Feb 07 06:35:20 T-1000 dbus-daemon[1130]: [session uid=1000 pid=1130] Activating service name='org.kde.KSplash' requested by ':1.27' (uid=1000 pid=1419 comm="/usr/bin/plasmashell " label="unconfined")
Feb 07 06:35:30 T-1000 dbus-daemon[767]: [system] Failed to activate service 'org.bluez': timed out (service_start_timeout=25000ms)
Feb 07 06:35:38 T-1000 xdg-desktop-portal-kde[1678]: xdp-kde-background: GetAppState called: no parameters
Feb 07 06:35:47 T-1000 systemd[1117]: Started Systemeinstellungen - Systemeinstellungen.
Feb 07 06:35:48 T-1000 systemd[1]: systemd-localed.service: Deactivated successfully.
Feb 07 06:36:05 T-1000 systemd[1117]: app-systemsettings-3813c07ac8c441d193f57b184dacffe8.scope: Consumed 5.954s CPU time.
Feb 07 06:36:08 T-1000 systemd[1117]: Started Konsole - Terminal.
Feb 07 06:36:08 T-1000 xdg-desktop-portal-kde[1678]: xdp-kde-background: GetAppState called: no parameters