Ubuntu Pastebin

Paste from smoser at Fri, 27 Oct 2017 21:42:51 +0000

Download as text
   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
$ xkvm --netdev= --disk=my.img --disk=my-seed.img -- -
snapshot -m 768  -nographic -echr 0x05  -kernel vmlinuz-4.13.0-16-generic -initr
d initrd.img-4.13.0-16-generic -append "root=LABEL=cloudimg-rootfs console=ttyS0
 systemd.log_target=console systemd.log_level=debug systemd.log_target=console"
 qemu-system-x86_64 -enable-kvm -device virtio-scsi-pci,id=virtio-scsi-xkvm -drive file=my.img,id=disk00,if=none,format=qcow2,index=0 -device virtio-blk,drive=disk00,serial=my.img -drive file=my-seed.img,id=disk01,if=none,format=raw,index=1 -device virtio-blk,drive=disk01,serial=my-seed.img -snapshot -m 768 -nographic -echr 0x05 -kernel vmlinuz-4.13.0-16-generic -initrd initrd.img-4.13.0-16-generic -append "root=LABEL=cloudimg-rootfs console=ttyS0 systemd.log_target=console systemd.log_level=debug systemd.log_target=console"
warning: host doesn't support requested feature: CPUID.80000001H:ECX.svm [bit 2]
[    0.000000] random: get_random_bytes called from start_kernel+0x42/0x4e1 with crng_init=0
[    0.000000] Linux version 4.13.0-16-generic (buildd@lcy01-02) (gcc version 7.2.0 (Ubuntu 7.2.0-8ubuntu2)) #19-Ubuntu SMP Wed Oct 11 18:35:14 UTC 2017 (Ubuntu 4.13.0-16.19-generic 4.13.4)
[    0.000000] Command line: root=LABEL=cloudimg-rootfs console=ttyS0 systemd.log_target=console systemd.log_level=debug systemd.log_target=console
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] x86/fpu: x87 FPU will use FXSAVE
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000002ffdbfff] usable
[    0.000000] BIOS-e820: [mem 0x000000002ffdc000-0x000000002fffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] random: fast init done
[    0.000000] SMBIOS 2.8 present.
[    0.000000] DMI: QEMU Standard PC (i440FX + PIIX, 1996), BIOS 1.10.2-1ubuntu1 04/01/2014
[    0.000000] Hypervisor detected: KVM
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] e820: last_pfn = 0x2ffdc max_arch_pfn = 0x400000000
[    0.000000] x86/PAT: PAT not supported by CPU.
[    0.000000] x86/PAT: Configuration [0-7]: WB  WT  UC- UC  WB  WT  UC- UC
[    0.000000] found SMP MP-table at [mem 0x000f6a80-0x000f6a8f] mapped at [ffff9e0b000f6a80]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] RAMDISK: [mem 0x2d053000-0x2ffcffff]
[    0.000000] ACPI: Early table checksum verification disabled
[    0.000000] ACPI: RSDP 0x00000000000F68A0 000014 (v00 BOCHS )
[    0.000000] ACPI: RSDT 0x000000002FFE15CE 000030 (v01 BOCHS  BXPCRSDT 00000001 BXPC 00000001)
[    0.000000] ACPI: FACP 0x000000002FFE142A 000074 (v01 BOCHS  BXPCFACP 00000001 BXPC 00000001)
[    0.000000] ACPI: DSDT 0x000000002FFE0040 0013EA (v01 BOCHS  BXPCDSDT 00000001 BXPC 00000001)
[    0.000000] ACPI: FACS 0x000000002FFE0000 000040
[    0.000000] ACPI: APIC 0x000000002FFE151E 000078 (v01 BOCHS  BXPCAPIC 00000001 BXPC 00000001)
[    0.000000] ACPI: HPET 0x000000002FFE1596 000038 (v01 BOCHS  BXPCHPET 00000001 BXPC 00000001)
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x000000002ffdbfff]
[    0.000000] NODE_DATA(0) allocated [mem 0x2d028000-0x2d052fff]
[    0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
[    0.000000] kvm-clock: cpu 0, msr 0:2cfa8001, primary cpu clock
[    0.000000] kvm-clock: using sched offset of 294252679 cycles
[    0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x0000000000001000-0x0000000000ffffff]
[    0.000000]   DMA32    [mem 0x0000000001000000-0x000000002ffdbfff]
[    0.000000]   Normal   empty
[    0.000000]   Device   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x0000000000001000-0x000000000009efff]
[    0.000000]   node   0: [mem 0x0000000000100000-0x000000002ffdbfff]
[    0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000002ffdbfff]
[    0.000000] ACPI: PM-Timer IO Port: 0x608
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])
[    0.000000] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
[    0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
[    0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
[    0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
[    0.000000] e820: [mem 0x30000000-0xfeffbfff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on KVM
[    0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
[    0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1
[    0.000000] percpu: Embedded 39 pages/cpu @ffff9e0b2cc00000 s119704 r8192 d31848 u2097152
[    0.000000] KVM setup async PF for cpu 0
[    0.000000] kvm-stealtime: cpu 0, msr 2cc0d8c0
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 193381
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: root=LABEL=cloudimg-rootfs console=ttyS0 systemd.log_target=console systemd.log_level=debug systemd.log_target=console
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Memory: 702312K/785896K available (9281K kernel code, 2477K rwdata, 3992K rodata, 2324K init, 2384K bss, 83584K reserved, 0K cma-reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
[    0.000000] ftrace: allocating 37719 entries in 148 pages
[    0.004000] Hierarchical RCU implementation.
[    0.004000]  RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.
[    0.004000]  Tasks RCU enabled.
[    0.004000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1
[    0.004000] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16
[    0.004000] Console: colour VGA+ 80x25
[    0.004000] console [ttyS0] enabled
[    0.004000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604467 ns
[    0.004006] tsc: Detected 2397.220 MHz processor
[    0.004449] Calibrating delay loop (skipped) preset value.. 4794.44 BogoMIPS (lpj=9588880)
[    0.004865] pid_max: default: 32768 minimum: 301
[    0.005414] ACPI: Core revision 20170531
[    0.006709] ACPI: 1 ACPI AML tables successfully acquired and loaded
[    0.007449] Security Framework initialized
[    0.008005] Yama: becoming mindful.
[    0.008422] AppArmor: AppArmor initialized
[    0.009086] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.009966] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes)
[    0.011016] Mount-cache hash table entries: 2048 (order: 2, 16384 bytes)
[    0.012008] Mountpoint-cache hash table entries: 2048 (order: 2, 16384 bytes)
[    0.013399] CPU: Physical Processor ID: 0
[    0.013894] mce: CPU supports 10 MCE banks
[    0.014535] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
[    0.015142] Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0
[    0.023390] Freeing SMP alternatives memory: 36K
[    0.025163] smpboot: Max logical packages: 1
[    0.025929] x2apic enabled
[    0.026614] Switched APIC routing to physical x2apic.
[    0.027900] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.028000] smpboot: CPU0: Intel QEMU Virtual CPU version 2.5+ (family: 0x6, model: 0x6, stepping: 0x3)
[    0.028000] Performance Events: PMU not available due to virtualization, using software events only.
[    0.029310] Hierarchical SRCU implementation.
[    0.030482] smp: Bringing up secondary CPUs ...
[    0.030938] smp: Brought up 1 node, 1 CPU
[    0.031329] smpboot: Total of 1 processors activated (4794.44 BogoMIPS)
[    0.032369] devtmpfs: initialized
[    0.032907] x86/mm: Memory block size: 128MB
[    0.033558] evm: security.selinux
[    0.033870] evm: security.SMACK64
[    0.034298] evm: security.SMACK64EXEC
[    0.034809] evm: security.SMACK64TRANSMUTE
[    0.035370] evm: security.SMACK64MMAP
[    0.036006] evm: security.ima
[    0.036321] evm: security.capability
[    0.036792] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
[    0.037930] futex hash table entries: 256 (order: 2, 16384 bytes)
[    0.038598] pinctrl core: initialized pinctrl subsystem
[    0.039240] RTC time: 21:41:26, date: 10/27/17
[    0.040071] NET: Registered protocol family 16
[    0.040922] cpuidle: using governor ladder
[    0.041360] cpuidle: using governor menu
[    0.041882] PCCT header not found.
[    0.042274] ACPI: bus type PCI registered
[    0.042622] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.043244] PCI: Using configuration type 1 for base access
[    0.045353] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages
[    0.046277] ACPI: Added _OSI(Module Device)
[    0.046747] ACPI: Added _OSI(Processor Device)
[    0.047198] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.047679] ACPI: Added _OSI(Processor Aggregator Device)
[    0.049491] ACPI: Interpreter enabled
[    0.049904] ACPI: (supports S0 S3 S4 S5)
[    0.050330] ACPI: Using IOAPIC for interrupt routing
[    0.050855] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.052109] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.054793] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.055471] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.056012] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.056955] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.058365] acpiphp: Slot [3] registered
[    0.058960] acpiphp: Slot [4] registered
[    0.059367] acpiphp: Slot [5] registered
[    0.060020] acpiphp: Slot [6] registered
[    0.060434] acpiphp: Slot [7] registered
[    0.060853] acpiphp: Slot [8] registered
[    0.061257] acpiphp: Slot [9] registered
[    0.061666] acpiphp: Slot [10] registered
[    0.062053] acpiphp: Slot [11] registered
[    0.062594] acpiphp: Slot [12] registered
[    0.062965] acpiphp: Slot [13] registered
[    0.063326] acpiphp: Slot [14] registered
[    0.063689] acpiphp: Slot [15] registered
[    0.064017] acpiphp: Slot [16] registered
[    0.064380] acpiphp: Slot [17] registered
[    0.064742] acpiphp: Slot [18] registered
[    0.065104] acpiphp: Slot [19] registered
[    0.065464] acpiphp: Slot [20] registered
[    0.065825] acpiphp: Slot [21] registered
[    0.066427] acpiphp: Slot [22] registered
[    0.066794] acpiphp: Slot [23] registered
[    0.067156] acpiphp: Slot [24] registered
[    0.067515] acpiphp: Slot [25] registered
[    0.068015] acpiphp: Slot [26] registered
[    0.068375] acpiphp: Slot [27] registered
[    0.068737] acpiphp: Slot [28] registered
[    0.069102] acpiphp: Slot [29] registered
[    0.069477] acpiphp: Slot [30] registered
[    0.069840] acpiphp: Slot [31] registered
[    0.070197] PCI host bridge to bus 0000:00
[    0.070703] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7 window]
[    0.071402] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff window]
[    0.072002] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
[    0.072758] pci_bus 0000:00: root bus resource [mem 0x30000000-0xfebfffff window]
[    0.073398] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.082512] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io  0x01f0-0x01f7]
[    0.083163] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io  0x03f6]
[    0.084002] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io  0x0170-0x0177]
[    0.086343] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io  0x0376]
[    0.088002] pci 0000:00:01.3: quirk: [io  0x0600-0x063f] claimed by PIIX4 ACPI
[    0.088629] pci 0000:00:01.3: quirk: [io  0x0700-0x070f] claimed by PIIX4 SMB
[    0.210081] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 *10 11)
[    0.212203] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 *10 11)
[    0.214633] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 10 *11)
[    0.215838] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 10 *11)
[    0.216059] ACPI: PCI Interrupt Link [LNKS] (IRQs *9)
[    0.217160] SCSI subsystem initialized
[    0.218099] pci 0000:00:02.0: vgaarb: setting as boot VGA device
[    0.219032] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
[    0.220005] pci 0000:00:02.0: vgaarb: bridge control possible
[    0.220911] vgaarb: loaded
[    0.221534] ACPI: bus type USB registered
[    0.222307] usbcore: registered new interface driver usbfs
[    0.224025] usbcore: registered new interface driver hub
[    0.224992] usbcore: registered new device driver usb
[    0.226084] EDAC MC: Ver: 3.0.0
[    0.226796] PCI: Using ACPI for IRQ routing
[    0.228175] NetLabel: Initializing
[    0.228824] NetLabel:  domain hash size = 128
[    0.229509] NetLabel:  protocols = UNLABELED CIPSOv4 CALIPSO
[    0.230532] NetLabel:  unlabeled traffic allowed by default
[    0.231501] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
[    0.232026] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0
[    0.232787] hpet0: 3 comparators, 64-bit 100.000000 MHz counter
[    0.237076] clocksource: Switched to clocksource kvm-clock
[    0.246632] VFS: Disk quotas dquot_6.6.0
[    0.247305] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.248586] AppArmor: AppArmor Filesystem Enabled
[    0.249638] pnp: PnP ACPI init
[    0.250499] pnp: PnP ACPI: found 6 devices
[    0.256570] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
[    0.258140] NET: Registered protocol family 2
[    0.259435] TCP established hash table entries: 8192 (order: 4, 65536 bytes)
[    0.260799] TCP bind hash table entries: 8192 (order: 5, 131072 bytes)
[    0.261847] TCP: Hash tables configured (established 8192 bind 8192)
[    0.262864] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.263910] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.265138] NET: Registered protocol family 1
[    0.265954] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
[    0.266875] pci 0000:00:01.0: PIIX3: Enabling Passive Release
[    0.267781] pci 0000:00:01.0: Activating ISA DMA hang workarounds
[    0.269009] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
[    0.270507] Unpacking initramfs...
[    0.986744] Freeing initrd memory: 48628K
[    0.987827] Scanning for low memory corruption every 60 seconds
[    0.989214] audit: initializing netlink subsys (disabled)
[    0.990272] Initialise system trusted keyrings
[    0.990995] Key type blacklist registered
[    0.991573] audit: type=2000 audit(1509140488.301:1): state=initialized audit_enabled=0 res=1
[    0.992707] workingset: timestamp_bits=36 max_order=18 bucket_order=0
[    0.994195] zbud: loaded
[    0.995003] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.995999] fuse init (API version 7.26)
[    0.997135] Key type asymmetric registered
[    0.997574] Asymmetric key parser 'x509' registered
[    0.998125] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
[    0.999160] io scheduler noop registered
[    0.999701] io scheduler deadline registered
[    1.000202] io scheduler cfq registered (default)
[    1.001054] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
[    1.001861] ACPI: Power Button [PWRF]
[    1.002337] GHES: HEST is not enabled!
[    1.021192] ACPI: PCI Interrupt Link [LNKD] enabled at IRQ 11
[    1.040367] ACPI: PCI Interrupt Link [LNKA] enabled at IRQ 10
[    1.059940] ACPI: PCI Interrupt Link [LNKB] enabled at IRQ 10
[    1.061262] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.084821] 00:05: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    1.086305] Linux agpgart interface v0.103
[    1.087600] loop: module loaded
[    1.088948] scsi host0: ata_piix
[    1.089310] scsi host1: ata_piix
[    1.089627] ata1: PATA max MWDMA2 cmd 0x1f0 ctl 0x3f6 bmdma 0xc100 irq 14
[    1.090231] ata2: PATA max MWDMA2 cmd 0x170 ctl 0x376 bmdma 0xc108 irq 15
[    1.091035] libphy: Fixed MDIO Bus: probed
[    1.091391] tun: Universal TUN/TAP device driver, 1.6
[    1.091847] PPP generic driver version 2.4.2
[    1.092256] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.092977] ehci-pci: EHCI PCI platform driver
[    1.093488] ehci-platform: EHCI generic platform driver
[    1.093943] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.094469] ohci-pci: OHCI PCI platform driver
[    1.094854] ohci-platform: OHCI generic platform driver
[    1.095307] uhci_hcd: USB Universal Host Controller Interface driver
[    1.095883] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
[    1.097395] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.097820] serio: i8042 AUX port at 0x60,0x64 irq 12
[    1.098555] mousedev: PS/2 mouse device common for all mice
[    1.099216] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input1
[    1.100153] rtc_cmos 00:00: RTC can wake from S4
[    1.100861] rtc_cmos 00:00: rtc core: registered rtc_cmos as rtc0
[    1.101498] rtc_cmos 00:00: alarms up to one day, y3k, 114 bytes nvram, hpet irqs
[    1.102137] i2c /dev entries driver
[    1.102482] device-mapper: uevent: version 1.0.3
[    1.102933] device-mapper: ioctl: 4.36.0-ioctl (2017-06-09) initialised: dm-devel@redhat.com
[    1.103785] ledtrig-cpu: registered to indicate activity on CPUs
[    1.104512] NET: Registered protocol family 10
[    1.107618] Segment Routing with IPv6
[    1.107964] NET: Registered protocol family 17
[    1.108354] Key type dns_resolver registered
[    1.109103] RAS: Correctable Errors collector initialized.
[    1.109582] sched_clock: Marking stable (1108341189, 0)->(1369523880, -261182691)
[    1.110265] registered taskstats version 1
[    1.110610] Loading compiled-in X.509 certificates
[    1.113189] Loaded X.509 cert 'Build time autogenerated kernel key: 04409fd30ffab3ce9d2178c508b3c866d61d9a62'
[    1.114177] zswap: loaded using pool lzo/zbud
[    1.115738] Key type big_key registered
[    1.116097] Key type trusted registered
[    1.117677] Key type encrypted registered
[    1.118027] AppArmor: AppArmor sha1 policy hashing enabled
[    1.118477] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
[    1.119024] evm: HMAC attrs: 0x1
[    1.119841]   Magic number: 5:416:703
[    1.120281] rtc_cmos 00:00: setting system clock to 2017-10-27 21:41:27 UTC (1509140487)
[    1.121045] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.121709] EDD information not available.
[    1.256995] ata2.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100
[    1.258800] ata2.00: configured for MWDMA2
[    1.260154] scsi 1:0:0:0: CD-ROM            QEMU     QEMU DVD-ROM     2.5+ PQ: 0 ANSI: 5
[    1.272827] sr 1:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray
[    1.274104] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.275640] sr 1:0:0:0: Attached scsi generic sg0 type 5
[    1.280488] Freeing unused kernel memory: 2324K
[    1.281273] Write protecting the kernel read-only data: 14336k
[    1.282557] Freeing unused kernel memory: 948K
[    1.283647] Freeing unused kernel memory: 104K
[    1.286165] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Loading, please wait...
starting version 234
calling: trigger
  device-enumerator: scanning /sys/bus
calling: trigger
device-enumerator: scan all dirs
  device-enumerator: scanning /sys/bus
  device-enumerator: scanning /sys/class
calling: settle
[    1.370157] Floppy drive(s): fd0 is 2.88M AMI BIOS
[    1.383719] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
[    1.384673] e1000: Copyright (c) 1999-2006 Intel Corporation.
[    1.388928] FDC 0 is a S82078B
[    1.393781] scsi host2: Virtio SCSI HBA
[    1.398855]  vda: vda1 vda14 vda15
[    1.428388] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input4
[    1.429535] input: VirtualPS/2 VMware VMMouse as /devices/platform/i8042/serio1/input/input3
[    1.510605] ACPI: PCI Interrupt Link [LNKC] enabled at IRQ 11
[    1.848991] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 52:54:00:12:34:56
[    1.849784] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
[    1.851505] e1000 0000:00:03.0 ens3: renamed from eth0
calling: settle
[    2.016311] tsc: Refined TSC clocksource calibration: 2397.208 MHz
[    2.017788] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x228dea1273f, max_idle_ns: 440795237828 ns
calling: settle
Begin: Loading essential drivers ... [    3.224025] raid6: sse2x1   gen()  7167 MB/s
[    3.272015] raid6: sse2x1   xor()  5487 MB/s
[    3.320012] raid6: sse2x2   gen()  9747 MB/s
[    3.368012] raid6: sse2x2   xor()  6111 MB/s
[    3.416010] raid6: sse2x4   gen() 11296 MB/s
[    3.464010] raid6: sse2x4   xor()  7146 MB/s
[    3.464712] raid6: using algorithm sse2x4 gen() 11296 MB/s
[    3.465651] raid6: .... xor() 7146 MB/s, rmw enabled
[    3.466491] raid6: using intx1 recovery algorithm
[    3.469455] xor: measuring software checksum speed
[    3.508012]    prefetch64-sse: 15188.000 MB/sec
[    3.548011]    generic_sse: 13869.000 MB/sec
[    3.548962] xor: using function: prefetch64-sse (15188.000 MB/sec)
[    3.552196] async_tx: api initialized (async)
done.
Begin: Running /scripts/init-premount ... done.
Begin: Mounting root file system ... Begin: Running /scripts/local-top ... done.
Begin: Running /scripts/local-premount ... [    3.601789] Btrfs loaded, crc32c=crc32c-generic
Scanning for Btrfs filesystems
[    3.712094] print_req_error: I/O error, dev fd0, sector 0
[    3.713419] floppy: error 10 while reading block 0
done.
Warning: fsck not present, so skipping root file system
[    3.742819] EXT4-fs (vda1): mounted filesystem with ordered data mode. Opts: (null)
done.
Begin: Running /scripts/local-bottom ... done.
Begin: Running /scripts/init-bottom ... calling: settle
calling: settle
calling: control
done.
[    3.985563] ip_tables: (C) 2000-2006 Netfilter Core Team
Mounting cgroup to /sys/fs/cgroup/pids of type cgroup with options pids.
Mounting cgroup to /sys/fs/cgroup/cpuset of type cgroup with options cpuset.
Mounting cgroup to /sys/fs/cgroup/net_cls,net_prio of type cgroup with options net_cls,net_prio.
Mounting cgroup to /sys/fs/cgroup/perf_event of type cgroup with options perf_event.
Mounting cgroup to /sys/fs/cgroup/devices of type cgroup with options devices.
Mounting cgroup to /sys/fs/cgroup/hugetlb of type cgroup with options hugetlb.
Mounting cgroup to /sys/fs/cgroup/freezer of type cgroup with options freezer.
Mounting cgroup to /sys/fs/cgroup/cpu,cpuacct of type cgroup with options cpu,cpuacct.
Mounting cgroup to /sys/fs/cgroup/blkio of type cgroup with options blkio.
Mounting cgroup to /sys/fs/cgroup/rdma of type cgroup with options rdma.
Mounting cgroup to /sys/fs/cgroup/memory of type cgroup with options memory.
systemd 234 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD -IDN2 +IDN default-hierarchy=hybrid)
Virtualization QEMU found in DMI (/sys/class/dmi/id/sys_vendor)
Virtualization found, CPUID=KVMKVMKVM
Found VM virtualization kvm
Detected virtualization kvm.
Detected architecture x86-64.

Welcome to Ubuntu 17.10!

Set hostname to <ubuntu>.
Initializing machine ID from random generator.
Installed transient /etc/machine-id file.
Failed to add address 127.0.0.1 to loopback interface: Success
Failed to add address ::1 to loopback interface: Success
Failed to bring loopback interface up: Success
Unified cgroup hierarchy is located at /sys/fs/cgroup/unified. Controllers are on legacy hierarchies.
Controller 'cpu' supported: yes
Controller 'cpuacct' supported: yes
Controller 'io' supported: no
Controller 'blkio' supported: yes
Controller 'memory' supported: yes
Controller 'devices' supported: yes
Controller 'pids' supported: yes
Set up TFD_TIMER_CANCEL_ON_SET timerfd.
Enabling showing of status.
Spawned /lib/systemd/system-generators/cloud-init-generator as 336.
Spawned /lib/systemd/system-generators/lvm2-activation-generator as 337.
Spawned /lib/systemd/system-generators/netplan as 338.
Spawned /lib/systemd/system-generators/systemd-cryptsetup-generator as 339.
Spawned /lib/systemd/system-generators/systemd-debug-generator as 340.
Spawned /lib/systemd/system-generators/systemd-fstab-generator as 342.
Spawned /lib/systemd/system-generators/systemd-getty-generator as 344.
Spawned /lib/systemd/system-generators/systemd-gpt-auto-generator as 346.
Spawned /lib/systemd/system-generators/systemd-hibernate-resume-generator as 347.
Spawned /lib/systemd/system-generators/systemd-rc-local-generator as 348.
Spawned /lib/systemd/system-generators/systemd-system-update-generator as 349.
Spawned /lib/systemd/system-generators/systemd-sysv-generator as 350.
Spawned /lib/systemd/system-generators/systemd-veritysetup-generator as 351.
/lib/systemd/system-generators/cloud-init-generator succeeded.
/lib/systemd/system-generators/systemd-gpt-auto-generator succeeded.
/lib/systemd/system-generators/systemd-fstab-generator succeeded.
/lib/systemd/system-generators/systemd-sysv-generator succeeded.
/lib/systemd/system-generators/systemd-getty-generator succeeded.
/lib/systemd/system-generators/systemd-cryptsetup-generator succeeded.
/lib/systemd/system-generators/lvm2-activation-generator succeeded.
/lib/systemd/system-generators/systemd-hibernate-resume-generator succeeded.
/lib/systemd/system-generators/netplan succeeded.
/lib/systemd/system-generators/systemd-system-update-generator succeeded.
/lib/systemd/system-generators/systemd-rc-local-generator succeeded.
/lib/systemd/system-generators/systemd-veritysetup-generator succeeded.
/lib/systemd/system-generators/systemd-debug-generator succeeded.
system-generators succeeded.
Looking for unit files in (higher priority first):
        /run/systemd/transient
        /etc/systemd/system
        /run/systemd/system
        /run/systemd/generator
        /lib/systemd/system
        /run/systemd/generator.late
Unit type .busname is not supported on this system.
dev.mount: Failed to load configuration: No such file or directory
dev-disk.mount: Failed to load configuration: No such file or directory
dev-disk-by\x2dlabel.mount: Failed to load configuration: No such file or directory
dev-disk-by\x2dlabel-UEFI.mount: Failed to load configuration: No such file or directory
boot.mount: Failed to load configuration: No such file or directory
run-systemd-journal-socket.mount: Failed to load configuration: No such file or directory
run.mount: Failed to load configuration: No such file or directory
run-systemd.mount: Failed to load configuration: No such file or directory
run-systemd-journal.mount: Failed to load configuration: No such file or directory
run-systemd-journal-stdout.mount: Failed to load configuration: No such file or directory
var.mount: Failed to load configuration: No such file or directory
var-log.mount: Failed to load configuration: No such file or directory
var-log-wtmp.mount: Failed to load configuration: No such file or directory
auditd.service: Failed to load configuration: No such file or directory
systemd-sysusers.service: Failed to load configuration: No such file or directory
run-udev.mount: Failed to load configuration: No such file or directory
run-udev-control.mount: Failed to load configuration: No such file or directory
var-tmp.mount: Failed to load configuration: No such file or directory
tmp.mount: Failed to load configuration: No such file or directory
var-lib.mount: Failed to load configuration: No such file or directory
var-lib-systemd.mount: Failed to load configuration: No such file or directory
var-lib-systemd-clock.mount: Failed to load configuration: No such file or directory
var-lib-systemd-random\x2dseed.mount: Failed to load configuration: No such file or directory
var-log-journal.mount: Failed to load configuration: No such file or directory
etc.mount: Failed to load configuration: No such file or directory
etc-acpi.mount: Failed to load configuration: No such file or directory
etc-acpi-events.mount: Failed to load configuration: No such file or directory
run-acpid.socket.mount: Failed to load configuration: No such file or directory
var-lib-systemd-timers.mount: Failed to load configuration: No such file or directory
run-snapd\x2dsnap.socket.mount: Failed to load configuration: No such file or directory
run-snapd.socket.mount: Failed to load configuration: No such file or directory
org.freedesktop.network1.busname: Failed to load configuration: No such file or directory
var-run.mount: Failed to load configuration: No such file or directory
var-run-dbus.mount: Failed to load configuration: No such file or directory
var-run-dbus-system_bus_socket.mount: Failed to load configuration: No such file or directory
display-manager.service: Failed to load configuration: No such file or directory
org.freedesktop.resolve1.busname: Failed to load configuration: No such file or directory
run-systemd-resolve.mount: Failed to load configuration: No such file or directory
run-systemd-resolve-stub\x2dresolv.conf.mount: Failed to load configuration: No such file or directory
run-systemd-ask\x2dpassword.mount: Failed to load configuration: No such file or directory
var-lib-cloud.mount: Failed to load configuration: No such file or directory
NetworkManager.service: Failed to load configuration: No such file or directory
openvswitch-switch.service: Failed to load configuration: No such file or directory
var-lib-lxd.mount: Failed to load configuration: No such file or directory
var-lib-lxd-unix.socket.mount: Failed to load configuration: No such file or directory
lxc.service: Failed to load configuration: No such file or directory
all.target: Failed to load configuration: No such file or directory
usr.mount: Failed to load configuration: No such file or directory
kbd.service: Failed to load configuration: No such file or directory
console-screen.service: Failed to load configuration: No such file or directory
root.mount: Failed to load configuration: No such file or directory
connman.service: Failed to load configuration: No such file or directory
systemd-update-done.service: Failed to load configuration: No such file or directory
systemd-vconsole-setup.service: Failed to load configuration: No such file or directory
sys.mount: Failed to load configuration: No such file or directory
sys-kernel.mount: Failed to load configuration: No such file or directory
sys-fs.mount: Failed to load configuration: No such file or directory
sys-fs-fuse.mount: Failed to load configuration: No such file or directory
proc.mount: Failed to load configuration: No such file or directory
proc-sys.mount: Failed to load configuration: No such file or directory
proc-sys-fs.mount: Failed to load configuration: No such file or directory
lvm2-activation.service: Failed to load configuration: No such file or directory
run-dmeventd\x2dclient.mount: Failed to load configuration: No such file or directory
run-dmeventd\x2dserver.mount: Failed to load configuration: No such file or directory
run-lvm.mount: Failed to load configuration: No such file or directory
run-lvm-lvmpolld.socket.mount: Failed to load configuration: No such file or directory
run-lvm-lvmetad.socket.mount: Failed to load configuration: No such file or directory
run-systemd-journal-syslog.mount: Failed to load configuration: No such file or directory
run-systemd-journal-dev\x2dlog.mount: Failed to load configuration: No such file or directory
run-uuidd.mount: Failed to load configuration: No such file or directory
run-uuidd-request.mount: Failed to load configuration: No such file or directory
run-systemd-initctl.mount: Failed to load configuration: No such file or directory
run-systemd-initctl-fifo.mount: Failed to load configuration: No such file or directory
run-apport.socket.mount: Failed to load configuration: No such file or directory
run-systemd-fsck.progress.mount: Failed to load configuration: No such file or directory
dev-disk-by\x2dlabel-cloudimg\x2drootfs.mount: Failed to load configuration: No such file or directory
Using notification socket /run/systemd/notify
Successfully created private D-Bus server.
etc-machine\x2did.mount: Changed dead -> mounted
init.scope changed dead -> running
-.slice changed dead -> active
dev-vda1.device: Changed dead -> tentative
-.mount: Changed dead -> mounted
Activating default unit: default.target
graphical.target: Trying to enqueue job graphical.target/start/isolate
org.freedesktop.network1.busname: Cannot add dependency job, ignoring: Unit org.freedesktop.network1.busname not found.
tmp.mount: Cannot add dependency job, ignoring: Unit tmp.mount not found.
org.freedesktop.resolve1.busname: Cannot add dependency job, ignoring: Unit org.freedesktop.resolve1.busname not found.
display-manager.service: Cannot add dependency job, ignoring: Unit display-manager.service not found.
systemd-networkd.service: Installed new job systemd-networkd.service/start as 25
systemd-journald.socket: Installed new job systemd-journald.socket/start as 46
basic.target: Installed new job basic.target/start as 3
vgauth.service: Installed new job vgauth.service/start as 116
plymouth-quit.service: Installed new job plymouth-quit.service/start as 113
plymouth-quit-wait.service: Installed new job plymouth-quit-wait.service/start as 123
cryptsetup.target: Installed new job cryptsetup.target/start as 61
keyboard-setup.service: Installed new job keyboard-setup.service/start as 5
snapd.refresh.timer: Installed new job snapd.refresh.timer/start as 73
apt-daily-upgrade.timer: Installed new job apt-daily-upgrade.timer/start as 68
snapd.autoimport.service: Installed new job snapd.autoimport.service/start as 101
dbus.socket: Installed new job dbus.socket/start as 80
plymouth-start.service: Installed new job plymouth-start.service/start as 39
systemd-ask-password-plymouth.path: Installed new job systemd-ask-password-plymouth.path/start as 40
getty.target: Installed new job getty.target/start as 86
lxcfs.service: Installed new job lxcfs.service/start as 103
uuidd.socket: Installed new job uuidd.socket/start as 79
dbus.service: Installed new job dbus.service/start as 126
systemd-ask-password-console.path: Installed new job systemd-ask-password-console.path/start as 17
systemd-tmpfiles-clean.timer: Installed new job systemd-tmpfiles-clean.timer/start as 70
remote-fs-pre.target: Installed new job remote-fs-pre.target/start as 27
systemd-tmpfiles-setup-dev.service: Installed new job systemd-tmpfiles-setup-dev.service/start as 55
ssh.service: Installed new job ssh.service/start as 122
systemd-journald-audit.socket: Installed new job systemd-journald-audit.socket/start as 48
sys-kernel-debug.mount: Installed new job sys-kernel-debug.mount/start as 11
system-serial\x2dgetty.slice: Installed new job system-serial\x2dgetty.slice/start as 88
motd-news.timer: Installed new job motd-news.timer/start as 72
lvm2-lvmpolld.socket: Installed new job lvm2-lvmpolld.socket/start as 36
sys-fs-fuse-connections.mount: Installed new job sys-fs-fuse-connections.mount/start as 18
systemd-networkd-wait-online.service: Installed new job systemd-networkd-wait-online.service/start as 24
friendly-recovery.service: Installed new job friendly-recovery.service/start as 38
systemd-journald-dev-log.socket: Installed new job systemd-journald-dev-log.socket/start as 47
kmod-static-nodes.service: Installed new job kmod-static-nodes.service/start as 29
serial-getty@ttyS0.service: Installed new job serial-getty@ttyS0.service/start as 87
cron.service: Installed new job cron.service/start as 100
snapd.core-fixup.service: Installed new job snapd.core-fixup.service/start as 104
grub-common.service: Installed new job grub-common.service/start as 109
systemd-random-seed.service: Installed new job systemd-random-seed.service/start as 20
graphical.target: Installed new job graphical.target/start as 1
dm-event.socket: Installed new job dm-event.socket/start as 57
systemd-udevd-kernel.socket: Installed new job systemd-udevd-kernel.socket/start as 16
systemd-resolved.service: Installed new job systemd-resolved.service/start as 106
systemd-udev-trigger.service: Installed new job systemd-udev-trigger.service/start as 13
sockets.target: Installed new job sockets.target/start as 75
atd.service: Installed new job atd.service/start as 102
apport.service: Installed new job apport.service/start as 85
systemd-update-utmp-runlevel.service: Installed new job systemd-update-utmp-runlevel.service/start as 118
slices.target: Installed new job slices.target/start as 74
apport-forward.socket: Installed new job apport-forward.socket/start as 82
lxd-containers.service: Installed new job lxd-containers.service/start as 111
lxd.socket: Installed new job lxd.socket/start as 77
systemd-logind.service: Installed new job systemd-logind.service/start as 124
nss-lookup.target: Installed new job nss-lookup.target/start as 108
systemd-hwdb-update.service: Installed new job systemd-hwdb-update.service/start as 49
accounts-daemon.service: Installed new job accounts-daemon.service/start as 129
swap.target: Installed new job swap.target/start as 10
snapd.service: Installed new job snapd.service/start as 110
unattended-upgrades.service: Installed new job unattended-upgrades.service/start as 121
ufw.service: Installed new job ufw.service/start as 117
getty@tty1.service: Installed new job getty@tty1.service/start as 93
setvtrgb.service: Installed new job setvtrgb.service/start as 31
snapd.snap-repair.timer: Installed new job snapd.snap-repair.timer/start as 69
lvm2-lvmetad.socket: Installed new job lvm2-lvmetad.socket/start as 21
systemd-initctl.socket: Installed new job systemd-initctl.socket/start as 78
systemd-tmpfiles-setup.service: Installed new job systemd-tmpfiles-setup.service/start as 58
local-fs-pre.target: Installed new job local-fs-pre.target/start as 8
system.slice: Installed new job system.slice/start as 6
paths.target: Installed new job paths.target/start as 65
systemd-machine-id-commit.service: Installed new job systemd-machine-id-commit.service/start as 37
systemd-remount-fs.service: Installed new job systemd-remount-fs.service/start as 54
time-sync.target: Installed new job time-sync.target/start as 34
systemd-update-utmp.service: Installed new job systemd-update-utmp.service/start as 119
dev-ttyS0.device: Installed new job dev-ttyS0.device/start as 89
network.target: Installed new job network.target/start as 26
systemd-ask-password-wall.path: Installed new job systemd-ask-password-wall.path/start as 120
boot-efi.mount: Installed new job boot-efi.mount/start as 51
dev-mqueue.mount: Installed new job dev-mqueue.mount/start as 30
dev-disk-by\x2dlabel-UEFI.device: Installed new job dev-disk-by\x2dlabel-UEFI.device/start as 52
network-pre.target: Installed new job network-pre.target/start as 99
iscsid.service: Installed new job iscsid.service/start as 28
acpid.path: Installed new job acpid.path/start as 66
acpid.socket: Installed new job acpid.socket/start as 83
rsync.service: Installed new job rsync.service/start as 128
system-getty.slice: Installed new job system-getty.slice/start as 94
sysinit.target: Installed new job sysinit.target/start as 4
open-vm-tools.service: Installed new job open-vm-tools.service/start as 115
nss-user-lookup.target: Installed new job nss-user-lookup.target/start as 130
rsyslog.service: Installed new job rsyslog.service/start as 95
plymouth-read-write.service: Installed new job plymouth-read-write.service/start as 60
systemd-user-sessions.service: Installed new job systemd-user-sessions.service/start as 84
systemd-journal-flush.service: Installed new job systemd-journal-flush.service/start as 59
network-online.target: Installed new job network-online.target/start as 23
systemd-resolved-update-resolvconf.path: Installed new job systemd-resolved-update-resolvconf.path/start as 107
systemd-timesyncd.service: Installed new job systemd-timesyncd.service/start as 33
ebtables.service: Installed new job ebtables.service/start as 98
user.slice: Installed new job user.slice/start as 125
getty-static.service: Installed new job getty-static.service/start as 92
open-iscsi.service: Installed new job open-iscsi.service/start as 22
remote-fs.target: Installed new job remote-fs.target/start as 114
ondemand.service: Installed new job ondemand.service/start as 127
apparmor.service: Installed new job apparmor.service/start as 44
local-fs.target: Installed new job local-fs.target/start as 50
systemd-modules-load.service: Installed new job systemd-modules-load.service/start as 62
systemd-sysctl.service: Installed new job systemd-sysctl.service/start as 43
systemd-udevd.service: Installed new job systemd-udevd.service/start as 14
systemd-udevd-control.socket: Installed new job systemd-udevd-control.socket/start as 15
dev-hugepages.mount: Installed new job dev-hugepages.mount/start as 41
timers.target: Installed new job timers.target/start as 67
console-setup.service: Installed new job console-setup.service/start as 105
lvm2-monitor.service: Installed new job lvm2-monitor.service/start as 56
sys-kernel-config.mount: Installed new job sys-kernel-config.mount/start as 42
irqbalance.service: Installed new job irqbalance.service/start as 97
syslog.socket: Installed new job syslog.socket/start as 96
apt-daily.timer: Installed new job apt-daily.timer/start as 71
systemd-networkd.socket: Installed new job systemd-networkd.socket/start as 81
systemd-binfmt.service: Installed new job systemd-binfmt.service/start as 19
systemd-journald.service: Installed new job systemd-journald.service/start as 45
multi-user.target: Installed new job multi-user.target/start as 2
proc-sys-fs-binfmt_misc.automount: Installed new job proc-sys-fs-binfmt_misc.automount/start as 32
pollinate.service: Installed new job pollinate.service/start as 112
snapd.socket: Installed new job snapd.socket/start as 76
graphical.target: Enqueued job graphical.target/start as 1
Loaded units and determined initial transaction in 335ms.
dev-disk-by\x2dlabel-cloudimg\x2drootfs.mount: Collecting.
run-systemd-fsck.progress.mount: Collecting.
run-apport.socket.mount: Collecting.
run-systemd-initctl.mount: Collecting.
run-systemd-initctl-fifo.mount: Collecting.
run-uuidd.mount: Collecting.
run-uuidd-request.mount: Collecting.
run-systemd-journal-dev\x2dlog.mount: Collecting.
run-systemd-journal-syslog.mount: Collecting.
run-lvm-lvmetad.socket.mount: Collecting.
run-lvm.mount: Collecting.
run-lvm-lvmpolld.socket.mount: Collecting.
run-dmeventd\x2dclient.mount: Collecting.
run-dmeventd\x2dserver.mount: Collecting.
proc.mount: Collecting.
proc-sys.mount: Collecting.
proc-sys-fs.mount: Collecting.
sys-fs.mount: Collecting.
sys-fs-fuse.mount: Collecting.
sys.mount: Collecting.
sys-kernel.mount: Collecting.
root.mount: Collecting.
usr.mount: Collecting.
var-lib-lxd.mount: Collecting.
var-lib-lxd-unix.socket.mount: Collecting.
var-lib-cloud.mount: Collecting.
run-systemd-ask\x2dpassword.mount: Collecting.
run-systemd-resolve.mount: Collecting.
run-systemd-resolve-stub\x2dresolv.conf.mount: Collecting.
var-run-dbus.mount: Collecting.
var-run-dbus-system_bus_socket.mount: Collecting.
var-run.mount: Collecting.
run-snapd\x2dsnap.socket.mount: Collecting.
run-snapd.socket.mount: Collecting.
var-lib-systemd-timers.mount: Collecting.
run-acpid.socket.mount: Collecting.
etc.mount: Collecting.
etc-acpi.mount: Collecting.
etc-acpi-events.mount: Collecting.
var-log-journal.mount: Collecting.
var-lib-systemd-random\x2dseed.mount: Collecting.
var-tmp.mount: Collecting.
var-lib.mount: Collecting.
var-lib-systemd.mount: Collecting.
var-lib-systemd-clock.mount: Collecting.
run-udev.mount: Collecting.
run-udev-control.mount: Collecting.
var.mount: Collecting.
var-log.mount: Collecting.
var-log-wtmp.mount: Collecting.
run-systemd-journal-socket.mount: Collecting.
run.mount: Collecting.
run-systemd.mount: Collecting.
run-systemd-journal.mount: Collecting.
run-systemd-journal-stdout.mount: Collecting.
dev.mount: Collecting.
dev-disk.mount: Collecting.
dev-disk-by\x2dlabel.mount: Collecting.
dev-disk-by\x2dlabel-UEFI.mount: Collecting.
boot.mount: Collecting.
Received SIGCHLD from PID 335 (n/a).
proc-sys-fs-binfmt_misc.automount: ConditionPathIsReadWrite=/proc/sys/ succeeded.
proc-sys-fs-binfmt_misc.automount: ConditionPathExists=/proc/sys/fs/binfmt_misc/ succeeded.
Autofs kernel version 1.0
Autofs protocol version 5.2
proc-sys-fs-binfmt_misc.automount: Changed dead -> waiting
proc-sys-fs-binfmt_misc.automount: Job proc-sys-fs-binfmt_misc.automount/start finished, result=done
[  OK  ] Set up automount Arbitrary Executab…rmats File System Automount Point.
systemd-networkd.socket: ConditionCapability=CAP_NET_ADMIN succeeded.
systemd-networkd.socket: Changed dead -> listening
systemd-networkd.socket: Job systemd-networkd.socket/start finished, result=done
[  OK  ] Listening on Network Service Netlink Socket.
syslog.socket: Changed dead -> listening
syslog.socket: Job syslog.socket/start finished, result=done
[  OK  ] Listening on Syslog Socket.
systemd-udevd-control.socket: ConditionPathIsReadWrite=/sys succeeded.
systemd-udevd-control.socket: Changed dead -> listening
systemd-udevd-control.socket: Job systemd-udevd-control.socket/start finished, result=done
[  OK  ] Listening on udev Control Socket.
user.slice changed dead -> active
user.slice: Job user.slice/start finished, result=done
[  OK  ] Created slice User and Session Slice.
nss-user-lookup.target changed dead -> active
nss-user-lookup.target: Job nss-user-lookup.target/start finished, result=done
[  OK  ] Reached target User and Group Name Lookups.
systemd-ask-password-wall.path: Changed dead -> waiting
systemd-ask-password-wall.path: Job systemd-ask-password-wall.path/start finished, result=done
[  OK  ] Started Forward Password Requests to Wall Directory Watch.
system.slice changed dead -> active
system.slice: Job system.slice/start finished, result=done
[  OK  ] Created slice System Slice.
/proc/self/uid_map has a full 1:1 mapping
/proc/self/gid_map has a full 1:1 mapping
/proc/self/setgroups contains "allow", not in user namespace
dev-hugepages.mount: ConditionVirtualization=!private-users succeeded.
dev-hugepages.mount: ConditionCapability=CAP_SYS_ADMIN succeeded.
dev-hugepages.mount: ConditionPathExists=/sys/kernel/mm/hugepages succeeded.
dev-hugepages.mount: Failed to check symlink /dev/hugepages, ignoring: No such file or directory
dev-hugepages.mount: About to execute: /bin/mount hugetlbfs /dev/hugepages -t hugetlbfs
dev-hugepages.mount: Forked /bin/mount as 352
dev-hugepages.mount: Changed dead -> mounting
         Mounting Huge Pages File System...
dev-mqueue.mount: ConditionCapability=CAP_SYS_ADMIN succeeded.
dev-mqueue.mount: ConditionPathExists=/proc/sys/fs/mqueue succeeded.
dev-mqueue.mount: Failed to check symlink /dev/mqueue, ignoring: No such file or directory
dev-mqueue.mount: About to execute: /bin/mount mqueue /dev/mqueue -t mqueue
dev-mqueue.mount: Forked /bin/mount as 353
dev-hugepages.mount: Executing: /bin/mount hugetlbfs /dev/hugepages -t hugetlbfs
dev-mqueue.mount: Executing: /bin/mount mqueue /dev/mqueue -t mqueue
dev-mqueue.mount: Changed dead -> mounting
         Mounting POSIX Message Queue File System...
systemd-initctl.socket: Changed dead -> listening
systemd-initctl.socket: Job systemd-initctl.socket/start finished, result=done
[  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
lvm2-lvmetad.socket: Changed dead -> listening
lvm2-lvmetad.socket: Job lvm2-lvmetad.socket/start finished, result=done
[  OK  ] Listening on LVM2 metadata daemon socket.
swap.target changed dead -> active
swap.target: Job swap.target/start finished, result=done
[  OK  ] Reached target Swap.
slices.target changed dead -> active
slices.target: Job slices.target/start finished, result=done
[  OK  ] Reached target Slices.
systemd-udevd-kernel.socket: ConditionPathIsReadWrite=/sys succeeded.
systemd-udevd-kernel.socket: Changed dead -> listening
systemd-udevd-kernel.socket: Job systemd-udevd-kernel.socket/start finished, result=done
[  OK  ] Listening on udev Kernel Socket.
dm-event.socket: Changed dead -> listening
dm-event.socket: Job dm-event.socket/start finished, result=done
[  OK  ] Listening on Device-mapper event daemon FIFOs.
systemd-journald-dev-log.socket: Changed dead -> listening
systemd-journald-dev-log.socket: Job systemd-journald-dev-log.socket/start finished, result=done
[  OK  ] Listening on Journal Socket (/dev/log).
lvm2-lvmpolld.socket: Changed dead -> listening
lvm2-lvmpolld.socket: Job lvm2-lvmpolld.socket/start finished, result=done
[  OK  ] Listening on LVM2 poll daemon socket.
system-serial\x2dgetty.slice changed dead -> active
system-serial\x2dgetty.slice: Job system-serial\x2dgetty.slice/start finished, result=done
[  OK  ] Created slice system-serial\x2dgetty.slice.
sys-kernel-debug.mount: ConditionCapability=CAP_SYS_RAWIO succeeded.
sys-kernel-debug.mount: ConditionPathExists=/sys/kernel/debug succeeded.
sys-kernel-debug.mount: About to execute: /bin/mount debugfs /sys/kernel/debug -t debugfs
sys-kernel-debug.mount: Forked /bin/mount as 354
sys-kernel-debug.mount: Changed dead -> mounting
         Mounting Kernel Debug File System...
/proc/self/uid_map has a full 1:1 mapping
/proc/self/gid_map has a full 1:1 mapping
/proc/self/setgroups contains "allow", not in user namespace
systemd-journald-audit.socket: ConditionVirtualization=!private-users succeeded.
systemd-journald-audit.socket: ConditionCapability=CAP_AUDIT_READ succeeded.sys-kernel-debug.mount: Executing: /bin/mount debugfs /sys/kernel/debug -t debugfs

systemd-journald-audit.socket: ConditionSecurity=audit succeeded.
systemd-journald-audit.socket: Changed dead -> listening
systemd-journald-audit.socket: Job systemd-journald-audit.socket/start finished, result=done
[  OK  ] Listening on Journal Audit Socket.
systemd-journald.socket: Changed dead -> listening
systemd-journald.socket: Job systemd-journald.socket/start finished, result=done
[  OK  ] Listening on Journal Socket.
systemd-binfmt.service: ConditionDirectoryNotEmpty=|/run/binfmt.d failed.
systemd-binfmt.service: ConditionDirectoryNotEmpty=|/etc/binfmt.d failed.
systemd-binfmt.service: ConditionDirectoryNotEmpty=|/usr/local/lib/binfmt.d failed.
systemd-binfmt.service: ConditionDirectoryNotEmpty=|/usr/lib/binfmt.d failed.
systemd-binfmt.service: ConditionDirectoryNotEmpty=|/lib/binfmt.d failed.
systemd-binfmt.service: ConditionPathIsReadWrite=/proc/sys/ succeeded.
systemd-binfmt.service: Starting requested but condition failed. Not starting unit.
systemd-binfmt.service: Job systemd-binfmt.service/start finished, result=done
systemd-remount-fs.service: ConditionVirtualization=!container succeeded.
systemd-remount-fs.service: ConditionPathExists=/etc/fstab succeeded.
systemd-remount-fs.service: Passing 0 fds to service
systemd-remount-fs.service: About to execute: /lib/systemd/systemd-remount-fs
systemd-remount-fs.service: Forked /lib/systemd/systemd-remount-fs as 355
systemd-remount-fs.service: Changed dead -> start
         Starting Remount Root and Kernel File Systems...
kmod-static-nodes.service: ConditionFileNotEmpty=/lib/modules/4.13.0-16-generic/modules.devname succeeded.
kmod-static-nodes.service: ConditionCapability=CAP_SYS_MODULE succeeded.
kmod-static-nodes.service: Passing 0 fds to service
kmod-static-nodes.service: About to execute: /bin/kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
kmod-static-nodes.service: Forked /bin/kmod as 356
systemd-remount-fs.service: Executing: /lib/systemd/systemd-remount-fs
kmod-static-nodes.service: Executing: /bin/kmod static-nodes --format=tmpfiles --output=/run/tmpfiles.d/kmod.conf
kmod-static-nodes.service: Changed dead -> start
         Starting Create list of required st…ce nodes for the current kernel...
systemd-modules-load.service: ConditionKernelCommandLine=|rd.modules-load failed.
systemd-modules-load.service: ConditionKernelCommandLine=|modules-load failed.
systemd-modules-load.service: ConditionDirectoryNotEmpty=|/run/modules-load.d failed.
systemd-modules-load.service: ConditionDirectoryNotEmpty=|/etc/modules-load.d succeeded.[    4.502595] EXT4-fs (vda1): re-mounted. Opts: (null)

systemd-modules-load.service: ConditionDirectoryNotEmpty=|/usr/local/lib/modules-load.d failed.
systemd-modules-load.service: ConditionDirectoryNotEmpty=|/usr/lib/modules-load.d failed.
systemd-modules-load.service: ConditionDirectoryNotEmpty=|/lib/modules-load.d succeeded.
systemd-modules-load.service: ConditionCapability=CAP_SYS_MODULE succeeded.
systemd-modules-load.service: Passing 0 fds to service
systemd-modules-load.service: About to execute: /lib/systemd/systemd-modules-load
systemd-modules-load.service: Forked /lib/systemd/systemd-modules-load as 358
systemd-modules-load.service: Changed dead -> start
         Starting Load Kernel Modules...
keyboard-setup.service: ConditionPathExists=/bin/setupcon succeeded.
keyboard-setup.service: Passing 0 fds to service
keyboard-setup.service: About to execute: /lib/console-setup/keyboard-setup.sh
keyboard-setup.service: Forked /lib/console-setup/keyboard-setup.sh as 359
systemd-modules-load.service: Executing: /lib/systemd/systemd-modules-load
keyboard-setup.service: Changed dead -> startkeyboard-setup.service: Executing: /lib/console-setup/keyboard-setup.sh
         Starting Set the console keyboard layout...
systemd-journald.service: Passing 4 fds to service
systemd-journald.service: About to execute: /lib/systemd/systemd-journald
systemd-journald.service: Forked /lib/systemd/systemd-journald as 360

systemd-journald.service: Changed dead -> startsystemd-journald.service: Executing: /lib/systemd/systemd-journald
         Starting Journal Service...
lvm2-monitor.service: ConditionVirtualization=!container succeeded.
lvm2-monitor.service: Passing 0 fds to service
lvm2-monitor.service: About to execute: /sbin/lvm vgchange --monitor y --ignoreskippedcluster
lvm2-monitor.service: Forked /sbin/lvm as 361

lvm2-monitor.service: Executing: /sbin/lvm vgchange --monitor y --ignoreskippedcluster
lvm2-monitor.service: Changed dead -> start
         Starting Monitoring of LVM2 mirrors…ng dmeventd or progress polling...
ufw.service: Passing 0 fds to service
ufw.service: About to execute: /lib/ufw/ufw-init start quiet
ufw.service: Forked /lib/ufw/ufw-init as 365
ufw.service: Changed dead -> start
         Starting Uncomplicated firewall...
libmount event [rescan: yes]
sys-kernel-debug.mount: Changed mounting -> mounting-done
sys-kernel-debug.mount: Job sys-kernel-debug.mount/start finished, result=done
[  OK  ] Mounted Kernel Debug File System.
dev-mqueue.mount: Changed mounting -> mounting-done
dev-mqueue.mount: Job dev-mqueue.mount/start finished, result=done
[  OK  ] Mounted POSIX Message Queue File System.
dev-hugepages.mount: Changed mounting -> mounting-done
dev-hugepages.mount: Job dev-hugepages.mount/start finished, result=done
[  OK  ] Mounted Huge Pages File System.
ufw.service: Executing: /lib/ufw/ufw-init start quiet
[    4.560182] Loading iSCSI transport class v2.0-870.
Received SIGCHLD from PID 353 (mount).
Child 352 (mount) died (code=exited, status=0/SUCCESS)
dev-hugepages.mount: Child 352 belongs to dev-hugepages.mount
dev-hugepages.mount: Mount process exited, code=exited status=0
dev-hugepages.mount: Changed mounting-done -> mounted
Child 353 (mount) died (code=exited, status=0/SUCCESS)
dev-mqueue.mount: Child 353 belongs to dev-mqueue.mount
dev-mqueue.mount: Mount process exited, code=exited status=0
dev-mqueue.mount: Changed mounting-done -> mounted
Child 354 (mount) died (code=exited, status=0/SUCCESS)
sys-kernel-debug.mount: Child 354 belongs to sys-kernel-debug.mount
sys-kernel-debug.mount: Mount process exited, code=exited status=0
sys-kernel-debug.mount: Changed mounting-done -> mounted
Child 355 (systemd-remount) died (code=exited, status=0/SUCCESS)
systemd-remount-fs.service: Child 355 belongs to systemd-remount-fs.service
systemd-remount-fs.service: Main process exited, code=exited, status=0/SUCCESS
systemd-remount-fs.service: Changed start -> exited
systemd-remount-fs.service: Job systemd-remount-fs.service/start finished, result=done
[  OK  ] Started Remount Root and Kernel File Systems.
Child 356 (kmod) died (code=exited, status=0/SUCCESS)
kmod-static-nodes.service: Child 356 belongs to kmod-static-nodes.service
kmod-static-nodes.service: Main process exited, code=exited, status=0/SUCCESS
kmod-static-nodes.service: Changed start -> exited
kmod-static-nodes.service: Job kmod-static-nodes.service/start finished, result=done
[  OK  ] Started Create list of required sta…vice nodes for the current kernel.
Child 365 (ufw-init) died (code=exited, status=0/SUCCESS)
ufw.service: Child 365 belongs to ufw.service
ufw.service: Main process exited, code=exited, status=0/SUCCESS
[    4.616470] iscsi: registered transport (tcp)
ufw.service: Changed start -> exited
ufw.service: Job ufw.service/start finished, result=done
[  OK  ] Started Uncomplicated firewall.
Received SIGCHLD from PID 365 (n/a).
systemd-journald.socket: Incoming traffic
systemd-journald.socket: Changed listening -> running
systemd-udevd-kernel.socket: Incoming traffic
systemd-udevd-kernel.socket: Changed listening -> running
lvm2-lvmetad.socket: Incoming traffic
lvm2-lvmetad.service: Trying to enqueue job lvm2-lvmetad.service/start/replace
lvm2-lvmetad.service: Installed new job lvm2-lvmetad.service/start as 131
lvm2-lvmetad.service: Enqueued job lvm2-lvmetad.service/start as 131
lvm2-lvmetad.socket: Changed listening -> running
lvm2-lvmetad.service: ConditionVirtualization=!container succeeded.
lvm2-lvmetad.service: Passing 1 fds to service
lvm2-lvmetad.service: About to execute: /sbin/lvmetad -f
lvm2-lvmetad.service: Forked /sbin/lvmetad as 370
lvm2-lvmetad.service: Changed dead -> running
lvm2-lvmetad.service: Job lvm2-lvmetad.service/start finished, result=done
[  OK  ] Started LVM2 metadata daemon.
systemd-tmpfiles-setup-dev.service: ConditionCapability=CAP_SYS_MODULE succeeded.
systemd-tmpfiles-setup-dev.service: Passing 0 fds to service
systemd-tmpfiles-setup-dev.service: About to execute: /bin/systemd-tmpfiles --prefix=/dev --create --boot
systemd-tmpfiles-setup-dev.service: Forked /bin/systemd-tmpfiles as 371
systemd-tmpfiles-setup-dev.service: Changed dead -> start
         Starting Create Static Device Nodes in /dev...
lvm2-lvmetad.service: Executing: /sbin/lvmetad -f
systemd-hwdb-update.service: ConditionDirectoryNotEmpty=|/etc/udev/hwdb.d/ failed.
systemd-hwdb-update.service: ConditionPathExists=|/etc/udev/hwdb.bin failed.
systemd-tmpfiles-setup-dev.service: Executing: /bin/systemd-tmpfiles --prefix=/dev --create --boot
systemd-hwdb-update.service: ConditionPathExists=|!/lib/udev/hwdb.bin failed.
systemd-hwdb-update.service: ConditionNeedsUpdate=/etc succeeded.
systemd-hwdb-update.service: Starting requested but condition failed. Not starting unit.
systemd-hwdb-update.service: Job systemd-hwdb-update.service/start finished, result=done
systemd-udev-trigger.service: ConditionPathIsReadWrite=/sys succeeded.
systemd-udev-trigger.service: Passing 0 fds to service
systemd-udev-trigger.service: About to execute: /bin/udevadm trigger --type=subsystems --action=add
systemd-udev-trigger.service: Forked /bin/udevadm as 377
systemd-udev-trigger.service: Changed dead -> start
         Starting udev Coldplug all Devices...
systemd-random-seed.service: ConditionVirtualization=!container succeeded.
systemd-random-seed.service: Passing 0 fds to service
systemd-random-seed.service: About to execute: /lib/systemd/systemd-random-seed load
systemd-random-seed.service: Forked /lib/systemd/systemd-random-seed as 378
systemd-random-seed.service: Changed dead -> start
systemd-udev-trigger.service: Executing: /bin/udevadm trigger --type=subsystems --action=add
         Starting Load/Save Random Seed...
systemd-random-seed.service: Executing: /lib/systemd/systemd-random-seed load
Received SIGCHLD from PID 378 (systemd-random-).
Child 378 (systemd-random-) died (code=exited, status=0/SUCCESS)
systemd-random-seed.service: Child 378 belongs to systemd-random-seed.service
systemd-random-seed.service: Main process exited, code=exited, status=0/SUCCESS
systemd-random-seed.service: Changed start -> exited
systemd-random-seed.service: Job systemd-random-seed.service/start finished, result=done
[  OK  ] Started Load/Save Random Seed.
Child 361 (lvm) died (code=exited, status=0/SUCCESS)
lvm2-monitor.service: Child 361 belongs to lvm2-monitor.service
lvm2-monitor.service: Main process exited, code=exited, status=0/SUCCESS
lvm2-monitor.service: Changed start -> exited
lvm2-monitor.service: Job lvm2-monitor.service/start finished, result=done
[  OK  ] Started Monitoring of LVM2 mirrors,…sing dmeventd or progress polling.
systemd-journald.service: Got notification message from PID 360 (READY=1, STATUS=Processing requests...)
systemd-journald.service: Changed start -> running
systemd-journald.service: Job systemd-journald.service/start finished, result=done
[  OK  ] Started Journal Service.
systemd-journald-dev-log.socket: Changed listening -> running
systemd-journald-audit.socket: Changed listening -> running
systemd-journald.service: Got notification message from PID 360 (WATCHDOG=1)
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)[    4.736323] iscsi: registered transport (iser)

systemd-journald.service: Added fd 41 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 42 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 43 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 44 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 45 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 46 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 47 (n/a) to fd store.
Received SIGCHLD from PID 361 (n/a).
Child 358 (systemd-modules) died (code=exited, status=0/SUCCESS)
systemd-modules-load.service: Child 358 belongs to systemd-modules-load.service
systemd-modules-load.service: Main process exited, code=exited, status=0/SUCCESS
systemd-modules-load.service: Changed start -> exited
systemd-modules-load.service: Job systemd-modules-load.service/start finished, result=done
[  OK  ] Started Load Kernel Modules.
Child 371 (systemd-tmpfile) died (code=exited, status=0/SUCCESS)
systemd-tmpfiles-setup-dev.service: Child 371 belongs to systemd-tmpfiles-setup-dev.service
systemd-tmpfiles-setup-dev.service: Main process exited, code=exited, status=0/SUCCESS
systemd-tmpfiles-setup-dev.service: Changed start -> exited
systemd-tmpfiles-setup-dev.service: Job systemd-tmpfiles-setup-dev.service/start finished, result=done
[  OK  ] Started Create Static Device Nodes in /dev.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 48 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 49 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 50 (n/a) to fd store.
Received SIGCHLD from PID 377 (udevadm).
Child 377 (udevadm) died (code=exited, status=0/SUCCESS)
systemd-udev-trigger.service: Child 377 belongs to systemd-udev-trigger.service
systemd-udev-trigger.service: Main process exited, code=exited, status=0/SUCCESS
systemd-udev-trigger.service: Running next main command for state start.
systemd-udev-trigger.service: Passing 0 fds to service
systemd-udev-trigger.service: About to execute: /bin/udevadm trigger --type=devices --action=add
systemd-udev-trigger.service: Forked /bin/udevadm as 382
syslog.socket: Incoming traffic
syslog.socket: Changed listening -> running
systemd-journald.service: Received EPOLLHUP on stored fd 41 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 42 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 43 (stored), closing.systemd-udev-trigger.service: Executing: /bin/udevadm trigger --type=devices --action=add

systemd-journald.service: Received EPOLLHUP on stored fd 45 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 46 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 48 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 49 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 50 (stored), closing.
systemd-udevd.service: ConditionPathIsReadWrite=/sys succeeded.
systemd-udevd.service: Passing 2 fds to service
systemd-udevd.service: About to execute: /lib/systemd/systemd-udevd
systemd-udevd.service: Forked /lib/systemd/systemd-udevd as 383
systemd-udevd.service: Changed dead -> start
         Starting udev Kernel Device Manager...
systemd-sysctl.service: ConditionPathIsReadWrite=/proc/sys/net/ succeeded.
systemd-sysctl.service: Passing 0 fds to service
systemd-sysctl.service: About to execute: /lib/systemd/systemd-sysctl
systemd-sysctl.service: Forked /lib/systemd/systemd-sysctl as 384
systemd-sysctl.service: Changed dead -> start
         Starting Apply Kernel Variables...
/proc/self/uid_map has a full 1:1 mapping
/proc/self/gid_map has a full 1:1 mapping
/proc/self/setgroups contains "allow", not in user namespace
sys-fs-fuse-connections.mount: ConditionVirtualization=!private-users succeeded.systemd-udevd.service: Executing: /lib/systemd/systemd-udevd

sys-fs-fuse-connections.mount: ConditionCapability=CAP_SYS_ADMIN succeeded.
sys-fs-fuse-connections.mount: ConditionPathExists=/sys/fs/fuse/connections succeeded.
sys-fs-fuse-connections.mount: About to execute: /bin/mount fusectl /sys/fs/fuse/connections -t fusectlsystemd-sysctl.service: Executing: /lib/systemd/systemd-sysctl

sys-fs-fuse-connections.mount: Forked /bin/mount as 385
sys-fs-fuse-connections.mount: Changed dead -> mounting
         Mounting FUSE Control File System...
sys-kernel-config.mount: ConditionCapability=CAP_SYS_RAWIO succeeded.
sys-kernel-config.mount: ConditionPathExists=/sys/kernel/config succeeded.
sys-kernel-config.mount: About to execute: /bin/mount configfs /sys/kernel/config -t configfs
sys-kernel-config.mount: Forked /bin/mount as 386
sys-kernel-config.mount: Changed dead -> mounting
         Mounting Kernel Configuration File System...
sys-fs-fuse-connections.mount: Executing: /bin/mount fusectl /sys/fs/fuse/connections -t fusectl
sys-kernel-config.mount: Executing: /bin/mount configfs /sys/kernel/config -t configfs
systemd-journal-flush.service: Passing 0 fds to service
systemd-journal-flush.service: About to execute: /bin/journalctl --flush
systemd-journal-flush.service: Forked /bin/journalctl as 387
systemd-journal-flush.service: Changed dead -> start
         Starting Flush Journal to Persistent Storage...
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 41 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 42 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 43 (n/a) to fd store.systemd-journal-flush.service: Executing: /bin/journalctl --flush

Received SIGCHLD from PID 384 (systemd-sysctl).
Child 384 (systemd-sysctl) died (code=exited, status=0/SUCCESS)
systemd-sysctl.service: Child 384 belongs to systemd-sysctl.service
systemd-sysctl.service: Main process exited, code=exited, status=0/SUCCESS
systemd-sysctl.service: Changed start -> exited
systemd-sysctl.service: Job systemd-sysctl.service/start finished, result=done
[  OK  ] Started Apply Kernel Variables.
Child 385 (mount) died (code=exited, status=0/SUCCESS)
sys-fs-fuse-connections.mount: Child 385 belongs to sys-fs-fuse-connections.mount
sys-fs-fuse-connections.mount: Mount process exited, code=exited status=0
sys-fs-fuse-connections.mount: Changed mounting -> mounted
sys-fs-fuse-connections.mount: Job sys-fs-fuse-connections.mount/start finished, result=done
[  OK  ] Mounted FUSE Control File System.
Child 386 (mount) died (code=exited, status=0/SUCCESS)
sys-kernel-config.mount: Child 386 belongs to sys-kernel-config.mount
sys-kernel-config.mount: Mount process exited, code=exited status=0
sys-kernel-config.mount: Changed mounting -> mounted
sys-kernel-config.mount: Job sys-kernel-config.mount/start finished, result=done
[  OK  ] Mounted Kernel Configuration File System.
libmount event [rescan: yes]
Received SIGCHLD from PID 386 (n/a).
systemd-journald.service: Received EPOLLHUP on stored fd 43 (stored), closing.
Accepted new private connection.
systemd-udevd.service: Got notification message from PID 383 (WATCHDOG=1)
systemd-udevd.service: Got notification message from PID 383 (READY=1, STATUS=Processing with 10 children at max)
systemd-udevd.service: Changed start -> running
systemd-udevd.service: Job systemd-udevd.service/start finished, result=done
[  OK  ] Started udev Kernel Device Manager.
systemd-udevd-control.socket: Changed listening -> running
friendly-recovery.service: ConditionKernelCommandLine=recovery failed.
friendly-recovery.service: Starting requested but condition failed. Not starting unit.
friendly-recovery.service: Job friendly-recovery.service/start finished, result=done
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 45 (n/a) to fd store.
Got disconnect on private connection.
systemd-journald.service: Received EPOLLHUP on stored fd 45 (stored), closing.
Received SIGCHLD from PID 387 (journalctl).
Child 387 (journalctl) died (code=exited, status=0/SUCCESS)
systemd-journal-flush.service: Child 387 belongs to systemd-journal-flush.service
systemd-journal-flush.service: Main process exited, code=exited, status=0/SUCCESS
systemd-journal-flush.service: Changed start -> exited
systemd-journal-flush.service: Job systemd-journal-flush.service/start finished, result=done
[  OK  ] Started Flush Journal to Persistent Storage.
systemd-journald.service: Received EPOLLHUP on stored fd 41 (stored), closing.
Received SIGCHLD from PID 382 (udevadm).
Child 382 (udevadm) died (code=exited, status=0/SUCCESS)
systemd-udev-trigger.service: Child 382 belongs to systemd-udev-trigger.service
systemd-udev-trigger.service: Main process exited, code=exited, status=0/SUCCESS
systemd-udev-trigger.service: Changed start -> exited
systemd-udev-trigger.service: Job systemd-udev-trigger.service/start finished, result=done
[  OK  ] Started udev Coldplug all Devices.
systemd-journald.service: Received EPOLLHUP on stored fd 44 (stored), closing.
Received SIGCHLD from PID 359 (keyboard-setup.).
Child 359 (keyboard-setup.) died (code=exited, status=0/SUCCESS)
keyboard-setup.service: Child 359 belongs to keyboard-setup.service
keyboard-setup.service: Main process exited, code=exited, status=0/SUCCESS
keyboard-setup.service: Changed start -> exited
keyboard-setup.service: Job keyboard-setup.service/start finished, result=done
[  OK  ] Started Set the console keyboard layout.
plymouth-start.service: ConditionKernelCommandLine=splash failed.
plymouth-start.service: Starting requested but condition failed. Not starting unit.
plymouth-start.service: Job plymouth-start.service/start finished, result=done
systemd-ask-password-console.path: ConditionPathExists=!/run/plymouth/pid succeeded.
systemd-ask-password-console.path: Changed dead -> waiting
systemd-ask-password-console.path: Job systemd-ask-password-console.path/start finished, result=done
[  OK  ] Started Dispatch Password Requests to Console Directory Watch.
cryptsetup.target changed dead -> active
cryptsetup.target: Job cryptsetup.target/start finished, result=done
[  OK  ] Reached target Encrypted Volumes.
systemd-ask-password-plymouth.path: ConditionPathExists=/run/plymouth/pid failed.
systemd-ask-password-plymouth.path: Starting requested but condition failed. Not starting unit.
systemd-ask-password-plymouth.path: Job systemd-ask-password-plymouth.path/start finished, result=done
local-fs-pre.target changed dead -> active
local-fs-pre.target: Job local-fs-pre.target/start finished, result=done
[  OK  ] Reached target Local File Systems (Pre).
sys-module-configfs.device: Changed dead -> plugged
sys-module-fuse.device: Changed dead -> plugged
dev-ttyS11.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS11.device: Changed dead -> plugged
dev-ttyS12.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS12.device: Changed dead -> plugged
dev-ttyS13.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS13.device: Changed dead -> plugged
dev-ttyS1.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS1.device: Changed dead -> plugged
dev-ttyS15.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS15.device: Changed dead -> plugged
dev-ttyS16.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS16.device: Changed dead -> plugged
dev-ttyS10.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS10.device: Changed dead -> plugged
dev-ttyS14.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS14.device: Changed dead -> plugged
dev-ttyS17.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS17.device: Changed dead -> plugged
dev-ttyS18.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS18.device: Changed dead -> plugged
dev-ttyS20.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS20.device: Changed dead -> plugged
dev-ttyS19.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS19.device: Changed dead -> plugged
dev-ttyS22.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS22.device: Changed dead -> plugged
dev-ttyS21.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS21.device: Changed dead -> plugged
dev-ttyS2.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS2.device: Changed dead -> plugged
dev-ttyS26.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS26.device: Changed dead -> plugged
dev-ttyS23.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS23.device: Changed dead -> plugged
dev-ttyS29.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS29.device: Changed dead -> plugged
dev-ttyS24.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS24.device: Changed dead -> plugged
dev-ttyS25.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS25.device: Changed dead -> plugged
dev-ttyS27.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS27.device: Changed dead -> plugged
dev-ttyS28.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS28.device: Changed dead -> plugged
dev-ttyS5.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS5.device: Changed dead -> plugged
dev-ttyS30.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS30.device: Changed dead -> plugged
dev-ttyS3.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS3.device: Changed dead -> plugged
dev-ttyS6.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS6.device: Changed dead -> plugged
dev-ttyS31.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS31.device: Changed dead -> plugged
dev-ttyS4.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS4.device: Changed dead -> plugged
dev-ttyS8.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS8.device: Changed dead -> plugged
dev-ttyS7.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS7.device: Changed dead -> plugged
dev-ttyS9.device: Changed dead -> plugged
sys-devices-platform-serial8250-tty-ttyS9.device: Changed dead -> plugged
sys-subsystem-net-devices-ens3.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:03.0-net-ens3.device: Changed dead -> plugged
dev-ttyS0.device: Changed dead -> plugged
dev-ttyS0.device: Job dev-ttyS0.device/start finished, result=done
[  OK  ] Found device /dev/ttyS0.
sys-devices-pnp0-00:05-tty-ttyS0.device: Changed dead -> plugged
dev-disk-by\x2duuid-2017\x2d10\x2d26\x2d19\x2d29\x2d57\x2d00.device: Changed dead -> plugged
dev-disk-by\x2dpath-virtio\x2dpci\x2d0000:00:06.0.device: Changed dead -> plugged
dev-disk-by\x2dpath-pci\x2d0000:00:06.0.device: Changed dead -> plugged
dev-disk-by\x2dlabel-cidata.device: Changed dead -> plugged
dev-disk-by\x2did-virtio\x2dmy\x2dseed.img.device: Changed dead -> plugged
dev-vdb.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:06.0-virtio2-block-vdb.device: Changed dead -> plugged
dev-fd0.device: Changed dead -> plugged
sys-devices-platform-floppy.0-block-fd0.device: Changed dead -> plugged
dev-disk-by\x2dpath-virtio\x2dpci\x2d0000:00:05.0.device: Changed dead -> plugged
dev-disk-by\x2dpath-pci\x2d0000:00:05.0.device: Changed dead -> plugged
dev-disk-by\x2did-virtio\x2dmy.img.device: Changed dead -> plugged
dev-vda.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:05.0-virtio1-block-vda.device: Changed dead -> plugged
dev-disk-by\x2duuid-A71C\x2d72D8.device: Changed dead -> plugged
dev-disk-by\x2dpath-virtio\x2dpci\x2d0000:00:05.0\x2dpart15.device: Changed dead -> plugged
dev-disk-by\x2dpath-pci\x2d0000:00:05.0\x2dpart15.device: Changed dead -> plugged
dev-disk-by\x2dpartuuid-1c2593ed\x2d20b0\x2d4df8\x2d8ccf\x2d9f67f8597ddb.device: Changed dead -> plugged
dev-disk-by\x2dlabel-UEFI.device: Changed dead -> plugged
dev-disk-by\x2dlabel-UEFI.device: Job dev-disk-by\x2dlabel-UEFI.device/start finished, result=done
[  OK  ] Found device /dev/disk/by-label/UEFI.
dev-disk-by\x2did-virtio\x2dmy.img\x2dpart15.device: Changed dead -> plugged
dev-vda15.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:05.0-virtio1-block-vda-vda15.device: Changed dead -> plugged
boot-efi.mount: About to execute: /bin/mount /dev/disk/by-label/UEFI /boot/efi -t vfat
boot-efi.mount: Forked /bin/mount as 461
boot-efi.mount: Changed dead -> mounting
         Mounting /boot/efi...
dev-dvd.device: Changed dead -> plugged
dev-disk-by\x2dpath-pci\x2d0000:00:01.1\x2data\x2d2.device: Changed dead -> plugged
dev-disk-by\x2did-ata\x2dQEMU_DVD\x2dROM_QM00003.device: Changed dead -> pluggedboot-efi.mount: Executing: /bin/mount /dev/disk/by-label/UEFI /boot/efi -t vfat

dev-cdrom.device: Changed dead -> plugged
dev-sr0.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:01.1-ata2-host1-target1:0:0-1:0:0:0-block-sr0.device: Changed dead -> plugged
dev-disk-by\x2duuid-7b1c6b9a\x2d5b13\x2d4a14\x2dae0b\x2d7d293a380dea.device: Changed dead -> plugged
dev-disk-by\x2dpath-virtio\x2dpci\x2d0000:00:05.0\x2dpart1.device: Changed dead -> plugged
dev-disk-by\x2dpath-pci\x2d0000:00:05.0\x2dpart1.device: Changed dead -> plugged
dev-disk-by\x2dpartuuid-9697fbdd\x2da35d\x2d46d6\x2da51c\x2d08bfab833468.device: Changed dead -> plugged
dev-disk-by\x2dlabel-cloudimg\x2drootfs.device: Changed dead -> plugged
dev-disk-by\x2did-virtio\x2dmy.img\x2dpart1.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:05.0-virtio1-block-vda-vda1.device: Changed dead -> plugged
dev-vda1.device: Changed tentative -> plugged
libmount event [rescan: yes]
boot-efi.mount: Changed mounting -> mounting-done
boot-efi.mount: Job boot-efi.mount/start finished, result=done
[  OK  ] Mounted /boot/efi.
Received SIGCHLD from PID 461 (mount).
Child 461 (mount) died (code=exited, status=0/SUCCESS)
boot-efi.mount: Child 461 belongs to boot-efi.mount
boot-efi.mount: Mount process exited, code=exited status=0
boot-efi.mount: Changed mounting-done -> mounted
local-fs.target changed dead -> active
local-fs.target: Job local-fs.target/start finished, result=done
[  OK  ] Reached target Local File Systems.
plymouth-read-write.service: ConditionPathExists=!/etc/initrd-release succeeded.
plymouth-read-write.service: Passing 0 fds to service
plymouth-read-write.service: About to execute: /bin/plymouth update-root-fs --read-write
plymouth-read-write.service: Forked /bin/plymouth as 469
plymouth-read-write.service: Changed dead -> start
         Starting Tell Plymouth To Write Out Runtime Data...
systemd-tmpfiles-setup.service: Passing 0 fds to service
systemd-tmpfiles-setup.service: About to execute: /bin/systemd-tmpfiles --create --remove --boot --exclude-prefix=/devplymouth-read-write.service: Executing: /bin/plymouth update-root-fs --read-write

systemd-tmpfiles-setup.service: Forked /bin/systemd-tmpfiles as 470
systemd-tmpfiles-setup.service: Changed dead -> start
         Starting Create Volatile Files and Directories...
ebtables.service: Passing 0 fds to service
ebtables.service: About to execute: /etc/init.d/ebtables start
ebtables.service: Forked /etc/init.d/ebtables as 471
ebtables.service: Changed dead -> start
         Starting ebtables ruleset management...
console-setup.service: ConditionPathExists=/bin/setupcon succeeded.
console-setup.service: Passing 0 fds to service
console-setup.service: About to execute: /lib/console-setup/console-setup.sh
console-setup.service: Forked /lib/console-setup/console-setup.sh as 473systemd-tmpfiles-setup.service: Executing: /bin/systemd-tmpfiles --create --remove --boot --exclude-prefix=/dev
ebtables.service: Executing: /etc/init.d/ebtables start

console-setup.service: Changed dead -> start
         Starting Set console font and keymap...
systemd-machine-id-commit.service: ConditionPathIsMountPoint=/etc/machine-id succeeded.
systemd-machine-id-commit.service: ConditionPathIsReadWrite=/etc succeeded.
systemd-machine-id-commit.service: Passing 0 fds to service
systemd-machine-id-commit.service: About to execute: /bin/systemd-machine-id-setup --commit
systemd-machine-id-commit.service: Forked /bin/systemd-machine-id-setup as 474
systemd-machine-id-commit.service: Changed dead -> start
         Starting Commit a transient machine-id on disk...
apparmor.service: ConditionPathExists=!/rofs/etc/apparmor.d succeeded.
apparmor.service: ConditionSecurity=apparmor succeeded.console-setup.service: Executing: /lib/console-setup/console-setup.sh
apparmor.service: AssertPathIsReadWrite=/sys/kernel/security/apparmor/.load succeeded.
apparmor.service: Passing 0 fds to service
apparmor.service: About to execute: /etc/init.d/apparmor start
apparmor.service: Forked /etc/init.d/apparmor as 475
apparmor.service: Changed dead -> start
         Starting AppArmor initialization...
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 43 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 44 (n/a) to fd store.systemd-machine-id-commit.service: Executing: /bin/systemd-machine-id-setup --commit

systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 45 (n/a) to fd store.
Received SIGCHLD from PID 469 (plymouth).
Child 469 (plymouth) died (code=exited, status=1/FAILURE)
plymouth-read-write.service: Child 469 belongs to plymouth-read-write.service
plymouth-read-write.service: Main process exited, code=exited, status=1/FAILURE
plymouth-read-write.service: Changed start -> dead
apparmor.service: Executing: /etc/init.d/apparmor start

plymouth-read-write.service: Job plymouth-read-write.service/start finished, result=done
[  OK  ] Started Tell Plymouth To Write Out Runtime Data.
Child 470 (systemd-tmpfile) died (code=exited, status=0/SUCCESS)
systemd-tmpfiles-setup.service: Child 470 belongs to systemd-tmpfiles-setup.service
systemd-tmpfiles-setup.service: Main process exited, code=exited, status=0/SUCCESS
systemd-tmpfiles-setup.service: Changed start -> exited
systemd-tmpfiles-setup.service: Job systemd-tmpfiles-setup.service/start finished, result=done
[  OK  ] Started Create Volatile Files and Directories.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 46 (n/a) to fd store.
dev.mount: Failed to load configuration: No such file or directory
dev-rfkill.mount: Failed to load configuration: No such file or directory
var.mount: Failed to load configuration: No such file or directory
var-lib.mount: Failed to load configuration: No such file or directory
var-lib-systemd.mount: Failed to load configuration: No such file or directory
var-lib-systemd-rfkill.mount: Failed to load configuration: No such file or directory
dev-rfkill.device: Changed dead -> plugged
sys-devices-virtual-misc-rfkill.device: Changed dead -> plugged
systemd-rfkill.socket: Trying to enqueue job systemd-rfkill.socket/start/fail
systemd-rfkill.socket: Installed new job systemd-rfkill.socket/start as 137
systemd-rfkill.socket: Enqueued job systemd-rfkill.socket/start as 137
var.mount: Collecting.
var-lib.mount: Collecting.
var-lib-systemd.mount: Collecting.
var-lib-systemd-rfkill.mount: Collecting.
dev.mount: Collecting.
dev-rfkill.mount: Collecting.
libmount event [rescan: yes]
etc-machine\x2did.mount: Changed mounted -> dead
etc-machine\x2did.mount: Collecting.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 48 (n/a) to fd store.
Received SIGCHLD from PID 473 (console-setup.s).
Child 473 (console-setup.s) died (code=exited, status=0/SUCCESS)
console-setup.service: Child 473 belongs to console-setup.service
console-setup.service: Main process exited, code=exited, status=0/SUCCESS
console-setup.service: Changed start -> exited
console-setup.service: Job console-setup.service/start finished, result=done
[  OK  ] Started Set console font and keymap.
Child 474 (systemd-machine) died (code=exited, status=0/SUCCESS)
systemd-machine-id-commit.service: Child 474 belongs to systemd-machine-id-commit.service
systemd-machine-id-commit.service: Main process exited, code=exited, status=0/SUCCESS
systemd-machine-id-commit.service: Changed start -> exited
systemd-machine-id-commit.service: Job systemd-machine-id-commit.service/start finished, result=done
[  OK  ] Started Commit a transient machine-id on disk.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 49 (n/a) to fd store.
systemd-journald.service: Received EPOLLHUP on stored fd 43 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 44 (stored), closing.
dev-disk-by\x2dpath-virtio\x2dpci\x2d0000:00:05.0\x2dpart14.device: Changed dead -> plugged
dev-disk-by\x2dpath-pci\x2d0000:00:05.0\x2dpart14.device: Changed dead -> plugged
dev-disk-by\x2dpartuuid-01b4d3d3\x2d07ff\x2d4d8e\x2db2ce\x2db6121bfdad86.device: Changed dead -> plugged
dev-disk-by\x2did-virtio\x2dmy.img\x2dpart14.device: Changed dead -> plugged
dev-vda14.device: Changed dead -> plugged
sys-devices-pci0000:00-0000:00:05.0-virtio1-block-vda-vda14.device: Changed dead -> plugged
Accepted new private connection.
systemd-journald.service: Received EPOLLHUP on stored fd 46 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 48 (stored), closing.
Accepted new private connection.
systemd-rfkill.socket: Changed dead -> listening
systemd-rfkill.socket: Job systemd-rfkill.socket/start finished, result=done
[  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
open-vm-tools.service: ConditionVirtualization=vmware failed.
open-vm-tools.service: Starting requested but condition failed. Not starting unit.
open-vm-tools.service: Job open-vm-tools.service/start finished, result=done
systemd-update-utmp.service: Passing 0 fds to service
systemd-update-utmp.service: About to execute: /lib/systemd/systemd-update-utmp reboot
systemd-update-utmp.service: Forked /lib/systemd/systemd-update-utmp as 490
systemd-update-utmp.service: Changed dead -> start
         Starting Update UTMP about System Boot/Shutdown...
systemd-timesyncd.service: ConditionVirtualization=!container succeeded.
systemd-timesyncd.service: ConditionCapability=CAP_SYS_TIME succeeded.
systemd-timesyncd.service: Passing 0 fds to service
systemd-timesyncd.service: About to execute: /lib/systemd/systemd-timesyncd
systemd-timesyncd.service: Forked /lib/systemd/systemd-timesyncd as 492
systemd-timesyncd.service: Changed dead -> start
         Starting Network Time Synchronization...
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 48 (n/a) to fd store.
systemd-update-utmp.service: Executing: /lib/systemd/systemd-update-utmp reboot
Preset files don't specify rule for apparmor.service. Enabling.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 50 (n/a) to fd store.
Preset files don't specify rule for ebtables.service. Enabling.
Got disconnect on private connection.
Got disconnect on private connection.
Accepted new private connection.
Got disconnect on private connection.
systemd-journald.service: Received EPOLLHUP on stored fd 48 (stored), closing.
Received SIGCHLD from PID 490 (systemd-update-).
Child 490 (systemd-update-) died (code=exited, status=0/SUCCESS)
systemd-update-utmp.service: Child 490 belongs to systemd-update-utmp.service
systemd-update-utmp.service: Main process exited, code=exited, status=0/SUCCESS
systemd-update-utmp.service: Changed start -> exited
systemd-update-utmp.service: Job systemd-update-utmp.service/start finished, result=done
[  OK  ] Started Update UTMP about System Boot/Shutdown.
Received SIGCHLD from PID 471 (ebtables).
Child 471 (ebtables) died (code=exited, status=0/SUCCESS)
ebtables.service: Child 471 belongs to ebtables.service
ebtables.service: Main process exited, code=exited, status=0/SUCCESS
ebtables.service: Changed start -> exited
ebtables.service: Job ebtables.service/start finished, result=done
[  OK  ] Started ebtables ruleset management.
systemd-journald.service: Received EPOLLHUP on stored fd 45 (stored), closing.
network-pre.target changed dead -> active
network-pre.target: Job network-pre.target/start finished, result=done
[  OK  ] Reached target Network (Pre).
systemd-networkd.service: ConditionCapability=CAP_NET_ADMIN succeeded.
systemd-networkd.service: Passing 1 fds to service
systemd-networkd.service: About to execute: /lib/systemd/systemd-networkd
systemd-networkd.service: Forked /lib/systemd/systemd-networkd as 497
systemd-networkd.service: Changed dead -> start
         Starting Network Service...
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 43 (n/a) to fd store.
systemd-networkd.service: Executing: /lib/systemd/systemd-networkd
systemd-timesyncd.service: Got notification message from PID 492 (WATCHDOG=1)
systemd-timesyncd.service: Got notification message from PID 492 (READY=1, STATUS=Daemon is running)
systemd-timesyncd.service: Changed start -> running
systemd-timesyncd.service: Job systemd-timesyncd.service/start finished, result=done
[  OK  ] Started Network Time Synchronization.
systemd-networkd.service: Got notification message from PID 497 (WATCHDOG=1)
systemd-timesyncd.service: Got notification message from PID 492 (STATUS=Idle.)
systemd-timesyncd.service: Got notification message from PID 492 (STATUS=Idle.)
systemd-networkd.service: Got notification message from PID 497 (READY=1, STATUS=Processing requests...)
systemd-networkd.service: Changed start -> running
systemd-networkd.service: Job systemd-networkd.service/start finished, result=done
[  OK  ] Started Network Service.
systemd-networkd.socket: Changed listening -> running
systemd-timesyncd.service: Got notification message from PID 492 (STATUS=Idle.)
network.target changed dead -> active
network.target: Job network.target/start finished, result=done
[  OK  ] Reached target Network.
systemd-networkd-wait-online.service: Passing 0 fds to service
systemd-networkd-wait-online.service: About to execute: /lib/systemd/systemd-networkd-wait-online
systemd-networkd-wait-online.service: Forked /lib/systemd/systemd-networkd-wait-online as 514
systemd-networkd-wait-online.service: Changed dead -> start
         Starting Wait for Network to be Configured...
time-sync.target changed dead -> active
time-sync.target: Job time-sync.target/start finished, result=done
[  OK  ] Reached target System Time Synchronized.
dev-ttyprintk.device: Changed dead -> plugged
sys-devices-virtual-tty-ttyprintk.device: Changed dead -> plugged
systemd-networkd-wait-online.service: Executing: /lib/systemd/systemd-networkd-wait-online
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 44 (n/a) to fd store.
systemd-journald.service: Received EPOLLHUP on stored fd 49 (stored), closing.
Received SIGCHLD from PID 475 (apparmor).
Child 475 (apparmor) died (code=exited, status=0/SUCCESS)
apparmor.service: Child 475 belongs to apparmor.service
apparmor.service: Main process exited, code=exited, status=0/SUCCESS
apparmor.service: Changed start -> exited
apparmor.service: Job apparmor.service/start finished, result=done
[  OK  ] Started AppArmor initialization.
sysinit.target changed dead -> active
sysinit.target: Job sysinit.target/start finished, result=done
[  OK  ] Reached target System Initialization.
snapd.refresh.timer: Adding 2h 38min 17.435884s random time.
snapd.refresh.timer: Monotonic timer elapses in 2h 53min 14.128836s.
snapd.refresh.timer: Adding 4h 42min 33.326546s random time.
snapd.refresh.timer: Realtime timer elapses at Mon 2017-10-30 04:42:33 UTC.
snapd.refresh.timer: Changed dead -> waiting
snapd.refresh.timer: Job snapd.refresh.timer/start finished, result=done
[  OK  ] Started Timer to automatically refresh installed snaps.
lxd.socket: Changed dead -> start-chown
         Starting LXD - unix socket.
systemd-tmpfiles-clean.timer: Monotonic timer elapses in 14min 52.737827s.
systemd-tmpfiles-clean.timer: Changed dead -> waiting
systemd-tmpfiles-clean.timer: Job systemd-tmpfiles-clean.timer/start finished, result=done
[  OK  ] Started Daily Cleanup of Temporary Directories.
dbus.socket: Changed dead -> listening
dbus.socket: Job dbus.socket/start finished, result=done
[  OK  ] Listening on D-Bus System Message Bus Socket.
snapd.snap-repair.timer: ConditionKernelCommandLine=snap_core failed.
snapd.snap-repair.timer: Starting requested but condition failed. Not starting unit.
snapd.snap-repair.timer: Job snapd.snap-repair.timer/start finished, result=done
apt-daily.timer: Adding 3h 39min 22.778480s random time.
apt-daily.timer: Realtime timer elapses at Sat 2017-10-28 09:39:22 UTC.
apt-daily.timer: Changed dead -> waiting
apt-daily.timer: Job apt-daily.timer/start finished, result=done
[  OK  ] Started Daily apt download activities.
apt-daily-upgrade.timer: Adding 13min 26.903461s random time.
apt-daily-upgrade.timer: Realtime timer elapses at Sat 2017-10-28 06:13:26 UTC.
apt-daily-upgrade.timer: Changed dead -> waiting
apt-daily-upgrade.timer: Job apt-daily-upgrade.timer/start finished, result=done
[  OK  ] Started Daily apt upgrade and clean activities.
acpid.path: Changed dead -> waiting
acpid.path: Job acpid.path/start finished, result=done
[  OK  ] Started ACPI Events Check.
systemd-resolved-update-resolvconf.path: Changed dead -> waiting
systemd-resolved-update-resolvconf.path: Job systemd-resolved-update-resolvconf.path/start finished, result=done
[  OK  ] Started systemd-resolved-update-resolvconf.path.
paths.target changed dead -> active
paths.target: Job paths.target/start finished, result=done
[  OK  ] Reached target Paths.
snapd.socket: Changed dead -> start-chown
         Starting Socket activation for snappy daemon.
motd-news.timer: Adding 44min 7.914461s random time.
motd-news.timer: Monotonic timer elapses in 45min 4.568376s.
motd-news.timer: Changed dead -> waiting
motd-news.timer: Job motd-news.timer/start finished, result=done
[  OK  ] Started Message of the Day.
timers.target changed dead -> active
timers.target: Job timers.target/start finished, result=done
[  OK  ] Reached target Timers.
apport-forward.socket: ConditionVirtualization=container failed.
apport-forward.socket: Starting requested but condition failed. Not starting unit.
apport-forward.socket: Job apport-forward.socket/start finished, result=done
uuidd.socket: Changed dead -> listening
uuidd.socket: Job uuidd.socket/start finished, result=done
[  OK  ] Listening on UUID daemon activation socket.
acpid.socket: Changed dead -> listening
acpid.socket: Job acpid.socket/start finished, result=done
[  OK  ] Listening on ACPID Listen Socket.
Received SIGCHLD from PID 535 (systemd).
Child 535 (systemd) died (code=exited, status=0/SUCCESS)
init.scope: Child 535 belongs to init.scope
lxd.socket: Child 535 belongs to lxd.socket
lxd.socket: Control process exited, code=exited status=0
lxd.socket: Got final SIGCHLD for state start-chown
lxd.socket: Changed start-chown -> listening
lxd.socket: Job lxd.socket/start finished, result=done
[  OK  ] Listening on LXD - unix socket.
Child 548 (systemd) died (code=exited, status=0/SUCCESS)
init.scope: Child 548 belongs to init.scope
snapd.socket: Child 548 belongs to snapd.socket
snapd.socket: Control process exited, code=exited status=0
snapd.socket: Got final SIGCHLD for state start-chown
snapd.socket: Changed start-chown -> listening
snapd.socket: Job snapd.socket/start finished, result=done
[  OK  ] Listening on Socket activation for snappy daemon.
sockets.target changed dead -> active
sockets.target: Job sockets.target/start finished, result=done
[  OK  ] Reached target Sockets.
basic.target changed dead -> active
basic.target: Job basic.target/start finished, result=done
[  OK  ] Reached target Basic System.
rsync.service: ConditionPathExists=/etc/rsyncd.conf failed.
rsync.service: Starting requested but condition failed. Not starting unit.
rsync.service: Job rsync.service/start finished, result=done
lxd-containers.service: Passing 0 fds to service
lxd-containers.service: About to execute: /usr/bin/lxd activateifneeded
lxd-containers.service: Forked /usr/bin/lxd as 549
lxd-containers.service: Changed dead -> start
         Starting LXD - container startup/shutdown...
grub-common.service: Passing 0 fds to service
grub-common.service: About to execute: /etc/init.d/grub-common start
grub-common.service: Forked /etc/init.d/grub-common as 550
grub-common.service: Changed dead -> start
         Starting LSB: Record successful boot for GRUB...
cron.service: Passing 0 fds to servicelxd-containers.service: Executing: /usr/bin/lxd activateifneeded

grub-common.service: Executing: /etc/init.d/grub-common start
cron.service: About to execute: /usr/sbin/cron -f $EXTRA_OPTS
cron.service: Forked /usr/sbin/cron as 560
cron.service: Changed dead -> running
cron.service: Job cron.service/start finished, result=done
[  OK  ] Started Regular background program processing daemon.
lxcfs.service: ConditionVirtualization=!container succeeded.
lxcfs.service: Passing 0 fds to service
lxcfs.service: About to execute: /usr/bin/lxcfs /var/lib/lxcfs/
lxcfs.service: Forked /usr/bin/lxcfs as 565
lxcfs.service: Changed dead -> running
lxcfs.service: Job lxcfs.service/start finished, result=done
[  OK  ] Started FUSE filesystem for LXC.
vgauth.service: ConditionVirtualization=vmware failed.
vgauth.service: Starting requested but condition failed. Not starting unit.
vgauth.service: Job vgauth.service/start finished, result=done
accounts-daemon.service: Passing 0 fds to service
accounts-daemon.service: About to execute: /usr/lib/accountsservice/accounts-daemoncron.service: Executing: /usr/sbin/cron -f

accounts-daemon.service: Forked /usr/lib/accountsservice/accounts-daemon as 566
accounts-daemon.service: Changed dead -> start
         Starting Accounts Service...
irqbalance.service: ConditionVirtualization=!container succeeded.lxcfs.service: Executing: /usr/bin/lxcfs /var/lib/lxcfs/
irqbalance.service: Passing 0 fds to service
accounts-daemon.service: Executing: /usr/lib/accountsservice/accounts-daemonirqbalance.service: About to execute: /usr/sbin/irqbalance --foreground $IRQBALANCE_ARGS

irqbalance.service: Forked /usr/sbin/irqbalance as 567
irqbalance.service: Changed dead -> running
irqbalance.service: Job irqbalance.service/start finished, result=done
[  OK  ] Started irqbalance daemon.
dbus.service: Passing 1 fds to service
dbus.service: About to execute: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activationirqbalance.service: Executing: /usr/sbin/irqbalance --foreground

dbus.service: Forked /usr/bin/dbus-daemon as 568

dbus.service: Changed dead -> running
dbus.service: Job dbus.service/start finished, result=done
[  OK  ] Started D-Bus System Message Bus.
dbus.socket: Changed listening -> running
Successfully connected to system bus.
dbus.service: Executing: /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation
Successfully connected to API bus.
atd.service: Passing 0 fds to service
atd.service: About to execute: /usr/sbin/atd -f
atd.service: Forked /usr/sbin/atd as 580
atd.service: Changed dead -> running
atd.service: Job atd.service/start finished, result=done
[  OK  ] Started Deferred execution scheduler.
snapd.core-fixup.service: ConditionPathExists=!/var/lib/snapd/device/ownership-change.after succeeded.
snapd.core-fixup.service: ConditionKernelCommandLine=snap_core failed.
snapd.core-fixup.service: Starting requested but condition failed. Not starting unit.
snapd.core-fixup.service: Job snapd.core-fixup.service/start finished, result=done
unattended-upgrades.service: ConditionACPower=true succeeded.
unattended-upgrades.service: Changed dead -> exitedatd.service: Executing: /usr/sbin/atd -f

unattended-upgrades.service: Job unattended-upgrades.service/start finished, result=done
[  OK  ] Started Unattended Upgrades Shutdown.
snapd.service: Passing 2 fds to service
snapd.service: About to execute: /usr/lib/snapd/snapd
snapd.service: Forked /usr/lib/snapd/snapd as 591
snapd.service: Changed dead -> start
         Starting Snappy daemon...
systemd-resolved.service: Passing 0 fds to service
systemd-resolved.service: About to execute: /lib/systemd/systemd-resolved
systemd-resolved.service: Forked /lib/systemd/systemd-resolved as 592snapd.service: Executing: /usr/lib/snapd/snapd

systemd-resolved.service: Changed dead -> start
         Starting Network Name Resolution...
rsyslog.service: Passing 1 fds to service
rsyslog.service: About to execute: /usr/sbin/rsyslogd -n
rsyslog.service: Forked /usr/sbin/rsyslogd as 593
rsyslog.service: Changed dead -> startrsyslog.service: Executing: /usr/sbin/rsyslogd -n
         Starting System Logging Service...
ondemand.service: ConditionPathExists=!/etc/init/lxc-android-config.conf succeeded.
ondemand.service: ConditionPathExists=/sys/devices/system/cpu/online succeeded.

ondemand.service: ConditionVirtualization=no failed.
ondemand.service: Starting requested but condition failed. Not starting unit.
ondemand.service: Job ondemand.service/start finished, result=done
systemd-logind.service: ConditionPathExists=/lib/systemd/system/dbus.service succeeded.
systemd-logind.service: Passing 0 fds to service
systemd-logind.service: About to execute: /lib/systemd/systemd-logind
systemd-logind.service: Forked /lib/systemd/systemd-logind as 594
systemd-logind.service: Executing: /lib/systemd/systemd-logindsystemd-logind.service: Changed dead -> start
         Starting Login Service...
getty-static.service: ConditionPathExists=!/lib/systemd/system/dbus.service failed.
getty-static.service: Starting requested but condition failed. Not starting unit.
getty-static.service: Job getty-static.service/start finished, result=done
libmount event [rescan: yes]

var.mount: Failed to load configuration: No such file or directory
var-lib.mount: Failed to load configuration: No such file or directory
var-lib-lxcfs.mount: Changed dead -> mounted
var.mount: Collecting.
var-lib.mount: Collecting.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 58 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 59 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 60 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 61 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 62 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 63 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 64 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 65 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 66 (n/a) to fd store.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 67 (n/a) to fd store.
systemd-resolved.service: Got notification message from PID 592 (WATCHDOG=1)
systemd-resolved.service: Got notification message from PID 592 (READY=1, STATUS=Processing requests...)
systemd-resolved.service: Changed start -> running
systemd-resolved.service: Job systemd-resolved.service/start finished, result=done
[  OK  ] Started Network Name Resolution.
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 68 (n/a) to fd store.
rsyslog.service: Got notification message from PID 593 (READY=1)
rsyslog.service: Changed start -> running
rsyslog.service: Job rsyslog.service/start finished, result=done
[  OK  ] Started System Logging Service.
systemd-logind.service: Got notification message from PID 594 (WATCHDOG=1)
snapd.service: Got notification message from PID 591 (READY=1)
snapd.service: Changed start -> running
snapd.service: Job snapd.service/start finished, result=done
[  OK  ] Started Snappy daemon.
snapd.socket: Changed listening -> running
Received SIGCHLD from PID 567 (irqbalance).
Child 567 (irqbalance) died (code=exited, status=0/SUCCESS)
irqbalance.service: Child 567 belongs to irqbalance.service
irqbalance.service: Main process exited, code=exited, status=0/SUCCESS
irqbalance.service: Changed running -> dead
systemd-resolved-update-resolvconf.path: Got triggered.
systemd-resolved-update-resolvconf.service: Trying to enqueue job systemd-resolved-update-resolvconf.service/start/replace
org.freedesktop.network1.busname: Cannot add dependency job, ignoring: Unit org.freedesktop.network1.busname not found.
systemd-resolved-update-resolvconf.service: Installed new job systemd-resolved-update-resolvconf.service/start as 144
systemd-resolved-update-resolvconf.service: Enqueued job systemd-resolved-update-resolvconf.service/start as 144
systemd-resolved-update-resolvconf.path: Changed waiting -> running
Accepted new private connection.
systemd-journald.service: Received EPOLLHUP on stored fd 63 (stored), closing.
systemd-journald.service: Received EPOLLHUP on stored fd 65 (stored), closing.
polkit.service: Trying to enqueue job polkit.service/start/replace
org.freedesktop.network1.busname: Cannot add dependency job, ignoring: Unit org.freedesktop.network1.busname not found.
polkit.service: Installed new job polkit.service/start as 213
polkit.service: Enqueued job polkit.service/start as 213
Preset files don't specify rule for grub-common.service. Enabling.
Got disconnect on private connection.
polkit.service: Passing 0 fds to service
polkit.service: About to execute: /usr/lib/policykit-1/polkitd --no-debug
polkit.service: Forked /usr/lib/policykit-1/polkitd as 623
polkit.service: Changed dead -> start
         Starting Authorization Manager...
systemd-resolved-update-resolvconf.service: ConditionFileIsExecutable=/sbin/resolvconf failed.
systemd-resolved-update-resolvconf.service: Starting requested but condition failed. Not starting unit.polkit.service: Executing: /usr/lib/policykit-1/polkitd --no-debug

systemd-resolved-update-resolvconf.service: Job systemd-resolved-update-resolvconf.service/start finished, result=done
systemd-resolved-update-resolvconf.path: Got notified about unit deactivation.
systemd-resolved-update-resolvconf.path: Changed running -> waiting
snapd.autoimport.service: ConditionKernelCommandLine=snap_core failed.
snapd.autoimport.service: Starting requested but condition failed. Not starting unit.
snapd.autoimport.service: Job snapd.autoimport.service/start finished, result=done
nss-lookup.target changed dead -> active
nss-lookup.target: Job nss-lookup.target/start finished, result=done
[  OK  ] Reached target Host and Network Name Lookups.
systemd-logind.service: Got notification message from PID 594 (READY=1, STATUS=Processing requests...)
systemd-journald.service: Got notification message from PID 360 (FDSTORE=1)
systemd-journald.service: Added fd 63 (n/a) to fd store.
Received SIGCHLD from PID 550 (grub-common).
Child 550 (grub-common) died (code=exited, status=0/SUCCESS)
grub-common.service: Child 550 belongs to grub-common.service
grub-common.service: Control process exited, code=exited status=0
grub-common.service: Got final SIGCHLD for state start.
grub-common.service: Changed start -> exited
grub-common.service: Job grub-common.service/start finished, result=done
[  OK  ] Started LSB: Record successful boot for GRUB.
systemd-journald.service: Received EPOLLHUP on stored fd 59 (stored), closing.
systemd-logind.service: D-Bus name org.freedesktop.login1 now registered by :1.3
systemd-logind.service: Changed start -> running
systemd-logind.service: Job systemd-logind.service/start finished, result=done
[  OK  ] Started Login Service.
systemd-journald.service: Received EPOLLHUP on stored fd 63 (stored), closing.
polkit.service: D-Bus name org.freedesktop.PolicyKit1 now registered by :1.4
polkit.service: Changed start -> running
polkit.service: Job polkit.service/start finished, result=done
[  OK  ] Started Authorization Manager.
accounts-daemon.service: D-Bus name org.freedesktop.Accounts now registered by :1.1
accounts-daemon.service: Changed start -> running
accounts-daemon.service: Job accounts-daemon.service/start finished, result=done
[  OK  ] Started Accounts Service.
systemd-journald.service: Received EPOLLHUP on stored fd 58 (stored), closing.
Received SIGCHLD from PID 549 (lxd).
Child 549 (lxd) died (code=exited, status=0/SUCCESS)
lxd-containers.service: Child 549 belongs to lxd-containers.service
lxd-containers.service: Main process exited, code=exited, status=0/SUCCESS
lxd-containers.service: Changed start -> exited
lxd-containers.service: Job lxd-containers.service/start finished, result=done
[  OK  ] Started LXD - container startup/shutdown.
[***   ] A start job is running for Wait for… to be Configured (35s / no limit)
Download as text