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 | Apr 21 05:41:45 syslogd started: BusyBox v1.22.1
Apr 21 05:41:45 kernel: klogd started: BusyBox v1.22.1 (Ubuntu 1:1.22.0-19ubuntu2)
Apr 21 05:41:45 kernel: [ 0.000000] Linux version 4.10.0-19-generic (buildd@lcy01-13) (gcc version 6.3.0 20170321 (Ubuntu 6.3.0-10ubuntu1) ) #21-Ubuntu SMP Thu Apr 6 17:04:57 UTC 2017 (Ubuntu 4.10.0-19.21-generic 4.10.8)
Apr 21 05:41:45 kernel: [ 0.000000] Command line: BOOT_IMAGE=ubuntu-installer/amd64/linux vga=788 initrd=ubuntu-installer/amd64/initrd.gz rescue/enable=true --- quiet
Apr 21 05:41:45 kernel: [ 0.000000] KERNEL supported cpus:
Apr 21 05:41:45 kernel: [ 0.000000] Intel GenuineIntel
Apr 21 05:41:45 kernel: [ 0.000000] AMD AuthenticAMD
Apr 21 05:41:45 kernel: [ 0.000000] Centaur CentaurHauls
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
Apr 21 05:41:45 kernel: [ 0.000000] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
Apr 21 05:41:45 kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x00000000000963ff] usable
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000096400-0x000000000009ffff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000086859fff] usable
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x000000008685a000-0x000000008685afff] ACPI NVS
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x000000008685b000-0x0000000086884fff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000086885000-0x00000000868d8fff] usable
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000868d9000-0x0000000086d47fff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000086d48000-0x0000000086d5dfff] usable
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000086d5e000-0x00000000879cbfff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000879cc000-0x0000000087f99fff] ACPI NVS
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000087f9a000-0x0000000087fcdfff] ACPI data
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000087fce000-0x0000000087ffffff] usable
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000088000000-0x00000000880fffff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000fe010fff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x00000000ff000000-0x00000000ffffffff] reserved
Apr 21 05:41:45 kernel: [ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x0000000270ffffff] usable
Apr 21 05:41:45 kernel: [ 0.000000] NX (Execute Disable) protection: active
Apr 21 05:41:45 kernel: [ 0.000000] SMBIOS 2.8 present.
Apr 21 05:41:45 kernel: [ 0.000000] DMI: Gigabyte Technology Co., Ltd. To be filled by O.E.M./H170M-D3H-CF, BIOS F5 11/02/2015
Apr 21 05:41:45 kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Apr 21 05:41:45 kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Apr 21 05:41:45 kernel: [ 0.000000] e820: last_pfn = 0x271000 max_arch_pfn = 0x400000000
Apr 21 05:41:45 kernel: [ 0.000000] MTRR default type: write-back
Apr 21 05:41:45 kernel: [ 0.000000] MTRR fixed ranges enabled:
Apr 21 05:41:45 kernel: [ 0.000000] 00000-9FFFF write-back
Apr 21 05:41:45 kernel: [ 0.000000] A0000-BFFFF uncachable
Apr 21 05:41:45 kernel: [ 0.000000] C0000-FFFFF write-protect
Apr 21 05:41:45 kernel: [ 0.000000] MTRR variable ranges enabled:
Apr 21 05:41:45 kernel: [ 0.000000] 0 base 00C0000000 mask 7FC0000000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 1 base 00A0000000 mask 7FE0000000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 2 base 0090000000 mask 7FF0000000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 3 base 008C000000 mask 7FFC000000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 4 base 008A000000 mask 7FFE000000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 5 base 0089000000 mask 7FFF000000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 6 base 0088800000 mask 7FFF800000 uncachable
Apr 21 05:41:45 kernel: [ 0.000000] 7 disabled
Apr 21 05:41:45 kernel: [ 0.000000] 8 disabled
Apr 21 05:41:45 kernel: [ 0.000000] 9 disabled
Apr 21 05:41:45 kernel: [ 0.000000] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WC UC- WT
Apr 21 05:41:45 kernel: [ 0.000000] e820: last_pfn = 0x88000 max_arch_pfn = 0x400000000
Apr 21 05:41:45 kernel: [ 0.000000] found SMP MP-table at [mem 0x000fcb70-0x000fcb7f] mapped at [ffff9f3ac00fcb70]
Apr 21 05:41:45 kernel: [ 0.000000] Scanning 1 areas for low memory corruption
Apr 21 05:41:45 kernel: [ 0.000000] Base memory trampoline at [ffff9f3ac0090000] 90000 size 24576
Apr 21 05:41:45 kernel: [ 0.000000] Using GB pages for direct mapping
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc28000, 0x22bc28fff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc29000, 0x22bc29fff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc2a000, 0x22bc2afff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc2b000, 0x22bc2bfff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc2c000, 0x22bc2cfff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc2d000, 0x22bc2dfff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc2e000, 0x22bc2efff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc2f000, 0x22bc2ffff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] BRK [0x22bc30000, 0x22bc30fff] PGTABLE
Apr 21 05:41:45 kernel: [ 0.000000] RAMDISK: [mem 0x7d987000-0x7fffffff]
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: Early table checksum verification disabled
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: RSDP 0x00000000000F05B0 000024 (v02 ALASKA)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: XSDT 0x0000000087B8D0A0 0000C4 (v01 ALASKA A M I 01072009 AMI 00010013)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: FACP 0x0000000087BAF2C8 00010C (v05 ALASKA A M I 01072009 AMI 00010013)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: DSDT 0x0000000087B8D200 0220C5 (v02 ALASKA A M I 01072009 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: FACS 0x0000000087F99F80 000040
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: APIC 0x0000000087BAF3D8 000084 (v03 ALASKA A M I 01072009 AMI 00010013)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: FPDT 0x0000000087BAF460 000044 (v01 ALASKA A M I 01072009 AMI 00010013)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: FIDT 0x0000000087BAF4A8 00009C (v01 ALASKA A M I 01072009 AMI 00010013)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: MCFG 0x0000000087BAF548 00003C (v01 ALASKA A M I 01072009 MSFT 00000097)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: HPET 0x0000000087BAF588 000038 (v01 ALASKA A M I 01072009 AMI. 0005000B)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BAF5C0 00036D (v01 SataRe SataTabl 00001000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BAF930 005384 (v02 SaSsdt SaSsdt 00003000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: UEFI 0x0000000087BB4CB8 000042 (v01 00000000 00000000)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: LPIT 0x0000000087BB4D00 000094 (v01 INTEL SKL 00000000 MSFT 0000005F)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BB4D98 000248 (v02 INTEL sensrhub 00000000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BB4FE0 002BAE (v02 INTEL PtidDevc 00001000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BB7B90 000C45 (v02 INTEL Ther_Rvp 00001000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: DBGP 0x0000000087BB87D8 000034 (v01 INTEL 00000000 MSFT 0000005F)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: DBG2 0x0000000087BB8810 000054 (v00 INTEL 00000000 MSFT 0000005F)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BB8868 000619 (v02 INTEL xh_rvp10 00000000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: SSDT 0x0000000087BB8E88 000E58 (v02 CpuRef CpuSsdt 00003000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: DMAR 0x0000000087BB9CE0 0000A8 (v01 INTEL SKL 00000001 INTL 00000001)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: NHLT 0x0000000087BB9D88 001770 (v00 INTEL EDK2 00000002 01000013)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: ASF! 0x0000000087BBB4F8 0000A5 (v32 INTEL HCG 00000001 TFSM 000F4240)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Apr 21 05:41:45 kernel: [ 0.000000] No NUMA configuration found
Apr 21 05:41:45 kernel: [ 0.000000] Faking a node at [mem 0x0000000000000000-0x0000000270ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] NODE_DATA(0) allocated [mem 0x270fd5000-0x270ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] Zone ranges:
Apr 21 05:41:45 kernel: [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
Apr 21 05:41:45 kernel: [ 0.000000] Normal [mem 0x0000000100000000-0x0000000270ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] Device empty
Apr 21 05:41:45 kernel: [ 0.000000] Movable zone start for each node
Apr 21 05:41:45 kernel: [ 0.000000] Early memory node ranges
Apr 21 05:41:45 kernel: [ 0.000000] node 0: [mem 0x0000000000001000-0x0000000000095fff]
Apr 21 05:41:45 kernel: [ 0.000000] node 0: [mem 0x0000000000100000-0x0000000086859fff]
Apr 21 05:41:45 kernel: [ 0.000000] node 0: [mem 0x0000000086885000-0x00000000868d8fff]
Apr 21 05:41:45 kernel: [ 0.000000] node 0: [mem 0x0000000086d48000-0x0000000086d5dfff]
Apr 21 05:41:45 kernel: [ 0.000000] node 0: [mem 0x0000000087fce000-0x0000000087ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] node 0: [mem 0x0000000100000000-0x0000000270ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x0000000270ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] On node 0 totalpages: 2062475
Apr 21 05:41:45 kernel: [ 0.000000] DMA zone: 64 pages used for memmap
Apr 21 05:41:45 kernel: [ 0.000000] DMA zone: 21 pages reserved
Apr 21 05:41:45 kernel: [ 0.000000] DMA zone: 3989 pages, LIFO batch:0
Apr 21 05:41:45 kernel: [ 0.000000] DMA32 zone: 8548 pages used for memmap
Apr 21 05:41:45 kernel: [ 0.000000] DMA32 zone: 547062 pages, LIFO batch:31
Apr 21 05:41:45 kernel: [ 0.000000] Normal zone: 23616 pages used for memmap
Apr 21 05:41:45 kernel: [ 0.000000] Normal zone: 1511424 pages, LIFO batch:31
Apr 21 05:41:45 kernel: [ 0.000000] Reserving Intel graphics memory at 0x0000000089000000-0x000000008cffffff
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1808
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1])
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1])
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1])
Apr 21 05:41:45 kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: IRQ0 used by override.
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: IRQ9 used by override.
Apr 21 05:41:45 kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Apr 21 05:41:45 kernel: [ 0.000000] ACPI: HPET id: 0x8086a701 base: 0xfed00000
Apr 21 05:41:45 kernel: [ 0.000000] smpboot: Allowing 4 CPUs, 0 hotplug CPUs
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00096000-0x00096fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00097000-0x0009ffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x8685a000-0x8685afff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x8685b000-0x86884fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x868d9000-0x86d47fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x86d5e000-0x879cbfff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x879cc000-0x87f99fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x87f9a000-0x87fcdfff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x88000000-0x880fffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x88100000-0x88ffffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x89000000-0x8cffffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x8d000000-0xdfffffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfe000000-0xfe010fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfe011000-0xfebfffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfedfffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xfeffffff]
Apr 21 05:41:45 kernel: [ 0.000000] PM: Registered nosave memory: [mem 0xff000000-0xffffffff]
Apr 21 05:41:45 kernel: [ 0.000000] e820: [mem 0x8d000000-0xdfffffff] available for PCI devices
Apr 21 05:41:45 kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Apr 21 05:41:45 kernel: [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Apr 21 05:41:45 kernel: [ 0.000000] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:4 nr_cpu_ids:4 nr_node_ids:1
Apr 21 05:41:45 kernel: [ 0.000000] percpu: Embedded 36 pages/cpu @ffff9f3d30c00000 s107800 r8192 d31464 u524288
Apr 21 05:41:45 kernel: [ 0.000000] pcpu-alloc: s107800 r8192 d31464 u524288 alloc=1*2097152
Apr 21 05:41:45 kernel: [ 0.000000] pcpu-alloc: [0] 0 1 2 3
Apr 21 05:41:45 kernel: [ 0.000000] Built 1 zonelists in Node order, mobility grouping on. Total pages: 2030226
Apr 21 05:41:45 kernel: [ 0.000000] Policy zone: Normal
Apr 21 05:41:45 kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=ubuntu-installer/amd64/linux vga=788 initrd=ubuntu-installer/amd64/initrd.gz rescue/enable=true --- quiet
Apr 21 05:41:45 kernel: [ 0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Apr 21 05:41:45 kernel: [ 0.000000] Calgary: detecting Calgary via BIOS EBDA area
Apr 21 05:41:45 kernel: [ 0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Apr 21 05:41:45 kernel: [ 0.000000] Memory: 7991896K/8249900K available (9061K kernel code, 1666K rwdata, 3816K rodata, 2228K init, 2364K bss, 258004K reserved, 0K cma-reserved)
Apr 21 05:41:45 kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Apr 21 05:41:45 kernel: [ 0.000000] Hierarchical RCU implementation.
Apr 21 05:41:45 kernel: [ 0.000000] Build-time adjustment of leaf fanout to 64.
Apr 21 05:41:45 kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=4.
Apr 21 05:41:45 kernel: [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=64, nr_cpu_ids=4
Apr 21 05:41:45 kernel: [ 0.000000] NR_IRQS:524544 nr_irqs:1024 16
Apr 21 05:41:45 kernel: [ 0.000000] spurious 8259A interrupt: IRQ7.
Apr 21 05:41:45 kernel: [ 0.000000] Console: colour dummy device 80x25
Apr 21 05:41:45 kernel: [ 0.000000] console [tty0] enabled
Apr 21 05:41:45 kernel: [ 0.000000] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
Apr 21 05:41:45 kernel: [ 0.000000] hpet clockevent registered
Apr 21 05:41:45 kernel: [ 0.000000] tsc: Detected 3800.000 MHz processor
Apr 21 05:41:45 kernel: [ 0.000015] Calibrating delay loop (skipped), value calculated using timer frequency.. 7584.00 BogoMIPS (lpj=15168000)
Apr 21 05:41:45 kernel: [ 0.000016] pid_max: default: 32768 minimum: 301
Apr 21 05:41:45 kernel: [ 0.000022] ACPI: Core revision 20160930
Apr 21 05:41:45 kernel: [ 0.021191] ACPI Error: [\_SB_.PCI0.XHC_.RHUB.HS11] Namespace lookup failure, AE_NOT_FOUND (20160930/dswload-210)
Apr 21 05:41:45 kernel: [ 0.021196] ACPI Exception: AE_NOT_FOUND, During name lookup/catalog (20160930/psobject-227)
Apr 21 05:41:45 kernel: [ 0.021224] ACPI Exception: AE_NOT_FOUND, (SSDT:xh_rvp10) while loading table (20160930/tbxfload-228)
Apr 21 05:41:45 kernel: [ 0.021619] ACPI Error: 1 table load failures, 7 successful (20160930/tbxfload-246)
Apr 21 05:41:45 kernel: [ 0.021636] Security Framework initialized
Apr 21 05:41:45 kernel: [ 0.021637] Yama: becoming mindful.
Apr 21 05:41:45 kernel: [ 0.021646] AppArmor: AppArmor initialized
Apr 21 05:41:45 kernel: [ 0.021894] Dentry cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Apr 21 05:41:45 kernel: [ 0.022778] Inode-cache hash table entries: 524288 (order: 10, 4194304 bytes)
Apr 21 05:41:45 kernel: [ 0.023175] Mount-cache hash table entries: 16384 (order: 5, 131072 bytes)
Apr 21 05:41:45 kernel: [ 0.023179] Mountpoint-cache hash table entries: 16384 (order: 5, 131072 bytes)
Apr 21 05:41:45 kernel: [ 0.023324] CPU: Physical Processor ID: 0
Apr 21 05:41:45 kernel: [ 0.023324] CPU: Processor Core ID: 0
Apr 21 05:41:45 kernel: [ 0.023329] mce: CPU supports 8 MCE banks
Apr 21 05:41:45 kernel: [ 0.023334] CPU0: Thermal monitoring enabled (TM1)
Apr 21 05:41:45 kernel: [ 0.023344] process: using mwait in idle threads
Apr 21 05:41:45 kernel: [ 0.023345] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Apr 21 05:41:45 kernel: [ 0.023346] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Apr 21 05:41:45 kernel: [ 0.023737] Freeing SMP alternatives memory: 32K
Apr 21 05:41:45 kernel: [ 0.024589] ftrace: allocating 34175 entries in 134 pages
Apr 21 05:41:45 kernel: [ 0.034476] smpboot: Max logical packages: 2
Apr 21 05:41:45 kernel: [ 0.034480] DMAR: Host address width 39
Apr 21 05:41:45 kernel: [ 0.034481] DMAR: DRHD base: 0x000000fed90000 flags: 0x0
Apr 21 05:41:45 kernel: [ 0.034485] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap 1c0000c40660462 ecap 7e3ff0505e
Apr 21 05:41:45 kernel: [ 0.034485] DMAR: DRHD base: 0x000000fed91000 flags: 0x1
Apr 21 05:41:45 kernel: [ 0.034487] DMAR: dmar1: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da
Apr 21 05:41:45 kernel: [ 0.034488] DMAR: RMRR base: 0x0000008792e000 end: 0x0000008794dfff
Apr 21 05:41:45 kernel: [ 0.034489] DMAR: RMRR base: 0x00000088800000 end: 0x0000008cffffff
Apr 21 05:41:45 kernel: [ 0.034490] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 1
Apr 21 05:41:45 kernel: [ 0.034490] DMAR-IR: HPET id 0 under DRHD base 0xfed91000
Apr 21 05:41:45 kernel: [ 0.034490] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
Apr 21 05:41:45 kernel: [ 0.034491] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
Apr 21 05:41:45 kernel: [ 0.035818] DMAR-IR: Enabled IRQ remapping in xapic mode
Apr 21 05:41:45 kernel: [ 0.035818] x2apic: IRQ remapping doesn't support X2APIC mode
Apr 21 05:41:45 kernel: [ 0.039730] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Apr 21 05:41:45 kernel: [ 0.079420] TSC deadline timer enabled
Apr 21 05:41:45 kernel: [ 0.079424] smpboot: CPU0: Intel(R) Core(TM) i3-6300 CPU @ 3.80GHz (family: 0x6, model: 0x5e, stepping: 0x3)
Apr 21 05:41:45 kernel: [ 0.079455] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
Apr 21 05:41:45 kernel: [ 0.079474] ... version: 4
Apr 21 05:41:45 kernel: [ 0.079474] ... bit width: 48
Apr 21 05:41:45 kernel: [ 0.079474] ... generic registers: 4
Apr 21 05:41:45 kernel: [ 0.079475] ... value mask: 0000ffffffffffff
Apr 21 05:41:45 kernel: [ 0.079475] ... max period: 00007fffffffffff
Apr 21 05:41:45 kernel: [ 0.079475] ... fixed-purpose events: 3
Apr 21 05:41:45 kernel: [ 0.079476] ... event mask: 000000070000000f
Apr 21 05:41:45 kernel: [ 0.079972] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Apr 21 05:41:45 kernel: [ 0.079980] smp: Bringing up secondary CPUs ...
Apr 21 05:41:45 kernel: [ 0.080018] x86: Booting SMP configuration:
Apr 21 05:41:45 kernel: [ 0.080018] .... node #0, CPUs: #1 #2 #3
Apr 21 05:41:45 kernel: [ 0.081169] smp: Brought up 1 node, 4 CPUs
Apr 21 05:41:45 kernel: [ 0.081170] smpboot: Total of 4 processors activated (30336.00 BogoMIPS)
Apr 21 05:41:45 kernel: [ 0.084069] devtmpfs: initialized
Apr 21 05:41:45 kernel: [ 0.084103] x86/mm: Memory block size: 128MB
Apr 21 05:41:45 kernel: [ 0.085295] evm: security.selinux
Apr 21 05:41:45 kernel: [ 0.085296] evm: security.SMACK64
Apr 21 05:41:45 kernel: [ 0.085296] evm: security.SMACK64EXEC
Apr 21 05:41:45 kernel: [ 0.085296] evm: security.SMACK64TRANSMUTE
Apr 21 05:41:45 kernel: [ 0.085296] evm: security.SMACK64MMAP
Apr 21 05:41:45 kernel: [ 0.085297] evm: security.ima
Apr 21 05:41:45 kernel: [ 0.085297] evm: security.capability
Apr 21 05:41:45 kernel: [ 0.085331] PM: Registering ACPI NVS region [mem 0x8685a000-0x8685afff] (4096 bytes)
Apr 21 05:41:45 kernel: [ 0.085332] PM: Registering ACPI NVS region [mem 0x879cc000-0x87f99fff] (6086656 bytes)
Apr 21 05:41:45 kernel: [ 0.085404] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Apr 21 05:41:45 kernel: [ 0.085409] futex hash table entries: 1024 (order: 4, 65536 bytes)
Apr 21 05:41:45 kernel: [ 0.085432] pinctrl core: initialized pinctrl subsystem
Apr 21 05:41:45 kernel: [ 0.085566] RTC time: 5:41:45, date: 04/21/17
Apr 21 05:41:45 kernel: [ 0.085614] NET: Registered protocol family 16
Apr 21 05:41:45 kernel: [ 0.095868] cpuidle: using governor ladder
Apr 21 05:41:45 kernel: [ 0.111878] cpuidle: using governor menu
Apr 21 05:41:45 kernel: [ 0.111880] PCCT header not found.
Apr 21 05:41:45 kernel: [ 0.111956] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Apr 21 05:41:45 kernel: [ 0.111957] ACPI: bus type PCI registered
Apr 21 05:41:45 kernel: [ 0.111957] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Apr 21 05:41:45 kernel: [ 0.111994] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
Apr 21 05:41:45 kernel: [ 0.111995] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820
Apr 21 05:41:45 kernel: [ 0.112003] PCI: Using configuration type 1 for base access
Apr 21 05:41:45 kernel: [ 0.128000] HugeTLB registered 1 GB page size, pre-allocated 0 pages
Apr 21 05:41:45 kernel: [ 0.128001] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Apr 21 05:41:45 kernel: [ 0.128113] ACPI: Added _OSI(Module Device)
Apr 21 05:41:45 kernel: [ 0.128114] ACPI: Added _OSI(Processor Device)
Apr 21 05:41:45 kernel: [ 0.128114] ACPI: Added _OSI(3.0 _SCP Extensions)
Apr 21 05:41:45 kernel: [ 0.128114] ACPI: Added _OSI(Processor Aggregator Device)
Apr 21 05:41:45 kernel: [ 0.128877] ACPI: Executed 21 blocks of module-level executable AML code
Apr 21 05:41:45 kernel: [ 0.134614] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
Apr 21 05:41:45 kernel: [ 0.136902] ACPI: Dynamic OEM Table Load:
Apr 21 05:41:45 kernel: [ 0.136918] ACPI: SSDT 0xFFFF9F3D26F07000 000747 (v02 PmRef Cpu0Ist 00003000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.136945] ACPI Error: Unknown opcode 0x18 at table offset 0x04B7, ignoring (20160930/psobject-108)
Apr 21 05:41:45 kernel: [ 0.137088] ACPI: \_PR_.CPU0: _OSC native thermal LVT Acked
Apr 21 05:41:45 kernel: [ 0.138149] ACPI: Dynamic OEM Table Load:
Apr 21 05:41:45 kernel: [ 0.138152] ACPI: SSDT 0xFFFF9F3D268E2400 00037F (v02 PmRef Cpu0Cst 00003001 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.138717] ACPI: Dynamic OEM Table Load:
Apr 21 05:41:45 kernel: [ 0.138721] ACPI: SSDT 0xFFFF9F3D26F06800 0005AA (v02 PmRef ApIst 00003000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.139032] ACPI: Dynamic OEM Table Load:
Apr 21 05:41:45 kernel: [ 0.139034] ACPI: SSDT 0xFFFF9F3D2696C000 000119 (v02 PmRef ApCst 00003000 INTL 20120913)
Apr 21 05:41:45 kernel: [ 0.141158] ACPI: Interpreter enabled
Apr 21 05:41:45 kernel: [ 0.141183] ACPI: (supports S0 S3 S4 S5)
Apr 21 05:41:45 kernel: [ 0.141183] ACPI: Using IOAPIC for interrupt routing
Apr 21 05:41:45 kernel: [ 0.141206] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Apr 21 05:41:45 kernel: [ 0.142584] ACPI: Power Resource [PG00] (on)
Apr 21 05:41:45 kernel: [ 0.142830] ACPI: Power Resource [PG01] (on)
Apr 21 05:41:45 kernel: [ 0.143051] ACPI: Power Resource [PG02] (on)
Apr 21 05:41:45 kernel: [ 0.144790] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.144993] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.145190] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.145393] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.145592] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.145789] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.145985] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.146184] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.146379] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.146579] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.146774] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.146973] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.147168] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.147367] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.147568] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.147772] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.147971] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.148169] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.148364] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.148562] ACPI: Power Resource [WRST] (off)
Apr 21 05:41:45 kernel: [ 0.152989] ACPI: Power Resource [FN00] (off)
Apr 21 05:41:45 kernel: [ 0.153030] ACPI: Power Resource [FN01] (off)
Apr 21 05:41:45 kernel: [ 0.153069] ACPI: Power Resource [FN02] (off)
Apr 21 05:41:45 kernel: [ 0.153108] ACPI: Power Resource [FN03] (off)
Apr 21 05:41:45 kernel: [ 0.153148] ACPI: Power Resource [FN04] (off)
Apr 21 05:41:45 kernel: [ 0.153862] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
Apr 21 05:41:45 kernel: [ 0.153866] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Apr 21 05:41:45 kernel: [ 0.154905] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
Apr 21 05:41:45 kernel: [ 0.154905] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
Apr 21 05:41:45 kernel: [ 0.155320] PCI host bridge to bus 0000:00
Apr 21 05:41:45 kernel: [ 0.155321] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Apr 21 05:41:45 kernel: [ 0.155322] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Apr 21 05:41:45 kernel: [ 0.155322] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Apr 21 05:41:45 kernel: [ 0.155323] pci_bus 0000:00: root bus resource [mem 0x8d000000-0xdfffffff window]
Apr 21 05:41:45 kernel: [ 0.155323] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
Apr 21 05:41:45 kernel: [ 0.155324] pci_bus 0000:00: root bus resource [bus 00-fe]
Apr 21 05:41:45 kernel: [ 0.155328] pci 0000:00:00.0: [8086:190f] type 00 class 0x060000
Apr 21 05:41:45 kernel: [ 0.155531] pci 0000:00:02.0: [8086:1912] type 00 class 0x030000
Apr 21 05:41:45 kernel: [ 0.155537] pci 0000:00:02.0: reg 0x10: [mem 0xde000000-0xdeffffff 64bit]
Apr 21 05:41:45 kernel: [ 0.155541] pci 0000:00:02.0: reg 0x18: [mem 0xc0000000-0xcfffffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.155543] pci 0000:00:02.0: reg 0x20: [io 0xf000-0xf03f]
Apr 21 05:41:45 kernel: [ 0.155680] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330
Apr 21 05:41:45 kernel: [ 0.155694] pci 0000:00:14.0: reg 0x10: [mem 0xdf130000-0xdf13ffff 64bit]
Apr 21 05:41:45 kernel: [ 0.155747] pci 0000:00:14.0: PME# supported from D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.155814] pci 0000:00:14.0: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.155837] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000
Apr 21 05:41:45 kernel: [ 0.155851] pci 0000:00:14.2: reg 0x10: [mem 0xdf14e000-0xdf14efff 64bit]
Apr 21 05:41:45 kernel: [ 0.155975] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000
Apr 21 05:41:45 kernel: [ 0.155992] pci 0000:00:16.0: reg 0x10: [mem 0xdf14d000-0xdf14dfff 64bit]
Apr 21 05:41:45 kernel: [ 0.156053] pci 0000:00:16.0: PME# supported from D3hot
Apr 21 05:41:45 kernel: [ 0.156154] pci 0000:00:17.0: [8086:a102] type 00 class 0x010601
Apr 21 05:41:45 kernel: [ 0.156165] pci 0000:00:17.0: reg 0x10: [mem 0xdf148000-0xdf149fff]
Apr 21 05:41:45 kernel: [ 0.156170] pci 0000:00:17.0: reg 0x14: [mem 0xdf14c000-0xdf14c0ff]
Apr 21 05:41:45 kernel: [ 0.156176] pci 0000:00:17.0: reg 0x18: [io 0xf090-0xf097]
Apr 21 05:41:45 kernel: [ 0.156181] pci 0000:00:17.0: reg 0x1c: [io 0xf080-0xf083]
Apr 21 05:41:45 kernel: [ 0.156186] pci 0000:00:17.0: reg 0x20: [io 0xf060-0xf07f]
Apr 21 05:41:45 kernel: [ 0.156192] pci 0000:00:17.0: reg 0x24: [mem 0xdf14b000-0xdf14b7ff]
Apr 21 05:41:45 kernel: [ 0.156223] pci 0000:00:17.0: PME# supported from D3hot
Apr 21 05:41:45 kernel: [ 0.156309] pci 0000:00:1b.0: [8086:a169] type 01 class 0x060400
Apr 21 05:41:45 kernel: [ 0.156352] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.156429] pci 0000:00:1b.0: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.156472] pci 0000:00:1c.0: [8086:a112] type 01 class 0x060400
Apr 21 05:41:45 kernel: [ 0.156520] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.156592] pci 0000:00:1c.0: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.156622] pci 0000:00:1c.4: [8086:a114] type 01 class 0x060400
Apr 21 05:41:45 kernel: [ 0.156670] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.156741] pci 0000:00:1c.4: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.156769] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400
Apr 21 05:41:45 kernel: [ 0.156813] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.156890] pci 0000:00:1d.0: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.156921] pci 0000:00:1d.4: [8086:a11c] type 01 class 0x060400
Apr 21 05:41:45 kernel: [ 0.156969] pci 0000:00:1d.4: PME# supported from D0 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.157041] pci 0000:00:1d.4: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.157072] pci 0000:00:1f.0: [8086:a144] type 00 class 0x060100
Apr 21 05:41:45 kernel: [ 0.157237] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000
Apr 21 05:41:45 kernel: [ 0.157246] pci 0000:00:1f.2: reg 0x10: [mem 0xdf144000-0xdf147fff]
Apr 21 05:41:45 kernel: [ 0.157368] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040100
Apr 21 05:41:45 kernel: [ 0.157387] pci 0000:00:1f.3: reg 0x10: [mem 0xdf140000-0xdf143fff 64bit]
Apr 21 05:41:45 kernel: [ 0.157414] pci 0000:00:1f.3: reg 0x20: [mem 0xdf120000-0xdf12ffff 64bit]
Apr 21 05:41:45 kernel: [ 0.157456] pci 0000:00:1f.3: PME# supported from D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.157558] pci 0000:00:1f.3: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.157584] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500
Apr 21 05:41:45 kernel: [ 0.157630] pci 0000:00:1f.4: reg 0x10: [mem 0xdf14a000-0xdf14a0ff 64bit]
Apr 21 05:41:45 kernel: [ 0.157699] pci 0000:00:1f.4: reg 0x20: [io 0xf040-0xf05f]
Apr 21 05:41:45 kernel: [ 0.157853] pci 0000:00:1f.6: [8086:15b8] type 00 class 0x020000
Apr 21 05:41:45 kernel: [ 0.157872] pci 0000:00:1f.6: reg 0x10: [mem 0xdf100000-0xdf11ffff]
Apr 21 05:41:45 kernel: [ 0.157970] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.158038] pci 0000:00:1f.6: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.158118] pci 0000:01:00.0: [1b21:1080] type 01 class 0x060400
Apr 21 05:41:45 kernel: [ 0.158227] pci 0000:01:00.0: supports D1 D2
Apr 21 05:41:45 kernel: [ 0.158227] pci 0000:01:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Apr 21 05:41:45 kernel: [ 0.158274] pci 0000:01:00.0: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.158295] pci 0000:00:1b.0: PCI bridge to [bus 01-02]
Apr 21 05:41:45 kernel: [ 0.158394] pci 0000:01:00.0: PCI bridge to [bus 02]
Apr 21 05:41:45 kernel: [ 0.158465] pci 0000:00:1c.0: PCI bridge to [bus 03]
Apr 21 05:41:45 kernel: [ 0.158519] pci 0000:00:1c.4: PCI bridge to [bus 04]
Apr 21 05:41:45 kernel: [ 0.158578] pci 0000:05:00.0: [144d:a802] type 00 class 0x010802
Apr 21 05:41:45 kernel: [ 0.158592] pci 0000:05:00.0: reg 0x10: [mem 0xdf010000-0xdf013fff 64bit]
Apr 21 05:41:45 kernel: [ 0.158599] pci 0000:05:00.0: reg 0x18: [io 0xe000-0xe0ff]
Apr 21 05:41:45 kernel: [ 0.158623] pci 0000:05:00.0: reg 0x30: [mem 0xdf000000-0xdf00ffff pref]
Apr 21 05:41:45 kernel: [ 0.158728] pci 0000:05:00.0: System wakeup disabled by ACPI
Apr 21 05:41:45 kernel: [ 0.158746] pci 0000:00:1d.0: PCI bridge to [bus 05]
Apr 21 05:41:45 kernel: [ 0.158748] pci 0000:00:1d.0: bridge window [io 0xe000-0xefff]
Apr 21 05:41:45 kernel: [ 0.158750] pci 0000:00:1d.0: bridge window [mem 0xdf000000-0xdf0fffff]
Apr 21 05:41:45 kernel: [ 0.158807] acpiphp: Slot [1] registered
Apr 21 05:41:45 kernel: [ 0.158816] pci 0000:00:1d.4: PCI bridge to [bus 06]
Apr 21 05:41:45 kernel: [ 0.160174] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 *10 11 12 14 15)
Apr 21 05:41:45 kernel: [ 0.160206] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 21 05:41:45 kernel: [ 0.160237] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 10 11 12 *14 15)
Apr 21 05:41:45 kernel: [ 0.160268] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 10 11 12 14 *15)
Apr 21 05:41:45 kernel: [ 0.160298] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 21 05:41:45 kernel: [ 0.160328] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 21 05:41:45 kernel: [ 0.160359] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 21 05:41:45 kernel: [ 0.160389] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 10 *11 12 14 15)
Apr 21 05:41:45 kernel: [ 0.160628] ACPI: Enabled 5 GPEs in block 00 to 7F
Apr 21 05:41:45 kernel: [ 0.160775] SCSI subsystem initialized
Apr 21 05:41:45 kernel: [ 0.160797] libata version 3.00 loaded.
Apr 21 05:41:45 kernel: [ 0.160816] pci 0000:00:02.0: vgaarb: setting as boot VGA device
Apr 21 05:41:45 kernel: [ 0.160817] pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
Apr 21 05:41:45 kernel: [ 0.160819] pci 0000:00:02.0: vgaarb: bridge control possible
Apr 21 05:41:45 kernel: [ 0.160819] vgaarb: loaded
Apr 21 05:41:45 kernel: [ 0.160828] ACPI: bus type USB registered
Apr 21 05:41:45 kernel: [ 0.160838] usbcore: registered new interface driver usbfs
Apr 21 05:41:45 kernel: [ 0.160842] usbcore: registered new interface driver hub
Apr 21 05:41:45 kernel: [ 0.160850] usbcore: registered new device driver usb
Apr 21 05:41:45 kernel: [ 0.160906] PCI: Using ACPI for IRQ routing
Apr 21 05:41:45 kernel: [ 0.188411] PCI: pci_cache_line_size set to 64 bytes
Apr 21 05:41:45 kernel: [ 0.188454] e820: reserve RAM buffer [mem 0x00096400-0x0009ffff]
Apr 21 05:41:45 kernel: [ 0.188454] e820: reserve RAM buffer [mem 0x8685a000-0x87ffffff]
Apr 21 05:41:45 kernel: [ 0.188455] e820: reserve RAM buffer [mem 0x868d9000-0x87ffffff]
Apr 21 05:41:45 kernel: [ 0.188455] e820: reserve RAM buffer [mem 0x86d5e000-0x87ffffff]
Apr 21 05:41:45 kernel: [ 0.188456] e820: reserve RAM buffer [mem 0x271000000-0x273ffffff]
Apr 21 05:41:45 kernel: [ 0.188504] NetLabel: Initializing
Apr 21 05:41:45 kernel: [ 0.188504] NetLabel: domain hash size = 128
Apr 21 05:41:45 kernel: [ 0.188505] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
Apr 21 05:41:45 kernel: [ 0.188513] NetLabel: unlabeled traffic allowed by default
Apr 21 05:41:45 kernel: [ 0.188604] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Apr 21 05:41:45 kernel: [ 0.188607] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
Apr 21 05:41:45 kernel: [ 0.190645] clocksource: Switched to clocksource hpet
Apr 21 05:41:45 kernel: [ 0.194826] VFS: Disk quotas dquot_6.6.0
Apr 21 05:41:45 kernel: [ 0.194836] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Apr 21 05:41:45 kernel: [ 0.194887] AppArmor: AppArmor Filesystem Enabled
Apr 21 05:41:45 kernel: [ 0.194910] pnp: PnP ACPI init
Apr 21 05:41:45 kernel: [ 0.195075] system 00:00: [io 0x0a00-0x0a2f] has been reserved
Apr 21 05:41:45 kernel: [ 0.195076] system 00:00: [io 0x0a30-0x0a3f] has been reserved
Apr 21 05:41:45 kernel: [ 0.195077] system 00:00: [io 0x0a40-0x0a4f] has been reserved
Apr 21 05:41:45 kernel: [ 0.195078] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.195398] pnp 00:01: [dma 0 disabled]
Apr 21 05:41:45 kernel: [ 0.195490] pnp 00:01: Plug and Play ACPI device, IDs PNP0400 (active)
Apr 21 05:41:45 kernel: [ 0.195514] pnp 00:02: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
Apr 21 05:41:45 kernel: [ 0.195543] pnp 00:03: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
Apr 21 05:41:45 kernel: [ 0.195778] pnp 00:04: [dma 0 disabled]
Apr 21 05:41:45 kernel: [ 0.195799] pnp 00:04: Plug and Play ACPI device, IDs PNP0501 (active)
Apr 21 05:41:45 kernel: [ 0.195877] system 00:05: [io 0x0680-0x069f] has been reserved
Apr 21 05:41:45 kernel: [ 0.195878] system 00:05: [io 0xffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.195879] system 00:05: [io 0xffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.195879] system 00:05: [io 0xffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.195880] system 00:05: [io 0x1800-0x18fe] has been reserved
Apr 21 05:41:45 kernel: [ 0.195881] system 00:05: [io 0x164e-0x164f] has been reserved
Apr 21 05:41:45 kernel: [ 0.195882] system 00:05: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.195934] system 00:06: [io 0x0800-0x087f] has been reserved
Apr 21 05:41:45 kernel: [ 0.195935] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.195946] pnp 00:07: Plug and Play ACPI device, IDs PNP0b00 (active)
Apr 21 05:41:45 kernel: [ 0.195965] system 00:08: [io 0x1854-0x1857] has been reserved
Apr 21 05:41:45 kernel: [ 0.195966] system 00:08: Plug and Play ACPI device, IDs INT3f0d PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.196095] system 00:09: [mem 0xfed10000-0xfed17fff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196096] system 00:09: [mem 0xfed18000-0xfed18fff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196096] system 00:09: [mem 0xfed19000-0xfed19fff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196097] system 00:09: [mem 0xe0000000-0xefffffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196098] system 00:09: [mem 0xfed20000-0xfed3ffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196098] system 00:09: [mem 0xfed90000-0xfed93fff] could not be reserved
Apr 21 05:41:45 kernel: [ 0.196099] system 00:09: [mem 0xfed45000-0xfed8ffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196100] system 00:09: [mem 0xff000000-0xffffffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196100] system 00:09: [mem 0xfee00000-0xfeefffff] could not be reserved
Apr 21 05:41:45 kernel: [ 0.196101] system 00:09: [mem 0xdffe0000-0xdfffffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196102] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.196124] system 00:0a: [mem 0xfd000000-0xfdabffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196124] system 00:0a: [mem 0xfdad0000-0xfdadffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196125] system 00:0a: [mem 0xfdb00000-0xfdffffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196126] system 00:0a: [mem 0xfe000000-0xfe01ffff] could not be reserved
Apr 21 05:41:45 kernel: [ 0.196126] system 00:0a: [mem 0xfe036000-0xfe03bfff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196127] system 00:0a: [mem 0xfe03d000-0xfe3fffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196128] system 00:0a: [mem 0xfe410000-0xfe7fffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196129] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.196777] system 00:0b: [mem 0xfdaf0000-0xfdafffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196778] system 00:0b: [mem 0xfdae0000-0xfdaeffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196778] system 00:0b: [mem 0xfdac0000-0xfdacffff] has been reserved
Apr 21 05:41:45 kernel: [ 0.196779] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
Apr 21 05:41:45 kernel: [ 0.197283] pnp: PnP ACPI: found 12 devices
Apr 21 05:41:45 kernel: [ 0.203627] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Apr 21 05:41:45 kernel: [ 0.203647] pci 0000:00:1c.0: bridge window [io 0x1000-0x0fff] to [bus 03] add_size 1000
Apr 21 05:41:45 kernel: [ 0.203648] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 03] add_size 200000 add_align 100000
Apr 21 05:41:45 kernel: [ 0.203649] pci 0000:00:1c.0: bridge window [mem 0x00100000-0x000fffff] to [bus 03] add_size 200000 add_align 100000
Apr 21 05:41:45 kernel: [ 0.203654] pci 0000:00:1c.4: bridge window [io 0x1000-0x0fff] to [bus 04] add_size 1000
Apr 21 05:41:45 kernel: [ 0.203654] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff 64bit pref] to [bus 04] add_size 200000 add_align 100000
Apr 21 05:41:45 kernel: [ 0.203655] pci 0000:00:1c.4: bridge window [mem 0x00100000-0x000fffff] to [bus 04] add_size 200000 add_align 100000
Apr 21 05:41:45 kernel: [ 0.203666] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203667] pci 0000:00:1c.0: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203668] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203668] pci 0000:00:1c.0: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203669] pci 0000:00:1c.4: res[14]=[mem 0x00100000-0x000fffff] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203669] pci 0000:00:1c.4: res[14]=[mem 0x00100000-0x002fffff] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203670] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x000fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203671] pci 0000:00:1c.4: res[15]=[mem 0x00100000-0x002fffff 64bit pref] res_to_dev_res add_size 200000 min_align 100000
Apr 21 05:41:45 kernel: [ 0.203671] pci 0000:00:1c.0: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
Apr 21 05:41:45 kernel: [ 0.203672] pci 0000:00:1c.0: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
Apr 21 05:41:45 kernel: [ 0.203673] pci 0000:00:1c.4: res[13]=[io 0x1000-0x0fff] res_to_dev_res add_size 1000 min_align 1000
Apr 21 05:41:45 kernel: [ 0.203673] pci 0000:00:1c.4: res[13]=[io 0x1000-0x1fff] res_to_dev_res add_size 1000 min_align 1000
Apr 21 05:41:45 kernel: [ 0.203675] pci 0000:00:1c.0: BAR 14: assigned [mem 0x8d000000-0x8d1fffff]
Apr 21 05:41:45 kernel: [ 0.203678] pci 0000:00:1c.0: BAR 15: assigned [mem 0x8d200000-0x8d3fffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.203678] pci 0000:00:1c.4: BAR 14: assigned [mem 0x8d400000-0x8d5fffff]
Apr 21 05:41:45 kernel: [ 0.203680] pci 0000:00:1c.4: BAR 15: assigned [mem 0x8d600000-0x8d7fffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.203681] pci 0000:00:1c.0: BAR 13: assigned [io 0x2000-0x2fff]
Apr 21 05:41:45 kernel: [ 0.203682] pci 0000:00:1c.4: BAR 13: assigned [io 0x3000-0x3fff]
Apr 21 05:41:45 kernel: [ 0.203683] pci 0000:01:00.0: PCI bridge to [bus 02]
Apr 21 05:41:45 kernel: [ 0.203697] pci 0000:00:1b.0: PCI bridge to [bus 01-02]
Apr 21 05:41:45 kernel: [ 0.203702] pci 0000:00:1c.0: PCI bridge to [bus 03]
Apr 21 05:41:45 kernel: [ 0.203703] pci 0000:00:1c.0: bridge window [io 0x2000-0x2fff]
Apr 21 05:41:45 kernel: [ 0.203706] pci 0000:00:1c.0: bridge window [mem 0x8d000000-0x8d1fffff]
Apr 21 05:41:45 kernel: [ 0.203708] pci 0000:00:1c.0: bridge window [mem 0x8d200000-0x8d3fffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.203711] pci 0000:00:1c.4: PCI bridge to [bus 04]
Apr 21 05:41:45 kernel: [ 0.203712] pci 0000:00:1c.4: bridge window [io 0x3000-0x3fff]
Apr 21 05:41:45 kernel: [ 0.203714] pci 0000:00:1c.4: bridge window [mem 0x8d400000-0x8d5fffff]
Apr 21 05:41:45 kernel: [ 0.203716] pci 0000:00:1c.4: bridge window [mem 0x8d600000-0x8d7fffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.203719] pci 0000:00:1d.0: PCI bridge to [bus 05]
Apr 21 05:41:45 kernel: [ 0.203720] pci 0000:00:1d.0: bridge window [io 0xe000-0xefff]
Apr 21 05:41:45 kernel: [ 0.203722] pci 0000:00:1d.0: bridge window [mem 0xdf000000-0xdf0fffff]
Apr 21 05:41:45 kernel: [ 0.203726] pci 0000:00:1d.4: PCI bridge to [bus 06]
Apr 21 05:41:45 kernel: [ 0.203734] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Apr 21 05:41:45 kernel: [ 0.203735] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Apr 21 05:41:45 kernel: [ 0.203736] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Apr 21 05:41:45 kernel: [ 0.203736] pci_bus 0000:00: resource 7 [mem 0x8d000000-0xdfffffff window]
Apr 21 05:41:45 kernel: [ 0.203737] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
Apr 21 05:41:45 kernel: [ 0.203737] pci_bus 0000:03: resource 0 [io 0x2000-0x2fff]
Apr 21 05:41:45 kernel: [ 0.203738] pci_bus 0000:03: resource 1 [mem 0x8d000000-0x8d1fffff]
Apr 21 05:41:45 kernel: [ 0.203738] pci_bus 0000:03: resource 2 [mem 0x8d200000-0x8d3fffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.203739] pci_bus 0000:04: resource 0 [io 0x3000-0x3fff]
Apr 21 05:41:45 kernel: [ 0.203740] pci_bus 0000:04: resource 1 [mem 0x8d400000-0x8d5fffff]
Apr 21 05:41:45 kernel: [ 0.203740] pci_bus 0000:04: resource 2 [mem 0x8d600000-0x8d7fffff 64bit pref]
Apr 21 05:41:45 kernel: [ 0.203741] pci_bus 0000:05: resource 0 [io 0xe000-0xefff]
Apr 21 05:41:45 kernel: [ 0.203741] pci_bus 0000:05: resource 1 [mem 0xdf000000-0xdf0fffff]
Apr 21 05:41:45 kernel: [ 0.203819] NET: Registered protocol family 2
Apr 21 05:41:45 kernel: [ 0.203911] TCP established hash table entries: 65536 (order: 7, 524288 bytes)
Apr 21 05:41:45 kernel: [ 0.203977] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Apr 21 05:41:45 kernel: [ 0.204050] TCP: Hash tables configured (established 65536 bind 65536)
Apr 21 05:41:45 kernel: [ 0.204062] UDP hash table entries: 4096 (order: 5, 131072 bytes)
Apr 21 05:41:45 kernel: [ 0.204076] UDP-Lite hash table entries: 4096 (order: 5, 131072 bytes)
Apr 21 05:41:45 kernel: [ 0.204101] NET: Registered protocol family 1
Apr 21 05:41:45 kernel: [ 0.204108] pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
Apr 21 05:41:45 kernel: [ 0.208594] PCI: CLS 0 bytes, default 64
Apr 21 05:41:45 kernel: [ 0.208619] Unpacking initramfs...
Apr 21 05:41:45 kernel: [ 0.556667] Freeing initrd memory: 39396K
Apr 21 05:41:45 kernel: [ 0.556714] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Apr 21 05:41:45 kernel: [ 0.556716] software IO TLB [mem 0x8285a000-0x8685a000] (64MB) mapped at [ffff9f3b4285a000-ffff9f3b46859fff]
Apr 21 05:41:45 kernel: [ 0.556834] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x6d51a4e4511, max_idle_ns: 881590775377 ns
Apr 21 05:41:45 kernel: [ 0.556896] Scanning for low memory corruption every 60 seconds
Apr 21 05:41:45 kernel: [ 0.557112] audit: initializing netlink subsys (disabled)
Apr 21 05:41:45 kernel: [ 0.557158] audit: type=2000 audit(1492753305.552:1): initialized
Apr 21 05:41:45 kernel: [ 0.557386] Initialise system trusted keyrings
Apr 21 05:41:45 kernel: [ 0.557461] workingset: timestamp_bits=36 max_order=21 bucket_order=0
Apr 21 05:41:45 kernel: [ 0.558224] zbud: loaded
Apr 21 05:41:45 kernel: [ 0.558480] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Apr 21 05:41:45 kernel: [ 0.558615] fuse init (API version 7.26)
Apr 21 05:41:45 kernel: [ 0.561462] Key type asymmetric registered
Apr 21 05:41:45 kernel: [ 0.561463] Asymmetric key parser 'x509' registered
Apr 21 05:41:45 kernel: [ 0.561484] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 248)
Apr 21 05:41:45 kernel: [ 0.561528] io scheduler noop registered
Apr 21 05:41:45 kernel: [ 0.561529] io scheduler deadline registered
Apr 21 05:41:45 kernel: [ 0.561533] io scheduler cfq registered (default)
Apr 21 05:41:45 kernel: [ 0.562204] pcieport 0000:00:1b.0: AER enabled with IRQ 122
Apr 21 05:41:45 kernel: [ 0.562215] pcieport 0000:00:1d.0: AER enabled with IRQ 125
Apr 21 05:41:45 kernel: [ 0.562222] pcieport 0000:00:1b.0: Signaling PME with IRQ 122
Apr 21 05:41:45 kernel: [ 0.562232] pcieport 0000:00:1c.0: Signaling PME with IRQ 123
Apr 21 05:41:45 kernel: [ 0.562240] pcieport 0000:00:1c.4: Signaling PME with IRQ 124
Apr 21 05:41:45 kernel: [ 0.562246] pcieport 0000:00:1d.0: Signaling PME with IRQ 125
Apr 21 05:41:45 kernel: [ 0.562255] pcieport 0000:00:1d.4: Signaling PME with IRQ 126
Apr 21 05:41:45 kernel: [ 0.562266] pciehp 0000:00:1c.0:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
Apr 21 05:41:45 kernel: [ 0.562298] pciehp 0000:00:1c.4:pcie004: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ LLActRep+
Apr 21 05:41:45 kernel: [ 0.562343] vesafb: mode is 800x600x16, linelength=1600, pages=67
Apr 21 05:41:45 kernel: [ 0.562343] vesafb: scrolling: redraw
Apr 21 05:41:45 kernel: [ 0.562344] vesafb: Truecolor: size=0:5:6:5, shift=0:11:5:0
Apr 21 05:41:45 kernel: [ 0.562349] vesafb: framebuffer at 0xc0000000, mapped to 0xffffb612c1400000, using 1875k, total 65472k
Apr 21 05:41:45 kernel: [ 0.575713] Console: switching to colour frame buffer device 100x37
Apr 21 05:41:45 kernel: [ 0.588913] fb0: VESA VGA frame buffer device
Apr 21 05:41:45 kernel: [ 0.588919] intel_idle: MWAIT substates: 0x142120
Apr 21 05:41:45 kernel: [ 0.588920] intel_idle: v0.4.1 model 0x5E
Apr 21 05:41:45 kernel: [ 0.589067] intel_idle: lapic_timer_reliable_states 0xffffffff
Apr 21 05:41:45 kernel: [ 0.589124] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Apr 21 05:41:45 kernel: [ 0.589126] ACPI: Sleep Button [SLPB]
Apr 21 05:41:45 kernel: [ 0.589143] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1
Apr 21 05:41:45 kernel: [ 0.589144] ACPI: Power Button [PWRB]
Apr 21 05:41:45 kernel: [ 0.589161] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Apr 21 05:41:45 kernel: [ 0.589161] ACPI: Power Button [PWRF]
Apr 21 05:41:45 kernel: [ 0.589517] (NULL device *): hwmon_device_register() is deprecated. Please convert the driver to use hwmon_device_register_with_info().
Apr 21 05:41:45 kernel: [ 0.589593] thermal LNXTHERM:00: registered as thermal_zone0
Apr 21 05:41:45 kernel: [ 0.589593] ACPI: Thermal Zone [TZ00] (28 C)
Apr 21 05:41:45 kernel: [ 0.589661] thermal LNXTHERM:01: registered as thermal_zone1
Apr 21 05:41:45 kernel: [ 0.589661] ACPI: Thermal Zone [TZ01] (30 C)
Apr 21 05:41:45 kernel: [ 0.589677] GHES: HEST is not enabled!
Apr 21 05:41:45 kernel: [ 0.589736] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Apr 21 05:41:45 kernel: [ 0.610485] 00:04: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
Apr 21 05:41:45 kernel: [ 0.611985] Linux agpgart interface v0.103
Apr 21 05:41:45 kernel: [ 0.613814] loop: module loaded
Apr 21 05:41:45 kernel: [ 0.613898] libphy: Fixed MDIO Bus: probed
Apr 21 05:41:45 kernel: [ 0.613899] tun: Universal TUN/TAP device driver, 1.6
Apr 21 05:41:45 kernel: [ 0.613899] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Apr 21 05:41:45 kernel: [ 0.613934] PPP generic driver version 2.4.2
Apr 21 05:41:45 kernel: [ 0.613976] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Apr 21 05:41:45 kernel: [ 0.613977] ehci-pci: EHCI PCI platform driver
Apr 21 05:41:45 kernel: [ 0.613982] ehci-platform: EHCI generic platform driver
Apr 21 05:41:45 kernel: [ 0.613986] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Apr 21 05:41:45 kernel: [ 0.613987] ohci-pci: OHCI PCI platform driver
Apr 21 05:41:45 kernel: [ 0.613990] ohci-platform: OHCI generic platform driver
Apr 21 05:41:45 kernel: [ 0.613993] uhci_hcd: USB Universal Host Controller Interface driver
Apr 21 05:41:45 kernel: [ 0.614085] xhci_hcd 0000:00:14.0: xHCI Host Controller
Apr 21 05:41:45 kernel: [ 0.614088] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
Apr 21 05:41:45 kernel: [ 0.615154] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x00109810
Apr 21 05:41:45 kernel: [ 0.615157] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Apr 21 05:41:45 kernel: [ 0.615212] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Apr 21 05:41:45 kernel: [ 0.615213] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 21 05:41:45 kernel: [ 0.615213] usb usb1: Product: xHCI Host Controller
Apr 21 05:41:45 kernel: [ 0.615214] usb usb1: Manufacturer: Linux 4.10.0-19-generic xhci-hcd
Apr 21 05:41:45 kernel: [ 0.615214] usb usb1: SerialNumber: 0000:00:14.0
Apr 21 05:41:45 kernel: [ 0.615284] hub 1-0:1.0: USB hub found
Apr 21 05:41:45 kernel: [ 0.615298] hub 1-0:1.0: 16 ports detected
Apr 21 05:41:45 kernel: [ 0.622438] xhci_hcd 0000:00:14.0: xHCI Host Controller
Apr 21 05:41:45 kernel: [ 0.622440] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Apr 21 05:41:45 kernel: [ 0.622456] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003
Apr 21 05:41:45 kernel: [ 0.622457] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Apr 21 05:41:45 kernel: [ 0.622457] usb usb2: Product: xHCI Host Controller
Apr 21 05:41:45 kernel: [ 0.622458] usb usb2: Manufacturer: Linux 4.10.0-19-generic xhci-hcd
Apr 21 05:41:45 kernel: [ 0.622458] usb usb2: SerialNumber: 0000:00:14.0
Apr 21 05:41:45 kernel: [ 0.622524] hub 2-0:1.0: USB hub found
Apr 21 05:41:45 kernel: [ 0.622532] hub 2-0:1.0: 8 ports detected
Apr 21 05:41:45 kernel: [ 0.626184] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
Apr 21 05:41:45 kernel: [ 0.626906] serio: i8042 KBD port at 0x60,0x64 irq 1
Apr 21 05:41:45 kernel: [ 0.626908] serio: i8042 AUX port at 0x60,0x64 irq 12
Apr 21 05:41:45 kernel: [ 0.627050] mousedev: PS/2 mouse device common for all mice
Apr 21 05:41:45 kernel: [ 0.627291] rtc_cmos 00:07: RTC can wake from S4
Apr 21 05:41:45 kernel: [ 0.627664] rtc_cmos 00:07: rtc core: registered rtc_cmos as rtc0
Apr 21 05:41:45 kernel: [ 0.627743] rtc_cmos 00:07: alarms up to one month, y3k, 242 bytes nvram, hpet irqs
Apr 21 05:41:45 kernel: [ 0.627745] i2c /dev entries driver
Apr 21 05:41:45 kernel: [ 0.627772] device-mapper: uevent: version 1.0.3
Apr 21 05:41:45 kernel: [ 0.627828] device-mapper: ioctl: 4.35.0-ioctl (2016-06-23) initialised: dm-devel@redhat.com
Apr 21 05:41:45 kernel: [ 0.627829] intel_pstate: Intel P-state driver initializing
Apr 21 05:41:45 kernel: [ 0.628092] intel_pstate: HWP enabled
Apr 21 05:41:45 kernel: [ 0.628176] ledtrig-cpu: registered to indicate activity on CPUs
Apr 21 05:41:45 kernel: [ 0.628448] NET: Registered protocol family 10
Apr 21 05:41:45 kernel: [ 0.630406] Segment Routing with IPv6
Apr 21 05:41:45 kernel: [ 0.630417] NET: Registered protocol family 17
Apr 21 05:41:45 kernel: [ 0.630422] Key type dns_resolver registered
Apr 21 05:41:45 kernel: [ 0.630624] microcode: sig=0x506e3, pf=0x2, revision=0x39
Apr 21 05:41:45 kernel: [ 0.630676] microcode: Microcode Update Driver: v2.2.
Apr 21 05:41:45 kernel: [ 0.630751] registered taskstats version 1
Apr 21 05:41:45 kernel: [ 0.630759] Loading compiled-in X.509 certificates
Apr 21 05:41:45 kernel: [ 0.631928] Loaded X.509 cert 'Build time autogenerated kernel key: 8e99ee5b0fead84880b7849b477f2b92957907bc'
Apr 21 05:41:45 kernel: [ 0.631938] zswap: loaded using pool lzo/zbud
Apr 21 05:41:45 kernel: [ 0.638532] Key type big_key registered
Apr 21 05:41:45 kernel: [ 0.638533] Key type trusted registered
Apr 21 05:41:45 kernel: [ 0.639216] Key type encrypted registered
Apr 21 05:41:45 kernel: [ 0.639217] AppArmor: AppArmor sha1 policy hashing enabled
Apr 21 05:41:45 kernel: [ 0.639219] ima: No TPM chip found, activating TPM-bypass! (rc=-19)
Apr 21 05:41:45 kernel: [ 0.639229] evm: HMAC attrs: 0x1
Apr 21 05:41:45 kernel: [ 0.639827] Magic number: 13:226:669
Apr 21 05:41:45 kernel: [ 0.640005] rtc_cmos 00:07: setting system clock to 2017-04-21 05:41:45 UTC (1492753305)
Apr 21 05:41:45 kernel: [ 0.640048] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Apr 21 05:41:45 kernel: [ 0.640048] EDD information not available.
Apr 21 05:41:45 kernel: [ 0.640075] PM: Hibernation image not present or could not be loaded.
Apr 21 05:41:45 kernel: [ 0.640972] Freeing unused kernel memory: 2228K
Apr 21 05:41:45 kernel: [ 0.640973] Write protecting the kernel read-only data: 14336k
Apr 21 05:41:45 kernel: [ 0.641150] Freeing unused kernel memory: 1164K
Apr 21 05:41:45 kernel: [ 0.641456] Freeing unused kernel memory: 280K
Apr 21 05:41:45 kernel: [ 0.645498] x86/mm: Checked W+X mappings: passed, no W+X pages found.
Apr 21 05:41:45 kernel: [ 0.649191] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.649234] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.649239] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.649244] random: systemd-udevd: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.649553] random: udevadm: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.649567] random: udevadm: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.650229] random: udevadm: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.650254] random: udevadm: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.650261] random: udevadm: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.650464] random: udevadm: uninitialized urandom read (16 bytes read)
Apr 21 05:41:45 kernel: [ 0.682575] pps_core: LinuxPPS API ver. 1 registered
Apr 21 05:41:45 kernel: [ 0.682575] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Apr 21 05:41:45 kernel: [ 0.683501] PTP clock support registered
Apr 21 05:41:45 kernel: [ 0.686207] e1000e: Intel(R) PRO/1000 Network Driver - 3.2.6-k
Apr 21 05:41:45 kernel: [ 0.686208] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
Apr 21 05:41:45 kernel: [ 0.686410] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Apr 21 05:41:45 kernel: [ 0.692188] AVX2 version of gcm_enc/dec engaged.
Apr 21 05:41:45 kernel: [ 0.692188] AES CTR mode by8 optimization enabled
Apr 21 05:41:45 kernel: [ 0.760303] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
Apr 21 05:41:45 kernel: [ 0.827617] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) 40:8d:5c:7f:bb:90
Apr 21 05:41:45 kernel: [ 0.827618] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
Apr 21 05:41:45 kernel: [ 0.827674] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
Apr 21 05:41:45 kernel: [ 0.828115] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
Apr 21 05:41:45 kernel: [ 0.946705] usb 1-13: new high-speed USB device number 2 using xhci_hcd
Apr 21 05:41:45 kernel: [ 1.094854] usb 1-13: New USB device found, idVendor=1a40, idProduct=0101
Apr 21 05:41:45 kernel: [ 1.094856] usb 1-13: New USB device strings: Mfr=0, Product=1, SerialNumber=0
Apr 21 05:41:45 kernel: [ 1.094857] usb 1-13: Product: USB 2.0 Hub
Apr 21 05:41:45 kernel: [ 1.095169] hub 1-13:1.0: USB hub found
Apr 21 05:41:45 kernel: [ 1.095187] hub 1-13:1.0: 4 ports detected
Apr 21 05:41:46 anna-install: Queueing udeb rescue-mode for later installation
Apr 21 05:41:46 init: starting pid 276, tty '': '/sbin/reopen-console /sbin/debian-installer'
Apr 21 05:41:46 init: starting pid 279, tty '/dev/tty4': '/usr/bin/tail -f /var/log/syslog'
Apr 21 05:41:46 debconf: Setting debconf/language to en
Apr 21 05:41:46 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:46 main-menu[310]: INFO: Menu item 'localechooser' selected
Apr 21 05:41:46 kernel: [ 1.402676] usb 1-13.1: new low-speed USB device number 3 using xhci_hcd
Apr 21 05:41:46 debconf: Setting debconf/language to en
Apr 21 05:41:46 kernel: [ 1.529308] usb 1-13.1: New USB device found, idVendor=1c4f, idProduct=0002
Apr 21 05:41:46 kernel: [ 1.529309] usb 1-13.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Apr 21 05:41:46 kernel: [ 1.529310] usb 1-13.1: Product: USB Keyboard
Apr 21 05:41:46 kernel: [ 1.529311] usb 1-13.1: Manufacturer: SIGMACHIP
Apr 21 05:41:46 kernel: [ 1.531911] hidraw: raw HID events driver (C) Jiri Kosina
Apr 21 05:41:46 kernel: [ 1.537670] usbcore: registered new interface driver usbhid
Apr 21 05:41:46 kernel: [ 1.537671] usbhid: USB HID core driver
Apr 21 05:41:46 kernel: [ 1.538591] input: SIGMACHIP USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13.1/1-13.1:1.0/0003:1C4F:0002.0001/input/input5
Apr 21 05:41:46 kernel: [ 1.571157] clocksource: Switched to clocksource tsc
Apr 21 05:41:46 kernel: [ 1.595164] hid-generic 0003:1C4F:0002.0001: input,hidraw0: USB HID v1.10 Keyboard [SIGMACHIP USB Keyboard] on usb-0000:00:14.0-13.1/input0
Apr 21 05:41:46 kernel: [ 1.595271] input: SIGMACHIP USB Keyboard as /devices/pci0000:00/0000:00:14.0/usb1/1-13/1-13.1/1-13.1:1.1/0003:1C4F:0002.0002/input/input6
Apr 21 05:41:46 kernel: [ 1.655153] hid-generic 0003:1C4F:0002.0002: input,hidraw1: USB HID v1.10 Device [SIGMACHIP USB Keyboard] on usb-0000:00:14.0-13.1/input1
Apr 21 05:41:47 localechooser: info: Language = 'en'
Apr 21 05:41:47 localechooser: info: line=en;0;US;en_US.UTF-8;;console-setup
Apr 21 05:41:47 localechooser: info: Set debian-installer/language = 'en'
Apr 21 05:41:47 localechooser: info: Default country = 'US'
Apr 21 05:41:47 localechooser: info: Default locale = 'en_US.UTF-8'
Apr 21 05:41:47 localechooser: info: Set debian-installer/consoledisplay = 'console-setup'
Apr 21 05:41:47 debconf: Setting debconf/language to en
Apr 21 05:41:49 localechooser: info: Set debian-installer/country = 'US'
Apr 21 05:41:49 localechooser: info: Set debian-installer/locale = 'en_US.UTF-8'
Apr 21 05:41:49 localechooser: info: System locale (debian-installer/locale) = 'en_US.UTF-8'
Apr 21 05:41:49 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:49 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:49 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:49 main-menu[310]: INFO: Menu item 'brltty-udeb' selected
Apr 21 05:41:49 main-menu[310]: WARNING **: Unable to set title for brltty-udeb.
Apr 21 05:41:49 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:49 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:49 main-menu[310]: INFO: Menu item 'console-setup-udeb' selected
Apr 21 05:41:52 main-menu[310]: (process:1233): gzip is not accessible. Will not save cached keyboard map.
Apr 21 05:41:52 main-menu[310]: (process:1233): gzip is not accessible. Will not save cached keyboard map.
Apr 21 05:41:52 main-menu[310]: (process:1233): gzip is not accessible. Will not save cached keyboard map.
Apr 21 05:41:52 main-menu[310]: (process:1233): gzip is not accessible. Will not save cached keyboard map.
Apr 21 05:41:52 main-menu[310]: (process:1233): /bin/setupcon: line 786: can't create /etc/console-setup/cached_setup_keyboard.sh: nonexistent directory
Apr 21 05:41:52 main-menu[310]: (process:1233): /bin/setupcon: line 786: can't create /etc/console-setup/cached_setup_font.sh: nonexistent directory
Apr 21 05:41:52 main-menu[310]: (process:1233): /bin/setupcon: line 786: can't create /etc/console-setup/cached_setup_terminal.sh: nonexistent directory
Apr 21 05:41:52 main-menu[310]: (process:1233): chmod: /etc/console-setup/cached_setup_keyboard.sh: No such file or directory
Apr 21 05:41:52 main-menu[310]: (process:1233): chmod: /etc/console-setup/cached_setup_font.sh: No such file or directory
Apr 21 05:41:52 main-menu[310]: (process:1233): chmod: /etc/console-setup/cached_setup_terminal.sh: No such file or directory
Apr 21 05:41:52 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:52 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:52 main-menu[310]: INFO: Menu item 'ethdetect' selected
Apr 21 05:41:52 net/hw-detect.hotplug: Detected hotpluggable network interface enp0s31f6
Apr 21 05:41:52 net/hw-detect.hotplug: Detected hotpluggable network interface lo
Apr 21 05:41:52 hw-detect: Detected module 'usb-storage' for 'USB storage'
Apr 21 05:41:52 hw-detect: insmod /lib/modules/4.10.0-19-generic/kernel/drivers/usb/storage/usb-storage.ko
Apr 21 05:41:52 kernel: [ 7.964031] usbcore: registered new interface driver usb-storage
Apr 21 05:41:52 apt-install: Queueing package udev for later installation
Apr 21 05:41:52 apt-install: Queueing package pciutils for later installation
Apr 21 05:41:52 apt-install: Queueing package usbutils for later installation
Apr 21 05:41:53 check-missing-firmware: looking at dmesg for the first time
Apr 21 05:41:53 check-missing-firmware: saving timestamp for a later use: [ 7.964031]
Apr 21 05:41:53 check-missing-firmware: /dev/.udev/firmware-missing does not exist, skipping
Apr 21 05:41:53 check-missing-firmware: /run/udev/firmware-missing does not exist, skipping
Apr 21 05:41:53 check-missing-firmware: no missing firmware in loaded kernel modules
Apr 21 05:41:53 check-missing-firmware: taking network interface enp0s31f6 up/down
Apr 21 05:41:54 kernel: [ 9.223041] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
Apr 21 05:41:54 kernel: [ 9.299511] e1000e: enp0s31f6 NIC Link is Down
Apr 21 05:41:55 check-missing-firmware: looking at dmesg again, restarting from \[ 7.964031\]
Apr 21 05:41:55 check-missing-firmware: timestamp found, truncating dmesg accordingly
Apr 21 05:41:55 check-missing-firmware: saving timestamp for a later use: [ 9.299511]
Apr 21 05:41:55 check-missing-firmware: /dev/.udev/firmware-missing does not exist, skipping
Apr 21 05:41:55 check-missing-firmware: /run/udev/firmware-missing does not exist, skipping
Apr 21 05:41:55 check-missing-firmware: no missing firmware in loaded kernel modules
Apr 21 05:41:55 main-menu[310]: (process:1637): modprobe: invalid option -- 'l'
Apr 21 05:41:55 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:55 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:41:55 main-menu[310]: INFO: Menu item 'netcfg' selected
Apr 21 05:41:55 main-menu[310]: INFO: Falling back to the package description for crypto-modules-4.10.0-19-generic-di
Apr 21 05:41:55 main-menu[310]: INFO: Falling back to the package description for crypto-modules-4.10.0-19-generic-di
Apr 21 05:41:55 netcfg[2041]: INFO: Starting netcfg v.1.138ubuntu5
Apr 21 05:41:55 netcfg[2041]: WARNING **: Couldn't read Wpasupplicant pid file, not trying to kill.
Apr 21 05:41:55 netcfg[2041]: DEBUG: Flushing addresses and routes on interface: enp0s31f6
Apr 21 05:41:55 netcfg[2041]: INFO: Could not find valid BOOTIF= entry in /proc/cmdline
Apr 21 05:41:55 netcfg[2041]: INFO: Taking down interface enp0s31f6
Apr 21 05:41:55 netcfg[2041]: INFO: Taking down interface lo
Apr 21 05:41:55 netcfg[2041]: INFO: Activating interface enp0s31f6
Apr 21 05:41:55 netcfg[2041]: DEBUG: State is now 0
Apr 21 05:41:55 netcfg[2041]: DEBUG: Want link on enp0s31f6
Apr 21 05:41:55 netcfg[2041]: INFO: Waiting time set to 3
Apr 21 05:41:55 kernel: [ 10.523040] IPv6: ADDRCONF(NETDEV_UP): enp0s31f6: link is not ready
Apr 21 05:41:55 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:55 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:56 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:56 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:56 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:56 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:57 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:57 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:57 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:57 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:58 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier down
Apr 21 05:41:58 kernel: [ 13.473159] e1000e: enp0s31f6 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: Rx/Tx
Apr 21 05:41:58 kernel: [ 13.473204] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s31f6: link becomes ready
Apr 21 05:41:58 netcfg[2041]: INFO: ethtool-lite: enp0s31f6: carrier up
Apr 21 05:41:58 netcfg[2041]: INFO: Found link on enp0s31f6
Apr 21 05:41:58 netcfg[2041]: DEBUG: Commencing network autoconfiguration on enp0s31f6
Apr 21 05:41:58 netcfg[2041]: DEBUG: rdnssd started; PID: 2064
Apr 21 05:41:58 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:41:58 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:41:58 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:41:58 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:41:58 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:41:59 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:41:59 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:41:59 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:41:59 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:41:59 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:41:59 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:41:59 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:41:59 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:41:59 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:42:00 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:42:00 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link tentative
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:42:00 netcfg[2041]: DEBUG: nc_v6_interface_configured(enp0s31f6, scope local)
Apr 21 05:42:00 netcfg[2041]: DEBUG: Running ip addr show enp0s31f6 to look for address
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: 2: enp0s31f6: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast qlen 1000
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: link/ether 40:8d:5c:7f:bb:90 brd ff:ff:ff:ff:ff:ff
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: inet6 fe80::428d:5cff:fe7f:bb90/64 scope link
Apr 21 05:42:00 netcfg[2041]: DEBUG: Configured address found
Apr 21 05:42:00 netcfg[2041]: DEBUG: ip line: valid_lft forever preferred_lft forever
Apr 21 05:42:00 netcfg[2041]: DEBUG: Running rdisc6 -1 -r 1 -w 500 -n enp0s31f6 to get IPv6 config flags
Apr 21 05:42:00 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:00 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:00 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:00 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:01 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:02 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:03 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:04 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:05 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:06 netcfg[2041]: DEBUG: rdisc6 line: Soliciting ff02::2 (ff02::2) on enp0s31f6...
Apr 21 05:42:06 netcfg[2041]: DEBUG: rdisc6 line: Timed out.
Apr 21 05:42:06 netcfg[2041]: DEBUG: rdisc6 line: No response.
Apr 21 05:42:06 netcfg[2041]: DEBUG: rdisc6 parsing finished
Apr 21 05:42:06 netcfg[2041]: DEBUG: Stopping rdnssd, PID 2064
Apr 21 05:42:06 netcfg[2041]: DEBUG: No RA received; attempting IPv4 autoconfig
Apr 21 05:42:06 netcfg[2041]: WARNING **: Started DHCP client; PID is 2106
Apr 21 05:42:07 dhclient[2106]: DHCPDISCOVER on enp0s31f6 to 255.255.255.255 port 67 interval 1 (xid=0x307b7606)
Apr 21 05:42:07 dhclient[2106]: DHCPREQUEST of 192.168.1.75 on enp0s31f6 to 255.255.255.255 port 67 (xid=0x6767b30)
Apr 21 05:42:07 dhclient[2106]: DHCPOFFER of 192.168.1.75 from 192.168.1.3
Apr 21 05:42:07 dhclient[2106]: DHCPACK of 192.168.1.75 from 192.168.1.3
Apr 21 05:42:07 dhclient[2106]: bound to 192.168.1.75 -- renewal in 8785 seconds.
Apr 21 05:42:09 netcfg[2041]: DEBUG: Reading domain name returned via DHCP
Apr 21 05:42:09 netcfg[2041]: DEBUG: DHCP domain name is 'lan'
Apr 21 05:42:09 netcfg[2041]: DEBUG: Reading nameservers from /etc/resolv.conf
Apr 21 05:42:09 netcfg[2041]: DEBUG: Read nameserver 192.168.1.3
Apr 21 05:42:09 netcfg[2041]: DEBUG: State is now 1
Apr 21 05:42:09 netcfg[2041]: DEBUG: State is now 2
Apr 21 05:42:09 netcfg[2041]: DEBUG: State is now 5
Apr 21 05:42:09 netcfg[2041]: DEBUG: Using DNS to try and obtain default hostname
Apr 21 05:42:09 netcfg[2041]: DEBUG: Getting default hostname from rDNS lookup of autoconfigured address 192.168.1.75
Apr 21 05:42:09 netcfg[2041]: DEBUG: getnameinfo() returned -2 (Name or service not known)
Apr 21 05:42:09 netcfg[2041]: DEBUG: Getting default hostname from rDNS lookup of autoconfigured address fe80::428d:5cff:fe7f:bb90
Apr 21 05:42:09 netcfg[2041]: DEBUG: getnameinfo() returned -2 (Name or service not known)
Apr 21 05:42:16 netcfg[2041]: DEBUG: State is now 6
Apr 21 05:42:16 netcfg[2041]: DEBUG: Network config complete
Apr 21 05:42:16 netcfg[2041]: DEBUG: No interface given; clearing /etc/network/interfaces
Apr 21 05:42:16 netcfg[2041]: DEBUG: Writing informative header
Apr 21 05:42:16 netcfg[2041]: DEBUG: Success!
Apr 21 05:42:16 netcfg[2041]: DEBUG: Writing loopback interface
Apr 21 05:42:16 netcfg[2041]: DEBUG: Success!
Apr 21 05:42:16 netcfg[2041]: DEBUG: Writing DHCP stanza for enp0s31f6
Apr 21 05:42:16 netcfg[2041]: DEBUG: Success!
Apr 21 05:42:17 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:17 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:17 main-menu[310]: INFO: Menu item 'choose-mirror' selected
Apr 21 05:42:17 anna-install: Queueing udeb apt-mirror-setup for later installation
Apr 21 05:42:26 choose-mirror[2159]: DEBUG: command: wget --no-verbose http://us.archive.ubuntu.com/ubuntu/dists/zesty/Release -O - | grep -E '^(Suite|Codename|Architectures):'
Apr 21 05:42:26 kernel: [ 41.991545] random: fast init done
Apr 21 05:42:26 kernel: [ 42.024973] random: crng init done
Apr 21 05:42:26 choose-mirror[2159]: INFO: suite/codename set to: zesty/zesty
Apr 21 05:42:26 choose-mirror[2159]: DEBUG: command: wget --no-verbose http://us.archive.ubuntu.com/ubuntu//dists/zesty/main/binary-amd64/Release -O - | grep ^Architecture:
Apr 21 05:42:27 anna-install: Queueing udeb zesty-support for later installation
Apr 21 05:42:27 main-menu[310]: (process:2152): 2017-04-21 05:42:26 URL:http://us.archive.ubuntu.com/ubuntu/dists/zesty/Release [242125/242125] -> "-" [1]
Apr 21 05:42:27 main-menu[310]: (process:2152): 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty/main/binary-amd64/Release [95/95] -> "-" [1]
Apr 21 05:42:27 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:27 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:27 main-menu[310]: INFO: Menu item 'download-installer' selected
Apr 21 05:42:27 anna[2200]: 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty/Release [242125/242125] -> "/tmp/net-retriever-2212-Release" [1]
Apr 21 05:42:27 anna[2200]: 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty/Release.gpg [836/836] -> "/tmp/net-retriever-2212-Release.gpg" [1]
Apr 21 05:42:27 net-retriever: gpgv: Signature made Thu Apr 13 13:45:07 2017 UTC
Apr 21 05:42:27 net-retriever: gpgv: using RSA key
Apr 21 05:42:27 net-retriever: gpgv: Good signature from "Ubuntu Archive Automatic Signing Key (2012) <ftpmaster@ubuntu.com>"
Apr 21 05:42:27 anna[2200]: 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty/main/debian-installer/binary-amd64/Packages.xz [40168/40168] -> "/tmp/net-retriever-2212-Packages" [1]
Apr 21 05:42:27 anna[2200]: 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty/restricted/debian-installer/binary-amd64/Packages.xz [64/64] -> "/tmp/net-retriever-2212-Packages" [1]
Apr 21 05:42:27 anna[2200]: 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty-updates/Release [88301/88301] -> "/tmp/net-retriever-2275-Release" [1]
Apr 21 05:42:27 anna[2200]: 2017-04-21 05:42:27 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty-updates/Release.gpg [836/836] -> "/tmp/net-retriever-2275-Release.gpg" [1]
Apr 21 05:42:27 net-retriever: gpgv: Signature made Fri Apr 21 05:10:46 2017 UTC
Apr 21 05:42:27 net-retriever: gpgv: using RSA key
Apr 21 05:42:27 net-retriever: gpgv: Good signature from "Ubuntu Archive Automatic Signing Key (2012) <ftpmaster@ubuntu.com>"
Apr 21 05:42:28 anna[2200]: 2017-04-21 05:42:28 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty-updates/main/debian-installer/binary-amd64/Packages.xz [1428/1428] -> "/tmp/net-retriever-2275-Packages" [1]
Apr 21 05:42:28 anna[2200]: 2017-04-21 05:42:28 URL:http://us.archive.ubuntu.com/ubuntu//dists/zesty-updates/restricted/debian-installer/binary-amd64/Packages.xz [64/64] -> "/tmp/net-retriever-2275-Packages" [1]
Apr 21 05:42:28 anna[2200]: 2017-04-21 05:42:28 URL:http://security.ubuntu.com/ubuntu/dists/zesty-security/Release [88303/88303] -> "/tmp/net-retriever-2338-Release" [1]
Apr 21 05:42:28 anna[2200]: 2017-04-21 05:42:28 URL:http://security.ubuntu.com/ubuntu/dists/zesty-security/Release.gpg [836/836] -> "/tmp/net-retriever-2338-Release.gpg" [1]
Apr 21 05:42:28 net-retriever: gpgv: Signature made Fri Apr 21 05:10:46 2017 UTC
Apr 21 05:42:28 net-retriever: gpgv: using RSA key
Apr 21 05:42:28 net-retriever: gpgv: Good signature from "Ubuntu Archive Automatic Signing Key (2012) <ftpmaster@ubuntu.com>"
Apr 21 05:42:28 anna[2200]: 2017-04-21 05:42:28 URL:http://security.ubuntu.com/ubuntu/dists/zesty-security/main/debian-installer/binary-amd64/Packages.xz [920/920] -> "/tmp/net-retriever-2338-Packages" [1]
Apr 21 05:42:29 anna[2200]: 2017-04-21 05:42:29 URL:http://security.ubuntu.com/ubuntu/dists/zesty-security/restricted/debian-installer/binary-amd64/Packages.xz [64/64] -> "/tmp/net-retriever-2338-Packages" [1]
Apr 21 05:42:29 anna[2200]: DEBUG: retrieving apt-mirror-setup 1:0.104ubuntu5
Apr 21 05:42:29 anna[2200]: 2017-04-21 05:42:29 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/a/apt-setup/apt-mirror-setup_0.104ubuntu5_all.udeb [253940/253940] -> "/var/cache/anna/apt-mirror-setup_0.104ubuntu5_all.udeb" [1]
Apr 21 05:42:29 anna[2200]: DEBUG: retrieving apt-setup-udeb 1:0.104ubuntu5
Apr 21 05:42:29 anna[2200]: 2017-04-21 05:42:29 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/a/apt-setup/apt-setup-udeb_0.104ubuntu5_amd64.udeb [46204/46204] -> "/var/cache/anna/apt-setup-udeb_0.104ubuntu5_amd64.udeb" [1]
Apr 21 05:42:29 anna[2200]: DEBUG: retrieving base-installer 1.158ubuntu4
Apr 21 05:42:29 anna[2200]: 2017-04-21 05:42:29 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/b/base-installer/base-installer_1.158ubuntu4_amd64.udeb [142670/142670] -> "/var/cache/anna/base-installer_1.158ubuntu4_amd64.udeb" [1]
Apr 21 05:42:30 anna[2200]: DEBUG: retrieving block-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:30 anna[2200]: 2017-04-21 05:42:30 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/block-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [381148/381148] -> "/var/cache/anna/block-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:30 anna[2200]: DEBUG: retrieving bootstrap-base 1.158ubuntu4
Apr 21 05:42:30 anna[2200]: 2017-04-21 05:42:30 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/b/base-installer/bootstrap-base_1.158ubuntu4_amd64.udeb [100770/100770] -> "/var/cache/anna/bootstrap-base_1.158ubuntu4_amd64.udeb" [1]
Apr 21 05:42:30 anna[2200]: DEBUG: retrieving btrfs-progs-udeb 4.9.1-1ubuntu1
Apr 21 05:42:30 anna[2200]: 2017-04-21 05:42:30 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/b/btrfs-progs/btrfs-progs-udeb_4.9.1-1ubuntu1_amd64.udeb [283244/283244] -> "/var/cache/anna/btrfs-progs-udeb_4.9.1-1ubuntu1_amd64.udeb" [1]
Apr 21 05:42:30 anna[2200]: DEBUG: retrieving clock-setup 0.131ubuntu1
Apr 21 05:42:31 anna[2200]: 2017-04-21 05:42:31 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/c/clock-setup/clock-setup_0.131ubuntu1_amd64.udeb [63322/63322] -> "/var/cache/anna/clock-setup_0.131ubuntu1_amd64.udeb" [1]
Apr 21 05:42:31 anna[2200]: DEBUG: retrieving cryptsetup-udeb 2:1.7.2-0ubuntu1
Apr 21 05:42:31 anna[2200]: 2017-04-21 05:42:31 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/c/cryptsetup/cryptsetup-udeb_1.7.2-0ubuntu1_amd64.udeb [38578/38578] -> "/var/cache/anna/cryptsetup-udeb_1.7.2-0ubuntu1_amd64.udeb" [1]
Apr 21 05:42:31 anna[2200]: DEBUG: retrieving debootstrap-udeb 1.0.81ubuntu3
Apr 21 05:42:31 anna[2200]: 2017-04-21 05:42:31 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/d/debootstrap/debootstrap-udeb_1.0.81ubuntu3_all.udeb [19106/19106] -> "/var/cache/anna/debootstrap-udeb_1.0.81ubuntu3_all.udeb" [1]
Apr 21 05:42:31 anna[2200]: DEBUG: retrieving di-utils-mapdevfs 1.113ubuntu1
Apr 21 05:42:31 anna[2200]: 2017-04-21 05:42:31 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/d/debian-installer-utils/di-utils-mapdevfs_1.113ubuntu1_amd64.udeb [2428/2428] -> "/var/cache/anna/di-utils-mapdevfs_1.113ubuntu1_amd64.udeb" [1]
Apr 21 05:42:31 anna[2200]: DEBUG: retrieving disk-detect 1.117ubuntu4
Apr 21 05:42:31 anna[2200]: 2017-04-21 05:42:31 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/h/hw-detect/disk-detect_1.117ubuntu4_amd64.udeb [30970/30970] -> "/var/cache/anna/disk-detect_1.117ubuntu4_amd64.udeb" [1]
Apr 21 05:42:31 anna[2200]: DEBUG: retrieving dmsetup-udeb 2:1.02.136-1ubuntu5
Apr 21 05:42:32 anna[2200]: 2017-04-21 05:42:32 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/lvm2/dmsetup-udeb_1.02.136-1ubuntu5_amd64.udeb [40470/40470] -> "/var/cache/anna/dmsetup-udeb_1.02.136-1ubuntu5_amd64.udeb" [1]
Apr 21 05:42:32 anna[2200]: DEBUG: retrieving dosfstools-udeb 4.0-2ubuntu1
Apr 21 05:42:32 anna[2200]: 2017-04-21 05:42:32 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/d/dosfstools/dosfstools-udeb_4.0-2ubuntu1_amd64.udeb [42290/42290] -> "/var/cache/anna/dosfstools-udeb_4.0-2ubuntu1_amd64.udeb" [1]
Apr 21 05:42:32 anna[2200]: DEBUG: retrieving driver-injection-disk-detect 1.117ubuntu4
Apr 21 05:42:32 anna[2200]: 2017-04-21 05:42:32 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/h/hw-detect/driver-injection-disk-detect_1.117ubuntu4_all.udeb [13526/13526] -> "/var/cache/anna/driver-injection-disk-detect_1.117ubuntu4_all.udeb" [1]
Apr 21 05:42:32 anna[2200]: DEBUG: retrieving e2fsprogs-udeb 1.43.4-2
Apr 21 05:42:33 anna[2200]: 2017-04-21 05:42:33 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/e/e2fsprogs/e2fsprogs-udeb_1.43.4-2_amd64.udeb [300904/300904] -> "/var/cache/anna/e2fsprogs-udeb_1.43.4-2_amd64.udeb" [1]
Apr 21 05:42:33 anna[2200]: DEBUG: retrieving fdisk-udeb 2.29-1ubuntu2
Apr 21 05:42:33 anna[2200]: 2017-04-21 05:42:33 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/u/util-linux/fdisk-udeb_2.29-1ubuntu2_amd64.udeb [1097408/1097408] -> "/var/cache/anna/fdisk-udeb_2.29-1ubuntu2_amd64.udeb" [1]
Apr 21 05:42:33 anna[2200]: DEBUG: retrieving finish-install 2.59ubuntu1
Apr 21 05:42:33 anna[2200]: 2017-04-21 05:42:33 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/f/finish-install/finish-install_2.59ubuntu1_all.udeb [26572/26572] -> "/var/cache/anna/finish-install_2.59ubuntu1_all.udeb" [1]
Apr 21 05:42:33 anna[2200]: DEBUG: retrieving firewire-core-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:33 anna[2200]: 2017-04-21 05:42:33 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/firewire-core-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [64724/64724] -> "/var/cache/anna/firewire-core-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:33 anna[2200]: DEBUG: retrieving fs-core-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:35 anna[2200]: 2017-04-21 05:42:35 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/fs-core-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [1136048/1136048] -> "/var/cache/anna/fs-core-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:35 anna[2200]: DEBUG: retrieving fs-secondary-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:36 anna[2200]: 2017-04-21 05:42:36 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/fs-secondary-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [622490/622490] -> "/var/cache/anna/fs-secondary-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:36 anna[2200]: DEBUG: retrieving fuse-udeb 2.9.7-1ubuntu1
Apr 21 05:42:36 anna[2200]: 2017-04-21 05:42:36 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/f/fuse/fuse-udeb_2.9.7-1ubuntu1_amd64.udeb [17072/17072] -> "/var/cache/anna/fuse-udeb_2.9.7-1ubuntu1_amd64.udeb" [1]
Apr 21 05:42:36 anna[2200]: DEBUG: retrieving grub-installer 1.128ubuntu8
Apr 21 05:42:36 anna[2200]: 2017-04-21 05:42:36 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/g/grub-installer/grub-installer_1.128ubuntu8_amd64.udeb [251928/251928] -> "/var/cache/anna/grub-installer_1.128ubuntu8_amd64.udeb" [1]
Apr 21 05:42:37 anna[2200]: DEBUG: retrieving grub-mount-udeb 2.02~beta3-4ubuntu2
Apr 21 05:42:37 anna[2200]: 2017-04-21 05:42:37 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/g/grub2/grub-mount-udeb_2.02~beta3-4ubuntu2_amd64.udeb [358592/358592] -> "/var/cache/anna/grub-mount-udeb_2.02~beta3-4ubuntu2_amd64.udeb" [1]
Apr 21 05:42:37 anna[2200]: DEBUG: retrieving ipmi-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:37 anna[2200]: 2017-04-21 05:42:37 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/ipmi-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [56780/56780] -> "/var/cache/anna/ipmi-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:37 anna[2200]: DEBUG: retrieving irda-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:37 anna[2200]: 2017-04-21 05:42:37 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/irda-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [224180/224180] -> "/var/cache/anna/irda-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:37 anna[2200]: DEBUG: retrieving jfsutils-udeb 1.1.15-3
Apr 21 05:42:38 anna[2200]: 2017-04-21 05:42:38 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/j/jfsutils/jfsutils-udeb_1.1.15-3_amd64.udeb [173374/173374] -> "/var/cache/anna/jfsutils-udeb_1.1.15-3_amd64.udeb" [1]
Apr 21 05:42:38 anna[2200]: DEBUG: retrieving libbsd0-udeb 0.8.3-1
Apr 21 05:42:38 anna[2200]: 2017-04-21 05:42:38 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/libb/libbsd/libbsd0-udeb_0.8.3-1_amd64.udeb [33960/33960] -> "/var/cache/anna/libbsd0-udeb_0.8.3-1_amd64.udeb" [1]
Apr 21 05:42:38 anna[2200]: DEBUG: retrieving libcryptsetup4-udeb 2:1.7.2-0ubuntu1
Apr 21 05:42:38 anna[2200]: 2017-04-21 05:42:38 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/c/cryptsetup/libcryptsetup4-udeb_1.7.2-0ubuntu1_amd64.udeb [66398/66398] -> "/var/cache/anna/libcryptsetup4-udeb_1.7.2-0ubuntu1_amd64.udeb" [1]
Apr 21 05:42:38 anna[2200]: DEBUG: retrieving libdevmapper1.02.1-udeb 2:1.02.136-1ubuntu5
Apr 21 05:42:38 anna[2200]: 2017-04-21 05:42:38 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/lvm2/libdevmapper1.02.1-udeb_1.02.136-1ubuntu5_amd64.udeb [110452/110452] -> "/var/cache/anna/libdevmapper1.02.1-udeb_1.02.136-1ubuntu5_amd64.udeb" [1]
Apr 21 05:42:38 anna[2200]: DEBUG: retrieving libfuse2-udeb 2.9.7-1ubuntu1
Apr 21 05:42:39 anna[2200]: 2017-04-21 05:42:39 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/f/fuse/libfuse2-udeb_2.9.7-1ubuntu1_amd64.udeb [65728/65728] -> "/var/cache/anna/libfuse2-udeb_2.9.7-1ubuntu1_amd64.udeb" [1]
Apr 21 05:42:39 anna[2200]: DEBUG: retrieving liblzo2-2-udeb 2.08-1.2
Apr 21 05:42:39 anna[2200]: 2017-04-21 05:42:39 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/lzo2/liblzo2-2-udeb_2.08-1.2_amd64.udeb [40400/40400] -> "/var/cache/anna/liblzo2-2-udeb_2.08-1.2_amd64.udeb" [1]
Apr 21 05:42:39 anna[2200]: DEBUG: retrieving libparted-fs-resize0-udeb 3.2-17
Apr 21 05:42:39 anna[2200]: 2017-04-21 05:42:39 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/parted/libparted-fs-resize0-udeb_3.2-17_amd64.udeb [35278/35278] -> "/var/cache/anna/libparted-fs-resize0-udeb_3.2-17_amd64.udeb" [1]
Apr 21 05:42:39 anna[2200]: DEBUG: retrieving libparted2-udeb 3.2-17
Apr 21 05:42:39 anna[2200]: 2017-04-21 05:42:39 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/parted/libparted2-udeb_3.2-17_amd64.udeb [102448/102448] -> "/var/cache/anna/libparted2-udeb_3.2-17_amd64.udeb" [1]
Apr 21 05:42:39 anna[2200]: DEBUG: retrieving libpopt0-udeb 1.16-10
Apr 21 05:42:39 anna[2200]: 2017-04-21 05:42:39 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/popt/libpopt0-udeb_1.16-10_amd64.udeb [19784/19784] -> "/var/cache/anna/libpopt0-udeb_1.16-10_amd64.udeb" [1]
Apr 21 05:42:39 anna[2200]: DEBUG: retrieving libusb-1.0-0-udeb 2:1.0.21-1
Apr 21 05:42:39 anna[2200]: 2017-04-21 05:42:39 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/libu/libusb-1.0/libusb-1.0-0-udeb_1.0.21-1_amd64.udeb [35120/35120] -> "/var/cache/anna/libusb-1.0-0-udeb_1.0.21-1_amd64.udeb" [1]
Apr 21 05:42:39 anna[2200]: DEBUG: retrieving lilo-installer 1.49ubuntu1
Apr 21 05:42:40 anna[2200]: 2017-04-21 05:42:40 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/lilo-installer/lilo-installer_1.49ubuntu1_amd64.udeb [86898/86898] -> "/var/cache/anna/lilo-installer_1.49ubuntu1_amd64.udeb" [1]
Apr 21 05:42:40 anna[2200]: DEBUG: retrieving lvm2-udeb 2.02.167-1ubuntu5
Apr 21 05:42:40 anna[2200]: 2017-04-21 05:42:40 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/lvm2/lvm2-udeb_2.02.167-1ubuntu5_amd64.udeb [519082/519082] -> "/var/cache/anna/lvm2-udeb_2.02.167-1ubuntu5_amd64.udeb" [1]
Apr 21 05:42:40 anna[2200]: DEBUG: retrieving md-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:41 anna[2200]: 2017-04-21 05:42:41 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/md-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [265888/265888] -> "/var/cache/anna/md-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:41 anna[2200]: DEBUG: retrieving mdadm-udeb 3.4-4
Apr 21 05:42:41 anna[2200]: 2017-04-21 05:42:41 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/m/mdadm/mdadm-udeb_3.4-4_amd64.udeb [274600/274600] -> "/var/cache/anna/mdadm-udeb_3.4-4_amd64.udeb" [1]
Apr 21 05:42:41 anna[2200]: DEBUG: retrieving message-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:42 anna[2200]: 2017-04-21 05:42:42 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/message-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [200040/200040] -> "/var/cache/anna/message-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:42 anna[2200]: DEBUG: retrieving mkreiserfs-udeb 1:3.6.25-4
Apr 21 05:42:42 anna[2200]: 2017-04-21 05:42:42 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/r/reiserfsprogs/mkreiserfs-udeb_3.6.25-4_amd64.udeb [109852/109852] -> "/var/cache/anna/mkreiserfs-udeb_3.6.25-4_amd64.udeb" [1]
Apr 21 05:42:42 anna[2200]: DEBUG: retrieving nobootloader 1.47
Apr 21 05:42:42 anna[2200]: 2017-04-21 05:42:42 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/n/nobootloader/nobootloader_1.47_all.udeb [73996/73996] -> "/var/cache/anna/nobootloader_1.47_all.udeb" [1]
Apr 21 05:42:42 anna[2200]: DEBUG: retrieving ntfs-3g-udeb 1:2016.2.22AR.1-4
Apr 21 05:42:42 anna[2200]: 2017-04-21 05:42:42 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/n/ntfs-3g/ntfs-3g-udeb_2016.2.22AR.1-4_amd64.udeb [219368/219368] -> "/var/cache/anna/ntfs-3g-udeb_2016.2.22AR.1-4_amd64.udeb" [1]
Apr 21 05:42:42 anna[2200]: DEBUG: retrieving oem-config-check 17.04.9
Apr 21 05:42:43 anna[2200]: 2017-04-21 05:42:43 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/u/ubiquity/oem-config-check_17.04.9_all.udeb [3716/3716] -> "/var/cache/anna/oem-config-check_17.04.9_all.udeb" [1]
Apr 21 05:42:43 anna[2200]: DEBUG: retrieving open-iscsi-udeb 2.0.873+git0.3b4b4500-14ubuntu17
Apr 21 05:42:43 anna[2200]: 2017-04-21 05:42:43 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/o/open-iscsi/open-iscsi-udeb_2.0.873+git0.3b4b4500-14ubuntu17_amd64.udeb [273780/273780] -> "/var/cache/anna/open-iscsi-udeb_2.0.873+git0.3b4b4500-14ubuntu17_amd64.udeb" [1]
Apr 21 05:42:43 anna[2200]: DEBUG: retrieving os-prober-udeb 1.74ubuntu1
Apr 21 05:42:43 anna[2200]: 2017-04-21 05:42:43 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/o/os-prober/os-prober-udeb_1.74ubuntu1_amd64.udeb [14818/14818] -> "/var/cache/anna/os-prober-udeb_1.74ubuntu1_amd64.udeb" [1]
Apr 21 05:42:43 anna[2200]: DEBUG: retrieving parport-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:43 anna[2200]: 2017-04-21 05:42:43 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/parport-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [30996/30996] -> "/var/cache/anna/parport-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:43 anna[2200]: DEBUG: retrieving partconf-mkfstab 1.50
Apr 21 05:42:43 anna[2200]: 2017-04-21 05:42:43 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partconf/partconf-mkfstab_1.50_amd64.udeb [5952/5952] -> "/var/cache/anna/partconf-mkfstab_1.50_amd64.udeb" [1]
Apr 21 05:42:43 anna[2200]: DEBUG: retrieving parted-udeb 3.2-17
Apr 21 05:42:44 anna[2200]: 2017-04-21 05:42:44 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/parted/parted-udeb_3.2-17_amd64.udeb [24234/24234] -> "/var/cache/anna/parted-udeb_3.2-17_amd64.udeb" [1]
Apr 21 05:42:44 anna[2200]: DEBUG: retrieving partman-auto 134ubuntu6
Apr 21 05:42:44 anna[2200]: 2017-04-21 05:42:44 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-auto/partman-auto_134ubuntu6_amd64.udeb [98292/98292] -> "/var/cache/anna/partman-auto_134ubuntu6_amd64.udeb" [1]
Apr 21 05:42:44 anna[2200]: DEBUG: retrieving partman-auto-crypto 22ubuntu1
Apr 21 05:42:44 anna[2200]: 2017-04-21 05:42:44 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-auto-crypto/partman-auto-crypto_22ubuntu1_all.udeb [6348/6348] -> "/var/cache/anna/partman-auto-crypto_22ubuntu1_all.udeb" [1]
Apr 21 05:42:44 anna[2200]: DEBUG: retrieving partman-auto-loop 0ubuntu21
Apr 21 05:42:44 anna[2200]: 2017-04-21 05:42:44 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-auto-loop/partman-auto-loop_0ubuntu21_all.udeb [4216/4216] -> "/var/cache/anna/partman-auto-loop_0ubuntu21_all.udeb" [1]
Apr 21 05:42:44 anna[2200]: DEBUG: retrieving partman-auto-lvm 59ubuntu3
Apr 21 05:42:45 anna[2200]: 2017-04-21 05:42:45 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-auto-lvm/partman-auto-lvm_59ubuntu3_all.udeb [101474/101474] -> "/var/cache/anna/partman-auto-lvm_59ubuntu3_all.udeb" [1]
Apr 21 05:42:45 anna[2200]: DEBUG: retrieving partman-auto-raid 30ubuntu1
Apr 21 05:42:45 anna[2200]: 2017-04-21 05:42:45 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-auto-raid/partman-auto-raid_30ubuntu1_all.udeb [20410/20410] -> "/var/cache/anna/partman-auto-raid_30ubuntu1_all.udeb" [1]
Apr 21 05:42:45 anna[2200]: DEBUG: retrieving partman-base 187ubuntu3
Apr 21 05:42:45 anna[2200]: 2017-04-21 05:42:45 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-base/partman-base_187ubuntu3_amd64.udeb [172058/172058] -> "/var/cache/anna/partman-base_187ubuntu3_amd64.udeb" [1]
Apr 21 05:42:45 anna[2200]: DEBUG: retrieving partman-basicfilesystems 127ubuntu2
Apr 21 05:42:46 anna[2200]: 2017-04-21 05:42:46 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-basicfilesystems/partman-basicfilesystems_127ubuntu2_amd64.udeb [184584/184584] -> "/var/cache/anna/partman-basicfilesystems_127ubuntu2_amd64.udeb" [1]
Apr 21 05:42:46 anna[2200]: DEBUG: retrieving partman-basicmethods 61
Apr 21 05:42:46 anna[2200]: 2017-04-21 05:42:46 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-basicmethods/partman-basicmethods_61_all.udeb [21110/21110] -> "/var/cache/anna/partman-basicmethods_61_all.udeb" [1]
Apr 21 05:42:46 anna[2200]: DEBUG: retrieving partman-btrfs 29ubuntu1
Apr 21 05:42:47 anna[2200]: 2017-04-21 05:42:47 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-btrfs/partman-btrfs_29ubuntu1_all.udeb [9916/9916] -> "/var/cache/anna/partman-btrfs_29ubuntu1_all.udeb" [1]
Apr 21 05:42:47 anna[2200]: DEBUG: retrieving partman-crypto 86ubuntu1
Apr 21 05:42:47 anna[2200]: 2017-04-21 05:42:47 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-crypto/partman-crypto_86ubuntu1_amd64.udeb [312546/312546] -> "/var/cache/anna/partman-crypto_86ubuntu1_amd64.udeb" [1]
Apr 21 05:42:47 anna[2200]: DEBUG: retrieving partman-crypto-dm 86ubuntu1
Apr 21 05:42:47 anna[2200]: 2017-04-21 05:42:47 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-crypto/partman-crypto-dm_86ubuntu1_all.udeb [1360/1360] -> "/var/cache/anna/partman-crypto-dm_86ubuntu1_all.udeb" [1]
Apr 21 05:42:47 anna[2200]: DEBUG: retrieving partman-efi 71ubuntu1
Apr 21 05:42:48 anna[2200]: 2017-04-21 05:42:48 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-efi/partman-efi_71ubuntu1_amd64.udeb [39458/39458] -> "/var/cache/anna/partman-efi_71ubuntu1_amd64.udeb" [1]
Apr 21 05:42:48 anna[2200]: DEBUG: retrieving partman-ext3 86ubuntu1
Apr 21 05:42:48 anna[2200]: 2017-04-21 05:42:48 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-ext3/partman-ext3_86ubuntu1_all.udeb [85920/85920] -> "/var/cache/anna/partman-ext3_86ubuntu1_all.udeb" [1]
Apr 21 05:42:48 anna[2200]: DEBUG: retrieving partman-iscsi 40ubuntu3
Apr 21 05:42:48 anna[2200]: 2017-04-21 05:42:48 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-iscsi/partman-iscsi_40ubuntu3_all.udeb [29866/29866] -> "/var/cache/anna/partman-iscsi_40ubuntu3_all.udeb" [1]
Apr 21 05:42:49 anna[2200]: DEBUG: retrieving partman-jfs 47
Apr 21 05:42:49 anna[2200]: 2017-04-21 05:42:49 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-jfs/partman-jfs_47_all.udeb [31484/31484] -> "/var/cache/anna/partman-jfs_47_all.udeb" [1]
Apr 21 05:42:49 anna[2200]: DEBUG: retrieving partman-lvm 113
Apr 21 05:42:49 anna[2200]: 2017-04-21 05:42:49 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-lvm/partman-lvm_113_all.udeb [310650/310650] -> "/var/cache/anna/partman-lvm_113_all.udeb" [1]
Apr 21 05:42:50 anna[2200]: DEBUG: retrieving partman-md 77
Apr 21 05:42:50 anna[2200]: 2017-04-21 05:42:50 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-md/partman-md_77_all.udeb [206522/206522] -> "/var/cache/anna/partman-md_77_all.udeb" [1]
Apr 21 05:42:50 anna[2200]: DEBUG: retrieving partman-partitioning 114ubuntu2
Apr 21 05:42:51 anna[2200]: 2017-04-21 05:42:51 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-partitioning/partman-partitioning_114ubuntu2_amd64.udeb [190722/190722] -> "/var/cache/anna/partman-partitioning_114ubuntu2_amd64.udeb" [1]
Apr 21 05:42:51 anna[2200]: DEBUG: retrieving partman-swapfile 1
Apr 21 05:42:51 anna[2200]: 2017-04-21 05:42:51 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-swapfile/partman-swapfile_1_all.udeb [2176/2176] -> "/var/cache/anna/partman-swapfile_1_all.udeb" [1]
Apr 21 05:42:51 anna[2200]: DEBUG: retrieving partman-target 98ubuntu1
Apr 21 05:42:51 anna[2200]: 2017-04-21 05:42:51 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-target/partman-target_98ubuntu1_all.udeb [138870/138870] -> "/var/cache/anna/partman-target_98ubuntu1_all.udeb" [1]
Apr 21 05:42:52 anna[2200]: DEBUG: retrieving partman-utils 187ubuntu3
Apr 21 05:42:52 anna[2200]: 2017-04-21 05:42:52 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-base/partman-utils_187ubuntu3_amd64.udeb [3572/3572] -> "/var/cache/anna/partman-utils_187ubuntu3_amd64.udeb" [1]
Apr 21 05:42:52 anna[2200]: DEBUG: retrieving partman-xfs 58
Apr 21 05:42:52 anna[2200]: 2017-04-21 05:42:52 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/partman-xfs/partman-xfs_58_all.udeb [5600/5600] -> "/var/cache/anna/partman-xfs_58_all.udeb" [1]
Apr 21 05:42:52 anna[2200]: DEBUG: retrieving pata-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:52 anna[2200]: 2017-04-21 05:42:52 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/pata-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [120934/120934] -> "/var/cache/anna/pata-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:52 anna[2200]: DEBUG: retrieving pcmcia-storage-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:53 anna[2200]: 2017-04-21 05:42:53 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/pcmcia-storage-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [65108/65108] -> "/var/cache/anna/pcmcia-storage-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:53 anna[2200]: DEBUG: retrieving pkgsel 0.43ubuntu2
Apr 21 05:42:53 anna[2200]: 2017-04-21 05:42:53 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/p/pkgsel/pkgsel_0.43ubuntu2_all.udeb [42888/42888] -> "/var/cache/anna/pkgsel_0.43ubuntu2_all.udeb" [1]
Apr 21 05:42:53 anna[2200]: DEBUG: retrieving plip-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:53 anna[2200]: 2017-04-21 05:42:53 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/plip-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [8096/8096] -> "/var/cache/anna/plip-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:53 anna[2200]: DEBUG: retrieving ppp-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:53 anna[2200]: 2017-04-21 05:42:53 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/ppp-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [24620/24620] -> "/var/cache/anna/ppp-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:53 anna[2200]: DEBUG: retrieving rdate-udeb 1:1.2-6
Apr 21 05:42:53 anna[2200]: 2017-04-21 05:42:53 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/r/rdate/rdate-udeb_1.2-6_amd64.udeb [6810/6810] -> "/var/cache/anna/rdate-udeb_1.2-6_amd64.udeb" [1]
Apr 21 05:42:53 anna[2200]: DEBUG: retrieving rescue-mode 1.62
Apr 21 05:42:54 anna[2200]: 2017-04-21 05:42:54 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/r/rescue/rescue-mode_1.62_all.udeb [146192/146192] -> "/var/cache/anna/rescue-mode_1.62_all.udeb" [1]
Apr 21 05:42:54 anna[2200]: DEBUG: retrieving sata-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:54 anna[2200]: 2017-04-21 05:42:54 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/sata-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [93008/93008] -> "/var/cache/anna/sata-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:54 anna[2200]: DEBUG: retrieving scsi-firmware 1.164
Apr 21 05:42:55 anna[2200]: 2017-04-21 05:42:55 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux-firmware/scsi-firmware_1.164_all.udeb [330344/330344] -> "/var/cache/anna/scsi-firmware_1.164_all.udeb" [1]
Apr 21 05:42:55 anna[2200]: DEBUG: retrieving scsi-modules-4.10.0-19-generic-di 4.10.0-19.21
Apr 21 05:42:56 anna[2200]: 2017-04-21 05:42:56 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/l/linux/scsi-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb [2262816/2262816] -> "/var/cache/anna/scsi-modules-4.10.0-19-generic-di_4.10.0-19.21_amd64.udeb" [1]
Apr 21 05:42:56 anna[2200]: DEBUG: retrieving tzsetup-udeb 1:0.81ubuntu1
Apr 21 05:42:57 anna[2200]: 2017-04-21 05:42:57 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/t/tzsetup/tzsetup-udeb_0.81ubuntu1_all.udeb [72672/72672] -> "/var/cache/anna/tzsetup-udeb_0.81ubuntu1_all.udeb" [1]
Apr 21 05:42:57 anna[2200]: DEBUG: retrieving usbutils-udeb 1:007-4
Apr 21 05:42:57 anna[2200]: 2017-04-21 05:42:57 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/u/usbutils/usbutils-udeb_007-4_amd64.udeb [222800/222800] -> "/var/cache/anna/usbutils-udeb_007-4_amd64.udeb" [1]
Apr 21 05:42:57 anna[2200]: DEBUG: retrieving user-setup-udeb 1.63ubuntu4
Apr 21 05:42:58 anna[2200]: 2017-04-21 05:42:58 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/u/user-setup/user-setup-udeb_1.63ubuntu4_all.udeb [189380/189380] -> "/var/cache/anna/user-setup-udeb_1.63ubuntu4_all.udeb" [1]
Apr 21 05:42:58 anna[2200]: DEBUG: retrieving xfsprogs-udeb 4.3.0+nmu1ubuntu4
Apr 21 05:42:58 anna[2200]: 2017-04-21 05:42:58 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/x/xfsprogs/xfsprogs-udeb_4.3.0+nmu1ubuntu4_amd64.udeb [140968/140968] -> "/var/cache/anna/xfsprogs-udeb_4.3.0+nmu1ubuntu4_amd64.udeb" [1]
Apr 21 05:42:59 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:59 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:59 main-menu[310]: INFO: Menu item 'driver-injection-disk-detect' selected
Apr 21 05:42:59 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:59 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:42:59 main-menu[310]: INFO: Menu item 'clock-setup' selected
Apr 21 05:42:59 clock-setup: rdate called using NTP server ntp.ubuntu.com.
Apr 21 05:43:00 clock-setup: Fri Apr 21 05:43:00 UTC 2017
Apr 21 05:43:00 clock-setup: rdate: adjust local clock by 0.433467 seconds
Apr 21 05:43:08 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:43:08 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:43:08 main-menu[310]: INFO: Menu item 'disk-detect' selected
Apr 21 05:43:08 anna-install: Installing mmc-modules
Apr 21 05:43:08 disk-detect: insmod /lib/modules/4.10.0-19-generic/kernel/drivers/scsi/device_handler/scsi_dh_rdac.ko
Apr 21 05:43:08 kernel: [ 83.690943] rdac: device handler registered
Apr 21 05:43:08 disk-detect: insmod /lib/modules/4.10.0-19-generic/kernel/drivers/scsi/device_handler/scsi_dh_hp_sw.ko
Apr 21 05:43:08 disk-detect: insmod /lib/modules/4.10.0-19-generic/kernel/drivers/scsi/device_handler/scsi_dh_emc.ko
Apr 21 05:43:08 kernel: [ 83.692157] hp_sw: device handler registered
Apr 21 05:43:08 kernel: [ 83.693350] emc: device handler registered
Apr 21 05:43:08 kernel: [ 83.694592] alua: device handler registered
Apr 21 05:43:08 disk-detect: insmod /lib/modules/4.10.0-19-generic/kernel/drivers/scsi/device_handler/scsi_dh_alua.ko
Apr 21 05:43:09 kernel: [ 83.765772] parport_pc 00:01: reported by Plug and Play ACPI
Apr 21 05:43:09 kernel: [ 83.765812] parport0: PC-style at 0x378, irq 5 [PCSPP,TRISTATE,EPP]
Apr 21 05:43:09 kernel: [ 83.772595] ahci 0000:00:17.0: version 3.0
Apr 21 05:43:09 kernel: [ 83.772797] ahci 0000:00:17.0: AHCI 0001.0301 32 slots 6 ports 6 Gbps 0x3f impl SATA mode
Apr 21 05:43:09 kernel: [ 83.772799] ahci 0000:00:17.0: flags: 64bit ncq sntf pm led clo only pio slum part ems deso sadm sds apst
Apr 21 05:43:09 kernel: [ 83.774578] nvme nvme0: pci function 0000:05:00.0
Apr 21 05:43:09 net/hw-detect.hotplug: Detected hotpluggable network interface enp0s31f6
Apr 21 05:43:09 net/hw-detect.hotplug: Detected hotpluggable network interface lo
Apr 21 05:43:09 kernel: [ 83.886027] nvme0n1: p1
Apr 21 05:43:09 kernel: [ 84.075514] scsi host0: ahci
Apr 21 05:43:09 kernel: [ 84.075662] scsi host1: ahci
Apr 21 05:43:09 kernel: [ 84.075868] scsi host2: ahci
Apr 21 05:43:09 kernel: [ 84.075944] scsi host3: ahci
Apr 21 05:43:09 kernel: [ 84.075997] scsi host4: ahci
Apr 21 05:43:09 kernel: [ 84.076042] scsi host5: ahci
Apr 21 05:43:09 kernel: [ 84.076077] ata1: SATA max UDMA/133 abar m2048@0xdf14b000 port 0xdf14b100 irq 129
Apr 21 05:43:09 kernel: [ 84.076080] ata2: SATA max UDMA/133 abar m2048@0xdf14b000 port 0xdf14b180 irq 129
Apr 21 05:43:09 kernel: [ 84.076082] ata3: SATA max UDMA/133 abar m2048@0xdf14b000 port 0xdf14b200 irq 129
Apr 21 05:43:09 kernel: [ 84.076083] ata4: SATA max UDMA/133 abar m2048@0xdf14b000 port 0xdf14b280 irq 129
Apr 21 05:43:09 kernel: [ 84.076084] ata5: SATA max UDMA/133 abar m2048@0xdf14b000 port 0xdf14b300 irq 129
Apr 21 05:43:09 kernel: [ 84.076085] ata6: SATA max UDMA/133 abar m2048@0xdf14b000 port 0xdf14b380 irq 129
Apr 21 05:43:09 kernel: [ 84.389139] ata6: SATA link down (SStatus 4 SControl 300)
Apr 21 05:43:09 kernel: [ 84.389155] ata1: SATA link down (SStatus 4 SControl 300)
Apr 21 05:43:09 kernel: [ 84.389168] ata5: SATA link down (SStatus 4 SControl 300)
Apr 21 05:43:09 kernel: [ 84.389182] ata4: SATA link down (SStatus 4 SControl 300)
Apr 21 05:43:09 kernel: [ 84.389193] ata2: SATA link down (SStatus 4 SControl 300)
Apr 21 05:43:09 kernel: [ 84.389205] ata3: SATA link down (SStatus 4 SControl 300)
Apr 21 05:43:10 check-missing-firmware: looking at dmesg again, restarting from \[ 9.299511\]
Apr 21 05:43:10 check-missing-firmware: timestamp found, truncating dmesg accordingly
Apr 21 05:43:10 check-missing-firmware: saving timestamp for a later use: [ 84.389205]
Apr 21 05:43:10 check-missing-firmware: /dev/.udev/firmware-missing does not exist, skipping
Apr 21 05:43:10 check-missing-firmware: /run/udev/firmware-missing does not exist, skipping
Apr 21 05:43:10 check-missing-firmware: no missing firmware in loaded kernel modules
Apr 21 05:43:10 anna-install: Installing mdadm-udeb
Apr 21 05:43:10 kernel: [ 85.566661] raid6: sse2x1 gen() 13186 MB/s
Apr 21 05:43:10 kernel: [ 85.614661] raid6: sse2x1 xor() 9824 MB/s
Apr 21 05:43:10 kernel: [ 85.662660] raid6: sse2x2 gen() 16241 MB/s
Apr 21 05:43:11 kernel: [ 85.710664] raid6: sse2x2 xor() 11313 MB/s
Apr 21 05:43:11 kernel: [ 85.758661] raid6: sse2x4 gen() 17309 MB/s
Apr 21 05:43:11 kernel: [ 85.806663] raid6: sse2x4 xor() 12784 MB/s
Apr 21 05:43:11 kernel: [ 85.854659] raid6: avx2x1 gen() 26170 MB/s
Apr 21 05:43:11 kernel: [ 85.902661] raid6: avx2x1 xor() 18777 MB/s
Apr 21 05:43:11 kernel: [ 85.950661] raid6: avx2x2 gen() 29860 MB/s
Apr 21 05:43:11 kernel: [ 85.998661] raid6: avx2x2 xor() 20740 MB/s
Apr 21 05:43:11 kernel: [ 86.046660] raid6: avx2x4 gen() 31184 MB/s
Apr 21 05:43:11 kernel: [ 86.094658] raid6: avx2x4 xor() 23988 MB/s
Apr 21 05:43:11 kernel: [ 86.094659] raid6: using algorithm avx2x4 gen() 31184 MB/s
Apr 21 05:43:11 kernel: [ 86.094659] raid6: .... xor() 23988 MB/s, rmw enabled
Apr 21 05:43:11 kernel: [ 86.094659] raid6: using avx2x2 recovery algorithm
Apr 21 05:43:11 kernel: [ 86.095305] xor: automatically using best checksumming function avx
Apr 21 05:43:11 kernel: [ 86.095890] async_tx: api initialized (async)
Apr 21 05:43:11 disk-detect: No Intel/DDF RAID disks detected.
Apr 21 05:43:11 anna-install: Installing dmraid-udeb
Apr 21 05:43:11 anna[6257]: DEBUG: retrieving dmraid-udeb 1.0.0.rc16-4.2ubuntu3
Apr 21 05:43:11 anna[6257]: 2017-04-21 05:43:11 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/d/dmraid/dmraid-udeb_1.0.0.rc16-4.2ubuntu3_amd64.udeb [10226/10226] -> "/var/cache/anna/dmraid-udeb_1.0.0.rc16-4.2ubuntu3_amd64.udeb" [1]
Apr 21 05:43:11 anna[6257]: DEBUG: retrieving kpartx-udeb 0.6.4-3ubuntu3
Apr 21 05:43:11 anna[6257]: 2017-04-21 05:43:11 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/m/multipath-tools/kpartx-udeb_0.6.4-3ubuntu3_amd64.udeb [16436/16436] -> "/var/cache/anna/kpartx-udeb_0.6.4-3ubuntu3_amd64.udeb" [1]
Apr 21 05:43:11 anna[6257]: DEBUG: retrieving libdmraid1.0.0.rc16-udeb 1.0.0.rc16-4.2ubuntu3
Apr 21 05:43:11 anna[6257]: 2017-04-21 05:43:11 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/d/dmraid/libdmraid1.0.0.rc16-udeb_1.0.0.rc16-4.2ubuntu3_amd64.udeb [79790/79790] -> "/var/cache/anna/libdmraid1.0.0.rc16-udeb_1.0.0.rc16-4.2ubuntu3_amd64.udeb" [1]
Apr 21 05:43:11 disk-detect: No Serial ATA RAID disks detected
Apr 21 05:43:12 check-missing-firmware: looking at dmesg again, restarting from \[ 84.389205\]
Apr 21 05:43:12 check-missing-firmware: timestamp found, truncating dmesg accordingly
Apr 21 05:43:12 check-missing-firmware: saving timestamp for a later use: [ 86.095890]
Apr 21 05:43:12 check-missing-firmware: /dev/.udev/firmware-missing does not exist, skipping
Apr 21 05:43:12 check-missing-firmware: /run/udev/firmware-missing does not exist, skipping
Apr 21 05:43:12 check-missing-firmware: no missing firmware in loaded kernel modules
Apr 21 05:43:12 main-menu[310]: (process:5812): unknown udeb mmc-modules
Apr 21 05:43:12 main-menu[310]: (process:5812): modprobe: invalid option -- 'l'
Apr 21 05:43:13 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:43:13 main-menu[310]: INFO: Falling back to the package description for brltty-udeb
Apr 21 05:43:13 main-menu[310]: INFO: Menu item 'rescue-mode' selected
Apr 21 05:43:13 main-menu[310]: INFO: Falling back to the package description for fat-modules-4.10.0-19-generic-di
Apr 21 05:43:13 main-menu[310]: INFO: Falling back to the package description for fat-modules-4.10.0-19-generic-di
Apr 21 05:43:13 main-menu[310]: WARNING **: Unable to set title for fdisk-udeb.
Apr 21 05:43:13 main-menu[310]: WARNING **: Unable to set title for parted-udeb.
Apr 21 05:43:13 rescue: modprobe: FATAL: Module ext2 not found in directory /lib/modules/4.10.0-19-generic
Apr 21 05:43:13 rescue: modprobe: FATAL: Module ext3 not found in directory /lib/modules/4.10.0-19-generic
Apr 21 05:43:13 kernel: [ 87.936929] Btrfs loaded, crc32c=crc32c-intel
Apr 21 05:43:13 kernel: [ 87.941448] JFS: nTxBlock = 8192, nTxLock = 65536
Apr 21 05:43:13 kernel: [ 87.951854] SGI XFS with ACLs, security attributes, realtime, no debug enabled
Apr 21 05:43:13 rescue: modprobe: FATAL: Module md not found in directory /lib/modules/4.10.0-19-generic
Apr 21 05:43:13 rescue: modprobe: FATAL: Module lvm-mod not found in directory /lib/modules/4.10.0-19-generic
Apr 21 05:43:13 rescue: File descriptor 3 (pipe:[251]) leaked on pvscan invocation. Parent PID 6469: log-output
Apr 21 05:43:13 rescue: File descriptor 4 (/dev/pts/0) leaked on pvscan invocation. Parent PID 6469: log-output
Apr 21 05:43:13 rescue: File descriptor 5 (/dev/pts/0) leaked on pvscan invocation. Parent PID 6469: log-output
Apr 21 05:43:13 rescue: File descriptor 6 (/dev/pts/0) leaked on pvscan invocation. Parent PID 6469: log-output
Apr 21 05:43:13 rescue: No matching physical volumes found
Apr 21 05:43:13 rescue: File descriptor 3 (pipe:[251]) leaked on vgscan invocation. Parent PID 6471: log-output
Apr 21 05:43:13 rescue: File descriptor 4 (/dev/pts/0) leaked on vgscan invocation. Parent PID 6471: log-output
Apr 21 05:43:13 rescue: File descriptor 5 (/dev/pts/0) leaked on vgscan invocation. Parent PID 6471: log-output
Apr 21 05:43:13 rescue: File descriptor 6 (/dev/pts/0) leaked on vgscan invocation. Parent PID 6471: log-output
Apr 21 05:43:13 rescue: Reading all physical volumes. This may take a while...
Apr 21 05:43:13 rescue-mode: partitions found: /dev/nvme0n1p1
Apr 21 05:43:23 rescue-mode: selected root device '/dev/nvme0n1p1'
Apr 21 05:43:23 rescue: umount: can't umount /target: Invalid argument
Apr 21 05:43:23 kernel: [ 97.757822] EXT4-fs (nvme0n1p1): couldn't mount as ext3 due to feature incompatibilities
Apr 21 05:43:23 kernel: [ 97.757967] EXT4-fs (nvme0n1p1): couldn't mount as ext2 due to feature incompatibilities
Apr 21 05:43:23 kernel: [ 98.085345] EXT4-fs (nvme0n1p1): recovery complete
Apr 21 05:43:23 kernel: [ 98.087887] EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null)
Apr 21 05:43:49 init: starting pid 277, tty '/dev/tty2': '-/bin/sh'
Apr 21 05:45:08 grub-installer: Installing for i386-pc platform.
Apr 21 05:45:10 grub-installer: Installation finished. No error reported.
Apr 21 05:45:21 grub-installer: Installing for i386-pc platform.
Apr 21 05:45:22 grub-installer: grub-install: warning: File system `ext2' doesn't support embedding.
Apr 21 05:45:22 grub-installer: grub-install: warning: Embedding is not possible. GRUB can only be installed in this setup by using blocklists. However, blocklists are UNRELIABLE and their use is discouraged..
Apr 21 05:45:22 grub-installer: grub-install: error: will not proceed with blocklists.
Apr 21 05:45:50 rescue-mode: partitions found: /dev/nvme0n1p1
Apr 21 05:47:18 anna-install: Installing openssh-client-udeb
Apr 21 05:47:18 anna[6783]: DEBUG: retrieving openssh-client-udeb 1:7.4p1-10
Apr 21 05:47:18 anna[6783]: 2017-04-21 05:47:18 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/o/openssh/openssh-client-udeb_7.4p1-10_amd64.udeb [279694/279694] -> "/var/cache/anna/openssh-client-udeb_7.4p1-10_amd64.udeb" [1]
Apr 21 05:47:18 anna[6783]: (Reading database...)
Apr 21 05:47:18 anna[6783]: (Updating database...)
Apr 21 05:47:48 anna-install: Installing openssh-client-udeb
Apr 21 05:48:33 anna-install: Installing openssh-server-udeb
Apr 21 05:48:33 anna[6843]: DEBUG: retrieving openssh-server-udeb 1:7.4p1-10
Apr 21 05:48:33 anna[6843]: 2017-04-21 05:48:33 URL:http://us.archive.ubuntu.com/ubuntu//pool/main/o/openssh/openssh-server-udeb_7.4p1-10_amd64.udeb [285086/285086] -> "/var/cache/anna/openssh-server-udeb_7.4p1-10_amd64.udeb" [1]
Apr 21 05:48:33 anna[6843]: (Reading database...)
Apr 21 05:48:33 anna[6843]: (Updating database...)
Apr 21 05:48:33 anna[6843]: (Reading database...)
Apr 21 05:48:33 anna[6843]: (Updating database...)
Apr 21 05:48:34 sshd[6887]: Server listening on 0.0.0.0 port 22.
Apr 21 05:48:34 sshd[6887]: Server listening on :: port 22.
Apr 21 05:48:50 rescue-mode: selected root device '/dev/nvme0n1p1'
Apr 21 05:48:51 kernel: [ 425.788498] EXT4-fs (nvme0n1p1): couldn't mount as ext3 due to feature incompatibilities
Apr 21 05:48:51 kernel: [ 425.788721] EXT4-fs (nvme0n1p1): couldn't mount as ext2 due to feature incompatibilities
Apr 21 05:48:51 kernel: [ 425.796305] EXT4-fs (nvme0n1p1): mounted filesystem with ordered data mode. Opts: (null)
Apr 21 05:50:09 sshd[6946]: rexec line 31: Deprecated option RSAAuthentication
Apr 21 05:50:10 sshd[6946]: reprocess config line 31: Deprecated option RSAAuthentication
Apr 21 05:50:10 sshd[6946]: Accepted publickey for root from 192.168.1.199 port 43186 ssh2: RSA SHA256:BZtXL01tQiKBBXp+S/Qxrk2c/5BO63q9RieU/eWlgcs
|