ubuntuusers.de

Failed to start Raise network interfaces

Status: Ungelöst | Ubuntu-Version: Server 16.04 (Xenial Xerus)
Antworten |

jochenv

Anmeldungsdatum:
23. April 2016

Beiträge: 670

Wohnort: Kurhessen

Hallo zusammen,

ich habe seit kurzen einen Server Hp Gen8 (USB-Stick-Intern, SSD-Platte an SATA, die 4 Bay noch leer)

Seit vorgestern geht kein Netzwerk mehr. Auch kann ich kein USB-Stick einstecken um z.B. Ausgaben auf einen anderen Rechner mitzunehmen, das ist aber anderes Thema.

Was ich noch nicht wirklich begriffen habe ist warum eth0 auf dem Server eno1 ist. Habe aber im Netz gefunden, dass es so ist.

Nun die Abfragen die ich erstellt habe :

ifcopnig -a

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
eno1      Link encap:Ethernet  Hardware Adresse 70:10:6f:3e:41:80  
          BROADCAST MULTICAST  MTU:1500  Metrik:1
          RX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:0 (0.0 B)  TX-Bytes:0 (0.0 B)
          Interrupt:16 

eno2      Link encap:Ethernet  Hardware Adresse 70:10:6f:3e:41:81  
          BROADCAST MULTICAST  MTU:1500  Metrik:1
          RX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:0 (0.0 B)  TX-Bytes:0 (0.0 B)
          Interrupt:17 

lo        Link encap:Lokale Schleife  
          inet Adresse:127.0.0.1  Maske:255.0.0.0
          inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
          UP LOOPBACK RUNNING  MTU:65536  Metrik:1
          RX-Pakete:29128 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:29128 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1 
          RX-Bytes:2157912 (2.1 MB)  TX-Bytes:2157912 (2.1 MB)

jounalctl -xe

   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
-- Logs begin at Mo 2017-08-28 11:18:20 CEST, end at Mo 2017-08-28 12:58:24 CEST. --
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys net_cls
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys perf_event
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys net_prio
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys hugetlb
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys pids
Aug 28 11:18:20 Server06 kernel: CPU: Physical Processor ID: 0
Aug 28 11:18:20 Server06 kernel: CPU: Processor Core ID: 0
Aug 28 11:18:20 Server06 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Aug 28 11:18:20 Server06 kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Aug 28 11:18:20 Server06 kernel: mce: CPU supports 7 MCE banks
Aug 28 11:18:20 Server06 kernel: CPU0: Thermal monitoring enabled (TM1)
Aug 28 11:18:20 Server06 kernel: process: using mwait in idle threads
Aug 28 11:18:20 Server06 kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Aug 28 11:18:20 Server06 kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Aug 28 11:18:20 Server06 kernel: Freeing SMP alternatives memory: 32K (ffffffff820b9000 - ffffffff820c1000)
Aug 28 11:18:20 Server06 kernel: ftrace: allocating 32131 entries in 126 pages
Aug 28 11:18:20 Server06 kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Aug 28 11:18:20 Server06 kernel: smpboot: Max logical packages: 32
Aug 28 11:18:20 Server06 kernel: Switched APIC routing to physical flat.
Aug 28 11:18:20 Server06 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 28 11:18:20 Server06 kernel: TSC deadline timer enabled
Aug 28 11:18:20 Server06 kernel: smpboot: CPU0: Intel(R) Celeron(R) CPU G1610T @ 2.30GHz (family: 0x6, model: 0x3a, stepping: 0x9)
Aug 28 11:18:20 Server06 kernel: Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Broken BIOS detected, complain to your hardware vendor.
Aug 28 11:18:20 Server06 kernel: [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 330)
Aug 28 11:18:20 Server06 kernel: Intel PMU driver.
Aug 28 11:18:20 Server06 kernel: ... version:                3
Aug 28 11:18:20 Server06 kernel: ... bit width:              48
Aug 28 11:18:20 Server06 kernel: ... generic registers:      8
Aug 28 11:18:20 Server06 kernel: ... value mask:             0000ffffffffffff
Aug 28 11:18:20 Server06 kernel: ... max period:             00007fffffffffff
Aug 28 11:18:20 Server06 kernel: ... fixed-purpose events:   3
Aug 28 11:18:20 Server06 kernel: ... event mask:             00000007000000ff
Aug 28 11:18:20 Server06 kernel: x86: Booting SMP configuration:
Aug 28 11:18:20 Server06 kernel: .... node  #0, CPUs:        #1
Aug 28 11:18:20 Server06 kernel: x86: Booted up 1 node, 2 CPUs
Aug 28 11:18:20 Server06 kernel: smpboot: Total of 2 processors activated (9179.34 BogoMIPS)
Aug 28 11:18:20 Server06 kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 28 11:18:20 Server06 kernel: devtmpfs: initialized
Aug 28 11:18:20 Server06 kernel: evm: security.selinux
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64EXEC
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64TRANSMUTE
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64MMAP
Aug 28 11:18:20 Server06 kernel: evm: security.ima
Aug 28 11:18:20 Server06 kernel: evm: security.capability
Aug 28 11:18:20 Server06 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug 28 11:18:20 Server06 kernel: futex hash table entries: 16384 (order: 8, 1048576 bytes)
Aug 28 11:18:20 Server06 kernel: pinctrl core: initialized pinctrl subsystem
Aug 28 11:18:20 Server06 kernel: RTC time:  9:18:09, date: 08/28/17
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 16
Aug 28 11:18:20 Server06 kernel: cpuidle: using governor ladder
Aug 28 11:18:20 Server06 kernel: cpuidle: using governor menu
Aug 28 11:18:20 Server06 kernel: PCCT header not found.
Aug 28 11:18:20 Server06 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 28 11:18:20 Server06 kernel: ACPI: bus type PCI registered
Aug 28 11:18:20 Server06 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 28 11:18:20 Server06 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf4000000-0xf7ffffff] (base 0xf4000000)
Aug 28 11:18:20 Server06 kernel: PCI: MMCONFIG at [mem 0xf4000000-0xf7ffffff] reserved in E820
Aug 28 11:18:20 Server06 kernel: PCI: Using configuration type 1 for base access
Aug 28 11:18:20 Server06 kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 28 11:18:20 Server06 kernel: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(Module Device)
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(Processor Device)
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Aug 28 11:18:20 Server06 kernel: ACPI: Interpreter enabled
Aug 28 11:18:20 Server06 kernel: ACPI: (supports S0 S4 S5)
Aug 28 11:18:20 Server06 kernel: ACPI: Using IOAPIC for interrupt routing
Aug 28 11:18:20 Server06 kernel: HEST: Table parsing has been initialized.
Aug 28 11:18:20 Server06 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-14])
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME AER PCIeCapability]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: platform willing to grant []
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: host bridge window expanded to [mem 0xfed00000-0xfed44fff window]; [mem 0xfed00000-0xfed44fff window] ignored
Aug 28 11:18:20 Server06 kernel: PCI host bridge to bus 0000:00
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [mem 0xf8000000-0xfbffffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x1000-0xffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0x0fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfed44fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03bb window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x03c0-0x03df window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [bus 00-14]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: [8086:015d] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xfacf0000-0xfacf03ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xface0000-0xface03ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.0: [8086:1c54] type 00 class 0x060100
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x10: [io  0x1000-0x1007]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x14: [io  0x1008-0x100b]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x18: [io  0x1010-0x1017]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x1018-0x101b]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x20: [io  0x1020-0x103f]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfacd0000-0xfacd07ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: PME# supported from D3hot
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: PCI bridge to [bus 07]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: PCI bridge to [bus 02]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: PCI bridge to [bus 0d]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: [14e4:165f] type 00 class 0x020000
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x10: [mem 0xfabf0000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x18: [mem 0xfabe0000-0xfabeffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x20: [mem 0xfabd0000-0xfabdffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: [14e4:165f] type 00 class 0x020000
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x10: [mem 0xfabc0000-0xfabcffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x18: [mem 0xfabb0000-0xfabbffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x20: [mem 0xfaba0000-0xfabaffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x30: [mem 0x00000000-0x0001ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfab00000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:04:00.0: [1912:0014] type 00 class 0x0c0330
Aug 28 11:18:20 Server06 kernel: pci 0000:04:00.0: reg 0x10: [mem 0xfbff0000-0xfbff1fff 64bit]
Aug 28 11:18:20 Server06 kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6:   bridge window [mem 0xfbf00000-0xfbffffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: [103c:3306] type 00 class 0x088000
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: reg 0x10: [io  0x3000-0x30ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: reg 0x14: [mem 0xfbef0000-0xfbef01ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: reg 0x18: [io  0x3400-0x34ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: [102b:0533] type 00 class 0x030000
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: reg 0x10: [mem 0xf9000000-0xf9ffffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: reg 0x14: [mem 0xfbee0000-0xfbee3fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: reg 0x18: [mem 0xfb000000-0xfb7fffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: [103c:3307] type 00 class 0x088000
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x10: [io  0x3800-0x38ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x14: [mem 0xfaff0000-0xfaff00ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x18: [mem 0xfae00000-0xfaefffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x1c: [mem 0xfad80000-0xfadfffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x20: [mem 0xfad70000-0xfad77fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x24: [mem 0xfad60000-0xfad67fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.4: [103c:3300] type 00 class 0x0c0300
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.4: reg 0x20: [io  0x4000-0x401f]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: PCI bridge to [bus 01]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [io  0x3000-0x4fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xfad00000-0xfbefffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xf9000000-0xf9ffffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0: PCI bridge to [bus 14] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [mem 0xf8000000-0xfbffffff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x1000-0xffff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0x0fff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [mem 0xfed00000-0xfed44fff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03bb window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x03c0-0x03df window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: on NUMA node 0
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 10 *11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *7 10 11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 10 *11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 *10 11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs *5 7 10 11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 10 11) *4
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 10 11) *0, disabled.
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 5 7 10 11) *0, disabled.
Aug 28 11:18:20 Server06 kernel: vgaarb: setting as boot device: PCI:0000:01:00.1
Aug 28 11:18:20 Server06 kernel: vgaarb: device added: PCI:0000:01:00.1,decodes=io+mem,owns=io+mem,locks=none
Aug 28 11:18:20 Server06 kernel: vgaarb: loaded
Aug 28 11:18:20 Server06 kernel: vgaarb: bridge control possible 0000:01:00.1
Aug 28 11:18:20 Server06 kernel: SCSI subsystem initialized
Aug 28 11:18:20 Server06 kernel: libata version 3.00 loaded.
Aug 28 11:18:20 Server06 kernel: ACPI: bus type USB registered
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver usbfs
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver hub
Aug 28 11:18:20 Server06 kernel: usbcore: registered new device driver usb
Aug 28 11:18:20 Server06 kernel: PCI: Using ACPI for IRQ routing
Aug 28 11:18:20 Server06 kernel: PCI: pci_cache_line_size set to 64 bytes
Aug 28 11:18:20 Server06 kernel: e820: reserve RAM buffer [mem 0x00099800-0x0009ffff]
Aug 28 11:18:20 Server06 kernel: e820: reserve RAM buffer [mem 0xf1de4000-0xf3ffffff]
Aug 28 11:18:20 Server06 kernel: e820: reserve RAM buffer [mem 0x20bfff000-0x20bffffff]
Aug 28 11:18:20 Server06 kernel: NetLabel: Initializing
Aug 28 11:18:20 Server06 kernel: NetLabel:  domain hash size = 128
Aug 28 11:18:20 Server06 kernel: NetLabel:  protocols = UNLABELED CIPSOv4
Aug 28 11:18:20 Server06 kernel: NetLabel:  unlabeled traffic allowed by default
Aug 28 11:18:20 Server06 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Aug 28 11:18:20 Server06 kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Aug 28 11:18:20 Server06 kernel: amd_nb: Cannot enumerate AMD northbridges
Aug 28 11:18:20 Server06 kernel: clocksource: Switched to clocksource hpet
Aug 28 11:18:20 Server06 kernel: AppArmor: AppArmor Filesystem Enabled
Aug 28 11:18:20 Server06 kernel: pnp: PnP ACPI init
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0408-0x040f] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x04d0-0x04d1] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0310-0x0313] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0316-0x0317] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0700-0x071f] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0880-0x08ff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0900-0x097f] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0cd4-0x0cd7] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0cd0-0x0cd3] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0f50-0x0f58] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0ca0-0x0ca1] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0ca4-0x0ca5] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x02f8-0x02ff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [mem 0xf4000000-0xf7ffffff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [mem 0xfe000000-0xfebfffff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 28 11:18:20 Server06 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 28 11:18:20 Server06 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
Aug 28 11:18:20 Server06 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 PNP0f0e (active)
Aug 28 11:18:20 Server06 kernel: pnp: PnP ACPI: found 4 devices
Aug 28 11:18:20 Server06 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: BAR 14: assigned [mem 0xf8000000-0xf80fffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: PCI bridge to [bus 07]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: PCI bridge to [bus 02]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: PCI bridge to [bus 0d]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: BAR 6: assigned [mem 0xf8000000-0xf801ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: BAR 6: assigned [mem 0xf8020000-0xf803ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4:   bridge window [mem 0xf8000000-0xf80fffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfab00000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6:   bridge window [mem 0xfbf00000-0xfbffffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: BAR 6: assigned [mem 0xfad00000-0xfad0ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: PCI bridge to [bus 01]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [io  0x3000-0x4fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xfad00000-0xfbefffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xf9000000-0xf9ffffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0: PCI bridge to [bus 14]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 4 [mem 0xf8000000-0xfbffffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 5 [io  0x1000-0xffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 6 [io  0x0000-0x03af window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 7 [io  0x03e0-0x0cf7 window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 8 [io  0x0d00-0x0fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 9 [mem 0xfed00000-0xfed44fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 10 [io  0x03b0-0x03bb window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 11 [io  0x03c0-0x03df window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:03: resource 1 [mem 0xf8000000-0xf80fffff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:03: resource 2 [mem 0xfab00000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:04: resource 1 [mem 0xfbf00000-0xfbffffff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x4fff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:01: resource 1 [mem 0xfad00000-0xfbefffff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:01: resource 2 [mem 0xf9000000-0xf9ffffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 4 [mem 0xf8000000-0xfbffffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 5 [io  0x1000-0xffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 6 [io  0x0000-0x03af window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 7 [io  0x03e0-0x0cf7 window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 8 [io  0x0d00-0x0fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 9 [mem 0xfed00000-0xfed44fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 10 [io  0x03b0-0x03bb window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 11 [io  0x03c0-0x03df window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 12 [mem 0x000a0000-0x000bffff window]
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 2
Aug 28 11:18:20 Server06 kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Aug 28 11:18:20 Server06 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 28 11:18:20 Server06 kernel: TCP: Hash tables configured (established 65536 bind 65536)
Aug 28 11:18:20 Server06 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
Aug 28 11:18:20 Server06 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 1
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: Video device with shadowed ROM
Aug 28 11:18:20 Server06 kernel: PCI: CLS 64 bytes, default 64
Aug 28 11:18:20 Server06 kernel: Unpacking initramfs...
Aug 28 11:18:20 Server06 kernel: Freeing initrd memory: 36968K (ffff8800337bc000 - ffff880035bd6000)
Aug 28 11:18:20 Server06 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 28 11:18:20 Server06 kernel: software IO TLB [mem 0xedde4000-0xf1de4000] (64MB) mapped at [ffff8800edde4000-ffff8800f1de3fff]
Aug 28 11:18:20 Server06 kernel: RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
Aug 28 11:18:20 Server06 kernel: hw unit of domain pp0-core 2^-16 Joules
Aug 28 11:18:20 Server06 kernel: hw unit of domain package 2^-16 Joules
Aug 28 11:18:20 Server06 kernel: hw unit of domain pp1-gpu 2^-16 Joules
Aug 28 11:18:20 Server06 kernel: Scanning for low memory corruption every 60 seconds
Aug 28 11:18:20 Server06 kernel: audit: initializing netlink subsys (disabled)
Aug 28 11:18:20 Server06 kernel: audit: type=2000 audit(1503911889.936:1): initialized
Aug 28 11:18:20 Server06 kernel: Initialise system trusted keyring
Aug 28 11:18:20 Server06 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 28 11:18:20 Server06 kernel: zbud: loaded
Aug 28 11:18:20 Server06 kernel: VFS: Disk quotas dquot_6.6.0
Aug 28 11:18:20 Server06 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 28 11:18:20 Server06 kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Aug 28 11:18:20 Server06 kernel: fuse init (API version 7.23)
Aug 28 11:18:20 Server06 kernel: Key type big_key registered
Aug 28 11:18:20 Server06 kernel: Allocating IMA MOK and blacklist keyrings.
Aug 28 11:18:20 Server06 kernel: Key type asymmetric registered
Aug 28 11:18:20 Server06 kernel: Asymmetric key parser 'x509' registered
Aug 28 11:18:20 Server06 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Aug 28 11:18:20 Server06 kernel: io scheduler noop registered
Aug 28 11:18:20 Server06 kernel: io scheduler deadline registered (default)
Aug 28 11:18:20 Server06 kernel: io scheduler cfq registered
Aug 28 11:18:20 Server06 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug 28 11:18:20 Server06 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug 28 11:18:20 Server06 kernel: vesafb: mode is 1280x1024x32, linelength=5120, pages=0
Aug 28 11:18:20 Server06 kernel: vesafb: scrolling: redraw
Aug 28 11:18:20 Server06 kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Aug 28 11:18:20 Server06 kernel: vesafb: framebuffer at 0xf9000000, mapped to 0xffffc90001000000, using 5120k, total 5120k
Aug 28 11:18:20 Server06 kernel: Console: switching to colour frame buffer device 160x64
Aug 28 11:18:20 Server06 kernel: fb0: VESA VGA frame buffer device
Aug 28 11:18:20 Server06 kernel: intel_idle: MWAIT substates: 0x1120
Aug 28 11:18:20 Server06 kernel: intel_idle: v0.4.1 model 0x3A
Aug 28 11:18:20 Server06 kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Aug 28 11:18:20 Server06 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Aug 28 11:18:20 Server06 kernel: ACPI: Power Button [PWRF]
Aug 28 11:18:20 Server06 kernel: thermal LNXTHERM:00: registered as thermal_zone0
Aug 28 11:18:20 Server06 kernel: ACPI: Thermal Zone [THM0] (8 C)
Aug 28 11:18:20 Server06 kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Aug 28 11:18:20 Server06 kernel: pstore: Registered erst as persistent store backend
Aug 28 11:18:20 Server06 kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Aug 28 11:18:20 Server06 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug 28 11:18:20 Server06 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Aug 28 11:18:20 Server06 kernel: Linux agpgart interface v0.103
Aug 28 11:18:20 Server06 kernel: loop: module loaded
Aug 28 11:18:20 Server06 kernel: libphy: Fixed MDIO Bus: probed
Aug 28 11:18:20 Server06 kernel: tun: Universal TUN/TAP device driver, 1.6
Aug 28 11:18:20 Server06 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Aug 28 11:18:20 Server06 kernel: PPP generic driver version 2.4.2
Aug 28 11:18:20 Server06 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 28 11:18:20 Server06 kernel: ehci-pci: EHCI PCI platform driver
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: debug port 2
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: irq 21, io mem 0xfacf0000
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Aug 28 11:18:20 Server06 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug 28 11:18:20 Server06 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb1: Product: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb1: Manufacturer: Linux 4.4.0-92-generic ehci_hcd
Aug 28 11:18:20 Server06 kernel: usb usb1: SerialNumber: 0000:00:1a.0
Aug 28 11:18:20 Server06 kernel: hub 1-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 1-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: debug port 2
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: irq 20, io mem 0xface0000
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Aug 28 11:18:20 Server06 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug 28 11:18:20 Server06 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb2: Product: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb2: Manufacturer: Linux 4.4.0-92-generic ehci_hcd
Aug 28 11:18:20 Server06 kernel: usb usb2: SerialNumber: 0000:00:1d.0
Aug 28 11:18:20 Server06 kernel: hub 2-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 2-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: ehci-platform: EHCI generic platform driver
Aug 28 11:18:20 Server06 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug 28 11:18:20 Server06 kernel: ohci-pci: OHCI PCI platform driver
Aug 28 11:18:20 Server06 kernel: ohci-platform: OHCI generic platform driver
Aug 28 11:18:20 Server06 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: UHCI Host Controller
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: new USB bus registered, assigned bus number 3
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: detected 8 ports
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: port count misdetected? forcing to 2 ports
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: irq 16, io base 0x00004000
Aug 28 11:18:20 Server06 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug 28 11:18:20 Server06 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Aug 28 11:18:20 Server06 kernel: usb usb3: Product: UHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb3: Manufacturer: Linux 4.4.0-92-generic uhci_hcd
Aug 28 11:18:20 Server06 kernel: usb usb3: SerialNumber: 0000:01:00.4
Aug 28 11:18:20 Server06 kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Aug 28 11:18:20 Server06 kernel: hub 3-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 3-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
Aug 28 11:18:20 Server06 kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0024
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x00000010
Aug 28 11:18:20 Server06 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
Aug 28 11:18:20 Server06 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb4: Product: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb4: Manufacturer: Linux 4.4.0-92-generic xhci-hcd
Aug 28 11:18:20 Server06 kernel: usb usb4: SerialNumber: 0000:04:00.0
Aug 28 11:18:20 Server06 kernel: hub 4-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 4-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 5
Aug 28 11:18:20 Server06 kernel: usb usb5: We don't know the algorithms for LPM for this host, disabling LPM.
Aug 28 11:18:20 Server06 kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0003
Aug 28 11:18:20 Server06 kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb5: Product: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb5: Manufacturer: Linux 4.4.0-92-generic xhci-hcd
Aug 28 11:18:20 Server06 kernel: usb usb5: SerialNumber: 0000:04:00.0
Aug 28 11:18:20 Server06 kernel: hub 5-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 5-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12
Aug 28 11:18:20 Server06 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 28 11:18:20 Server06 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 28 11:18:20 Server06 kernel: mousedev: PS/2 mouse device common for all mice
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: RTC can wake from S4
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: alarms up to one day, 114 bytes nvram, hpet irqs
Aug 28 11:18:20 Server06 kernel: i2c /dev entries driver
Aug 28 11:18:20 Server06 kernel: device-mapper: uevent: version 1.0.3
Aug 28 11:18:20 Server06 kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Aug 28 11:18:20 Server06 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 10
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 17
Aug 28 11:18:20 Server06 kernel: Key type dns_resolver registered
Aug 28 11:18:20 Server06 kernel: microcode: CPU0 sig=0x306a9, pf=0x2, revision=0x1c
Aug 28 11:18:20 Server06 kernel: microcode: CPU1 sig=0x306a9, pf=0x2, revision=0x1c
Aug 28 11:18:20 Server06 kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Aug 28 11:18:20 Server06 kernel: registered taskstats version 1
Aug 28 11:18:20 Server06 kernel: Loading compiled-in X.509 certificates
Aug 28 11:18:20 Server06 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 01a2b0d0dba8d37a863918580fc16590a7d146c8'
Aug 28 11:18:20 Server06 kernel: zswap: loaded using pool lzo/zbud
Aug 28 11:18:20 Server06 kernel: Key type trusted registered
Aug 28 11:18:20 Server06 kernel: Key type encrypted registered
Aug 28 11:18:20 Server06 kernel: AppArmor: AppArmor sha1 policy hashing enabled
Aug 28 11:18:20 Server06 kernel: ima: No TPM chip found, activating TPM-bypass!
Aug 28 11:18:20 Server06 kernel: evm: HMAC attrs: 0x1
Aug 28 11:18:20 Server06 kernel:   Magic number: 13:341:324
Aug 28 11:18:20 Server06 kernel: tty tty49: hash matches
Aug 28 11:18:20 Server06 kernel: acpi PNP0B00:00: hash matches
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: setting system clock to 2017-08-28 09:18:11 UTC (1503911891)
Aug 28 11:18:20 Server06 kernel: pcc-cpufreq: (v1.10.00) driver loaded with frequency limits: 2128 MHz, 2300 MHz
Aug 28 11:18:20 Server06 kernel: BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Aug 28 11:18:20 Server06 kernel: EDD information not available.
Aug 28 11:18:20 Server06 kernel: PM: Hibernation image not present or could not be loaded.
Aug 28 11:18:20 Server06 kernel: tsc: Refined TSC clocksource calibration: 2294.752 MHz
Aug 28 11:18:20 Server06 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2113d791df8, max_idle_ns: 440795280243 ns
Aug 28 11:18:20 Server06 kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: hub 1-1:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: Freeing unused kernel memory: 1488K (ffffffff81f45000 - ffffffff820b9000)
Aug 28 11:18:20 Server06 kernel: Write protecting the kernel read-only data: 14336k
Aug 28 11:18:20 Server06 kernel: hub 1-1:1.0: 6 ports detected
Aug 28 11:18:20 Server06 kernel: Freeing unused kernel memory: 1752K (ffff88000184a000 - ffff880001a00000)
Aug 28 11:18:20 Server06 kernel: Freeing unused kernel memory: 112K (ffff880001de4000 - ffff880001e00000)
Aug 28 11:18:20 Server06 kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=0024
Aug 28 11:18:20 Server06 kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: hub 2-1:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 2-1:1.0: 6 ports detected
Aug 28 11:18:20 Server06 kernel: clocksource: Switched to clocksource tsc
Aug 28 11:18:20 Server06 kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: version 3.0
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Aug 28 11:18:20 Server06 kernel: pps_core: LinuxPPS API ver. 1 registered
Aug 28 11:18:20 Server06 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pmp pio slum part ems apst 
Aug 28 11:18:20 Server06 kernel: PTP clock support registered
Aug 28 11:18:20 Server06 kernel: tg3.c:v3.137 (May 11, 2014)
Aug 28 11:18:20 Server06 kernel: scsi host0: ahci
Aug 28 11:18:20 Server06 kernel: usb 2-1.3: new high-speed USB device number 3 using ehci-pci
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Aug 28 11:18:20 Server06 kernel: scsi host1: ahci
Aug 28 11:18:20 Server06 kernel: scsi host2: ahci
Aug 28 11:18:20 Server06 kernel: scsi host3: ahci
Aug 28 11:18:20 Server06 kernel: scsi host4: ahci
Aug 28 11:18:20 Server06 kernel: scsi host5: ahci
Aug 28 11:18:20 Server06 kernel: ata1: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0100 irq 29
Aug 28 11:18:20 Server06 kernel: ata2: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0180 irq 29
Aug 28 11:18:20 Server06 kernel: ata3: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0200 irq 29
Aug 28 11:18:20 Server06 kernel: ata4: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0280 irq 29
Aug 28 11:18:20 Server06 kernel: ata5: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0300 irq 29
Aug 28 11:18:20 Server06 kernel: ata6: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0380 irq 29
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: Tigon3 [partno(N/A) rev 5720000] (PCI Express) MAC address 70:10:6f:3e:41:80
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: Tigon3 [partno(N/A) rev 5720000] (PCI Express) MAC address 70:10:6f:3e:41:81
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Aug 28 11:18:20 Server06 kernel: ata1: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Aug 28 11:18:20 Server06 kernel: usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
Aug 28 11:18:20 Server06 kernel: usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: hub 2-1.3:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 2-1.3:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: New USB device found, idVendor=062a, idProduct=4101
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: Product: 2.4G Keyboard Mouse
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: Manufacturer: MOSART Semi.
Aug 28 11:18:20 Server06 kernel: hidraw: raw HID events driver (C) Jiri Kosina
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: new high-speed USB device number 4 using ehci-pci
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eno1: renamed from eth0
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver usbhid
Aug 28 11:18:20 Server06 kernel: usbhid: USB HID core driver
Aug 28 11:18:20 Server06 kernel: input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:062A:4101.0001/input/input4
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eno2: renamed from eth1
Aug 28 11:18:20 Server06 kernel: ata2: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: hid-generic 0003:062A:4101.0001: input,hidraw0: USB HID v1.10 Keyboard [MOSART Semi. 2.4G Keyboard Mouse] on usb-0000:00:1a.0-1.1/input0
Aug 28 11:18:20 Server06 kernel: input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:062A:4101.0002/input/input5
Aug 28 11:18:20 Server06 kernel: hid-generic 0003:062A:4101.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [MOSART Semi. 2.4G Keyboard Mouse] on usb-0000:00:1a.0-1.1/input1
Aug 28 11:18:20 Server06 kernel: ata3: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: ata4: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: new high-speed USB device number 5 using ehci-pci
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: New USB device found, idVendor=13fe, idProduct=5500
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: Product: USB DISK 3.0
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: Manufacturer:         
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: SerialNumber: 07104A519915C273
Aug 28 11:18:20 Server06 kernel: usb-storage 1-1.5:1.0: USB Mass Storage device detected
Aug 28 11:18:20 Server06 kernel: scsi host6: usb-storage 1-1.5:1.0
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver usb-storage
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver uas
Aug 28 11:18:20 Server06 kernel: ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug 28 11:18:20 Server06 kernel: ata5.00: supports DRM functions and may not be fully accessible
Aug 28 11:18:20 Server06 kernel: ata5.00: READ LOG DMA EXT failed, trying unqueued
Aug 28 11:18:20 Server06 kernel: ata5.00: failed to get NCQ Send/Recv Log Emask 0x1
Aug 28 11:18:20 Server06 kernel: ata5.00: ATA-9: Samsung SSD 840 EVO 250GB, EXT0BB6Q, max UDMA/133
Aug 28 11:18:20 Server06 kernel: ata5.00: 488397168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
Aug 28 11:18:20 Server06 kernel: ata5.00: supports DRM functions and may not be fully accessible
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: new high-speed USB device number 6 using ehci-pci
Aug 28 11:18:20 Server06 kernel: ata5.00: failed to get NCQ Send/Recv Log Emask 0x1
Aug 28 11:18:20 Server06 kernel: ata5.00: configured for UDMA/133
Aug 28 11:18:20 Server06 kernel: scsi 4:0:0:0: Direct-Access     ATA      Samsung SSD 840  BB6Q PQ: 0 ANSI: 5
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: Attached scsi generic sg0 type 0
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Write Protect is off
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Aug 28 11:18:20 Server06 kernel:  sda: sda1 sda2 < sda5 >
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Attached SCSI disk
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: New USB device found, idVendor=0951, idProduct=1666
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: Product: DataTraveler 3.0
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: Manufacturer: Kingston
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: SerialNumber: 0019E06B58C2F130C7330EE4
Aug 28 11:18:20 Server06 kernel: usb-storage 1-1.3:1.0: USB Mass Storage device detected
Aug 28 11:18:20 Server06 kernel: scsi host7: usb-storage 1-1.3:1.0
Aug 28 11:18:20 Server06 kernel: ata6: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: scsi 6:0:0:0: Direct-Access              USB DISK 3.0     PMAP PQ: 0 ANSI: 6
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: Attached scsi generic sg1 type 0
Aug 28 11:18:20 Server06 kernel: scsi 7:0:0:0: Direct-Access     Kingston DataTraveler 3.0      PQ: 0 ANSI: 6
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: Attached scsi generic sg2 type 0
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] 30218842 512-byte logical blocks: (15.5 GB/14.4 GiB)
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Write Protect is off
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Mode Sense: 4f 00 00 00
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Aug 28 11:18:20 Server06 kernel:  sdc: sdc1 sdc2
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Attached SCSI removable disk
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] 60522496 512-byte logical blocks: (31.0 GB/28.9 GiB)
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Write Protect is off
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] No Caching mode page found
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
Aug 28 11:18:20 Server06 kernel:  sdb: sdb1
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Aug 28 11:18:20 Server06 kernel: md: linear personality registered for level -1
Aug 28 11:18:20 Server06 kernel: md: multipath personality registered for level -4
Aug 28 11:18:20 Server06 kernel: md: raid0 personality registered for level 0
Aug 28 11:18:20 Server06 kernel: md: raid1 personality registered for level 1
Aug 28 11:18:20 Server06 kernel: raid6: sse2x1   gen()  6306 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x1   xor()  5001 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x2   gen()  7889 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x2   xor()  5550 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x4   gen()  9186 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x4   xor()  6854 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: using algorithm sse2x4 gen() 9186 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: .... xor() 6854 MB/s, rmw enabled
Aug 28 11:18:20 Server06 kernel: raid6: using ssse3x2 recovery algorithm
Aug 28 11:18:20 Server06 kernel: xor: measuring software checksum speed
Aug 28 11:18:20 Server06 kernel:    prefetch64-sse: 12771.000 MB/sec
Aug 28 11:18:20 Server06 kernel:    generic_sse: 11653.000 MB/sec
Aug 28 11:18:20 Server06 kernel: xor: using function: prefetch64-sse (12771.000 MB/sec)
Aug 28 11:18:20 Server06 kernel: async_tx: api initialized (async)
Aug 28 11:18:20 Server06 kernel: md: raid6 personality registered for level 6
Aug 28 11:18:20 Server06 kernel: md: raid5 personality registered for level 5
Aug 28 11:18:20 Server06 kernel: md: raid4 personality registered for level 4
Aug 28 11:18:20 Server06 kernel: md: raid10 personality registered for level 10
Aug 28 11:18:20 Server06 kernel: Btrfs loaded
Aug 28 11:18:20 Server06 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Aug 28 11:18:20 Server06 systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
Aug 28 11:18:20 Server06 systemd[1]: Detected architecture x86-64.
Aug 28 11:18:20 Server06 systemd[1]: Set hostname to <Server06>.
Aug 28 11:18:20 Server06 systemd[1]: Started Trigger resolvconf update for networkd DNS.
Aug 28 11:18:20 Server06 systemd[1]: Created slice System Slice.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Syslog Socket.
Aug 28 11:18:20 Server06 systemd[1]: Created slice User and Session Slice.
Aug 28 11:18:20 Server06 systemd[1]: Listening on fsck to fsckd communication Socket.
Aug 28 11:18:20 Server06 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Aug 28 11:18:20 Server06 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Aug 28 11:18:20 Server06 systemd[1]: Reached target Slices.
Aug 28 11:18:20 Server06 systemd[1]: Reached target User and Group Name Lookups.
Aug 28 11:18:20 Server06 systemd[1]: Listening on udev Control Socket.
Aug 28 11:18:20 Server06 systemd[1]: Listening on LVM2 metadata daemon socket.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Journal Socket (/dev/log).
Aug 28 11:18:20 Server06 systemd[1]: Listening on LVM2 poll daemon socket.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Journal Socket.
Aug 28 11:18:20 Server06 systemd[1]: Mounting Huge Pages File System...
Aug 28 11:18:20 Server06 systemd[1]: Mounting POSIX Message Queue File System...
Aug 28 11:18:20 Server06 systemd[1]: Mounting Debug File System...
Aug 28 11:18:20 Server06 systemd[1]: Starting Uncomplicated firewall...
Aug 28 11:18:20 Server06 systemd[1]: Starting Create list of required static device nodes for the current kernel...
Aug 28 11:18:20 Server06 systemd[1]: Reached target Encrypted Volumes.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Journal Audit Socket.
Aug 28 11:18:20 Server06 systemd[1]: Starting Journal Service...
Aug 28 11:18:20 Server06 systemd[1]: Started Read required files in advance.
Aug 28 11:18:20 Server06 systemd-journald[362]: Journal started
-- Subject: The journal has been started
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- The system journal process has started up, opened the journal
-- files for writing and is now ready to process requests.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Device-mapper event daemon FIFOs.
Aug 28 11:18:21 Server06 systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Aug 28 11:18:21 Server06 systemd[1]: Starting Set console keymap...
Aug 28 11:18:21 Server06 kernel: random: nonblocking pool is initialized
Aug 28 11:18:21 Server06 systemd[1]: Listening on udev Kernel Socket.
Aug 28 11:18:21 Server06 loadkeys[373]: Lade /etc/console-setup/cached.kmap.gz.
Aug 28 11:18:21 Server06 systemd[1]: Starting Load Kernel Modules...
Aug 28 11:18:21 Server06 systemd-modules-load[378]: Inserted module 'iscsi_tcp'
Aug 28 11:18:21 Server06 kernel: Loading iSCSI transport class v2.0-870.
Aug 28 11:18:21 Server06 kernel: iscsi: registered transport (tcp)
Aug 28 11:18:21 Server06 systemd[1]: Starting Nameserver information manager...
Aug 28 11:18:21 Server06 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Aug 28 11:18:21 Server06 systemd-modules-load[378]: Inserted module 'ib_iser'
Aug 28 11:18:21 Server06 kernel: iscsi: registered transport (iser)
Aug 28 11:18:21 Server06 systemd[1]: Mounted POSIX Message Queue File System.
Aug 28 11:18:21 Server06 systemd[1]: Mounted Debug File System.
Aug 28 11:18:21 Server06 systemd[1]: Mounted Huge Pages File System.
Aug 28 11:18:21 Server06 systemd[1]: Started Journal Service.
Aug 28 11:18:21 Server06 systemd[1]: Started Uncomplicated firewall.
-- Subject: Unit ufw.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ufw.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Started Create list of required static device nodes for the current kernel.
-- Subject: Unit kmod-static-nodes.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit kmod-static-nodes.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Started Set console keymap.
-- Subject: Unit keyboard-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit keyboard-setup.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Started Load Kernel Modules.
-- Subject: Unit systemd-modules-load.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-modules-load.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Started Nameserver information manager.
-- Subject: Unit resolvconf.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit resolvconf.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Started LVM2 metadata daemon.
-- Subject: Unit lvm2-lvmetad.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lvm2-lvmetad.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Reached target Network (Pre).
-- Subject: Unit network-pre.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit network-pre.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:21 Server06 systemd[1]: Mounting FUSE Control File System...
-- Subject: Unit sys-fs-fuse-connections.mount has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sys-fs-fuse-connections.mount has begun starting up.
Aug 28 11:18:21 Server06 systemd[1]: Starting Apply Kernel Variables...
-- Subject: Unit systemd-sysctl.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysctl.service has begun starting up.
Aug 28 11:18:21 Server06 systemd[1]: Starting Create Static Device Nodes in /dev...
-- Subject: Unit systemd-tmpfiles-setup-dev.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup-dev.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Mounted FUSE Control File System.
-- Subject: Unit sys-fs-fuse-connections.mount has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sys-fs-fuse-connections.mount has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Started Apply Kernel Variables.
-- Subject: Unit systemd-sysctl.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-sysctl.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Started Create Static Device Nodes in /dev.
-- Subject: Unit systemd-tmpfiles-setup-dev.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup-dev.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Starting udev Kernel Device Manager...
-- Subject: Unit systemd-udevd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udevd.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Started udev Kernel Device Manager.
-- Subject: Unit systemd-udevd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udevd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Starting Remount Root and Kernel File Systems...
-- Subject: Unit systemd-remount-fs.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-remount-fs.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Started Remount Root and Kernel File Systems.
-- Subject: Unit systemd-remount-fs.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-remount-fs.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Aug 28 11:18:22 Server06 systemd[1]: Starting Flush Journal to Persistent Storage...
-- Subject: Unit systemd-journal-flush.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Starting Load/Save Random Seed...
-- Subject: Unit systemd-random-seed.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Starting udev Coldplug all Devices...
-- Subject: Unit systemd-udev-trigger.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udev-trigger.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Started Load/Save Random Seed.
-- Subject: Unit systemd-random-seed.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-random-seed.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Started Flush Journal to Persistent Storage.
-- Subject: Unit systemd-journal-flush.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-journal-flush.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Started udev Coldplug all Devices.
-- Subject: Unit systemd-udev-trigger.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-udev-trigger.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 kernel: EDAC MC: Ver: 3.0.0
Aug 28 11:18:22 Server06 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug 28 11:18:22 Server06 kernel: power_meter ACPI000D:00: Found ACPI power meter.
Aug 28 11:18:22 Server06 kernel: power_meter ACPI000D:00: Ignoring unsafe software power cap!
Aug 28 11:18:22 Server06 kernel: ipmi message handler version 39.2
Aug 28 11:18:22 Server06 systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
-- Subject: Unit lvm2-monitor.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lvm2-monitor.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 kernel: ACPI Warning: SystemIO range 0x0000000000000928-0x000000000000092F conflicts with OpRegion 0x0000000000000920-0x000000000000092F (\SGPE) (20150930/utaddress-254)
Aug 28 11:18:22 Server06 kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug 28 11:18:22 Server06 kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Aug 28 11:18:22 Server06 systemd[1]: Reached target Local File Systems (Pre).
-- Subject: Unit local-fs-pre.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs-pre.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Reached target Local File Systems.
-- Subject: Unit local-fs.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit local-fs.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 kernel: ipmi_si IPI0001:00: ipmi_si: probing via ACPI
Aug 28 11:18:22 Server06 kernel: ipmi_si IPI0001:00: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
Aug 28 11:18:22 Server06 kernel: ipmi_si: Adding ACPI-specified kcs state machine
Aug 28 11:18:22 Server06 kernel: IPMI System Interface driver.
Aug 28 11:18:22 Server06 kernel: ipmi_si: probing via SMBIOS
Aug 28 11:18:22 Server06 kernel: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Aug 28 11:18:22 Server06 kernel: ipmi_si: Adding SMBIOS-specified kcs state machine duplicate interface
Aug 28 11:18:22 Server06 kernel: ipmi_si: probing via SPMI
Aug 28 11:18:22 Server06 kernel: ipmi_si: SPMI: io 0xca2 regsize 2 spacing 2 irq 0
Aug 28 11:18:22 Server06 kernel: ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
Aug 28 11:18:22 Server06 kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
Aug 28 11:18:22 Server06 systemd[1]: Starting LSB: AppArmor initialization...
-- Subject: Unit apparmor.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apparmor.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Starting Set console font and keymap...
-- Subject: Unit console-setup.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit console-setup.service has begun starting up.
Aug 28 11:18:22 Server06 systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
-- Subject: Unit plymouth-read-write.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plymouth-read-write.service has begun starting up.
Aug 28 11:18:22 Server06 kernel: intel_rapl: Found RAPL domain package
Aug 28 11:18:22 Server06 kernel: intel_rapl: Found RAPL domain core
Aug 28 11:18:22 Server06 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
-- Subject: Unit systemd-ask-password-console.path has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-ask-password-console.path has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Starting Create Volatile Files and Directories...
-- Subject: Unit systemd-tmpfiles-setup.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup.service has begun starting up.
Aug 28 11:18:22 Server06 systemd-tmpfiles[593]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Aug 28 11:18:22 Server06 systemd-udevd[461]: Process '/lib/udev/hdparm' failed with exit code 5.
Aug 28 11:18:22 Server06 systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
-- Subject: Unit plymouth-read-write.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plymouth-read-write.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Started Create Volatile Files and Directories.
-- Subject: Unit systemd-tmpfiles-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-setup.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Started Set console font and keymap.
-- Subject: Unit console-setup.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit console-setup.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd[1]: Found device Samsung_SSD_840_EVO_250GB 5.
-- Subject: Unit dev-disk-by\x2duuid-257810c6\x2d5608\x2d4b02\x2d94b0\x2dd9fe8321c38f.device has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-257810c6\x2d5608\x2d4b02\x2d94b0\x2dd9fe8321c38f.device has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:22 Server06 systemd-udevd[467]: Process 'console-setup-tty fbcon' failed with exit code 71.
Aug 28 11:18:23 Server06 systemd[1]: Activating swap /dev/disk/by-uuid/257810c6-5608-4b02-94b0-d9fe8321c38f...
-- Subject: Unit dev-disk-by\x2duuid-257810c6\x2d5608\x2d4b02\x2d94b0\x2dd9fe8321c38f.swap has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-257810c6\x2d5608\x2d4b02\x2d94b0\x2dd9fe8321c38f.swap has begun starting up.
Aug 28 11:18:23 Server06 kernel: ipmi_si IPI0001:00: Found new BMC (man_id: 0x00000b, prod_id: 0x2000, dev_id: 0x13)
Aug 28 11:18:23 Server06 kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Aug 28 11:18:23 Server06 kernel: IPMI SSIF Interface driver
Aug 28 11:18:23 Server06 kernel: gpio_ich: GPIO from 436 to 511 on gpio_ich
Aug 28 11:18:23 Server06 kernel: Adding 31249404k swap on /dev/sda5.  Priority:-1 extents:1 across:31249404k SSFS
Aug 28 11:18:23 Server06 systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
-- Subject: Unit systemd-rfkill.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-rfkill.socket has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Created slice system-getty.slice.
-- Subject: Unit system-getty.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit system-getty.slice has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting Network Time Synchronization...
-- Subject: Unit systemd-timesyncd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-timesyncd.service has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Starting Update UTMP about System Boot/Shutdown...
-- Subject: Unit systemd-update-utmp.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp.service has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Activated swap /dev/disk/by-uuid/257810c6-5608-4b02-94b0-d9fe8321c38f.
-- Subject: Unit dev-disk-by\x2duuid-257810c6\x2d5608\x2d4b02\x2d94b0\x2dd9fe8321c38f.swap has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dev-disk-by\x2duuid-257810c6\x2d5608\x2d4b02\x2d94b0\x2dd9fe8321c38f.swap has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Started Network Time Synchronization.
-- Subject: Unit systemd-timesyncd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-timesyncd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 apparmor[491]:  * Starting AppArmor profiles
Aug 28 11:18:23 Server06 systemd[1]: Started Update UTMP about System Boot/Shutdown.
-- Subject: Unit systemd-update-utmp.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Reached target System Time Synchronized.
-- Subject: Unit time-sync.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit time-sync.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[785]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=785 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[786]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lxd/lxd-bridge-proxy" pid=786 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[787]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=787 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[787]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=787 comm="apparmor_parser"
Aug 28 11:18:23 Server06 apparmor[491]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Aug 28 11:18:23 Server06 audit[789]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=789 comm="apparmor_parser"
Aug 28 11:18:23 Server06 apparmor[491]:    ...done.
Aug 28 11:18:23 Server06 systemd[1]: Reached target Swap.
-- Subject: Unit swap.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit swap.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=785 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lxd/lxd-bridge-proxy" pid=786 comm="apparmor_parser"
Aug 28 11:18:23 Server06 systemd[1]: Started LSB: AppArmor initialization.
-- Subject: Unit apparmor.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apparmor.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting Raise network interfaces...
-- Subject: Unit networking.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit networking.service has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Reached target System Initialization.
-- Subject: Unit sysinit.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sysinit.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Listening on D-Bus System Message Bus Socket.
-- Subject: Unit dbus.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dbus.socket has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Started ACPI Events Check.
-- Subject: Unit acpid.path has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit acpid.path has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Reached target Paths.
-- Subject: Unit paths.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit paths.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Listening on ACPID Listen Socket.
-- Subject: Unit acpid.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit acpid.socket has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Listening on UUID daemon activation socket.
-- Subject: Unit uuidd.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit uuidd.socket has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Started Daily Cleanup of Temporary Directories.
-- Subject: Unit systemd-tmpfiles-clean.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-clean.timer has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Started Timer to automatically refresh installed snaps.
-- Subject: Unit snapd.refresh.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit snapd.refresh.timer has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting Socket activation for snappy daemon.
-- Subject: Unit snapd.socket has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit snapd.socket has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Starting LXD - unix socket.
-- Subject: Unit lxd.socket has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lxd.socket has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Started ifup for eno1.
-- Subject: Unit ifup@eno1.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ifup@eno1.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 sh[801]: Not enough information: "dev" argument is required.
Aug 28 11:18:23 Server06 sh[801]: Failed to bring up eno1.
Aug 28 11:18:23 Server06 systemd[1]: Listening on Socket activation for snappy daemon.
-- Subject: Unit snapd.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit snapd.socket has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Listening on LXD - unix socket.
-- Subject: Unit lxd.socket has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lxd.socket has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: ifup@eno1.service: Main process exited, code=exited, status=1/FAILURE
Aug 28 11:18:23 Server06 systemd[1]: Reached target Sockets.
-- Subject: Unit sockets.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit sockets.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 ifup[815]: Not enough information: "dev" argument is required.
Aug 28 11:18:23 Server06 ifup[815]: Failed to bring up eno1.
Aug 28 11:18:23 Server06 systemd[1]: Reached target Basic System.
-- Subject: Unit basic.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit basic.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting Login Service...
-- Subject: Unit systemd-logind.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-logind.service has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Started FUSE filesystem for LXC.
-- Subject: Unit lxcfs.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lxcfs.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting LXD - container startup/shutdown...
-- Subject: Unit lxd-containers.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lxd-containers.service has begun starting up.
Aug 28 11:18:23 Server06 kernel: cgroup: new mount options do not match the existing superblock, will be ignored
Aug 28 11:18:23 Server06 lxcfs[878]: hierarchies:
Aug 28 11:18:23 Server06 lxcfs[878]:   0: fd:   5: pids
Aug 28 11:18:23 Server06 lxcfs[878]:   1: fd:   6: cpuset
Aug 28 11:18:23 Server06 lxcfs[878]:   2: fd:   7: devices
Aug 28 11:18:23 Server06 lxcfs[878]:   3: fd:   8: perf_event
Aug 28 11:18:23 Server06 lxcfs[878]:   4: fd:   9: net_cls,net_prio
Aug 28 11:18:23 Server06 lxcfs[878]:   5: fd:  10: freezer
Aug 28 11:18:23 Server06 lxcfs[878]:   6: fd:  11: blkio
Aug 28 11:18:23 Server06 lxcfs[878]:   7: fd:  12: memory
Aug 28 11:18:23 Server06 lxcfs[878]:   8: fd:  13: cpu,cpuacct
Aug 28 11:18:23 Server06 lxcfs[878]:   9: fd:  14: hugetlb
Aug 28 11:18:23 Server06 lxcfs[878]:  10: fd:  15: name=systemd
Aug 28 11:18:23 Server06 systemd[1]: Starting System Logging Service...
-- Subject: Unit rsyslog.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit rsyslog.service has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Started Regular background program processing daemon.
-- Subject: Unit cron.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit cron.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 cron[894]: (CRON) INFO (pidfile fd = 3)
Aug 28 11:18:23 Server06 cron[894]: (CRON) INFO (Running @reboot jobs)
Aug 28 11:18:23 Server06 systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
-- Subject: Unit smartd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit smartd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting LSB: Record successful boot for GRUB...
-- Subject: Unit grub-common.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit grub-common.service has begun starting up.
Aug 28 11:18:23 Server06 smartd[896]: smartd 6.5 2016-01-24 r4214 [x86_64-linux-4.4.0-92-generic] (local build)
Aug 28 11:18:23 Server06 smartd[896]: Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org
Aug 28 11:18:23 Server06 smartd[896]: Opened configuration file /etc/smartd.conf
Aug 28 11:18:23 Server06 smartd[896]: Drive: DEVICESCAN, implied '-a' Directive on line 21 of file /etc/smartd.conf
Aug 28 11:18:23 Server06 smartd[896]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda, type changed from 'scsi' to 'sat'
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], opened
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], Samsung SSD 840 EVO 250GB, S/N:S1DBNSBF386189M, WWN:5-002538-8a030e926, FW:EXT0BB6Q, 250 GB
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], found in smartd database: Samsung based SSDs
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], can't monitor Current_Pending_Sector count - no Attribute 197
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], can't monitor Offline_Uncorrectable count - no Attribute 198
Aug 28 11:18:23 Server06 systemd[1]: Starting Accounts Service...
-- Subject: Unit accounts-daemon.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit accounts-daemon.service has begun starting up.
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list.
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], state read from /var/lib/smartmontools/smartd.Samsung_SSD_840_EVO_250GB-S1DBNSBF386189M.ata.state
Aug 28 11:18:23 Server06 smartd[896]: Monitoring 1 ATA and 0 SCSI devices
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 73 to 72
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], state written to /var/lib/smartmontools/smartd.Samsung_SSD_840_EVO_250GB-S1DBNSBF386189M.ata.state
Aug 28 11:18:23 Server06 systemd[1]: Started D-Bus System Message Bus.
-- Subject: Unit dbus.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit dbus.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 dbus[908]: [system] AppArmor D-Bus mediation is enabled
Aug 28 11:18:23 Server06 dbus[908]: [system] Successfully activated service 'org.freedesktop.systemd1'
Aug 28 11:18:23 Server06 dbus[908]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkitd.service'
Aug 28 11:18:23 Server06 systemd[1]: Starting LSB: MD monitoring daemon...
-- Subject: Unit mdadm.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mdadm.service has begun starting up.
Aug 28 11:18:23 Server06 systemd[1]: Started Deferred execution scheduler.
-- Subject: Unit atd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit atd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Started ACPI event daemon.
-- Subject: Unit acpid.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit acpid.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 acpid[919]: starting up with netlink and the input layer
Aug 28 11:18:23 Server06 acpid[919]: 1 rule loaded
Aug 28 11:18:23 Server06 acpid[919]: waiting for events: event logging is off
Aug 28 11:18:23 Server06 systemd[1]: Started Snappy daemon.
-- Subject: Unit snapd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit snapd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:23 Server06 systemd[1]: Starting Auto import assertions from block devices...
-- Subject: Unit snapd.autoimport.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit snapd.autoimport.service has begun starting up.
Aug 28 11:18:23 Server06 snap[923]: auto-import is disabled on classic
Aug 28 11:18:23 Server06 systemd[1]: Started System Logging Service.
-- Subject: Unit rsyslog.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit rsyslog.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started LXD - container startup/shutdown.
-- Subject: Unit lxd-containers.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit lxd-containers.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started Auto import assertions from block devices.
-- Subject: Unit snapd.autoimport.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit snapd.autoimport.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: daemon.go:250: DEBUG: init done in 693.401µs
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: daemon.go:251: started snapd/2.26.10 (series 16; classic) ubuntu/16.04 (amd64) linux/4.4.0-92-generic.
Aug 28 11:18:24 Server06 snapd[921]: 2017/08/28 11:18:24.053426 daemon.go:251: started snapd/2.26.10 (series 16; classic) ubuntu/16.04 (amd64) linux/4.4.0-92-generic.
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:504: DEBUG: Next refresh scheduled for 2017-08-28 11:18:24.054240021 +0200 CEST.
Aug 28 11:18:24 Server06 systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Aug 28 11:18:24 Server06 systemd[1]: Failed to start Raise network interfaces.
-- Subject: Unit networking.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit networking.service has failed.
-- 
-- The result is failed.
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 snapd[921]: 2017/08/28 11:18:24.059735 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 snapd[921]: 2017/08/28 11:18:24.060162 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 systemd[1]: networking.service: Unit entered failed state.
Aug 28 11:18:24 Server06 systemd[1]: networking.service: Failed with result 'exit-code'.
Aug 28 11:18:24 Server06 mdadm[913]:  * Starting MD monitoring service mdadm --monitor
Aug 28 11:18:24 Server06 systemd-logind[876]: New seat seat0.
-- Subject: A new seat seat0 is now available
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
-- 
-- A new seat seat0 has been configured and is now available.
Aug 28 11:18:24 Server06 systemd-logind[876]: Watching system buttons on /dev/input/event0 (Power Button)
Aug 28 11:18:24 Server06 systemd[1]: Started Login Service.
-- Subject: Unit systemd-logind.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-logind.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Starting Authenticate and Authorize Users to Run Privileged Tasks...
-- Subject: Unit polkitd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit polkitd.service has begun starting up.
Aug 28 11:18:24 Server06 mdadm[913]:    ...done.
Aug 28 11:18:24 Server06 polkitd[945]: started daemon version 0.105 using authority implementation `local' version `0.105'
Aug 28 11:18:24 Server06 dbus[908]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Aug 28 11:18:24 Server06 accounts-daemon[905]: started daemon version 0.6.40
Aug 28 11:18:24 Server06 systemd[1]: Reached target Network.
-- Subject: Unit network.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit network.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Starting OpenBSD Secure Shell server...
-- Subject: Unit ssh.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ssh.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Started Unattended Upgrades Shutdown.
-- Subject: Unit unattended-upgrades.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit unattended-upgrades.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 sshd[954]: Server listening on 0.0.0.0 port 22.
Aug 28 11:18:24 Server06 sshd[954]: Server listening on :: port 22.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Network is Online.
-- Subject: Unit network-online.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit network-online.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Starting iSCSI initiator daemon (iscsid)...
-- Subject: Unit iscsid.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit iscsid.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Started Daily apt download activities.
-- Subject: Unit apt-daily.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apt-daily.timer has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started Daily apt upgrade and clean activities.
-- Subject: Unit apt-daily-upgrade.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apt-daily-upgrade.timer has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Timers.
-- Subject: Unit timers.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit timers.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Starting /etc/rc.local Compatibility...
-- Subject: Unit rc-local.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit rc-local.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Started OpenBSD Secure Shell server.
-- Subject: Unit ssh.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ssh.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: Record successful boot for GRUB.
-- Subject: Unit grub-common.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit grub-common.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: MD monitoring daemon.
-- Subject: Unit mdadm.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit mdadm.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started /etc/rc.local Compatibility.
-- Subject: Unit rc-local.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit rc-local.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 iscsid[967]: iSCSI logger with pid=971 started!
Aug 28 11:18:24 Server06 systemd[1]: Started iSCSI initiator daemon (iscsid).
-- Subject: Unit iscsid.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit iscsid.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started Authenticate and Authorize Users to Run Privileged Tasks.
-- Subject: Unit polkitd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit polkitd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started Accounts Service.
-- Subject: Unit accounts-daemon.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit accounts-daemon.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Starting Login to default iSCSI targets...
-- Subject: Unit open-iscsi.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit open-iscsi.service has begun starting up.
Aug 28 11:18:24 Server06 iscsiadm[979]: iscsiadm: No records found
Aug 28 11:18:24 Server06 systemd[1]: Started Login to default iSCSI targets.
-- Subject: Unit open-iscsi.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit open-iscsi.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Remote File Systems (Pre).
-- Subject: Unit remote-fs-pre.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit remote-fs-pre.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Remote File Systems.
-- Subject: Unit remote-fs.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit remote-fs.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: start Samba NetBIOS nameserver (nmbd)...
-- Subject: Unit nmbd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit nmbd.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: automatic crash report generation...
-- Subject: Unit apport.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apport.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: start Samba daemons for the AD DC...
-- Subject: Unit samba-ad-dc.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit samba-ad-dc.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Starting Permit User Sessions...
-- Subject: Unit systemd-user-sessions.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-user-sessions.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: daemon to balance interrupts for SMP systems...
-- Subject: Unit irqbalance.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit irqbalance.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: start Winbind daemon...
-- Subject: Unit winbind.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit winbind.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
-- Subject: Unit ondemand.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ondemand.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Started Permit User Sessions.
-- Subject: Unit systemd-user-sessions.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-user-sessions.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 apport[990]:  * Starting automatic crash report generation: apport
Aug 28 11:18:24 Server06 apport[990]:    ...done.
Aug 28 11:18:24 Server06 systemd[1]: Starting Terminate Plymouth Boot Screen...
-- Subject: Unit plymouth-quit.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plymouth-quit.service has begun starting up.
Aug 28 11:18:24 Server06 irqbalance[1003]:  * Starting SMP IRQ Balancer: irqbalance
Aug 28 11:18:24 Server06 irqbalance[1003]:    ...done.
Aug 28 11:18:24 Server06 systemd[1]: Starting Hold until boot process finishes up...
-- Subject: Unit plymouth-quit-wait.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plymouth-quit-wait.service has begun starting up.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: automatic crash report generation.
-- Subject: Unit apport.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit apport.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: daemon to balance interrupts for SMP systems.
-- Subject: Unit irqbalance.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit irqbalance.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
-- Subject: Unit ondemand.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ondemand.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started Terminate Plymouth Boot Screen.
-- Subject: Unit plymouth-quit.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plymouth-quit.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:24 Server06 systemd[1]: Started Hold until boot process finishes up.
-- Subject: Unit plymouth-quit-wait.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit plymouth-quit-wait.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Starting Set console scheme...
-- Subject: Unit setvtrgb.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit setvtrgb.service has begun starting up.
Aug 28 11:18:25 Server06 systemd[1]: Started Getty on tty1.
-- Subject: Unit getty@tty1.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit getty@tty1.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Reached target Login Prompts.
-- Subject: Unit getty.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit getty.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Started Set console scheme.
-- Subject: Unit setvtrgb.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit setvtrgb.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 winbind[1008]:  * Starting the Winbind daemon winbind
Aug 28 11:18:25 Server06 winbind[1008]:    ...done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Winbind daemon.
-- Subject: Unit winbind.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit winbind.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 nmbd[985]:  * Starting NetBIOS name server nmbd
Aug 28 11:18:25 Server06 nmbd[985]:    ...done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Samba NetBIOS nameserver (nmbd).
-- Subject: Unit nmbd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit nmbd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Samba daemons for the AD DC.
-- Subject: Unit samba-ad-dc.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit samba-ad-dc.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Starting LSB: start Samba SMB/CIFS daemon (smbd)...
-- Subject: Unit smbd.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit smbd.service has begun starting up.
Aug 28 11:18:25 Server06 iscsid[971]: iSCSI daemon with pid=972 started!
Aug 28 11:18:25 Server06 smbd[1079]:  * Starting SMB/CIFS daemon smbd
Aug 28 11:18:25 Server06 smbd[1079]:    ...done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Samba SMB/CIFS daemon (smbd).
-- Subject: Unit smbd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit smbd.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Reached target Multi-User System.
-- Subject: Unit multi-user.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit multi-user.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Reached target Graphical Interface.
-- Subject: Unit graphical.target has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit graphical.target has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Starting Update UTMP about System Runlevel Changes...
-- Subject: Unit systemd-update-utmp-runlevel.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp-runlevel.service has begun starting up.
Aug 28 11:18:25 Server06 systemd[1]: Started Stop ureadahead data collection 45s after completed startup.
-- Subject: Unit ureadahead-stop.timer has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ureadahead-stop.timer has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Started Update UTMP about System Runlevel Changes.
-- Subject: Unit systemd-update-utmp-runlevel.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-update-utmp-runlevel.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:18:25 Server06 systemd[1]: Startup finished in 9.779s (kernel) + 6.096s (userspace) = 15.876s.
-- Subject: System start-up is now complete
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- All system services necessary queued for starting at boot have been
-- successfully started. Note that this does not mean that the machine is
-- now idle as services might still be busy with completing start-up.
-- 
-- Kernel start-up required 9779061 microseconds.
-- 
-- Initial RAM disk start-up required INITRD_USEC microseconds.
-- 
-- Userspace start-up required 6096995 microseconds.
Aug 28 11:19:11 Server06 systemd[1]: Starting Stop ureadahead data collection...
-- Subject: Unit ureadahead-stop.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ureadahead-stop.service has begun starting up.
Aug 28 11:19:11 Server06 systemd[1]: Stopped Read required files in advance.
-- Subject: Unit ureadahead.service has finished shutting down
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ureadahead.service has finished shutting down.
Aug 28 11:19:11 Server06 systemd[1]: Started Stop ureadahead data collection.
-- Subject: Unit ureadahead-stop.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit ureadahead-stop.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:20:01 Server06 CRON[1113]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:20:01 Server06 CRON[1114]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:20:01 Server06 root[1126]: AutoShutdown: marked for shutdown in next try
Aug 28 11:20:01 Server06 CRON[1113]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:20:01 Server06 CRON[1113]: pam_unix(cron:session): session closed for user root
Aug 28 11:23:40 Server06 login[1056]: pam_unix(login:session): session opened for user jochen by LOGIN(uid=0)
Aug 28 11:23:40 Server06 systemd[1]: Created slice User Slice of jochen.
-- Subject: Unit user-1000.slice has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user-1000.slice has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1]: Starting User Manager for UID 1000...
-- Subject: Unit user@1000.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user@1000.service has begun starting up.
Aug 28 11:23:40 Server06 systemd[1]: Started Session 2 of user jochen.
-- Subject: Unit session-2.scope has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit session-2.scope has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1176]: pam_unix(systemd-user:session): session opened for user jochen by (uid=0)
Aug 28 11:23:40 Server06 systemd-logind[876]: New session 2 of user jochen.
-- Subject: A new session 2 has been created for user jochen
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- Documentation: http://www.freedesktop.org/wiki/Software/systemd/multiseat
-- 
-- A new session with the ID 2 has been created for the user jochen.
-- 
-- The leading process of the session is 1056.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Timers.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Sockets.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Paths.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Basic System.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Default.
-- Subject: Unit UNIT has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit UNIT has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:23:40 Server06 systemd[1176]: Startup finished in 18ms.
-- Subject: System start-up is now complete
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- All system services necessary queued for starting at boot have been
-- successfully started. Note that this does not mean that the machine is
-- now idle as services might still be busy with completing start-up.
-- 
-- Kernel start-up required KERNEL_USEC microseconds.
-- 
-- Initial RAM disk start-up required INITRD_USEC microseconds.
-- 
-- Userspace start-up required 18495 microseconds.
Aug 28 11:23:40 Server06 systemd[1]: Started User Manager for UID 1000.
-- Subject: Unit user@1000.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit user@1000.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:30:01 Server06 CRON[1199]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:30:01 Server06 CRON[1200]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:30:01 Server06 root[1205]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 11:30:01 Server06 CRON[1199]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:30:01 Server06 CRON[1199]: pam_unix(cron:session): session closed for user root
Aug 28 11:33:15 Server06 systemd[1]: Starting Cleanup of Temporary Directories...
-- Subject: Unit systemd-tmpfiles-clean.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-clean.service has begun starting up.
Aug 28 11:33:15 Server06 systemd-tmpfiles[1208]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Aug 28 11:33:15 Server06 systemd[1]: Started Cleanup of Temporary Directories.
-- Subject: Unit systemd-tmpfiles-clean.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
-- 
-- Unit systemd-tmpfiles-clean.service has finished starting up.
-- 
-- The start-up result is done.
Aug 28 11:33:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:33:24 Server06 snapd[921]: 2017/08/28 11:33:24.055320 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:33:24 Server06 snapd[921]: 2017/08/28 11:33:24.055351 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:33:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:40:01 Server06 CRON[1215]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:40:01 Server06 CRON[1216]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:40:01 Server06 root[1221]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 11:40:01 Server06 CRON[1215]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:40:01 Server06 CRON[1215]: pam_unix(cron:session): session closed for user root
Aug 28 11:48:23 Server06 smartd[896]: Device: /dev/sda [SAT], SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 72 to 74
Aug 28 11:48:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:48:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:48:24 Server06 snapd[921]: 2017/08/28 11:48:24.054793 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:48:24 Server06 snapd[921]: 2017/08/28 11:48:24.054823 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:50:01 Server06 CRON[1226]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:50:01 Server06 CRON[1227]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:50:01 Server06 root[1232]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 11:50:01 Server06 CRON[1226]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:50:01 Server06 CRON[1226]: pam_unix(cron:session): session closed for user root
Aug 28 11:58:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 11:58:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 11:58:24 Server06 snapd[921]: 2017/08/28 11:58:24.054791 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 11:58:24 Server06 snapd[921]: 2017/08/28 11:58:24.054821 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 12:00:01 Server06 CRON[1237]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:00:01 Server06 CRON[1238]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:00:01 Server06 root[1243]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:00:01 Server06 CRON[1237]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:00:01 Server06 CRON[1237]: pam_unix(cron:session): session closed for user root
Aug 28 12:08:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:08:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:08:24 Server06 snapd[921]: 2017/08/28 12:08:24.054961 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:08:24 Server06 snapd[921]: 2017/08/28 12:08:24.054991 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:10:01 Server06 CRON[1248]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:10:01 Server06 CRON[1249]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:10:01 Server06 root[1254]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:10:01 Server06 CRON[1248]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:10:01 Server06 CRON[1248]: pam_unix(cron:session): session closed for user root
Aug 28 12:17:01 Server06 CRON[1257]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:17:01 Server06 CRON[1258]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Aug 28 12:17:01 Server06 CRON[1257]: pam_unix(cron:session): session closed for user root
Aug 28 12:20:01 Server06 CRON[1262]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:20:01 Server06 CRON[1263]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:20:01 Server06 root[1268]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:20:01 Server06 CRON[1262]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:20:01 Server06 CRON[1262]: pam_unix(cron:session): session closed for user root
Aug 28 12:23:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:23:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:23:24 Server06 snapd[921]: 2017/08/28 12:23:24.054920 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:23:24 Server06 snapd[921]: 2017/08/28 12:23:24.054949 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:30:01 Server06 CRON[1272]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:30:01 Server06 CRON[1273]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:30:01 Server06 root[1278]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:30:01 Server06 CRON[1272]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:30:01 Server06 CRON[1272]: pam_unix(cron:session): session closed for user root
Aug 28 12:38:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:38:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:38:24 Server06 snapd[921]: 2017/08/28 12:38:24.054800 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:38:24 Server06 snapd[921]: 2017/08/28 12:38:24.054829 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:40:01 Server06 CRON[1284]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:40:01 Server06 CRON[1285]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:40:01 Server06 root[1290]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:40:01 Server06 CRON[1284]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:40:01 Server06 CRON[1284]: pam_unix(cron:session): session closed for user root
Aug 28 12:48:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:48:24 Server06 snapd[921]: 2017/08/28 12:48:24.054794 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:48:24 Server06 snapd[921]: 2017/08/28 12:48:24.054824 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:48:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:50:01 Server06 CRON[1303]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:50:01 Server06 CRON[1304]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:50:01 Server06 root[1309]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:50:01 Server06 CRON[1303]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:50:01 Server06 CRON[1303]: pam_unix(cron:session): session closed for user root
Aug 28 12:58:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 12:58:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 12:58:24 Server06 snapd[921]: 2017/08/28 12:58:24.054983 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 12:58:24 Server06 snapd[921]: 2017/08/28 12:58:24.055014 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused

und das journalctl (komplett) folgende Zeile sind ROT markiert 207, 742, 743, 842, 1069, 998, die anderen 3 Zeilen muss ich noch mal schauen (Foto ist unschaf)

   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
-- Logs begin at Mo 2017-08-28 11:18:20 CEST, end at Mo 2017-08-28 13:00:01 CEST. --
Aug 28 11:18:20 Server06 systemd-journald[362]: Runtime journal (/run/log/journal/) is 8.0M, max 79.3M, 71.3M free.
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys cpuset
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys cpu
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys cpuacct
Aug 28 11:18:20 Server06 kernel: Linux version 4.4.0-92-generic (buildd@lcy01-17) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) ) #115-Ubuntu SMP Thu Aug 10 09:04:33 UTC 2017 (Ubuntu 4.4.0-92.115-generic 4.4.76)
Aug 28 11:18:20 Server06 kernel: Command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-92-generic root=UUID=b69c0aef-28c3-4d3d-80ec-5592e1ce081a ro
Aug 28 11:18:20 Server06 kernel: KERNEL supported cpus:
Aug 28 11:18:20 Server06 kernel:   Intel GenuineIntel
Aug 28 11:18:20 Server06 kernel:   AMD AuthenticAMD
Aug 28 11:18:20 Server06 kernel:   Centaur CentaurHauls
Aug 28 11:18:20 Server06 kernel: x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
Aug 28 11:18:20 Server06 kernel: x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
Aug 28 11:18:20 Server06 kernel: x86/fpu: Enabled xstate features 0x3, context size is 576 bytes, using 'standard' format.
Aug 28 11:18:20 Server06 kernel: x86/fpu: Using 'eager' FPU context switches.
Aug 28 11:18:20 Server06 kernel: e820: BIOS-provided physical RAM map:
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x0000000000000000-0x00000000000997ff] usable
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x0000000000099800-0x0000000000099bff] reserved
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x0000000000100000-0x00000000f1de3fff] usable
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x00000000f1de4000-0x00000000f1dedfff] ACPI data
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x00000000f1dee000-0x00000000f7ffffff] reserved
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x00000000fec00000-0x00000000fee0ffff] reserved
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x00000000ff800000-0x00000000ffffffff] reserved
Aug 28 11:18:20 Server06 kernel: BIOS-e820: [mem 0x0000000100000000-0x000000020bffefff] usable
Aug 28 11:18:20 Server06 kernel: NX (Execute Disable) protection: active
Aug 28 11:18:20 Server06 kernel: SMBIOS 2.7 present.
Aug 28 11:18:20 Server06 kernel: DMI: HP ProLiant MicroServer Gen8, BIOS J06 11/02/2015
Aug 28 11:18:20 Server06 kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Aug 28 11:18:20 Server06 kernel: e820: remove [mem 0x000a0000-0x000fffff] usable
Aug 28 11:18:20 Server06 kernel: e820: last_pfn = 0x20bfff max_arch_pfn = 0x400000000
Aug 28 11:18:20 Server06 kernel: MTRR default type: write-back
Aug 28 11:18:20 Server06 kernel: MTRR fixed ranges enabled:
Aug 28 11:18:20 Server06 kernel:   00000-9FFFF write-back
Aug 28 11:18:20 Server06 kernel:   A0000-BFFFF uncachable
Aug 28 11:18:20 Server06 kernel:   C0000-FFFFF write-protect
Aug 28 11:18:20 Server06 kernel: MTRR variable ranges enabled:
Aug 28 11:18:20 Server06 kernel:   0 base 0F4000000 mask FFC000000 uncachable
Aug 28 11:18:20 Server06 kernel:   1 base 0F8000000 mask FF8000000 uncachable
Aug 28 11:18:20 Server06 kernel:   2 disabled
Aug 28 11:18:20 Server06 kernel:   3 disabled
Aug 28 11:18:20 Server06 kernel:   4 disabled
Aug 28 11:18:20 Server06 kernel:   5 disabled
Aug 28 11:18:20 Server06 kernel:   6 disabled
Aug 28 11:18:20 Server06 kernel:   7 disabled
Aug 28 11:18:20 Server06 kernel:   8 disabled
Aug 28 11:18:20 Server06 kernel:   9 disabled
Aug 28 11:18:20 Server06 kernel: x86/PAT: Configuration [0-7]: WB  WC  UC- UC  WB  WC  UC- WT  
Aug 28 11:18:20 Server06 kernel: e820: last_pfn = 0xf1de4 max_arch_pfn = 0x400000000
Aug 28 11:18:20 Server06 kernel: found SMP MP-table at [mem 0x000f4f80-0x000f4f8f] mapped at [ffff8800000f4f80]
Aug 28 11:18:20 Server06 kernel: Scanning 1 areas for low memory corruption
Aug 28 11:18:20 Server06 kernel: Base memory trampoline at [ffff880000093000] 93000 size 24576
Aug 28 11:18:20 Server06 kernel: BRK [0x0220c000, 0x0220cfff] PGTABLE
Aug 28 11:18:20 Server06 kernel: BRK [0x0220d000, 0x0220dfff] PGTABLE
Aug 28 11:18:20 Server06 kernel: BRK [0x0220e000, 0x0220efff] PGTABLE
Aug 28 11:18:20 Server06 kernel: BRK [0x0220f000, 0x0220ffff] PGTABLE
Aug 28 11:18:20 Server06 kernel: BRK [0x02210000, 0x02210fff] PGTABLE
Aug 28 11:18:20 Server06 kernel: BRK [0x02211000, 0x02211fff] PGTABLE
Aug 28 11:18:20 Server06 kernel: RAMDISK: [mem 0x337bc000-0x35bd5fff]
Aug 28 11:18:20 Server06 kernel: ACPI: Early table checksum verification disabled
Aug 28 11:18:20 Server06 kernel: ACPI: RSDP 0x00000000000F4F00 000024 (v02 HP    )
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm1aControlBlock: 16/32 (20150930/tbfadt-623)
Aug 28 11:18:20 Server06 kernel: ACPI BIOS Warning (bug): 32/64X length mismatch in FADT/Pm2ControlBlock: 8/32 (20150930/tbfadt-623)
Aug 28 11:18:20 Server06 kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm1aControlBlock: 32, using default 16 (20150930/tbfadt-704)
Aug 28 11:18:20 Server06 kernel: ACPI BIOS Warning (bug): Invalid length for FADT/Pm2ControlBlock: 32, using default 8 (20150930/tbfadt-704)
Aug 28 11:18:20 Server06 kernel: ACPI: DSDT 0x00000000F1DE6640 001C1A (v01 HP     DSDT     00000001 INTL 20030228)
Aug 28 11:18:20 Server06 kernel: ACPI: FACS 0x00000000F1DE4140 000040
Aug 28 11:18:20 Server06 kernel: ACPI: FACS 0x00000000F1DE4140 000040
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: ACPI: MCFG 0x00000000F1DE4200 00003C (v01 HP     ProLiant 00000001      00000000)
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: ACPI: APIC 0x00000000F1DE4580 000252 (v01 HP     ProLiant 00000002      00000000)
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: [81B blob data]
Aug 28 11:18:20 Server06 kernel: ACPI: FFFF 0x00000000F1DE63C0 00002D (v01 HP     ProLiant 00000001      00000000)
Aug 28 11:18:20 Server06 kernel: ACPI: SSDT 0x00000000F1DE8280 000137 (v03 HP     CRSPCI0  00000002 HP   00000001)
Aug 28 11:18:20 Server06 kernel: ACPI: SSDT 0x00000000F1DE83C0 000177 (v03 HP     riser0   00000002 INTL 20030228)
Aug 28 11:18:20 Server06 kernel: ACPI: SSDT 0x00000000F1DE8540 0001E1 (v01 HP     pcc      00000001 INTL 20090625)
Aug 28 11:18:20 Server06 kernel: ACPI: SSDT 0x00000000F1DE8740 000377 (v01 HP     pmab     00000001 INTL 20090625)
Aug 28 11:18:20 Server06 kernel: ACPI: SSDT 0x00000000F1DE8AC0 000504 (v01 INTEL  PPM RCM  80000001 INTL 20061109)
Aug 28 11:18:20 Server06 kernel: ACPI: Local APIC address 0xfee00000
Aug 28 11:18:20 Server06 kernel: No NUMA configuration found
Aug 28 11:18:20 Server06 kernel: Faking a node at [mem 0x0000000000000000-0x000000020bffefff]
Aug 28 11:18:20 Server06 kernel: NODE_DATA(0) allocated [mem 0x20bffa000-0x20bffefff]
Aug 28 11:18:20 Server06 kernel: Zone ranges:
Aug 28 11:18:20 Server06 kernel:   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
Aug 28 11:18:20 Server06 kernel:   DMA32    [mem 0x0000000001000000-0x00000000ffffffff]
Aug 28 11:18:20 Server06 kernel:   Normal   [mem 0x0000000100000000-0x000000020bffefff]
Aug 28 11:18:20 Server06 kernel:   Device   empty
Aug 28 11:18:20 Server06 kernel: Movable zone start for each node
Aug 28 11:18:20 Server06 kernel: Early memory node ranges
Aug 28 11:18:20 Server06 kernel:   node   0: [mem 0x0000000000001000-0x0000000000098fff]
Aug 28 11:18:20 Server06 kernel:   node   0: [mem 0x0000000000100000-0x00000000f1de3fff]
Aug 28 11:18:20 Server06 kernel:   node   0: [mem 0x0000000100000000-0x000000020bffefff]
Aug 28 11:18:20 Server06 kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000020bffefff]
Aug 28 11:18:20 Server06 kernel: On node 0 totalpages: 2088315
Aug 28 11:18:20 Server06 kernel:   DMA zone: 64 pages used for memmap
Aug 28 11:18:20 Server06 kernel:   DMA zone: 21 pages reserved
Aug 28 11:18:20 Server06 kernel:   DMA zone: 3992 pages, LIFO batch:0
Aug 28 11:18:20 Server06 kernel:   DMA32 zone: 16320 pages used for memmap
Aug 28 11:18:20 Server06 kernel:   DMA32 zone: 986596 pages, LIFO batch:31
Aug 28 11:18:20 Server06 kernel:   Normal zone: 17152 pages used for memmap
Aug 28 11:18:20 Server06 kernel:   Normal zone: 1097727 pages, LIFO batch:31
Aug 28 11:18:20 Server06 kernel: ACPI: PM-Timer IO Port: 0x908
Aug 28 11:18:20 Server06 kernel: ACPI: Local APIC address 0xfee00000
Aug 28 11:18:20 Server06 kernel: ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
Aug 28 11:18:20 Server06 kernel: IOAPIC[0]: apic_id 8, version 32, address 0xfec00000, GSI 0-23
Aug 28 11:18:20 Server06 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 high edge)
Aug 28 11:18:20 Server06 kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Aug 28 11:18:20 Server06 kernel: ACPI: IRQ0 used by override.
Aug 28 11:18:20 Server06 kernel: ACPI: IRQ9 used by override.
Aug 28 11:18:20 Server06 kernel: Using ACPI (MADT) for SMP configuration information
Aug 28 11:18:20 Server06 kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000
Aug 28 11:18:20 Server06 kernel: smpboot: Allowing 64 CPUs, 62 hotplug CPUs
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0x00099000-0x00099fff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0x00099000-0x0009dfff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0xf1de4000-0xf1dedfff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0xf1dee000-0xf7ffffff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0xf8000000-0xfebfffff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0xfec00000-0xfee0ffff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0xfee10000-0xff7fffff]
Aug 28 11:18:20 Server06 kernel: PM: Registered nosave memory: [mem 0xff800000-0xffffffff]
Aug 28 11:18:20 Server06 kernel: e820: [mem 0xf8000000-0xfebfffff] available for PCI devices
Aug 28 11:18:20 Server06 kernel: Booting paravirtualized kernel on bare hardware
Aug 28 11:18:20 Server06 kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Aug 28 11:18:20 Server06 kernel: setup_percpu: NR_CPUS:512 nr_cpumask_bits:512 nr_cpu_ids:64 nr_node_ids:1
Aug 28 11:18:20 Server06 kernel: PERCPU: Embedded 33 pages/cpu @ffff880202200000 s98264 r8192 d28712 u262144
Aug 28 11:18:20 Server06 kernel: pcpu-alloc: s98264 r8192 d28712 u262144 alloc=1*2097152
Aug 28 11:18:20 Server06 kernel: pcpu-alloc: [0] 00 01 02 03 04 05 06 07 [0] 08 09 10 11 12 13 14 15 
Aug 28 11:18:20 Server06 kernel: pcpu-alloc: [0] 16 17 18 19 20 21 22 23 [0] 24 25 26 27 28 29 30 31 
Aug 28 11:18:20 Server06 kernel: pcpu-alloc: [0] 32 33 34 35 36 37 38 39 [0] 40 41 42 43 44 45 46 47 
Aug 28 11:18:20 Server06 kernel: pcpu-alloc: [0] 48 49 50 51 52 53 54 55 [0] 56 57 58 59 60 61 62 63 
Aug 28 11:18:20 Server06 kernel: Built 1 zonelists in Node order, mobility grouping on.  Total pages: 2054758
Aug 28 11:18:20 Server06 kernel: Policy zone: Normal
Aug 28 11:18:20 Server06 kernel: Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.0-92-generic root=UUID=b69c0aef-28c3-4d3d-80ec-5592e1ce081a ro
Aug 28 11:18:20 Server06 kernel: log_buf_len individual max cpu contribution: 4096 bytes
Aug 28 11:18:20 Server06 kernel: log_buf_len total cpu_extra contributions: 258048 bytes
Aug 28 11:18:20 Server06 kernel: log_buf_len min size: 262144 bytes
Aug 28 11:18:20 Server06 kernel: log_buf_len: 524288 bytes
Aug 28 11:18:20 Server06 kernel: early log buf free: 251640(95%)
Aug 28 11:18:20 Server06 kernel: PID hash table entries: 4096 (order: 3, 32768 bytes)
Aug 28 11:18:20 Server06 kernel: Calgary: detecting Calgary via BIOS EBDA area
Aug 28 11:18:20 Server06 kernel: Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Aug 28 11:18:20 Server06 kernel: Memory: 8089276K/8353260K available (8474K kernel code, 1294K rwdata, 3984K rodata, 1488K init, 1316K bss, 263984K reserved, 0K cma-reserved)
Aug 28 11:18:20 Server06 kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=64, Nodes=1
Aug 28 11:18:20 Server06 kernel: Hierarchical RCU implementation.
Aug 28 11:18:20 Server06 kernel:         Build-time adjustment of leaf fanout to 64.
Aug 28 11:18:20 Server06 kernel:         RCU restricting CPUs from NR_CPUS=512 to nr_cpu_ids=64.
Aug 28 11:18:20 Server06 kernel: RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=64
Aug 28 11:18:20 Server06 kernel: NR_IRQS:33024 nr_irqs:936 16
Aug 28 11:18:20 Server06 kernel: Console: colour dummy device 80x25
Aug 28 11:18:20 Server06 kernel: console [tty0] enabled
Aug 28 11:18:20 Server06 kernel: clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
Aug 28 11:18:20 Server06 kernel: hpet clockevent registered
Aug 28 11:18:20 Server06 kernel: tsc: Fast TSC calibration using PIT
Aug 28 11:18:20 Server06 kernel: tsc: Detected 2294.837 MHz processor
Aug 28 11:18:20 Server06 kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 4589.67 BogoMIPS (lpj=9179348)
Aug 28 11:18:20 Server06 kernel: pid_max: default: 65536 minimum: 512
Aug 28 11:18:20 Server06 kernel: ACPI: Core revision 20150930
Aug 28 11:18:20 Server06 kernel: ACPI: 6 ACPI AML tables successfully acquired and loaded
Aug 28 11:18:20 Server06 kernel: Security Framework initialized
Aug 28 11:18:20 Server06 kernel: Yama: becoming mindful.
Aug 28 11:18:20 Server06 kernel: AppArmor: AppArmor initialized
Aug 28 11:18:20 Server06 kernel: Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Aug 28 11:18:20 Server06 kernel: Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Aug 28 11:18:20 Server06 kernel: Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug 28 11:18:20 Server06 kernel: Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys io
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys memory
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys devices
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys freezer
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys net_cls
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys perf_event
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys net_prio
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys hugetlb
Aug 28 11:18:20 Server06 kernel: Initializing cgroup subsys pids
Aug 28 11:18:20 Server06 kernel: CPU: Physical Processor ID: 0
Aug 28 11:18:20 Server06 kernel: CPU: Processor Core ID: 0
Aug 28 11:18:20 Server06 kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Aug 28 11:18:20 Server06 kernel: ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Aug 28 11:18:20 Server06 kernel: mce: CPU supports 7 MCE banks
Aug 28 11:18:20 Server06 kernel: CPU0: Thermal monitoring enabled (TM1)
Aug 28 11:18:20 Server06 kernel: process: using mwait in idle threads
Aug 28 11:18:20 Server06 kernel: Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
Aug 28 11:18:20 Server06 kernel: Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
Aug 28 11:18:20 Server06 kernel: Freeing SMP alternatives memory: 32K (ffffffff820b9000 - ffffffff820c1000)
Aug 28 11:18:20 Server06 kernel: ftrace: allocating 32131 entries in 126 pages
Aug 28 11:18:20 Server06 kernel: smpboot: APIC(0) Converting physical 0 to logical package 0
Aug 28 11:18:20 Server06 kernel: smpboot: Max logical packages: 32
Aug 28 11:18:20 Server06 kernel: Switched APIC routing to physical flat.
Aug 28 11:18:20 Server06 kernel: ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Aug 28 11:18:20 Server06 kernel: TSC deadline timer enabled
Aug 28 11:18:20 Server06 kernel: smpboot: CPU0: Intel(R) Celeron(R) CPU G1610T @ 2.30GHz (family: 0x6, model: 0x3a, stepping: 0x9)
Aug 28 11:18:20 Server06 kernel: Performance Events: PEBS fmt1+, 16-deep LBR, IvyBridge events, full-width counters, Broken BIOS detected, complain to your hardware vendor.
Aug 28 11:18:20 Server06 kernel: [Firmware Bug]: the BIOS has corrupted hw-PMU resources (MSR 38d is 330)
Aug 28 11:18:20 Server06 kernel: Intel PMU driver.
Aug 28 11:18:20 Server06 kernel: ... version:                3
Aug 28 11:18:20 Server06 kernel: ... bit width:              48
Aug 28 11:18:20 Server06 kernel: ... generic registers:      8
Aug 28 11:18:20 Server06 kernel: ... value mask:             0000ffffffffffff
Aug 28 11:18:20 Server06 kernel: ... max period:             00007fffffffffff
Aug 28 11:18:20 Server06 kernel: ... fixed-purpose events:   3
Aug 28 11:18:20 Server06 kernel: ... event mask:             00000007000000ff
Aug 28 11:18:20 Server06 kernel: x86: Booting SMP configuration:
Aug 28 11:18:20 Server06 kernel: .... node  #0, CPUs:        #1
Aug 28 11:18:20 Server06 kernel: x86: Booted up 1 node, 2 CPUs
Aug 28 11:18:20 Server06 kernel: smpboot: Total of 2 processors activated (9179.34 BogoMIPS)
Aug 28 11:18:20 Server06 kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 28 11:18:20 Server06 kernel: devtmpfs: initialized
Aug 28 11:18:20 Server06 kernel: evm: security.selinux
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64EXEC
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64TRANSMUTE
Aug 28 11:18:20 Server06 kernel: evm: security.SMACK64MMAP
Aug 28 11:18:20 Server06 kernel: evm: security.ima
Aug 28 11:18:20 Server06 kernel: evm: security.capability
Aug 28 11:18:20 Server06 kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Aug 28 11:18:20 Server06 kernel: futex hash table entries: 16384 (order: 8, 1048576 bytes)
Aug 28 11:18:20 Server06 kernel: pinctrl core: initialized pinctrl subsystem
Aug 28 11:18:20 Server06 kernel: RTC time:  9:18:09, date: 08/28/17
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 16
Aug 28 11:18:20 Server06 kernel: cpuidle: using governor ladder
Aug 28 11:18:20 Server06 kernel: cpuidle: using governor menu
Aug 28 11:18:20 Server06 kernel: PCCT header not found.
Aug 28 11:18:20 Server06 kernel: ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Aug 28 11:18:20 Server06 kernel: ACPI: bus type PCI registered
Aug 28 11:18:20 Server06 kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Aug 28 11:18:20 Server06 kernel: PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf4000000-0xf7ffffff] (base 0xf4000000)
Aug 28 11:18:20 Server06 kernel: PCI: MMCONFIG at [mem 0xf4000000-0xf7ffffff] reserved in E820
Aug 28 11:18:20 Server06 kernel: PCI: Using configuration type 1 for base access
Aug 28 11:18:20 Server06 kernel: NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Aug 28 11:18:20 Server06 kernel: core: PMU erratum BJ122, BV98, HSD29 workaround disabled, HT off
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(Module Device)
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(Processor Device)
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(3.0 _SCP Extensions)
Aug 28 11:18:20 Server06 kernel: ACPI: Added _OSI(Processor Aggregator Device)
Aug 28 11:18:20 Server06 kernel: ACPI: Interpreter enabled
Aug 28 11:18:20 Server06 kernel: ACPI: (supports S0 S4 S5)
Aug 28 11:18:20 Server06 kernel: ACPI: Using IOAPIC for interrupt routing
Aug 28 11:18:20 Server06 kernel: HEST: Table parsing has been initialized.
Aug 28 11:18:20 Server06 kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-14])
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PME AER PCIeCapability]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC: platform willing to grant []
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Aug 28 11:18:20 Server06 kernel: acpi PNP0A08:00: host bridge window expanded to [mem 0xfed00000-0xfed44fff window]; [mem 0xfed00000-0xfed44fff window] ignored
Aug 28 11:18:20 Server06 kernel: PCI host bridge to bus 0000:00
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [mem 0xf8000000-0xfbffffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x1000-0xffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x0000-0x03af window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x03e0-0x0cf7 window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x0d00-0x0fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [mem 0xfed00000-0xfed44fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x03b0-0x03bb window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [io  0x03c0-0x03df window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: root bus resource [bus 00-14]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:00.0: [8086:0150] type 00 class 0x060000
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: [8086:0151] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: [8086:015d] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1a.0: [8086:1c2d] type 00 class 0x0c0320
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1a.0: reg 0x10: [mem 0xfacf0000-0xfacf03ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: [8086:1c10] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: [8086:1c18] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: [8086:1c1c] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: [8086:1c1e] type 01 class 0x060400
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1d.0: [8086:1c26] type 00 class 0x0c0320
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1d.0: reg 0x10: [mem 0xface0000-0xface03ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.0: [8086:1c54] type 00 class 0x060100
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: [8086:1c02] type 00 class 0x010601
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x10: [io  0x1000-0x1007]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x14: [io  0x1008-0x100b]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x18: [io  0x1010-0x1017]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x1c: [io  0x1018-0x101b]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x20: [io  0x1020-0x103f]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: reg 0x24: [mem 0xfacd0000-0xfacd07ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1f.2: PME# supported from D3hot
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: PCI bridge to [bus 07]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: PCI bridge to [bus 02]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: PCI bridge to [bus 0d]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: [14e4:165f] type 00 class 0x020000
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x10: [mem 0xfabf0000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x18: [mem 0xfabe0000-0xfabeffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x20: [mem 0xfabd0000-0xfabdffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: [14e4:165f] type 00 class 0x020000
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x10: [mem 0xfabc0000-0xfabcffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x18: [mem 0xfabb0000-0xfabbffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x20: [mem 0xfaba0000-0xfabaffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: reg 0x30: [mem 0x00000000-0x0001ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfab00000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:04:00.0: [1912:0014] type 00 class 0x0c0330
Aug 28 11:18:20 Server06 kernel: pci 0000:04:00.0: reg 0x10: [mem 0xfbff0000-0xfbff1fff 64bit]
Aug 28 11:18:20 Server06 kernel: pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6:   bridge window [mem 0xfbf00000-0xfbffffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: [103c:3306] type 00 class 0x088000
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: reg 0x10: [io  0x3000-0x30ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: reg 0x14: [mem 0xfbef0000-0xfbef01ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.0: reg 0x18: [io  0x3400-0x34ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: [102b:0533] type 00 class 0x030000
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: reg 0x10: [mem 0xf9000000-0xf9ffffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: reg 0x14: [mem 0xfbee0000-0xfbee3fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: reg 0x18: [mem 0xfb000000-0xfb7fffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: [103c:3307] type 00 class 0x088000
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x10: [io  0x3800-0x38ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x14: [mem 0xfaff0000-0xfaff00ff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x18: [mem 0xfae00000-0xfaefffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x1c: [mem 0xfad80000-0xfadfffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x20: [mem 0xfad70000-0xfad77fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x24: [mem 0xfad60000-0xfad67fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: reg 0x30: [mem 0x00000000-0x0000ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: PME# supported from D0 D3hot D3cold
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.4: [103c:3300] type 00 class 0x0c0300
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.4: reg 0x20: [io  0x4000-0x401f]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: PCI bridge to [bus 01]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [io  0x3000-0x4fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xfad00000-0xfbefffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xf9000000-0xf9ffffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0: PCI bridge to [bus 14] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [mem 0xf8000000-0xfbffffff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x1000-0xffff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x0000-0x03af window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x03e0-0x0cf7 window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x0d00-0x0fff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [mem 0xfed00000-0xfed44fff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x03b0-0x03bb window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [io  0x03c0-0x03df window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: on NUMA node 0
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKA] (IRQs 5 7 10 *11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *7 10 11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKC] (IRQs 5 7 10 *11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKD] (IRQs 5 7 *10 11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKE] (IRQs *5 7 10 11)
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKF] (IRQs 5 7 10 11) *4
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKG] (IRQs 5 7 10 11) *0, disabled.
Aug 28 11:18:20 Server06 kernel: ACPI: PCI Interrupt Link [LNKH] (IRQs 5 7 10 11) *0, disabled.
Aug 28 11:18:20 Server06 kernel: vgaarb: setting as boot device: PCI:0000:01:00.1
Aug 28 11:18:20 Server06 kernel: vgaarb: device added: PCI:0000:01:00.1,decodes=io+mem,owns=io+mem,locks=none
Aug 28 11:18:20 Server06 kernel: vgaarb: loaded
Aug 28 11:18:20 Server06 kernel: vgaarb: bridge control possible 0000:01:00.1
Aug 28 11:18:20 Server06 kernel: SCSI subsystem initialized
Aug 28 11:18:20 Server06 kernel: libata version 3.00 loaded.
Aug 28 11:18:20 Server06 kernel: ACPI: bus type USB registered
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver usbfs
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver hub
Aug 28 11:18:20 Server06 kernel: usbcore: registered new device driver usb
Aug 28 11:18:20 Server06 kernel: PCI: Using ACPI for IRQ routing
Aug 28 11:18:20 Server06 kernel: PCI: pci_cache_line_size set to 64 bytes
Aug 28 11:18:20 Server06 kernel: e820: reserve RAM buffer [mem 0x00099800-0x0009ffff]
Aug 28 11:18:20 Server06 kernel: e820: reserve RAM buffer [mem 0xf1de4000-0xf3ffffff]
Aug 28 11:18:20 Server06 kernel: e820: reserve RAM buffer [mem 0x20bfff000-0x20bffffff]
Aug 28 11:18:20 Server06 kernel: NetLabel: Initializing
Aug 28 11:18:20 Server06 kernel: NetLabel:  domain hash size = 128
Aug 28 11:18:20 Server06 kernel: NetLabel:  protocols = UNLABELED CIPSOv4
Aug 28 11:18:20 Server06 kernel: NetLabel:  unlabeled traffic allowed by default
Aug 28 11:18:20 Server06 kernel: hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Aug 28 11:18:20 Server06 kernel: hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Aug 28 11:18:20 Server06 kernel: amd_nb: Cannot enumerate AMD northbridges
Aug 28 11:18:20 Server06 kernel: clocksource: Switched to clocksource hpet
Aug 28 11:18:20 Server06 kernel: AppArmor: AppArmor Filesystem Enabled
Aug 28 11:18:20 Server06 kernel: pnp: PnP ACPI init
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0408-0x040f] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x04d0-0x04d1] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0310-0x0313] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0316-0x0317] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0700-0x071f] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0880-0x08ff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0900-0x097f] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0cd4-0x0cd7] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0cd0-0x0cd3] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0f50-0x0f58] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0ca0-0x0ca1] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x0ca4-0x0ca5] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [io  0x02f8-0x02ff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [mem 0xf4000000-0xf7ffffff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: [mem 0xfe000000-0xfebfffff] has been reserved
Aug 28 11:18:20 Server06 kernel: system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Aug 28 11:18:20 Server06 kernel: pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
Aug 28 11:18:20 Server06 kernel: pnp 00:02: Plug and Play ACPI device, IDs PNP0303 (active)
Aug 28 11:18:20 Server06 kernel: pnp 00:03: Plug and Play ACPI device, IDs PNP0f13 PNP0f0e (active)
Aug 28 11:18:20 Server06 kernel: pnp: PnP ACPI: found 4 devices
Aug 28 11:18:20 Server06 kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: BAR 14: assigned [mem 0xf8000000-0xf80fffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:01.0: PCI bridge to [bus 07]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:06.0: PCI bridge to [bus 02]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.0: PCI bridge to [bus 0d]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.0: BAR 6: assigned [mem 0xf8000000-0xf801ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:03:00.1: BAR 6: assigned [mem 0xf8020000-0xf803ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4: PCI bridge to [bus 03]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4:   bridge window [mem 0xf8000000-0xf80fffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.4:   bridge window [mem 0xfab00000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6: PCI bridge to [bus 04]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.6:   bridge window [mem 0xfbf00000-0xfbffffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.2: BAR 6: assigned [mem 0xfad00000-0xfad0ffff pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7: PCI bridge to [bus 01]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [io  0x3000-0x4fff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xfad00000-0xfbefffff]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1c.7:   bridge window [mem 0xf9000000-0xf9ffffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci 0000:00:1e.0: PCI bridge to [bus 14]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 4 [mem 0xf8000000-0xfbffffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 5 [io  0x1000-0xffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 6 [io  0x0000-0x03af window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 7 [io  0x03e0-0x0cf7 window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 8 [io  0x0d00-0x0fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 9 [mem 0xfed00000-0xfed44fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 10 [io  0x03b0-0x03bb window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 11 [io  0x03c0-0x03df window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:00: resource 12 [mem 0x000a0000-0x000bffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:03: resource 1 [mem 0xf8000000-0xf80fffff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:03: resource 2 [mem 0xfab00000-0xfabfffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:04: resource 1 [mem 0xfbf00000-0xfbffffff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:01: resource 0 [io  0x3000-0x4fff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:01: resource 1 [mem 0xfad00000-0xfbefffff]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:01: resource 2 [mem 0xf9000000-0xf9ffffff 64bit pref]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 4 [mem 0xf8000000-0xfbffffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 5 [io  0x1000-0xffff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 6 [io  0x0000-0x03af window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 7 [io  0x03e0-0x0cf7 window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 8 [io  0x0d00-0x0fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 9 [mem 0xfed00000-0xfed44fff window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 10 [io  0x03b0-0x03bb window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 11 [io  0x03c0-0x03df window]
Aug 28 11:18:20 Server06 kernel: pci_bus 0000:14: resource 12 [mem 0x000a0000-0x000bffff window]
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 2
Aug 28 11:18:20 Server06 kernel: TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Aug 28 11:18:20 Server06 kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Aug 28 11:18:20 Server06 kernel: TCP: Hash tables configured (established 65536 bind 65536)
Aug 28 11:18:20 Server06 kernel: UDP hash table entries: 4096 (order: 5, 131072 bytes)
Aug 28 11:18:20 Server06 kernel: UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 1
Aug 28 11:18:20 Server06 kernel: pci 0000:01:00.1: Video device with shadowed ROM
Aug 28 11:18:20 Server06 kernel: PCI: CLS 64 bytes, default 64
Aug 28 11:18:20 Server06 kernel: Unpacking initramfs...
Aug 28 11:18:20 Server06 kernel: Freeing initrd memory: 36968K (ffff8800337bc000 - ffff880035bd6000)
Aug 28 11:18:20 Server06 kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Aug 28 11:18:20 Server06 kernel: software IO TLB [mem 0xedde4000-0xf1de4000] (64MB) mapped at [ffff8800edde4000-ffff8800f1de3fff]
Aug 28 11:18:20 Server06 kernel: RAPL PMU detected, API unit is 2^-32 Joules, 3 fixed counters 163840 ms ovfl timer
Aug 28 11:18:20 Server06 kernel: hw unit of domain pp0-core 2^-16 Joules
Aug 28 11:18:20 Server06 kernel: hw unit of domain package 2^-16 Joules
Aug 28 11:18:20 Server06 kernel: hw unit of domain pp1-gpu 2^-16 Joules
Aug 28 11:18:20 Server06 kernel: Scanning for low memory corruption every 60 seconds
Aug 28 11:18:20 Server06 kernel: audit: initializing netlink subsys (disabled)
Aug 28 11:18:20 Server06 kernel: audit: type=2000 audit(1503911889.936:1): initialized
Aug 28 11:18:20 Server06 kernel: Initialise system trusted keyring
Aug 28 11:18:20 Server06 kernel: HugeTLB registered 2 MB page size, pre-allocated 0 pages
Aug 28 11:18:20 Server06 kernel: zbud: loaded
Aug 28 11:18:20 Server06 kernel: VFS: Disk quotas dquot_6.6.0
Aug 28 11:18:20 Server06 kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Aug 28 11:18:20 Server06 kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher
Aug 28 11:18:20 Server06 kernel: fuse init (API version 7.23)
Aug 28 11:18:20 Server06 kernel: Key type big_key registered
Aug 28 11:18:20 Server06 kernel: Allocating IMA MOK and blacklist keyrings.
Aug 28 11:18:20 Server06 kernel: Key type asymmetric registered
Aug 28 11:18:20 Server06 kernel: Asymmetric key parser 'x509' registered
Aug 28 11:18:20 Server06 kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Aug 28 11:18:20 Server06 kernel: io scheduler noop registered
Aug 28 11:18:20 Server06 kernel: io scheduler deadline registered (default)
Aug 28 11:18:20 Server06 kernel: io scheduler cfq registered
Aug 28 11:18:20 Server06 kernel: pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Aug 28 11:18:20 Server06 kernel: pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Aug 28 11:18:20 Server06 kernel: vesafb: mode is 1280x1024x32, linelength=5120, pages=0
Aug 28 11:18:20 Server06 kernel: vesafb: scrolling: redraw
Aug 28 11:18:20 Server06 kernel: vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Aug 28 11:18:20 Server06 kernel: vesafb: framebuffer at 0xf9000000, mapped to 0xffffc90001000000, using 5120k, total 5120k
Aug 28 11:18:20 Server06 kernel: Console: switching to colour frame buffer device 160x64
Aug 28 11:18:20 Server06 kernel: fb0: VESA VGA frame buffer device
Aug 28 11:18:20 Server06 kernel: intel_idle: MWAIT substates: 0x1120
Aug 28 11:18:20 Server06 kernel: intel_idle: v0.4.1 model 0x3A
Aug 28 11:18:20 Server06 kernel: intel_idle: lapic_timer_reliable_states 0xffffffff
Aug 28 11:18:20 Server06 kernel: input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Aug 28 11:18:20 Server06 kernel: ACPI: Power Button [PWRF]
Aug 28 11:18:20 Server06 kernel: thermal LNXTHERM:00: registered as thermal_zone0
Aug 28 11:18:20 Server06 kernel: ACPI: Thermal Zone [THM0] (8 C)
Aug 28 11:18:20 Server06 kernel: ERST: Error Record Serialization Table (ERST) support is initialized.
Aug 28 11:18:20 Server06 kernel: pstore: Registered erst as persistent store backend
Aug 28 11:18:20 Server06 kernel: GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
Aug 28 11:18:20 Server06 kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Aug 28 11:18:20 Server06 kernel: serial8250: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
Aug 28 11:18:20 Server06 kernel: Linux agpgart interface v0.103
Aug 28 11:18:20 Server06 kernel: loop: module loaded
Aug 28 11:18:20 Server06 kernel: libphy: Fixed MDIO Bus: probed
Aug 28 11:18:20 Server06 kernel: tun: Universal TUN/TAP device driver, 1.6
Aug 28 11:18:20 Server06 kernel: tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Aug 28 11:18:20 Server06 kernel: PPP generic driver version 2.4.2
Aug 28 11:18:20 Server06 kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Aug 28 11:18:20 Server06 kernel: ehci-pci: EHCI PCI platform driver
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: debug port 2
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: cache line size of 64 is not supported
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: irq 21, io mem 0xfacf0000
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
Aug 28 11:18:20 Server06 kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Aug 28 11:18:20 Server06 kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb1: Product: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb1: Manufacturer: Linux 4.4.0-92-generic ehci_hcd
Aug 28 11:18:20 Server06 kernel: usb usb1: SerialNumber: 0000:00:1a.0
Aug 28 11:18:20 Server06 kernel: hub 1-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 1-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: debug port 2
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: irq 20, io mem 0xface0000
Aug 28 11:18:20 Server06 kernel: ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Aug 28 11:18:20 Server06 kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Aug 28 11:18:20 Server06 kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb2: Product: EHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb2: Manufacturer: Linux 4.4.0-92-generic ehci_hcd
Aug 28 11:18:20 Server06 kernel: usb usb2: SerialNumber: 0000:00:1d.0
Aug 28 11:18:20 Server06 kernel: hub 2-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 2-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: ehci-platform: EHCI generic platform driver
Aug 28 11:18:20 Server06 kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Aug 28 11:18:20 Server06 kernel: ohci-pci: OHCI PCI platform driver
Aug 28 11:18:20 Server06 kernel: ohci-platform: OHCI generic platform driver
Aug 28 11:18:20 Server06 kernel: uhci_hcd: USB Universal Host Controller Interface driver
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: UHCI Host Controller
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: new USB bus registered, assigned bus number 3
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: detected 8 ports
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: port count misdetected? forcing to 2 ports
Aug 28 11:18:20 Server06 kernel: uhci_hcd 0000:01:00.4: irq 16, io base 0x00004000
Aug 28 11:18:20 Server06 kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Aug 28 11:18:20 Server06 kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb 1-1: new high-speed USB device number 2 using ehci-pci
Aug 28 11:18:20 Server06 kernel: usb usb3: Product: UHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb3: Manufacturer: Linux 4.4.0-92-generic uhci_hcd
Aug 28 11:18:20 Server06 kernel: usb usb3: SerialNumber: 0000:01:00.4
Aug 28 11:18:20 Server06 kernel: usb 2-1: new high-speed USB device number 2 using ehci-pci
Aug 28 11:18:20 Server06 kernel: hub 3-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 3-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 4
Aug 28 11:18:20 Server06 kernel: usb 1-1: New USB device found, idVendor=8087, idProduct=0024
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: hcc params 0x014051cf hci version 0x100 quirks 0x00000010
Aug 28 11:18:20 Server06 kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0002
Aug 28 11:18:20 Server06 kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb4: Product: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb4: Manufacturer: Linux 4.4.0-92-generic xhci-hcd
Aug 28 11:18:20 Server06 kernel: usb usb4: SerialNumber: 0000:04:00.0
Aug 28 11:18:20 Server06 kernel: hub 4-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 4-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: xhci_hcd 0000:04:00.0: new USB bus registered, assigned bus number 5
Aug 28 11:18:20 Server06 kernel: usb usb5: We don't know the algorithms for LPM for this host, disabling LPM.
Aug 28 11:18:20 Server06 kernel: usb usb5: New USB device found, idVendor=1d6b, idProduct=0003
Aug 28 11:18:20 Server06 kernel: usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Aug 28 11:18:20 Server06 kernel: usb usb5: Product: xHCI Host Controller
Aug 28 11:18:20 Server06 kernel: usb usb5: Manufacturer: Linux 4.4.0-92-generic xhci-hcd
Aug 28 11:18:20 Server06 kernel: usb usb5: SerialNumber: 0000:04:00.0
Aug 28 11:18:20 Server06 kernel: hub 5-0:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 5-0:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f0e:PS2M] at 0x60,0x64 irq 1,12
Aug 28 11:18:20 Server06 kernel: serio: i8042 KBD port at 0x60,0x64 irq 1
Aug 28 11:18:20 Server06 kernel: serio: i8042 AUX port at 0x60,0x64 irq 12
Aug 28 11:18:20 Server06 kernel: mousedev: PS/2 mouse device common for all mice
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: RTC can wake from S4
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: alarms up to one day, 114 bytes nvram, hpet irqs
Aug 28 11:18:20 Server06 kernel: i2c /dev entries driver
Aug 28 11:18:20 Server06 kernel: device-mapper: uevent: version 1.0.3
Aug 28 11:18:20 Server06 kernel: device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Aug 28 11:18:20 Server06 kernel: ledtrig-cpu: registered to indicate activity on CPUs
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 10
Aug 28 11:18:20 Server06 kernel: NET: Registered protocol family 17
Aug 28 11:18:20 Server06 kernel: Key type dns_resolver registered
Aug 28 11:18:20 Server06 kernel: microcode: CPU0 sig=0x306a9, pf=0x2, revision=0x1c
Aug 28 11:18:20 Server06 kernel: microcode: CPU1 sig=0x306a9, pf=0x2, revision=0x1c
Aug 28 11:18:20 Server06 kernel: microcode: Microcode Update Driver: v2.01 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Aug 28 11:18:20 Server06 kernel: registered taskstats version 1
Aug 28 11:18:20 Server06 kernel: Loading compiled-in X.509 certificates
Aug 28 11:18:20 Server06 kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 01a2b0d0dba8d37a863918580fc16590a7d146c8'
Aug 28 11:18:20 Server06 kernel: zswap: loaded using pool lzo/zbud
Aug 28 11:18:20 Server06 kernel: Key type trusted registered
Aug 28 11:18:20 Server06 kernel: Key type encrypted registered
Aug 28 11:18:20 Server06 kernel: AppArmor: AppArmor sha1 policy hashing enabled
Aug 28 11:18:20 Server06 kernel: ima: No TPM chip found, activating TPM-bypass!
Aug 28 11:18:20 Server06 kernel: evm: HMAC attrs: 0x1
Aug 28 11:18:20 Server06 kernel:   Magic number: 13:341:324
Aug 28 11:18:20 Server06 kernel: tty tty49: hash matches
Aug 28 11:18:20 Server06 kernel: acpi PNP0B00:00: hash matches
Aug 28 11:18:20 Server06 kernel: rtc_cmos 00:01: setting system clock to 2017-08-28 09:18:11 UTC (1503911891)
Aug 28 11:18:20 Server06 kernel: pcc-cpufreq: (v1.10.00) driver loaded with frequency limits: 2128 MHz, 2300 MHz
Aug 28 11:18:20 Server06 kernel: BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Aug 28 11:18:20 Server06 kernel: EDD information not available.
Aug 28 11:18:20 Server06 kernel: PM: Hibernation image not present or could not be loaded.
Aug 28 11:18:20 Server06 kernel: tsc: Refined TSC clocksource calibration: 2294.752 MHz
Aug 28 11:18:20 Server06 kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x2113d791df8, max_idle_ns: 440795280243 ns
Aug 28 11:18:20 Server06 kernel: usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: hub 1-1:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: Freeing unused kernel memory: 1488K (ffffffff81f45000 - ffffffff820b9000)
Aug 28 11:18:20 Server06 kernel: Write protecting the kernel read-only data: 14336k
Aug 28 11:18:20 Server06 kernel: hub 1-1:1.0: 6 ports detected
Aug 28 11:18:20 Server06 kernel: Freeing unused kernel memory: 1752K (ffff88000184a000 - ffff880001a00000)
Aug 28 11:18:20 Server06 kernel: Freeing unused kernel memory: 112K (ffff880001de4000 - ffff880001e00000)
Aug 28 11:18:20 Server06 kernel: usb 2-1: New USB device found, idVendor=8087, idProduct=0024
Aug 28 11:18:20 Server06 kernel: usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: hub 2-1:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 2-1:1.0: 6 ports detected
Aug 28 11:18:20 Server06 kernel: clocksource: Switched to clocksource tsc
Aug 28 11:18:20 Server06 kernel: random: systemd-udevd: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: random: udevadm: uninitialized urandom read (16 bytes read, 3 bits of entropy available)
Aug 28 11:18:20 Server06 kernel: FUJITSU Extended Socket Network Device Driver - version 1.0 - Copyright (c) 2015 FUJITSU LIMITED
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: version 3.0
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: SSS flag set, parallel bus scan disabled
Aug 28 11:18:20 Server06 kernel: pps_core: LinuxPPS API ver. 1 registered
Aug 28 11:18:20 Server06 kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Aug 28 11:18:20 Server06 kernel: ahci 0000:00:1f.2: flags: 64bit ncq sntf ilck stag pm led clo pmp pio slum part ems apst 
Aug 28 11:18:20 Server06 kernel: PTP clock support registered
Aug 28 11:18:20 Server06 kernel: tg3.c:v3.137 (May 11, 2014)
Aug 28 11:18:20 Server06 kernel: scsi host0: ahci
Aug 28 11:18:20 Server06 kernel: usb 2-1.3: new high-speed USB device number 3 using ehci-pci
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: new full-speed USB device number 3 using ehci-pci
Aug 28 11:18:20 Server06 kernel: scsi host1: ahci
Aug 28 11:18:20 Server06 kernel: scsi host2: ahci
Aug 28 11:18:20 Server06 kernel: scsi host3: ahci
Aug 28 11:18:20 Server06 kernel: scsi host4: ahci
Aug 28 11:18:20 Server06 kernel: scsi host5: ahci
Aug 28 11:18:20 Server06 kernel: ata1: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0100 irq 29
Aug 28 11:18:20 Server06 kernel: ata2: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0180 irq 29
Aug 28 11:18:20 Server06 kernel: ata3: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0200 irq 29
Aug 28 11:18:20 Server06 kernel: ata4: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0280 irq 29
Aug 28 11:18:20 Server06 kernel: ata5: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0300 irq 29
Aug 28 11:18:20 Server06 kernel: ata6: SATA max UDMA/133 abar m2048@0xfacd0000 port 0xfacd0380 irq 29
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: Tigon3 [partno(N/A) rev 5720000] (PCI Express) MAC address 70:10:6f:3e:41:80
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: Tigon3 [partno(N/A) rev 5720000] (PCI Express) MAC address 70:10:6f:3e:41:81
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
Aug 28 11:18:20 Server06 kernel: ata1: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
Aug 28 11:18:20 Server06 kernel: usb 2-1.3: New USB device found, idVendor=0424, idProduct=2660
Aug 28 11:18:20 Server06 kernel: usb 2-1.3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: hub 2-1.3:1.0: USB hub found
Aug 28 11:18:20 Server06 kernel: hub 2-1.3:1.0: 2 ports detected
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: New USB device found, idVendor=062a, idProduct=4101
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: Product: 2.4G Keyboard Mouse
Aug 28 11:18:20 Server06 kernel: usb 1-1.1: Manufacturer: MOSART Semi.
Aug 28 11:18:20 Server06 kernel: hidraw: raw HID events driver (C) Jiri Kosina
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: new high-speed USB device number 4 using ehci-pci
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.0 eno1: renamed from eth0
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver usbhid
Aug 28 11:18:20 Server06 kernel: usbhid: USB HID core driver
Aug 28 11:18:20 Server06 kernel: input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.0/0003:062A:4101.0001/input/input4
Aug 28 11:18:20 Server06 kernel: tg3 0000:03:00.1 eno2: renamed from eth1
Aug 28 11:18:20 Server06 kernel: ata2: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: hid-generic 0003:062A:4101.0001: input,hidraw0: USB HID v1.10 Keyboard [MOSART Semi. 2.4G Keyboard Mouse] on usb-0000:00:1a.0-1.1/input0
Aug 28 11:18:20 Server06 kernel: input: MOSART Semi. 2.4G Keyboard Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.1/1-1.1:1.1/0003:062A:4101.0002/input/input5
Aug 28 11:18:20 Server06 kernel: hid-generic 0003:062A:4101.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [MOSART Semi. 2.4G Keyboard Mouse] on usb-0000:00:1a.0-1.1/input1
Aug 28 11:18:20 Server06 kernel: ata3: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: ata4: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: new high-speed USB device number 5 using ehci-pci
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: New USB device found, idVendor=13fe, idProduct=5500
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: Product: USB DISK 3.0
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: Manufacturer:         
Aug 28 11:18:20 Server06 kernel: usb 1-1.5: SerialNumber: 07104A519915C273
Aug 28 11:18:20 Server06 kernel: usb-storage 1-1.5:1.0: USB Mass Storage device detected
Aug 28 11:18:20 Server06 kernel: scsi host6: usb-storage 1-1.5:1.0
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver usb-storage
Aug 28 11:18:20 Server06 kernel: usbcore: registered new interface driver uas
Aug 28 11:18:20 Server06 kernel: ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Aug 28 11:18:20 Server06 kernel: ata5.00: supports DRM functions and may not be fully accessible
Aug 28 11:18:20 Server06 kernel: ata5.00: READ LOG DMA EXT failed, trying unqueued
Aug 28 11:18:20 Server06 kernel: ata5.00: failed to get NCQ Send/Recv Log Emask 0x1
Aug 28 11:18:20 Server06 kernel: ata5.00: ATA-9: Samsung SSD 840 EVO 250GB, EXT0BB6Q, max UDMA/133
Aug 28 11:18:20 Server06 kernel: ata5.00: 488397168 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
Aug 28 11:18:20 Server06 kernel: ata5.00: supports DRM functions and may not be fully accessible
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: new high-speed USB device number 6 using ehci-pci
Aug 28 11:18:20 Server06 kernel: ata5.00: failed to get NCQ Send/Recv Log Emask 0x1
Aug 28 11:18:20 Server06 kernel: ata5.00: configured for UDMA/133
Aug 28 11:18:20 Server06 kernel: scsi 4:0:0:0: Direct-Access     ATA      Samsung SSD 840  BB6Q PQ: 0 ANSI: 5
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/233 GiB)
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: Attached scsi generic sg0 type 0
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Write Protect is off
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Aug 28 11:18:20 Server06 kernel:  sda: sda1 sda2 < sda5 >
Aug 28 11:18:20 Server06 kernel: sd 4:0:0:0: [sda] Attached SCSI disk
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: New USB device found, idVendor=0951, idProduct=1666
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: Product: DataTraveler 3.0
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: Manufacturer: Kingston
Aug 28 11:18:20 Server06 kernel: usb 1-1.3: SerialNumber: 0019E06B58C2F130C7330EE4
Aug 28 11:18:20 Server06 kernel: usb-storage 1-1.3:1.0: USB Mass Storage device detected
Aug 28 11:18:20 Server06 kernel: scsi host7: usb-storage 1-1.3:1.0
Aug 28 11:18:20 Server06 kernel: ata6: SATA link down (SStatus 0 SControl 300)
Aug 28 11:18:20 Server06 kernel: scsi 6:0:0:0: Direct-Access              USB DISK 3.0     PMAP PQ: 0 ANSI: 6
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: Attached scsi generic sg1 type 0
Aug 28 11:18:20 Server06 kernel: scsi 7:0:0:0: Direct-Access     Kingston DataTraveler 3.0      PQ: 0 ANSI: 6
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: Attached scsi generic sg2 type 0
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] 30218842 512-byte logical blocks: (15.5 GB/14.4 GiB)
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Write Protect is off
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Mode Sense: 4f 00 00 00
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Aug 28 11:18:20 Server06 kernel:  sdc: sdc1 sdc2
Aug 28 11:18:20 Server06 kernel: sd 7:0:0:0: [sdc] Attached SCSI removable disk
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] 60522496 512-byte logical blocks: (31.0 GB/28.9 GiB)
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Write Protect is off
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Mode Sense: 23 00 00 00
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] No Caching mode page found
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Assuming drive cache: write through
Aug 28 11:18:20 Server06 kernel:  sdb: sdb1
Aug 28 11:18:20 Server06 kernel: sd 6:0:0:0: [sdb] Attached SCSI removable disk
Aug 28 11:18:20 Server06 kernel: md: linear personality registered for level -1
Aug 28 11:18:20 Server06 kernel: md: multipath personality registered for level -4
Aug 28 11:18:20 Server06 kernel: md: raid0 personality registered for level 0
Aug 28 11:18:20 Server06 kernel: md: raid1 personality registered for level 1
Aug 28 11:18:20 Server06 kernel: raid6: sse2x1   gen()  6306 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x1   xor()  5001 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x2   gen()  7889 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x2   xor()  5550 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x4   gen()  9186 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: sse2x4   xor()  6854 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: using algorithm sse2x4 gen() 9186 MB/s
Aug 28 11:18:20 Server06 kernel: raid6: .... xor() 6854 MB/s, rmw enabled
Aug 28 11:18:20 Server06 kernel: raid6: using ssse3x2 recovery algorithm
Aug 28 11:18:20 Server06 kernel: xor: measuring software checksum speed
Aug 28 11:18:20 Server06 kernel:    prefetch64-sse: 12771.000 MB/sec
Aug 28 11:18:20 Server06 kernel:    generic_sse: 11653.000 MB/sec
Aug 28 11:18:20 Server06 kernel: xor: using function: prefetch64-sse (12771.000 MB/sec)
Aug 28 11:18:20 Server06 kernel: async_tx: api initialized (async)
Aug 28 11:18:20 Server06 kernel: md: raid6 personality registered for level 6
Aug 28 11:18:20 Server06 kernel: md: raid5 personality registered for level 5
Aug 28 11:18:20 Server06 kernel: md: raid4 personality registered for level 4
Aug 28 11:18:20 Server06 kernel: md: raid10 personality registered for level 10
Aug 28 11:18:20 Server06 kernel: Btrfs loaded
Aug 28 11:18:20 Server06 kernel: EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Aug 28 11:18:20 Server06 systemd[1]: systemd 229 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ -LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN)
Aug 28 11:18:20 Server06 systemd[1]: Detected architecture x86-64.
Aug 28 11:18:20 Server06 systemd[1]: Set hostname to <Server06>.
Aug 28 11:18:20 Server06 systemd[1]: Started Trigger resolvconf update for networkd DNS.
Aug 28 11:18:20 Server06 systemd[1]: Created slice System Slice.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Syslog Socket.
Aug 28 11:18:20 Server06 systemd[1]: Created slice User and Session Slice.
Aug 28 11:18:20 Server06 systemd[1]: Listening on fsck to fsckd communication Socket.
Aug 28 11:18:20 Server06 systemd[1]: Started Forward Password Requests to Wall Directory Watch.
Aug 28 11:18:20 Server06 systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
Aug 28 11:18:20 Server06 systemd[1]: Reached target Slices.
Aug 28 11:18:20 Server06 systemd[1]: Reached target User and Group Name Lookups.
Aug 28 11:18:20 Server06 systemd[1]: Listening on udev Control Socket.
Aug 28 11:18:20 Server06 systemd[1]: Listening on LVM2 metadata daemon socket.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Journal Socket (/dev/log).
Aug 28 11:18:20 Server06 systemd[1]: Listening on LVM2 poll daemon socket.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Journal Socket.
Aug 28 11:18:20 Server06 systemd[1]: Mounting Huge Pages File System...
Aug 28 11:18:20 Server06 systemd[1]: Mounting POSIX Message Queue File System...
Aug 28 11:18:20 Server06 systemd[1]: Mounting Debug File System...
Aug 28 11:18:20 Server06 systemd[1]: Starting Uncomplicated firewall...
Aug 28 11:18:20 Server06 systemd[1]: Starting Create list of required static device nodes for the current kernel...
Aug 28 11:18:20 Server06 systemd[1]: Reached target Encrypted Volumes.
Aug 28 11:18:20 Server06 systemd[1]: Listening on Journal Audit Socket.
Aug 28 11:18:20 Server06 systemd[1]: Starting Journal Service...
Aug 28 11:18:20 Server06 systemd[1]: Started Read required files in advance.
Aug 28 11:18:20 Server06 systemd-journald[362]: Journal started
Aug 28 11:18:20 Server06 systemd[1]: Listening on Device-mapper event daemon FIFOs.
Aug 28 11:18:21 Server06 systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
Aug 28 11:18:21 Server06 systemd[1]: Starting Set console keymap...
Aug 28 11:18:21 Server06 kernel: random: nonblocking pool is initialized
Aug 28 11:18:21 Server06 systemd[1]: Listening on udev Kernel Socket.
Aug 28 11:18:21 Server06 loadkeys[373]: Lade /etc/console-setup/cached.kmap.gz.
Aug 28 11:18:21 Server06 systemd[1]: Starting Load Kernel Modules...
Aug 28 11:18:21 Server06 systemd-modules-load[378]: Inserted module 'iscsi_tcp'
Aug 28 11:18:21 Server06 kernel: Loading iSCSI transport class v2.0-870.
Aug 28 11:18:21 Server06 kernel: iscsi: registered transport (tcp)
Aug 28 11:18:21 Server06 systemd[1]: Starting Nameserver information manager...
Aug 28 11:18:21 Server06 systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point.
Aug 28 11:18:21 Server06 systemd-modules-load[378]: Inserted module 'ib_iser'
Aug 28 11:18:21 Server06 kernel: iscsi: registered transport (iser)
Aug 28 11:18:21 Server06 systemd[1]: Mounted POSIX Message Queue File System.
Aug 28 11:18:21 Server06 systemd[1]: Mounted Debug File System.
Aug 28 11:18:21 Server06 systemd[1]: Mounted Huge Pages File System.
Aug 28 11:18:21 Server06 systemd[1]: Started Journal Service.
Aug 28 11:18:21 Server06 systemd[1]: Started Uncomplicated firewall.
Aug 28 11:18:21 Server06 systemd[1]: Started Create list of required static device nodes for the current kernel.
Aug 28 11:18:21 Server06 systemd[1]: Started Set console keymap.
Aug 28 11:18:21 Server06 systemd[1]: Started Load Kernel Modules.
Aug 28 11:18:21 Server06 systemd[1]: Started Nameserver information manager.
Aug 28 11:18:21 Server06 systemd[1]: Started LVM2 metadata daemon.
Aug 28 11:18:21 Server06 systemd[1]: Reached target Network (Pre).
Aug 28 11:18:21 Server06 systemd[1]: Mounting FUSE Control File System...
Aug 28 11:18:21 Server06 systemd[1]: Starting Apply Kernel Variables...
Aug 28 11:18:21 Server06 systemd[1]: Starting Create Static Device Nodes in /dev...
Aug 28 11:18:22 Server06 systemd[1]: Mounted FUSE Control File System.
Aug 28 11:18:22 Server06 systemd[1]: Started Apply Kernel Variables.
Aug 28 11:18:22 Server06 systemd[1]: Started Create Static Device Nodes in /dev.
Aug 28 11:18:22 Server06 systemd[1]: Starting udev Kernel Device Manager...
Aug 28 11:18:22 Server06 systemd[1]: Started udev Kernel Device Manager.
Aug 28 11:18:22 Server06 systemd[1]: Starting Remount Root and Kernel File Systems...
Aug 28 11:18:22 Server06 systemd[1]: Started Remount Root and Kernel File Systems.
Aug 28 11:18:22 Server06 kernel: EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Aug 28 11:18:22 Server06 systemd[1]: Starting Flush Journal to Persistent Storage...
Aug 28 11:18:22 Server06 systemd[1]: Starting Load/Save Random Seed...
Aug 28 11:18:22 Server06 systemd[1]: Starting udev Coldplug all Devices...
Aug 28 11:18:22 Server06 systemd[1]: Started Load/Save Random Seed.
Aug 28 11:18:22 Server06 systemd[1]: Started Flush Journal to Persistent Storage.
Aug 28 11:18:22 Server06 systemd[1]: Started udev Coldplug all Devices.
Aug 28 11:18:22 Server06 kernel: EDAC MC: Ver: 3.0.0
Aug 28 11:18:22 Server06 kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Aug 28 11:18:22 Server06 kernel: power_meter ACPI000D:00: Found ACPI power meter.
Aug 28 11:18:22 Server06 kernel: power_meter ACPI000D:00: Ignoring unsafe software power cap!
Aug 28 11:18:22 Server06 kernel: ipmi message handler version 39.2
Aug 28 11:18:22 Server06 systemd[1]: Started Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling.
Aug 28 11:18:22 Server06 kernel: ACPI Warning: SystemIO range 0x0000000000000928-0x000000000000092F conflicts with OpRegion 0x0000000000000920-0x000000000000092F (\SGPE) (20150930/utaddress-254)
Aug 28 11:18:22 Server06 kernel: ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Aug 28 11:18:22 Server06 kernel: lpc_ich: Resource conflict(s) found affecting gpio_ich
Aug 28 11:18:22 Server06 systemd[1]: Reached target Local File Systems (Pre).
Aug 28 11:18:22 Server06 systemd[1]: Reached target Local File Systems.
Aug 28 11:18:22 Server06 kernel: ipmi_si IPI0001:00: ipmi_si: probing via ACPI
Aug 28 11:18:22 Server06 kernel: ipmi_si IPI0001:00: [io  0x0ca2-0x0ca3] regsize 1 spacing 1 irq 0
Aug 28 11:18:22 Server06 kernel: ipmi_si: Adding ACPI-specified kcs state machine
Aug 28 11:18:22 Server06 kernel: IPMI System Interface driver.
Aug 28 11:18:22 Server06 kernel: ipmi_si: probing via SMBIOS
Aug 28 11:18:22 Server06 kernel: ipmi_si: SMBIOS: io 0xca2 regsize 1 spacing 1 irq 0
Aug 28 11:18:22 Server06 kernel: ipmi_si: Adding SMBIOS-specified kcs state machine duplicate interface
Aug 28 11:18:22 Server06 kernel: ipmi_si: probing via SPMI
Aug 28 11:18:22 Server06 kernel: ipmi_si: SPMI: io 0xca2 regsize 2 spacing 2 irq 0
Aug 28 11:18:22 Server06 kernel: ipmi_si: Adding SPMI-specified kcs state machine duplicate interface
Aug 28 11:18:22 Server06 kernel: ipmi_si: Trying ACPI-specified kcs state machine at i/o address 0xca2, slave address 0x0, irq 0
Aug 28 11:18:22 Server06 systemd[1]: Starting LSB: AppArmor initialization...
Aug 28 11:18:22 Server06 systemd[1]: Starting Set console font and keymap...
Aug 28 11:18:22 Server06 systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Aug 28 11:18:22 Server06 kernel: intel_rapl: Found RAPL domain package
Aug 28 11:18:22 Server06 kernel: intel_rapl: Found RAPL domain core
Aug 28 11:18:22 Server06 systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
Aug 28 11:18:22 Server06 systemd[1]: Starting Create Volatile Files and Directories...
Aug 28 11:18:22 Server06 systemd-tmpfiles[593]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Aug 28 11:18:22 Server06 systemd-udevd[461]: Process '/lib/udev/hdparm' failed with exit code 5.
Aug 28 11:18:22 Server06 systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Aug 28 11:18:22 Server06 systemd[1]: Started Create Volatile Files and Directories.
Aug 28 11:18:22 Server06 systemd[1]: Started Set console font and keymap.
Aug 28 11:18:22 Server06 systemd[1]: Found device Samsung_SSD_840_EVO_250GB 5.
Aug 28 11:18:22 Server06 systemd-udevd[467]: Process 'console-setup-tty fbcon' failed with exit code 71.
Aug 28 11:18:23 Server06 systemd[1]: Activating swap /dev/disk/by-uuid/257810c6-5608-4b02-94b0-d9fe8321c38f...
Aug 28 11:18:23 Server06 kernel: ipmi_si IPI0001:00: Found new BMC (man_id: 0x00000b, prod_id: 0x2000, dev_id: 0x13)
Aug 28 11:18:23 Server06 kernel: ipmi_si IPI0001:00: IPMI kcs interface initialized
Aug 28 11:18:23 Server06 kernel: IPMI SSIF Interface driver
Aug 28 11:18:23 Server06 kernel: gpio_ich: GPIO from 436 to 511 on gpio_ich
Aug 28 11:18:23 Server06 kernel: Adding 31249404k swap on /dev/sda5.  Priority:-1 extents:1 across:31249404k SSFS
Aug 28 11:18:23 Server06 systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Aug 28 11:18:23 Server06 systemd[1]: Created slice system-getty.slice.
Aug 28 11:18:23 Server06 systemd[1]: Starting Network Time Synchronization...
Aug 28 11:18:23 Server06 systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Aug 28 11:18:23 Server06 systemd[1]: Activated swap /dev/disk/by-uuid/257810c6-5608-4b02-94b0-d9fe8321c38f.
Aug 28 11:18:23 Server06 systemd[1]: Started Network Time Synchronization.
Aug 28 11:18:23 Server06 apparmor[491]:  * Starting AppArmor profiles
Aug 28 11:18:23 Server06 systemd[1]: Started Update UTMP about System Boot/Shutdown.
Aug 28 11:18:23 Server06 systemd[1]: Reached target System Time Synchronized.
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[784]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[783]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[785]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=785 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[786]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lxd/lxd-bridge-proxy" pid=786 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[787]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=787 comm="apparmor_parser"
Aug 28 11:18:23 Server06 audit[787]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=787 comm="apparmor_parser"
Aug 28 11:18:23 Server06 apparmor[491]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Aug 28 11:18:23 Server06 audit[789]: AVC apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=789 comm="apparmor_parser"
Aug 28 11:18:23 Server06 apparmor[491]:    ...done.
Aug 28 11:18:23 Server06 systemd[1]: Reached target Swap.
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.241:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=784 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-cgns" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-mounting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lxc-container-default-with-nesting" pid=783 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/lxc-start" pid=785 comm="apparmor_parser"
Aug 28 11:18:23 Server06 kernel: audit: type=1400 audit(1503911903.245:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lxd/lxd-bridge-proxy" pid=786 comm="apparmor_parser"
Aug 28 11:18:23 Server06 systemd[1]: Started LSB: AppArmor initialization.
Aug 28 11:18:23 Server06 systemd[1]: Starting Raise network interfaces...
Aug 28 11:18:23 Server06 systemd[1]: Reached target System Initialization.
Aug 28 11:18:23 Server06 systemd[1]: Listening on D-Bus System Message Bus Socket.
Aug 28 11:18:23 Server06 systemd[1]: Started ACPI Events Check.
Aug 28 11:18:23 Server06 systemd[1]: Reached target Paths.
Aug 28 11:18:23 Server06 systemd[1]: Listening on ACPID Listen Socket.
Aug 28 11:18:23 Server06 systemd[1]: Listening on UUID daemon activation socket.
Aug 28 11:18:23 Server06 systemd[1]: Started Daily Cleanup of Temporary Directories.
Aug 28 11:18:23 Server06 systemd[1]: Started Timer to automatically refresh installed snaps.
Aug 28 11:18:23 Server06 systemd[1]: Starting Socket activation for snappy daemon.
Aug 28 11:18:23 Server06 systemd[1]: Starting LXD - unix socket.
Aug 28 11:18:23 Server06 systemd[1]: Started ifup for eno1.
Aug 28 11:18:23 Server06 sh[801]: Not enough information: "dev" argument is required.
Aug 28 11:18:23 Server06 sh[801]: Failed to bring up eno1.
Aug 28 11:18:23 Server06 systemd[1]: Listening on Socket activation for snappy daemon.
Aug 28 11:18:23 Server06 systemd[1]: Listening on LXD - unix socket.
Aug 28 11:18:23 Server06 systemd[1]: ifup@eno1.service: Main process exited, code=exited, status=1/FAILURE
Aug 28 11:18:23 Server06 systemd[1]: Reached target Sockets.
Aug 28 11:18:23 Server06 ifup[815]: Not enough information: "dev" argument is required.
Aug 28 11:18:23 Server06 ifup[815]: Failed to bring up eno1.
Aug 28 11:18:23 Server06 systemd[1]: Reached target Basic System.
Aug 28 11:18:23 Server06 systemd[1]: Starting Login Service...
Aug 28 11:18:23 Server06 systemd[1]: Started FUSE filesystem for LXC.
Aug 28 11:18:23 Server06 systemd[1]: Starting LXD - container startup/shutdown...
Aug 28 11:18:23 Server06 kernel: cgroup: new mount options do not match the existing superblock, will be ignored
Aug 28 11:18:23 Server06 lxcfs[878]: hierarchies:
Aug 28 11:18:23 Server06 lxcfs[878]:   0: fd:   5: pids
Aug 28 11:18:23 Server06 lxcfs[878]:   1: fd:   6: cpuset
Aug 28 11:18:23 Server06 lxcfs[878]:   2: fd:   7: devices
Aug 28 11:18:23 Server06 lxcfs[878]:   3: fd:   8: perf_event
Aug 28 11:18:23 Server06 lxcfs[878]:   4: fd:   9: net_cls,net_prio
Aug 28 11:18:23 Server06 lxcfs[878]:   5: fd:  10: freezer
Aug 28 11:18:23 Server06 lxcfs[878]:   6: fd:  11: blkio
Aug 28 11:18:23 Server06 lxcfs[878]:   7: fd:  12: memory
Aug 28 11:18:23 Server06 lxcfs[878]:   8: fd:  13: cpu,cpuacct
Aug 28 11:18:23 Server06 lxcfs[878]:   9: fd:  14: hugetlb
Aug 28 11:18:23 Server06 lxcfs[878]:  10: fd:  15: name=systemd
Aug 28 11:18:23 Server06 systemd[1]: Starting System Logging Service...
Aug 28 11:18:23 Server06 systemd[1]: Started Regular background program processing daemon.
Aug 28 11:18:23 Server06 cron[894]: (CRON) INFO (pidfile fd = 3)
Aug 28 11:18:23 Server06 cron[894]: (CRON) INFO (Running @reboot jobs)
Aug 28 11:18:23 Server06 systemd[1]: Started Self Monitoring and Reporting Technology (SMART) Daemon.
Aug 28 11:18:23 Server06 systemd[1]: Starting LSB: Record successful boot for GRUB...
Aug 28 11:18:23 Server06 smartd[896]: smartd 6.5 2016-01-24 r4214 [x86_64-linux-4.4.0-92-generic] (local build)
Aug 28 11:18:23 Server06 smartd[896]: Copyright (C) 2002-16, Bruce Allen, Christian Franke, www.smartmontools.org
Aug 28 11:18:23 Server06 smartd[896]: Opened configuration file /etc/smartd.conf
Aug 28 11:18:23 Server06 smartd[896]: Drive: DEVICESCAN, implied '-a' Directive on line 21 of file /etc/smartd.conf
Aug 28 11:18:23 Server06 smartd[896]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda, type changed from 'scsi' to 'sat'
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], opened
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], Samsung SSD 840 EVO 250GB, S/N:S1DBNSBF386189M, WWN:5-002538-8a030e926, FW:EXT0BB6Q, 250 GB
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], found in smartd database: Samsung based SSDs
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], can't monitor Current_Pending_Sector count - no Attribute 197
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], can't monitor Offline_Uncorrectable count - no Attribute 198
Aug 28 11:18:23 Server06 systemd[1]: Starting Accounts Service...
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list.
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], state read from /var/lib/smartmontools/smartd.Samsung_SSD_840_EVO_250GB-S1DBNSBF386189M.ata.state
Aug 28 11:18:23 Server06 smartd[896]: Monitoring 1 ATA and 0 SCSI devices
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 73 to 72
Aug 28 11:18:23 Server06 smartd[896]: Device: /dev/sda [SAT], state written to /var/lib/smartmontools/smartd.Samsung_SSD_840_EVO_250GB-S1DBNSBF386189M.ata.state
Aug 28 11:18:23 Server06 systemd[1]: Started D-Bus System Message Bus.
Aug 28 11:18:23 Server06 dbus[908]: [system] AppArmor D-Bus mediation is enabled
Aug 28 11:18:23 Server06 dbus[908]: [system] Successfully activated service 'org.freedesktop.systemd1'
Aug 28 11:18:23 Server06 dbus[908]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkitd.service'
Aug 28 11:18:23 Server06 systemd[1]: Starting LSB: MD monitoring daemon...
Aug 28 11:18:23 Server06 systemd[1]: Started Deferred execution scheduler.
Aug 28 11:18:23 Server06 systemd[1]: Started ACPI event daemon.
Aug 28 11:18:23 Server06 acpid[919]: starting up with netlink and the input layer
Aug 28 11:18:23 Server06 acpid[919]: 1 rule loaded
Aug 28 11:18:23 Server06 acpid[919]: waiting for events: event logging is off
Aug 28 11:18:23 Server06 systemd[1]: Started Snappy daemon.
Aug 28 11:18:23 Server06 systemd[1]: Starting Auto import assertions from block devices...
Aug 28 11:18:23 Server06 snap[923]: auto-import is disabled on classic
Aug 28 11:18:23 Server06 systemd[1]: Started System Logging Service.
Aug 28 11:18:24 Server06 systemd[1]: Started LXD - container startup/shutdown.
Aug 28 11:18:24 Server06 systemd[1]: Started Auto import assertions from block devices.
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: daemon.go:250: DEBUG: init done in 693.401µs
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: daemon.go:251: started snapd/2.26.10 (series 16; classic) ubuntu/16.04 (amd64) linux/4.4.0-92-generic.
Aug 28 11:18:24 Server06 snapd[921]: 2017/08/28 11:18:24.053426 daemon.go:251: started snapd/2.26.10 (series 16; classic) ubuntu/16.04 (amd64) linux/4.4.0-92-generic.
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:504: DEBUG: Next refresh scheduled for 2017-08-28 11:18:24.054240021 +0200 CEST.
Aug 28 11:18:24 Server06 systemd[1]: networking.service: Main process exited, code=exited, status=1/FAILURE
Aug 28 11:18:24 Server06 systemd[1]: Failed to start Raise network interfaces.
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 snapd[921]: 2017/08/28 11:18:24.059735 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 snapd[921]: 2017/08/28 11:18:24.060162 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:49842->[::1]:53: read: connection refused
Aug 28 11:18:24 Server06 systemd[1]: networking.service: Unit entered failed state.
Aug 28 11:18:24 Server06 systemd[1]: networking.service: Failed with result 'exit-code'.
Aug 28 11:18:24 Server06 mdadm[913]:  * Starting MD monitoring service mdadm --monitor
Aug 28 11:18:24 Server06 systemd-logind[876]: New seat seat0.
Aug 28 11:18:24 Server06 systemd-logind[876]: Watching system buttons on /dev/input/event0 (Power Button)
Aug 28 11:18:24 Server06 systemd[1]: Started Login Service.
Aug 28 11:18:24 Server06 systemd[1]: Starting Authenticate and Authorize Users to Run Privileged Tasks...
Aug 28 11:18:24 Server06 mdadm[913]:    ...done.
Aug 28 11:18:24 Server06 polkitd[945]: started daemon version 0.105 using authority implementation `local' version `0.105'
Aug 28 11:18:24 Server06 dbus[908]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Aug 28 11:18:24 Server06 accounts-daemon[905]: started daemon version 0.6.40
Aug 28 11:18:24 Server06 systemd[1]: Reached target Network.
Aug 28 11:18:24 Server06 systemd[1]: Starting OpenBSD Secure Shell server...
Aug 28 11:18:24 Server06 systemd[1]: Started Unattended Upgrades Shutdown.
Aug 28 11:18:24 Server06 sshd[954]: Server listening on 0.0.0.0 port 22.
Aug 28 11:18:24 Server06 sshd[954]: Server listening on :: port 22.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Network is Online.
Aug 28 11:18:24 Server06 systemd[1]: Starting iSCSI initiator daemon (iscsid)...
Aug 28 11:18:24 Server06 systemd[1]: Started Daily apt download activities.
Aug 28 11:18:24 Server06 systemd[1]: Started Daily apt upgrade and clean activities.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Timers.
Aug 28 11:18:24 Server06 systemd[1]: Starting /etc/rc.local Compatibility...
Aug 28 11:18:24 Server06 systemd[1]: Started OpenBSD Secure Shell server.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: Record successful boot for GRUB.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: MD monitoring daemon.
Aug 28 11:18:24 Server06 systemd[1]: Started /etc/rc.local Compatibility.
Aug 28 11:18:24 Server06 iscsid[967]: iSCSI logger with pid=971 started!
Aug 28 11:18:24 Server06 systemd[1]: Started iSCSI initiator daemon (iscsid).
Aug 28 11:18:24 Server06 systemd[1]: Started Authenticate and Authorize Users to Run Privileged Tasks.
Aug 28 11:18:24 Server06 systemd[1]: Started Accounts Service.
Aug 28 11:18:24 Server06 systemd[1]: Starting Login to default iSCSI targets...
Aug 28 11:18:24 Server06 iscsiadm[979]: iscsiadm: No records found
Aug 28 11:18:24 Server06 systemd[1]: Started Login to default iSCSI targets.
Aug 28 11:18:24 Server06 systemd[1]: Reached target Remote File Systems (Pre).
Aug 28 11:18:24 Server06 systemd[1]: Reached target Remote File Systems.
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: start Samba NetBIOS nameserver (nmbd)...
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: automatic crash report generation...
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: start Samba daemons for the AD DC...
Aug 28 11:18:24 Server06 systemd[1]: Starting Permit User Sessions...
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: daemon to balance interrupts for SMP systems...
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: start Winbind daemon...
Aug 28 11:18:24 Server06 systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Aug 28 11:18:24 Server06 systemd[1]: Started Permit User Sessions.
Aug 28 11:18:24 Server06 apport[990]:  * Starting automatic crash report generation: apport
Aug 28 11:18:24 Server06 apport[990]:    ...done.
Aug 28 11:18:24 Server06 systemd[1]: Starting Terminate Plymouth Boot Screen...
Aug 28 11:18:24 Server06 irqbalance[1003]:  * Starting SMP IRQ Balancer: irqbalance
Aug 28 11:18:24 Server06 irqbalance[1003]:    ...done.
Aug 28 11:18:24 Server06 systemd[1]: Starting Hold until boot process finishes up...
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: automatic crash report generation.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: daemon to balance interrupts for SMP systems.
Aug 28 11:18:24 Server06 systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Aug 28 11:18:24 Server06 systemd[1]: Started Terminate Plymouth Boot Screen.
Aug 28 11:18:24 Server06 systemd[1]: Started Hold until boot process finishes up.
Aug 28 11:18:25 Server06 systemd[1]: Starting Set console scheme...
Aug 28 11:18:25 Server06 systemd[1]: Started Getty on tty1.
Aug 28 11:18:25 Server06 systemd[1]: Reached target Login Prompts.
Aug 28 11:18:25 Server06 systemd[1]: Started Set console scheme.
Aug 28 11:18:25 Server06 winbind[1008]:  * Starting the Winbind daemon winbind
Aug 28 11:18:25 Server06 winbind[1008]:    ...done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Winbind daemon.
Aug 28 11:18:25 Server06 nmbd[985]:  * Starting NetBIOS name server nmbd
Aug 28 11:18:25 Server06 nmbd[985]:    ...done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Samba NetBIOS nameserver (nmbd).
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Samba daemons for the AD DC.
Aug 28 11:18:25 Server06 systemd[1]: Starting LSB: start Samba SMB/CIFS daemon (smbd)...
Aug 28 11:18:25 Server06 iscsid[971]: iSCSI daemon with pid=972 started!
Aug 28 11:18:25 Server06 smbd[1079]:  * Starting SMB/CIFS daemon smbd
Aug 28 11:18:25 Server06 smbd[1079]:    ...done.
Aug 28 11:18:25 Server06 systemd[1]: Started LSB: start Samba SMB/CIFS daemon (smbd).
Aug 28 11:18:25 Server06 systemd[1]: Reached target Multi-User System.
Aug 28 11:18:25 Server06 systemd[1]: Reached target Graphical Interface.
Aug 28 11:18:25 Server06 systemd[1]: Starting Update UTMP about System Runlevel Changes...
Aug 28 11:18:25 Server06 systemd[1]: Started Stop ureadahead data collection 45s after completed startup.
Aug 28 11:18:25 Server06 systemd[1]: Started Update UTMP about System Runlevel Changes.
Aug 28 11:18:25 Server06 systemd[1]: Startup finished in 9.779s (kernel) + 6.096s (userspace) = 15.876s.
Aug 28 11:19:11 Server06 systemd[1]: Starting Stop ureadahead data collection...
Aug 28 11:19:11 Server06 systemd[1]: Stopped Read required files in advance.
Aug 28 11:19:11 Server06 systemd[1]: Started Stop ureadahead data collection.
Aug 28 11:20:01 Server06 CRON[1113]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:20:01 Server06 CRON[1114]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:20:01 Server06 root[1126]: AutoShutdown: marked for shutdown in next try
Aug 28 11:20:01 Server06 CRON[1113]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:20:01 Server06 CRON[1113]: pam_unix(cron:session): session closed for user root
Aug 28 11:23:40 Server06 login[1056]: pam_unix(login:session): session opened for user jochen by LOGIN(uid=0)
Aug 28 11:23:40 Server06 systemd[1]: Created slice User Slice of jochen.
Aug 28 11:23:40 Server06 systemd[1]: Starting User Manager for UID 1000...
Aug 28 11:23:40 Server06 systemd[1]: Started Session 2 of user jochen.
Aug 28 11:23:40 Server06 systemd[1176]: pam_unix(systemd-user:session): session opened for user jochen by (uid=0)
Aug 28 11:23:40 Server06 systemd-logind[876]: New session 2 of user jochen.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Timers.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Sockets.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Paths.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Basic System.
Aug 28 11:23:40 Server06 systemd[1176]: Reached target Default.
Aug 28 11:23:40 Server06 systemd[1176]: Startup finished in 18ms.
Aug 28 11:23:40 Server06 systemd[1]: Started User Manager for UID 1000.
Aug 28 11:30:01 Server06 CRON[1199]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:30:01 Server06 CRON[1200]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:30:01 Server06 root[1205]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 11:30:01 Server06 CRON[1199]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:30:01 Server06 CRON[1199]: pam_unix(cron:session): session closed for user root
Aug 28 11:33:15 Server06 systemd[1]: Starting Cleanup of Temporary Directories...
Aug 28 11:33:15 Server06 systemd-tmpfiles[1208]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Aug 28 11:33:15 Server06 systemd[1]: Started Cleanup of Temporary Directories.
Aug 28 11:33:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:33:24 Server06 snapd[921]: 2017/08/28 11:33:24.055320 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:33:24 Server06 snapd[921]: 2017/08/28 11:33:24.055351 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:33:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47205->[::1]:53: read: connection refused
Aug 28 11:40:01 Server06 CRON[1215]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:40:01 Server06 CRON[1216]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:40:01 Server06 root[1221]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 11:40:01 Server06 CRON[1215]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:40:01 Server06 CRON[1215]: pam_unix(cron:session): session closed for user root
Aug 28 11:48:23 Server06 smartd[896]: Device: /dev/sda [SAT], SMART Usage Attribute: 190 Airflow_Temperature_Cel changed from 72 to 74
Aug 28 11:48:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:48:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:48:24 Server06 snapd[921]: 2017/08/28 11:48:24.054793 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:48:24 Server06 snapd[921]: 2017/08/28 11:48:24.054823 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:50633->[::1]:53: read: connection refused
Aug 28 11:50:01 Server06 CRON[1226]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 11:50:01 Server06 CRON[1227]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 11:50:01 Server06 root[1232]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 11:50:01 Server06 CRON[1226]: (CRON) info (No MTA installed, discarding output)
Aug 28 11:50:01 Server06 CRON[1226]: pam_unix(cron:session): session closed for user root
Aug 28 11:58:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 11:58:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 11:58:24 Server06 snapd[921]: 2017/08/28 11:58:24.054791 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 11:58:24 Server06 snapd[921]: 2017/08/28 11:58:24.054821 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:60763->[::1]:53: read: connection refused
Aug 28 12:00:01 Server06 CRON[1237]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:00:01 Server06 CRON[1238]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:00:01 Server06 root[1243]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:00:01 Server06 CRON[1237]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:00:01 Server06 CRON[1237]: pam_unix(cron:session): session closed for user root
Aug 28 12:08:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:08:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:08:24 Server06 snapd[921]: 2017/08/28 12:08:24.054961 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:08:24 Server06 snapd[921]: 2017/08/28 12:08:24.054991 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40068->[::1]:53: read: connection refused
Aug 28 12:10:01 Server06 CRON[1248]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:10:01 Server06 CRON[1249]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:10:01 Server06 root[1254]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:10:01 Server06 CRON[1248]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:10:01 Server06 CRON[1248]: pam_unix(cron:session): session closed for user root
Aug 28 12:17:01 Server06 CRON[1257]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:17:01 Server06 CRON[1258]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Aug 28 12:17:01 Server06 CRON[1257]: pam_unix(cron:session): session closed for user root
Aug 28 12:20:01 Server06 CRON[1262]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:20:01 Server06 CRON[1263]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:20:01 Server06 root[1268]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:20:01 Server06 CRON[1262]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:20:01 Server06 CRON[1262]: pam_unix(cron:session): session closed for user root
Aug 28 12:23:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:23:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:23:24 Server06 snapd[921]: 2017/08/28 12:23:24.054920 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:23:24 Server06 snapd[921]: 2017/08/28 12:23:24.054949 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:38917->[::1]:53: read: connection refused
Aug 28 12:30:01 Server06 CRON[1272]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:30:01 Server06 CRON[1273]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:30:01 Server06 root[1278]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:30:01 Server06 CRON[1272]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:30:01 Server06 CRON[1272]: pam_unix(cron:session): session closed for user root
Aug 28 12:38:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:38:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:38:24 Server06 snapd[921]: 2017/08/28 12:38:24.054800 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:38:24 Server06 snapd[921]: 2017/08/28 12:38:24.054829 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:42961->[::1]:53: read: connection refused
Aug 28 12:40:01 Server06 CRON[1284]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:40:01 Server06 CRON[1285]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:40:01 Server06 root[1290]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:40:01 Server06 CRON[1284]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:40:01 Server06 CRON[1284]: pam_unix(cron:session): session closed for user root
Aug 28 12:48:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:48:24 Server06 snapd[921]: 2017/08/28 12:48:24.054794 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:48:24 Server06 snapd[921]: 2017/08/28 12:48:24.054824 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:48:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:40447->[::1]:53: read: connection refused
Aug 28 12:50:01 Server06 CRON[1303]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 12:50:01 Server06 CRON[1304]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 12:50:01 Server06 root[1309]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 12:50:01 Server06 CRON[1303]: (CRON) info (No MTA installed, discarding output)
Aug 28 12:50:01 Server06 CRON[1303]: pam_unix(cron:session): session closed for user root
Aug 28 12:58:24 Server06 /usr/lib/snapd/snapd[921]: snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 12:58:24 Server06 /usr/lib/snapd/snapd[921]: stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 12:58:24 Server06 snapd[921]: 2017/08/28 12:58:24.054983 snapmgr.go:411: Cannot prepare auto-refresh change: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 12:58:24 Server06 snapd[921]: 2017/08/28 12:58:24.055014 stateengine.go:98: state ensure error: Post https://search.apps.ubuntu.com/api/v1/snaps/metadata: dial tcp: lookup search.apps.ubuntu.com on [::1]:53: read udp [::1]:47682->[::1]:53: read: connection refused
Aug 28 13:00:01 Server06 CRON[1317]: pam_unix(cron:session): session opened for user root by (uid=0)
Aug 28 13:00:01 Server06 CRON[1318]: (root) CMD (/usr/local/sbin/checkshutdown.sh)
Aug 28 13:00:01 Server06 root[1323]: AutoShutdown: some users still connected, auto shutdown terminated
Aug 28 13:00:01 Server06 CRON[1317]: (CRON) info (No MTA installed, discarding output)
Aug 28 13:00:01 Server06 CRON[1317]: pam_unix(cron:session): session closed for user root

kann jemand helfen ?

Gruß Jochen

Ubu-tester

Anmeldungsdatum:
7. Januar 2011

Beiträge: 2269

Wohnort: NDS

moin,

ich habe zwar nicht ich die Ahnung, aber wenn ich 'ifconfig -a' aufrufe, erscheint bei mir die IP-Adresse des Rechners.

Die fehlt bei Dir. Diese müßte in der 2.Zeile unter 'eno1' erscheinen.

jochenv

(Themenstarter)

Anmeldungsdatum:
23. April 2016

Beiträge: 670

Wohnort: Kurhessen

Hallo Ubu-tester

Ubu-tester schrieb:

ich habe zwar nicht ich die Ahnung, aber wenn ich 'ifconfig -a' aufrufe, erscheint bei mir die IP-Adresse des Rechners. Die fehlt bei Dir. Diese müßte in der 2.Zeile unter 'eno1' erscheinen.

das ist richtig. Kenne ich auch so ... ist auch so in der /etc/network/interfaces eingetragen. Ich habe keinen Plan was da passiert ist, es ja schon mal.

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# neustart mit : sudo /etc/init.d/networking restart

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eno1
# iface eno1 inet dhcp
iface eno1 inet static
    address 192.168.1.6    # Zukünftige Adresse des Homeservers
    netmask 255.255.255.0  # Netzwerkmaske
    gateway 192.168.1.1    # Normalerweise die Adresse des Routers

kB Team-Icon

Supporter, Wikiteam
Avatar von kB

Anmeldungsdatum:
4. Oktober 2007

Beiträge: 9729

Wohnort: Münster

Eine Meldung wie „Failed to start Raise network interfaces“ hat oft ihre Ursache in Syntaxfehlern in der Datei /etc/network/interfaces, so auch in Deinem Fall:

jochenv schrieb:

[…]

# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# neustart mit : sudo /etc/init.d/networking restart

source /etc/network/interfaces.d/*

# The loopback network interface
auto lo
iface lo inet loopback

# The primary network interface
auto eno1
# iface eno1 inet dhcp
iface eno1 inet static
    address 192.168.1.6    # Zukünftige Adresse des Homeservers
    netmask 255.255.255.0  # Netzwerkmaske
    gateway 192.168.1.1    # Normalerweise die Adresse des Routers
  • Zeilenendkommentare sind in der Datei /etc/network/interfaces nicht zulässig und führen zu Fehlern bei der Ausführung von ifup. Entferne die markierten Textteile.

  • Einen Neustart des Netzwerksystems macht man nicht mehr mit dem veralteten SysV-Init-Befehl sudo /etc/init.d/networking restart! Lösche am besten die in die Irre führende Kommentarzeile.

  • Lösche am besten auch die Zeile mit dem source-Statement, es sei denn, Du weißt, warum Du es benötigst.

  • Weiteres findest du im Wiki interfaces.

jochenv

(Themenstarter)

Anmeldungsdatum:
23. April 2016

Beiträge: 670

Wohnort: Kurhessen

Hallo zusammen

kB schrieb:

Eine Meldung wie „Failed to start Raise network interfaces“ hat oft ihre Ursache in Syntaxfehlern in der Datei /etc/network/interfaces, so auch in Deinem Fall: ...

  • Zeilenendkommentare sind in der Datei /etc/network/interfaces nicht zulässig und führen zu Fehlern bei der Ausführung von ifup. Entferne die markierten Textteile.

Kommentar entfernt und es funktioniert. Danke. Wäre ich allein nie drauf gekommen.

  • Einen Neustart des Netzwerksystems macht man nicht mehr mit dem veralteten SysV-Init-Befehl sudo /etc/init.d/networking restart! Lösche am besten die in die Irre führende Kommentarzeile.

Einmal fertig eingerichtet dann so es so bleiben. Einen Neustart des Netzwerksystems ist dann nicht mehr notwendig. Rechner wird komplett neu gestartet wenn was sein sollte.

  • Lösche am besten auch die Zeile mit dem source-Statement, es sei denn, Du weißt, warum Du es benötigst.

  • Weiteres findest du im Wiki interfaces.

Drei fragen noch ...

- Wieso heißt hier die Schnittstelle eno1 und nicht mehr eth0 ?

- Ich habe address, netmask und gateway eingetragen. Reicht dieses ?

- Der Server hat zwei Netzwerkschnittstellen, wie kann ich die zweite aktivieren, mit anderer Adresse z.B. 192.168.3.3 ?

Gruß Jochen

kB Team-Icon

Supporter, Wikiteam
Avatar von kB

Anmeldungsdatum:
4. Oktober 2007

Beiträge: 9729

Wohnort: Münster

jochenv schrieb:

[…] Drei fragen noch ...

- Wieso heißt hier die Schnittstelle eno1 und nicht mehr eth0 ?

- Ich habe address, netmask und gateway eingetragen. Reicht dieses ?

  • Jein. Man bekommt damit grundsätzliche Konnektivität per IP. Es fehlt aber noch die Namensauflösung per DNS, die man auch über die Datei interfaces per Option dns-nameservers konfigurieren kann. Siehe den bereits zitierten Wiki-Artikel.

- Der Server hat zwei Netzwerkschnittstellen, wie kann ich die zweite aktivieren, mit anderer Adresse z.B. 192.168.3.3 ?

  • In /etc/network/interfaces einen solchen Abschnitt eintragen:

    iface Schnittstelle2 inet static
      address 192.168.3.3/24
    auto Schnittstelle2

    Anstelle von „Schnittstelle2“ musst Du natürlich den bei Dir zutreffenden Namen der Schnittstelle verwenden; diesen zu finden hilft der Befehl

    ip link
  • Verwende für die 2. und weitere Schnittstellen keine der Optionen gateway bzw. dns-nameservers!

  • Wenn Du Deinen Server mit 2 Schnittstellen auch als Router zwischen diesen beiden Schnittstellen nutzen möchtest, must Du ip-forwarding einschalten.

Antworten |