ubuntuusers.de

Boot Pure Writer

Autor:
skotsche
Datum:
21. Februar 2023 22:03
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
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
-- Logs begin at Mon 2022-06-27 19:56:19 CEST, end at Tue 2023-02-21 22:01:29 CET. --
Feb 21 21:58:24 ginnungagap kernel: Linux version 5.4.0-139-generic (buildd@lcy02-amd64-112) (gcc version 9.4.0 (Ubuntu 9.4.0-1ubuntu1~20.04.1)) #156-Ubuntu SMP Fri Jan 20 17:27:18 UTC 2023 (Ubuntu 5.4.0-139.156-generic 5.4.224)
Feb 21 21:58:24 ginnungagap kernel: Command line: BOOT_IMAGE=/vmlinuz-5.4.0-139-generic root=UUID=bad31bb1-c08a-450c-9d90-2efcc33bf4a0 ro quiet splash vt.handoff=7
Feb 21 21:58:24 ginnungagap kernel: KERNEL supported cpus:
Feb 21 21:58:24 ginnungagap kernel:   Intel GenuineIntel
Feb 21 21:58:24 ginnungagap kernel:   AMD AuthenticAMD
Feb 21 21:58:24 ginnungagap kernel:   Hygon HygonGenuine
Feb 21 21:58:24 ginnungagap kernel:   Centaur CentaurHauls
Feb 21 21:58:24 ginnungagap kernel:   zhaoxin   Shanghai  
Feb 21 21:58:24 ginnungagap kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Feb 21 21:58:24 ginnungagap kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Feb 21 21:58:24 ginnungagap kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Feb 21 21:58:24 ginnungagap kernel: x86/fpu: xstate_offset[2]:  576, xstate_sizes[2]:  256
Feb 21 21:58:24 ginnungagap kernel: x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'compacted' format.
Feb 21 21:58:24 ginnungagap kernel: BIOS-provided physical RAM map:
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009d3ff] usable
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x000000000009d400-0x000000000009ffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000001d7ffff] usable
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x0000000001d80000-0x0000000001ffffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x0000000002000000-0x00000000dd2e2fff] usable
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000dd2e3000-0x00000000dd3d3fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000dd3d4000-0x00000000dd4c5fff] usable
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000dd4c6000-0x00000000dd892fff] ACPI NVS
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000dd893000-0x00000000de3e8fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000de3e9000-0x00000000deffffff] usable
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000df000000-0x00000000dfffffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fdf00000-0x00000000fdffffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fea00000-0x00000000fea0ffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000feb80000-0x00000000fec01fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fec10000-0x00000000fec10fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fec30000-0x00000000fec30fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fed00000-0x00000000fed00fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fed40000-0x00000000fed44fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fed80000-0x00000000fed8ffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fedc2000-0x00000000fedcffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fedd4000-0x00000000fedd5fff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Feb 21 21:58:24 ginnungagap kernel: BIOS-e820: [mem 0x0000000100000000-0x000000061f37ffff] usable
Feb 21 21:58:24 ginnungagap kernel: NX (Execute Disable) protection: active
Feb 21 21:58:24 ginnungagap kernel: SMBIOS 3.0 present.
Feb 21 21:58:24 ginnungagap kernel: DMI: Micro-Star International Co., Ltd MS-7A34/B350 PC MATE (MS-7A34), BIOS A.40 05/09/2017
Feb 21 21:58:24 ginnungagap kernel: tsc: Fast TSC calibration failed
Feb 21 21:58:24 ginnungagap kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Feb 21 21:58:24 ginnungagap kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Feb 21 21:58:24 ginnungagap kernel: last_pfn = 0x61f380 max_arch_pfn = 0x400000000
Feb 21 21:58:24 ginnungagap kernel: MTRR default type: uncachable
Feb 21 21:58:24 ginnungagap kernel: MTRR fixed ranges enabled:
Feb 21 21:58:24 ginnungagap kernel:   00000-9FFFF write-back
Feb 21 21:58:24 ginnungagap kernel:   A0000-BFFFF write-through
Feb 21 21:58:24 ginnungagap kernel:   C0000-FFFFF write-protect
Feb 21 21:58:24 ginnungagap kernel: MTRR variable ranges enabled:
Feb 21 21:58:24 ginnungagap kernel:   0 base 000000000000 mask FFFF80000000 write-back
Feb 21 21:58:24 ginnungagap kernel:   1 base 000080000000 mask FFFFC0000000 write-back
Feb 21 21:58:24 ginnungagap kernel:   2 base 0000C0000000 mask FFFFE0000000 write-back
Feb 21 21:58:24 ginnungagap kernel:   3 base 0000DF000000 mask FFFFFF000000 uncachable
Feb 21 21:58:24 ginnungagap kernel:   4 disabled
Feb 21 21:58:24 ginnungagap kernel:   5 disabled
Feb 21 21:58:24 ginnungagap kernel:   6 disabled
Feb 21 21:58:24 ginnungagap kernel:   7 disabled
Feb 21 21:58:24 ginnungagap kernel: TOM2: 0000000620000000 aka 25088M
Feb 21 21:58:24 ginnungagap kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WP  UC- WT  
Feb 21 21:58:24 ginnungagap kernel: total RAM covered: 3568M
Feb 21 21:58:24 ginnungagap kernel: Found optimal setting for mtrr clean up
Feb 21 21:58:24 ginnungagap kernel:  gran_size: 64K         chunk_size: 1G         num_reg: 3          lose cover RAM: 0G
Feb 21 21:58:24 ginnungagap kernel: e820: update [mem 0xdf000000-0xffffffff] usable ==> reserved
Feb 21 21:58:24 ginnungagap kernel: last_pfn = 0xdf000 max_arch_pfn = 0x400000000
Feb 21 21:58:24 ginnungagap kernel: check: Scanning 1 areas for low memory corruption
Feb 21 21:58:24 ginnungagap kernel: Using GB pages for direct mapping
Feb 21 21:58:24 ginnungagap kernel: RAMDISK: [mem 0x31b37000-0x34d92fff]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Early table checksum verification disabled
Feb 21 21:58:24 ginnungagap kernel: ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
Feb 21 21:58:24 ginnungagap kernel: ACPI: XSDT 0x00000000DD4C6098 0000AC (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 21 21:58:24 ginnungagap kernel: ACPI: FACP 0x00000000DD4CC080 000114 (v06 ALASKA A M I    01072009 AMI  00010013)
Feb 21 21:58:24 ginnungagap kernel: ACPI BIOS Warning (bug): Optional FADT field Pm2ControlBlock has valid Length but zero Address: 0x0000000000000000/0x1 (20190816/tbfadt-615)
Feb 21 21:58:24 ginnungagap kernel: ACPI: DSDT 0x00000000DD4C61D8 005EA2 (v02 ALASKA A M I    01072009 INTL 20120913)
Feb 21 21:58:24 ginnungagap kernel: ACPI: FACS 0x00000000DD87CE00 000040
Feb 21 21:58:24 ginnungagap kernel: ACPI: APIC 0x00000000DD4CC198 0000DE (v03 ALASKA A M I    01072009 AMI  00010013)
Feb 21 21:58:24 ginnungagap kernel: ACPI: FPDT 0x00000000DD4CC278 000044 (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 21 21:58:24 ginnungagap kernel: ACPI: FIDT 0x00000000DD4CC2C0 00009C (v01 ALASKA A M I    01072009 AMI  00010013)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SSDT 0x00000000DD4CC360 008C4C (v02                 00000002 MSFT 04000000)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SSDT 0x00000000DD4D4FB0 001084 (v01 AMD    AmdTable 00000001 AMD  00000001)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SRAT 0x00000000DD4D6038 0000B0 (v03 AMD    AmdTable 00000001 AMD  00000001)
Feb 21 21:58:24 ginnungagap kernel: ACPI: CRAT 0x00000000DD4D60E8 000878 (v01 AMD    AmdTable 00000001 AMD  00000001)
Feb 21 21:58:24 ginnungagap kernel: ACPI: CDIT 0x00000000DD4D6960 000029 (v01 AMD    AmdTable 00000001 AMD  00000001)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SSDT 0x00000000DD4D6990 0017E1 (v01 AMD    AOD      00000001 INTL 20120913)
Feb 21 21:58:24 ginnungagap kernel: ACPI: MCFG 0x00000000DD4D8178 00003C (v01 ALASKA A M I    01072009 MSFT 00010013)
Feb 21 21:58:24 ginnungagap kernel: ACPI: HPET 0x00000000DD4D81B8 000038 (v01 ALASKA A M I    01072009 AMI  00000005)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SSDT 0x00000000DD4D81F0 000024 (v01 AMDFCH FCHZP    00001000 INTL 20120913)
Feb 21 21:58:24 ginnungagap kernel: ACPI: UEFI 0x00000000DD4D8218 000042 (v01                 00000000      00000000)
Feb 21 21:58:24 ginnungagap kernel: ACPI: IVRS 0x00000000DD4D8260 0000D0 (v02                 00000001 AMD  00000000)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SSDT 0x00000000DD4D8330 0000F8 (v01                 00001000 INTL 20120913)
Feb 21 21:58:24 ginnungagap kernel: ACPI: SSDT 0x00000000DD4D8428 001664 (v01 AMD    CPMCMN   00000001 INTL 20120913)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving FACP table memory at [mem 0xdd4cc080-0xdd4cc193]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving DSDT table memory at [mem 0xdd4c61d8-0xdd4cc079]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving FACS table memory at [mem 0xdd87ce00-0xdd87ce3f]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving APIC table memory at [mem 0xdd4cc198-0xdd4cc275]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving FPDT table memory at [mem 0xdd4cc278-0xdd4cc2bb]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving FIDT table memory at [mem 0xdd4cc2c0-0xdd4cc35b]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SSDT table memory at [mem 0xdd4cc360-0xdd4d4fab]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SSDT table memory at [mem 0xdd4d4fb0-0xdd4d6033]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SRAT table memory at [mem 0xdd4d6038-0xdd4d60e7]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving CRAT table memory at [mem 0xdd4d60e8-0xdd4d695f]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving CDIT table memory at [mem 0xdd4d6960-0xdd4d6988]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SSDT table memory at [mem 0xdd4d6990-0xdd4d8170]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving MCFG table memory at [mem 0xdd4d8178-0xdd4d81b3]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving HPET table memory at [mem 0xdd4d81b8-0xdd4d81ef]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SSDT table memory at [mem 0xdd4d81f0-0xdd4d8213]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving UEFI table memory at [mem 0xdd4d8218-0xdd4d8259]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving IVRS table memory at [mem 0xdd4d8260-0xdd4d832f]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SSDT table memory at [mem 0xdd4d8330-0xdd4d8427]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Reserving SSDT table memory at [mem 0xdd4d8428-0xdd4d9a8b]
Feb 21 21:58:24 ginnungagap kernel: ACPI: Local APIC address 0xfee00000
Feb 21 21:58:24 ginnungagap kernel: system APIC only can use physical flat
Feb 21 21:58:24 ginnungagap kernel: Setting APIC routing to physical flat.
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x00 -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x01 -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x04 -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x05 -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x0c -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x0d -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x0e -> Node 0
Feb 21 21:58:24 ginnungagap kernel: SRAT: PXM 0 -> APIC 0x0f -> Node 0
Feb 21 21:58:24 ginnungagap kernel: No NUMA configuration found
Feb 21 21:58:24 ginnungagap kernel: Faking a node at [mem 0x0000000000000000-0x000000061f37ffff]
Feb 21 21:58:24 ginnungagap kernel: NODE_DATA(0) allocated [mem 0x61f355000-0x61f37ffff]
Feb 21 21:58:24 ginnungagap kernel: Zone ranges:
Feb 21 21:58:24 ginnungagap kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Feb 21 21:58:24 ginnungagap kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Feb 21 21:58:24 ginnungagap kernel:   Normal   [mem 0x0000000100000000-0x000000061f37ffff]
Feb 21 21:58:24 ginnungagap kernel:   Device   empty
Feb 21 21:58:24 ginnungagap kernel: Movable zone start for each node
Feb 21 21:58:24 ginnungagap kernel: Early memory node ranges
Feb 21 21:58:24 ginnungagap kernel:   node   0: [mem 0x0000000000001000-0x000000000009cfff]
Feb 21 21:58:24 ginnungagap kernel:   node   0: [mem 0x0000000000100000-0x0000000001d7ffff]
Feb 21 21:58:24 ginnungagap kernel:   node   0: [mem 0x0000000002000000-0x00000000dd2e2fff]
Feb 21 21:58:24 ginnungagap kernel:   node   0: [mem 0x00000000dd3d4000-0x00000000dd4c5fff]
Feb 21 21:58:24 ginnungagap kernel:   node   0: [mem 0x00000000de3e9000-0x00000000deffffff]
Feb 21 21:58:24 ginnungagap kernel:   node   0: [mem 0x0000000100000000-0x000000061f37ffff]
Feb 21 21:58:24 ginnungagap kernel: Zeroed struct page in unavailable ranges: 12152 pages
Feb 21 21:58:24 ginnungagap kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000061f37ffff]
Feb 21 21:58:24 ginnungagap kernel: On node 0 totalpages: 6279304
Feb 21 21:58:24 ginnungagap kernel:   DMA zone: 64 pages used for memmap
Feb 21 21:58:24 ginnungagap kernel:   DMA zone: 21 pages reserved
Feb 21 21:58:24 ginnungagap kernel:   DMA zone: 3996 pages, LIFO batch:0
Feb 21 21:58:24 ginnungagap kernel:   DMA32 zone: 14134 pages used for memmap
Feb 21 21:58:24 ginnungagap kernel:   DMA32 zone: 904556 pages, LIFO batch:63
Feb 21 21:58:24 ginnungagap kernel:   Normal zone: 83918 pages used for memmap
Feb 21 21:58:24 ginnungagap kernel:   Normal zone: 5370752 pages, LIFO batch:63
Feb 21 21:58:24 ginnungagap kernel: ACPI: PM-Timer IO Port: 0x808
Feb 21 21:58:24 ginnungagap kernel: ACPI: Local APIC address 0xfee00000
Feb 21 21:58:24 ginnungagap kernel: system APIC only can use physical flat
Feb 21 21:58:24 ginnungagap kernel: ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
Feb 21 21:58:24 ginnungagap kernel: IOAPIC[0]: apic_id 9, version 33, address 0xfec00000, GSI 0-23
Feb 21 21:58:24 ginnungagap kernel: IOAPIC[1]: apic_id 10, version 33, address 0xfec01000, GSI 24-55
Feb 21 21:58:24 ginnungagap kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Feb 21 21:58:24 ginnungagap kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Feb 21 21:58:24 ginnungagap kernel: ACPI: IRQ0 used by override.
Feb 21 21:58:24 ginnungagap kernel: ACPI: IRQ9 used by override.
Feb 21 21:58:24 ginnungagap kernel: Using ACPI (MADT) for SMP configuration information
Feb 21 21:58:24 ginnungagap kernel: ACPI: HPET id: 0x10228201 base: 0xfed00000
Feb 21 21:58:24 ginnungagap kernel: smpboot: Allowing 16 CPUs, 8 hotplug CPUs
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0x0009d000-0x0009dfff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0x01d80000-0x01ffffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xdd2e3000-0xdd3d3fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xdd4c6000-0xdd892fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xdd893000-0xde3e8fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xdf000000-0xdfffffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xe0000000-0xf7ffffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfc000000-0xfdefffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfdf00000-0xfdffffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfe000000-0xfe9fffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfea00000-0xfea0ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfea10000-0xfeb7ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfeb80000-0xfec01fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfec02000-0xfec0ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfec10000-0xfec10fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfec11000-0xfec2ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfec30000-0xfec30fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfec31000-0xfecfffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfed00000-0xfed00fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfed01000-0xfed3ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfed40000-0xfed44fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfed45000-0xfed7ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfed80000-0xfed8ffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfed90000-0xfedc1fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfedc2000-0xfedcffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfedd0000-0xfedd3fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfedd4000-0xfedd5fff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfedd6000-0xfedfffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfee00000-0xfeefffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xfef00000-0xfeffffff]
Feb 21 21:58:24 ginnungagap kernel: PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Feb 21 21:58:24 ginnungagap kernel: [mem 0xe0000000-0xf7ffffff] available for PCI devices
Feb 21 21:58:24 ginnungagap kernel: Booting paravirtualized kernel on bare hardware
Feb 21 21:58:24 ginnungagap kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Feb 21 21:58:24 ginnungagap kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:16 nr_cpu_ids:16 nr_node_ids:1
Feb 21 21:58:24 ginnungagap kernel: percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u262144
Feb 21 21:58:24 ginnungagap kernel: pcpu-alloc: s208896 r8192 d28672 u262144 alloc=1*2097152
Feb 21 21:58:24 ginnungagap kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Feb 21 21:58:24 ginnungagap kernel: Built 1 zonelists, mobility grouping on.  Total pages: 6181167
Feb 21 21:58:24 ginnungagap kernel: Policy zone: Normal
Feb 21 21:58:24 ginnungagap kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.4.0-139-generic root=UUID=bad31bb1-c08a-450c-9d90-2efcc33bf4a0 ro quiet splash vt.handoff=7
Feb 21 21:58:24 ginnungagap kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: mem auto-init: stack:off, heap alloc:on, heap free:off
Feb 21 21:58:24 ginnungagap kernel: Calgary: detecting Calgary via BIOS EBDA area
Feb 21 21:58:24 ginnungagap kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Feb 21 21:58:24 ginnungagap kernel: Memory: 24516280K/25117216K available (14339K kernel code, 2394K rwdata, 9500K rodata, 2764K init, 4944K bss, 600936K reserved, 0K cma-reserved)
Feb 21 21:58:24 ginnungagap kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=16, Nodes=1
Feb 21 21:58:24 ginnungagap kernel: ftrace: allocating 44631 entries in 175 pages
Feb 21 21:58:24 ginnungagap kernel: rcu: Hierarchical RCU implementation.
Feb 21 21:58:24 ginnungagap kernel: rcu:         RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=16.
Feb 21 21:58:24 ginnungagap kernel:         Tasks RCU enabled.
Feb 21 21:58:24 ginnungagap kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies.
Feb 21 21:58:24 ginnungagap kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=16
Feb 21 21:58:24 ginnungagap kernel: NR_IRQS: 524544, nr_irqs: 1096, preallocated irqs: 16
Feb 21 21:58:24 ginnungagap kernel: random: crng init done
Feb 21 21:58:24 ginnungagap kernel: spurious 8259A interrupt: IRQ7.
Feb 21 21:58:24 ginnungagap kernel: vt handoff: transparent VT on vt#7
Feb 21 21:58:24 ginnungagap kernel: Console: colour dummy device 80x25
Feb 21 21:58:24 ginnungagap kernel: printk: console [tty0] enabled
Feb 21 21:58:24 ginnungagap kernel: ACPI: Core revision 20190816
Feb 21 21:58:24 ginnungagap kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484873504 ns
Feb 21 21:58:24 ginnungagap kernel: APIC: Switch to symmetric I/O mode setup
Feb 21 21:58:24 ginnungagap kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Feb 21 21:58:24 ginnungagap kernel: tsc: Unable to calibrate against PIT
Feb 21 21:58:24 ginnungagap kernel: tsc: using HPET reference calibration
Feb 21 21:58:24 ginnungagap kernel: tsc: Detected 3500.011 MHz processor
Feb 21 21:58:24 ginnungagap kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x32735b6b61c, max_idle_ns: 440795248668 ns
Feb 21 21:58:24 ginnungagap kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 7000.02 BogoMIPS (lpj=14000044)
Feb 21 21:58:24 ginnungagap kernel: pid_max: default: 32768 minimum: 301
Feb 21 21:58:24 ginnungagap kernel: LSM: Security Framework initializing
Feb 21 21:58:24 ginnungagap kernel: Yama: becoming mindful.
Feb 21 21:58:24 ginnungagap kernel: AppArmor: AppArmor initialized
Feb 21 21:58:24 ginnungagap kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE tmpfs ***
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE proc ***
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE cgroup1 ***
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE cgroup2 ***
Feb 21 21:58:24 ginnungagap kernel: LVT offset 1 assigned for vector 0xf9
Feb 21 21:58:24 ginnungagap kernel: LVT offset 2 assigned for vector 0xf4
Feb 21 21:58:24 ginnungagap kernel: Last level iTLB entries: 4KB 1024, 2MB 1024, 4MB 512
Feb 21 21:58:24 ginnungagap kernel: Last level dTLB entries: 4KB 1536, 2MB 1536, 4MB 768, 1GB 0
Feb 21 21:58:24 ginnungagap kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
Feb 21 21:58:24 ginnungagap kernel: Spectre V2 : Mitigation: Retpolines
Feb 21 21:58:24 ginnungagap kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch
Feb 21 21:58:24 ginnungagap kernel: Spectre V2 : Spectre v2 / SpectreRSB : Filling RSB on VMEXIT
Feb 21 21:58:24 ginnungagap kernel: RETBleed: Vulnerable
Feb 21 21:58:24 ginnungagap kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp
Feb 21 21:58:24 ginnungagap kernel: Freeing SMP alternatives memory: 40K
Feb 21 21:58:24 ginnungagap kernel: smpboot: CPU0: AMD Ryzen 5 1500X Quad-Core Processor (family: 0x17, model: 0x1, stepping: 0x1)
Feb 21 21:58:24 ginnungagap kernel: Performance Events: Fam17h+ core perfctr, AMD PMU driver.
Feb 21 21:58:24 ginnungagap kernel: ... version:                0
Feb 21 21:58:24 ginnungagap kernel: ... bit width:              48
Feb 21 21:58:24 ginnungagap kernel: ... generic registers:      6
Feb 21 21:58:24 ginnungagap kernel: ... value mask:             0000ffffffffffff
Feb 21 21:58:24 ginnungagap kernel: ... max period:             00007fffffffffff
Feb 21 21:58:24 ginnungagap kernel: ... fixed-purpose events:   0
Feb 21 21:58:24 ginnungagap kernel: ... event mask:             000000000000003f
Feb 21 21:58:24 ginnungagap kernel: rcu: Hierarchical SRCU implementation.
Feb 21 21:58:24 ginnungagap kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
Feb 21 21:58:24 ginnungagap kernel: smp: Bringing up secondary CPUs ...
Feb 21 21:58:24 ginnungagap kernel: x86: Booting SMP configuration:
Feb 21 21:58:24 ginnungagap kernel: .... node  #0, CPUs:        #1  #2  #3  #4  #5  #6  #7
Feb 21 21:58:24 ginnungagap kernel: smp: Brought up 1 node, 8 CPUs
Feb 21 21:58:24 ginnungagap kernel: smpboot: Max logical packages: 2
Feb 21 21:58:24 ginnungagap kernel: smpboot: Total of 8 processors activated (56000.17 BogoMIPS)
Feb 21 21:58:24 ginnungagap kernel: devtmpfs: initialized
Feb 21 21:58:24 ginnungagap kernel: x86/mm: Memory block size: 128MB
Feb 21 21:58:24 ginnungagap kernel: PM: Registering ACPI NVS region [mem 0xdd4c6000-0xdd892fff] (3985408 bytes)
Feb 21 21:58:24 ginnungagap kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Feb 21 21:58:24 ginnungagap kernel: futex hash table entries: 4096 (order: 6, 262144 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: pinctrl core: initialized pinctrl subsystem
Feb 21 21:58:24 ginnungagap kernel: PM: RTC time: 20:58:20, date: 2023-02-21
Feb 21 21:58:24 ginnungagap kernel: NET: Registered protocol family 16
Feb 21 21:58:24 ginnungagap kernel: audit: initializing netlink subsys (disabled)
Feb 21 21:58:24 ginnungagap kernel: audit: type=2000 audit(1677013099.172:1): state=initialized audit_enabled=0 res=1
Feb 21 21:58:24 ginnungagap kernel: EISA bus registered
Feb 21 21:58:24 ginnungagap kernel: cpuidle: using governor ladder
Feb 21 21:58:24 ginnungagap kernel: cpuidle: using governor menu
Feb 21 21:58:24 ginnungagap kernel: ACPI: bus type PCI registered
Feb 21 21:58:24 ginnungagap kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Feb 21 21:58:24 ginnungagap kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Feb 21 21:58:24 ginnungagap kernel: PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Feb 21 21:58:24 ginnungagap kernel: pmd_set_huge: Cannot satisfy [mem 0xf8000000-0xf8200000] with a huge-page mapping due to MTRR override.
Feb 21 21:58:24 ginnungagap kernel: PCI: Using configuration type 1 for base access
Feb 21 21:58:24 ginnungagap kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages
Feb 21 21:58:24 ginnungagap kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(Module Device)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(Processor Device)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(Processor Aggregator Device)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(Linux-Dell-Video)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics)
Feb 21 21:58:24 ginnungagap kernel: ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Feb 21 21:58:24 ginnungagap kernel: ACPI: 7 ACPI AML tables successfully acquired and loaded
Feb 21 21:58:24 ginnungagap kernel: ACPI: Interpreter enabled
Feb 21 21:58:24 ginnungagap kernel: ACPI: (supports S0 S3 S4 S5)
Feb 21 21:58:24 ginnungagap kernel: ACPI: Using IOAPIC for interrupt routing
Feb 21 21:58:24 ginnungagap kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Feb 21 21:58:24 ginnungagap kernel: ACPI: Enabled 2 GPEs in block 00 to 1F
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Feb 21 21:58:24 ginnungagap kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3]
Feb 21 21:58:24 ginnungagap kernel: acpi PNP0A08:00: _OSC: platform does not support [SHPCHotplug LTR]
Feb 21 21:58:24 ginnungagap kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Feb 21 21:58:24 ginnungagap kernel: acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-3f] only partially covers this bridge
Feb 21 21:58:24 ginnungagap kernel: PCI host bridge to bus 0000:00
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03df window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [mem 0x000c0000-0x000dffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [mem 0xe0000000-0xfec2ffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [mem 0xfee00000-0xffffffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: root bus resource [bus 00-ff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.0: [1022:1450] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.2: [1022:1451] type 00 class 0x080600
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.0: [1022:1452] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1: [1022:1453] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3: [1022:1453] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:02.0: [1022:1452] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.0: [1022:1452] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1: [1022:1453] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:04.0: [1022:1452] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.0: [1022:1452] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1: [1022:1454] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.0: [1022:1452] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1: [1022:1454] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:14.0: [1022:790b] type 00 class 0x0c0500
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:14.3: [1022:790e] type 00 class 0x060100
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.0: [1022:1460] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.1: [1022:1461] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.2: [1022:1462] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.3: [1022:1463] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.4: [1022:1464] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.5: [1022:1465] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.6: [1022:1466] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.7: [1022:1467] type 00 class 0x060000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:01:00.0: [144d:a804] type 00 class 0x010802
Feb 21 21:58:24 ginnungagap kernel: pci 0000:01:00.0: reg 0x10: [mem 0xfe900000-0xfe903fff 64bit]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1:   bridge window [mem 0xfe900000-0xfe9fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.0: [1022:43bb] type 00 class 0x0c0330
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.0: reg 0x10: [mem 0xfe6a0000-0xfe6a7fff 64bit]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.0: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.1: [1022:43b7] type 00 class 0x010601
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.1: reg 0x24: [mem 0xfe680000-0xfe69ffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.1: reg 0x30: [mem 0xfe600000-0xfe67ffff pref]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.1: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2: [1022:43b2] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3: PCI bridge to [bus 03-22]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3:   bridge window [mem 0xfe500000-0xfe6fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:00.0: [1022:43b4] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:00.0: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0: [1022:43b4] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:04.0: [1022:43b4] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:04.0: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2: PCI bridge to [bus 04-22]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2:   bridge window [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2:   bridge window [mem 0xfe500000-0xfe5fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: [1b21:1080] type 01 class 0x060400
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: supports D1 D2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:00.0: PCI bridge to [bus 1f-20]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:20: extended config space not accessible
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: PCI bridge to [bus 20]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: [10ec:8168] type 00 class 0x020000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: reg 0x10: [io  0xf000-0xf0ff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: reg 0x18: [mem 0xfe504000-0xfe504fff 64bit]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: reg 0x20: [mem 0xfe500000-0xfe503fff 64bit]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: supports D1 D2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0: PCI bridge to [bus 21]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0:   bridge window [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0:   bridge window [mem 0xfe500000-0xfe5fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:04.0: PCI bridge to [bus 22]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: [1002:67df] type 00 class 0x030000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: reg 0x10: [mem 0xe0000000-0xefffffff 64bit pref]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: reg 0x18: [mem 0xf0000000-0xf01fffff 64bit pref]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: reg 0x20: [io  0xe000-0xe0ff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: reg 0x24: [mem 0xfe800000-0xfe83ffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: reg 0x30: [mem 0xfe840000-0xfe85ffff pref]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: supports D1 D2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: PME# supported from D1 D2 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.1: [1002:aaf0] type 00 class 0x040300
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.1: reg 0x10: [mem 0xfe860000-0xfe863fff 64bit]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.1: supports D1 D2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1: PCI bridge to [bus 23]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1:   bridge window [mem 0xfe800000-0xfe8fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.0: [1022:145a] type 00 class 0x130000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.0: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.2: [1022:1456] type 00 class 0x108000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.2: reg 0x18: [mem 0xfe300000-0xfe3fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.2: reg 0x24: [mem 0xfe400000-0xfe401fff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.2: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.3: [1022:145c] type 00 class 0x0c0330
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.3: reg 0x10: [mem 0xfe200000-0xfe2fffff 64bit]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.3: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.3: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1: PCI bridge to [bus 24]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1:   bridge window [mem 0xfe200000-0xfe4fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.0: [1022:1455] type 00 class 0x130000
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.0: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.2: [1022:7901] type 00 class 0x010601
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.2: reg 0x24: [mem 0xfe708000-0xfe708fff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.2: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.2: PME# supported from D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.3: [1022:1457] type 00 class 0x040300
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.3: reg 0x10: [mem 0xfe700000-0xfe707fff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.3: enabling Extended Tags
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.3: PME# supported from D0 D3hot D3cold
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1: PCI bridge to [bus 25]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1:   bridge window [mem 0xfe700000-0xfe7fffff]
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 4 5 7 10 11 14 15) *0
Feb 21 21:58:24 ginnungagap kernel: iommu: Default domain type: Translated 
Feb 21 21:58:24 ginnungagap kernel: SCSI subsystem initialized
Feb 21 21:58:24 ginnungagap kernel: libata version 3.00 loaded.
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: vgaarb: setting as boot VGA device
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: vgaarb: bridge control possible
Feb 21 21:58:24 ginnungagap kernel: vgaarb: loaded
Feb 21 21:58:24 ginnungagap kernel: ACPI: bus type USB registered
Feb 21 21:58:24 ginnungagap kernel: usbcore: registered new interface driver usbfs
Feb 21 21:58:24 ginnungagap kernel: usbcore: registered new interface driver hub
Feb 21 21:58:24 ginnungagap kernel: usbcore: registered new device driver usb
Feb 21 21:58:24 ginnungagap kernel: pps_core: LinuxPPS API ver. 1 registered
Feb 21 21:58:24 ginnungagap kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Feb 21 21:58:24 ginnungagap kernel: PTP clock support registered
Feb 21 21:58:24 ginnungagap kernel: EDAC MC: Ver: 3.0.0
Feb 21 21:58:24 ginnungagap kernel: PCI: Using ACPI for IRQ routing
Feb 21 21:58:24 ginnungagap kernel: PCI: pci_cache_line_size set to 64 bytes
Feb 21 21:58:24 ginnungagap kernel: e820: reserve RAM buffer [mem 0x0009d400-0x0009ffff]
Feb 21 21:58:24 ginnungagap kernel: e820: reserve RAM buffer [mem 0x01d80000-0x03ffffff]
Feb 21 21:58:24 ginnungagap kernel: e820: reserve RAM buffer [mem 0xdd2e3000-0xdfffffff]
Feb 21 21:58:24 ginnungagap kernel: e820: reserve RAM buffer [mem 0xdd4c6000-0xdfffffff]
Feb 21 21:58:24 ginnungagap kernel: e820: reserve RAM buffer [mem 0xdf000000-0xdfffffff]
Feb 21 21:58:24 ginnungagap kernel: e820: reserve RAM buffer [mem 0x61f380000-0x61fffffff]
Feb 21 21:58:24 ginnungagap kernel: NetLabel: Initializing
Feb 21 21:58:24 ginnungagap kernel: NetLabel:  domain hash size = 128
Feb 21 21:58:24 ginnungagap kernel: NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
Feb 21 21:58:24 ginnungagap kernel: NetLabel:  unlabeled traffic allowed by default
Feb 21 21:58:24 ginnungagap kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
Feb 21 21:58:24 ginnungagap kernel: hpet0: 3 comparators, 32-bit 14.318180 MHz counter
Feb 21 21:58:24 ginnungagap kernel: clocksource: Switched to clocksource tsc-early
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE bpf ***
Feb 21 21:58:24 ginnungagap kernel: VFS: Disk quotas dquot_6.6.0
Feb 21 21:58:24 ginnungagap kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE ramfs ***
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE hugetlbfs ***
Feb 21 21:58:24 ginnungagap kernel: AppArmor: AppArmor Filesystem Enabled
Feb 21 21:58:24 ginnungagap kernel: pnp: PnP ACPI init
Feb 21 21:58:24 ginnungagap kernel: system 00:00: [mem 0xf8000000-0xfbffffff] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Feb 21 21:58:24 ginnungagap kernel: system 00:01: [mem 0xfeb80000-0xfebfffff] could not be reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Feb 21 21:58:24 ginnungagap kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
Feb 21 21:58:24 ginnungagap kernel: system 00:03: [io  0x0a00-0x0a0f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:03: [io  0x0a10-0x0a1f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:03: [io  0x0a20-0x0a2f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:03: [io  0x0a40-0x0a4f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:03: Plug and Play ACPI device, IDs PNP0c02 (active)
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x04d0-0x04d1] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x040b] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x04d6] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0c00-0x0c01] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0c14] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0c50-0x0c51] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0c52] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0c6c] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0c6f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0cd0-0x0cd1] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0cd2-0x0cd3] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0cd4-0x0cd5] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0cd6-0x0cd7] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0cd8-0x0cdf] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0800-0x089f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0b00-0x0b0f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0b20-0x0b3f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0900-0x090f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [io  0x0910-0x091f] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xfec01000-0xfec01fff] could not be reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xfedc0000-0xfedc0fff] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xfed80000-0xfed8ffff] could not be reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xfec10000-0xfec10fff] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: [mem 0xff000000-0xffffffff] has been reserved
Feb 21 21:58:24 ginnungagap kernel: system 00:04: Plug and Play ACPI device, IDs PNP0c02 (active)
Feb 21 21:58:24 ginnungagap kernel: pnp: PnP ACPI: found 5 devices
Feb 21 21:58:24 ginnungagap kernel: thermal_sys: Registered thermal governor 'fair_share'
Feb 21 21:58:24 ginnungagap kernel: thermal_sys: Registered thermal governor 'bang_bang'
Feb 21 21:58:24 ginnungagap kernel: thermal_sys: Registered thermal governor 'step_wise'
Feb 21 21:58:24 ginnungagap kernel: thermal_sys: Registered thermal governor 'user_space'
Feb 21 21:58:24 ginnungagap kernel: thermal_sys: Registered thermal governor 'power_allocator'
Feb 21 21:58:24 ginnungagap kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1: PCI bridge to [bus 01]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1:   bridge window [mem 0xfe900000-0xfe9fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: PCI bridge to [bus 20]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:00.0: PCI bridge to [bus 1f-20]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0: PCI bridge to [bus 21]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0:   bridge window [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0:   bridge window [mem 0xfe500000-0xfe5fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:04.0: PCI bridge to [bus 22]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2: PCI bridge to [bus 04-22]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2:   bridge window [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2:   bridge window [mem 0xfe500000-0xfe5fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3: PCI bridge to [bus 03-22]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3:   bridge window [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3:   bridge window [mem 0xfe500000-0xfe6fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1: PCI bridge to [bus 23]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1:   bridge window [io  0xe000-0xefff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1:   bridge window [mem 0xfe800000-0xfe8fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1:   bridge window [mem 0xe0000000-0xf01fffff 64bit pref]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1: PCI bridge to [bus 24]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1:   bridge window [mem 0xfe200000-0xfe4fffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1: PCI bridge to [bus 25]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1:   bridge window [mem 0xfe700000-0xfe7fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 4 [io  0x0000-0x03af window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 5 [io  0x03e0-0x0cf7 window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 6 [io  0x03b0-0x03df window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 7 [io  0x0d00-0xffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 8 [mem 0x000a0000-0x000bffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 9 [mem 0x000c0000-0x000dffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 10 [mem 0xe0000000-0xfec2ffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:00: resource 11 [mem 0xfee00000-0xffffffff window]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:01: resource 1 [mem 0xfe900000-0xfe9fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:03: resource 0 [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:03: resource 1 [mem 0xfe500000-0xfe6fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:04: resource 0 [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:04: resource 1 [mem 0xfe500000-0xfe5fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:21: resource 0 [io  0xf000-0xffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:21: resource 1 [mem 0xfe500000-0xfe5fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:23: resource 0 [io  0xe000-0xefff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:23: resource 1 [mem 0xfe800000-0xfe8fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:23: resource 2 [mem 0xe0000000-0xf01fffff 64bit pref]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:24: resource 1 [mem 0xfe200000-0xfe4fffff]
Feb 21 21:58:24 ginnungagap kernel: pci_bus 0000:25: resource 1 [mem 0xfe700000-0xfe7fffff]
Feb 21 21:58:24 ginnungagap kernel: NET: Registered protocol family 2
Feb 21 21:58:24 ginnungagap kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: TCP: Hash tables configured (established 262144 bind 65536)
Feb 21 21:58:24 ginnungagap kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear)
Feb 21 21:58:24 ginnungagap kernel: NET: Registered protocol family 1
Feb 21 21:58:24 ginnungagap kernel: NET: Registered protocol family 44
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: Disabling ASPM L0s/L1
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.1: D0 power state depends on 0000:23:00.0
Feb 21 21:58:24 ginnungagap kernel: PCI: CLS 64 bytes, default 64
Feb 21 21:58:24 ginnungagap kernel: Trying to unpack rootfs image as initramfs...
Feb 21 21:58:24 ginnungagap kernel: Freeing initrd memory: 51568K
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.2: AMD-Vi: IOMMU performance counters supported
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.2: can't derive routing for PCI INT A
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.2: PCI INT A: not connected
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.1: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:01.3: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:02.0: Adding to iommu group 1
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.0: Adding to iommu group 2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:03.1: Adding to iommu group 2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:04.0: Adding to iommu group 3
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.0: Adding to iommu group 4
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:07.1: Adding to iommu group 4
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.0: Adding to iommu group 5
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:08.1: Adding to iommu group 5
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:14.0: Adding to iommu group 6
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:14.3: Adding to iommu group 6
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.0: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.1: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.2: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.3: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.4: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.5: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.6: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:18.7: Adding to iommu group 7
Feb 21 21:58:24 ginnungagap kernel: pci 0000:01:00.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.1: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:03:00.2: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:00.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:01.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:04:04.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:1f:00.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:21:00.0: Adding to iommu group 0
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.0: Adding to iommu group 2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:23:00.1: Adding to iommu group 2
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.0: Adding to iommu group 4
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.2: Adding to iommu group 4
Feb 21 21:58:24 ginnungagap kernel: pci 0000:24:00.3: Adding to iommu group 4
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.0: Adding to iommu group 5
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.2: Adding to iommu group 5
Feb 21 21:58:24 ginnungagap kernel: pci 0000:25:00.3: Adding to iommu group 5
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.2: AMD-Vi: Found IOMMU cap 0x40
Feb 21 21:58:24 ginnungagap kernel: pci 0000:00:00.2: AMD-Vi: Extended features (0xf77ef22294ada):
Feb 21 21:58:24 ginnungagap kernel:  PPR NX GT IA GA PC GA_vAPIC
Feb 21 21:58:24 ginnungagap kernel: AMD-Vi: Interrupt remapping enabled
Feb 21 21:58:24 ginnungagap kernel: AMD-Vi: Virtual APIC enabled
Feb 21 21:58:24 ginnungagap kernel: AMD-Vi: Lazy IO/TLB flushing enabled
Feb 21 21:58:24 ginnungagap kernel: amd_uncore: AMD NB counters detected
Feb 21 21:58:24 ginnungagap kernel: amd_uncore: AMD LLC counters detected
Feb 21 21:58:24 ginnungagap kernel: perf/amd_iommu: Detected AMD IOMMU #0 (2 banks, 4 counters/bank).
Feb 21 21:58:24 ginnungagap kernel: check: Scanning for low memory corruption every 60 seconds
Feb 21 21:58:24 ginnungagap kernel: Initialise system trusted keyrings
Feb 21 21:58:24 ginnungagap kernel: Key type blacklist registered
Feb 21 21:58:24 ginnungagap kernel: workingset: timestamp_bits=36 max_order=23 bucket_order=0
Feb 21 21:58:24 ginnungagap kernel: zbud: loaded
Feb 21 21:58:24 ginnungagap kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Feb 21 21:58:24 ginnungagap kernel: fuse: init (API version 7.31)
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE fuse ***
Feb 21 21:58:24 ginnungagap kernel: *** VALIDATE fuse ***
Feb 21 21:58:24 ginnungagap kernel: Platform Keyring initialized
Feb 21 21:58:24 ginnungagap kernel: Key type asymmetric registered
Feb 21 21:58:24 ginnungagap kernel: Asymmetric key parser 'x509' registered
Feb 21 21:58:24 ginnungagap kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 244)
Feb 21 21:58:24 ginnungagap kernel: io scheduler mq-deadline registered
Feb 21 21:58:24 ginnungagap kernel: pcieport 0000:00:01.1: PME: Signaling with IRQ 26
Feb 21 21:58:24 ginnungagap kernel: pcieport 0000:00:01.3: PME: Signaling with IRQ 27
Feb 21 21:58:24 ginnungagap kernel: iommu ivhd0: AMD-Vi: Event logged [INVALID_DEVICE_REQUEST device=00:00.0 pasid=0x00000 address=0xfffffffdf8000000 flags=0x0a00]
Feb 21 21:58:24 ginnungagap kernel: pcieport 0000:00:03.1: PME: Signaling with IRQ 28
Feb 21 21:58:24 ginnungagap kernel: pcieport 0000:00:07.1: PME: Signaling with IRQ 29
Feb 21 21:58:24 ginnungagap kernel: pcieport 0000:00:08.1: PME: Signaling with IRQ 31
Feb 21 21:58:24 ginnungagap kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Feb 21 21:58:24 ginnungagap kernel: vesafb: mode is 2560x1440x32, linelength=10240, pages=0
Feb 21 21:58:24 ginnungagap kernel: vesafb: scrolling: redraw
Feb 21 21:58:24 ginnungagap kernel: vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
Feb 21 21:58:24 ginnungagap kernel: vesafb: framebuffer at 0xe0000000, mapped to 0x00000000c4a109a2, using 14400k, total 14400k
Feb 21 21:58:24 ginnungagap kernel: fbcon: Deferring console take-over
Feb 21 21:58:24 ginnungagap kernel: fb0: VESA VGA frame buffer device
Feb 21 21:58:24 ginnungagap kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
Feb 21 21:58:24 ginnungagap kernel: ACPI: Power Button [PWRB]
Feb 21 21:58:24 ginnungagap kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Feb 21 21:58:24 ginnungagap kernel: ACPI: Power Button [PWRF]
Feb 21 21:58:24 ginnungagap kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Feb 21 21:58:24 ginnungagap kernel: Linux agpgart interface v0.103
Feb 21 21:58:24 ginnungagap kernel: loop: module loaded
Feb 21 21:58:24 ginnungagap kernel: tun: Universal TUN/TAP device driver, 1.6
Feb 21 21:58:24 ginnungagap kernel: PPP generic driver version 2.4.2
Feb 21 21:58:24 ginnungagap kernel: VFIO - User Level meta-driver version: 0.3
Feb 21 21:58:24 ginnungagap kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Feb 21 21:58:24 ginnungagap kernel: ehci-pci: EHCI PCI platform driver
Feb 21 21:58:24 ginnungagap kernel: ehci-platform: EHCI generic platform driver
Feb 21 21:58:24 ginnungagap kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Feb 21 21:58:24 ginnungagap kernel: ohci-pci: OHCI PCI platform driver
Feb 21 21:58:24 ginnungagap kernel: ohci-platform: OHCI generic platform driver
Feb 21 21:58:24 ginnungagap kernel: uhci_hcd: USB Universal Host Controller Interface driver
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:03:00.0: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 1
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:03:00.0: hcc params 0x0200ef81 hci version 0x110 quirks 0x0000010048000410
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:03:00.0: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:03:00.0: new USB bus registered, assigned bus number 2
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:03:00.0: Host supports USB 3.1 Enhanced SuperSpeed
Feb 21 21:58:24 ginnungagap kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Feb 21 21:58:24 ginnungagap kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 21 21:58:24 ginnungagap kernel: usb usb1: Product: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: usb usb1: Manufacturer: Linux 5.4.0-139-generic xhci-hcd
Feb 21 21:58:24 ginnungagap kernel: usb usb1: SerialNumber: 0000:03:00.0
Feb 21 21:58:24 ginnungagap kernel: hub 1-0:1.0: USB hub found
Feb 21 21:58:24 ginnungagap kernel: hub 1-0:1.0: 10 ports detected
Feb 21 21:58:24 ginnungagap kernel: usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 21 21:58:24 ginnungagap kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
Feb 21 21:58:24 ginnungagap kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 21 21:58:24 ginnungagap kernel: usb usb2: Product: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: usb usb2: Manufacturer: Linux 5.4.0-139-generic xhci-hcd
Feb 21 21:58:24 ginnungagap kernel: usb usb2: SerialNumber: 0000:03:00.0
Feb 21 21:58:24 ginnungagap kernel: hub 2-0:1.0: USB hub found
Feb 21 21:58:24 ginnungagap kernel: hub 2-0:1.0: 4 ports detected
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:24:00.3: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:24:00.3: new USB bus registered, assigned bus number 3
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:24:00.3: hcc params 0x0270f665 hci version 0x100 quirks 0x0000000040000410
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:24:00.3: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:24:00.3: new USB bus registered, assigned bus number 4
Feb 21 21:58:24 ginnungagap kernel: xhci_hcd 0000:24:00.3: Host supports USB 3.0 SuperSpeed
Feb 21 21:58:24 ginnungagap kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.04
Feb 21 21:58:24 ginnungagap kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 21 21:58:24 ginnungagap kernel: usb usb3: Product: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: usb usb3: Manufacturer: Linux 5.4.0-139-generic xhci-hcd
Feb 21 21:58:24 ginnungagap kernel: usb usb3: SerialNumber: 0000:24:00.3
Feb 21 21:58:24 ginnungagap kernel: hub 3-0:1.0: USB hub found
Feb 21 21:58:24 ginnungagap kernel: hub 3-0:1.0: 4 ports detected
Feb 21 21:58:24 ginnungagap kernel: usb usb4: We don't know the algorithms for LPM for this host, disabling LPM.
Feb 21 21:58:24 ginnungagap kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.04
Feb 21 21:58:24 ginnungagap kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Feb 21 21:58:24 ginnungagap kernel: usb usb4: Product: xHCI Host Controller
Feb 21 21:58:24 ginnungagap kernel: usb usb4: Manufacturer: Linux 5.4.0-139-generic xhci-hcd
Feb 21 21:58:24 ginnungagap kernel: usb usb4: SerialNumber: 0000:24:00.3
Feb 21 21:58:24 ginnungagap kernel: hub 4-0:1.0: USB hub found
Feb 21 21:58:24 ginnungagap kernel: hub 4-0:1.0: 4 ports detected
Feb 21 21:58:24 ginnungagap kernel: i8042: PNP: No PS/2 controller found.
Feb 21 21:58:24 ginnungagap kernel: mousedev: PS/2 mouse device common for all mice
Feb 21 21:58:24 ginnungagap kernel: rtc_cmos 00:02: RTC can wake from S4
Feb 21 21:58:24 ginnungagap kernel: rtc_cmos 00:02: registered as rtc0
Feb 21 21:58:24 ginnungagap kernel: rtc_cmos 00:02: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Feb 21 21:58:24 ginnungagap kernel: i2c /dev entries driver
Feb 21 21:58:24 ginnungagap kernel: device-mapper: uevent: version 1.0.3
Feb 21 21:58:24 ginnungagap kernel: device-mapper: ioctl: 4.41.0-ioctl (2019-09-16) initialised: dm-devel@redhat.com
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Probing EISA bus 0
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: EISA: Cannot allocate resource for mainboard
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 1
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 2
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 3
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 4
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 5
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 6
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 7
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: Cannot allocate resource for EISA slot 8
Feb 21 21:58:24 ginnungagap kernel: platform eisa.0: EISA: Detected 0 cards
Feb 21 21:58:24 ginnungagap kernel: ledtrig-cpu: registered to indicate activity on CPUs
Feb 21 21:58:24 ginnungagap kernel: drop_monitor: Initializing network drop monitor service
Feb 21 21:58:24 ginnungagap kernel: NET: Registered protocol family 10
Feb 21 21:58:24 ginnungagap kernel: Segment Routing with IPv6
Feb 21 21:58:24 ginnungagap kernel: NET: Registered protocol family 17
Feb 21 21:58:24 ginnungagap kernel: Key type dns_resolver registered
Feb 21 21:58:24 ginnungagap kernel: RAS: Correctable Errors collector initialized.
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU0: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU1: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU2: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU3: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU4: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU5: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU6: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: CPU7: patch_level=0x0800111c
Feb 21 21:58:24 ginnungagap kernel: microcode: Microcode Update Driver: v2.2.
Feb 21 21:58:24 ginnungagap kernel: IPI shorthand broadcast: enabled
Feb 21 21:58:24 ginnungagap kernel: sched_clock: Marking stable (550849624, -35995940)->(529672175, -14818491)
Feb 21 21:58:24 ginnungagap kernel: registered taskstats version 1
Feb 21 21:58:24 ginnungagap kernel: Loading compiled-in X.509 certificates
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 166555f2d1679971571dbaea8993cd87f322a585'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19'
Feb 21 21:58:24 ginnungagap kernel: blacklist: Loading compiled-in revocation X.509 certificates
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2017): 242ade75ac4a15e50d50c84b0d45ff3eae707a03'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (ESM 2018): 365188c1d374d6b07c3c8f240f8ef722433d6a8b'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2019): c0746fd6c5da3ae827864651ad66ae47fe24b3e8'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v1): a8d54bbb3825cfb94fa13c9f8a594a195c107b8d'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v2): 4cf046892d6fd3c9a5b03f98d845f90851dc6a8c'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (2021 v3): 100437bb6de6e469b581e61cd66bce3ef4ed53af'
Feb 21 21:58:24 ginnungagap kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing (Ubuntu Core 2019): c1d57b8f6b743f23ee41f4f7ee292f06eecadfb9'
Feb 21 21:58:24 ginnungagap kernel: zswap: loaded using pool lzo/zbud
Feb 21 21:58:24 ginnungagap kernel: Key type ._fscrypt registered
Feb 21 21:58:24 ginnungagap kernel: Key type .fscrypt registered
Feb 21 21:58:24 ginnungagap kernel: Key type big_key registered
Feb 21 21:58:24 ginnungagap kernel: Key type encrypted registered
Feb 21 21:58:24 ginnungagap kernel: AppArmor: AppArmor sha1 policy hashing enabled
Feb 21 21:58:24 ginnungagap kernel: ima: No TPM chip found, activating TPM-bypass!
Feb 21 21:58:24 ginnungagap kernel: ima: Allocated hash algorithm: sha1
Feb 21 21:58:24 ginnungagap kernel: ima: No architecture policies found
Feb 21 21:58:24 ginnungagap kernel: evm: Initialising EVM extended attributes:
Feb 21 21:58:24 ginnungagap kernel: evm: security.selinux
Feb 21 21:58:24 ginnungagap kernel: evm: security.SMACK64
Feb 21 21:58:24 ginnungagap kernel: evm: security.SMACK64EXEC
Feb 21 21:58:24 ginnungagap kernel: evm: security.SMACK64TRANSMUTE
Feb 21 21:58:24 ginnungagap kernel: evm: security.SMACK64MMAP
Feb 21 21:58:24 ginnungagap kernel: evm: security.apparmor
Feb 21 21:58:24 ginnungagap kernel: evm: security.ima
Feb 21 21:58:24 ginnungagap kernel: evm: security.capability
Feb 21 21:58:24 ginnungagap kernel: evm: HMAC attrs: 0x1
Feb 21 21:58:24 ginnungagap kernel: PM:   Magic number: 11:119:1004
Feb 21 21:58:24 ginnungagap kernel: input input1: hash matches
Feb 21 21:58:24 ginnungagap kernel: memory memory43: hash matches
Feb 21 21:58:24 ginnungagap kernel: rtc_cmos 00:02: setting system clock to 2023-02-21T20:58:20 UTC (1677013100)
Feb 21 21:58:24 ginnungagap kernel: acpi_cpufreq: overriding BIOS provided _PSD data
Feb 21 21:58:24 ginnungagap kernel: Freeing unused decrypted memory: 2040K
Feb 21 21:58:24 ginnungagap kernel: Freeing unused kernel image memory: 2764K
Feb 21 21:58:24 ginnungagap kernel: Write protecting the kernel read-only data: 26624k
Feb 21 21:58:24 ginnungagap kernel: Freeing unused kernel image memory: 2036K
Feb 21 21:58:24 ginnungagap kernel: Freeing unused kernel image memory: 740K
Feb 21 21:58:24 ginnungagap kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found.
Feb 21 21:58:24 ginnungagap kernel: Run /init as init process
Feb 21 21:58:24 ginnungagap kernel: ahci 0000:03:00.1: version 3.0
Feb 21 21:58:24 ginnungagap kernel: ahci 0000:03:00.1: SSS flag set, parallel bus scan disabled
Feb 21 21:58:24 ginnungagap kernel: ahci 0000:03:00.1: AHCI 0001.0301 32 slots 8 ports 6 Gbps 0x33 impl SATA mode
Feb 21 21:58:24 ginnungagap kernel: ahci 0000:03:00.1: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part sxs deso sadm sds apst 
Feb 21 21:58:24 ginnungagap kernel: nvme nvme0: pci function 0000:01:00.0
Feb 21 21:58:24 ginnungagap kernel: scsi host0: ahci
Feb 21 21:58:24 ginnungagap kernel: scsi host1: ahci
Feb 21 21:58:24 ginnungagap kernel: piix4_smbus 0000:00:14.0: SMBus Host Controller at 0xb00, revision 0
Feb 21 21:58:24 ginnungagap kernel: piix4_smbus 0000:00:14.0: Using register 0x02 for SMBus port selection
Feb 21 21:58:24 ginnungagap kernel: scsi host2: ahci
Feb 21 21:58:24 ginnungagap kernel: piix4_smbus 0000:00:14.0: Auxiliary SMBus Host Controller at 0xb20
Feb 21 21:58:24 ginnungagap kernel: scsi host3: ahci
Feb 21 21:58:24 ginnungagap kernel: scsi host4: ahci
Feb 21 21:58:24 ginnungagap kernel: scsi host5: ahci
Feb 21 21:58:24 ginnungagap kernel: scsi host6: ahci
Feb 21 21:58:24 ginnungagap kernel: scsi host7: ahci
Feb 21 21:58:24 ginnungagap kernel: ata1: SATA max UDMA/133 abar m131072@0xfe680000 port 0xfe680100 irq 42
Feb 21 21:58:24 ginnungagap kernel: ata2: SATA max UDMA/133 abar m131072@0xfe680000 port 0xfe680180 irq 42
Feb 21 21:58:24 ginnungagap kernel: ata3: DUMMY
Feb 21 21:58:24 ginnungagap kernel: ata4: DUMMY
Feb 21 21:58:24 ginnungagap kernel: ata5: SATA max UDMA/133 abar m131072@0xfe680000 port 0xfe680300 irq 42
Feb 21 21:58:24 ginnungagap kernel: ata6: SATA max UDMA/133 abar m131072@0xfe680000 port 0xfe680380 irq 42
Feb 21 21:58:24 ginnungagap kernel: ata7: DUMMY
Feb 21 21:58:24 ginnungagap kernel: ata8: DUMMY
Feb 21 21:58:24 ginnungagap kernel: ahci 0000:25:00.2: AHCI 0001.0301 32 slots 1 ports 6 Gbps 0x1 impl SATA mode
Feb 21 21:58:24 ginnungagap kernel: ahci 0000:25:00.2: flags: 64bit ncq sntf ilck led clo only pmp fbs pio 
Feb 21 21:58:24 ginnungagap kernel: scsi host8: ahci
Feb 21 21:58:24 ginnungagap kernel: ata9: SATA max UDMA/133 abar m4096@0xfe708000 port 0xfe708100 irq 46
Feb 21 21:58:24 ginnungagap kernel: r8169 0000:21:00.0 eth0: RTL8168h/8111h, 30:9c:23:03:d4:01, XID 541, IRQ 47
Feb 21 21:58:24 ginnungagap kernel: r8169 0000:21:00.0 eth0: jumbo features [frames: 9200 bytes, tx checksumming: ko]
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: new full-speed USB device number 2 using xhci_hcd
Feb 21 21:58:24 ginnungagap kernel: nvme nvme0: 7/0/0 default/read/poll queues
Feb 21 21:58:24 ginnungagap kernel:  nvme0n1: p1 p2 p3 p4
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: device descriptor read/64, error -71
Feb 21 21:58:24 ginnungagap kernel: ata9: SATA link down (SStatus 0 SControl 300)
Feb 21 21:58:24 ginnungagap kernel: ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: device descriptor read/64, error -71
Feb 21 21:58:24 ginnungagap kernel: ata1.00: NCQ Send/Recv Log not supported
Feb 21 21:58:24 ginnungagap kernel: ata1.00: ATA-9: Samsung SSD 840 PRO Series, DXM04B0Q, max UDMA/133
Feb 21 21:58:24 ginnungagap kernel: ata1.00: 500118192 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 21 21:58:24 ginnungagap kernel: ata1.00: NCQ Send/Recv Log not supported
Feb 21 21:58:24 ginnungagap kernel: ata1.00: configured for UDMA/133
Feb 21 21:58:24 ginnungagap kernel: scsi 0:0:0:0: Direct-Access     ATA      Samsung SSD 840  4B0Q PQ: 0 ANSI: 5
Feb 21 21:58:24 ginnungagap kernel: sd 0:0:0:0: Attached scsi generic sg0 type 0
Feb 21 21:58:24 ginnungagap kernel: ata1.00: Enabling discard_zeroes_data
Feb 21 21:58:24 ginnungagap kernel: sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
Feb 21 21:58:24 ginnungagap kernel: sd 0:0:0:0: [sda] Write Protect is off
Feb 21 21:58:24 ginnungagap kernel: sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Feb 21 21:58:24 ginnungagap kernel: sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 21 21:58:24 ginnungagap kernel: ata1.00: Enabling discard_zeroes_data
Feb 21 21:58:24 ginnungagap kernel:  sda: sda1
Feb 21 21:58:24 ginnungagap kernel: ata1.00: Enabling discard_zeroes_data
Feb 21 21:58:24 ginnungagap kernel: sd 0:0:0:0: [sda] Attached SCSI disk
Feb 21 21:58:24 ginnungagap kernel: tsc: Refined TSC clocksource calibration: 3499.999 MHz
Feb 21 21:58:24 ginnungagap kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x32734f9ce42, max_idle_ns: 440795224466 ns
Feb 21 21:58:24 ginnungagap kernel: clocksource: Switched to clocksource tsc
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: new full-speed USB device number 3 using xhci_hcd
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: device descriptor read/64, error -71
Feb 21 21:58:24 ginnungagap kernel: ata2: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Feb 21 21:58:24 ginnungagap kernel: ata2.00: ATA-10: WDC WD40EFAX-68JH4N1, 83.00A83, max UDMA/133
Feb 21 21:58:24 ginnungagap kernel: ata2.00: 7814037168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 21 21:58:24 ginnungagap kernel: ata2.00: configured for UDMA/133
Feb 21 21:58:24 ginnungagap kernel: scsi 1:0:0:0: Direct-Access     ATA      WDC WD40EFAX-68J 0A83 PQ: 0 ANSI: 5
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: Attached scsi generic sg1 type 0
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: [sdb] 7814037168 512-byte logical blocks: (4.00 TB/3.64 TiB)
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: [sdb] 4096-byte physical blocks
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: [sdb] Write Protect is off
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: [sdb] Mode Sense: 00 3a 00 00
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 21 21:58:24 ginnungagap kernel:  sdb: sdb1
Feb 21 21:58:24 ginnungagap kernel: sd 1:0:0:0: [sdb] Attached SCSI disk
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: device descriptor read/64, error -71
Feb 21 21:58:24 ginnungagap kernel: usb usb1-port8: attempt power cycle
Feb 21 21:58:24 ginnungagap kernel: ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Feb 21 21:58:24 ginnungagap kernel: ata5.00: ATA-7: SAMSUNG HD502HI, 1AG01118, max UDMA7
Feb 21 21:58:24 ginnungagap kernel: ata5.00: 976773168 sectors, multi 16: LBA48 NCQ (depth 32), AA
Feb 21 21:58:24 ginnungagap kernel: ata5.00: configured for UDMA/133
Feb 21 21:58:24 ginnungagap kernel: scsi 4:0:0:0: Direct-Access     ATA      SAMSUNG HD502HI  1118 PQ: 0 ANSI: 5
Feb 21 21:58:24 ginnungagap kernel: sd 4:0:0:0: Attached scsi generic sg2 type 0
Feb 21 21:58:24 ginnungagap kernel: sd 4:0:0:0: [sdc] 976773168 512-byte logical blocks: (500 GB/466 GiB)
Feb 21 21:58:24 ginnungagap kernel: sd 4:0:0:0: [sdc] Write Protect is off
Feb 21 21:58:24 ginnungagap kernel: sd 4:0:0:0: [sdc] Mode Sense: 00 3a 00 00
Feb 21 21:58:24 ginnungagap kernel: sd 4:0:0:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Feb 21 21:58:24 ginnungagap kernel:  sdc: sdc1
Feb 21 21:58:24 ginnungagap kernel: sd 4:0:0:0: [sdc] Attached SCSI disk
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: new full-speed USB device number 4 using xhci_hcd
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: Device not responding to setup address.
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: Device not responding to setup address.
Feb 21 21:58:24 ginnungagap kernel: ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Feb 21 21:58:24 ginnungagap kernel: ata6.00: ATAPI: DRW-24D5MT, 1.00, max UDMA/133
Feb 21 21:58:24 ginnungagap kernel: ata6.00: configured for UDMA/133
Feb 21 21:58:24 ginnungagap kernel: scsi 5:0:0:0: CD-ROM            ASUS     DRW-24D5MT       1.00 PQ: 0 ANSI: 5
Feb 21 21:58:24 ginnungagap kernel: sr 5:0:0:0: [sr0] scsi3-mmc drive: 48x/12x writer dvd-ram cd/rw xa/form2 cdda tray
Feb 21 21:58:24 ginnungagap kernel: cdrom: Uniform CD-ROM driver Revision: 3.20
Feb 21 21:58:24 ginnungagap kernel: sr 5:0:0:0: Attached scsi CD-ROM sr0
Feb 21 21:58:24 ginnungagap kernel: sr 5:0:0:0: Attached scsi generic sg3 type 5
Feb 21 21:58:24 ginnungagap kernel: r8169 0000:21:00.0 enp33s0: renamed from eth0
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: device not accepting address 4, error -71
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: new full-speed USB device number 5 using xhci_hcd
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: Device not responding to setup address.
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: Device not responding to setup address.
Feb 21 21:58:24 ginnungagap kernel: fbcon: Taking over console
Feb 21 21:58:24 ginnungagap kernel: Console: switching to colour frame buffer device 160x45
Feb 21 21:58:24 ginnungagap kernel: EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null)
Feb 21 21:58:24 ginnungagap systemd[1]: Inserted module 'autofs4'
Feb 21 21:58:24 ginnungagap systemd[1]: systemd 245.4-4ubuntu3.19 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid)
Feb 21 21:58:24 ginnungagap systemd[1]: Detected architecture x86-64.
Feb 21 21:58:24 ginnungagap systemd[1]: Set hostname to <ginnungagap>.
Feb 21 21:58:24 ginnungagap kernel: usb 1-8: device not accepting address 5, error -71
Feb 21 21:58:24 ginnungagap kernel: usb usb1-port8: unable to enumerate USB device
Feb 21 21:58:24 ginnungagap kernel: usb 1-9: new full-speed USB device number 6 using xhci_hcd
Feb 21 21:58:24 ginnungagap kernel: usb 1-9: New USB device found, idVendor=1b1c, idProduct=1b70, bcdDevice= 4.07
Feb 21 21:58:24 ginnungagap kernel: usb 1-9: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Feb 21 21:58:24 ginnungagap kernel: usb 1-9: Product: CORSAIR M55 RGB PRO Gaming Mouse
Feb 21 21:58:24 ginnungagap kernel: usb 1-9: Manufacturer: Corsair
Feb 21 21:58:24 ginnungagap kernel: usb 1-9: SerialNumber: 0A03401DAF9614E460DB1D92F5001BC7
Feb 21 21:58:24 ginnungagap systemd[1]: Created slice system-modprobe.slice.
Feb 21 21:58:24 ginnungagap systemd[1]: Created slice system-postfix.slice.
Feb 21 21:58:24 ginnungagap systemd[1]: Created slice system-systemd\x2dfsck.slice.
Feb 21 21:58:24 ginnungagap systemd[1]: Created slice User and Session Slice.
Feb 21 21:58:24 ginnungagap systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Feb 21 21:58:24 ginnungagap systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Feb 21 21:58:24 ginnungagap systemd[1]: Reached target User and Group Name Lookups.
Feb 21 21:58:24 ginnungagap systemd[1]: Reached target Remote File Systems.
Feb 21 21:58:24 ginnungagap systemd[1]: Reached target Slices.
Feb 21 21:58:24 ginnungagap systemd[1]: Reached target Mounting snaps.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on Syslog Socket.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on fsck to fsckd communication Socket.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on initctl Compatibility Named Pipe.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on Journal Audit Socket.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on Journal Socket (/dev/log).
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on Journal Socket.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on udev Control Socket.
Feb 21 21:58:24 ginnungagap systemd[1]: Listening on udev Kernel Socket.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Huge Pages File System...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting POSIX Message Queue File System...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Kernel Debug File System...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Kernel Trace File System...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Journal Service...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Set the console keyboard layout...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Create list of static device nodes for the current kernel...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Module chromeos_pstore...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Module drm...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Module efi_pstore...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Module pstore_blk...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Module pstore_zone...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Module ramoops...
Feb 21 21:58:24 ginnungagap systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Feb 21 21:58:24 ginnungagap systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load Kernel Modules...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Remount Root and Kernel File Systems...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting udev Coldplug all Devices...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Uncomplicated firewall...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Huge Pages File System.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted POSIX Message Queue File System.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Kernel Debug File System.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Kernel Trace File System.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Create list of static device nodes for the current kernel.
Feb 21 21:58:24 ginnungagap systemd[1]: modprobe@efi_pstore.service: Succeeded.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Module efi_pstore.
Feb 21 21:58:24 ginnungagap systemd[1]: modprobe@pstore_blk.service: Succeeded.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Module pstore_blk.
Feb 21 21:58:24 ginnungagap systemd[1]: modprobe@pstore_zone.service: Succeeded.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Module pstore_zone.
Feb 21 21:58:24 ginnungagap systemd[1]: modprobe@ramoops.service: Succeeded.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Module ramoops.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Uncomplicated firewall.
Feb 21 21:58:24 ginnungagap systemd[1]: modprobe@drm.service: Succeeded.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Module drm.
Feb 21 21:58:24 ginnungagap kernel: lp: driver loaded but no devices found
Feb 21 21:58:24 ginnungagap kernel: EXT4-fs (nvme0n1p2): re-mounted. Opts: errors=remount-ro
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Remount Root and Kernel File Systems.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Rebuild Hardware Database...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Load/Save Random Seed...
Feb 21 21:58:24 ginnungagap kernel: ppdev: user-space parallel port driver
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Create System Users...
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load/Save Random Seed.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Create System Users.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Create Static Device Nodes in /dev...
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Modules.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting FUSE Control File System...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Kernel Configuration File System...
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Apply Kernel Variables...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted FUSE Control File System.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Kernel Configuration File System.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Create Static Device Nodes in /dev.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Set the console keyboard layout.
Feb 21 21:58:24 ginnungagap systemd[1]: Reached target Local File Systems (Pre).
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for bare, revision 5...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for core, revision 14447...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for core, revision 14784...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for core18, revision 2679...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for core18, revision 2697...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for core20, revision 1778...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for core20, revision 1822...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for czkawka, revision 824...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for czkawka, revision 889...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for dbeaver-ce, revision 219...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for dbeaver-ce, revision 220...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gallery-dl, revision 4075...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gallery-dl, revision 4117...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gnome-3-28-1804, revision 161...
Feb 21 21:58:24 ginnungagap systemd-journald[338]: Journal started
Feb 21 21:58:24 ginnungagap systemd-journald[338]: Runtime Journal (/run/log/journal/25aa6bd5af5b49db8cfcd617864648bc) is 8.0M, max 240.6M, 232.6M free.
Feb 21 21:58:24 ginnungagap systemd-modules-load[355]: Inserted module 'lp'
Feb 21 21:58:24 ginnungagap systemd-modules-load[355]: Inserted module 'ppdev'
Feb 21 21:58:24 ginnungagap systemd-modules-load[355]: Inserted module 'parport_pc'
Feb 21 21:58:24 ginnungagap systemd-modules-load[355]: Inserted module 'msr'
Feb 21 21:58:24 ginnungagap systemd-sysctl[374]: Not setting net/ipv4/conf/all/promote_secondaries (explicit setting exists).
Feb 21 21:58:24 ginnungagap systemd-sysctl[374]: Not setting net/ipv4/conf/default/promote_secondaries (explicit setting exists).
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gnome-3-38-2004, revision 115...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gnome-3-38-2004, revision 119...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1534...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for gtk-common-themes, revision 1535...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for noson, revision 563...
Feb 21 21:58:24 ginnungagap systemd[1]: Mounting Mount unit for noson, revision 579...
Feb 21 21:58:24 ginnungagap systemd[1]: modprobe@chromeos_pstore.service: Succeeded.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Load Kernel Module chromeos_pstore.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished udev Coldplug all Devices.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Apply Kernel Variables.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Helper to synchronize boot up for ifupdown...
Feb 21 21:58:24 ginnungagap systemd[1]: Started Journal Service.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Flush Journal to Persistent Storage...
Feb 21 21:58:24 ginnungagap systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Helper to synchronize boot up for ifupdown.
Feb 21 21:58:24 ginnungagap systemd-journald[338]: Time spent on flushing to /var/log/journal/25aa6bd5af5b49db8cfcd617864648bc is 185.299ms for 1025 entries.
Feb 21 21:58:24 ginnungagap systemd-journald[338]: System Journal (/var/log/journal/25aa6bd5af5b49db8cfcd617864648bc) is 2.5G, max 2.5G, 0B free.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for core, revision 14784.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for core20, revision 1778.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for core18, revision 2679.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Flush Journal to Persistent Storage.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for core18, revision 2697.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for czkawka, revision 824.
Feb 21 21:58:24 ginnungagap systemd[1]: Finished Rebuild Hardware Database.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting udev Kernel Device Manager...
Feb 21 21:58:24 ginnungagap systemd[1]: Started udev Kernel Device Manager.
Feb 21 21:58:24 ginnungagap systemd[1]: Starting Show Plymouth Boot Screen...
Feb 21 21:58:24 ginnungagap systemd[1]: Received SIGRTMIN+20 from PID 435 (plymouthd).
Feb 21 21:58:24 ginnungagap systemd[1]: Started Show Plymouth Boot Screen.
Feb 21 21:58:24 ginnungagap systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Feb 21 21:58:24 ginnungagap systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Feb 21 21:58:24 ginnungagap systemd[1]: Reached target Local Encrypted Volumes.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for core, revision 14447.
Feb 21 21:58:24 ginnungagap systemd[1]: Mounted Mount unit for dbeaver-ce, revision 219.
Feb 21 21:58:25 ginnungagap systemd-udevd[419]: Using default interface naming scheme 'v245'.
Feb 21 21:58:25 ginnungagap systemd-udevd[419]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gallery-dl, revision 4117.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gnome-3-28-1804, revision 161.
Feb 21 21:58:25 ginnungagap mtp-probe[451]: checking bus 1, device 6: "/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9"
Feb 21 21:58:25 ginnungagap mtp-probe[451]: bus: 1, device: 6 was not an MTP device
Feb 21 21:58:25 ginnungagap kernel: hidraw: raw HID events driver (C) Jiri Kosina
Feb 21 21:58:25 ginnungagap kernel: ccp 0000:24:00.2: ccp enabled
Feb 21 21:58:25 ginnungagap kernel: cryptd: max_cpu_qlen set to 1000
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: Mounting Arbitrary Executable File Formats File System...
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for czkawka, revision 889.
Feb 21 21:58:25 ginnungagap kernel: usbcore: registered new interface driver usbhid
Feb 21 21:58:25 ginnungagap kernel: usbhid: USB HID core driver
Feb 21 21:58:25 ginnungagap kernel: AVX2 version of gcm_enc/dec engaged.
Feb 21 21:58:25 ginnungagap kernel: AES CTR mode by8 optimization enabled
Feb 21 21:58:25 ginnungagap kernel: AMD-Vi: AMD IOMMUv2 driver by Joerg Roedel <jroedel@suse.de>
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for bare, revision 5.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Arbitrary Executable File Formats File System.
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap kernel: kvm: Nested Virtualization enabled
Feb 21 21:58:25 ginnungagap kernel: kvm: Nested Paging enabled
Feb 21 21:58:25 ginnungagap kernel: SVM: Virtual VMLOAD VMSAVE supported
Feb 21 21:58:25 ginnungagap kernel: MCE: In-kernel MCE decoding enabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap kernel: [drm] amdgpu kernel modesetting enabled.
Feb 21 21:58:25 ginnungagap kernel: Parsing CRAT table with 1 nodes
Feb 21 21:58:25 ginnungagap kernel: Ignoring ACPI CRAT on non-APU system
Feb 21 21:58:25 ginnungagap kernel: Virtual CRAT table created for CPU
Feb 21 21:58:25 ginnungagap kernel: Parsing CRAT table with 1 nodes
Feb 21 21:58:25 ginnungagap kernel: Creating topology SYSFS entries
Feb 21 21:58:25 ginnungagap kernel: Topology: Add CPU node
Feb 21 21:58:25 ginnungagap kernel: Finished initializing topology
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: remove_conflicting_pci_framebuffers: bar 0: 0xe0000000 -> 0xefffffff
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: remove_conflicting_pci_framebuffers: bar 2: 0xf0000000 -> 0xf01fffff
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: remove_conflicting_pci_framebuffers: bar 5: 0xfe800000 -> 0xfe83ffff
Feb 21 21:58:25 ginnungagap kernel: checking generic (e0000000 e10000) vs hw (e0000000 10000000)
Feb 21 21:58:25 ginnungagap kernel: fb0: switching to amdgpudrmfb from VESA VGA
Feb 21 21:58:25 ginnungagap kernel: Console: switching to colour dummy device 80x25
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: vgaarb: deactivate vga console
Feb 21 21:58:25 ginnungagap kernel: [drm] initializing kernel modesetting (POLARIS10 0x1002:0x67DF 0x1DA2:0xE366 0xEF).
Feb 21 21:58:25 ginnungagap kernel: [drm] register mmio base: 0xFE800000
Feb 21 21:58:25 ginnungagap kernel: [drm] register mmio size: 262144
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 0 <vi_common>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 1 <gmc_v8_0>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 2 <tonga_ih>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 3 <gfx_v8_0>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 4 <sdma_v3_0>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 5 <powerplay>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 6 <dm>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 7 <uvd_v6_0>
Feb 21 21:58:25 ginnungagap kernel: [drm] add ip block number 8 <vce_v3_0>
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: No more image in the PCI ROM
Feb 21 21:58:25 ginnungagap kernel: ATOM BIOS: 113-2E366AU-X5T
Feb 21 21:58:25 ginnungagap kernel: [drm] UVD is enabled in VM mode
Feb 21 21:58:25 ginnungagap kernel: [drm] UVD ENC is enabled in VM mode
Feb 21 21:58:25 ginnungagap kernel: [drm] VCE enabled in VM mode
Feb 21 21:58:25 ginnungagap kernel: [drm] vm size is 128 GB, 2 levels, block size is 10-bit, fragment size is 9-bit
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: VRAM: 8192M 0x000000F400000000 - 0x000000F5FFFFFFFF (8192M used)
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: GART: 256M 0x000000FF00000000 - 0x000000FF0FFFFFFF
Feb 21 21:58:25 ginnungagap kernel: [drm] Detected VRAM RAM=8192M, BAR=256M
Feb 21 21:58:25 ginnungagap kernel: [drm] RAM width 256bits GDDR5
Feb 21 21:58:25 ginnungagap kernel: [TTM] Zone  kernel: Available graphics memory: 12320694 KiB
Feb 21 21:58:25 ginnungagap kernel: [TTM] Zone   dma32: Available graphics memory: 2097152 KiB
Feb 21 21:58:25 ginnungagap kernel: [TTM] Initializing pool allocator
Feb 21 21:58:25 ginnungagap kernel: [TTM] Initializing DMA pool allocator
Feb 21 21:58:25 ginnungagap kernel: [drm] amdgpu: 8192M of VRAM memory ready
Feb 21 21:58:25 ginnungagap kernel: [drm] amdgpu: 8192M of GTT memory ready.
Feb 21 21:58:25 ginnungagap kernel: [drm] GART: num cpu pages 65536, num gpu pages 65536
Feb 21 21:58:25 ginnungagap kernel: [drm] PCIE GART of 256M enabled (table at 0x000000F400E10000).
Feb 21 21:58:25 ginnungagap kernel: [drm] Chained IB support enabled!
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for noson, revision 579.
Feb 21 21:58:25 ginnungagap kernel: amdgpu: [powerplay] hwmgr_sw_init smu backed is polaris10_smu
Feb 21 21:58:25 ginnungagap kernel: [drm] Found UVD firmware Version: 1.130 Family ID: 16
Feb 21 21:58:25 ginnungagap kernel: [drm] Found VCE firmware Version: 53.26 Binary ID: 3
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB: values for Engine clock
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         300000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         588000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         952000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1041000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1106000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1168000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1209000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1340000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB: Validation clocks:
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:    engine_max_clock: 134000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:    memory_max_clock: 175000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:    level           : 8
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB: values for Memory clock
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         300000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1000000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:         1750000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB: Validation clocks:
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:    engine_max_clock: 134000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:    memory_max_clock: 175000
Feb 21 21:58:25 ginnungagap kernel: [drm] DM_PPLIB:    level           : 8
Feb 21 21:58:25 ginnungagap kernel: [drm] Display Core initialized with v3.2.48!
Feb 21 21:58:25 ginnungagap kernel: [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Feb 21 21:58:25 ginnungagap kernel: [drm] Driver supports precise vblank timestamp query.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap kernel: [drm] UVD and UVD ENC initialized successfully.
Feb 21 21:58:25 ginnungagap kernel: snd_hda_intel 0000:23:00.1: Handle vga_switcheroo audio client
Feb 21 21:58:25 ginnungagap kernel: snd_hda_intel 0000:23:00.1: Force to non-snoop mode
Feb 21 21:58:25 ginnungagap kernel: snd_hda_intel 0000:23:00.1: bound 0000:23:00.0 (ops amdgpu_dm_audio_component_bind_ops [amdgpu])
Feb 21 21:58:25 ginnungagap kernel: input: HDA ATI HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.1/0000:23:00.1/sound/card0/input2
Feb 21 21:58:25 ginnungagap kernel: input: HDA ATI HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.1/0000:23:00.1/sound/card0/input3
Feb 21 21:58:25 ginnungagap kernel: input: HDA ATI HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.1/0000:23:00.1/sound/card0/input4
Feb 21 21:58:25 ginnungagap kernel: input: HDA ATI HDMI HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:03.1/0000:23:00.1/sound/card0/input5
Feb 21 21:58:25 ginnungagap kernel: input: HDA ATI HDMI HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:03.1/0000:23:00.1/sound/card0/input6
Feb 21 21:58:25 ginnungagap kernel: input: HDA ATI HDMI HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:03.1/0000:23:00.1/sound/card0/input7
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0: autoconfig for ALC892: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:    hp_outs=1 (0x1b/0x0/0x0/0x0/0x0)
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:    mono: mono_out=0x0
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:    inputs:
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:      Front Mic=0x19
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:      Rear Mic=0x18
Feb 21 21:58:25 ginnungagap kernel: snd_hda_codec_realtek hdaudioC1D0:      Line=0x1a
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Front Mic as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input8
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Rear Mic as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input9
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Line as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input10
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Line Out Front as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input11
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Line Out Surround as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input12
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Line Out CLFE as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input13
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Line Out Side as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input14
Feb 21 21:58:25 ginnungagap kernel: input: HD-Audio Generic Front Headphone as /devices/pci0000:00/0000:00:08.1/0000:25:00.3/sound/card1/input15
Feb 21 21:58:25 ginnungagap kernel: [drm] VCE initialized successfully.
Feb 21 21:58:25 ginnungagap kernel: kfd kfd: Allocated 3969056 bytes on gart
Feb 21 21:58:25 ginnungagap kernel: Virtual CRAT table created for GPU
Feb 21 21:58:25 ginnungagap kernel: Parsing CRAT table with 1 nodes
Feb 21 21:58:25 ginnungagap kernel: Creating topology SYSFS entries
Feb 21 21:58:25 ginnungagap kernel: Topology: Add dGPU node [0x67df:0x1002]
Feb 21 21:58:25 ginnungagap kernel: kfd kfd: added device 1002:67df
Feb 21 21:58:25 ginnungagap kernel: [drm] fb mappable at 0xE1340000
Feb 21 21:58:25 ginnungagap kernel: [drm] vram apper at 0xE0000000
Feb 21 21:58:25 ginnungagap kernel: [drm] size 14745600
Feb 21 21:58:25 ginnungagap kernel: [drm] fb depth is 24
Feb 21 21:58:25 ginnungagap kernel: [drm]    pitch is 10240
Feb 21 21:58:25 ginnungagap kernel: fbcon: amdgpudrmfb (fb0) is primary device
Feb 21 21:58:25 ginnungagap kernel: Console: switching to colour frame buffer device 160x45
Feb 21 21:58:25 ginnungagap kernel: amdgpu 0000:23:00.0: fb0: amdgpudrmfb frame buffer device
Feb 21 21:58:25 ginnungagap kernel: [drm] Initialized amdgpu 3.35.0 20150101 for 0000:23:00.0 on minor 0
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for core20, revision 1822.
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 458 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 450 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 456 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Got automount request for /proc/sys/fs/binfmt_misc, triggered by 470 (snap)
Feb 21 21:58:25 ginnungagap systemd[1]: proc-sys-fs-binfmt_misc.automount: Automount point already active?
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gnome-3-38-2004, revision 119.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for dbeaver-ce, revision 220.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gnome-3-38-2004, revision 115.
Feb 21 21:58:25 ginnungagap systemd-udevd[426]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gallery-dl, revision 4075.
Feb 21 21:58:25 ginnungagap systemd[1]: Reached target Mounted snaps.
Feb 21 21:58:25 ginnungagap systemd[1]: Found device Samsung SSD 960 EVO 250GB 1.
Feb 21 21:58:25 ginnungagap systemd[1]: Starting File System Check on /dev/disk/by-uuid/d78de86a-1d2f-4617-9026-2a9a692868f0...
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap systemd[1]: Started File System Check Daemon to report status.
Feb 21 21:58:25 ginnungagap systemd[1]: Found device Samsung SSD 960 EVO 250GB 3.
Feb 21 21:58:25 ginnungagap systemd[1]: Starting File System Check on /dev/disk/by-uuid/160d4d9c-175f-4c8d-94c0-090015ff2908...
Feb 21 21:58:25 ginnungagap systemd[1]: Found device Samsung SSD 960 EVO 250GB 4.
Feb 21 21:58:25 ginnungagap systemd[1]: Activating swap /dev/disk/by-uuid/9aa92dbb-4466-4aed-86fe-d5b19e2a2de3...
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gtk-common-themes, revision 1534.
Feb 21 21:58:25 ginnungagap systemd-fsck[720]: /dev/nvme0n1p3: clean, 679283/13459456 files, 50005892/53831680 blocks
Feb 21 21:58:25 ginnungagap systemd-fsck[699]: /dev/nvme0n1p1: clean, 331/65536 files, 58490/262144 blocks
Feb 21 21:58:25 ginnungagap systemd[1]: Finished File System Check on /dev/disk/by-uuid/160d4d9c-175f-4c8d-94c0-090015ff2908.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounting /home...
Feb 21 21:58:25 ginnungagap systemd[1]: Finished File System Check on /dev/disk/by-uuid/d78de86a-1d2f-4617-9026-2a9a692868f0.
Feb 21 21:58:25 ginnungagap systemd[1]: Found device WDC_WD40EFAX-68JH4N1 1.
Feb 21 21:58:25 ginnungagap kernel: Adding 1048572k swap on /dev/nvme0n1p4.  Priority:-2 extents:1 across:1048572k SSFS
Feb 21 21:58:25 ginnungagap systemd[1]: Mounting /boot...
Feb 21 21:58:25 ginnungagap systemd[1]: Starting File System Check on /dev/disk/by-uuid/99ec9e6e-7773-49f6-835f-87fe448cbc85...
Feb 21 21:58:25 ginnungagap systemd[1]: Activated swap /dev/disk/by-uuid/9aa92dbb-4466-4aed-86fe-d5b19e2a2de3.
Feb 21 21:58:25 ginnungagap kernel: EXT4-fs (nvme0n1p3): mounted filesystem with ordered data mode. Opts: (null)
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for gtk-common-themes, revision 1535.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted Mount unit for noson, revision 563.
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted /home.
Feb 21 21:58:25 ginnungagap systemd[1]: Reached target Swap.
Feb 21 21:58:25 ginnungagap kernel: EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null)
Feb 21 21:58:25 ginnungagap systemd[1]: Mounted /boot.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: Node 0: DRAM ECC disabled.
Feb 21 21:58:25 ginnungagap kernel: EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
                                     Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
                                     (Note that use of the override may cause unknown side effects.)
Feb 21 21:58:25 ginnungagap systemd[1]: Found device Samsung_SSD_840_PRO_Series steam.
Feb 21 21:58:25 ginnungagap systemd[1]: Starting File System Check on /dev/sda1...
Feb 21 21:58:25 ginnungagap systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Feb 21 21:58:25 ginnungagap systemd[1]: Starting Load Kernel Module chromeos_pstore...
Feb 21 21:58:25 ginnungagap systemd[1]: Condition check resulted in Load Kernel Module efi_pstore being skipped.
Feb 21 21:58:25 ginnungagap systemd[1]: Starting Load Kernel Module pstore_blk...
Feb 21 21:58:25 ginnungagap systemd[1]: Starting Load Kernel Module pstore_zone...
Feb 21 21:58:25 ginnungagap systemd[1]: Condition check resulted in Load Kernel Module ramoops being skipped.
Feb 21 21:58:25 ginnungagap systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Feb 21 21:58:25 ginnungagap systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: modprobe@pstore_blk.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd-fsck[789]: steam: clean, 85621/15630336 files, 39023062/62514432 blocks
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load Kernel Module pstore_blk.
Feb 21 21:58:26 ginnungagap systemd[1]: modprobe@pstore_zone.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load Kernel Module pstore_zone.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Dispatch Password Requests to Console Directory Watch being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Load Kernel Module efi_pstore being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Load Kernel Module pstore_blk...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Load Kernel Module pstore_zone...
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Load Kernel Module ramoops being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in File System Check on Root Device being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: modprobe@pstore_blk.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load Kernel Module pstore_blk.
Feb 21 21:58:26 ginnungagap systemd[1]: modprobe@pstore_zone.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load Kernel Module pstore_zone.
Feb 21 21:58:26 ginnungagap kernel: input: Corsair CORSAIR M55 RGB PRO Gaming Mouse as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.0/0003:1B1C:1B70.0001/input/input16
Feb 21 21:58:26 ginnungagap kernel: hid-generic 0003:1B1C:1B70.0001: input,hidraw0: USB HID v1.11 Mouse [Corsair CORSAIR M55 RGB PRO Gaming Mouse] on usb-0000:03:00.0-9/input0
Feb 21 21:58:26 ginnungagap kernel: hid-generic 0003:1B1C:1B70.0002: hiddev0,hidraw1: USB HID v1.11 Device [Corsair CORSAIR M55 RGB PRO Gaming Mouse] on usb-0000:03:00.0-9/input1
Feb 21 21:58:26 ginnungagap kernel: hid-generic 0003:1B1C:1B70.0003: hiddev1,hidraw2: USB HID v1.11 Device [Corsair CORSAIR M55 RGB PRO Gaming Mouse] on usb-0000:03:00.0-9/input2
Feb 21 21:58:26 ginnungagap kernel: input: Corsair CORSAIR M55 RGB PRO Gaming Mouse as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-9/1-9:1.3/0003:1B1C:1B70.0004/input/input17
Feb 21 21:58:26 ginnungagap kernel: hid-generic 0003:1B1C:1B70.0004: input,hidraw3: USB HID v1.11 Keyboard [Corsair CORSAIR M55 RGB PRO Gaming Mouse] on usb-0000:03:00.0-9/input3
Feb 21 21:58:26 ginnungagap systemd[1]: modprobe@chromeos_pstore.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load Kernel Module chromeos_pstore.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished File System Check on /dev/sda1.
Feb 21 21:58:26 ginnungagap systemd[1]: Mounting /home/marko/spiele/installed...
Feb 21 21:58:26 ginnungagap systemd[1]: Found device SAMSUNG_HD502HI unsorted.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting File System Check on /dev/sdc1...
Feb 21 21:58:26 ginnungagap systemd[1]: Mounted /home/marko/spiele/installed.
Feb 21 21:58:26 ginnungagap kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Feb 21 21:58:26 ginnungagap systemd-fsck[803]: /dev/sdb1: clean, 75089/244195328 files, 192075882/976754176 blocks
Feb 21 21:58:26 ginnungagap systemd-fsck[945]: unsorted: clean, 156896/30531584 files, 115431244/122096390 blocks
Feb 21 21:58:26 ginnungagap systemd[1]: Finished File System Check on /dev/disk/by-uuid/99ec9e6e-7773-49f6-835f-87fe448cbc85.
Feb 21 21:58:26 ginnungagap systemd[1]: Mounting /home/data...
Feb 21 21:58:26 ginnungagap systemd[1]: Finished File System Check on /dev/sdc1.
Feb 21 21:58:26 ginnungagap systemd[1]: home-marko-unsorted.mount: Directory /home/marko/unsorted to mount over is not empty, mounting anyway.
Feb 21 21:58:26 ginnungagap systemd[1]: Mounting /home/marko/unsorted...
Feb 21 21:58:26 ginnungagap kernel: EXT4-fs (sdc1): mounted filesystem with ordered data mode. Opts: (null)
Feb 21 21:58:26 ginnungagap systemd[1]: Mounted /home/marko/unsorted.
Feb 21 21:58:26 ginnungagap systemd[1]: Mounted /home/data.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Local File Systems.
Feb 21 21:58:26 ginnungagap kernel: EXT4-fs (sdb1): mounted filesystem with ordered data mode. Opts: (null)
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Load AppArmor profiles...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Enable support for additional executable binary formats...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Set console font and keymap...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Clean up any mess left by 0dns-up...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Store a System Token in an EFI Variable being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Commit a transient machine-id on disk being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Create Volatile Files and Directories...
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Enable support for additional executable binary formats.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Set console font and keymap.
Feb 21 21:58:26 ginnungagap apparmor.systemd[956]: Restarting AppArmor
Feb 21 21:58:26 ginnungagap apparmor.systemd[956]: Reloading AppArmor profiles
Feb 21 21:58:26 ginnungagap apparmor.systemd[980]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Feb 21 21:58:26 ginnungagap apparmor.systemd[982]: Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Create Volatile Files and Directories.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Network Name Resolution...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Network Time Synchronization...
Feb 21 21:58:26 ginnungagap audit[977]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=977 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[984]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=984 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[976]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=976 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[976]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=976 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[976]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=976 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[981]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=981 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[979]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=979 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Feb 21 21:58:26 ginnungagap systemd[1]: dns-clean.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Clean up any mess left by 0dns-up.
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-senddoc" pid=977 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=984 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=976 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=976 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=976 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=981 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.395:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=979 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[989]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=989 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[975]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=975 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.399:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=989 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.399:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=975 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap kernel: audit: type=1400 audit(1677013106.399:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=975 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[975]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=975 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[975]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd//third_party" pid=975 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[978]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=978 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[978]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=978 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[988]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="ippusbxd" pid=988 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[994]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe" pid=994 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[994]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="nvidia_modprobe//kmod" pid=994 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Update UTMP about System Boot/Shutdown.
Feb 21 21:58:26 ginnungagap audit[990]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-xpdfimport" pid=990 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[992]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=992 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[992]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=992 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[991]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=991 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[991]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=991 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[991]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=991 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[991]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/{,usr/}sbin/dhclient" pid=991 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[985]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=985 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[985]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=985 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[985]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=985 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[985]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer//sanitized_helper" pid=985 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[985]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-thumbnailer" pid=985 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[995]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice" pid=995 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[995]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-soffice//gpg" pid=995 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load AppArmor profiles.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Raise network interfaces...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Load AppArmor profiles managed internally by snapd...
Feb 21 21:58:26 ginnungagap systemd[1]: Started Network Time Synchronization.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target System Time Set.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target System Time Synchronized.
Feb 21 21:58:26 ginnungagap systemd-resolved[983]: Positive Trust Anchors:
Feb 21 21:58:26 ginnungagap systemd-resolved[983]: . IN DS 20326 8 2 e06d44b80b8f1d39a95c0b0d7c65d08458e880409bbc683457104237c7f8ec8d
Feb 21 21:58:26 ginnungagap systemd-resolved[983]: Negative trust anchors: 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 21 21:58:26 ginnungagap ifup[1036]: postconf: fatal: open /etc/postfix/main.cf: No such file or directory
Feb 21 21:58:26 ginnungagap systemd-resolved[983]: Using system hostname 'ginnungagap'.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Network Name Resolution.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Host and Network Name Lookups.
Feb 21 21:58:26 ginnungagap systemd[1]: Received SIGRTMIN+20 from PID 435 (plymouthd).
Feb 21 21:58:26 ginnungagap systemd[1]: plymouth-read-write.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Tell Plymouth To Write Out Runtime Data.
Feb 21 21:58:26 ginnungagap audit[1047]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.gallery-dl" pid=1047 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1044]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.core" pid=1044 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1043]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/14784/usr/lib/snapd/snap-confine" pid=1043 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1043]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/snap/core/14784/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1043 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1048]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.noson" pid=1048 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1045]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.czkawka" pid=1045 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1051]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.czkawka.hook.configure" pid=1051 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1049]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.core.hook.configure" pid=1049 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1046]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap-update-ns.dbeaver-ce" pid=1046 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1050]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.czkawka.czkawka" pid=1050 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1053]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.dbeaver-ce.hook.configure" pid=1053 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1054]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.gallery-dl.gallery-dl" pid=1054 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1052]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.dbeaver-ce.dbeaver-ce" pid=1052 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap audit[1055]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.noson.noson" pid=1055 comm="apparmor_parser"
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Load AppArmor profiles managed internally by snapd.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target System Initialization.
Feb 21 21:58:26 ginnungagap systemd[1]: Started ACPI Events Check.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Process error reports when automatic reporting is enabled (file watch) being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Started CUPS Scheduler.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Trigger anacron every hour.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Daily apt download activities.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Daily apt upgrade and clean activities.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Periodic ext4 Online Metadata Check for All Filesystems.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Discard unused blocks once a week.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Refresh fwupd metadata regularly.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Daily rotation of log files.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Daily man-db regeneration.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Message of the Day.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Timer to automatically fetch and run repair assertions being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Daily Cleanup of Temporary Directories.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Ubuntu Advantage Timer for running repeated jobs.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Paths.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Timers.
Feb 21 21:58:26 ginnungagap systemd[1]: Listening on ACPID Listen Socket.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Unix socket for apport crash forwarding being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Feb 21 21:58:26 ginnungagap systemd[1]: Listening on CUPS Scheduler.
Feb 21 21:58:26 ginnungagap systemd[1]: Listening on D-Bus System Message Bus Socket.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Socket activation for snappy daemon.
Feb 21 21:58:26 ginnungagap systemd[1]: Listening on UUID daemon activation socket.
Feb 21 21:58:26 ginnungagap systemd[1]: Listening on Socket activation for snappy daemon.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Sockets.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Basic System.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Accounts Service...
Feb 21 21:58:26 ginnungagap systemd[1]: Started ACPI event daemon.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Run anacron jobs.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting LSB: automatic crash report generation...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Feb 21 21:58:26 ginnungagap anacron[1059]: Anacron 2.3 started on 2023-02-21
Feb 21 21:58:26 ginnungagap systemd[1]: Started Regular background program processing daemon.
Feb 21 21:58:26 ginnungagap anacron[1059]: Normal exit (0 jobs run)
Feb 21 21:58:26 ginnungagap systemd[1]: Started CUPS Scheduler.
Feb 21 21:58:26 ginnungagap systemd[1]: Started D-Bus System Message Bus.
Feb 21 21:58:26 ginnungagap cron[1062]: (CRON) INFO (pidfile fd = 3)
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Found user 'avahi' (UID 116) and group 'avahi' (GID 122).
Feb 21 21:58:26 ginnungagap cron[1062]: (CRON) INFO (Running @reboot jobs)
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Network Manager...
Feb 21 21:58:26 ginnungagap systemd[1]: Started Save initial kernel messages after boot.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Remove Stale Online ext4 Metadata Check Snapshots...
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in getty on tty2-tty6 if dbus and logind are not available being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Record successful boot for GRUB...
Feb 21 21:58:26 ginnungagap systemd[1]: Started irqbalance daemon.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Initialize hardware monitoring sensors...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Dispatcher daemon for systemd-networkd...
Feb 21 21:58:26 ginnungagap systemd[1]: Started Set the CPU Frequency Scaling governor.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Authorization Manager...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting System Logging Service...
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Secure Boot updates for DB and DBX being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Userspace listener for prompt events being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Automatically repair incorrect owner/permissions on core devices being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Wait for the Ubuntu Core chooser trigger being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Login Prompts (Pre).
Feb 21 21:58:26 ginnungagap dbus-daemon[1066]: dbus[1066]: Unknown group "power" in message bus configuration file
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Snap Daemon...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Switcheroo Control Proxy service...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Resets System Activity Data Collector...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Login Service...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Thermal Daemon Service...
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Ubuntu Advantage reboot cmds being skipped.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Disk Manager...
Feb 21 21:58:26 ginnungagap systemd[1]: Starting WPA supplicant...
Feb 21 21:58:26 ginnungagap systemd[1]: anacron.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: pppd-dns.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Feb 21 21:58:26 ginnungagap sensors[1106]: k10temp-pci-00c3
Feb 21 21:58:26 ginnungagap sensors[1106]: Adapter: PCI adapter
Feb 21 21:58:26 ginnungagap sensors[1106]: Tdie:         +51.0°C  (high = +70.0°C)
Feb 21 21:58:26 ginnungagap sensors[1106]: Tctl:         +51.0°C
Feb 21 21:58:26 ginnungagap sensors[1106]: amdgpu-pci-2300
Feb 21 21:58:26 ginnungagap sensors[1106]: Adapter: PCI adapter
Feb 21 21:58:26 ginnungagap sensors[1106]: vddgfx:        1.01 V
Feb 21 21:58:26 ginnungagap sensors[1106]: fan1:        1064 RPM  (min =    0 RPM, max = 3200 RPM)
Feb 21 21:58:26 ginnungagap sensors[1106]: edge:         +34.0°C  (crit = +94.0°C, hyst = -273.1°C)
Feb 21 21:58:26 ginnungagap sensors[1106]: power1:       51.00 W  (cap = 160.00 W)
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Resets System Activity Data Collector.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Successfully dropped root privileges.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Initialize hardware monitoring sensors.
Feb 21 21:58:26 ginnungagap rsyslogd[1088]: imuxsock: Acquired UNIX socket '/run/systemd/journal/syslog' (fd 3) from systemd.  [v8.2001.0]
Feb 21 21:58:26 ginnungagap rsyslogd[1088]: rsyslogd's groupid changed to 106
Feb 21 21:58:26 ginnungagap rsyslogd[1088]: rsyslogd's userid changed to 102
Feb 21 21:58:26 ginnungagap rsyslogd[1088]: [origin software="rsyslogd" swVersion="8.2001.0" x-pid="1088" x-info="https://www.rsyslog.com"] start
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: avahi-daemon 0.7 starting up.
Feb 21 21:58:26 ginnungagap systemd[1]: Started System Logging Service.
Feb 21 21:58:26 ginnungagap systemd[1]: grub-common.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Record successful boot for GRUB.
Feb 21 21:58:26 ginnungagap apport[1060]:  * Starting automatic crash report generation: apport
Feb 21 21:58:26 ginnungagap udisksd[1103]: udisks daemon version 2.8.4 starting
Feb 21 21:58:26 ginnungagap systemd[1]: Starting GRUB failed boot detection...
Feb 21 21:58:26 ginnungagap apport[1060]:    ...done.
Feb 21 21:58:26 ginnungagap systemd[1]: Started LSB: automatic crash report generation.
Feb 21 21:58:26 ginnungagap systemd[1]: gpu-manager.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Detect the available GPUs and deal with any system changes.
Feb 21 21:58:26 ginnungagap systemd[1]: grub-initrd-fallback.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished GRUB failed boot detection.
Feb 21 21:58:26 ginnungagap dbus-daemon[1066]: [system] AppArmor D-Bus mediation is enabled
Feb 21 21:58:26 ginnungagap wpa_supplicant[1104]: Successfully initialized wpa_supplicant
Feb 21 21:58:26 ginnungagap systemd[1]: Started WPA supplicant.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Thermal Daemon Service.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Make remote CUPS printers available locally.
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.6623] NetworkManager (version 1.22.10) is starting... (for the first time)
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.6624] Read config: /etc/NetworkManager/NetworkManager.conf (lib: 10-dns-resolved.conf, 20-connectivity-ubuntu.conf, no-mac-addr-change.conf) (run: 10-globally-managed-devices.conf) (etc: default-wifi-powersave-on.conf)
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Successfully called chroot().
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Successfully dropped remaining capabilities.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: No service file found in /etc/avahi/services.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Joining mDNS multicast group on interface lo.IPv6 with address ::1.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Switcheroo Control Proxy service.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: New relevant interface lo.IPv6 for mDNS.
Feb 21 21:58:26 ginnungagap systemd[1]: Condition check resulted in Manage Sound Card State (restore and store) being skipped.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Joining mDNS multicast group on interface lo.IPv4 with address 127.0.0.1.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Save/Restore Sound Card State...
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: New relevant interface lo.IPv4 for mDNS.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Authorization Manager.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Network interface enumeration completed.
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.6649] bus-manager: acquired D-Bus service "org.freedesktop.NetworkManager"
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Registering new address record for ::1 on lo.*.
Feb 21 21:58:26 ginnungagap systemd[1]: Started Network Manager.
Feb 21 21:58:26 ginnungagap avahi-daemon[1061]: Registering new address record for 127.0.0.1 on lo.IPv4.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Modem Manager...
Feb 21 21:58:26 ginnungagap polkitd[1084]: started daemon version 0.105 using authority implementation `local' version `0.105'
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Network Manager Wait Online...
Feb 21 21:58:26 ginnungagap thermald[1102]: NO RAPL sysfs present
Feb 21 21:58:26 ginnungagap systemd-logind[1101]: New seat seat0.
Feb 21 21:58:26 ginnungagap thermald[1102]: Unsupported cpu model or platform
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.6690] manager[0x55bc5f27a030]: monitoring kernel firmware directory '/lib/firmware'.
Feb 21 21:58:26 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service' requested by ':1.10' (uid=0 pid=1069 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.6690] monitoring ifupdown state file '/run/network/ifstate'.
Feb 21 21:58:26 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event1 (Power Button)
Feb 21 21:58:26 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event0 (Power Button)
Feb 21 21:58:26 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event17 (Corsair CORSAIR M55 RGB PRO Gaming Mouse)
Feb 21 21:58:26 ginnungagap systemd[1]: thermald.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Hostname Service...
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Save/Restore Sound Card State.
Feb 21 21:58:26 ginnungagap systemd[1]: Reached target Sound Card.
Feb 21 21:58:26 ginnungagap udisksd[1103]: failed to load module mdraid: libbd_mdraid.so.2: cannot open shared object file: No such file or directory
Feb 21 21:58:26 ginnungagap audit[1139]: AVC apparmor="DENIED" operation="capable" profile="/usr/sbin/cups-browsed" pid=1139 comm="cups-browsed" capability=23  capname="sys_nice"
Feb 21 21:58:26 ginnungagap ModemManager[1144]: <info>  ModemManager (version 1.18.6) starting in system bus...
Feb 21 21:58:26 ginnungagap udisksd[1103]: Failed to load the 'mdraid' libblockdev plugin
Feb 21 21:58:26 ginnungagap systemd[1]: e2scrub_reap.service: Succeeded.
Feb 21 21:58:26 ginnungagap systemd[1]: Finished Remove Stale Online ext4 Metadata Check Snapshots.
Feb 21 21:58:26 ginnungagap accounts-daemon[1057]: started daemon version 0.6.55
Feb 21 21:58:26 ginnungagap systemd[1]: Started Accounts Service.
Feb 21 21:58:26 ginnungagap acpid[1058]: starting up with netlink and the input layer
Feb 21 21:58:26 ginnungagap acpid[1058]: 8 rules loaded
Feb 21 21:58:26 ginnungagap acpid[1058]: waiting for events: event logging is off
Feb 21 21:58:26 ginnungagap systemd[1]: Started Modem Manager.
Feb 21 21:58:26 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.hostname1'
Feb 21 21:58:26 ginnungagap systemd[1]: Started Hostname Service.
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7741] hostname: hostname: using hostnamed
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7741] hostname: hostname changed from (none) to "ginnungagap"
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7744] dns-mgr[0x55bc5f261290]: init: dns=systemd-resolved rc-manager=symlink, plugin=systemd-resolved
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7748] manager[0x55bc5f27a030]: rfkill: Wi-Fi hardware radio set enabled
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7748] manager[0x55bc5f27a030]: rfkill: WWAN hardware radio set enabled
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7833] Loaded device plugin: NMWifiFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-wifi.so)
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1176]: WARNING: systemd-networkd is not running, output will be incomplete.
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7843] Loaded device plugin: NMAtmManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-adsl.so)
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7860] Loaded device plugin: NMTeamFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-team.so)
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]: ERROR:Unknown state for interface NetworkctlListState(idx=1, name='lo', type='loopback', operational='n/a', administrative='unmanaged'): n/a
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]: Traceback (most recent call last):
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:   File "/usr/bin/networkd-dispatcher", line 298, in trigger_all
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:     self.handle_state(iface_name,
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:   File "/usr/bin/networkd-dispatcher", line 348, in handle_state
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:     raise UnknownState(operational_state)
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]: UnknownState: n/a
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]: ERROR:Unknown state for interface NetworkctlListState(idx=2, name='enp33s0', type='ether', operational='n/a', administrative='unmanaged'): n/a
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]: Traceback (most recent call last):
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:   File "/usr/bin/networkd-dispatcher", line 298, in trigger_all
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:     self.handle_state(iface_name,
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:   File "/usr/bin/networkd-dispatcher", line 348, in handle_state
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]:     raise UnknownState(operational_state)
Feb 21 21:58:26 ginnungagap networkd-dispatcher[1079]: UnknownState: n/a
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7891] Loaded device plugin: NMBluezManager (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-bluetooth.so)
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7896] Loaded device plugin: NMWwanFactory (/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-device-plugin-wwan.so)
Feb 21 21:58:26 ginnungagap systemd[1]: Started Dispatcher daemon for systemd-networkd.
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7899] manager: rfkill: Wi-Fi enabled by radio killswitch; enabled by state file
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7900] manager: rfkill: WWAN enabled by radio killswitch; enabled by state file
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7901] manager: Networking is enabled by state file
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7902] dhcp-init: Using DHCP client 'internal'
Feb 21 21:58:26 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.10' (uid=0 pid=1069 comm="/usr/sbin/NetworkManager --no-daemon " label="unconfined")
Feb 21 21:58:26 ginnungagap systemd[1]: Starting Network Manager Script Dispatcher Service...
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7939] settings: Loaded settings plugin: ifupdown ("/usr/lib/x86_64-linux-gnu/NetworkManager/1.22.10/libnm-settings-plugin-ifupdown.so")
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7939] settings: Loaded settings plugin: keyfile (internal)
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7939] ifupdown: management mode: unmanaged
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7939] ifupdown:       interface-parser: parsing file /etc/network/interfaces
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7940] ifupdown:       interface-parser: finished parsing file /etc/network/interfaces
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7950] device (lo): carrier: link connected
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7953] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/1)
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.7963] manager: (enp33s0): new Ethernet device (/org/freedesktop/NetworkManager/Devices/2)
Feb 21 21:58:26 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Feb 21 21:58:26 ginnungagap systemd[1]: Started Network Manager Script Dispatcher Service.
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.8030] settings: (enp33s0): created default wired connection 'Wired connection 1'
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.8039] device (enp33s0): state change: unmanaged -> unavailable (reason 'managed', sys-iface-state: 'external')
Feb 21 21:58:26 ginnungagap kernel: Generic FE-GE Realtek PHY r8169-0-2100:00: attached PHY driver [Generic FE-GE Realtek PHY] (mii_bus:phy_addr=r8169-0-2100:00, irq=IGNORE)
Feb 21 21:58:26 ginnungagap udisksd[1103]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Feb 21 21:58:26 ginnungagap systemd[1]: Started Disk Manager.
Feb 21 21:58:26 ginnungagap kernel: r8169 0000:21:00.0 enp33s0: Link is Down
Feb 21 21:58:26 ginnungagap NetworkManager[1069]: <info>  [1677013106.9265] modem-manager: ModemManager available
Feb 21 21:58:27 ginnungagap systemd[1]: Started Login Service.
Feb 21 21:58:27 ginnungagap snapd[1095]: overlord.go:268: Acquiring state lock file
Feb 21 21:58:27 ginnungagap snapd[1095]: overlord.go:273: Acquired state lock file
Feb 21 21:58:27 ginnungagap systemd[1]: Finished Raise network interfaces.
Feb 21 21:58:27 ginnungagap systemd[1]: Reached target Network.
Feb 21 21:58:27 ginnungagap systemd[1]: Starting OpenVPN service...
Feb 21 21:58:27 ginnungagap systemd[1]: Condition check resulted in fast remote file copy program daemon being skipped.
Feb 21 21:58:27 ginnungagap systemd[1]: Starting Permit User Sessions...
Feb 21 21:58:27 ginnungagap systemd[1]: Started Unattended Upgrades Shutdown.
Feb 21 21:58:27 ginnungagap systemd[1]: Finished OpenVPN service.
Feb 21 21:58:27 ginnungagap systemd[1]: Finished Permit User Sessions.
Feb 21 21:58:27 ginnungagap systemd[1]: Starting Light Display Manager...
Feb 21 21:58:27 ginnungagap snapd[1095]: daemon.go:247: started snapd/2.58.2 (series 16; classic) ubuntu/20.04 (amd64) linux/5.4.0-139-generic.
Feb 21 21:58:27 ginnungagap systemd[1]: Starting Hold until boot process finishes up...
Feb 21 21:58:27 ginnungagap systemd[1]: Received SIGRTMIN+21 from PID 435 (plymouthd).
Feb 21 21:58:27 ginnungagap systemd[1]: tmp-syscheck\x2dmountpoint\x2d869187130.mount: Succeeded.
Feb 21 21:58:27 ginnungagap systemd[1]: plymouth-quit-wait.service: Succeeded.
Feb 21 21:58:27 ginnungagap systemd[1]: Finished Hold until boot process finishes up.
Feb 21 21:58:27 ginnungagap systemd[1]: Received SIGRTMIN+21 from PID 435 (plymouthd).
Feb 21 21:58:27 ginnungagap systemd[1]: Started Light Display Manager.
Feb 21 21:58:27 ginnungagap avahi-daemon[1061]: Server startup complete. Host name is ginnungagap.local. Local service cookie is 2619729091.
Feb 21 21:58:27 ginnungagap systemd[1]: Starting Set console scheme...
Feb 21 21:58:27 ginnungagap systemd[1]: plymouth-start.service: Succeeded.
Feb 21 21:58:27 ginnungagap systemd[1]: Finished Set console scheme.
Feb 21 21:58:27 ginnungagap systemd[1]: Created slice system-getty.slice.
Feb 21 21:58:27 ginnungagap systemd[1]: Started Getty on tty1.
Feb 21 21:58:27 ginnungagap systemd[1]: Reached target Login Prompts.
Feb 21 21:58:27 ginnungagap snapd[1095]: daemon.go:340: adjusting startup timeout by 1m25s (pessimistic estimate of 30s plus 5s per snap)
Feb 21 21:58:27 ginnungagap snapd[1095]: backends.go:58: AppArmor status: apparmor is enabled and all features are available
Feb 21 21:58:27 ginnungagap systemd[1]: Started Snap Daemon.
Feb 21 21:58:27 ginnungagap systemd[1]: Starting Wait until snapd is fully seeded...
Feb 21 21:58:27 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.timedate1' unit='dbus-org.freedesktop.timedate1.service' requested by ':1.23' (uid=0 pid=1095 comm="/usr/lib/snapd/snapd " label="unconfined")
Feb 21 21:58:27 ginnungagap systemd[1]: Starting Time & Date Service...
Feb 21 21:58:27 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.timedate1'
Feb 21 21:58:27 ginnungagap systemd[1]: Started Time & Date Service.
Feb 21 21:58:27 ginnungagap systemd[1]: Finished Wait until snapd is fully seeded.
Feb 21 21:58:27 ginnungagap systemd[1]: Condition check resulted in Auto import assertions from block devices being skipped.
Feb 21 21:58:27 ginnungagap snapd[1095]: stateengine.go:149: state ensure error: Get https://api.snapcraft.io/api/v1/snaps/sections: dial tcp: lookup api.snapcraft.io: no such host
Feb 21 21:58:28 ginnungagap lightdm[1308]: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Feb 21 21:58:28 ginnungagap systemd[1]: Created slice User Slice of UID 122.
Feb 21 21:58:28 ginnungagap systemd[1]: Starting User Runtime Directory /run/user/122...
Feb 21 21:58:28 ginnungagap systemd-logind[1101]: New session c1 of user lightdm.
Feb 21 21:58:28 ginnungagap systemd[1]: Finished User Runtime Directory /run/user/122.
Feb 21 21:58:28 ginnungagap systemd[1]: Starting User Manager for UID 122...
Feb 21 21:58:28 ginnungagap systemd[1312]: pam_unix(systemd-user:session): session opened for user lightdm by (uid=0)
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Pending report trigger for Ubuntu Report.
Feb 21 21:58:28 ginnungagap systemd[1312]: Reached target Paths.
Feb 21 21:58:28 ginnungagap systemd[1312]: Reached target Timers.
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting D-Bus User Message Bus Socket.
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on GnuPG network certificate management daemon.
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on debconf communication socket.
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on Sound System.
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on REST API socket for snapd user session agent.
Feb 21 21:58:28 ginnungagap systemd[1312]: Listening on D-Bus User Message Bus Socket.
Feb 21 21:58:28 ginnungagap systemd[1312]: Reached target Sockets.
Feb 21 21:58:28 ginnungagap systemd[1312]: Reached target Basic System.
Feb 21 21:58:28 ginnungagap systemd[1]: Started User Manager for UID 122.
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Sound Service...
Feb 21 21:58:28 ginnungagap systemd[1]: Started Session c1 of user lightdm.
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Tracker metadata extractor...
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Tracker file system data miner...
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Set scheduler policy to SCHED_IDLE
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Setting priority nice level to 19
Feb 21 21:58:28 ginnungagap tracker-extract[1322]: Set scheduler policy to SCHED_IDLE
Feb 21 21:58:28 ginnungagap tracker-extract[1322]: Setting priority nice level to 19
Feb 21 21:58:28 ginnungagap lightdm[1308]: gkr-pam: gnome-keyring-daemon started properly
Feb 21 21:58:28 ginnungagap systemd[1312]: Started D-Bus User Message Bus.
Feb 21 21:58:28 ginnungagap audit[1321]: SECCOMP auid=122 uid=122 gid=127 ses=1 pid=1321 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f04dfb code=0x0
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] AppArmor D-Bus mediation is enabled
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Virtual filesystem service...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gtk.vfs.Daemon'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Virtual filesystem service.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &DOCUMENTS. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &MUSIC. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &PICTURES. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &VIDEOS. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &DOWNLOAD. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &DOCUMENTS. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &MUSIC. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &PICTURES. Ignoring this location.
Feb 21 21:58:28 ginnungagap tracker-miner-f[1323]: Unable to get XDG user directory path for special directory &VIDEOS. Ignoring this location.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Virtual filesystem service - disk device monitor...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Virtual filesystem service - disk device monitor.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating service name='org.gnome.OnlineAccounts' requested by ':1.7' (uid=122 pid=1374 comm="/usr/libexec/gvfs-goa-volume-monitor " label="unconfined")
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.8' (uid=122 pid=1334 comm="/usr/sbin/unity-greeter " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Accessibility services bus...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.a11y.Bus'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Accessibility services bus.
Feb 21 21:58:28 ginnungagap goa-daemon[1379]: goa-daemon version 3.36.1 starting
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating service name='org.gnome.Identity' requested by ':1.11' (uid=122 pid=1379 comm="/usr/libexec/goa-daemon " label="unconfined")
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gnome.OnlineAccounts'
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gnome.Identity'
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Virtual filesystem service - Apple File Conduit monitor...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Virtual filesystem service - Apple File Conduit monitor.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Virtual filesystem service - digital camera monitor...
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Virtual filesystem service - digital camera monitor.
Feb 21 21:58:28 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service' requested by ':1.32' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1]: Starting Daemon for power management...
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Tracker metadata extractor.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating service name='ca.desrt.dconf' requested by ':1.10' (uid=122 pid=1334 comm="/usr/sbin/unity-greeter " label="unconfined")
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'ca.desrt.dconf'
Feb 21 21:58:28 ginnungagap at-spi-bus-launcher[1385]: dbus-daemon[1385]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=122 pid=1334 comm="/usr/sbin/unity-greeter " label="unconfined")
Feb 21 21:58:28 ginnungagap at-spi-bus-laun[1380]: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.UnknownMethod: No such method “RegisterClient”
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Indicator Application Service.
Feb 21 21:58:28 ginnungagap at-spi-bus-launcher[1385]: dbus-daemon[1385]: Successfully activated service 'org.a11y.atspi.Registry'
Feb 21 21:58:28 ginnungagap at-spi-bus-launcher[1440]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Indicator Power.
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Indicator Date & Time Backend.
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Indicator Keyboard Backend.
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Indicator Session Service.
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Indicator Sound Service.
Feb 21 21:58:28 ginnungagap indicator-sound[1455]: volume-control-pulse.vala:735: unable to get pulse unix socket: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.PulseAudio1 was not provided by any .service files
Feb 21 21:58:28 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.UPower'
Feb 21 21:58:28 ginnungagap systemd[1]: Started Daemon for power management.
Feb 21 21:58:28 ginnungagap indicator-keyboard-service[1451]: Unable to init server: Could not connect: Connection refused
Feb 21 21:58:28 ginnungagap indicator-keybo[1451]: gtk_icon_theme_get_for_screen: assertion 'GDK_IS_SCREEN (screen)' failed
Feb 21 21:58:28 ginnungagap indicator-sound[1455]: media-player-list-greeter.vala:51: Unable to get active entry: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name com.canonical.UnityGreeter was not provided by any .service files
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Activating via systemd: service name='org.freedesktop.Tracker1' unit='tracker-store.service' requested by ':1.1' (uid=122 pid=1323 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1312]: Starting Tracker metadata database store and lookup manager...
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Tracker file system data miner.
Feb 21 21:58:28 ginnungagap dbus-daemon[1331]: [session uid=122 pid=1331] Successfully activated service 'org.freedesktop.Tracker1'
Feb 21 21:58:28 ginnungagap systemd[1312]: Started Tracker metadata database store and lookup manager.
Feb 21 21:58:28 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service' requested by ':1.40' (uid=122 pid=1442 comm="/usr/lib/unity-settings-daemon/unity-settings-daem" label="unconfined")
Feb 21 21:58:28 ginnungagap systemd[1]: Starting Manage, Install and Generate Color Profiles...
Feb 21 21:58:28 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Feb 21 21:58:28 ginnungagap systemd[1]: Started Manage, Install and Generate Color Profiles.
Feb 21 21:58:28 ginnungagap NetworkManager[1069]: <info>  [1677013108.9208] agent-manager: agent[689f6ff84cc62511,:1.42/org.freedesktop.nm-applet/122]: agent registered
Feb 21 21:58:28 ginnungagap lightdm[1516]: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "marko"
Feb 21 21:58:29 ginnungagap ModemManager[1144]: <info>  [base-manager] couldn't check support for device '/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.2/0000:04:01.0/0000:21:00.0': not supported by any plugin
Feb 21 21:58:29 ginnungagap systemd[1312]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 21:58:29 ginnungagap systemd[1312]: pulseaudio.service: Failed with result 'signal'.
Feb 21 21:58:29 ginnungagap systemd[1312]: Failed to start Sound Service.
Feb 21 21:58:29 ginnungagap systemd[1312]: Reached target Main User Target.
Feb 21 21:58:29 ginnungagap systemd[1312]: Startup finished in 1.341s.
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9950] device (enp33s0): carrier: link connected
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9953] device (enp33s0): state change: unavailable -> disconnected (reason 'carrier-changed', sys-iface-state: 'managed')
Feb 21 21:58:29 ginnungagap kernel: r8169 0000:21:00.0 enp33s0: Link is Up - 1Gbps/Full - flow control rx/tx
Feb 21 21:58:29 ginnungagap kernel: IPv6: ADDRCONF(NETDEV_CHANGE): enp33s0: link becomes ready
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9960] policy: auto-activating connection 'Wired connection 1' (93ba35e9-e90b-3711-b551-04d4fc0646cb)
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9964] device (enp33s0): Activation: starting connection 'Wired connection 1' (93ba35e9-e90b-3711-b551-04d4fc0646cb)
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9965] device (enp33s0): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9969] manager: NetworkManager state is now CONNECTING
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9971] device (enp33s0): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9976] device (enp33s0): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
Feb 21 21:58:29 ginnungagap NetworkManager[1069]: <info>  [1677013109.9980] dhcp4 (enp33s0): activation: beginning transaction (timeout in 45 seconds)
Feb 21 21:58:30 ginnungagap avahi-daemon[1061]: Joining mDNS multicast group on interface enp33s0.IPv6 with address fe80::dfcb:e848:d7d2:8727.
Feb 21 21:58:30 ginnungagap avahi-daemon[1061]: New relevant interface enp33s0.IPv6 for mDNS.
Feb 21 21:58:30 ginnungagap avahi-daemon[1061]: Registering new address record for fe80::dfcb:e848:d7d2:8727 on enp33s0.*.
Feb 21 21:58:30 ginnungagap systemd[1312]: pulseaudio.service: Scheduled restart job, restart counter is at 1.
Feb 21 21:58:30 ginnungagap systemd[1312]: Stopped Sound Service.
Feb 21 21:58:30 ginnungagap systemd[1312]: Starting Sound Service...
Feb 21 21:58:30 ginnungagap audit[1525]: SECCOMP auid=122 uid=122 gid=127 ses=1 pid=1525 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7fe3dfb code=0x0
Feb 21 21:58:31 ginnungagap systemd[1312]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 21:58:31 ginnungagap systemd[1312]: pulseaudio.service: Failed with result 'signal'.
Feb 21 21:58:31 ginnungagap systemd[1312]: Failed to start Sound Service.
Feb 21 21:58:31 ginnungagap systemd[1312]: pulseaudio.service: Scheduled restart job, restart counter is at 2.
Feb 21 21:58:31 ginnungagap systemd[1312]: Stopped Sound Service.
Feb 21 21:58:31 ginnungagap systemd[1312]: Starting Sound Service...
Feb 21 21:58:31 ginnungagap audit[1530]: SECCOMP auid=122 uid=122 gid=127 ses=1 pid=1530 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7fa2dfb code=0x0
Feb 21 21:58:31 ginnungagap kernel: kauditd_printk_skb: 37 callbacks suppressed
Feb 21 21:58:31 ginnungagap kernel: audit: type=1326 audit(1677013111.515:49): auid=122 uid=122 gid=127 ses=1 pid=1530 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7fa2dfb code=0x0
Feb 21 21:58:31 ginnungagap set-cpufreq[1082]: Setting ondemand scheduler for all CPUs
Feb 21 21:58:31 ginnungagap systemd[1]: ondemand.service: Succeeded.
Feb 21 21:58:31 ginnungagap systemd[1]: dmesg.service: Succeeded.
Feb 21 21:58:31 ginnungagap NetworkManager[1069]: <info>  [1677013111.9392] dhcp6 (enp33s0): activation: beginning transaction (timeout in 45 seconds)
Feb 21 21:58:31 ginnungagap avahi-daemon[1061]: Leaving mDNS multicast group on interface enp33s0.IPv6 with address fe80::dfcb:e848:d7d2:8727.
Feb 21 21:58:31 ginnungagap avahi-daemon[1061]: Joining mDNS multicast group on interface enp33s0.IPv6 with address 2001:a61:3a66:dc01:e761:7f1e:9474:899a.
Feb 21 21:58:31 ginnungagap avahi-daemon[1061]: Registering new address record for 2001:a61:3a66:dc01:e761:7f1e:9474:899a on enp33s0.*.
Feb 21 21:58:31 ginnungagap avahi-daemon[1061]: Withdrawing address record for fe80::dfcb:e848:d7d2:8727 on enp33s0.
Feb 21 21:58:31 ginnungagap avahi-daemon[1061]: Registering new address record for fd00::d859:b9b3:92a5:7143 on enp33s0.*.
Feb 21 21:58:31 ginnungagap NetworkManager[1069]: <info>  [1677013111.9527] dhcp6 (enp33s0): option dhcp6_name_servers   => 'fd00::ca0e:14ff:feec:39f2'
Feb 21 21:58:31 ginnungagap NetworkManager[1069]: <info>  [1677013111.9528] dhcp6 (enp33s0): state changed unknown -> bound
Feb 21 21:58:32 ginnungagap systemd[1312]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 21:58:32 ginnungagap systemd[1312]: pulseaudio.service: Failed with result 'signal'.
Feb 21 21:58:32 ginnungagap systemd[1312]: Failed to start Sound Service.
Feb 21 21:58:33 ginnungagap systemd[1312]: pulseaudio.service: Scheduled restart job, restart counter is at 3.
Feb 21 21:58:33 ginnungagap systemd[1312]: Stopped Sound Service.
Feb 21 21:58:33 ginnungagap systemd[1312]: Starting Sound Service...
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0143] dhcp4 (enp33s0): option dhcp_lease_time      => '864000'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option domain_name          => 'fritz.box'
Feb 21 21:58:33 ginnungagap avahi-daemon[1061]: Joining mDNS multicast group on interface enp33s0.IPv4 with address 192.168.178.33.
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option domain_name_servers  => '192.168.178.1'
Feb 21 21:58:33 ginnungagap avahi-daemon[1061]: New relevant interface enp33s0.IPv4 for mDNS.
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option expiry               => '1677877111'
Feb 21 21:58:33 ginnungagap avahi-daemon[1061]: Registering new address record for 192.168.178.33 on enp33s0.IPv4.
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option ip_address           => '192.168.178.33'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option next_server          => '192.168.178.1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option ntp_servers          => '192.168.178.1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0144] dhcp4 (enp33s0): option requested_broadcast_address => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0145] dhcp4 (enp33s0): option requested_domain_name => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0145] dhcp4 (enp33s0): option requested_domain_name_servers => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0145] dhcp4 (enp33s0): option requested_domain_search => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0145] dhcp4 (enp33s0): option requested_host_name  => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0145] dhcp4 (enp33s0): option requested_interface_mtu => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0145] dhcp4 (enp33s0): option requested_ms_classless_static_routes => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0146] dhcp4 (enp33s0): option requested_nis_domain => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0146] dhcp4 (enp33s0): option requested_nis_servers => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0146] dhcp4 (enp33s0): option requested_ntp_servers => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0146] dhcp4 (enp33s0): option requested_rfc3442_classless_static_routes => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0146] dhcp4 (enp33s0): option requested_root_path  => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0146] dhcp4 (enp33s0): option requested_routers    => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): option requested_static_routes => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): option requested_subnet_mask => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): option requested_time_offset => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): option requested_wpad       => '1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): option routers              => '192.168.178.1'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): option subnet_mask          => '255.255.255.0'
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0147] dhcp4 (enp33s0): state changed unknown -> bound
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0167] device (enp33s0): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0233] device (enp33s0): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0238] device (enp33s0): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0245] manager: NetworkManager state is now CONNECTED_LOCAL
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0257] manager: NetworkManager state is now CONNECTED_SITE
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0259] policy: set 'Wired connection 1' (enp33s0) as default for IPv4 routing and DNS
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0262] policy: set 'Wired connection 1' (enp33s0) as default for IPv6 routing and DNS
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0265] device (enp33s0): Activation: successful, device activated.
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.0272] manager: startup complete
Feb 21 21:58:33 ginnungagap audit[1559]: SECCOMP auid=122 uid=122 gid=127 ses=1 pid=1559 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f29dfb code=0x0
Feb 21 21:58:33 ginnungagap kernel: audit: type=1326 audit(1677013113.023:50): auid=122 uid=122 gid=127 ses=1 pid=1559 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f29dfb code=0x0
Feb 21 21:58:33 ginnungagap systemd[1]: Finished Network Manager Wait Online.
Feb 21 21:58:33 ginnungagap systemd[1]: Reached target Network is Online.
Feb 21 21:58:33 ginnungagap systemd[1]: Starting LSB: disk temperature monitoring daemon...
Feb 21 21:58:33 ginnungagap systemd[1]: Starting Tool to automatically collect and submit kernel crash signatures...
Feb 21 21:58:33 ginnungagap systemd[1]: Starting Samba NMB Daemon...
Feb 21 21:58:33 ginnungagap systemd[1]: Starting Postfix Mail Transport Agent (instance -)...
Feb 21 21:58:33 ginnungagap systemd[1]: Condition check resulted in Ubuntu Pro Background Auto Attach being skipped.
Feb 21 21:58:33 ginnungagap systemd[1]: Started crash report submission daemon.
Feb 21 21:58:33 ginnungagap nm-dispatcher[1574]: postconf: fatal: open /etc/postfix/main.cf: No such file or directory
Feb 21 21:58:33 ginnungagap systemd[1]: kerneloops.service: Found left-over process 1581 (kerneloops) in control group while starting unit. Ignoring.
Feb 21 21:58:33 ginnungagap configure-instance.sh[1578]: postconf: fatal: open /etc/postfix/main.cf: No such file or directory
Feb 21 21:58:33 ginnungagap systemd[1]: This usually indicates unclean termination of a previous run, or service implementation deficiencies.
Feb 21 21:58:33 ginnungagap systemd[1]: Started LSB: disk temperature monitoring daemon.
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] Using lock path: /var/lock/whoopsie/lock
Feb 21 21:58:33 ginnungagap systemd[1]: Started Tool to automatically collect and submit kernel crash signatures.
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] offline
Feb 21 21:58:33 ginnungagap systemd[1]: Started Samba NMB Daemon.
Feb 21 21:58:33 ginnungagap systemd[1]: Starting Samba SMB Daemon...
Feb 21 21:58:33 ginnungagap systemd[1]: Started Samba SMB Daemon.
Feb 21 21:58:33 ginnungagap NetworkManager[1069]: <info>  [1677013113.2524] manager: NetworkManager state is now CONNECTED_GLOBAL
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] Cannot reach: https://daisy.ubuntu.com
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/1
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/1
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/1
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] Cannot reach: https://daisy.ubuntu.com
Feb 21 21:58:33 ginnungagap avahi-daemon[1061]: Registering new address record for 2001:a61:3a66:dc01:dc01:74c3:62be:c9a8 on enp33s0.*.
Feb 21 21:58:33 ginnungagap avahi-daemon[1061]: Registering new address record for fd00::dc01:74c3:62be:c9a8 on enp33s0.*.
Feb 21 21:58:33 ginnungagap whoopsie[1579]: [21:58:33] Cannot reach: https://daisy.ubuntu.com
Feb 21 21:58:34 ginnungagap configure-instance.sh[1608]: postconf: fatal: open /etc/postfix/main.cf: No such file or directory
Feb 21 21:58:34 ginnungagap nm-dispatcher[1611]: postconf: fatal: open /etc/postfix/main.cf: No such file or directory
Feb 21 21:58:34 ginnungagap systemd[1312]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 21:58:34 ginnungagap systemd[1312]: pulseaudio.service: Failed with result 'signal'.
Feb 21 21:58:34 ginnungagap systemd[1312]: Failed to start Sound Service.
Feb 21 21:58:34 ginnungagap systemd[1312]: pulseaudio.service: Scheduled restart job, restart counter is at 4.
Feb 21 21:58:34 ginnungagap systemd[1312]: Stopped Sound Service.
Feb 21 21:58:34 ginnungagap systemd[1312]: Starting Sound Service...
Feb 21 21:58:34 ginnungagap audit[1612]: SECCOMP auid=122 uid=122 gid=127 ses=1 pid=1612 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f54dfb code=0x0
Feb 21 21:58:34 ginnungagap kernel: audit: type=1326 audit(1677013114.559:51): auid=122 uid=122 gid=127 ses=1 pid=1612 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f54dfb code=0x0
Feb 21 21:58:34 ginnungagap whoopsie[1579]: [21:58:34] online
Feb 21 21:58:35 ginnungagap systemd[1]: postfix@-.service: Control process exited, code=exited, status=1/FAILURE
Feb 21 21:58:35 ginnungagap systemd[1]: postfix@-.service: Failed with result 'exit-code'.
Feb 21 21:58:35 ginnungagap systemd[1]: Failed to start Postfix Mail Transport Agent (instance -).
Feb 21 21:58:35 ginnungagap systemd[1]: Condition check resulted in Postfix Mail Transport Agent being skipped.
Feb 21 21:58:35 ginnungagap systemd[1]: Reached target Multi-User System.
Feb 21 21:58:35 ginnungagap systemd[1]: Reached target Graphical Interface.
Feb 21 21:58:35 ginnungagap systemd[1]: Starting Update UTMP about System Runlevel Changes...
Feb 21 21:58:35 ginnungagap systemd[1]: systemd-update-utmp-runlevel.service: Succeeded.
Feb 21 21:58:35 ginnungagap systemd[1]: Finished Update UTMP about System Runlevel Changes.
Feb 21 21:58:35 ginnungagap systemd[1]: Startup finished in 3.315s (kernel) + 11.824s (userspace) = 15.139s.
Feb 21 21:58:35 ginnungagap systemd[1312]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 21:58:35 ginnungagap systemd[1312]: pulseaudio.service: Failed with result 'signal'.
Feb 21 21:58:35 ginnungagap systemd[1312]: Failed to start Sound Service.
Feb 21 21:58:36 ginnungagap systemd[1312]: pulseaudio.service: Scheduled restart job, restart counter is at 5.
Feb 21 21:58:36 ginnungagap systemd[1312]: Stopped Sound Service.
Feb 21 21:58:36 ginnungagap systemd[1312]: pulseaudio.service: Start request repeated too quickly.
Feb 21 21:58:36 ginnungagap systemd[1312]: pulseaudio.service: Failed with result 'signal'.
Feb 21 21:58:36 ginnungagap systemd[1312]: Failed to start Sound Service.
Feb 21 21:58:36 ginnungagap systemd[1312]: pulseaudio.socket: Failed with result 'service-start-limit-hit'.
Feb 21 21:58:38 ginnungagap indicator-sound[1455]: volume-control-pulse.vala:735: unable to get pulse unix socket: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.PulseAudio1 was not provided by any .service files
Feb 21 21:58:38 ginnungagap systemd[1312]: tracker-extract.service: Succeeded.
Feb 21 21:58:39 ginnungagap systemd-resolved[983]: Using degraded feature set (UDP) for DNS server 192.168.178.1.
Feb 21 21:58:44 ginnungagap systemd[1]: NetworkManager-dispatcher.service: Succeeded.
Feb 21 21:58:56 ginnungagap systemd-timesyncd[986]: Initial synchronization to time server [2620:2d:4000:1::41]:123 (ntp.ubuntu.com).
Feb 21 21:58:56 ginnungagap systemd-journald[338]: Forwarding to syslog missed 125 messages.
Feb 21 21:58:57 ginnungagap systemd[1]: systemd-fsckd.service: Succeeded.
Feb 21 21:58:58 ginnungagap systemd[1]: systemd-timedated.service: Succeeded.
Feb 21 21:58:58 ginnungagap systemd[1]: systemd-hostnamed.service: Succeeded.
Feb 21 21:58:59 ginnungagap tracker-store[1498]: OK
Feb 21 21:58:59 ginnungagap systemd[1312]: tracker-store.service: Succeeded.
Feb 21 22:00:03 ginnungagap kernel: usb 1-8: new full-speed USB device number 7 using xhci_hcd
Feb 21 22:00:03 ginnungagap kernel: usb 1-8: New USB device found, idVendor=04d9, idProduct=a232, bcdDevice= 2.07
Feb 21 22:00:03 ginnungagap kernel: usb 1-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Feb 21 22:00:03 ginnungagap kernel: usb 1-8: Product: Pure Writer RGB
Feb 21 22:00:03 ginnungagap kernel: usb 1-8: Manufacturer: Sharkoon
Feb 21 22:00:03 ginnungagap kernel: input: Sharkoon Pure Writer RGB as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8/1-8:1.0/0003:04D9:A232.0005/input/input18
Feb 21 22:00:03 ginnungagap kernel: hid-generic 0003:04D9:A232.0005: input,hidraw4: USB HID v1.11 Keyboard [Sharkoon Pure Writer RGB] on usb-0000:03:00.0-8/input0
Feb 21 22:00:03 ginnungagap kernel: hid-generic 0003:04D9:A232.0006: hiddev2,hidraw5: USB HID v1.11 Device [Sharkoon Pure Writer RGB] on usb-0000:03:00.0-8/input1
Feb 21 22:00:03 ginnungagap kernel: input: Sharkoon Pure Writer RGB Mouse as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8/1-8:1.2/0003:04D9:A232.0007/input/input19
Feb 21 22:00:03 ginnungagap kernel: input: Sharkoon Pure Writer RGB System Control as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8/1-8:1.2/0003:04D9:A232.0007/input/input20
Feb 21 22:00:03 ginnungagap kernel: input: Sharkoon Pure Writer RGB Consumer Control as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8/1-8:1.2/0003:04D9:A232.0007/input/input21
Feb 21 22:00:03 ginnungagap kernel: input: Sharkoon Pure Writer RGB as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8/1-8:1.2/0003:04D9:A232.0007/input/input22
Feb 21 22:00:03 ginnungagap kernel: input: Sharkoon Pure Writer RGB Keyboard as /devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8/1-8:1.2/0003:04D9:A232.0007/input/input23
Feb 21 22:00:03 ginnungagap kernel: hid-generic 0003:04D9:A232.0007: input,hiddev3,hidraw6: USB HID v1.11 Mouse [Sharkoon Pure Writer RGB] on usb-0000:03:00.0-8/input2
Feb 21 22:00:03 ginnungagap kernel: hid-generic 0003:04D9:A232.0008: hiddev4,hidraw7: USB HID v1.11 Device [Sharkoon Pure Writer RGB] on usb-0000:03:00.0-8/input3
Feb 21 22:00:03 ginnungagap mtp-probe[1655]: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8"
Feb 21 22:00:03 ginnungagap mtp-probe[1655]: bus: 1, device: 7 was not an MTP device
Feb 21 22:00:03 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event18 (Sharkoon Pure Writer RGB)
Feb 21 22:00:03 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event21 (Sharkoon Pure Writer RGB Consumer Control)
Feb 21 22:00:03 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event20 (Sharkoon Pure Writer RGB System Control)
Feb 21 22:00:03 ginnungagap systemd-logind[1101]: Watching system buttons on /dev/input/event23 (Sharkoon Pure Writer RGB Keyboard)
Feb 21 22:00:03 ginnungagap mtp-probe[1693]: checking bus 1, device 7: "/sys/devices/pci0000:00/0000:00:01.3/0000:03:00.0/usb1/1-8"
Feb 21 22:00:03 ginnungagap mtp-probe[1693]: bus: 1, device: 7 was not an MTP device
Feb 21 22:00:07 ginnungagap lightdm[1516]: gkr-pam: unable to locate daemon control file
Feb 21 22:00:07 ginnungagap lightdm[1516]: gkr-pam: stashed password to try later in open session
Feb 21 22:00:07 ginnungagap systemd[1]: Stopping Session c1 of user lightdm.
Feb 21 22:00:07 ginnungagap lightdm[1516]: pam_unix(lightdm:session): session opened for user marko by (uid=0)
Feb 21 22:00:07 ginnungagap systemd[1]: Created slice User Slice of UID 1000.
Feb 21 22:00:07 ginnungagap systemd[1]: Starting User Runtime Directory /run/user/1000...
Feb 21 22:00:07 ginnungagap systemd-logind[1101]: New session c2 of user marko.
Feb 21 22:00:07 ginnungagap systemd[1]: Finished User Runtime Directory /run/user/1000.
Feb 21 22:00:07 ginnungagap systemd[1]: session-c1.scope: Succeeded.
Feb 21 22:00:07 ginnungagap systemd[1]: Stopped Session c1 of user lightdm.
Feb 21 22:00:07 ginnungagap systemd[1]: Starting User Manager for UID 1000...
Feb 21 22:00:07 ginnungagap systemd-logind[1101]: Removed session c1.
Feb 21 22:00:07 ginnungagap systemd[1704]: pam_unix(systemd-user:session): session opened for user marko by (uid=0)
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Pending report trigger for Ubuntu Report.
Feb 21 22:00:07 ginnungagap systemd[1704]: Reached target Paths.
Feb 21 22:00:07 ginnungagap audit[1718]: SECCOMP auid=1000 uid=1000 gid=1000 ses=2 pid=1718 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f4bdfb code=0x0
Feb 21 22:00:07 ginnungagap kernel: audit: type=1326 audit(1677013207.567:52): auid=1000 uid=1000 gid=1000 ses=2 pid=1718 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f4bdfb code=0x0
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] AppArmor D-Bus mediation is enabled
Feb 21 22:00:07 ginnungagap systemd[1704]: Reached target Timers.
Feb 21 22:00:07 ginnungagap lightdm[1516]: gkr-pam: gnome-keyring-daemon started properly and unlocked keyring
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting D-Bus User Message Bus Socket.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.Daemon' unit='gvfs-daemon.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on GnuPG network certificate management daemon.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.Daemon'
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on GnuPG cryptographic agent and passphrase cache (restricted).
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on GnuPG cryptographic agent (ssh-agent emulation).
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on GnuPG cryptographic agent and passphrase cache.
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on debconf communication socket.
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on Sound System.
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on REST API socket for snapd user session agent.
Feb 21 22:00:07 ginnungagap systemd[1704]: Listening on D-Bus User Message Bus Socket.
Feb 21 22:00:07 ginnungagap systemd[1704]: Reached target Sockets.
Feb 21 22:00:07 ginnungagap systemd[1704]: Reached target Basic System.
Feb 21 22:00:07 ginnungagap systemd[1]: Started User Manager for UID 1000.
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Sound Service...
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Tracker metadata extractor...
Feb 21 22:00:07 ginnungagap systemd[1]: Started Session c2 of user marko.
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Tracker file system data miner...
Feb 21 22:00:07 ginnungagap tracker-miner-f[1720]: Set scheduler policy to SCHED_IDLE
Feb 21 22:00:07 ginnungagap tracker-miner-f[1720]: Setting priority nice level to 19
Feb 21 22:00:07 ginnungagap systemd[1704]: Started D-Bus User Message Bus.
Feb 21 22:00:07 ginnungagap tracker-extract[1719]: Set scheduler policy to SCHED_IDLE
Feb 21 22:00:07 ginnungagap tracker-extract[1719]: Setting priority nice level to 19
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.UDisks2VolumeMonitor' unit='gvfs-udisks2-volume-monitor.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Virtual filesystem service...
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Virtual filesystem service.
Feb 21 22:00:07 ginnungagap tracker-miner-f[1720]: Path '/home/marko/Desktop' being removed from recursive directories list, as it also exists in single directories list
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Virtual filesystem service - disk device monitor...
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.UDisks2VolumeMonitor'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Virtual filesystem service - disk device monitor.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.MTPVolumeMonitor' unit='gvfs-mtp-volume-monitor.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Virtual filesystem service - Media Transfer Protocol monitor...
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.MTPVolumeMonitor'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Virtual filesystem service - Media Transfer Protocol monitor.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.GoaVolumeMonitor' unit='gvfs-goa-volume-monitor.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Virtual filesystem service - GNOME Online Accounts monitor...
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating service name='org.gnome.OnlineAccounts' requested by ':1.8' (uid=1000 pid=1790 comm="/usr/libexec/gvfs-goa-volume-monitor " label="unconfined")
Feb 21 22:00:07 ginnungagap goa-daemon[1794]: goa-daemon version 3.36.1 starting
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating service name='org.gnome.Identity' requested by ':1.9' (uid=1000 pid=1794 comm="/usr/libexec/goa-daemon " label="unconfined")
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gnome.OnlineAccounts'
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gnome.Identity'
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.GoaVolumeMonitor'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Virtual filesystem service - GNOME Online Accounts monitor.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.AfcVolumeMonitor' unit='gvfs-afc-volume-monitor.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Virtual filesystem service - Apple File Conduit monitor...
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.AfcVolumeMonitor'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Virtual filesystem service - Apple File Conduit monitor.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.GPhoto2VolumeMonitor' unit='gvfs-gphoto2-volume-monitor.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Virtual filesystem service - digital camera monitor...
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.GPhoto2VolumeMonitor'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Virtual filesystem service - digital camera monitor.
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Tracker metadata extractor.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.a11y.Bus' unit='at-spi-dbus-bus.service' requested by ':1.18' (uid=1000 pid=1743 comm="cinnamon-session --session cinnamon " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Accessibility services bus...
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.a11y.Bus'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Accessibility services bus.
Feb 21 22:00:07 ginnungagap at-spi-bus-launcher[1882]: dbus-daemon[1882]: Activating service name='org.a11y.atspi.Registry' requested by ':1.0' (uid=1000 pid=1743 comm="cinnamon-session --session cinnamon " label="unconfined")
Feb 21 22:00:07 ginnungagap at-spi-bus-launcher[1882]: dbus-daemon[1882]: Successfully activated service 'org.a11y.atspi.Registry'
Feb 21 22:00:07 ginnungagap at-spi-bus-launcher[1885]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.freedesktop.Tracker1' unit='tracker-store.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:00:07 ginnungagap systemd[1704]: Starting Tracker metadata database store and lookup manager...
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Tracker file system data miner.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.freedesktop.Tracker1'
Feb 21 22:00:07 ginnungagap systemd[1704]: Started Tracker metadata database store and lookup manager.
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating service name='ca.desrt.dconf' requested by ':1.37' (uid=1000 pid=1936 comm="/usr/lib/x86_64-linux-gnu/cinnamon-settings-daemon" label="unconfined")
Feb 21 22:00:07 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'ca.desrt.dconf'
Feb 21 22:00:08 ginnungagap systemd[1704]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 22:00:08 ginnungagap systemd[1704]: pulseaudio.service: Failed with result 'signal'.
Feb 21 22:00:08 ginnungagap systemd[1704]: Failed to start Sound Service.
Feb 21 22:00:08 ginnungagap systemd[1704]: Reached target Main User Target.
Feb 21 22:00:08 ginnungagap systemd[1704]: Startup finished in 1.304s.
Feb 21 22:00:08 ginnungagap systemd[1704]: pulseaudio.service: Scheduled restart job, restart counter is at 1.
Feb 21 22:00:08 ginnungagap systemd[1704]: Stopped Sound Service.
Feb 21 22:00:08 ginnungagap systemd[1704]: Starting Sound Service...
Feb 21 22:00:08 ginnungagap audit[2018]: SECCOMP auid=1000 uid=1000 gid=1000 ses=2 pid=2018 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f22dfb code=0x0
Feb 21 22:00:08 ginnungagap kernel: audit: type=1326 audit(1677013208.947:53): auid=1000 uid=1000 gid=1000 ses=2 pid=2018 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f22dfb code=0x0
Feb 21 22:00:10 ginnungagap systemd[1704]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 22:00:10 ginnungagap systemd[1704]: pulseaudio.service: Failed with result 'signal'.
Feb 21 22:00:10 ginnungagap systemd[1704]: Failed to start Sound Service.
Feb 21 22:00:10 ginnungagap systemd[1704]: pulseaudio.service: Scheduled restart job, restart counter is at 2.
Feb 21 22:00:10 ginnungagap systemd[1704]: Stopped Sound Service.
Feb 21 22:00:10 ginnungagap systemd[1704]: Starting Sound Service...
Feb 21 22:00:10 ginnungagap audit[2023]: SECCOMP auid=1000 uid=1000 gid=1000 ses=2 pid=2023 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7fcedfb code=0x0
Feb 21 22:00:10 ginnungagap kernel: audit: type=1326 audit(1677013210.439:54): auid=1000 uid=1000 gid=1000 ses=2 pid=2023 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7fcedfb code=0x0
Feb 21 22:00:11 ginnungagap systemd[1704]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 22:00:11 ginnungagap systemd[1704]: pulseaudio.service: Failed with result 'signal'.
Feb 21 22:00:11 ginnungagap systemd[1704]: Failed to start Sound Service.
Feb 21 22:00:11 ginnungagap systemd[1704]: pulseaudio.service: Scheduled restart job, restart counter is at 3.
Feb 21 22:00:11 ginnungagap systemd[1704]: Stopped Sound Service.
Feb 21 22:00:11 ginnungagap systemd[1704]: Starting Sound Service...
Feb 21 22:00:11 ginnungagap audit[2028]: SECCOMP auid=1000 uid=1000 gid=1000 ses=2 pid=2028 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7efadfb code=0x0
Feb 21 22:00:11 ginnungagap kernel: audit: type=1326 audit(1677013211.947:55): auid=1000 uid=1000 gid=1000 ses=2 pid=2028 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7efadfb code=0x0
Feb 21 22:00:13 ginnungagap systemd[1704]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 22:00:13 ginnungagap systemd[1704]: pulseaudio.service: Failed with result 'signal'.
Feb 21 22:00:13 ginnungagap systemd[1704]: Failed to start Sound Service.
Feb 21 22:00:13 ginnungagap systemd[1704]: pulseaudio.service: Scheduled restart job, restart counter is at 4.
Feb 21 22:00:13 ginnungagap systemd[1704]: Stopped Sound Service.
Feb 21 22:00:13 ginnungagap systemd[1704]: Starting Sound Service...
Feb 21 22:00:13 ginnungagap audit[2033]: SECCOMP auid=1000 uid=1000 gid=1000 ses=2 pid=2033 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f7edfb code=0x0
Feb 21 22:00:13 ginnungagap kernel: audit: type=1326 audit(1677013213.443:56): auid=1000 uid=1000 gid=1000 ses=2 pid=2033 comm="pulseaudio" exe="/usr/bin/pulseaudio" sig=31 arch=40000003 syscall=45 compat=1 ip=0xf7f7edfb code=0x0
Feb 21 22:00:14 ginnungagap systemd[1704]: pulseaudio.service: Main process exited, code=killed, status=31/SYS
Feb 21 22:00:14 ginnungagap systemd[1704]: pulseaudio.service: Failed with result 'signal'.
Feb 21 22:00:14 ginnungagap systemd[1704]: Failed to start Sound Service.
Feb 21 22:00:14 ginnungagap systemd[1704]: pulseaudio.service: Scheduled restart job, restart counter is at 5.
Feb 21 22:00:14 ginnungagap systemd[1704]: Stopped Sound Service.
Feb 21 22:00:14 ginnungagap systemd[1704]: pulseaudio.service: Start request repeated too quickly.
Feb 21 22:00:14 ginnungagap systemd[1704]: pulseaudio.service: Failed with result 'signal'.
Feb 21 22:00:14 ginnungagap systemd[1704]: Failed to start Sound Service.
Feb 21 22:00:14 ginnungagap systemd[1704]: pulseaudio.socket: Failed with result 'service-start-limit-hit'.
Feb 21 22:00:15 ginnungagap cinnamon-session[1743]: WARNING: t+7,45549s: Failed to start app: Unable to start application: Kindprozess »/usr/lib/mate-optimus/mate-optimus-applet« konnte nicht ausgeführt werden (No such file or directory)
Feb 21 22:00:15 ginnungagap cinnamon-session[1743]: WARNING: t+7,45917s: Failed to start app: Unable to start application: Kindprozess »blueman-applet« konnte nicht ausgeführt werden (No such file or directory)
Feb 21 22:00:15 ginnungagap polkitd(authority=local)[1084]: Registered Authentication Agent for unix-session:c2 (system bus name :1.80 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gnome.Terminal' unit='gnome-terminal-server.service' requested by ':1.60' (uid=1000 pid=2133 comm="/usr/bin/gnome-terminal.real --geometry=100x30 --t" label="unconfined")
Feb 21 22:00:15 ginnungagap systemd[1704]: Created slice apps.slice.
Feb 21 22:00:15 ginnungagap systemd[1704]: Created slice apps-org.gnome.Terminal.slice.
Feb 21 22:00:15 ginnungagap /cinnamon-killer-daemon[2110]: Bound Cinnamon restart to <Control><Alt>Escape.
Feb 21 22:00:15 ginnungagap systemd[1704]: Starting GNOME Terminal Server...
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gnome.evolution.dataserver.Sources5' unit='evolution-source-registry.service' requested by ':1.61' (uid=1000 pid=2109 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Feb 21 22:00:15 ginnungagap systemd[1704]: Starting Evolution source registry...
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gnome.evolution.dataserver.Sources5'
Feb 21 22:00:15 ginnungagap systemd[1704]: Started Evolution source registry.
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gnome.Terminal'
Feb 21 22:00:15 ginnungagap systemd[1704]: Started GNOME Terminal Server.
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gnome.evolution.dataserver.Calendar8' unit='evolution-calendar-factory.service' requested by ':1.61' (uid=1000 pid=2109 comm="/usr/libexec/evolution-data-server/evolution-alarm" label="unconfined")
Feb 21 22:00:15 ginnungagap systemd[1704]: Starting Evolution calendar service...
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gnome.evolution.dataserver.Calendar8'
Feb 21 22:00:15 ginnungagap systemd[1704]: Started Evolution calendar service.
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gnome.evolution.dataserver.AddressBook10' unit='evolution-addressbook-factory.service' requested by ':1.70' (uid=1000 pid=2179 comm="/usr/libexec/evolution-calendar-factory " label="unconfined")
Feb 21 22:00:15 ginnungagap systemd[1704]: Starting Evolution address book service...
Feb 21 22:00:15 ginnungagap gnome-terminal-[2153]: Theme directory  of theme CfG-Crystal-SVG-1.2.0 has no size field
Feb 21 22:00:15 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gnome.evolution.dataserver.AddressBook10'
Feb 21 22:00:15 ginnungagap systemd[1704]: Started Evolution address book service.
Feb 21 22:00:15 ginnungagap systemd[1704]: Started VTE child process 2213 launched by gnome-terminal-server process 2153.
Feb 21 22:00:15 ginnungagap systemd[1704]: Started VTE child process 2221 launched by gnome-terminal-server process 2153.
Feb 21 22:00:15 ginnungagap systemd[1704]: Started VTE child process 2226 launched by gnome-terminal-server process 2153.
Feb 21 22:00:15 ginnungagap systemd[1704]: Started VTE child process 2236 launched by gnome-terminal-server process 2153.
Feb 21 22:00:15 ginnungagap systemd[1704]: Started VTE child process 2244 launched by gnome-terminal-server process 2153.
Feb 21 22:00:15 ginnungagap systemd[1704]: Started VTE child process 2252 launched by gnome-terminal-server process 2153.
Feb 21 22:00:16 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.gtk.vfs.Metadata' unit='gvfs-metadata.service' requested by ':1.56' (uid=1000 pid=2108 comm="nemo-desktop " label="unconfined")
Feb 21 22:00:16 ginnungagap systemd[1704]: Starting Virtual filesystem metadata service...
Feb 21 22:00:16 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.gtk.vfs.Metadata'
Feb 21 22:00:16 ginnungagap systemd[1704]: Started Virtual filesystem metadata service.
Feb 21 22:00:16 ginnungagap tracker-extract[1719]: Unknown desktop entry type 'Service'
Feb 21 22:00:17 ginnungagap systemd[1]: Stopping User Manager for UID 122...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped target Main User Target.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Accessibility services bus...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping D-Bus User Message Bus...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Virtual filesystem service - Apple File Conduit monitor...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Virtual filesystem service...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Virtual filesystem service - GNOME Online Accounts monitor...
Feb 21 22:00:17 ginnungagap tracker-miner-fs[1323]: Received signal:15->'Terminated'
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Virtual filesystem service - digital camera monitor...
Feb 21 22:00:17 ginnungagap tracker-miner-fs[1323]: OK
Feb 21 22:00:17 ginnungagap at-spi-bus-launcher[1380]: Failed to launch bus: Bus exited with code 0
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Virtual filesystem service - Media Transfer Protocol monitor...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Virtual filesystem service - disk device monitor...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Indicator Application Service...
Feb 21 22:00:17 ginnungagap tracker-miner-f[1323]: Error while sending AddMatch() message: The connection is closed
Feb 21 22:00:17 ginnungagap tracker-miner-f[1323]: Error while sending AddMatch() message: The connection is closed
Feb 21 22:00:17 ginnungagap tracker-miner-f[1323]: Error while sending AddMatch() message: The connection is closed
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Indicator Date & Time Backend...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Indicator Keyboard Backend...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Indicator Power...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Indicator Session Service...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Indicator Sound Service...
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopping Tracker file system data miner...
Feb 21 22:00:17 ginnungagap systemd[1312]: indicator-application.service: Succeeded.
Feb 21 22:00:17 ginnungagap unknown[1455]: g_object_ref: assertion 'old_val > 0' failed
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Indicator Application Service.
Feb 21 22:00:17 ginnungagap systemd[1312]: indicator-power.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Indicator Power.
Feb 21 22:00:17 ginnungagap systemd[1312]: gvfs-gphoto2-volume-monitor.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Virtual filesystem service - digital camera monitor.
Feb 21 22:00:17 ginnungagap systemd[1312]: indicator-sound.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Indicator Sound Service.
Feb 21 22:00:17 ginnungagap systemd[1]: run-user-122-gvfs.mount: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1704]: run-user-122-gvfs.mount: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: run-user-122-gvfs.mount: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: indicator-session.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Indicator Session Service.
Feb 21 22:00:17 ginnungagap systemd[1312]: gvfs-mtp-volume-monitor.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Virtual filesystem service - Media Transfer Protocol monitor.
Feb 21 22:00:17 ginnungagap systemd[1312]: gvfs-goa-volume-monitor.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Virtual filesystem service - GNOME Online Accounts monitor.
Feb 21 22:00:17 ginnungagap systemd[1312]: at-spi-dbus-bus.service: Main process exited, code=exited, status=1/FAILURE
Feb 21 22:00:17 ginnungagap systemd[1312]: at-spi-dbus-bus.service: Failed with result 'exit-code'.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Accessibility services bus.
Feb 21 22:00:17 ginnungagap systemd[1312]: gvfs-daemon.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Virtual filesystem service.
Feb 21 22:00:17 ginnungagap systemd[1312]: dbus.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped D-Bus User Message Bus.
Feb 21 22:00:17 ginnungagap systemd[1312]: gvfs-udisks2-volume-monitor.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Virtual filesystem service - disk device monitor.
Feb 21 22:00:17 ginnungagap systemd[1312]: tracker-miner-fs.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Tracker file system data miner.
Feb 21 22:00:17 ginnungagap systemd[1312]: gvfs-afc-volume-monitor.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Virtual filesystem service - Apple File Conduit monitor.
Feb 21 22:00:17 ginnungagap systemd[1312]: indicator-datetime.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Indicator Date & Time Backend.
Feb 21 22:00:17 ginnungagap systemd[1312]: indicator-keyboard.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Indicator Keyboard Backend.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped target Basic System.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped target Paths.
Feb 21 22:00:17 ginnungagap systemd[1312]: ubuntu-report.path: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped Pending report trigger for Ubuntu Report.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped target Sockets.
Feb 21 22:00:17 ginnungagap systemd[1312]: Stopped target Timers.
Feb 21 22:00:17 ginnungagap systemd[1312]: dbus.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed D-Bus User Message Bus Socket.
Feb 21 22:00:17 ginnungagap systemd[1312]: dirmngr.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed GnuPG network certificate management daemon.
Feb 21 22:00:17 ginnungagap systemd[1312]: gpg-agent-browser.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed GnuPG cryptographic agent and passphrase cache (access for web browsers).
Feb 21 22:00:17 ginnungagap systemd[1312]: gpg-agent-extra.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed GnuPG cryptographic agent and passphrase cache (restricted).
Feb 21 22:00:17 ginnungagap systemd[1312]: gpg-agent-ssh.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed GnuPG cryptographic agent (ssh-agent emulation).
Feb 21 22:00:17 ginnungagap systemd[1312]: gpg-agent.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed GnuPG cryptographic agent and passphrase cache.
Feb 21 22:00:17 ginnungagap systemd[1312]: pk-debconf-helper.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed debconf communication socket.
Feb 21 22:00:17 ginnungagap systemd[1312]: snapd.session-agent.socket: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Closed REST API socket for snapd user session agent.
Feb 21 22:00:17 ginnungagap systemd[1312]: Reached target Shutdown.
Feb 21 22:00:17 ginnungagap systemd[1312]: systemd-exit.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1312]: Finished Exit the Session.
Feb 21 22:00:17 ginnungagap systemd[1312]: Reached target Exit the Session.
Feb 21 22:00:17 ginnungagap systemd[1]: user@122.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1]: Stopped User Manager for UID 122.
Feb 21 22:00:17 ginnungagap systemd[1]: Stopping User Runtime Directory /run/user/122...
Feb 21 22:00:17 ginnungagap systemd[1704]: run-user-122.mount: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1]: run-user-122.mount: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1]: user-runtime-dir@122.service: Succeeded.
Feb 21 22:00:17 ginnungagap systemd[1]: Stopped User Runtime Directory /run/user/122.
Feb 21 22:00:17 ginnungagap systemd[1]: Removed slice User Slice of UID 122.
Feb 21 22:00:21 ginnungagap cinnamon-session[1743]: WARNING: t+13,32477s: Detected that screensaver has appeared on the bus
Feb 21 22:00:27 ginnungagap systemd[1704]: tracker-extract.service: Succeeded.
Feb 21 22:00:48 ginnungagap tracker-store[1889]: OK
Feb 21 22:00:48 ginnungagap systemd[1704]: tracker-store.service: Succeeded.
Feb 21 22:01:16 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.fwupd' unit='fwupd.service' requested by ':1.91' (uid=1000 pid=2547 comm="/usr/bin/gnome-software --gapplication-service " label="unconfined")
Feb 21 22:01:16 ginnungagap dbus-daemon[1066]: [system] Activating via systemd: service name='org.freedesktop.PackageKit' unit='packagekit.service' requested by ':1.91' (uid=1000 pid=2547 comm="/usr/bin/gnome-software --gapplication-service " label="unconfined")
Feb 21 22:01:16 ginnungagap systemd[1]: Starting Firmware update daemon...
Feb 21 22:01:16 ginnungagap systemd[1]: Starting PackageKit Daemon...
Feb 21 22:01:16 ginnungagap PackageKit[2578]: daemon start
Feb 21 22:01:16 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.PackageKit'
Feb 21 22:01:16 ginnungagap systemd[1]: Started PackageKit Daemon.
Feb 21 22:01:16 ginnungagap dbus-daemon[1066]: [system] Successfully activated service 'org.freedesktop.fwupd'
Feb 21 22:01:16 ginnungagap systemd[1]: Started Firmware update daemon.
Feb 21 22:01:16 ginnungagap PackageKit[2578]: uid 1000 is trying to obtain org.freedesktop.packagekit.system-sources-refresh auth (only_trusted:0)
Feb 21 22:01:16 ginnungagap PackageKit[2578]: uid 1000 obtained auth for org.freedesktop.packagekit.system-sources-refresh
Feb 21 22:01:17 ginnungagap systemd[1]: Starting Update APT News...
Feb 21 22:01:17 ginnungagap systemd[1]: Starting Update the local ESM caches...
Feb 21 22:01:17 ginnungagap systemd[1]: apt-news.service: Succeeded.
Feb 21 22:01:17 ginnungagap systemd[1]: Finished Update APT News.
Feb 21 22:01:18 ginnungagap systemd[1]: esm-cache.service: Succeeded.
Feb 21 22:01:18 ginnungagap systemd[1]: Finished Update the local ESM caches.
Feb 21 22:01:18 ginnungagap pkexec[2968]: pam_unix(polkit-1:session): session opened for user root by (uid=1000)
Feb 21 22:01:18 ginnungagap pkexec[2968]: marko: Executing command [USER=root] [TTY=unknown] [CWD=/home/marko] [COMMAND=/usr/lib/update-notifier/package-system-locked]
Feb 21 22:01:20 ginnungagap PackageKit[2578]: refresh-cache transaction /24167_cbbccbca from uid 1000 finished with success after 3913ms
Feb 21 22:01:22 ginnungagap PackageKit[2578]: resolve transaction /24168_bcdabcde from uid 1000 finished with success after 1391ms
Feb 21 22:01:22 ginnungagap PackageKit[2578]: resolve transaction /24169_bbcadcda from uid 1000 finished with success after 310ms
Feb 21 22:01:23 ginnungagap PackageKit[2578]: search-file transaction /24170_dcadbbbc from uid 1000 finished with success after 886ms
Feb 21 22:01:24 ginnungagap PackageKit[2578]: search-file transaction /24171_bdabcbbc from uid 1000 finished with success after 398ms
Feb 21 22:01:24 ginnungagap PackageKit[2578]: get-details transaction /24172_aabacdca from uid 1000 finished with success after 313ms
Feb 21 22:01:29 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Activating via systemd: service name='org.freedesktop.Tracker1' unit='tracker-store.service' requested by ':1.1' (uid=1000 pid=1720 comm="/usr/libexec/tracker-miner-fs " label="unconfined")
Feb 21 22:01:29 ginnungagap systemd[1704]: Starting Tracker metadata database store and lookup manager...
Feb 21 22:01:29 ginnungagap dbus-daemon[1722]: [session uid=1000 pid=1722] Successfully activated service 'org.freedesktop.Tracker1'
Feb 21 22:01:29 ginnungagap systemd[1704]: Started Tracker metadata database store and lookup manager.