1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689 | Sep 20 14:50:40 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="1679" x-info="http://www.rsyslog.com"] start
Sep 20 14:50:40 localhost systemd[1]: Starting udev Coldplug all Devices...
Sep 20 14:50:40 localhost systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 20 14:50:40 localhost systemd[1]: Mounting Configuration File System...
Sep 20 14:50:40 localhost systemd[1]: Starting Apply Kernel Variables...
Sep 20 14:50:40 localhost systemd[1]: Mounting FUSE Control File System...
Sep 20 14:50:40 localhost systemd[1]: Mounted Configuration File System.
Sep 20 14:50:40 localhost rsyslogd-2222: command 'KLogPermitNonKernelFacility' is currently not permitted - did you already set it via a RainerScript command (v6+ config)? [v8.16.0 try http://www.rsyslog.com/e/2222 ]
Sep 20 14:50:40 localhost rsyslogd-2307: warning: ~ action is deprecated, consider using the 'stop' statement instead [v8.16.0 try http://www.rsyslog.com/e/2307 ]
Sep 20 14:50:40 localhost rsyslogd: rsyslogd's groupid changed to 114
Sep 20 14:50:40 localhost rsyslogd: rsyslogd's userid changed to 108
Sep 20 14:50:40 localhost systemd[1]: Mounted FUSE Control File System.
Sep 20 14:50:40 localhost systemd[1]: Started Apply Kernel Variables.
Sep 20 14:50:40 localhost systemd[1]: Started Create Static Device Nodes in /dev.
Sep 20 14:50:40 localhost systemd[1]: Reached target Local File Systems (Pre).
Sep 20 14:50:40 localhost systemd[1]: Mounting /tmp...
Sep 20 14:50:40 localhost systemd[1]: var-lib-sudo.mount: Directory /var/lib/sudo to mount over is not empty, mounting anyway.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/sudo...
Sep 20 14:50:40 localhost systemd[1]: Mounting /mnt...
Sep 20 14:50:40 localhost systemd[1]: Starting udev Kernel Device Manager...
Sep 20 14:50:40 localhost systemd[1]: Mounted /tmp.
Sep 20 14:50:40 localhost systemd[1]: Mounted /mnt.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/sudo.
Sep 20 14:50:40 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 14:50:40 localhost systemd[1]: Started udev Kernel Device Manager.
Sep 20 14:50:40 localhost systemd[1]: Started udev Coldplug all Devices.
Sep 20 14:50:40 localhost systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/cache/apparmor...
Sep 20 14:50:40 localhost systemd[1]: Mounting /root...
Sep 20 14:50:40 localhost systemd[1]: Mounting /snap...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/misc...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/waagent...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/systemd/rfkill...
Sep 20 14:50:40 localhost systemd[1]: var-lib-initramfs\x2dtools.mount: Directory /var/lib/initramfs-tools to mount over is not empty, mounting anyway.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/initramfs-tools...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/tmp...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/logrotate...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/cloud...
Sep 20 14:50:40 localhost systemd[1]: var-lib-snapd.mount: Directory /var/lib/snapd to mount over is not empty, mounting anyway.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/snapd...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/dhcp...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/console-conf...
Sep 20 14:50:40 localhost systemd[1]: var-lib-systemd-random\x2dseed.mount: Failed to check directory /var/lib/systemd/random-seed: Not a directory
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/systemd/random-seed...
Sep 20 14:50:40 localhost systemd[1]: Mounting /home...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/dbus...
Sep 20 14:50:40 localhost systemd[1]: var-lib-apparmor.mount: Directory /var/lib/apparmor to mount over is not empty, mounting anyway.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/apparmor...
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/snap...
Sep 20 14:50:40 localhost systemd[1]: var-log.mount: Directory /var/log to mount over is not empty, mounting anyway.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/log...
Sep 20 14:50:40 localhost systemd[1]: var-lib-extrausers.mount: Directory /var/lib/extrausers to mount over is not empty, mounting anyway.
Sep 20 14:50:40 localhost systemd[1]: Mounting /var/lib/extrausers...
Sep 20 14:50:40 localhost systemd[1]: Mounted /home.
Sep 20 14:50:40 localhost systemd[1]: Mounted /snap.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/snap.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/cloud.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/dbus.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/dhcp.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/logrotate.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/log.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/cache/apparmor.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/apparmor.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/tmp.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/initramfs-tools.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/misc.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/waagent.
Sep 20 14:50:40 localhost systemd[1]: Mounted /root.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/snapd.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/systemd/random-seed.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/systemd/rfkill.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/console-conf.
Sep 20 14:50:40 localhost systemd[1]: Mounted /var/lib/extrausers.
Sep 20 14:50:40 localhost systemd[1]: Found device /dev/mmcblk0p1.
Sep 20 14:50:40 localhost systemd[1]: Starting File System Check on /dev/mmcblk0p1...
Sep 20 14:50:40 localhost systemd[1]: Starting Load/Save Random Seed...
Sep 20 14:50:40 localhost systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 20 14:50:40 localhost systemd[1]: Started Load/Save Random Seed.
Sep 20 14:50:40 localhost systemd[1]: Started File System Check Daemon to report status.
Sep 20 14:50:40 localhost systemd[1]: Started Flush Journal to Persistent Storage.
Sep 20 14:50:40 localhost systemd-fsck[1580]: fsck.fat 3.0.28 (2015-05-16)
Sep 20 14:50:40 localhost systemd-fsck[1580]: /dev/mmcblk0p1: 22 files, 34082/258078 clusters
Sep 20 14:50:40 localhost systemd[1]: Started File System Check on /dev/mmcblk0p1.
Sep 20 14:50:40 localhost systemd[1]: Mounting /boot/uboot...
Sep 20 14:50:40 localhost systemd[1]: Mounted /boot/uboot.
Sep 20 14:50:40 localhost systemd[1]: Reached target Local File Systems.
Sep 20 14:50:40 localhost systemd[1]: Starting Run snappy firstboot setup...
Sep 20 14:50:40 localhost systemd[1]: Starting Create Volatile Files and Directories...
Sep 20 14:50:40 localhost systemd[1]: Starting LSB: AppArmor initialization...
Sep 20 14:50:40 localhost systemd-tmpfiles[1599]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Sep 20 14:50:40 localhost systemd[1]: Started Create Volatile Files and Directories.
Sep 20 14:50:40 localhost systemd[1]: Starting Network Time Synchronization...
Sep 20 14:50:40 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 20 14:50:40 localhost systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 20 14:50:40 localhost apparmor[1601]: * Starting AppArmor profiles
Sep 20 14:50:40 localhost systemd[1]: Started Network Time Synchronization.
Sep 20 14:50:40 localhost systemd[1]: Reached target System Time Synchronized.
Sep 20 14:50:40 localhost apparmor[1601]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Sep 20 14:50:40 localhost apparmor[1601]: ...done.
Sep 20 14:50:40 localhost systemd[1]: Started LSB: AppArmor initialization.
Sep 20 14:50:40 localhost systemd[1]: Reached target System Initialization.
Sep 20 14:50:40 localhost systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 20 14:50:40 localhost systemd[1]: snapd.refresh.timer: Adding 1h 38min 45.150767s random time.
Sep 20 14:50:40 localhost systemd[1]: snapd.refresh.timer: Adding 1h 34min 5.633217s random time.
Sep 20 14:50:40 localhost systemd[1]: Started Timer to automatically refresh installed snaps.
Sep 20 14:50:40 localhost systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 20 14:50:40 localhost systemd[1]: Reached target Timers.
Sep 20 14:50:40 localhost systemd[1]: Starting Socket activation for snappy daemon.
Sep 20 14:50:40 localhost systemd[1]: Started Trigger resolvconf update for networkd DNS.
Sep 20 14:50:40 localhost systemd[1]: Reached target Paths.
Sep 20 14:50:40 localhost systemd[1]: Starting Raise network interfaces...
Sep 20 14:50:40 localhost systemd[1]: Listening on Socket activation for snappy daemon.
Sep 20 14:50:40 localhost systemd[1]: Reached target Sockets.
Sep 20 14:50:40 localhost systemd[1]: Reached target Basic System.
Sep 20 14:50:40 localhost systemd[1]: Started Regular background program processing daemon.
Sep 20 14:50:40 localhost systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Sep 20 14:50:40 localhost systemd[1]: Started Cgroup management daemon.
Sep 20 14:50:40 localhost cron[1658]: (CRON) INFO (pidfile fd = 3)
Sep 20 14:50:40 localhost systemd[1]: Starting Ubuntu FAN network setup...
Sep 20 14:50:40 localhost systemd[1]: Starting Generate sshd host keys...
Sep 20 14:50:40 localhost systemd[1]: Starting System Logging Service...
Sep 20 14:50:40 localhost cron[1658]: (CRON) INFO (Running @reboot jobs)
Sep 20 14:50:40 localhost systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Sep 20 14:50:40 localhost systemd[1]: Starting Login Service...
Sep 20 14:50:40 localhost systemd[1]: Starting Permit User Sessions...
Sep 20 14:50:40 localhost systemd[1]: Started D-Bus System Message Bus.
Sep 20 14:50:40 localhost kernel: [ 0.000000] Booting Linux on physical CPU 0xf00
Sep 20 14:50:40 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
Sep 20 14:50:40 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
Sep 20 14:50:40 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuacct
Sep 20 14:50:40 localhost kernel: [ 0.000000] Linux version 4.4.0-1021-raspi2 (buildd@bos01-arm64-001) (gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.2) ) #27-Ubuntu SMP Fri Aug 12 11:44:06 UTC 2016 (Ubuntu 4.4.0-1021.27-raspi2 4.4.16)
Sep 20 14:50:40 localhost kernel: [ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
Sep 20 14:50:40 localhost kernel: [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
Sep 20 14:50:40 localhost kernel: [ 0.000000] Machine model: Raspberry Pi 2 Model B Rev 1.1
Sep 20 14:50:40 localhost kernel: [ 0.000000] cma: Reserved 8 MiB at 0x3a000000
Sep 20 14:50:40 localhost kernel: [ 0.000000] Memory policy: Data cache writealloc
Sep 20 14:50:40 localhost kernel: [ 0.000000] On node 0 totalpages: 241664
Sep 20 14:50:40 localhost kernel: [ 0.000000] free_area_init_node: node 0, pgdat 80f9e100, node_mem_map b97b4000
Sep 20 14:50:40 localhost kernel: [ 0.000000] Normal zone: 2124 pages used for memmap
Sep 20 14:50:40 localhost kernel: [ 0.000000] Normal zone: 0 pages reserved
Sep 20 14:50:40 localhost kernel: [ 0.000000] Normal zone: 241664 pages, LIFO batch:31
Sep 20 14:50:40 localhost kernel: [ 0.000000] [bcm2709_smp_init_cpus] enter (1015a0->f3003010)
Sep 20 14:50:40 localhost kernel: [ 0.000000] [bcm2709_smp_init_cpus] ncores=4
Sep 20 14:50:40 localhost kernel: [ 0.000000] PERCPU: Embedded 13 pages/cpu @bafaf000 s24076 r8192 d20980 u53248
Sep 20 14:50:40 localhost kernel: [ 0.000000] pcpu-alloc: s24076 r8192 d20980 u53248 alloc=13*4096
Sep 20 14:50:40 localhost kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Sep 20 14:50:40 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 239540
Sep 20 14:50:40 localhost kernel: [ 0.000000] Kernel command line: dma.dmachans=0x7f35 bcm2708_fb.fbwidth=656 bcm2708_fb.fbheight=416 bcm2709.boardrev=0xa01041 bcm2709.serial=0x8c075031 smsc95xx.macaddr=B8:27:EB:07:50:31 bcm2708_fb.fbswap=1 bcm2709.uart_clock=3000000 bcm2709.disk_led_gpio=47 bcm2709.disk_led_active_low=0 vc_mem.mem_base=0x3dc00000 vc_mem.mem_size=0x3f000000 dwc_otg.lpm_enable=0 console=tty1,115200 elevator=deadline root=/dev/disk/by-label/writable net.ifnames=0 init=/lib/systemd/systemd ro panic=-1 fixrtc snap_core=ubuntu-core_658.snap snap_kernel=pi2-kernel_14.snap
Sep 20 14:50:40 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.000000] Memory: 929964K/966656K available (9942K kernel code, 723K rwdata, 3204K rodata, 1024K init, 837K bss, 28500K reserved, 8192K cma-reserved)
Sep 20 14:50:40 localhost kernel: [ 0.000000] Virtual kernel memory layout:
Sep 20 14:50:40 localhost kernel: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] vmalloc : 0xbb800000 - 0xff800000 (1088 MB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] lowmem : 0x80000000 - 0xbb000000 ( 944 MB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] modules : 0x7f000000 - 0x80000000 ( 16 MB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] .text : 0x80008000 - 0x80dd6894 (14139 kB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] .init : 0x80e00000 - 0x80f00000 (1024 kB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] .data : 0x80f00000 - 0x80fb4fc0 ( 724 kB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] .bss : 0x80fb7000 - 0x810887a4 ( 838 kB)
Sep 20 14:50:40 localhost kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Sep 20 14:50:40 localhost kernel: [ 0.000000] Hierarchical RCU implementation.
Sep 20 14:50:40 localhost kernel: [ 0.000000] Build-time adjustment of leaf fanout to 32.
Sep 20 14:50:40 localhost kernel: [ 0.000000] NR_IRQS:16 nr_irqs:16 16
Sep 20 14:50:40 localhost kernel: [ 0.000000] Architected cp15 timer(s) running at 19.20MHz (phys).
Sep 20 14:50:40 localhost kernel: [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
Sep 20 14:50:40 localhost kernel: [ 0.000011] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
Sep 20 14:50:40 localhost kernel: [ 0.000032] Switching to timer-based delay loop, resolution 52ns
Sep 20 14:50:40 localhost kernel: [ 0.000381] Console: colour dummy device 80x30
Sep 20 14:50:40 localhost kernel: [ 0.001573] console [tty1] enabled
Sep 20 14:50:40 localhost kernel: [ 0.001626] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
Sep 20 14:50:40 localhost kernel: [ 0.001702] pid_max: default: 32768 minimum: 301
Sep 20 14:50:40 localhost kernel: [ 0.001918] Security Framework initialized
Sep 20 14:50:40 localhost kernel: [ 0.001960] Yama: becoming mindful.
Sep 20 14:50:40 localhost kernel: [ 0.002127] AppArmor: AppArmor initialized
Sep 20 14:50:40 localhost kernel: [ 0.002437] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.002489] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.003929] Disabling cpuset control group subsystem
Sep 20 14:50:40 localhost kernel: [ 0.004019] Initializing cgroup subsys io
Sep 20 14:50:40 localhost kernel: [ 0.004084] Initializing cgroup subsys memory
Sep 20 14:50:40 localhost kernel: [ 0.004165] Initializing cgroup subsys devices
Sep 20 14:50:40 localhost kernel: [ 0.004218] Initializing cgroup subsys freezer
Sep 20 14:50:40 localhost kernel: [ 0.004285] Initializing cgroup subsys net_cls
Sep 20 14:50:40 localhost kernel: [ 0.004334] Initializing cgroup subsys perf_event
Sep 20 14:50:40 localhost kernel: [ 0.004384] Initializing cgroup subsys net_prio
Sep 20 14:50:40 localhost kernel: [ 0.004511] CPU: Testing write buffer coherency: ok
Sep 20 14:50:40 localhost kernel: [ 0.004623] ftrace: allocating 31616 entries in 93 pages
Sep 20 14:50:40 localhost kernel: [ 0.085585] CPU0: update cpu_capacity 1024
Sep 20 14:50:40 localhost kernel: [ 0.085665] CPU0: thread -1, cpu 0, socket 15, mpidr 80000f00
Sep 20 14:50:40 localhost kernel: [ 0.085705] [bcm2709_smp_prepare_cpus] enter
Sep 20 14:50:40 localhost kernel: [ 0.085877] Setting up static identity map for 0x100000 - 0x100058
Sep 20 14:50:40 localhost kernel: [ 0.092866] [bcm2709_boot_secondary] cpu:1 started (0) 17
Sep 20 14:50:40 localhost kernel: [ 0.093167] [bcm2709_secondary_init] enter cpu:1
Sep 20 14:50:40 localhost kernel: [ 0.093228] CPU1: update cpu_capacity 1024
Sep 20 14:50:40 localhost kernel: [ 0.093237] CPU1: thread -1, cpu 1, socket 15, mpidr 80000f01
Sep 20 14:50:40 localhost kernel: [ 0.094131] [bcm2709_boot_secondary] cpu:2 started (0) 18
Sep 20 14:50:40 localhost kernel: [ 0.094368] [bcm2709_secondary_init] enter cpu:2
Sep 20 14:50:40 localhost kernel: [ 0.094404] CPU2: update cpu_capacity 1024
Sep 20 14:50:40 localhost kernel: [ 0.094412] CPU2: thread -1, cpu 2, socket 15, mpidr 80000f02
Sep 20 14:50:40 localhost kernel: [ 0.095184] [bcm2709_boot_secondary] cpu:3 started (0) 16
Sep 20 14:50:40 localhost kernel: [ 0.095392] [bcm2709_secondary_init] enter cpu:3
Sep 20 14:50:40 localhost kernel: [ 0.095425] CPU3: update cpu_capacity 1024
Sep 20 14:50:40 localhost kernel: [ 0.095433] CPU3: thread -1, cpu 3, socket 15, mpidr 80000f03
Sep 20 14:50:40 localhost kernel: [ 0.095542] Brought up 4 CPUs
Sep 20 14:50:40 localhost kernel: [ 0.095655] SMP: Total of 4 processors activated (153.60 BogoMIPS).
Sep 20 14:50:40 localhost kernel: [ 0.095689] CPU: All CPU(s) started in HYP mode.
Sep 20 14:50:40 localhost kernel: [ 0.095718] CPU: Virtualization extensions available.
Sep 20 14:50:40 localhost kernel: [ 0.096869] devtmpfs: initialized
Sep 20 14:50:40 localhost kernel: [ 0.109010] evm: security.selinux
Sep 20 14:50:40 localhost kernel: [ 0.109056] evm: security.SMACK64
Sep 20 14:50:40 localhost kernel: [ 0.109085] evm: security.SMACK64EXEC
Sep 20 14:50:40 localhost kernel: [ 0.109113] evm: security.SMACK64TRANSMUTE
Sep 20 14:50:40 localhost kernel: [ 0.109142] evm: security.SMACK64MMAP
Sep 20 14:50:40 localhost kernel: [ 0.109170] evm: security.ima
Sep 20 14:50:40 localhost kernel: [ 0.109198] evm: security.capability
Sep 20 14:50:40 localhost kernel: [ 0.110446] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
Sep 20 14:50:40 localhost kernel: [ 0.111148] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 20 14:50:40 localhost kernel: [ 0.112412] pinctrl core: initialized pinctrl subsystem
Sep 20 14:50:40 localhost kernel: [ 0.114140] NET: Registered protocol family 16
Sep 20 14:50:40 localhost kernel: [ 0.120439] DMA: preallocated 4096 KiB pool for atomic coherent allocations
Sep 20 14:50:40 localhost kernel: [ 0.133102] cpuidle: using governor ladder
Sep 20 14:50:40 localhost kernel: [ 0.145125] cpuidle: using governor menu
Sep 20 14:50:40 localhost kernel: [ 0.154768] No ATAGs?
Sep 20 14:50:40 localhost kernel: [ 0.154829] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
Sep 20 14:50:40 localhost kernel: [ 0.154900] hw-breakpoint: maximum watchpoint size is 8 bytes.
Sep 20 14:50:40 localhost kernel: [ 0.155214] Serial: AMBA PL011 UART driver
Sep 20 14:50:40 localhost kernel: [ 0.155573] 3f201000.uart: ttyAMA0 at MMIO 0x3f201000 (irq = 87, base_baud = 0) is a PL011 rev2
Sep 20 14:50:40 localhost kernel: [ 0.156414] bcm2835-mbox 3f00b880.mailbox: mailbox enabled
Sep 20 14:50:40 localhost kernel: [ 0.228748] bcm2835-dma 3f007000.dma: DMA legacy API manager at f3007000, dmachans=0x1
Sep 20 14:50:40 localhost kernel: [ 0.234665] SCSI subsystem initialized
Sep 20 14:50:40 localhost kernel: [ 0.235062] libata version 3.00 loaded.
Sep 20 14:50:40 localhost kernel: [ 0.235568] usbcore: registered new interface driver usbfs
Sep 20 14:50:40 localhost kernel: [ 0.235711] usbcore: registered new interface driver hub
Sep 20 14:50:40 localhost kernel: [ 0.235916] usbcore: registered new device driver usb
Sep 20 14:50:40 localhost kernel: [ 0.236329] pps_core: LinuxPPS API ver. 1 registered
Sep 20 14:50:40 localhost kernel: [ 0.236365] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 20 14:50:40 localhost kernel: [ 0.236464] PTP clock support registered
Sep 20 14:50:40 localhost kernel: [ 0.237688] raspberrypi-firmware soc:firmware: Attached to firmware from 2016-03-07 17:08
Sep 20 14:50:40 localhost kernel: [ 0.242338] Advanced Linux Sound Architecture Driver Initialized.
Sep 20 14:50:40 localhost kernel: [ 0.243771] NetLabel: Initializing
Sep 20 14:50:40 localhost kernel: [ 0.243810] NetLabel: domain hash size = 128
Sep 20 14:50:40 localhost kernel: [ 0.243840] NetLabel: protocols = UNLABELED CIPSOv4
Sep 20 14:50:40 localhost kernel: [ 0.243956] NetLabel: unlabeled traffic allowed by default
Sep 20 14:50:40 localhost kernel: [ 0.245427] clocksource: Switched to clocksource arch_sys_counter
Sep 20 14:50:40 localhost kernel: [ 0.341940] FS-Cache: Loaded
Sep 20 14:50:40 localhost kernel: [ 0.342451] CacheFiles: Loaded
Sep 20 14:50:40 localhost kernel: [ 0.342942] AppArmor: AppArmor Filesystem Enabled
Sep 20 14:50:40 localhost kernel: [ 0.362841] NET: Registered protocol family 2
Sep 20 14:50:40 localhost kernel: [ 0.363950] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.364122] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.364340] TCP: Hash tables configured (established 8192 bind 8192)
Sep 20 14:50:40 localhost kernel: [ 0.364496] UDP hash table entries: 512 (order: 2, 16384 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.364588] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Sep 20 14:50:40 localhost kernel: [ 0.365100] NET: Registered protocol family 1
Sep 20 14:50:40 localhost kernel: [ 0.365941] RPC: Registered named UNIX socket transport module.
Sep 20 14:50:40 localhost kernel: [ 0.365990] RPC: Registered udp transport module.
Sep 20 14:50:40 localhost kernel: [ 0.366023] RPC: Registered tcp transport module.
Sep 20 14:50:40 localhost kernel: [ 0.366054] RPC: Registered tcp NFSv4.1 backchannel transport module.
Sep 20 14:50:40 localhost kernel: [ 0.366468] Trying to unpack rootfs image as initramfs...
Sep 20 14:50:40 localhost kernel: [ 3.292305] Freeing initrd memory: 2960K (ba849000 - bab2d000)
Sep 20 14:50:40 localhost kernel: [ 3.301529] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available
Sep 20 14:50:40 localhost kernel: [ 3.304021] futex hash table entries: 1024 (order: 4, 65536 bytes)
Sep 20 14:50:40 localhost kernel: [ 3.304286] audit: initializing netlink subsys (disabled)
Sep 20 14:50:40 localhost kernel: [ 3.304434] audit: type=2000 audit(3.263:1): initialized
Sep 20 14:50:40 localhost kernel: [ 3.305863] Initialise system trusted keyring
Sep 20 14:50:40 localhost kernel: [ 3.321385] zbud: loaded
Sep 20 14:50:40 localhost kernel: [ 3.322340] VFS: Disk quotas dquot_6.6.0
Sep 20 14:50:40 localhost kernel: [ 3.322722] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Sep 20 14:50:40 localhost kernel: [ 3.325301] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 20 14:50:40 localhost kernel: [ 3.328084] FS-Cache: Netfs 'nfs' registered for caching
Sep 20 14:50:40 localhost kernel: [ 3.328868] NFS: Registering the id_resolver key type
Sep 20 14:50:40 localhost kernel: [ 3.328977] Key type id_resolver registered
Sep 20 14:50:40 localhost kernel: [ 3.329012] Key type id_legacy registered
Sep 20 14:50:40 localhost kernel: [ 3.329074] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
Sep 20 14:50:40 localhost kernel: [ 3.329575] fuse init (API version 7.23)
Sep 20 14:50:40 localhost kernel: [ 3.332141] Key type big_key registered
Sep 20 14:50:40 localhost kernel: [ 3.340164] Key type asymmetric registered
Sep 20 14:50:40 localhost kernel: [ 3.340226] Asymmetric key parser 'x509' registered
Sep 20 14:50:40 localhost kernel: [ 3.340398] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 20 14:50:40 localhost kernel: [ 3.340703] io scheduler noop registered
Sep 20 14:50:40 localhost kernel: [ 3.340752] io scheduler deadline registered (default)
Sep 20 14:50:40 localhost kernel: [ 3.340852] io scheduler cfq registered
Sep 20 14:50:40 localhost kernel: [ 3.345605] BCM2708FB: allocated DMA memory fa400000
Sep 20 14:50:40 localhost kernel: [ 3.345691] BCM2708FB: allocated DMA channel 0 @ f3007000
Sep 20 14:50:40 localhost kernel: [ 3.350345] Console: switching to colour frame buffer device 82x26
Sep 20 14:50:40 localhost kernel: [ 4.327723] bcm2835-rng 3f104000.rng: hwrng registered
Sep 20 14:50:40 localhost kernel: [ 4.329534] vc-cma: Videocore CMA driver
Sep 20 14:50:40 localhost kernel: [ 4.331056] vc-cma: vc_cma_base = 0x00000000
Sep 20 14:50:40 localhost kernel: [ 4.332534] vc-cma: vc_cma_size = 0x00000000 (0 MiB)
Sep 20 14:50:40 localhost kernel: [ 4.334009] vc-cma: vc_cma_initial = 0x00000000 (0 MiB)
Sep 20 14:50:40 localhost kernel: [ 4.335801] vc-mem: phys_addr:0x00000000 mem_base=0x3dc00000 mem_size:0x3f000000(1008 MiB)
Sep 20 14:50:40 localhost kernel: [ 4.368869] brd: module loaded
Sep 20 14:50:40 localhost kernel: [ 4.383650] loop: module loaded
Sep 20 14:50:40 localhost kernel: [ 4.386380] vchiq: vchiq_init_state: slot_zero = 0xba480000, is_master = 0
Sep 20 14:50:40 localhost kernel: [ 4.391246] Loading iSCSI transport class v2.0-870.
Sep 20 14:50:40 localhost kernel: [ 4.395093] libphy: Fixed MDIO Bus: probed
Sep 20 14:50:40 localhost kernel: [ 4.396627] tun: Universal TUN/TAP device driver, 1.6
Sep 20 14:50:40 localhost kernel: [ 4.398148] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Sep 20 14:50:40 localhost kernel: [ 4.400006] PPP generic driver version 2.4.2
Sep 20 14:50:40 localhost kernel: [ 4.401988] usbcore: registered new interface driver smsc95xx
Sep 20 14:50:40 localhost kernel: [ 4.403602] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
Sep 20 14:50:40 localhost kernel: [ 4.605557] Core Release: 2.80a
Sep 20 14:50:40 localhost kernel: [ 4.607076] Setting default values for core params
Sep 20 14:50:40 localhost kernel: [ 4.608653] Finished setting default values for core params
Sep 20 14:50:40 localhost kernel: [ 4.810687] Using Buffer DMA mode
Sep 20 14:50:40 localhost kernel: [ 4.812206] Periodic Transfer Interrupt Enhancement - disabled
Sep 20 14:50:40 localhost kernel: [ 4.813781] Multiprocessor Interrupt Enhancement - disabled
Sep 20 14:50:40 localhost kernel: [ 4.815363] OTG VER PARAM: 0, OTG VER FLAG: 0
Sep 20 14:50:40 localhost kernel: [ 4.816976] Dedicated Tx FIFOs mode
Sep 20 14:50:40 localhost kernel: [ 4.819066] WARN::dwc_otg_hcd_init:1047: FIQ DMA bounce buffers: virt = 0xba414000 dma = 0xfa414000 len=9024
Sep 20 14:50:40 localhost kernel: [ 4.822425] FIQ FSM acceleration enabled for :
Sep 20 14:50:40 localhost kernel: [ 4.822425] Non-periodic Split Transactions
Sep 20 14:50:40 localhost kernel: [ 4.822425] Periodic Split Transactions
Sep 20 14:50:40 localhost kernel: [ 4.822425] High-Speed Isochronous Endpoints
Sep 20 14:50:40 localhost kernel: [ 4.828935] dwc_otg: Microframe scheduler enabled
Sep 20 14:50:40 localhost kernel: [ 4.829017] WARN::hcd_init_fiq:413: FIQ on core 1 at 0x807514f0
Sep 20 14:50:40 localhost kernel: [ 4.830659] WARN::hcd_init_fiq:414: FIQ ASM at 0x80751854 length 36
Sep 20 14:50:40 localhost kernel: [ 4.832282] WARN::hcd_init_fiq:439: MPHI regs_base at 0xbc13e000
Sep 20 14:50:40 localhost kernel: [ 4.834041] dwc_otg 3f980000.usb: DWC OTG Controller
Sep 20 14:50:40 localhost kernel: [ 4.835669] dwc_otg 3f980000.usb: new USB bus registered, assigned bus number 1
Sep 20 14:50:40 localhost kernel: [ 4.837344] dwc_otg 3f980000.usb: irq 62, io mem 0x00000000
Sep 20 14:50:40 localhost kernel: [ 4.839006] Init: Port Power? op_state=1
Sep 20 14:50:40 localhost kernel: [ 4.840554] Init: Power Port (0)
Sep 20 14:50:40 localhost kernel: [ 4.842421] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Sep 20 14:50:40 localhost kernel: [ 4.844022] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 20 14:50:40 localhost kernel: [ 4.845640] usb usb1: Product: DWC OTG Controller
Sep 20 14:50:40 localhost kernel: [ 4.847193] usb usb1: Manufacturer: Linux 4.4.0-1021-raspi2 dwc_otg_hcd
Sep 20 14:50:40 localhost kernel: [ 4.848771] usb usb1: SerialNumber: 3f980000.usb
Sep 20 14:50:40 localhost kernel: [ 4.851482] hub 1-0:1.0: USB hub found
Sep 20 14:50:40 localhost kernel: [ 4.853094] hub 1-0:1.0: 1 port detected
Sep 20 14:50:40 localhost kernel: [ 4.855414] dwc_otg: FIQ enabled
Sep 20 14:50:40 localhost kernel: [ 4.855427] dwc_otg: NAK holdoff enabled
Sep 20 14:50:40 localhost kernel: [ 4.855437] dwc_otg: FIQ split-transaction FSM enabled
Sep 20 14:50:40 localhost kernel: [ 4.855477] Module dwc_common_port init
Sep 20 14:50:40 localhost kernel: [ 4.856116] usbcore: registered new interface driver usb-storage
Sep 20 14:50:40 localhost kernel: [ 4.858451] mousedev: PS/2 mouse device common for all mice
Sep 20 14:50:40 localhost kernel: [ 4.861239] i2c /dev entries driver
Sep 20 14:50:40 localhost kernel: [ 4.865320] device-mapper: uevent: version 1.0.3
Sep 20 14:50:40 localhost kernel: [ 4.867586] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Sep 20 14:50:40 localhost kernel: [ 4.871018] bcm2835-cpufreq: min=600000 max=900000
Sep 20 14:50:40 localhost kernel: [ 4.875211] sdhci: Secure Digital Host Controller Interface driver
Sep 20 14:50:40 localhost kernel: [ 4.876309] sdhci: Copyright(c) Pierre Ossman
Sep 20 14:50:40 localhost kernel: [ 4.877732] sdhost: log_buf @ ba413000 (fa413000)
Sep 20 14:50:40 localhost kernel: [ 4.949454] mmc0: sdhost-bcm2835 loaded - DMA enabled (>1)
Sep 20 14:50:40 localhost kernel: [ 4.950740] sdhci-pltfm: SDHCI platform and OF driver helper
Sep 20 14:50:40 localhost kernel: [ 4.952540] ledtrig-cpu: registered to indicate activity on CPUs
Sep 20 14:50:40 localhost kernel: [ 4.953788] hidraw: raw HID events driver (C) Jiri Kosina
Sep 20 14:50:40 localhost kernel: [ 4.955087] usbcore: registered new interface driver usbhid
Sep 20 14:50:40 localhost kernel: [ 4.956187] usbhid: USB HID core driver
Sep 20 14:50:40 localhost kernel: [ 4.959113] Initializing XFRM netlink socket
Sep 20 14:50:40 localhost kernel: [ 4.961236] NET: Registered protocol family 10
Sep 20 14:50:40 localhost kernel: [ 4.963651] sit: IPv6 over IPv4 tunneling driver
Sep 20 14:50:40 localhost kernel: [ 4.965666] NET: Registered protocol family 17
Sep 20 14:50:40 localhost kernel: [ 4.966891] Key type dns_resolver registered
Sep 20 14:50:40 localhost kernel: [ 4.968556] ThumbEE CPU extension supported.
Sep 20 14:50:40 localhost kernel: [ 4.969635] Registering SWP/SWPB emulation handler
Sep 20 14:50:40 localhost kernel: [ 4.971644] registered taskstats version 1
Sep 20 14:50:40 localhost kernel: [ 4.972742] Loading compiled-in X.509 certificates
Sep 20 14:50:40 localhost kernel: [ 4.981688] Loaded X.509 cert 'Build time autogenerated kernel key: ec576ec8f57c4f9f6200a6ecb4084505f0ac954f'
Sep 20 14:50:40 localhost kernel: [ 4.983841] zswap: loaded using pool lzo/zbud
Sep 20 14:50:40 localhost kernel: [ 4.995152] Key type trusted registered
Sep 20 14:50:40 localhost kernel: [ 5.004799] mmc0: host does not support reading read-only switch, assuming write-enable
Sep 20 14:50:40 localhost kernel: [ 5.009150] mmc0: new high speed SDHC card at address 0007
Sep 20 14:50:40 localhost kernel: [ 5.011334] mmcblk0: mmc0:0007 SD32G 29.0 GiB
Sep 20 14:50:40 localhost kernel: [ 5.014095] mmcblk0: p1 p2
Sep 20 14:50:40 localhost kernel: [ 5.019541] Key type encrypted registered
Sep 20 14:50:40 localhost kernel: [ 5.020648] AppArmor: AppArmor sha1 policy hashing enabled
Sep 20 14:50:40 localhost kernel: [ 5.021776] ima: No TPM chip found, activating TPM-bypass!
Sep 20 14:50:40 localhost kernel: [ 5.022988] evm: HMAC attrs: 0x1
Sep 20 14:50:40 localhost kernel: [ 5.024118] vc-sm: Videocore shared memory driver
Sep 20 14:50:40 localhost kernel: [ 5.025191] [vc_sm_connected_init]: start
Sep 20 14:50:40 localhost kernel: [ 5.026933] [vc_sm_connected_init]: end - returning 0
Sep 20 14:50:40 localhost kernel: [ 5.028200] hctosys: unable to open rtc device (rtc0)
Sep 20 14:50:40 localhost kernel: [ 5.030137] PM: Hibernation image not present or could not be loaded.
Sep 20 14:50:40 localhost kernel: [ 5.030186] ALSA device list:
Sep 20 14:50:40 localhost kernel: [ 5.031248] No soundcards found.
Sep 20 14:50:40 localhost kernel: [ 5.033802] Freeing unused kernel memory: 1024K (80e00000 - 80f00000)
Sep 20 14:50:40 localhost kernel: [ 5.057737] Indeed it is in host mode hprt0 = 00021501
Sep 20 14:50:40 localhost kernel: [ 5.110532] random: systemd-udevd urandom read with 0 bits of entropy available
Sep 20 14:50:40 localhost kernel: [ 5.229496] usb 1-1: new high-speed USB device number 2 using dwc_otg
Sep 20 14:50:40 localhost kernel: [ 5.230874] Indeed it is in host mode hprt0 = 00001101
Sep 20 14:50:40 localhost kernel: [ 5.417807] usb 1-1: New USB device found, idVendor=0424, idProduct=9514
Sep 20 14:50:40 localhost kernel: [ 5.418978] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 20 14:50:40 localhost kernel: [ 5.421187] hub 1-1:1.0: USB hub found
Sep 20 14:50:40 localhost kernel: [ 5.422559] hub 1-1:1.0: 5 ports detected
Sep 20 14:50:40 localhost kernel: [ 5.701588] usb 1-1.1: new high-speed USB device number 3 using dwc_otg
Sep 20 14:50:40 localhost kernel: [ 5.806190] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
Sep 20 14:50:40 localhost kernel: [ 5.807914] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 20 14:50:40 localhost kernel: [ 5.813327] smsc95xx v1.0.4
Sep 20 14:50:40 localhost kernel: [ 5.875959] smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:07:50:31
Sep 20 14:50:40 localhost kernel: [ 7.297482] smsc95xx 1-1.1:1.0 enxb827eb075031: renamed from eth0
Sep 20 14:50:40 localhost kernel: [ 19.363472] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Sep 20 14:50:40 localhost kernel: [ 19.367456] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Sep 20 14:50:40 localhost kernel: [ 19.402842] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: errors=remount-ro
Sep 20 14:50:40 localhost kernel: [ 19.567017] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Sep 20 14:50:40 localhost kernel: [ 19.571265] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Sep 20 14:50:40 localhost kernel: [ 19.610201] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
Sep 20 14:50:40 localhost kernel: [ 24.789581] bcm2835-wdt 3f100000.watchdog: Broadcom BCM2835 watchdog timer
Sep 20 14:50:40 localhost kernel: [ 24.821173] bcm2708_i2c 3f205000.i2c: BSC0 Controller at 0x3f205000 (irq 83) (baudrate 100000)
Sep 20 14:50:40 localhost kernel: [ 24.823214] bcm2708_i2c 3f804000.i2c: BSC1 Controller at 0x3f804000 (irq 83) (baudrate 100000)
Sep 20 14:50:40 localhost kernel: [ 24.845544] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
Sep 20 14:50:40 localhost kernel: [ 30.591861] audit: type=1400 audit(1474383039.059:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1633 comm="apparmor_parser"
Sep 20 14:50:40 localhost kernel: [ 31.531176] audit: type=1400 audit(1474383039.999:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1634 comm="apparmor_parser"
Sep 20 14:50:40 localhost kernel: [ 31.533985] audit: type=1400 audit(1474383040.003:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1634 comm="apparmor_parser"
Sep 20 14:50:40 localhost kernel: [ 31.536425] audit: type=1400 audit(1474383040.003:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1634 comm="apparmor_parser"
Sep 20 14:50:40 localhost kernel: [ 31.538901] audit: type=1400 audit(1474383040.007:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1634 comm="apparmor_parser"
Sep 20 14:50:40 localhost kernel: [ 32.227822] cgroup: new mount options do not match the existing superblock, will be ignored
Sep 20 14:50:40 localhost rsyslogd-2039: Could not open output pipe '/dev/xconsole':: No such file or directory [v8.16.0 try http://www.rsyslog.com/e/2039 ]
Sep 20 14:50:40 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 14:51:10 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 14:50:40 localhost dbus[1692]: [system] AppArmor D-Bus mediation is enabled
Sep 20 14:50:40 localhost systemd[1]: Started System Logging Service.
Sep 20 14:50:40 localhost systemd[1]: Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Sep 20 14:50:40 localhost systemd[1]: Started Ubuntu FAN network setup.
Sep 20 14:50:40 localhost systemd[1]: Started Permit User Sessions.
Sep 20 14:50:41 localhost systemd[1]: Started Login Service.
Sep 20 14:50:41 localhost systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Sep 20 14:50:41 localhost systemd[1]: Started Raise network interfaces.
Sep 20 14:50:41 localhost systemd[1]: Reached target Network.
Sep 20 14:50:41 localhost systemd[1]: Starting /etc/rc.local Compatibility...
Sep 20 14:50:41 localhost systemd[1]: Started /etc/rc.local Compatibility.
Sep 20 14:50:41 localhost systemd[1]: Started Getty on tty1.
Sep 20 14:50:41 localhost systemd[1]: Reached target Login Prompts.
Sep 20 14:50:44 localhost systemd[1]: Stopped Network Service.
Sep 20 14:50:44 localhost kernel: [ 36.158600] smsc95xx 1-1.1:1.0 enxb827eb075031: unregister 'smsc95xx' usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet
Sep 20 14:50:44 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 14:50:44 localhost kernel: [ 36.182509] smsc95xx v1.0.4
Sep 20 14:50:44 localhost kernel: [ 36.233054] smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:07:50:31
Sep 20 14:50:44 localhost kernel: [ 36.244645] smsc95xx 1-1.1:1.0 enxb827eb075031: renamed from eth0
Sep 20 14:50:44 localhost systemd[1]: Starting Network Service...
Sep 20 14:50:45 localhost systemd-networkd[1765]: Enumeration completed
Sep 20 14:50:45 localhost systemd[1]: Started Network Service.
Sep 20 14:50:45 localhost systemd[1]: Starting Update resolvconf for networkd DNS...
Sep 20 14:50:45 localhost kernel: [ 36.695974] smsc95xx 1-1.1:1.0 enxb827eb075031: hardware isn't capable of remote wakeup
Sep 20 14:50:45 localhost kernel: [ 36.696414] IPv6: ADDRCONF(NETDEV_UP): enxb827eb075031: link is not ready
Sep 20 14:50:45 localhost sh[1767]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Sep 20 14:50:46 localhost kernel: [ 38.163023] IPv6: ADDRCONF(NETDEV_CHANGE): enxb827eb075031: link becomes ready
Sep 20 14:50:46 localhost kernel: [ 38.164165] smsc95xx 1-1.1:1.0 enxb827eb075031: link up, 100Mbps, full-duplex, lpa 0xC5E1
Sep 20 14:50:46 localhost sh[1767]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Sep 20 14:50:46 localhost systemd-networkd[1765]: enxb827eb075031: Gained carrier
Sep 20 14:50:46 localhost systemd-networkd[1765]: enxb827eb075031: DHCPv4 address 192.168.1.83/24 via 192.168.1.1
Sep 20 14:50:46 localhost dbus[1692]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Sep 20 14:50:46 localhost systemd-timesyncd[1606]: Network configuration changed, trying to establish connection.
Sep 20 14:50:46 localhost systemd[1]: Starting Hostname Service...
Sep 20 14:50:46 localhost systemd[1]: Created slice system-console\x2dconf.slice.
Sep 20 14:50:46 localhost systemd[1]: Started Ubuntu Core Firstboot Configuration tty1.
Sep 20 14:50:46 localhost dbus[1692]: [system] Successfully activated service 'org.freedesktop.hostname1'
Sep 20 14:50:46 localhost systemd[1]: Started Hostname Service.
Sep 20 14:50:46 localhost systemd-networkd[1765]: enxb827eb075031: Could not set hostname: The name org.freedesktop.PolicyKit1 was not provided by any .service files
Sep 20 14:50:47 localhost systemd[1]: Started Update resolvconf for networkd DNS.
Sep 20 14:50:47 localhost systemd-networkd[1765]: enxb827eb075031: Gained IPv6LL
Sep 20 14:50:47 localhost systemd-networkd[1765]: enxb827eb075031: Configured
Sep 20 14:50:47 localhost systemd-timesyncd[1606]: Network configuration changed, trying to establish connection.
Sep 20 14:50:47 localhost systemd-networkd[1765]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 14:50:49 localhost kernel: [ 41.306114] random: nonblocking pool is initialized
Sep 20 14:50:47 localhost systemd-networkd[1765]: message repeated 3 times: [ enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument]
Sep 20 14:50:51 localhost systemd[1]: Stopping Getty on tty1...
Sep 20 14:50:52 localhost sshd-host-keygen[1674]: Creating SSH2 RSA key; this may take some time ...
Sep 20 14:50:52 localhost systemd[1]: Stopped Getty on tty1.
Sep 20 14:50:52 localhost sshd-host-keygen[1674]: 2048 SHA256:48nexT6M0Im2ulus+uJ80XQ6zWhfwJxKthwDqZS7JB8 root@localhost.localdomain (RSA)
Sep 20 14:50:55 localhost sshd-host-keygen[1674]: Creating SSH2 DSA key; this may take some time ...
Sep 20 14:50:56 localhost sshd-host-keygen[1674]: 1024 SHA256:s+1ZJLTWD1p7H+VTp+vLhjz3j4IpmSPvTThD5C+MJ+M root@localhost.localdomain (DSA)
Sep 20 14:50:56 localhost sshd-host-keygen[1674]: Creating SSH2 ECDSA key; this may take some time ...
Sep 20 14:50:57 localhost sshd-host-keygen[1674]: 256 SHA256:VbJDuNTI4qjdrZ4bE3cCkSG/xGO4ZcC4+yqCkbqbhk0 root@localhost.localdomain (ECDSA)
Sep 20 14:50:58 localhost sshd-host-keygen[1674]: Creating SSH2 ED25519 key; this may take some time ...
Sep 20 14:50:58 localhost sshd-host-keygen[1674]: 256 SHA256:N7nx3apa+Eq9UAhWVAUKIdSOseCrbjS81ow3/1TvQQA root@localhost.localdomain (ED25519)
Sep 20 14:50:58 localhost systemd[1]: Started Generate sshd host keys.
Sep 20 14:50:58 localhost systemd[1]: Starting OpenBSD Secure Shell server...
Sep 20 14:50:59 localhost systemd[1]: Started OpenBSD Secure Shell server.
Sep 20 15:09:29 localhost systemd-timesyncd[1606]: Synchronized to time server 91.189.89.198:123 (ntp.ubuntu.com).
Sep 20 15:09:29 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:09:59 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:09:29 localhost systemd[1]: Time has been changed
Sep 20 15:09:29 localhost systemd[1]: snapd.refresh.timer: Adding 4h 2min 25.691391s random time.
Sep 20 15:09:29 localhost systemd[1]: snapd.refresh.timer: Adding 2h 44.077140s random time.
Sep 20 15:10:37 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 1 on Do: Prepare snap "/var/lib/snapd/seed/snaps/ubuntu-core_658.snap" (658)
Sep 20 15:10:37 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:11:07 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:10:37 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 25 on Do: Generate device key
Sep 20 15:10:39 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 2 on Do: Mount snap "ubuntu-core" (658)
Sep 20 15:10:48 localhost kernel: [ 147.925732] usb 1-1.3: new full-speed USB device number 4 using dwc_otg
Sep 20 15:10:48 localhost kernel: [ 148.064455] usb 1-1.3: New USB device found, idVendor=04d9, idProduct=a0cd
Sep 20 15:10:48 localhost kernel: [ 148.064474] usb 1-1.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Sep 20 15:10:48 localhost kernel: [ 148.064486] usb 1-1.3: Product: USB Keyboard
Sep 20 15:10:48 localhost kernel: [ 148.082612] input: USB Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.0/0003:04D9:A0CD.0001/input/input0
Sep 20 15:10:48 localhost kernel: [ 148.138945] hid-generic 0003:04D9:A0CD.0001: input,hidraw0: USB HID v1.11 Keyboard [USB Keyboard] on usb-3f980000.usb-1.3/input0
Sep 20 15:10:58 localhost kernel: [ 158.165764] hid-generic 0003:04D9:A0CD.0002: usb_submit_urb(ctrl) failed: -1
Sep 20 15:10:58 localhost kernel: [ 158.165892] hid-generic 0003:04D9:A0CD.0002: timeout initializing reports
Sep 20 15:10:58 localhost kernel: [ 158.166801] input: USB Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.1/0003:04D9:A0CD.0002/input/input1
Sep 20 15:10:58 localhost kernel: [ 158.222725] hid-generic 0003:04D9:A0CD.0002: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [USB Keyboard] on usb-3f980000.usb-1.3/input1
Sep 20 15:10:58 localhost kernel: [ 158.236314] hid-generic 0003:04D9:A0CD.0003: hiddev0,hidraw2: USB HID v1.11 Device [USB Keyboard] on usb-3f980000.usb-1.3/input2
Sep 20 15:10:58 localhost kernel: [ 158.320909] evbug: Connected device: input0 (USB Keyboard at usb-3f980000.usb-1.3/input0)
Sep 20 15:10:58 localhost kernel: [ 158.320938] evbug: Connected device: input1 (USB Keyboard at usb-3f980000.usb-1.3/input1)
Sep 20 15:11:14 localhost systemd-networkd[1765]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 15:11:14 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:11:44 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:12:04 localhost kernel: [ 224.792938] usb 1-1.3: USB disconnect, device number 4
Sep 20 15:12:04 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:12:34 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:12:04 localhost kernel: [ 224.854043] evbug: Disconnected device: input0
Sep 20 15:12:05 localhost kernel: [ 224.929997] evbug: Disconnected device: input1
Sep 20 15:11:38 localhost systemd-networkd[1765]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 15:12:45 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:13:15 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:13:28 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:13:58 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:14:17 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 26 on Do: Request device serial
Sep 20 15:14:17 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:14:47 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:14:20 localhost systemd[1]: Reloading.
Sep 20 15:14:21 localhost systemd[1]: Reloading.
Sep 20 15:14:22 localhost systemd[1]: Mounting Mount unit for ubuntu-core...
Sep 20 15:14:22 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 15:14:23 localhost systemd[1]: Mounted Mount unit for ubuntu-core.
Sep 20 15:14:23 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 3 on Do: Copy snap "ubuntu-core" data
Sep 20 15:14:23 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 4 on Do: Setup snap "ubuntu-core" (658) security profiles
Sep 20 15:14:23 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 5 on Do: Make snap "ubuntu-core" (658) available to the system
Sep 20 15:14:24 localhost /usr/bin/snap[1597]: task.go:273: DEBUG: 2016-09-20T15:14:24Z INFO Requested system restart.
Sep 20 15:14:24 localhost /usr/bin/snap[1597]: overlord.go:212: restart requested but no handler set
Sep 20 15:14:24 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 6 on Do: Start snap "ubuntu-core" (658) services
Sep 20 15:14:24 localhost snap[1597]: 2016/09/20 15:14:24.660810 overlord.go:212: restart requested but no handler set
Sep 20 15:14:24 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 7 on Do: Prepare snap "/var/lib/snapd/seed/snaps/pi2-kernel_14.snap" (14)
Sep 20 15:14:25 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 8 on Do: Mount snap "pi2-kernel" (14)
Sep 20 15:14:30 localhost systemd[1]: Reloading.
Sep 20 15:14:31 localhost systemd[1]: Reloading.
Sep 20 15:14:32 localhost systemd[1]: Mounting Mount unit for pi2-kernel...
Sep 20 15:14:32 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 15:14:32 localhost systemd[1]: Mounted Mount unit for pi2-kernel.
Sep 20 15:14:34 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 9 on Do: Copy snap "pi2-kernel" data
Sep 20 15:14:34 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 10 on Do: Setup snap "pi2-kernel" (14) security profiles
Sep 20 15:14:34 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 11 on Do: Make snap "pi2-kernel" (14) available to the system
Sep 20 15:14:34 localhost /usr/bin/snap[1597]: task.go:273: DEBUG: 2016-09-20T15:14:34Z INFO Requested system restart.
Sep 20 15:14:34 localhost /usr/bin/snap[1597]: overlord.go:212: restart requested but no handler set
Sep 20 15:14:34 localhost snap[1597]: 2016/09/20 15:14:34.903461 overlord.go:212: restart requested but no handler set
Sep 20 15:14:34 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 12 on Do: Start snap "pi2-kernel" (14) services
Sep 20 15:14:35 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 13 on Do: Prepare snap "/var/lib/snapd/seed/snaps/pi2_25.snap" (25)
Sep 20 15:14:35 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 14 on Do: Mount snap "pi2" (25)
Sep 20 15:14:35 localhost systemd[1]: Reloading.
Sep 20 15:14:36 localhost systemd[1]: Reloading.
Sep 20 15:14:37 localhost systemd[1]: Mounting Mount unit for pi2...
Sep 20 15:14:38 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 15:14:38 localhost systemd[1]: Mounted Mount unit for pi2.
Sep 20 15:14:38 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 15 on Do: Copy snap "pi2" data
Sep 20 15:14:38 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 16 on Do: Setup snap "pi2" (25) security profiles
Sep 20 15:14:38 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 17 on Do: Make snap "pi2" (25) available to the system
Sep 20 15:14:38 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 18 on Do: Start snap "pi2" (25) services
Sep 20 15:14:38 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 19 on Do: Prepare snap "/var/lib/snapd/seed/snaps/snapweb_16.snap" (16)
Sep 20 15:14:38 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 20 on Do: Mount snap "snapweb" (16)
Sep 20 15:14:39 localhost systemd[1]: Reloading.
Sep 20 15:14:40 localhost systemd[1]: Reloading.
Sep 20 15:14:41 localhost systemd[1]: Mounting Mount unit for snapweb...
Sep 20 15:14:41 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 15:14:41 localhost systemd[1]: Mounted Mount unit for snapweb.
Sep 20 15:14:41 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 21 on Do: Copy snap "snapweb" data
Sep 20 15:14:41 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 22 on Do: Setup snap "snapweb" (16) security profiles
Sep 20 15:14:42 localhost kernel: [ 382.459326] audit: type=1400 audit(1474384482.594:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.snapweb.snapweb" pid=2229 comm="apparmor_parser"
Sep 20 15:14:42 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 23 on Do: Make snap "snapweb" (16) available to the system
Sep 20 15:14:42 localhost /usr/bin/snap[1597]: taskrunner.go:293: DEBUG: Running task 24 on Do: Start snap "snapweb" (16) services
Sep 20 15:14:42 localhost systemd[1]: Reloading.
Sep 20 15:14:43 localhost systemd[1]: Reloading.
Sep 20 15:14:44 localhost systemd[1]: Reached target Frameworks ready.
Sep 20 15:14:44 localhost systemd[1]: Started Service for snap application snapweb.snapweb.
Sep 20 15:14:45 localhost systemd[1]: Started Run snappy firstboot setup.
Sep 20 15:14:45 localhost systemd[1]: Started Snappy daemon.
Sep 20 15:14:45 localhost systemd[1]: Reached target Multi-User System.
Sep 20 15:14:45 localhost systemd[1]: Reached target Graphical Interface.
Sep 20 15:14:45 localhost systemd[1]: Starting Update UTMP about System Runlevel Changes...
Sep 20 15:14:45 localhost systemd[1]: Starting Notify bootloader that boot was successful...
Sep 20 15:14:45 localhost systemd[1]: Started Update UTMP about System Runlevel Changes.
Sep 20 15:14:45 localhost systemd[1]: Started Notify bootloader that boot was successful.
Sep 20 15:14:45 localhost systemd[1]: Startup finished in 21.831s (kernel) + 6min 3.173s (userspace) = 6min 25.005s.
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/system-info
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/login
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/logout
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/icons/{name}/icon
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/find
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/snaps
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/snaps/{name}
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/snaps/{name}/conf
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/interfaces
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/assertions
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/assertions/{assertType}
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/events
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/changes/{id}
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/changes
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/create-user
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/buy
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/buy/methods
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:219: DEBUG: adding /v2/snapctl
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:209: DEBUG: init done in 57.196354ms
Sep 20 15:14:46 localhost /usr/lib/snapd/snapd[2277]: daemon.go:174: DEBUG: uid=0;@ GET /v2/snaps 10.021449ms 200
Sep 20 15:14:48 localhost snap[2269]: Snapweb: 2016/09/20 15:14:48 handlers.go:61: Initializing HTTP handlers...
Sep 20 15:14:48 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:15:18 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:14:48 localhost /usr/lib/snapd/snapd[2277]: daemon.go:174: DEBUG: uid=0;@ GET /v2/system-info 723.385µs 200
Sep 20 15:14:48 localhost snap[2269]: Snapweb: 2016/09/20 15:14:48 main.go:41: Snapweb starting...
Sep 20 15:14:48 localhost snap[2269]: Snapweb: 2016/09/20 15:14:48 avahi.go:49: Registering hostname: snapweb
Sep 20 15:16:05 localhost systemd-networkd[1765]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 15:16:05 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:16:35 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:17:01 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:18:01 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:17:01 localhost CRON[2312]: (root) CMD ( cd / && run-parts --report /etc/cron.hourly)
Sep 20 15:19:54 localhost systemd-networkd[1765]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 15:19:54 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:20:54 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:21:30 localhost kernel: [ 790.571062] usb 1-1.3: new full-speed USB device number 5 using dwc_otg
Sep 20 15:21:30 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:22:30 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:21:30 localhost kernel: [ 790.709900] usb 1-1.3: New USB device found, idVendor=04d9, idProduct=a0cd
Sep 20 15:21:30 localhost kernel: [ 790.709926] usb 1-1.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Sep 20 15:21:30 localhost kernel: [ 790.709962] usb 1-1.3: Product: USB Keyboard
Sep 20 15:20:52 localhost systemd-networkd[1765]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 15:21:30 localhost systemd-udevd[1479]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 15:21:30 localhost kernel: [ 790.733683] input: USB Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.0/0003:04D9:A0CD.0004/input/input2
Sep 20 15:21:30 localhost kernel: [ 790.788353] evbug: Connected device: input2 (USB Keyboard at usb-3f980000.usb-1.3/input0)
Sep 20 15:21:30 localhost kernel: [ 790.788760] hid-generic 0003:04D9:A0CD.0004: input,hidraw0: USB HID v1.11 Keyboard [USB Keyboard] on usb-3f980000.usb-1.3/input0
Sep 20 15:21:40 localhost kernel: [ 800.819123] hid-generic 0003:04D9:A0CD.0005: usb_submit_urb(ctrl) failed: -1
Sep 20 15:21:40 localhost kernel: [ 800.819312] hid-generic 0003:04D9:A0CD.0005: timeout initializing reports
Sep 20 15:21:40 localhost kernel: [ 800.820563] input: USB Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.1/0003:04D9:A0CD.0005/input/input3
Sep 20 15:21:41 localhost kernel: [ 800.875605] evbug: Connected device: input3 (USB Keyboard at usb-3f980000.usb-1.3/input1)
Sep 20 15:21:41 localhost kernel: [ 800.876517] hid-generic 0003:04D9:A0CD.0005: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [USB Keyboard] on usb-3f980000.usb-1.3/input1
Sep 20 15:21:41 localhost kernel: [ 800.888829] hid-generic 0003:04D9:A0CD.0006: hiddev0,hidraw2: USB HID v1.11 Device [USB Keyboard] on usb-3f980000.usb-1.3/input2
Sep 20 15:21:45 localhost kernel: [ 804.985592] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
Sep 20 15:21:45 localhost kernel: [ 804.985619] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
Sep 20 15:21:45 localhost kernel: [ 804.985632] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.049574] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
Sep 20 15:21:45 localhost kernel: [ 805.049595] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.049608] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.153571] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
Sep 20 15:21:45 localhost kernel: [ 805.153588] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
Sep 20 15:21:45 localhost kernel: [ 805.153601] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.225570] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
Sep 20 15:21:45 localhost kernel: [ 805.225587] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.225600] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.337611] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
Sep 20 15:21:45 localhost kernel: [ 805.337633] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 1
Sep 20 15:21:45 localhost kernel: [ 805.337646] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.401614] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458977
Sep 20 15:21:45 localhost kernel: [ 805.401637] evbug: Event. Dev: input2, Type: 1, Code: 42, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.401650] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.497615] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458976
Sep 20 15:21:45 localhost kernel: [ 805.497635] evbug: Event. Dev: input2, Type: 1, Code: 29, Value: 1
Sep 20 15:21:45 localhost kernel: [ 805.497648] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.577620] evbug: Event. Dev: input2, Type: 4, Code: 4, Value: 458976
Sep 20 15:21:45 localhost kernel: [ 805.577638] evbug: Event. Dev: input2, Type: 1, Code: 29, Value: 0
Sep 20 15:21:45 localhost kernel: [ 805.577651] evbug: Event. Dev: input2, Type: 0, Code: 0, Value: 0
Sep 20 14:51:48 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="1593" x-info="http://www.rsyslog.com"] start
Sep 20 14:51:47 localhost rsyslogd-2222: command 'KLogPermitNonKernelFacility' is currently not permitted - did you already set it via a RainerScript command (v6+ config)? [v8.16.0 try http://www.rsyslog.com/e/2222 ]
Sep 20 14:51:48 localhost rsyslogd-2307: warning: ~ action is deprecated, consider using the 'stop' statement instead [v8.16.0 try http://www.rsyslog.com/e/2307 ]
Sep 20 14:51:48 localhost rsyslogd: rsyslogd's groupid changed to 114
Sep 20 14:51:48 localhost rsyslogd: rsyslogd's userid changed to 108
Sep 20 14:51:48 localhost rsyslogd-2039: Could not open output pipe '/dev/xconsole':: No such file or directory [v8.16.0 try http://www.rsyslog.com/e/2039 ]
Sep 20 14:51:48 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 14:52:18 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 14:51:48 localhost kernel: [ 0.000000] Booting Linux on physical CPU 0xf00
Sep 20 14:51:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
Sep 20 14:51:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
Sep 20 14:51:48 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuacct
Sep 20 14:51:48 localhost kernel: [ 0.000000] Linux version 4.4.0-1021-raspi2 (buildd@bos01-arm64-001) (gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.2) ) #27-Ubuntu SMP Fri Aug 12 11:44:06 UTC 2016 (Ubuntu 4.4.0-1021.27-raspi2 4.4.16)
Sep 20 14:51:48 localhost kernel: [ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
Sep 20 14:51:48 localhost kernel: [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
Sep 20 14:51:48 localhost kernel: [ 0.000000] Machine model: Raspberry Pi 2 Model B Rev 1.1
Sep 20 14:51:48 localhost kernel: [ 0.000000] cma: Reserved 8 MiB at 0x3a000000
Sep 20 14:51:48 localhost kernel: [ 0.000000] Memory policy: Data cache writealloc
Sep 20 14:51:48 localhost kernel: [ 0.000000] On node 0 totalpages: 241664
Sep 20 14:51:48 localhost kernel: [ 0.000000] free_area_init_node: node 0, pgdat 80f9e100, node_mem_map b97b4000
Sep 20 14:51:48 localhost kernel: [ 0.000000] Normal zone: 2124 pages used for memmap
Sep 20 14:51:48 localhost kernel: [ 0.000000] Normal zone: 0 pages reserved
Sep 20 14:51:48 localhost kernel: [ 0.000000] Normal zone: 241664 pages, LIFO batch:31
Sep 20 14:51:48 localhost kernel: [ 0.000000] [bcm2709_smp_init_cpus] enter (1015a0->f3003010)
Sep 20 14:51:48 localhost kernel: [ 0.000000] [bcm2709_smp_init_cpus] ncores=4
Sep 20 14:51:48 localhost kernel: [ 0.000000] PERCPU: Embedded 13 pages/cpu @bafaf000 s24076 r8192 d20980 u53248
Sep 20 14:51:48 localhost kernel: [ 0.000000] pcpu-alloc: s24076 r8192 d20980 u53248 alloc=13*4096
Sep 20 14:51:48 localhost kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Sep 20 14:51:48 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 239540
Sep 20 14:51:48 localhost kernel: [ 0.000000] Kernel command line: dma.dmachans=0x7f35 bcm2708_fb.fbwidth=656 bcm2708_fb.fbheight=416 bcm2709.boardrev=0xa01041 bcm2709.serial=0x8c075031 smsc95xx.macaddr=B8:27:EB:07:50:31 bcm2708_fb.fbswap=1 bcm2709.uart_clock=3000000 bcm2709.disk_led_gpio=47 bcm2709.disk_led_active_low=0 vc_mem.mem_base=0x3dc00000 vc_mem.mem_size=0x3f000000 dwc_otg.lpm_enable=0 console=tty1,115200 elevator=deadline root=/dev/disk/by-label/writable net.ifnames=0 init=/lib/systemd/systemd ro panic=-1 fixrtc snap_core=ubuntu-core_658.snap snap_kernel=pi2-kernel_14.snap
Sep 20 14:51:48 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.000000] Memory: 929964K/966656K available (9942K kernel code, 723K rwdata, 3204K rodata, 1024K init, 837K bss, 28500K reserved, 8192K cma-reserved)
Sep 20 14:51:48 localhost kernel: [ 0.000000] Virtual kernel memory layout:
Sep 20 14:51:48 localhost kernel: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] vmalloc : 0xbb800000 - 0xff800000 (1088 MB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] lowmem : 0x80000000 - 0xbb000000 ( 944 MB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] modules : 0x7f000000 - 0x80000000 ( 16 MB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] .text : 0x80008000 - 0x80dd6894 (14139 kB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] .init : 0x80e00000 - 0x80f00000 (1024 kB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] .data : 0x80f00000 - 0x80fb4fc0 ( 724 kB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] .bss : 0x80fb7000 - 0x810887a4 ( 838 kB)
Sep 20 14:51:48 localhost kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Sep 20 14:51:48 localhost kernel: [ 0.000000] Hierarchical RCU implementation.
Sep 20 14:51:48 localhost kernel: [ 0.000000] Build-time adjustment of leaf fanout to 32.
Sep 20 14:51:48 localhost kernel: [ 0.000000] NR_IRQS:16 nr_irqs:16 16
Sep 20 14:51:48 localhost kernel: [ 0.000000] Architected cp15 timer(s) running at 19.20MHz (phys).
Sep 20 14:51:48 localhost kernel: [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
Sep 20 14:51:48 localhost kernel: [ 0.000011] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
Sep 20 14:51:48 localhost kernel: [ 0.000033] Switching to timer-based delay loop, resolution 52ns
Sep 20 14:51:48 localhost kernel: [ 0.000385] Console: colour dummy device 80x30
Sep 20 14:51:48 localhost kernel: [ 0.001644] console [tty1] enabled
Sep 20 14:51:48 localhost kernel: [ 0.001698] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
Sep 20 14:51:48 localhost kernel: [ 0.001775] pid_max: default: 32768 minimum: 301
Sep 20 14:51:48 localhost kernel: [ 0.001989] Security Framework initialized
Sep 20 14:51:48 localhost kernel: [ 0.002031] Yama: becoming mindful.
Sep 20 14:51:48 localhost kernel: [ 0.002201] AppArmor: AppArmor initialized
Sep 20 14:51:48 localhost kernel: [ 0.002509] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.002560] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.003987] Disabling cpuset control group subsystem
Sep 20 14:51:48 localhost kernel: [ 0.004079] Initializing cgroup subsys io
Sep 20 14:51:48 localhost kernel: [ 0.004140] Initializing cgroup subsys memory
Sep 20 14:51:48 localhost kernel: [ 0.004218] Initializing cgroup subsys devices
Sep 20 14:51:48 localhost kernel: [ 0.004271] Initializing cgroup subsys freezer
Sep 20 14:51:48 localhost kernel: [ 0.004339] Initializing cgroup subsys net_cls
Sep 20 14:51:48 localhost kernel: [ 0.004387] Initializing cgroup subsys perf_event
Sep 20 14:51:48 localhost kernel: [ 0.004438] Initializing cgroup subsys net_prio
Sep 20 14:51:48 localhost kernel: [ 0.004569] CPU: Testing write buffer coherency: ok
Sep 20 14:51:48 localhost kernel: [ 0.004684] ftrace: allocating 31616 entries in 93 pages
Sep 20 14:51:48 localhost kernel: [ 0.085709] CPU0: update cpu_capacity 1024
Sep 20 14:51:48 localhost kernel: [ 0.085790] CPU0: thread -1, cpu 0, socket 15, mpidr 80000f00
Sep 20 14:51:48 localhost kernel: [ 0.085829] [bcm2709_smp_prepare_cpus] enter
Sep 20 14:51:48 localhost kernel: [ 0.086004] Setting up static identity map for 0x100000 - 0x100058
Sep 20 14:51:48 localhost kernel: [ 0.093054] [bcm2709_boot_secondary] cpu:1 started (0) 16
Sep 20 14:51:48 localhost kernel: [ 0.093364] [bcm2709_secondary_init] enter cpu:1
Sep 20 14:51:48 localhost kernel: [ 0.093426] CPU1: update cpu_capacity 1024
Sep 20 14:51:48 localhost kernel: [ 0.093435] CPU1: thread -1, cpu 1, socket 15, mpidr 80000f01
Sep 20 14:51:48 localhost kernel: [ 0.094326] [bcm2709_boot_secondary] cpu:2 started (0) 18
Sep 20 14:51:48 localhost kernel: [ 0.094561] [bcm2709_secondary_init] enter cpu:2
Sep 20 14:51:48 localhost kernel: [ 0.094595] CPU2: update cpu_capacity 1024
Sep 20 14:51:48 localhost kernel: [ 0.094604] CPU2: thread -1, cpu 2, socket 15, mpidr 80000f02
Sep 20 14:51:48 localhost kernel: [ 0.095373] [bcm2709_boot_secondary] cpu:3 started (0) 18
Sep 20 14:51:48 localhost kernel: [ 0.095583] [bcm2709_secondary_init] enter cpu:3
Sep 20 14:51:48 localhost kernel: [ 0.095616] CPU3: update cpu_capacity 1024
Sep 20 14:51:48 localhost kernel: [ 0.095624] CPU3: thread -1, cpu 3, socket 15, mpidr 80000f03
Sep 20 14:51:48 localhost kernel: [ 0.095733] Brought up 4 CPUs
Sep 20 14:51:48 localhost kernel: [ 0.095846] SMP: Total of 4 processors activated (153.60 BogoMIPS).
Sep 20 14:51:48 localhost kernel: [ 0.095880] CPU: All CPU(s) started in HYP mode.
Sep 20 14:51:48 localhost kernel: [ 0.095909] CPU: Virtualization extensions available.
Sep 20 14:51:48 localhost kernel: [ 0.097021] devtmpfs: initialized
Sep 20 14:51:48 localhost kernel: [ 0.109215] evm: security.selinux
Sep 20 14:51:48 localhost kernel: [ 0.109262] evm: security.SMACK64
Sep 20 14:51:48 localhost kernel: [ 0.109291] evm: security.SMACK64EXEC
Sep 20 14:51:48 localhost kernel: [ 0.109319] evm: security.SMACK64TRANSMUTE
Sep 20 14:51:48 localhost kernel: [ 0.109348] evm: security.SMACK64MMAP
Sep 20 14:51:48 localhost kernel: [ 0.109376] evm: security.ima
Sep 20 14:51:48 localhost kernel: [ 0.109403] evm: security.capability
Sep 20 14:51:48 localhost kernel: [ 0.110683] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
Sep 20 14:51:48 localhost kernel: [ 0.111406] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 20 14:51:48 localhost kernel: [ 0.112735] pinctrl core: initialized pinctrl subsystem
Sep 20 14:51:48 localhost kernel: [ 0.114475] NET: Registered protocol family 16
Sep 20 14:51:48 localhost kernel: [ 0.120756] DMA: preallocated 4096 KiB pool for atomic coherent allocations
Sep 20 14:51:48 localhost kernel: [ 0.133179] cpuidle: using governor ladder
Sep 20 14:51:48 localhost kernel: [ 0.145203] cpuidle: using governor menu
Sep 20 14:51:48 localhost kernel: [ 0.154869] No ATAGs?
Sep 20 14:51:48 localhost kernel: [ 0.154930] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
Sep 20 14:51:48 localhost kernel: [ 0.155002] hw-breakpoint: maximum watchpoint size is 8 bytes.
Sep 20 14:51:48 localhost kernel: [ 0.155306] Serial: AMBA PL011 UART driver
Sep 20 14:51:48 localhost kernel: [ 0.155659] 3f201000.uart: ttyAMA0 at MMIO 0x3f201000 (irq = 87, base_baud = 0) is a PL011 rev2
Sep 20 14:51:48 localhost kernel: [ 0.156498] bcm2835-mbox 3f00b880.mailbox: mailbox enabled
Sep 20 14:51:48 localhost kernel: [ 0.224836] bcm2835-dma 3f007000.dma: DMA legacy API manager at f3007000, dmachans=0x1
Sep 20 14:51:48 localhost kernel: [ 0.230818] SCSI subsystem initialized
Sep 20 14:51:48 localhost kernel: [ 0.231213] libata version 3.00 loaded.
Sep 20 14:51:48 localhost kernel: [ 0.231712] usbcore: registered new interface driver usbfs
Sep 20 14:51:48 localhost kernel: [ 0.231852] usbcore: registered new interface driver hub
Sep 20 14:51:48 localhost kernel: [ 0.232056] usbcore: registered new device driver usb
Sep 20 14:51:48 localhost kernel: [ 0.232463] pps_core: LinuxPPS API ver. 1 registered
Sep 20 14:51:48 localhost kernel: [ 0.232499] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 20 14:51:48 localhost kernel: [ 0.232589] PTP clock support registered
Sep 20 14:51:48 localhost kernel: [ 0.233767] raspberrypi-firmware soc:firmware: Attached to firmware from 2016-03-07 17:08
Sep 20 14:51:48 localhost kernel: [ 0.238419] Advanced Linux Sound Architecture Driver Initialized.
Sep 20 14:51:48 localhost kernel: [ 0.239834] NetLabel: Initializing
Sep 20 14:51:48 localhost kernel: [ 0.239872] NetLabel: domain hash size = 128
Sep 20 14:51:48 localhost kernel: [ 0.239902] NetLabel: protocols = UNLABELED CIPSOv4
Sep 20 14:51:48 localhost kernel: [ 0.240019] NetLabel: unlabeled traffic allowed by default
Sep 20 14:51:48 localhost kernel: [ 0.241494] clocksource: Switched to clocksource arch_sys_counter
Sep 20 14:51:48 localhost kernel: [ 0.338042] FS-Cache: Loaded
Sep 20 14:51:48 localhost kernel: [ 0.338529] CacheFiles: Loaded
Sep 20 14:51:48 localhost kernel: [ 0.339024] AppArmor: AppArmor Filesystem Enabled
Sep 20 14:51:48 localhost kernel: [ 0.358983] NET: Registered protocol family 2
Sep 20 14:51:48 localhost kernel: [ 0.360097] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.360265] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.360483] TCP: Hash tables configured (established 8192 bind 8192)
Sep 20 14:51:48 localhost kernel: [ 0.360638] UDP hash table entries: 512 (order: 2, 16384 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.360728] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Sep 20 14:51:48 localhost kernel: [ 0.361222] NET: Registered protocol family 1
Sep 20 14:51:48 localhost kernel: [ 0.362036] RPC: Registered named UNIX socket transport module.
Sep 20 14:51:48 localhost kernel: [ 0.362083] RPC: Registered udp transport module.
Sep 20 14:51:48 localhost kernel: [ 0.362115] RPC: Registered tcp transport module.
Sep 20 14:51:48 localhost kernel: [ 0.362146] RPC: Registered tcp NFSv4.1 backchannel transport module.
Sep 20 14:51:48 localhost kernel: [ 0.362555] Trying to unpack rootfs image as initramfs...
Sep 20 14:51:48 localhost kernel: [ 3.288347] Freeing initrd memory: 2960K (ba849000 - bab2d000)
Sep 20 14:51:48 localhost kernel: [ 3.297412] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available
Sep 20 14:51:48 localhost kernel: [ 3.299959] futex hash table entries: 1024 (order: 4, 65536 bytes)
Sep 20 14:51:48 localhost kernel: [ 3.300218] audit: initializing netlink subsys (disabled)
Sep 20 14:51:48 localhost kernel: [ 3.300376] audit: type=2000 audit(3.259:1): initialized
Sep 20 14:51:48 localhost kernel: [ 3.301759] Initialise system trusted keyring
Sep 20 14:51:48 localhost kernel: [ 3.317338] zbud: loaded
Sep 20 14:51:48 localhost kernel: [ 3.318326] VFS: Disk quotas dquot_6.6.0
Sep 20 14:51:48 localhost kernel: [ 3.318720] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Sep 20 14:51:48 localhost kernel: [ 3.321329] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 20 14:51:48 localhost kernel: [ 3.324154] FS-Cache: Netfs 'nfs' registered for caching
Sep 20 14:51:48 localhost kernel: [ 3.324926] NFS: Registering the id_resolver key type
Sep 20 14:51:48 localhost kernel: [ 3.325034] Key type id_resolver registered
Sep 20 14:51:48 localhost kernel: [ 3.325069] Key type id_legacy registered
Sep 20 14:51:48 localhost kernel: [ 3.325130] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
Sep 20 14:51:48 localhost kernel: [ 3.325653] fuse init (API version 7.23)
Sep 20 14:51:48 localhost kernel: [ 3.328146] Key type big_key registered
Sep 20 14:51:48 localhost kernel: [ 3.336265] Key type asymmetric registered
Sep 20 14:51:48 localhost kernel: [ 3.336327] Asymmetric key parser 'x509' registered
Sep 20 14:51:48 localhost kernel: [ 3.336504] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 20 14:51:48 localhost kernel: [ 3.336800] io scheduler noop registered
Sep 20 14:51:48 localhost kernel: [ 3.336848] io scheduler deadline registered (default)
Sep 20 14:51:48 localhost kernel: [ 3.336948] io scheduler cfq registered
Sep 20 14:51:48 localhost kernel: [ 3.341513] BCM2708FB: allocated DMA memory fa400000
Sep 20 14:51:48 localhost kernel: [ 3.341594] BCM2708FB: allocated DMA channel 0 @ f3007000
Sep 20 14:51:48 localhost kernel: [ 3.346272] Console: switching to colour frame buffer device 82x26
Sep 20 14:51:48 localhost kernel: [ 4.339408] bcm2835-rng 3f104000.rng: hwrng registered
Sep 20 14:51:48 localhost kernel: [ 4.341178] vc-cma: Videocore CMA driver
Sep 20 14:51:48 localhost kernel: [ 4.342765] vc-cma: vc_cma_base = 0x00000000
Sep 20 14:51:48 localhost kernel: [ 4.344249] vc-cma: vc_cma_size = 0x00000000 (0 MiB)
Sep 20 14:51:48 localhost kernel: [ 4.345718] vc-cma: vc_cma_initial = 0x00000000 (0 MiB)
Sep 20 14:51:48 localhost kernel: [ 4.347468] vc-mem: phys_addr:0x00000000 mem_base=0x3dc00000 mem_size:0x3f000000(1008 MiB)
Sep 20 14:51:48 localhost kernel: [ 4.380506] brd: module loaded
Sep 20 14:51:48 localhost kernel: [ 4.395308] loop: module loaded
Sep 20 14:51:48 localhost kernel: [ 4.397984] vchiq: vchiq_init_state: slot_zero = 0xba480000, is_master = 0
Sep 20 14:51:48 localhost kernel: [ 4.402884] Loading iSCSI transport class v2.0-870.
Sep 20 14:51:48 localhost kernel: [ 4.406765] libphy: Fixed MDIO Bus: probed
Sep 20 14:51:48 localhost kernel: [ 4.408291] tun: Universal TUN/TAP device driver, 1.6
Sep 20 14:51:48 localhost kernel: [ 4.409806] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Sep 20 14:51:48 localhost kernel: [ 4.411678] PPP generic driver version 2.4.2
Sep 20 14:51:48 localhost kernel: [ 4.413663] usbcore: registered new interface driver smsc95xx
Sep 20 14:51:48 localhost kernel: [ 4.415271] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
Sep 20 14:51:48 localhost kernel: [ 4.617218] Core Release: 2.80a
Sep 20 14:51:48 localhost kernel: [ 4.618765] Setting default values for core params
Sep 20 14:51:48 localhost kernel: [ 4.620347] Finished setting default values for core params
Sep 20 14:51:48 localhost kernel: [ 4.822368] Using Buffer DMA mode
Sep 20 14:51:48 localhost kernel: [ 4.823884] Periodic Transfer Interrupt Enhancement - disabled
Sep 20 14:51:48 localhost kernel: [ 4.825437] Multiprocessor Interrupt Enhancement - disabled
Sep 20 14:51:48 localhost kernel: [ 4.827034] OTG VER PARAM: 0, OTG VER FLAG: 0
Sep 20 14:51:48 localhost kernel: [ 4.828650] Dedicated Tx FIFOs mode
Sep 20 14:51:48 localhost kernel: [ 4.830772] WARN::dwc_otg_hcd_init:1047: FIQ DMA bounce buffers: virt = 0xba414000 dma = 0xfa414000 len=9024
Sep 20 14:51:48 localhost kernel: [ 4.834136] FIQ FSM acceleration enabled for :
Sep 20 14:51:48 localhost kernel: [ 4.834136] Non-periodic Split Transactions
Sep 20 14:51:48 localhost kernel: [ 4.834136] Periodic Split Transactions
Sep 20 14:51:48 localhost kernel: [ 4.834136] High-Speed Isochronous Endpoints
Sep 20 14:51:48 localhost kernel: [ 4.840699] dwc_otg: Microframe scheduler enabled
Sep 20 14:51:48 localhost kernel: [ 4.840786] WARN::hcd_init_fiq:413: FIQ on core 1 at 0x807514f0
Sep 20 14:51:48 localhost kernel: [ 4.842432] WARN::hcd_init_fiq:414: FIQ ASM at 0x80751854 length 36
Sep 20 14:51:48 localhost kernel: [ 4.844057] WARN::hcd_init_fiq:439: MPHI regs_base at 0xbc13e000
Sep 20 14:51:48 localhost kernel: [ 4.845739] dwc_otg 3f980000.usb: DWC OTG Controller
Sep 20 14:51:48 localhost kernel: [ 4.847368] dwc_otg 3f980000.usb: new USB bus registered, assigned bus number 1
Sep 20 14:51:48 localhost kernel: [ 4.849025] dwc_otg 3f980000.usb: irq 62, io mem 0x00000000
Sep 20 14:51:48 localhost kernel: [ 4.850686] Init: Port Power? op_state=1
Sep 20 14:51:48 localhost kernel: [ 4.852235] Init: Power Port (0)
Sep 20 14:51:48 localhost kernel: [ 4.854110] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Sep 20 14:51:48 localhost kernel: [ 4.855711] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 20 14:51:48 localhost kernel: [ 4.857294] usb usb1: Product: DWC OTG Controller
Sep 20 14:51:48 localhost kernel: [ 4.858878] usb usb1: Manufacturer: Linux 4.4.0-1021-raspi2 dwc_otg_hcd
Sep 20 14:51:48 localhost kernel: [ 4.860462] usb usb1: SerialNumber: 3f980000.usb
Sep 20 14:51:48 localhost kernel: [ 4.863169] hub 1-0:1.0: USB hub found
Sep 20 14:51:48 localhost kernel: [ 4.864780] hub 1-0:1.0: 1 port detected
Sep 20 14:51:48 localhost kernel: [ 4.867113] dwc_otg: FIQ enabled
Sep 20 14:51:48 localhost kernel: [ 4.867127] dwc_otg: NAK holdoff enabled
Sep 20 14:51:48 localhost kernel: [ 4.867138] dwc_otg: FIQ split-transaction FSM enabled
Sep 20 14:51:48 localhost kernel: [ 4.867175] Module dwc_common_port init
Sep 20 14:51:48 localhost kernel: [ 4.867817] usbcore: registered new interface driver usb-storage
Sep 20 14:51:48 localhost kernel: [ 4.870133] mousedev: PS/2 mouse device common for all mice
Sep 20 14:51:48 localhost kernel: [ 4.872927] i2c /dev entries driver
Sep 20 14:51:48 localhost kernel: [ 4.877003] device-mapper: uevent: version 1.0.3
Sep 20 14:51:48 localhost kernel: [ 4.879276] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Sep 20 14:51:48 localhost kernel: [ 4.882682] bcm2835-cpufreq: min=600000 max=900000
Sep 20 14:51:48 localhost kernel: [ 4.886905] sdhci: Secure Digital Host Controller Interface driver
Sep 20 14:51:48 localhost kernel: [ 4.888004] sdhci: Copyright(c) Pierre Ossman
Sep 20 14:51:48 localhost kernel: [ 4.889399] sdhost: log_buf @ ba413000 (fa413000)
Sep 20 14:51:48 localhost kernel: [ 4.961520] mmc0: sdhost-bcm2835 loaded - DMA enabled (>1)
Sep 20 14:51:48 localhost kernel: [ 4.962805] sdhci-pltfm: SDHCI platform and OF driver helper
Sep 20 14:51:48 localhost kernel: [ 4.964604] ledtrig-cpu: registered to indicate activity on CPUs
Sep 20 14:51:48 localhost kernel: [ 4.965876] hidraw: raw HID events driver (C) Jiri Kosina
Sep 20 14:51:48 localhost kernel: [ 4.967148] usbcore: registered new interface driver usbhid
Sep 20 14:51:48 localhost kernel: [ 4.968247] usbhid: USB HID core driver
Sep 20 14:51:48 localhost kernel: [ 4.971183] Initializing XFRM netlink socket
Sep 20 14:51:48 localhost kernel: [ 4.973319] NET: Registered protocol family 10
Sep 20 14:51:48 localhost kernel: [ 4.975651] sit: IPv6 over IPv4 tunneling driver
Sep 20 14:51:48 localhost kernel: [ 4.977616] NET: Registered protocol family 17
Sep 20 14:51:48 localhost kernel: [ 4.978822] Key type dns_resolver registered
Sep 20 14:51:48 localhost kernel: [ 4.980488] ThumbEE CPU extension supported.
Sep 20 14:51:48 localhost kernel: [ 4.981563] Registering SWP/SWPB emulation handler
Sep 20 14:51:48 localhost kernel: [ 4.983640] registered taskstats version 1
Sep 20 14:51:48 localhost kernel: [ 4.984737] Loading compiled-in X.509 certificates
Sep 20 14:51:48 localhost kernel: [ 4.993660] Loaded X.509 cert 'Build time autogenerated kernel key: ec576ec8f57c4f9f6200a6ecb4084505f0ac954f'
Sep 20 14:51:48 localhost kernel: [ 4.995817] zswap: loaded using pool lzo/zbud
Sep 20 14:51:48 localhost kernel: [ 5.007014] Key type trusted registered
Sep 20 14:51:48 localhost kernel: [ 5.016984] mmc0: host does not support reading read-only switch, assuming write-enable
Sep 20 14:51:48 localhost kernel: [ 5.021310] mmc0: new high speed SDHC card at address 0007
Sep 20 14:51:48 localhost kernel: [ 5.025917] mmcblk0: mmc0:0007 SD32G 29.0 GiB
Sep 20 14:51:48 localhost kernel: [ 5.027966] Key type encrypted registered
Sep 20 14:51:48 localhost kernel: [ 5.028779] mmcblk0: p1 p2
Sep 20 14:51:48 localhost kernel: [ 5.030194] AppArmor: AppArmor sha1 policy hashing enabled
Sep 20 14:51:48 localhost kernel: [ 5.031263] ima: No TPM chip found, activating TPM-bypass!
Sep 20 14:51:48 localhost kernel: [ 5.032445] evm: HMAC attrs: 0x1
Sep 20 14:51:48 localhost kernel: [ 5.033599] vc-sm: Videocore shared memory driver
Sep 20 14:51:48 localhost kernel: [ 5.034675] [vc_sm_connected_init]: start
Sep 20 14:51:48 localhost kernel: [ 5.036346] [vc_sm_connected_init]: end - returning 0
Sep 20 14:51:48 localhost kernel: [ 5.037644] hctosys: unable to open rtc device (rtc0)
Sep 20 14:51:48 localhost kernel: [ 5.039551] PM: Hibernation image not present or could not be loaded.
Sep 20 14:51:48 localhost kernel: [ 5.039603] ALSA device list:
Sep 20 14:51:48 localhost kernel: [ 5.040659] No soundcards found.
Sep 20 14:51:48 localhost kernel: [ 5.043276] Freeing unused kernel memory: 1024K (80e00000 - 80f00000)
Sep 20 14:51:48 localhost kernel: [ 5.069776] Indeed it is in host mode hprt0 = 00021501
Sep 20 14:51:48 localhost kernel: [ 5.120562] random: systemd-udevd urandom read with 0 bits of entropy available
Sep 20 14:51:48 localhost kernel: [ 5.241553] usb 1-1: new high-speed USB device number 2 using dwc_otg
Sep 20 14:51:48 localhost kernel: [ 5.242917] Indeed it is in host mode hprt0 = 00001101
Sep 20 14:51:48 localhost kernel: [ 5.429862] usb 1-1: New USB device found, idVendor=0424, idProduct=9514
Sep 20 14:51:48 localhost kernel: [ 5.431027] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 20 14:51:48 localhost kernel: [ 5.433162] hub 1-1:1.0: USB hub found
Sep 20 14:51:48 localhost kernel: [ 5.434507] hub 1-1:1.0: 5 ports detected
Sep 20 14:51:48 localhost kernel: [ 5.709692] usb 1-1.1: new high-speed USB device number 3 using dwc_otg
Sep 20 14:51:48 localhost kernel: [ 5.814293] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
Sep 20 14:51:48 localhost kernel: [ 5.815787] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 20 14:51:48 localhost kernel: [ 5.820716] smsc95xx v1.0.4
Sep 20 14:51:48 localhost kernel: [ 5.880829] smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:07:50:31
Sep 20 14:51:48 localhost kernel: [ 5.969623] usb 1-1.3: new full-speed USB device number 4 using dwc_otg
Sep 20 14:51:48 localhost kernel: [ 6.109338] usb 1-1.3: New USB device found, idVendor=04d9, idProduct=a0cd
Sep 20 14:51:48 localhost kernel: [ 6.110968] usb 1-1.3: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Sep 20 14:51:48 localhost kernel: [ 6.112542] usb 1-1.3: Product: USB Keyboard
Sep 20 14:51:48 localhost kernel: [ 6.133858] input: USB Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.0/0003:04D9:A0CD.0001/input/input0
Sep 20 14:51:48 localhost kernel: [ 6.191447] hid-generic 0003:04D9:A0CD.0001: input,hidraw0: USB HID v1.11 Keyboard [USB Keyboard] on usb-3f980000.usb-1.3/input0
Sep 20 14:51:48 localhost kernel: [ 7.367738] smsc95xx 1-1.1:1.0 enxb827eb075031: renamed from eth0
Sep 20 14:51:48 localhost kernel: [ 7.753584] random: nonblocking pool is initialized
Sep 20 14:51:48 localhost kernel: [ 16.221558] hid-generic 0003:04D9:A0CD.0002: usb_submit_urb(ctrl) failed: -1
Sep 20 14:51:48 localhost kernel: [ 16.222902] hid-generic 0003:04D9:A0CD.0002: timeout initializing reports
Sep 20 14:51:48 localhost kernel: [ 16.225085] input: USB Keyboard as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.1/0003:04D9:A0CD.0002/input/input1
Sep 20 14:51:48 localhost kernel: [ 16.282431] hid-generic 0003:04D9:A0CD.0002: input,hiddev0,hidraw1: USB HID v1.11 Keyboard [USB Keyboard] on usb-3f980000.usb-1.3/input1
Sep 20 14:51:48 localhost kernel: [ 16.296924] hid-generic 0003:04D9:A0CD.0003: hiddev0,hidraw2: USB HID v1.11 Device [USB Keyboard] on usb-3f980000.usb-1.3/input2
Sep 20 14:51:48 localhost kernel: [ 16.706125] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Sep 20 14:51:48 localhost kernel: [ 16.710148] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Sep 20 14:51:48 localhost kernel: [ 22.206270] EXT4-fs (mmcblk0p2): recovery complete
Sep 20 14:51:48 localhost kernel: [ 23.415312] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: errors=remount-ro
Sep 20 14:51:48 localhost kernel: [ 24.969245] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Sep 20 14:51:48 localhost kernel: [ 24.973243] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Sep 20 14:51:48 localhost kernel: [ 26.098569] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
Sep 20 14:51:48 localhost kernel: [ 30.900851] bcm2835-wdt 3f100000.watchdog: Broadcom BCM2835 watchdog timer
Sep 20 14:51:48 localhost kernel: [ 30.978655] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
Sep 20 14:51:48 localhost kernel: [ 30.986412] bcm2708_i2c 3f205000.i2c: BSC0 Controller at 0x3f205000 (irq 83) (baudrate 100000)
Sep 20 14:51:48 localhost kernel: [ 30.987236] bcm2708_i2c 3f804000.i2c: BSC1 Controller at 0x3f804000 (irq 83) (baudrate 100000)
Sep 20 14:51:48 localhost kernel: [ 31.412143] evbug: Connected device: input0 (USB Keyboard at usb-3f980000.usb-1.3/input0)
Sep 20 14:51:48 localhost kernel: [ 31.412184] evbug: Connected device: input1 (USB Keyboard at usb-3f980000.usb-1.3/input1)
Sep 20 14:51:48 localhost kernel: [ 35.258883] audit: type=1400 audit(1474383106.655:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1514 comm="apparmor_parser"
Sep 20 14:51:48 localhost kernel: [ 35.273126] audit: type=1400 audit(1474383106.667:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1513 comm="apparmor_parser"
Sep 20 14:51:48 localhost kernel: [ 35.273200] audit: type=1400 audit(1474383106.667:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1513 comm="apparmor_parser"
Sep 20 14:51:48 localhost kernel: [ 35.273239] audit: type=1400 audit(1474383106.667:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1513 comm="apparmor_parser"
Sep 20 14:51:48 localhost kernel: [ 35.273276] audit: type=1400 audit(1474383106.667:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1513 comm="apparmor_parser"
Sep 20 14:51:48 localhost kernel: [ 35.358413] audit: type=1400 audit(1474383106.755:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.snapweb.snapweb" pid=1532 comm="apparmor_parser"
Sep 20 14:51:48 localhost kernel: [ 35.880201] cgroup: new mount options do not match the existing superblock, will be ignored
Sep 20 14:51:48 localhost kernel: [ 36.572397] smsc95xx 1-1.1:1.0 enxb827eb075031: hardware isn't capable of remote wakeup
Sep 20 14:51:48 localhost kernel: [ 36.572906] IPv6: ADDRCONF(NETDEV_UP): enxb827eb075031: link is not ready
Sep 20 14:51:48 localhost systemd[1]: Starting udev Coldplug all Devices...
Sep 20 14:51:48 localhost systemd[1]: Mounting FUSE Control File System...
Sep 20 14:51:48 localhost systemd[1]: Starting Apply Kernel Variables...
Sep 20 14:51:48 localhost systemd[1]: Mounting Configuration File System...
Sep 20 14:51:48 localhost systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 20 14:51:48 localhost systemd[1]: Mounted FUSE Control File System.
Sep 20 14:51:48 localhost systemd[1]: Mounted Configuration File System.
Sep 20 14:51:48 localhost systemd[1]: Started Apply Kernel Variables.
Sep 20 14:51:48 localhost systemd[1]: Started Create Static Device Nodes in /dev.
Sep 20 14:51:48 localhost systemd[1]: Starting udev Kernel Device Manager...
Sep 20 14:51:48 localhost systemd[1]: Reached target Local File Systems (Pre).
Sep 20 14:51:48 localhost systemd[1]: Mounting /home...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/dhcp...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/cloud...
Sep 20 14:51:48 localhost systemd[1]: var-lib-systemd-random\x2dseed.mount: Failed to check directory /var/lib/systemd/random-seed: Not a directory
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/systemd/random-seed...
Sep 20 14:51:48 localhost systemd[1]: var-lib-snapd.mount: Directory /var/lib/snapd to mount over is not empty, mounting anyway.
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/snapd...
Sep 20 14:51:48 localhost systemd[1]: var-lib-apparmor.mount: Directory /var/lib/apparmor to mount over is not empty, mounting anyway.
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/apparmor...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/misc...
Sep 20 14:51:48 localhost systemd[1]: var-lib-initramfs\x2dtools.mount: Directory /var/lib/initramfs-tools to mount over is not empty, mounting anyway.
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/initramfs-tools...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/dbus...
Sep 20 14:51:48 localhost systemd-udevd[1319]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 14:51:48 localhost systemd[1]: Mounting /root...
Sep 20 14:51:48 localhost systemd[1]: Mounting /snap...
Sep 20 14:51:48 localhost systemd[1]: var-lib-sudo.mount: Directory /var/lib/sudo to mount over is not empty, mounting anyway.
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/sudo...
Sep 20 14:51:48 localhost systemd[1]: Mounting /tmp...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/snap...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/cache/apparmor...
Sep 20 14:51:48 localhost systemd[1]: var-log.mount: Directory /var/log to mount over is not empty, mounting anyway.
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/log...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/systemd/rfkill...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/console-conf...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/logrotate...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/tmp...
Sep 20 14:51:48 localhost systemd[1]: var-lib-extrausers.mount: Directory /var/lib/extrausers to mount over is not empty, mounting anyway.
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/extrausers...
Sep 20 14:51:48 localhost systemd[1]: Mounting /mnt...
Sep 20 14:51:48 localhost systemd[1]: Mounting /var/lib/waagent...
Sep 20 14:51:48 localhost systemd[1]: Mounted /home.
Sep 20 14:51:48 localhost systemd[1]: Mounted /snap.
Sep 20 14:51:48 localhost systemd[1]: Mounted /tmp.
Sep 20 14:51:48 localhost systemd[1]: Mounted /mnt.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/snap.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/cloud.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/dbus.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/dhcp.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/logrotate.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/sudo.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/log.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/cache/apparmor.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/apparmor.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/tmp.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/initramfs-tools.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/misc.
Sep 20 14:51:48 localhost systemd[1]: Mounted /root.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/extrausers.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/snapd.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/systemd/random-seed.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/systemd/rfkill.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/console-conf.
Sep 20 14:51:48 localhost systemd[1]: Mounted /var/lib/waagent.
Sep 20 14:51:48 localhost systemd[1]: Started udev Kernel Device Manager.
Sep 20 14:51:48 localhost systemd[1]: Started udev Coldplug all Devices.
Sep 20 14:51:48 localhost systemd[1]: Found device /dev/mmcblk0p1.
Sep 20 14:51:48 localhost systemd[1]: Starting File System Check on /dev/mmcblk0p1...
Sep 20 14:51:48 localhost systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 20 14:51:48 localhost systemd[1]: Starting Load/Save Random Seed...
Sep 20 14:51:48 localhost systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 20 14:51:48 localhost systemd[1]: Mounting Mount unit for ubuntu-core...
Sep 20 14:51:48 localhost systemd[1]: Mounting Mount unit for snapweb...
Sep 20 14:51:48 localhost systemd[1]: Mounting Mount unit for pi2-kernel...
Sep 20 14:51:48 localhost systemd[1]: Mounting Mount unit for pi2...
Sep 20 14:51:48 localhost systemd[1]: Mounted Mount unit for snapweb.
Sep 20 14:51:48 localhost systemd[1]: Mounted Mount unit for ubuntu-core.
Sep 20 14:51:48 localhost systemd[1]: Mounted Mount unit for pi2.
Sep 20 14:51:48 localhost systemd[1]: Mounted Mount unit for pi2-kernel.
Sep 20 14:51:48 localhost systemd[1]: Started Load/Save Random Seed.
Sep 20 14:51:48 localhost systemd-fsck[1422]: fsck.fat 3.0.28 (2015-05-16)
Sep 20 14:51:48 localhost systemd-fsck[1422]: 0x41: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
Sep 20 14:51:48 localhost systemd-fsck[1422]: Automatically removing dirty bit.
Sep 20 14:51:48 localhost systemd-fsck[1422]: Performing changes.
Sep 20 14:51:48 localhost systemd-fsck[1422]: /dev/mmcblk0p1: 22 files, 34082/258078 clusters
Sep 20 14:51:48 localhost systemd[1]: Started File System Check on /dev/mmcblk0p1.
Sep 20 14:51:48 localhost systemd[1]: Started Flush Journal to Persistent Storage.
Sep 20 14:51:48 localhost systemd[1]: Mounting /boot/uboot...
Sep 20 14:51:48 localhost systemd[1]: Started File System Check Daemon to report status.
Sep 20 14:51:48 localhost systemd[1]: Mounted /boot/uboot.
Sep 20 14:51:48 localhost systemd[1]: Reached target Local File Systems.
Sep 20 14:51:48 localhost systemd[1]: Starting Create Volatile Files and Directories...
Sep 20 14:51:48 localhost systemd[1]: Starting LSB: AppArmor initialization...
Sep 20 14:51:48 localhost systemd-tmpfiles[1458]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Sep 20 14:51:48 localhost systemd[1]: Started Create Volatile Files and Directories.
Sep 20 14:51:48 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 20 14:51:48 localhost systemd[1]: Starting Network Time Synchronization...
Sep 20 14:51:48 localhost systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 20 14:51:48 localhost apparmor[1460]: * Starting AppArmor profiles
Sep 20 14:51:48 localhost systemd[1]: Started Network Time Synchronization.
Sep 20 14:51:48 localhost systemd[1]: Reached target System Time Synchronized.
Sep 20 14:51:48 localhost apparmor[1460]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Sep 20 14:51:48 localhost apparmor[1460]: ...done.
Sep 20 14:51:48 localhost systemd[1]: Started LSB: AppArmor initialization.
Sep 20 14:51:48 localhost systemd[1]: Reached target System Initialization.
Sep 20 14:51:48 localhost systemd[1]: Starting Socket activation for snappy daemon.
Sep 20 14:51:48 localhost systemd[1]: snapd.refresh.timer: Adding 3h 8min 13.674328s random time.
Sep 20 14:51:48 localhost systemd[1]: snapd.refresh.timer: Adding 5h 24min 51.246094s random time.
Sep 20 14:51:48 localhost systemd[1]: Started Timer to automatically refresh installed snaps.
Sep 20 14:51:48 localhost systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 20 14:51:48 localhost systemd[1]: Started Trigger resolvconf update for networkd DNS.
Sep 20 14:51:48 localhost systemd[1]: Reached target Paths.
Sep 20 14:51:48 localhost systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 20 14:51:48 localhost systemd[1]: Reached target Timers.
Sep 20 14:51:48 localhost systemd[1]: Starting Raise network interfaces...
Sep 20 14:51:48 localhost systemd[1]: Listening on Socket activation for snappy daemon.
Sep 20 14:51:48 localhost systemd[1]: Reached target Sockets.
Sep 20 14:51:48 localhost systemd[1]: Reached target Basic System.
Sep 20 14:51:48 localhost systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Sep 20 14:51:48 localhost systemd[1]: Started Snappy daemon.
Sep 20 14:51:48 localhost systemd[1]: Started Cgroup management daemon.
Sep 20 14:51:48 localhost systemd[1]: Starting Generate sshd host keys...
Sep 20 14:51:48 localhost systemd[1]: Started D-Bus System Message Bus.
Sep 20 14:51:48 localhost dbus[1568]: [system] AppArmor D-Bus mediation is enabled
Sep 20 14:51:48 localhost systemd[1]: Starting Network Service...
Sep 20 14:51:48 localhost systemd[1]: Starting Login Service...
Sep 20 14:51:48 localhost systemd[1]: Starting Permit User Sessions...
Sep 20 14:51:48 localhost systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Sep 20 14:51:48 localhost systemd[1]: Started Service for snap application snapweb.snapweb.
Sep 20 14:51:48 localhost systemd[1]: Starting System Logging Service...
Sep 20 14:51:48 localhost systemd[1]: Started Regular background program processing daemon.
Sep 20 14:51:48 localhost systemd[1]: Starting Ubuntu FAN network setup...
Sep 20 14:51:48 localhost cron[1597]: (CRON) INFO (pidfile fd = 3)
Sep 20 14:51:48 localhost systemd[1]: Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Sep 20 14:51:48 localhost systemd[1]: Started Generate sshd host keys.
Sep 20 14:51:48 localhost cron[1597]: (CRON) INFO (Running @reboot jobs)
Sep 20 14:51:48 localhost systemd[1]: Started Permit User Sessions.
Sep 20 14:51:48 localhost systemd[1]: Started Ubuntu FAN network setup.
Sep 20 14:51:48 localhost systemd-networkd[1583]: Enumeration completed
Sep 20 14:51:48 localhost systemd[1]: Started Network Service.
Sep 20 14:51:48 localhost systemd[1]: Started System Logging Service.
Sep 20 14:51:48 localhost systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Sep 20 14:51:48 localhost systemd[1]: Started Login Service.
Sep 20 14:51:48 localhost systemd[1]: Started Raise network interfaces.
Sep 20 14:51:48 localhost systemd[1]: Starting Update resolvconf for networkd DNS...
Sep 20 14:51:48 localhost systemd[1]: Reached target Network.
Sep 20 14:51:48 localhost systemd[1]: Starting /etc/rc.local Compatibility...
Sep 20 14:51:48 localhost systemd[1]: Starting OpenBSD Secure Shell server...
Sep 20 14:51:48 localhost sh[1650]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Sep 20 14:51:48 localhost systemd[1]: Started /etc/rc.local Compatibility.
Sep 20 14:51:48 localhost systemd[1]: Started Getty on tty1.
Sep 20 14:51:48 localhost systemd[1]: Reached target Login Prompts.
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/system-info
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/login
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/logout
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/icons/{name}/icon
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/find
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/snaps
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/snaps/{name}
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/snaps/{name}/conf
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/interfaces
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/assertions
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/assertions/{assertType}
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/events
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/changes/{id}
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/changes
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/create-user
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/buy
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/buy/methods
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:219: DEBUG: adding /v2/snapctl
Sep 20 14:51:48 localhost /usr/lib/snapd/snapd[1557]: daemon.go:209: DEBUG: init done in 66.610209ms
Sep 20 14:51:49 localhost /usr/lib/snapd/snapd[1557]: daemon.go:174: DEBUG: uid=0;@ GET /v2/snaps 9.62901ms 200
Sep 20 14:51:49 localhost kernel: [ 38.071227] IPv6: ADDRCONF(NETDEV_CHANGE): enxb827eb075031: link becomes ready
Sep 20 14:51:49 localhost kernel: [ 38.072418] smsc95xx 1-1.1:1.0 enxb827eb075031: link up, 100Mbps, full-duplex, lpa 0xC5E1
Sep 20 14:51:49 localhost dbus[1568]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Sep 20 14:51:49 localhost systemd-networkd[1583]: enxb827eb075031: Gained carrier
Sep 20 14:51:49 localhost systemd-networkd[1583]: enxb827eb075031: DHCPv4 address 192.168.1.83/24 via 192.168.1.1
Sep 20 14:51:49 localhost systemd-timesyncd[1467]: Network configuration changed, trying to establish connection.
Sep 20 14:51:49 localhost systemd[1]: Starting Hostname Service...
Sep 20 14:51:49 localhost dbus[1568]: [system] Successfully activated service 'org.freedesktop.hostname1'
Sep 20 14:51:49 localhost systemd[1]: Started Hostname Service.
Sep 20 14:51:49 localhost systemd-networkd[1583]: enxb827eb075031: Could not set hostname: The name org.freedesktop.PolicyKit1 was not provided by any .service files
Sep 20 14:51:49 localhost systemd[1]: Started Update resolvconf for networkd DNS.
Sep 20 14:51:50 localhost systemd[1]: Started OpenBSD Secure Shell server.
Sep 20 14:51:50 localhost systemd[1]: Reached target Multi-User System.
Sep 20 14:51:50 localhost systemd[1]: Reached target Graphical Interface.
Sep 20 14:51:50 localhost systemd[1]: Starting Update UTMP about System Runlevel Changes...
Sep 20 14:51:50 localhost systemd[1]: Starting Notify bootloader that boot was successful...
Sep 20 14:51:50 localhost systemd[1]: Started Update UTMP about System Runlevel Changes.
Sep 20 14:51:50 localhost snap[1590]: Snapweb: 2016/09/20 14:51:50 handlers.go:61: Initializing HTTP handlers...
Sep 20 14:51:50 localhost systemd[1]: Started Notify bootloader that boot was successful.
Sep 20 14:51:50 localhost systemd[1]: Startup finished in 27.686s (kernel) + 11.504s (userspace) = 39.190s.
Sep 20 14:51:50 localhost /usr/lib/snapd/snapd[1557]: daemon.go:174: DEBUG: uid=0;@ GET /v2/system-info 782.292µs 200
Sep 20 14:51:50 localhost snap[1590]: Snapweb: 2016/09/20 14:51:50 main.go:41: Snapweb starting...
Sep 20 14:51:50 localhost snap[1590]: Snapweb: 2016/09/20 14:51:50 avahi.go:49: Registering hostname: snapweb
Sep 20 14:51:50 localhost systemd[1]: Created slice system-console\x2dconf.slice.
Sep 20 14:51:50 localhost systemd[1]: Started Ubuntu Core Firstboot Configuration tty1.
Sep 20 14:51:50 localhost systemd[1]: Stopping Getty on tty1...
Sep 20 14:51:50 localhost systemd[1]: Stopped Getty on tty1.
Sep 20 14:51:51 localhost systemd-networkd[1583]: enxb827eb075031: Gained IPv6LL
Sep 20 14:51:51 localhost systemd-networkd[1583]: enxb827eb075031: Configured
Sep 20 14:51:51 localhost systemd-timesyncd[1467]: Network configuration changed, trying to establish connection.
Sep 20 14:51:51 localhost systemd-networkd[1583]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 14:52:14 localhost systemd-networkd[1583]: message repeated 4 times: [ enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument]
Sep 20 15:24:07 localhost systemd-timesyncd[1467]: Synchronized to time server 91.189.91.157:123 (ntp.ubuntu.com).
Sep 20 15:24:07 localhost systemd[1]: Time has been changed
Sep 20 15:24:07 localhost systemd[1]: snapd.refresh.timer: Adding 2h 3min 8.368559s random time.
Sep 20 15:24:07 localhost systemd[1]: snapd.refresh.timer: Adding 7min 28.188564s random time.
Sep 20 15:24:07 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:24:37 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:25:35 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:26:05 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 14:52:49 localhost rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="1594" x-info="http://www.rsyslog.com"] start
Sep 20 14:52:49 localhost systemd[1]: Started Nameserver information manager.
Sep 20 14:52:49 localhost systemd[1]: Starting udev Coldplug all Devices...
Sep 20 14:52:49 localhost systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 20 14:52:49 localhost systemd[1]: Mounting FUSE Control File System...
Sep 20 14:52:49 localhost systemd[1]: Starting Apply Kernel Variables...
Sep 20 14:52:49 localhost systemd[1]: Mounting Configuration File System...
Sep 20 14:52:49 localhost systemd[1]: Started Apply Kernel Variables.
Sep 20 14:52:49 localhost systemd[1]: Mounted Configuration File System.
Sep 20 14:52:49 localhost systemd[1]: Mounted FUSE Control File System.
Sep 20 14:52:49 localhost systemd[1]: Started Create Static Device Nodes in /dev.
Sep 20 14:52:49 localhost systemd[1]: Reached target Local File Systems (Pre).
Sep 20 14:52:49 localhost systemd[1]: var-lib-sudo.mount: Directory /var/lib/sudo to mount over is not empty, mounting anyway.
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/sudo...
Sep 20 14:52:49 localhost systemd[1]: Mounting /mnt...
Sep 20 14:52:49 localhost systemd[1]: Mounting /tmp...
Sep 20 14:52:49 localhost systemd[1]: Starting udev Kernel Device Manager...
Sep 20 14:52:49 localhost systemd[1]: Mounted /mnt.
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/sudo.
Sep 20 14:52:49 localhost systemd[1]: Mounted /tmp.
Sep 20 14:52:49 localhost systemd-udevd[1304]: Network interface NamePolicy= disabled on kernel command line, ignoring.
Sep 20 14:52:49 localhost systemd[1]: Started udev Coldplug all Devices.
Sep 20 14:52:49 localhost systemd[1]: Started udev Kernel Device Manager.
Sep 20 14:52:49 localhost systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 20 14:52:49 localhost systemd[1]: var-log.mount: Directory /var/log to mount over is not empty, mounting anyway.
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/log...
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/misc...
Sep 20 14:52:49 localhost systemd[1]: var-lib-extrausers.mount: Directory /var/lib/extrausers to mount over is not empty, mounting anyway.
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/extrausers...
Sep 20 14:52:49 localhost systemd[1]: Mounting /home...
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/dhcp...
Sep 20 14:52:49 localhost systemd[1]: var-lib-initramfs\x2dtools.mount: Directory /var/lib/initramfs-tools to mount over is not empty, mounting anyway.
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/initramfs-tools...
Sep 20 14:52:49 localhost systemd[1]: var-lib-systemd-random\x2dseed.mount: Failed to check directory /var/lib/systemd/random-seed: Not a directory
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/systemd/random-seed...
Sep 20 14:52:49 localhost systemd[1]: Mounting /snap...
Sep 20 14:52:49 localhost systemd[1]: var-lib-snapd.mount: Directory /var/lib/snapd to mount over is not empty, mounting anyway.
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/snapd...
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/dbus...
Sep 20 14:52:49 localhost systemd[1]: var-lib-apparmor.mount: Directory /var/lib/apparmor to mount over is not empty, mounting anyway.
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/apparmor...
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/console-conf...
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/logrotate...
Sep 20 14:52:49 localhost kernel: [ 0.000000] Booting Linux on physical CPU 0xf00
Sep 20 14:52:49 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuset
Sep 20 14:52:49 localhost kernel: [ 0.000000] Initializing cgroup subsys cpu
Sep 20 14:52:49 localhost kernel: [ 0.000000] Initializing cgroup subsys cpuacct
Sep 20 14:52:49 localhost kernel: [ 0.000000] Linux version 4.4.0-1021-raspi2 (buildd@bos01-arm64-001) (gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.2) ) #27-Ubuntu SMP Fri Aug 12 11:44:06 UTC 2016 (Ubuntu 4.4.0-1021.27-raspi2 4.4.16)
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/snap...
Sep 20 14:52:49 localhost kernel: [ 0.000000] CPU: ARMv7 Processor [410fc075] revision 5 (ARMv7), cr=10c5387d
Sep 20 14:52:49 localhost kernel: [ 0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/tmp...
Sep 20 14:52:49 localhost kernel: [ 0.000000] Machine model: Raspberry Pi 2 Model B Rev 1.1
Sep 20 14:52:49 localhost kernel: [ 0.000000] cma: Reserved 8 MiB at 0x3a000000
Sep 20 14:52:49 localhost kernel: [ 0.000000] Memory policy: Data cache writealloc
Sep 20 14:52:49 localhost kernel: [ 0.000000] On node 0 totalpages: 241664
Sep 20 14:52:49 localhost kernel: [ 0.000000] free_area_init_node: node 0, pgdat 80f9e100, node_mem_map b97b4000
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/systemd/rfkill...
Sep 20 14:52:49 localhost kernel: [ 0.000000] Normal zone: 2124 pages used for memmap
Sep 20 14:52:49 localhost kernel: [ 0.000000] Normal zone: 0 pages reserved
Sep 20 14:52:49 localhost kernel: [ 0.000000] Normal zone: 241664 pages, LIFO batch:31
Sep 20 14:52:49 localhost kernel: [ 0.000000] [bcm2709_smp_init_cpus] enter (1015a0->f3003010)
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/cache/apparmor...
Sep 20 14:52:49 localhost kernel: [ 0.000000] [bcm2709_smp_init_cpus] ncores=4
Sep 20 14:52:49 localhost kernel: [ 0.000000] PERCPU: Embedded 13 pages/cpu @bafaf000 s24076 r8192 d20980 u53248
Sep 20 14:52:49 localhost kernel: [ 0.000000] pcpu-alloc: s24076 r8192 d20980 u53248 alloc=13*4096
Sep 20 14:52:49 localhost kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1 [0] 2 [0] 3
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/waagent...
Sep 20 14:52:49 localhost kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 239540
Sep 20 14:52:49 localhost kernel: [ 0.000000] Kernel command line: dma.dmachans=0x7f35 bcm2708_fb.fbwidth=656 bcm2708_fb.fbheight=416 bcm2709.boardrev=0xa01041 bcm2709.serial=0x8c075031 smsc95xx.macaddr=B8:27:EB:07:50:31 bcm2708_fb.fbswap=1 bcm2709.uart_clock=3000000 bcm2709.disk_led_gpio=47 bcm2709.disk_led_active_low=0 vc_mem.mem_base=0x3dc00000 vc_mem.mem_size=0x3f000000 dwc_otg.lpm_enable=0 console=tty1,115200 elevator=deadline root=/dev/disk/by-label/writable net.ifnames=0 init=/lib/systemd/systemd ro panic=-1 fixrtc snap_core=ubuntu-core_658.snap snap_kernel=pi2-kernel_14.snap
Sep 20 14:52:49 localhost kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Sep 20 14:52:49 localhost systemd[1]: Mounting /var/lib/cloud...
Sep 20 14:52:49 localhost kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.000000] Memory: 929964K/966656K available (9942K kernel code, 723K rwdata, 3204K rodata, 1024K init, 837K bss, 28500K reserved, 8192K cma-reserved)
Sep 20 14:52:49 localhost kernel: [ 0.000000] Virtual kernel memory layout:
Sep 20 14:52:49 localhost kernel: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB)
Sep 20 14:52:49 localhost systemd[1]: Mounting /root...
Sep 20 14:52:49 localhost kernel: [ 0.000000] vmalloc : 0xbb800000 - 0xff800000 (1088 MB)
Sep 20 14:52:49 localhost systemd[1]: Mounted /home.
Sep 20 14:52:49 localhost kernel: [ 0.000000] lowmem : 0x80000000 - 0xbb000000 ( 944 MB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] modules : 0x7f000000 - 0x80000000 ( 16 MB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] .text : 0x80008000 - 0x80dd6894 (14139 kB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] .init : 0x80e00000 - 0x80f00000 (1024 kB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] .data : 0x80f00000 - 0x80fb4fc0 ( 724 kB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] .bss : 0x80fb7000 - 0x810887a4 ( 838 kB)
Sep 20 14:52:49 localhost kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Sep 20 14:52:49 localhost kernel: [ 0.000000] Hierarchical RCU implementation.
Sep 20 14:52:49 localhost kernel: [ 0.000000] Build-time adjustment of leaf fanout to 32.
Sep 20 14:52:49 localhost kernel: [ 0.000000] NR_IRQS:16 nr_irqs:16 16
Sep 20 14:52:49 localhost kernel: [ 0.000000] Architected cp15 timer(s) running at 19.20MHz (phys).
Sep 20 14:52:49 localhost kernel: [ 0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x46d987e47, max_idle_ns: 440795202767 ns
Sep 20 14:52:49 localhost kernel: [ 0.000011] sched_clock: 56 bits at 19MHz, resolution 52ns, wraps every 4398046511078ns
Sep 20 14:52:49 localhost kernel: [ 0.000033] Switching to timer-based delay loop, resolution 52ns
Sep 20 14:52:49 localhost kernel: [ 0.000383] Console: colour dummy device 80x30
Sep 20 14:52:49 localhost kernel: [ 0.001640] console [tty1] enabled
Sep 20 14:52:49 localhost systemd[1]: Mounted /snap.
Sep 20 14:52:49 localhost kernel: [ 0.001694] Calibrating delay loop (skipped), value calculated using timer frequency.. 38.40 BogoMIPS (lpj=76800)
Sep 20 14:52:49 localhost kernel: [ 0.001771] pid_max: default: 32768 minimum: 301
Sep 20 14:52:49 localhost kernel: [ 0.001985] Security Framework initialized
Sep 20 14:52:49 localhost kernel: [ 0.002032] Yama: becoming mindful.
Sep 20 14:52:49 localhost kernel: [ 0.002197] AppArmor: AppArmor initialized
Sep 20 14:52:49 localhost kernel: [ 0.002503] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.002556] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.003999] Disabling cpuset control group subsystem
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/snap.
Sep 20 14:52:49 localhost kernel: [ 0.004088] Initializing cgroup subsys io
Sep 20 14:52:49 localhost kernel: [ 0.004153] Initializing cgroup subsys memory
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/dbus.
Sep 20 14:52:49 localhost kernel: [ 0.004234] Initializing cgroup subsys devices
Sep 20 14:52:49 localhost kernel: [ 0.004289] Initializing cgroup subsys freezer
Sep 20 14:52:49 localhost kernel: [ 0.004356] Initializing cgroup subsys net_cls
Sep 20 14:52:49 localhost kernel: [ 0.004405] Initializing cgroup subsys perf_event
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/dhcp.
Sep 20 14:52:49 localhost kernel: [ 0.004455] Initializing cgroup subsys net_prio
Sep 20 14:52:49 localhost kernel: [ 0.004589] CPU: Testing write buffer coherency: ok
Sep 20 14:52:49 localhost kernel: [ 0.004706] ftrace: allocating 31616 entries in 93 pages
Sep 20 14:52:49 localhost kernel: [ 0.085673] CPU0: update cpu_capacity 1024
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/logrotate.
Sep 20 14:52:49 localhost kernel: [ 0.085752] CPU0: thread -1, cpu 0, socket 15, mpidr 80000f00
Sep 20 14:52:49 localhost kernel: [ 0.085790] [bcm2709_smp_prepare_cpus] enter
Sep 20 14:52:49 localhost kernel: [ 0.085962] Setting up static identity map for 0x100000 - 0x100058
Sep 20 14:52:49 localhost kernel: [ 0.092966] [bcm2709_boot_secondary] cpu:1 started (0) 17
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/log.
Sep 20 14:52:49 localhost kernel: [ 0.093268] [bcm2709_secondary_init] enter cpu:1
Sep 20 14:52:49 localhost kernel: [ 0.093329] CPU1: update cpu_capacity 1024
Sep 20 14:52:49 localhost kernel: [ 0.093338] CPU1: thread -1, cpu 1, socket 15, mpidr 80000f01
Sep 20 14:52:49 localhost kernel: [ 0.094229] [bcm2709_boot_secondary] cpu:2 started (0) 18
Sep 20 14:52:49 localhost kernel: [ 0.094471] [bcm2709_secondary_init] enter cpu:2
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/apparmor.
Sep 20 14:52:49 localhost kernel: [ 0.094506] CPU2: update cpu_capacity 1024
Sep 20 14:52:49 localhost kernel: [ 0.094514] CPU2: thread -1, cpu 2, socket 15, mpidr 80000f02
Sep 20 14:52:49 localhost kernel: [ 0.095293] [bcm2709_boot_secondary] cpu:3 started (0) 18
Sep 20 14:52:49 localhost kernel: [ 0.095506] [bcm2709_secondary_init] enter cpu:3
Sep 20 14:52:49 localhost kernel: [ 0.095539] CPU3: update cpu_capacity 1024
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/tmp.
Sep 20 14:52:49 localhost kernel: [ 0.095547] CPU3: thread -1, cpu 3, socket 15, mpidr 80000f03
Sep 20 14:52:49 localhost kernel: [ 0.095654] Brought up 4 CPUs
Sep 20 14:52:49 localhost kernel: [ 0.095766] SMP: Total of 4 processors activated (153.60 BogoMIPS).
Sep 20 14:52:49 localhost kernel: [ 0.095799] CPU: All CPU(s) started in HYP mode.
Sep 20 14:52:49 localhost kernel: [ 0.095828] CPU: Virtualization extensions available.
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/initramfs-tools.
Sep 20 14:52:49 localhost kernel: [ 0.096990] devtmpfs: initialized
Sep 20 14:52:49 localhost kernel: [ 0.109156] evm: security.selinux
Sep 20 14:52:49 localhost kernel: [ 0.109202] evm: security.SMACK64
Sep 20 14:52:49 localhost kernel: [ 0.109231] evm: security.SMACK64EXEC
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/misc.
Sep 20 14:52:49 localhost kernel: [ 0.109259] evm: security.SMACK64TRANSMUTE
Sep 20 14:52:49 localhost kernel: [ 0.109288] evm: security.SMACK64MMAP
Sep 20 14:52:49 localhost kernel: [ 0.109316] evm: security.ima
Sep 20 14:52:49 localhost kernel: [ 0.109343] evm: security.capability
Sep 20 14:52:49 localhost kernel: [ 0.110605] VFP support v0.3: implementor 41 architecture 2 part 30 variant 7 rev 5
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/extrausers.
Sep 20 14:52:49 localhost kernel: [ 0.111313] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 20 14:52:49 localhost kernel: [ 0.112583] pinctrl core: initialized pinctrl subsystem
Sep 20 14:52:49 localhost kernel: [ 0.114303] NET: Registered protocol family 16
Sep 20 14:52:49 localhost kernel: [ 0.120555] DMA: preallocated 4096 KiB pool for atomic coherent allocations
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/snapd.
Sep 20 14:52:49 localhost kernel: [ 0.133224] cpuidle: using governor ladder
Sep 20 14:52:49 localhost kernel: [ 0.145246] cpuidle: using governor menu
Sep 20 14:52:49 localhost kernel: [ 0.154895] No ATAGs?
Sep 20 14:52:49 localhost kernel: [ 0.154958] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
Sep 20 14:52:49 localhost kernel: [ 0.155030] hw-breakpoint: maximum watchpoint size is 8 bytes.
Sep 20 14:52:49 localhost kernel: [ 0.155347] Serial: AMBA PL011 UART driver
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/systemd/random-seed.
Sep 20 14:52:49 localhost kernel: [ 0.155705] 3f201000.uart: ttyAMA0 at MMIO 0x3f201000 (irq = 87, base_baud = 0) is a PL011 rev2
Sep 20 14:52:49 localhost kernel: [ 0.156553] bcm2835-mbox 3f00b880.mailbox: mailbox enabled
Sep 20 14:52:49 localhost kernel: [ 0.224884] bcm2835-dma 3f007000.dma: DMA legacy API manager at f3007000, dmachans=0x1
Sep 20 14:52:49 localhost kernel: [ 0.230788] SCSI subsystem initialized
Sep 20 14:52:49 localhost kernel: [ 0.231181] libata version 3.00 loaded.
Sep 20 14:52:49 localhost kernel: [ 0.231693] usbcore: registered new interface driver usbfs
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/console-conf.
Sep 20 14:52:49 localhost kernel: [ 0.231836] usbcore: registered new interface driver hub
Sep 20 14:52:49 localhost kernel: [ 0.232047] usbcore: registered new device driver usb
Sep 20 14:52:49 localhost kernel: [ 0.232467] pps_core: LinuxPPS API ver. 1 registered
Sep 20 14:52:49 localhost kernel: [ 0.232505] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Sep 20 14:52:49 localhost kernel: [ 0.232602] PTP clock support registered
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/cloud.
Sep 20 14:52:49 localhost kernel: [ 0.233786] raspberrypi-firmware soc:firmware: Attached to firmware from 2016-03-07 17:08
Sep 20 14:52:49 localhost kernel: [ 0.238426] Advanced Linux Sound Architecture Driver Initialized.
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/cache/apparmor.
Sep 20 14:52:49 localhost kernel: [ 0.239872] NetLabel: Initializing
Sep 20 14:52:49 localhost kernel: [ 0.239910] NetLabel: domain hash size = 128
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/waagent.
Sep 20 14:52:49 localhost systemd[1]: Mounted /root.
Sep 20 14:52:49 localhost systemd[1]: Mounted /var/lib/systemd/rfkill.
Sep 20 14:52:49 localhost systemd[1]: Found device /dev/mmcblk0p1.
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90010, key code 190): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90011, key code 148): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90012, key code 152): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90013, key code 236): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90014, key code 238): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90015, key code 212): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90016, key code 227): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90017, key code 191): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x90019, key code 205): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x9001a, key code 225): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x9001b, key code 224): Invalid argument
Sep 20 14:52:49 localhost systemd-udevd[1323]: Error calling EVIOCSKEYCODE on device node '/dev/input/event0' (scan code 0x9001d, key code 372): Invalid argument
Sep 20 14:52:49 localhost systemd[1]: Starting File System Check on /dev/mmcblk0p1...
Sep 20 14:52:49 localhost systemd[1]: Starting Load/Save Random Seed...
Sep 20 14:52:49 localhost kernel: [ 0.239940] NetLabel: protocols = UNLABELED CIPSOv4
Sep 20 14:52:49 localhost kernel: [ 0.240058] NetLabel: unlabeled traffic allowed by default
Sep 20 14:52:49 localhost systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 20 14:52:49 localhost kernel: [ 0.241535] clocksource: Switched to clocksource arch_sys_counter
Sep 20 14:52:49 localhost kernel: [ 0.338045] FS-Cache: Loaded
Sep 20 14:52:49 localhost kernel: [ 0.338552] CacheFiles: Loaded
Sep 20 14:52:49 localhost kernel: [ 0.339042] AppArmor: AppArmor Filesystem Enabled
Sep 20 14:52:49 localhost systemd[1]: Mounting Mount unit for snapweb...
Sep 20 14:52:49 localhost kernel: [ 0.358863] NET: Registered protocol family 2
Sep 20 14:52:49 localhost kernel: [ 0.359981] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.360149] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.360366] TCP: Hash tables configured (established 8192 bind 8192)
Sep 20 14:52:49 localhost systemd[1]: Mounting Mount unit for pi2-kernel...
Sep 20 14:52:49 localhost kernel: [ 0.360516] UDP hash table entries: 512 (order: 2, 16384 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.360605] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Sep 20 14:52:49 localhost kernel: [ 0.361110] NET: Registered protocol family 1
Sep 20 14:52:49 localhost kernel: [ 0.361905] RPC: Registered named UNIX socket transport module.
Sep 20 14:52:49 localhost systemd[1]: Mounting Mount unit for ubuntu-core...
Sep 20 14:52:49 localhost kernel: [ 0.361950] RPC: Registered udp transport module.
Sep 20 14:52:49 localhost kernel: [ 0.361982] RPC: Registered tcp transport module.
Sep 20 14:52:49 localhost kernel: [ 0.362013] RPC: Registered tcp NFSv4.1 backchannel transport module.
Sep 20 14:52:49 localhost kernel: [ 0.362427] Trying to unpack rootfs image as initramfs...
Sep 20 14:52:49 localhost kernel: [ 3.288342] Freeing initrd memory: 2960K (ba849000 - bab2d000)
Sep 20 14:52:49 localhost systemd[1]: Mounting Mount unit for pi2...
Sep 20 14:52:49 localhost kernel: [ 3.297639] hw perfevents: enabled with armv7_cortex_a7 PMU driver, 5 counters available
Sep 20 14:52:49 localhost kernel: [ 3.300140] futex hash table entries: 1024 (order: 4, 65536 bytes)
Sep 20 14:52:49 localhost kernel: [ 3.300394] audit: initializing netlink subsys (disabled)
Sep 20 14:52:49 localhost kernel: [ 3.300549] audit: type=2000 audit(3.259:1): initialized
Sep 20 14:52:49 localhost systemd[1]: Mounted Mount unit for snapweb.
Sep 20 14:52:49 localhost kernel: [ 3.301966] Initialise system trusted keyring
Sep 20 14:52:49 localhost kernel: [ 3.317472] zbud: loaded
Sep 20 14:52:49 localhost kernel: [ 3.318416] VFS: Disk quotas dquot_6.6.0
Sep 20 14:52:49 localhost kernel: [ 3.318799] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Sep 20 14:52:49 localhost kernel: [ 3.321367] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 20 14:52:49 localhost systemd[1]: Mounted Mount unit for ubuntu-core.
Sep 20 14:52:49 localhost kernel: [ 3.324138] FS-Cache: Netfs 'nfs' registered for caching
Sep 20 14:52:49 localhost kernel: [ 3.324925] NFS: Registering the id_resolver key type
Sep 20 14:52:49 localhost kernel: [ 3.325020] Key type id_resolver registered
Sep 20 14:52:49 localhost kernel: [ 3.325054] Key type id_legacy registered
Sep 20 14:52:49 localhost kernel: [ 3.325114] nfs4filelayout_init: NFSv4 File Layout Driver Registering...
Sep 20 14:52:49 localhost kernel: [ 3.325611] fuse init (API version 7.23)
Sep 20 14:52:49 localhost systemd[1]: Mounted Mount unit for pi2.
Sep 20 14:52:49 localhost kernel: [ 3.328198] Key type big_key registered
Sep 20 14:52:49 localhost kernel: [ 3.336122] Key type asymmetric registered
Sep 20 14:52:49 localhost kernel: [ 3.336183] Asymmetric key parser 'x509' registered
Sep 20 14:52:49 localhost kernel: [ 3.336384] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 20 14:52:49 localhost systemd[1]: Mounted Mount unit for pi2-kernel.
Sep 20 14:52:49 localhost kernel: [ 3.336677] io scheduler noop registered
Sep 20 14:52:49 localhost kernel: [ 3.336726] io scheduler deadline registered (default)
Sep 20 14:52:49 localhost kernel: [ 3.336828] io scheduler cfq registered
Sep 20 14:52:49 localhost kernel: [ 3.341698] BCM2708FB: allocated DMA memory fa400000
Sep 20 14:52:49 localhost kernel: [ 3.341783] BCM2708FB: allocated DMA channel 0 @ f3007000
Sep 20 14:52:49 localhost systemd[1]: Started Load/Save Random Seed.
Sep 20 14:52:49 localhost kernel: [ 3.346474] Console: switching to colour frame buffer device 82x26
Sep 20 14:52:49 localhost kernel: [ 4.330559] bcm2835-rng 3f104000.rng: hwrng registered
Sep 20 14:52:49 localhost kernel: [ 4.332340] vc-cma: Videocore CMA driver
Sep 20 14:52:49 localhost kernel: [ 4.333917] vc-cma: vc_cma_base = 0x00000000
Sep 20 14:52:49 localhost systemd-fsck[1409]: fsck.fat 3.0.28 (2015-05-16)
Sep 20 14:52:49 localhost kernel: [ 4.335405] vc-cma: vc_cma_size = 0x00000000 (0 MiB)
Sep 20 14:52:49 localhost kernel: [ 4.336846] vc-cma: vc_cma_initial = 0x00000000 (0 MiB)
Sep 20 14:52:49 localhost kernel: [ 4.338650] vc-mem: phys_addr:0x00000000 mem_base=0x3dc00000 mem_size:0x3f000000(1008 MiB)
Sep 20 14:52:49 localhost kernel: [ 4.371872] brd: module loaded
Sep 20 14:52:49 localhost systemd-fsck[1409]: 0x41: Dirty bit is set. Fs was not properly unmounted and some data may be corrupt.
Sep 20 14:52:49 localhost kernel: [ 4.386584] loop: module loaded
Sep 20 14:52:49 localhost kernel: [ 4.389205] vchiq: vchiq_init_state: slot_zero = 0xba480000, is_master = 0
Sep 20 14:52:49 localhost kernel: [ 4.394172] Loading iSCSI transport class v2.0-870.
Sep 20 14:52:49 localhost kernel: [ 4.398000] libphy: Fixed MDIO Bus: probed
Sep 20 14:52:49 localhost systemd-fsck[1409]: Automatically removing dirty bit.
Sep 20 14:52:49 localhost kernel: [ 4.399568] tun: Universal TUN/TAP device driver, 1.6
Sep 20 14:52:49 localhost kernel: [ 4.401047] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Sep 20 14:52:49 localhost kernel: [ 4.402951] PPP generic driver version 2.4.2
Sep 20 14:52:49 localhost kernel: [ 4.404888] usbcore: registered new interface driver smsc95xx
Sep 20 14:52:49 localhost kernel: [ 4.406534] dwc_otg: version 3.00a 10-AUG-2012 (platform bus)
Sep 20 14:52:49 localhost kernel: [ 4.608450] Core Release: 2.80a
Sep 20 14:52:49 localhost kernel: [ 4.609999] Setting default values for core params
Sep 20 14:52:49 localhost kernel: [ 4.611579] Finished setting default values for core params
Sep 20 14:52:49 localhost kernel: [ 4.813605] Using Buffer DMA mode
Sep 20 14:52:49 localhost systemd-fsck[1409]: Performing changes.
Sep 20 14:52:49 localhost kernel: [ 4.815123] Periodic Transfer Interrupt Enhancement - disabled
Sep 20 14:52:49 localhost kernel: [ 4.816678] Multiprocessor Interrupt Enhancement - disabled
Sep 20 14:52:49 localhost kernel: [ 4.818275] OTG VER PARAM: 0, OTG VER FLAG: 0
Sep 20 14:52:49 localhost kernel: [ 4.819893] Dedicated Tx FIFOs mode
Sep 20 14:52:49 localhost kernel: [ 4.822022] WARN::dwc_otg_hcd_init:1047: FIQ DMA bounce buffers: virt = 0xba414000 dma = 0xfa414000 len=9024
Sep 20 14:52:49 localhost systemd-fsck[1409]: /dev/mmcblk0p1: 22 files, 34082/258078 clusters
Sep 20 14:52:49 localhost systemd[1]: Started File System Check on /dev/mmcblk0p1.
Sep 20 14:52:49 localhost systemd[1]: Started Flush Journal to Persistent Storage.
Sep 20 14:52:49 localhost systemd[1]: Mounting /boot/uboot...
Sep 20 14:52:49 localhost kernel: [ 4.825352] FIQ FSM acceleration enabled for :
Sep 20 14:52:49 localhost kernel: [ 4.825352] Non-periodic Split Transactions
Sep 20 14:52:49 localhost kernel: [ 4.825352] Periodic Split Transactions
Sep 20 14:52:49 localhost systemd[1]: Started File System Check Daemon to report status.
Sep 20 14:52:49 localhost kernel: [ 4.825352] High-Speed Isochronous Endpoints
Sep 20 14:52:49 localhost kernel: [ 4.831912] dwc_otg: Microframe scheduler enabled
Sep 20 14:52:49 localhost kernel: [ 4.831998] WARN::hcd_init_fiq:413: FIQ on core 1 at 0x807514f0
Sep 20 14:52:49 localhost systemd[1]: Mounted /boot/uboot.
Sep 20 14:52:49 localhost kernel: [ 4.833648] WARN::hcd_init_fiq:414: FIQ ASM at 0x80751854 length 36
Sep 20 14:52:49 localhost kernel: [ 4.835273] WARN::hcd_init_fiq:439: MPHI regs_base at 0xbc13e000
Sep 20 14:52:49 localhost kernel: [ 4.836952] dwc_otg 3f980000.usb: DWC OTG Controller
Sep 20 14:52:49 localhost kernel: [ 4.838613] dwc_otg 3f980000.usb: new USB bus registered, assigned bus number 1
Sep 20 14:52:49 localhost kernel: [ 4.840272] dwc_otg 3f980000.usb: irq 62, io mem 0x00000000
Sep 20 14:52:49 localhost kernel: [ 4.841926] Init: Port Power? op_state=1
Sep 20 14:52:49 localhost systemd[1]: Reached target Local File Systems.
Sep 20 14:52:49 localhost kernel: [ 4.843474] Init: Power Port (0)
Sep 20 14:52:49 localhost kernel: [ 4.845294] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Sep 20 14:52:49 localhost kernel: [ 4.846926] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 20 14:52:49 localhost kernel: [ 4.848512] usb usb1: Product: DWC OTG Controller
Sep 20 14:52:49 localhost kernel: [ 4.850088] usb usb1: Manufacturer: Linux 4.4.0-1021-raspi2 dwc_otg_hcd
Sep 20 14:52:49 localhost systemd[1]: Starting Create Volatile Files and Directories...
Sep 20 14:52:49 localhost kernel: [ 4.851671] usb usb1: SerialNumber: 3f980000.usb
Sep 20 14:52:49 localhost kernel: [ 4.854422] hub 1-0:1.0: USB hub found
Sep 20 14:52:49 localhost kernel: [ 4.856031] hub 1-0:1.0: 1 port detected
Sep 20 14:52:49 localhost kernel: [ 4.858376] dwc_otg: FIQ enabled
Sep 20 14:52:49 localhost systemd[1]: Starting LSB: AppArmor initialization...
Sep 20 14:52:49 localhost kernel: [ 4.858389] dwc_otg: NAK holdoff enabled
Sep 20 14:52:49 localhost kernel: [ 4.858399] dwc_otg: FIQ split-transaction FSM enabled
Sep 20 14:52:49 localhost kernel: [ 4.858442] Module dwc_common_port init
Sep 20 14:52:49 localhost kernel: [ 4.859079] usbcore: registered new interface driver usb-storage
Sep 20 14:52:49 localhost kernel: [ 4.861381] mousedev: PS/2 mouse device common for all mice
Sep 20 14:52:49 localhost kernel: [ 4.864206] i2c /dev entries driver
Sep 20 14:52:49 localhost systemd-tmpfiles[1445]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Sep 20 14:52:49 localhost kernel: [ 4.868263] device-mapper: uevent: version 1.0.3
Sep 20 14:52:49 localhost kernel: [ 4.870510] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Sep 20 14:52:49 localhost kernel: [ 4.873920] bcm2835-cpufreq: min=600000 max=900000
Sep 20 14:52:49 localhost kernel: [ 4.878131] sdhci: Secure Digital Host Controller Interface driver
Sep 20 14:52:49 localhost kernel: [ 4.879230] sdhci: Copyright(c) Pierre Ossman
Sep 20 14:52:49 localhost systemd[1]: Started Create Volatile Files and Directories.
Sep 20 14:52:49 localhost kernel: [ 4.880623] sdhost: log_buf @ ba413000 (fa413000)
Sep 20 14:52:49 localhost kernel: [ 4.953559] mmc0: sdhost-bcm2835 loaded - DMA enabled (>1)
Sep 20 14:52:49 localhost kernel: [ 4.954848] sdhci-pltfm: SDHCI platform and OF driver helper
Sep 20 14:52:49 localhost systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 20 14:52:49 localhost kernel: [ 4.956659] ledtrig-cpu: registered to indicate activity on CPUs
Sep 20 14:52:49 localhost kernel: [ 4.957935] hidraw: raw HID events driver (C) Jiri Kosina
Sep 20 14:52:49 localhost kernel: [ 4.959230] usbcore: registered new interface driver usbhid
Sep 20 14:52:49 localhost kernel: [ 4.960334] usbhid: USB HID core driver
Sep 20 14:52:49 localhost kernel: [ 4.963233] Initializing XFRM netlink socket
Sep 20 14:52:49 localhost systemd[1]: Starting Network Time Synchronization...
Sep 20 14:52:49 localhost kernel: [ 4.965381] NET: Registered protocol family 10
Sep 20 14:52:49 localhost kernel: [ 4.967733] sit: IPv6 over IPv4 tunneling driver
Sep 20 14:52:49 localhost kernel: [ 4.969712] NET: Registered protocol family 17
Sep 20 14:52:49 localhost kernel: [ 4.970923] Key type dns_resolver registered
Sep 20 14:52:49 localhost kernel: [ 4.972591] ThumbEE CPU extension supported.
Sep 20 14:52:49 localhost kernel: [ 4.973669] Registering SWP/SWPB emulation handler
Sep 20 14:52:49 localhost kernel: [ 4.975693] registered taskstats version 1
Sep 20 14:52:49 localhost systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 20 14:52:49 localhost kernel: [ 4.976793] Loading compiled-in X.509 certificates
Sep 20 14:52:49 localhost kernel: [ 4.985711] Loaded X.509 cert 'Build time autogenerated kernel key: ec576ec8f57c4f9f6200a6ecb4084505f0ac954f'
Sep 20 14:52:49 localhost kernel: [ 4.987874] zswap: loaded using pool lzo/zbud
Sep 20 14:52:49 localhost kernel: [ 4.999037] Key type trusted registered
Sep 20 14:52:49 localhost kernel: [ 5.008925] mmc0: host does not support reading read-only switch, assuming write-enable
Sep 20 14:52:49 localhost kernel: [ 5.013217] mmc0: new high speed SDHC card at address 0007
Sep 20 14:52:49 localhost apparmor[1447]: * Starting AppArmor profiles
Sep 20 14:52:49 localhost kernel: [ 5.017965] mmcblk0: mmc0:0007 SD32G 29.0 GiB
Sep 20 14:52:49 localhost kernel: [ 5.019831] Key type encrypted registered
Sep 20 14:52:49 localhost kernel: [ 5.021005] AppArmor: AppArmor sha1 policy hashing enabled
Sep 20 14:52:49 localhost kernel: [ 5.021044] mmcblk0: p1 p2
Sep 20 14:52:49 localhost systemd[1]: Started Network Time Synchronization.
Sep 20 14:52:49 localhost systemd[1]: Reached target System Time Synchronized.
Sep 20 14:52:49 localhost apparmor[1447]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Sep 20 14:52:49 localhost apparmor[1447]: ...done.
Sep 20 14:52:49 localhost systemd[1]: Started LSB: AppArmor initialization.
Sep 20 14:52:49 localhost systemd[1]: Reached target System Initialization.
Sep 20 14:52:49 localhost systemd[1]: snapd.refresh.timer: Adding 1h 33min 23.114639s random time.
Sep 20 14:52:49 localhost systemd[1]: snapd.refresh.timer: Adding 3min 35.444094s random time.
Sep 20 14:52:49 localhost systemd[1]: Started Timer to automatically refresh installed snaps.
Sep 20 14:52:49 localhost systemd[1]: Started Trigger resolvconf update for networkd DNS.
Sep 20 14:52:49 localhost systemd[1]: Reached target Paths.
Sep 20 14:52:49 localhost systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 20 14:52:49 localhost systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 20 14:52:49 localhost systemd[1]: Reached target Timers.
Sep 20 14:52:49 localhost systemd[1]: Starting Socket activation for snappy daemon.
Sep 20 14:52:49 localhost systemd[1]: Starting Raise network interfaces...
Sep 20 14:52:49 localhost systemd[1]: Listening on Socket activation for snappy daemon.
Sep 20 14:52:49 localhost systemd[1]: Reached target Sockets.
Sep 20 14:52:49 localhost systemd[1]: Reached target Basic System.
Sep 20 14:52:49 localhost systemd[1]: Starting Generate sshd host keys...
Sep 20 14:52:49 localhost systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Sep 20 14:52:49 localhost systemd[1]: Starting Login Service...
Sep 20 14:52:49 localhost systemd[1]: Starting Ubuntu FAN network setup...
Sep 20 14:52:49 localhost systemd[1]: Started D-Bus System Message Bus.
Sep 20 14:52:49 localhost dbus[1543]: [system] AppArmor D-Bus mediation is enabled
Sep 20 14:52:49 localhost dbus[1543]: [system] Successfully activated service 'org.freedesktop.systemd1'
Sep 20 14:52:49 localhost systemd[1]: Starting Network Service...
Sep 20 14:52:49 localhost systemd[1]: Starting Permit User Sessions...
Sep 20 14:52:49 localhost systemd[1]: Started Regular background program processing daemon.
Sep 20 14:52:49 localhost systemd[1]: Started Service for snap application snapweb.snapweb.
Sep 20 14:52:49 localhost kernel: [ 5.023184] ima: No TPM chip found, activating TPM-bypass!
Sep 20 14:52:49 localhost kernel: [ 5.024385] evm: HMAC attrs: 0x1
Sep 20 14:52:49 localhost systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Sep 20 14:52:49 localhost cron[1584]: (CRON) INFO (pidfile fd = 3)
Sep 20 14:52:49 localhost systemd[1]: Started Cgroup management daemon.
Sep 20 14:52:49 localhost systemd[1]: Starting System Logging Service...
Sep 20 14:52:49 localhost cron[1584]: (CRON) INFO (Running @reboot jobs)
Sep 20 14:52:49 localhost systemd[1]: Started Snappy daemon.
Sep 20 14:52:49 localhost systemd[1]: Started Generate sshd host keys.
Sep 20 14:52:49 localhost systemd[1]: Started Ubuntu FAN network setup.
Sep 20 14:52:49 localhost rsyslogd-2039: Could not open output pipe '/dev/xconsole':: No such file or directory [v8.16.0 try http://www.rsyslog.com/e/2039 ]
Sep 20 14:52:49 localhost systemd[1]: Started Permit User Sessions.
Sep 20 14:52:49 localhost systemd[1]: Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Sep 20 14:52:49 localhost systemd-networkd[1572]: Enumeration completed
Sep 20 14:52:49 localhost systemd[1]: Started Network Service.
Sep 20 14:52:49 localhost systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Sep 20 14:52:49 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 14:53:19 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 14:52:49 localhost systemd[1]: Started System Logging Service.
Sep 20 14:52:49 localhost kernel: [ 5.025555] vc-sm: Videocore shared memory driver
Sep 20 14:52:49 localhost kernel: [ 5.026641] [vc_sm_connected_init]: start
Sep 20 14:52:49 localhost kernel: [ 5.028316] [vc_sm_connected_init]: end - returning 0
Sep 20 14:52:49 localhost kernel: [ 5.029603] hctosys: unable to open rtc device (rtc0)
Sep 20 14:52:49 localhost kernel: [ 5.031532] PM: Hibernation image not present or could not be loaded.
Sep 20 14:52:49 localhost rsyslogd-2222: command 'KLogPermitNonKernelFacility' is currently not permitted - did you already set it via a RainerScript command (v6+ config)? [v8.16.0 try http://www.rsyslog.com/e/2222 ]
Sep 20 14:52:49 localhost rsyslogd-2307: warning: ~ action is deprecated, consider using the 'stop' statement instead [v8.16.0 try http://www.rsyslog.com/e/2307 ]
Sep 20 14:52:49 localhost rsyslogd: rsyslogd's groupid changed to 114
Sep 20 14:52:49 localhost rsyslogd: rsyslogd's userid changed to 108
Sep 20 14:52:49 localhost kernel: [ 5.031584] ALSA device list:
Sep 20 14:52:49 localhost kernel: [ 5.032653] No soundcards found.
Sep 20 14:52:49 localhost kernel: [ 5.035210] Freeing unused kernel memory: 1024K (80e00000 - 80f00000)
Sep 20 14:52:49 localhost kernel: [ 5.061773] Indeed it is in host mode hprt0 = 00021501
Sep 20 14:52:49 localhost kernel: [ 5.112348] random: systemd-udevd urandom read with 0 bits of entropy available
Sep 20 14:52:49 localhost kernel: [ 5.233600] usb 1-1: new high-speed USB device number 2 using dwc_otg
Sep 20 14:52:49 localhost kernel: [ 5.234988] Indeed it is in host mode hprt0 = 00001101
Sep 20 14:52:49 localhost kernel: [ 5.421899] usb 1-1: New USB device found, idVendor=0424, idProduct=9514
Sep 20 14:52:49 localhost kernel: [ 5.423080] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 20 14:52:49 localhost kernel: [ 5.425251] hub 1-1:1.0: USB hub found
Sep 20 14:52:49 localhost kernel: [ 5.426592] hub 1-1:1.0: 5 ports detected
Sep 20 14:52:49 localhost kernel: [ 5.701692] usb 1-1.1: new high-speed USB device number 3 using dwc_otg
Sep 20 14:52:49 localhost kernel: [ 5.806290] usb 1-1.1: New USB device found, idVendor=0424, idProduct=ec00
Sep 20 14:52:49 localhost kernel: [ 5.807644] usb 1-1.1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Sep 20 14:52:49 localhost kernel: [ 5.813062] smsc95xx v1.0.4
Sep 20 14:52:49 localhost kernel: [ 5.876818] smsc95xx 1-1.1:1.0 eth0: register 'smsc95xx' at usb-3f980000.usb-1.1, smsc95xx USB 2.0 Ethernet, b8:27:eb:07:50:31
Sep 20 14:52:49 localhost kernel: [ 5.965682] usb 1-1.3: new low-speed USB device number 4 using dwc_otg
Sep 20 14:52:49 localhost kernel: [ 6.102150] usb 1-1.3: New USB device found, idVendor=17ef, idProduct=6009
Sep 20 14:52:49 localhost kernel: [ 6.103903] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Sep 20 14:52:49 localhost kernel: [ 6.105725] usb 1-1.3: Product: ThinkPad USB Keyboard with TrackPoint
Sep 20 14:52:49 localhost kernel: [ 6.107174] usb 1-1.3: Manufacturer: Lite-On Technology Corp.
Sep 20 14:52:49 localhost kernel: [ 7.287586] smsc95xx 1-1.1:1.0 enxb827eb075031: renamed from eth0
Sep 20 14:52:49 localhost kernel: [ 7.617503] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Sep 20 14:52:49 localhost kernel: [ 7.621230] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Sep 20 14:52:49 localhost kernel: [ 10.058650] EXT4-fs (mmcblk0p2): recovery complete
Sep 20 14:52:49 localhost kernel: [ 10.078807] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: errors=remount-ro
Sep 20 14:52:49 localhost kernel: [ 10.253259] EXT4-fs (mmcblk0p2): couldn't mount as ext3 due to feature incompatibilities
Sep 20 14:52:49 localhost kernel: [ 10.257182] EXT4-fs (mmcblk0p2): couldn't mount as ext2 due to feature incompatibilities
Sep 20 14:52:49 localhost kernel: [ 10.296431] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
Sep 20 14:52:49 localhost kernel: [ 14.919779] bcm2835-wdt 3f100000.watchdog: Broadcom BCM2835 watchdog timer
Sep 20 14:52:49 localhost kernel: [ 14.932085] gpiomem-bcm2835 3f200000.gpiomem: Initialised: Registers at 0x3f200000
Sep 20 14:52:49 localhost kernel: [ 14.964543] bcm2708_i2c 3f205000.i2c: BSC0 Controller at 0x3f205000 (irq 83) (baudrate 100000)
Sep 20 14:52:49 localhost kernel: [ 14.965284] bcm2708_i2c 3f804000.i2c: BSC1 Controller at 0x3f804000 (irq 83) (baudrate 100000)
Sep 20 14:52:49 localhost kernel: [ 15.112860] input: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.0/0003:17EF:6009.0001/input/input0
Sep 20 14:52:49 localhost kernel: [ 15.167531] lenovo 0003:17EF:6009.0001: input,hidraw0: USB HID v1.10 Keyboard [Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint] on usb-3f980000.usb-1.3/input0
Sep 20 14:52:49 localhost kernel: [ 15.172550] input: Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint as /devices/platform/soc/3f980000.usb/usb1/1-1/1-1.3/1-1.3:1.1/0003:17EF:6009.0002/input/input1
Sep 20 14:52:49 localhost kernel: [ 15.227429] lenovo 0003:17EF:6009.0002: input,hiddev0,hidraw1: USB HID v1.10 Mouse [Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint] on usb-3f980000.usb-1.3/input1
Sep 20 14:52:49 localhost kernel: [ 15.944368] evbug: Connected device: input0 (Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint at usb-3f980000.usb-1.3/input0)
Sep 20 14:52:49 localhost kernel: [ 15.944397] evbug: Connected device: input1 (Lite-On Technology Corp. ThinkPad USB Keyboard with TrackPoint at usb-3f980000.usb-1.3/input1)
Sep 20 14:52:49 localhost kernel: [ 19.432780] audit: type=1400 audit(1474383167.915:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1501 comm="apparmor_parser"
Sep 20 14:52:49 localhost kernel: [ 19.447134] audit: type=1400 audit(1474383167.931:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=1500 comm="apparmor_parser"
Sep 20 14:52:49 localhost kernel: [ 19.447205] audit: type=1400 audit(1474383167.931:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1500 comm="apparmor_parser"
Sep 20 14:52:49 localhost kernel: [ 19.447245] audit: type=1400 audit(1474383167.931:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=1500 comm="apparmor_parser"
Sep 20 14:52:49 localhost kernel: [ 19.447282] audit: type=1400 audit(1474383167.931:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=1500 comm="apparmor_parser"
Sep 20 14:52:49 localhost kernel: [ 19.532114] audit: type=1400 audit(1474383168.015:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="snap.snapweb.snapweb" pid=1519 comm="apparmor_parser"
Sep 20 14:52:49 localhost kernel: [ 20.482396] cgroup: new mount options do not match the existing superblock, will be ignored
Sep 20 14:52:49 localhost kernel: [ 20.665283] smsc95xx 1-1.1:1.0 enxb827eb075031: hardware isn't capable of remote wakeup
Sep 20 14:52:49 localhost kernel: [ 20.665849] IPv6: ADDRCONF(NETDEV_UP): enxb827eb075031: link is not ready
Sep 20 14:52:49 localhost systemd[1]: Starting Update resolvconf for networkd DNS...
Sep 20 14:52:49 localhost systemd[1]: Started Raise network interfaces.
Sep 20 14:52:49 localhost systemd[1]: Started Login Service.
Sep 20 14:52:49 localhost sh[1626]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Sep 20 14:52:49 localhost systemd[1]: Reached target Network.
Sep 20 14:52:49 localhost systemd[1]: Starting OpenBSD Secure Shell server...
Sep 20 14:52:49 localhost systemd[1]: Starting /etc/rc.local Compatibility...
Sep 20 14:52:49 localhost systemd[1]: Started /etc/rc.local Compatibility.
Sep 20 14:52:49 localhost kernel: [ 21.339621] random: nonblocking pool is initialized
Sep 20 14:52:49 localhost systemd[1]: Started Getty on tty1.
Sep 20 14:52:49 localhost systemd[1]: Reached target Login Prompts.
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/system-info
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/login
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/logout
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/icons/{name}/icon
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/find
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/snaps
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/snaps/{name}
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/snaps/{name}/conf
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/interfaces
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/assertions
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/assertions/{assertType}
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/events
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/changes/{id}
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/changes
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/create-user
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/buy
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/buy/methods
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:219: DEBUG: adding /v2/snapctl
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:209: DEBUG: init done in 64.674479ms
Sep 20 14:52:50 localhost /usr/lib/snapd/snapd[1597]: daemon.go:174: DEBUG: uid=0;@ GET /v2/snaps 73.197135ms 200
Sep 20 14:52:50 localhost sh[1626]: sed: can't read /run/systemd/netif/leases/*: No such file or directory
Sep 20 14:52:50 localhost systemd-networkd[1572]: enxb827eb075031: Gained carrier
Sep 20 14:52:50 localhost kernel: [ 22.268240] IPv6: ADDRCONF(NETDEV_CHANGE): enxb827eb075031: link becomes ready
Sep 20 14:52:50 localhost kernel: [ 22.269571] smsc95xx 1-1.1:1.0 enxb827eb075031: link up, 100Mbps, full-duplex, lpa 0xC5E1
Sep 20 14:52:50 localhost systemd-networkd[1572]: enxb827eb075031: DHCPv4 address 192.168.1.83/24 via 192.168.1.1
Sep 20 14:52:50 localhost dbus[1543]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Sep 20 14:52:50 localhost systemd-timesyncd[1455]: Network configuration changed, trying to establish connection.
Sep 20 14:52:50 localhost systemd[1]: Starting Hostname Service...
Sep 20 14:52:51 localhost dbus[1543]: [system] Successfully activated service 'org.freedesktop.hostname1'
Sep 20 14:52:51 localhost systemd[1]: Started Hostname Service.
Sep 20 14:52:51 localhost systemd-networkd[1572]: enxb827eb075031: Could not set hostname: The name org.freedesktop.PolicyKit1 was not provided by any .service files
Sep 20 14:52:51 localhost systemd[1]: Started OpenBSD Secure Shell server.
Sep 20 14:52:51 localhost systemd[1]: Reached target Multi-User System.
Sep 20 14:52:51 localhost systemd[1]: Starting Notify bootloader that boot was successful...
Sep 20 14:52:51 localhost systemd[1]: Reached target Graphical Interface.
Sep 20 14:52:51 localhost systemd[1]: Starting Update UTMP about System Runlevel Changes...
Sep 20 14:52:51 localhost systemd[1]: Started Update UTMP about System Runlevel Changes.
Sep 20 14:52:51 localhost systemd[1]: Started Notify bootloader that boot was successful.
Sep 20 14:52:51 localhost systemd[1]: Started Update resolvconf for networkd DNS.
Sep 20 14:52:51 localhost systemd[1]: Startup finished in 11.888s (kernel) + 11.440s (userspace) = 23.328s.
Sep 20 14:52:51 localhost systemd-networkd[1572]: enxb827eb075031: Gained IPv6LL
Sep 20 14:52:51 localhost systemd-networkd[1572]: enxb827eb075031: Configured
Sep 20 14:52:51 localhost systemd-timesyncd[1455]: Network configuration changed, trying to establish connection.
Sep 20 14:52:51 localhost systemd-networkd[1572]: enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument
Sep 20 14:52:51 localhost systemd-networkd[1572]: message repeated 3 times: [ enxb827eb075031: Starting DHCPv6 client on NDisc request failed: Invalid argument]
Sep 20 14:52:51 localhost snap[1587]: Snapweb: 2016/09/20 14:52:51 handlers.go:61: Initializing HTTP handlers...
Sep 20 14:52:51 localhost systemd[1]: Created slice system-console\x2dconf.slice.
Sep 20 14:52:52 localhost systemd[1]: Started Ubuntu Core Firstboot Configuration tty1.
Sep 20 14:52:52 localhost /usr/lib/snapd/snapd[1597]: daemon.go:174: DEBUG: uid=0;@ GET /v2/system-info 1.029635ms 200
Sep 20 14:52:52 localhost snap[1587]: Snapweb: 2016/09/20 14:52:52 main.go:41: Snapweb starting...
Sep 20 14:52:52 localhost snap[1587]: Snapweb: 2016/09/20 14:52:52 avahi.go:49: Registering hostname: snapweb
Sep 20 14:52:52 localhost systemd[1]: Stopping Getty on tty1...
Sep 20 14:52:52 localhost systemd[1]: Stopped Getty on tty1.
Sep 20 15:36:42 localhost systemd[1]: Time has been changed
Sep 20 15:36:42 localhost rsyslogd-2007: action 'action 11' suspended, next retry is Tue Sep 20 15:37:12 2016 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 20 15:36:42 localhost systemd-timesyncd[1455]: Synchronized to time server 91.189.91.157:123 (ntp.ubuntu.com).
Sep 20 15:36:42 localhost systemd[1]: snapd.refresh.timer: Adding 3h 55min 53.964363s random time.
Sep 20 15:36:42 localhost systemd[1]: snapd.refresh.timer: Adding 3h 27min 37.852292s random time.
|