-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsyslog_2
More file actions
1879 lines (1879 loc) · 177 KB
/
syslog_2
File metadata and controls
1879 lines (1879 loc) · 177 KB
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
Sep 16 07:47:17 tomm rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="584" x-info="http://www.rsyslog.com"] start
Sep 16 07:47:17 tomm 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 16 07:47:17 tomm rsyslogd: rsyslogd's groupid changed to 108
Sep 16 07:47:17 tomm rsyslogd: rsyslogd's userid changed to 104
Sep 16 07:47:17 tomm systemd-modules-load[197]: Inserted module 'lp'
Sep 16 07:47:17 tomm systemd-modules-load[197]: Inserted module 'ppdev'
Sep 16 07:47:17 tomm systemd-modules-load[197]: Inserted module 'parport_pc'
Sep 16 07:47:17 tomm systemd[1]: Started Load Kernel Modules.
Sep 16 07:47:17 tomm loadkeys[182]: Loading /etc/console-setup/cached.kmap.gz
Sep 16 07:47:17 tomm systemd[1]: Started Set console keymap.
Sep 16 07:47:17 tomm systemd[1]: Mounting FUSE Control File System...
Sep 16 07:47:17 tomm systemd[1]: Starting Apply Kernel Variables...
Sep 16 07:47:17 tomm systemd[1]: Starting Create Static Device Nodes in /dev...
Sep 16 07:47:17 tomm systemd[1]: Started Apply Kernel Variables.
Sep 16 07:47:17 tomm systemd[1]: Mounted FUSE Control File System.
Sep 16 07:47:17 tomm systemd[1]: Started Create Static Device Nodes in /dev.
Sep 16 07:47:17 tomm systemd[1]: Starting udev Kernel Device Manager...
Sep 16 07:47:17 tomm systemd[1]: Started udev Kernel Device Manager.
Sep 16 07:47:17 tomm systemd[1]: Starting Remount Root and Kernel File Systems...
Sep 16 07:47:17 tomm systemd[1]: Started Remount Root and Kernel File Systems.
Sep 16 07:47:17 tomm systemd[1]: Starting Load/Save Random Seed...
Sep 16 07:47:17 tomm systemd[1]: Reached target Local File Systems (Pre).
Sep 16 07:47:17 tomm systemd[1]: Starting Flush Journal to Persistent Storage...
Sep 16 07:47:17 tomm systemd[1]: Starting udev Coldplug all Devices...
Sep 16 07:47:17 tomm systemd[1]: Reached target Local File Systems.
Sep 16 07:47:17 tomm systemd[1]: Starting LSB: AppArmor initialization...
Sep 16 07:47:17 tomm systemd[1]: Starting Tell Plymouth To Write Out Runtime Data...
Sep 16 07:47:17 tomm systemd[1]: Starting Clean up any mess left by 0dns-up...
Sep 16 07:47:17 tomm systemd[1]: Starting Set console font and keymap...
Sep 16 07:47:17 tomm systemd[1]: Started Load/Save Random Seed.
Sep 16 07:47:17 tomm systemd[1]: Started Tell Plymouth To Write Out Runtime Data.
Sep 16 07:47:17 tomm systemd[1]: Started Clean up any mess left by 0dns-up.
Sep 16 07:47:17 tomm systemd[1]: Started Flush Journal to Persistent Storage.
Sep 16 07:47:17 tomm systemd[1]: Started udev Coldplug all Devices.
Sep 16 07:47:17 tomm apparmor[237]: * Starting AppArmor profiles
Sep 16 07:47:17 tomm systemd[1]: Starting Show Plymouth Boot Screen...
Sep 16 07:47:17 tomm systemd[1]: Starting Create Volatile Files and Directories...
Sep 16 07:47:17 tomm systemd-tmpfiles[329]: [/usr/lib/tmpfiles.d/var.conf:14] Duplicate line for path "/var/log", ignoring.
Sep 16 07:47:17 tomm systemd[1]: Starting Nameserver information manager...
Sep 16 07:47:17 tomm systemd[1]: Started Create Volatile Files and Directories.
Sep 16 07:47:17 tomm systemd[1]: Started Show Plymouth Boot Screen.
Sep 16 07:47:17 tomm systemd[1]: Started Nameserver information manager.
Sep 16 07:47:17 tomm apparmor[237]: Skipping profile in /etc/apparmor.d/disable: usr.bin.firefox
Sep 16 07:47:17 tomm systemd[1]: Reached target Network (Pre).
Sep 16 07:47:17 tomm systemd[1]: Started Forward Password Requests to Plymouth Directory Watch.
Sep 16 07:47:17 tomm systemd[1]: Starting Update UTMP about System Boot/Shutdown...
Sep 16 07:47:17 tomm systemd[1]: Started Update UTMP about System Boot/Shutdown.
Sep 16 07:47:17 tomm apparmor[237]: Skipping profile in /etc/apparmor.d/disable: usr.sbin.rsyslogd
Sep 16 07:47:17 tomm apparmor[237]: ...done.
Sep 16 07:47:17 tomm systemd[1]: Started LSB: AppArmor initialization.
Sep 16 07:47:17 tomm systemd[1]: Starting Raise network interfaces...
Sep 16 07:47:17 tomm systemd[1]: Received SIGRTMIN+20 from PID 335 (plymouthd).
Sep 16 07:47:17 tomm systemd[1]: Started Raise network interfaces.
Sep 16 07:47:17 tomm mtp-probe: checking bus 1, device 2: "/sys/devices/pci0000:00/0000:00:06.0/usb1/1-1"
Sep 16 07:47:17 tomm mtp-probe: bus: 1, device: 2 was not an MTP device
Sep 16 07:47:17 tomm setupcon[251]: /bin/setupcon: 809: /bin/setupcon: cannot open /tmp/tmpkbd.z95y13: No such file
Sep 16 07:47:17 tomm systemd[1]: console-setup.service: Main process exited, code=exited, status=1/FAILURE
Sep 16 07:47:17 tomm systemd[1]: Failed to start Set console font and keymap.
Sep 16 07:47:17 tomm systemd[1]: console-setup.service: Unit entered failed state.
Sep 16 07:47:17 tomm systemd[1]: console-setup.service: Failed with result 'exit-code'.
Sep 16 07:47:17 tomm systemd[1]: Created slice system-getty.slice.
Sep 16 07:47:17 tomm systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
Sep 16 07:47:17 tomm systemd[1]: Found device VBOX_HARDDISK 5.
Sep 16 07:47:17 tomm systemd[1]: Activating swap /dev/disk/by-uuid/d3a9a741-030f-4cdd-a4f2-c4c8d7eb69e2...
Sep 16 07:47:17 tomm systemd[1]: Activated swap /dev/disk/by-uuid/d3a9a741-030f-4cdd-a4f2-c4c8d7eb69e2.
Sep 16 07:47:17 tomm systemd[1]: Reached target Swap.
Sep 16 07:47:17 tomm systemd[1]: Reached target System Initialization.
Sep 16 07:47:17 tomm systemd[1]: Started Daily Cleanup of Temporary Directories.
Sep 16 07:47:17 tomm systemd[1]: Started Daily apt download activities.
Sep 16 07:47:17 tomm systemd[1]: Listening on D-Bus System Message Bus Socket.
Sep 16 07:47:17 tomm systemd[1]: Listening on CUPS Scheduler.
Sep 16 07:47:17 tomm systemd[1]: Started ACPI Events Check.
Sep 16 07:47:17 tomm systemd[1]: Started CUPS Scheduler.
Sep 16 07:47:17 tomm systemd[1]: Reached target Paths.
Sep 16 07:47:17 tomm systemd[1]: Listening on UUID daemon activation socket.
Sep 16 07:47:17 tomm systemd[1]: Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
Sep 16 07:47:17 tomm systemd[1]: Listening on ACPID Listen Socket.
Sep 16 07:47:17 tomm systemd[1]: Starting Socket activation for snappy daemon.
Sep 16 07:47:17 tomm systemd[1]: Started Daily apt upgrade and clean activities.
Sep 16 07:47:17 tomm systemd[1]: Reached target Timers.
Sep 16 07:47:17 tomm systemd[1]: Listening on Socket activation for snappy daemon.
Sep 16 07:47:17 tomm systemd[1]: Reached target Sockets.
Sep 16 07:47:17 tomm systemd[1]: Reached target Basic System.
Sep 16 07:47:17 tomm systemd[1]: Started ACPI event daemon.
Sep 16 07:47:17 tomm systemd[1]: Starting LSB: Record successful boot for GRUB...
Sep 16 07:47:17 tomm systemd[1]: Starting vboxadd.service...
Sep 16 07:47:17 tomm systemd[1]: Starting System Logging Service...
Sep 16 07:47:17 tomm systemd[1]: Starting Thermal Daemon Service...
Sep 16 07:47:17 tomm systemd[1]: Starting LSB: Set the CPU Frequency Scaling governor to "ondemand"...
Sep 16 07:47:17 tomm systemd[1]: Starting Accounts Service...
Sep 16 07:47:17 tomm 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 16 07:47:17 tomm kernel: [ 0.000000] Initializing cgroup subsys cpuset
Sep 16 07:47:17 tomm kernel: [ 0.000000] Initializing cgroup subsys cpu
Sep 16 07:47:17 tomm kernel: [ 0.000000] Initializing cgroup subsys cpuacct
Sep 16 07:47:17 tomm kernel: [ 0.000000] Linux version 4.4.140tgraham (root@tomm) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) ) #1 SMP Thu Sep 6 21:35:37 EDT 2018 (Ubuntu 4.4.0-134.160-generic 4.4.140)
Sep 16 07:47:17 tomm kernel: [ 0.000000] KERNEL supported cpus:
Sep 16 07:47:17 tomm kernel: [ 0.000000] Intel GenuineIntel
Sep 16 07:47:17 tomm kernel: [ 0.000000] AMD AuthenticAMD
Sep 16 07:47:17 tomm kernel: [ 0.000000] NSC Geode by NSC
Sep 16 07:47:17 tomm kernel: [ 0.000000] Cyrix CyrixInstead
Sep 16 07:47:17 tomm kernel: [ 0.000000] Centaur CentaurHauls
Sep 16 07:47:17 tomm kernel: [ 0.000000] Transmeta GenuineTMx86
Sep 16 07:47:17 tomm kernel: [ 0.000000] Transmeta TransmetaCPU
Sep 16 07:47:17 tomm kernel: [ 0.000000] UMC UMC UMC UMC
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Sep 16 07:47:17 tomm kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffeffff] usable
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] NX (Execute Disable) protection: active
Sep 16 07:47:17 tomm kernel: [ 0.000000] SMBIOS 2.5 present.
Sep 16 07:47:17 tomm kernel: [ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
Sep 16 07:47:17 tomm kernel: [ 0.000000] Hypervisor detected: KVM
Sep 16 07:47:17 tomm kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 16 07:47:17 tomm kernel: [ 0.000000] e820: last_pfn = 0x7fff0 max_arch_pfn = 0x1000000
Sep 16 07:47:17 tomm kernel: [ 0.000000] MTRR default type: uncachable
Sep 16 07:47:17 tomm kernel: [ 0.000000] MTRR variable ranges disabled:
Sep 16 07:47:17 tomm kernel: [ 0.000000] MTRR: Disabled
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
Sep 16 07:47:17 tomm kernel: [ 0.000000] CPU MTRRs all blank - virtualized system.
Sep 16 07:47:17 tomm kernel: [ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
Sep 16 07:47:17 tomm kernel: [ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [c009fff0]
Sep 16 07:47:17 tomm kernel: [ 0.000000] Scanning 1 areas for low memory corruption
Sep 16 07:47:17 tomm kernel: [ 0.000000] initial memory mapped: [mem 0x00000000-0x021fffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
Sep 16 07:47:17 tomm kernel: [ 0.000000] BRK [0x01d82000, 0x01d82fff] PGTABLE
Sep 16 07:47:17 tomm kernel: [ 0.000000] BRK [0x01d83000, 0x01d83fff] PGTABLE
Sep 16 07:47:17 tomm kernel: [ 0.000000] RAMDISK: [mem 0x3348a000-0x35a3cfff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: Early table checksum verification disabled
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: XSDT 0x000000007FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: FACP 0x000000007FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: DSDT 0x000000007FFF0470 0021FF (v02 VBOX VBOXBIOS 00000002 INTL 20100528)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: APIC 0x000000007FFF0240 000054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: SSDT 0x000000007FFF02A0 0001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Sep 16 07:47:17 tomm kernel: [ 0.000000] 1155MB HIGHMEM available.
Sep 16 07:47:17 tomm kernel: [ 0.000000] 891MB LOWMEM available.
Sep 16 07:47:17 tomm kernel: [ 0.000000] mapped low ram: 0 - 37bfe000
Sep 16 07:47:17 tomm kernel: [ 0.000000] low ram: 0 - 37bfe000
Sep 16 07:47:17 tomm kernel: [ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00
Sep 16 07:47:17 tomm kernel: [ 0.000000] kvm-clock: cpu 0, msr 0:37bfd001, primary cpu clock
Sep 16 07:47:17 tomm kernel: [ 0.000000] kvm-clock: using sched offset of 77755386603826 cycles
Sep 16 07:47:17 tomm kernel: [ 0.000000] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns
Sep 16 07:47:17 tomm kernel: [ 0.000000] Zone ranges:
Sep 16 07:47:17 tomm kernel: [ 0.000000] DMA [mem 0x0000000000001000-0x0000000000ffffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] Normal [mem 0x0000000001000000-0x0000000037bfdfff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] HighMem [mem 0x0000000037bfe000-0x000000007ffeffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] Movable zone start for each node
Sep 16 07:47:17 tomm kernel: [ 0.000000] Early memory node ranges
Sep 16 07:47:17 tomm kernel: [ 0.000000] node 0: [mem 0x0000000000001000-0x000000000009efff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] node 0: [mem 0x0000000000100000-0x000000007ffeffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] Initmem setup node 0 [mem 0x0000000000001000-0x000000007ffeffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] On node 0 totalpages: 524174
Sep 16 07:47:17 tomm kernel: [ 0.000000] DMA zone: 40 pages used for memmap
Sep 16 07:47:17 tomm kernel: [ 0.000000] DMA zone: 0 pages reserved
Sep 16 07:47:17 tomm kernel: [ 0.000000] DMA zone: 3998 pages, LIFO batch:0
Sep 16 07:47:17 tomm kernel: [ 0.000000] Normal zone: 2190 pages used for memmap
Sep 16 07:47:17 tomm kernel: [ 0.000000] Normal zone: 224254 pages, LIFO batch:31
Sep 16 07:47:17 tomm kernel: [ 0.000000] HighMem zone: 295922 pages, LIFO batch:31
Sep 16 07:47:17 tomm kernel: [ 0.000000] Using APIC driver default
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x4008
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Sep 16 07:47:17 tomm kernel: [ 0.000000] IOAPIC[0]: apic_id 1, version 32, address 0xfec00000, GSI 0-23
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: IRQ0 used by override.
Sep 16 07:47:17 tomm kernel: [ 0.000000] ACPI: IRQ9 used by override.
Sep 16 07:47:17 tomm kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Sep 16 07:47:17 tomm kernel: [ 0.000000] smpboot: Allowing 1 CPUs, 0 hotplug CPUs
Sep 16 07:47:17 tomm kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x00000000-0x00000fff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000effff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000f0000-0x000fffff]
Sep 16 07:47:17 tomm kernel: [ 0.000000] e820: [mem 0x80000000-0xfebfffff] available for PCI devices
Sep 16 07:47:17 tomm kernel: [ 0.000000] Booting paravirtualized kernel on KVM
Sep 16 07:47:17 tomm kernel: [ 0.000000] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns
Sep 16 07:47:17 tomm kernel: [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:1 nr_node_ids:1
Sep 16 07:47:17 tomm kernel: [ 0.000000] PERCPU: Embedded 19 pages/cpu @f67c3000 s47436 r0 d30388 u77824
Sep 16 07:47:17 tomm kernel: [ 0.000000] pcpu-alloc: s47436 r0 d30388 u77824 alloc=19*4096
Sep 16 07:47:17 tomm kernel: [ 0.000000] pcpu-alloc: [0] 0
Sep 16 07:47:17 tomm kernel: [ 0.000000] PV qspinlock hash table entries: 512 (order: 0, 4096 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 521944
Sep 16 07:47:17 tomm kernel: [ 0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-4.4.140tgraham root=UUID=a0ebb3c8-8146-428d-a6f7-b86b902d3e2e ro quiet splash
Sep 16 07:47:17 tomm kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Initializing CPU#0
Sep 16 07:47:17 tomm kernel: [ 0.000000] Initializing HighMem for node 0 (00037bfe:0007fff0)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Memory: 2022660K/2096696K available (8036K kernel code, 783K rwdata, 3144K rodata, 952K init, 800K bss, 74036K reserved, 0K cma-reserved, 1183688K highmem)
Sep 16 07:47:17 tomm rsyslogd-2007: action 'action 10' suspended, next retry is Sun Sep 16 07:47:47 2018 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 16 07:47:17 tomm systemd[1]: Starting Modem Manager...
Sep 16 07:47:17 tomm kernel: [ 0.000000] virtual kernel memory layout:
Sep 16 07:47:17 tomm kernel: [ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] pkmap : 0xffc00000 - 0xffe00000 (2048 kB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] vmalloc : 0xf83fe000 - 0xffbfe000 ( 120 MB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf7bfe000 ( 891 MB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] .init : 0xc1bb2000 - 0xc1ca0000 ( 952 kB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] .data : 0xc17d94d0 - 0xc1bb0d00 (3934 kB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] .text : 0xc1000000 - 0xc17d94d0 (8037 kB)
Sep 16 07:47:17 tomm kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Sep 16 07:47:17 tomm kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1
Sep 16 07:47:17 tomm kernel: [ 0.000000] Hierarchical RCU implementation.
Sep 16 07:47:17 tomm kernel: [ 0.000000] Build-time adjustment of leaf fanout to 32.
Sep 16 07:47:17 tomm kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=1.
Sep 16 07:47:17 tomm kernel: [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=32, nr_cpu_ids=1
Sep 16 07:47:17 tomm kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:256 16
Sep 16 07:47:17 tomm kernel: [ 0.000000] CPU 0 irqstacks, hard=f6034000 soft=f6036000
Sep 16 07:47:17 tomm kernel: [ 0.000000] Console: colour VGA+ 80x25
Sep 16 07:47:17 tomm kernel: [ 0.000000] console [tty0] enabled
Sep 16 07:47:17 tomm kernel: [ 0.000000] allocated 2097152 bytes of page_ext
Sep 16 07:47:17 tomm kernel: [ 0.000000] tsc: Detected 2904.000 MHz processor
Sep 16 07:47:17 tomm kernel: [ 0.058374] Calibrating delay loop (skipped) preset value.. 5808.00 BogoMIPS (lpj=11616000)
Sep 16 07:47:17 tomm kernel: [ 0.058376] pid_max: default: 32768 minimum: 301
Sep 16 07:47:17 tomm kernel: [ 0.058381] ACPI: Core revision 20150930
Sep 16 07:47:17 tomm kernel: [ 0.059103] ACPI: 2 ACPI AML tables successfully acquired and loaded
Sep 16 07:47:17 tomm kernel: [ 0.059112] Security Framework initialized
Sep 16 07:47:17 tomm kernel: [ 0.059114] Yama: becoming mindful.
Sep 16 07:47:17 tomm kernel: [ 0.059124] AppArmor: AppArmor initialized
Sep 16 07:47:17 tomm kernel: [ 0.059168] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.059169] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.059281] Initializing cgroup subsys io
Sep 16 07:47:17 tomm kernel: [ 0.059283] Initializing cgroup subsys memory
Sep 16 07:47:17 tomm kernel: [ 0.059286] Initializing cgroup subsys devices
Sep 16 07:47:17 tomm kernel: [ 0.059288] Initializing cgroup subsys freezer
Sep 16 07:47:17 tomm kernel: [ 0.059289] Initializing cgroup subsys net_cls
Sep 16 07:47:17 tomm kernel: [ 0.059290] Initializing cgroup subsys perf_event
Sep 16 07:47:17 tomm kernel: [ 0.059292] Initializing cgroup subsys net_prio
Sep 16 07:47:17 tomm kernel: [ 0.059294] Initializing cgroup subsys hugetlb
Sep 16 07:47:17 tomm kernel: [ 0.059295] Initializing cgroup subsys pids
Sep 16 07:47:17 tomm kernel: [ 0.061609] mce: CPU supports 0 MCE banks
Sep 16 07:47:17 tomm kernel: [ 0.061626] process: using mwait in idle threads
Sep 16 07:47:17 tomm kernel: [ 0.061660] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
Sep 16 07:47:17 tomm kernel: [ 0.061661] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0, 1GB 4
Sep 16 07:47:17 tomm kernel: [ 0.061663] Spectre V2 : Mitigation: Full generic retpoline
Sep 16 07:47:17 tomm kernel: [ 0.061664] Spectre V2 : Speculation control IBPB not-supported IBRS not-supported
Sep 16 07:47:17 tomm kernel: [ 0.061664] Spectre V2 : Filling RSB on context switch
Sep 16 07:47:17 tomm kernel: [ 0.061665] Speculative Store Bypass: Vulnerable
Sep 16 07:47:17 tomm kernel: [ 0.079395] Freeing SMP alternatives memory: 32K
Sep 16 07:47:17 tomm kernel: [ 0.086035] ftrace: allocating 31464 entries in 62 pages
Sep 16 07:47:17 tomm kernel: [ 0.131658] smpboot: APIC(0) Converting physical 0 to logical package 0
Sep 16 07:47:17 tomm kernel: [ 0.131661] smpboot: Max logical packages: 1
Sep 16 07:47:17 tomm kernel: [ 0.131672] Enabling APIC mode: Flat. Using 1 I/O APICs
Sep 16 07:47:17 tomm kernel: [ 0.132614] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Sep 16 07:47:17 tomm kernel: [ 0.234573] smpboot: CPU0: Intel(R) Core(TM) i7-7820HQ CPU @ 2.90GHz (family: 0x6, model: 0x9e, stepping: 0x9)
Sep 16 07:47:17 tomm kernel: [ 0.234586] Performance Events: unsupported p6 CPU model 158 no PMU driver, software events only.
Sep 16 07:47:17 tomm kernel: [ 0.234606] KVM setup paravirtual spinlock
Sep 16 07:47:17 tomm kernel: [ 0.235532] x86: Booted up 1 node, 1 CPUs
Sep 16 07:47:17 tomm kernel: [ 0.235534] smpboot: Total of 1 processors activated (5808.00 BogoMIPS)
Sep 16 07:47:17 tomm kernel: [ 0.235843] devtmpfs: initialized
Sep 16 07:47:17 tomm kernel: [ 0.235991] evm: security.selinux
Sep 16 07:47:17 tomm kernel: [ 0.235993] evm: security.SMACK64
Sep 16 07:47:17 tomm kernel: [ 0.235993] evm: security.SMACK64EXEC
Sep 16 07:47:17 tomm kernel: [ 0.235994] evm: security.SMACK64TRANSMUTE
Sep 16 07:47:17 tomm kernel: [ 0.235995] evm: security.SMACK64MMAP
Sep 16 07:47:17 tomm kernel: [ 0.235996] evm: security.ima
Sep 16 07:47:17 tomm kernel: [ 0.235997] evm: security.capability
Sep 16 07:47:17 tomm kernel: [ 0.236093] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns
Sep 16 07:47:17 tomm kernel: [ 0.236097] futex hash table entries: 256 (order: 2, 16384 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.236145] pinctrl core: initialized pinctrl subsystem
Sep 16 07:47:17 tomm kernel: [ 0.236222] RTC time: 11:47:13, date: 09/16/18
Sep 16 07:47:17 tomm kernel: [ 0.236312] NET: Registered protocol family 16
Sep 16 07:47:17 tomm kernel: [ 0.236431] EISA bus registered
Sep 16 07:47:17 tomm kernel: [ 0.236434] cpuidle: using governor ladder
Sep 16 07:47:17 tomm kernel: [ 0.236436] cpuidle: using governor menu
Sep 16 07:47:17 tomm kernel: [ 0.236439] PCCT header not found.
Sep 16 07:47:17 tomm kernel: [ 0.236528] ACPI: bus type PCI registered
Sep 16 07:47:17 tomm kernel: [ 0.236530] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Sep 16 07:47:17 tomm kernel: [ 0.236741] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
Sep 16 07:47:17 tomm kernel: [ 0.236743] PCI: PCI BIOS revision 2.10 entry at 0xfda26, last bus=0
Sep 16 07:47:17 tomm kernel: [ 0.236744] PCI: Using configuration type 1 for base access
Sep 16 07:47:17 tomm kernel: [ 0.237623] ACPI: Added _OSI(Module Device)
Sep 16 07:47:17 tomm kernel: [ 0.237624] ACPI: Added _OSI(Processor Device)
Sep 16 07:47:17 tomm kernel: [ 0.237625] ACPI: Added _OSI(3.0 _SCP Extensions)
Sep 16 07:47:17 tomm kernel: [ 0.237626] ACPI: Added _OSI(Processor Aggregator Device)
Sep 16 07:47:17 tomm kernel: [ 0.238272] ACPI: Executed 1 blocks of module-level executable AML code
Sep 16 07:47:17 tomm kernel: [ 0.239766] ACPI: Interpreter enabled
Sep 16 07:47:17 tomm kernel: [ 0.239778] ACPI: (supports S0 S5)
Sep 16 07:47:17 tomm kernel: [ 0.239780] ACPI: Using IOAPIC for interrupt routing
Sep 16 07:47:17 tomm kernel: [ 0.239883] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Sep 16 07:47:17 tomm kernel: [ 0.243384] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Sep 16 07:47:17 tomm kernel: [ 0.243389] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
Sep 16 07:47:17 tomm kernel: [ 0.243400] acpi PNP0A03:00: _OSC: not requesting OS control; OS requires [ExtendedConfig ASPM ClockPM MSI]
Sep 16 07:47:17 tomm kernel: [ 0.243402] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
Sep 16 07:47:17 tomm kernel: [ 0.243751] PCI host bridge to bus 0000:00
Sep 16 07:47:17 tomm kernel: [ 0.243754] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
Sep 16 07:47:17 tomm kernel: [ 0.243756] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
Sep 16 07:47:17 tomm kernel: [ 0.243757] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
Sep 16 07:47:17 tomm kernel: [ 0.243759] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfdffffff window]
Sep 16 07:47:17 tomm kernel: [ 0.243761] pci_bus 0000:00: root bus resource [bus 00-ff]
Sep 16 07:47:17 tomm kernel: [ 0.243819] pci 0000:00:00.0: [8086:1237] type 00 class 0x060000
Sep 16 07:47:17 tomm kernel: [ 0.244561] pci 0000:00:01.0: [8086:7000] type 00 class 0x060100
Sep 16 07:47:17 tomm kernel: [ 0.245533] pci 0000:00:01.1: [8086:7111] type 00 class 0x01018a
Sep 16 07:47:17 tomm kernel: [ 0.246251] pci 0000:00:01.1: reg 0x20: [io 0xd000-0xd00f]
Sep 16 07:47:17 tomm kernel: [ 0.246547] pci 0000:00:01.1: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
Sep 16 07:47:17 tomm kernel: [ 0.246548] pci 0000:00:01.1: legacy IDE quirk: reg 0x14: [io 0x03f6]
Sep 16 07:47:17 tomm kernel: [ 0.246550] pci 0000:00:01.1: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
Sep 16 07:47:17 tomm kernel: [ 0.246551] pci 0000:00:01.1: legacy IDE quirk: reg 0x1c: [io 0x0376]
Sep 16 07:47:17 tomm kernel: [ 0.246817] pci 0000:00:02.0: [80ee:beef] type 00 class 0x030000
Sep 16 07:47:17 tomm kernel: [ 0.248015] pci 0000:00:02.0: reg 0x10: [mem 0xe0000000-0xe1ffffff pref]
Sep 16 07:47:17 tomm kernel: [ 0.254644] pci 0000:00:03.0: [8086:100e] type 00 class 0x020000
Sep 16 07:47:17 tomm kernel: [ 0.255618] pci 0000:00:03.0: reg 0x10: [mem 0xf0000000-0xf001ffff]
Sep 16 07:47:17 tomm kernel: [ 0.257159] pci 0000:00:03.0: reg 0x18: [io 0xd010-0xd017]
Sep 16 07:47:17 tomm kernel: [ 0.260651] pci 0000:00:04.0: [80ee:cafe] type 00 class 0x088000
Sep 16 07:47:17 tomm kernel: [ 0.261565] pci 0000:00:04.0: reg 0x10: [io 0xd020-0xd03f]
Sep 16 07:47:17 tomm kernel: [ 0.262245] pci 0000:00:04.0: reg 0x14: [mem 0xf0400000-0xf07fffff]
Sep 16 07:47:17 tomm kernel: [ 0.263081] pci 0000:00:04.0: reg 0x18: [mem 0xf0800000-0xf0803fff pref]
Sep 16 07:47:17 tomm kernel: [ 0.266274] pci 0000:00:05.0: [8086:2415] type 00 class 0x040100
Sep 16 07:47:17 tomm kernel: [ 0.266484] pci 0000:00:05.0: reg 0x10: [io 0xd100-0xd1ff]
Sep 16 07:47:17 tomm kernel: [ 0.266616] pci 0000:00:05.0: reg 0x14: [io 0xd200-0xd23f]
Sep 16 07:47:17 tomm kernel: [ 0.267543] pci 0000:00:06.0: [106b:003f] type 00 class 0x0c0310
Sep 16 07:47:17 tomm kernel: [ 0.268368] pci 0000:00:06.0: reg 0x10: [mem 0xf0804000-0xf0804fff]
Sep 16 07:47:17 tomm kernel: [ 0.274808] pci 0000:00:07.0: [8086:7113] type 00 class 0x068000
Sep 16 07:47:17 tomm kernel: [ 0.275626] pci 0000:00:07.0: quirk: [io 0x4000-0x403f] claimed by PIIX4 ACPI
Sep 16 07:47:17 tomm kernel: [ 0.275642] pci 0000:00:07.0: quirk: [io 0x4100-0x410f] claimed by PIIX4 SMB
Sep 16 07:47:17 tomm kernel: [ 0.276014] pci 0000:00:0d.0: [8086:2829] type 00 class 0x010601
Sep 16 07:47:17 tomm kernel: [ 0.277582] pci 0000:00:0d.0: reg 0x10: [io 0xd240-0xd247]
Sep 16 07:47:17 tomm kernel: [ 0.278466] pci 0000:00:0d.0: reg 0x14: [io 0xd248-0xd24b]
Sep 16 07:47:17 tomm kernel: [ 0.279721] pci 0000:00:0d.0: reg 0x18: [io 0xd250-0xd257]
Sep 16 07:47:17 tomm kernel: [ 0.280524] pci 0000:00:0d.0: reg 0x1c: [io 0xd258-0xd25b]
Sep 16 07:47:17 tomm kernel: [ 0.281570] pci 0000:00:0d.0: reg 0x20: [io 0xd260-0xd26f]
Sep 16 07:47:17 tomm kernel: [ 0.282764] pci 0000:00:0d.0: reg 0x24: [mem 0xf0806000-0xf0807fff]
Sep 16 07:47:17 tomm kernel: [ 0.284330] pci_bus 0000:00: on NUMA node 0
Sep 16 07:47:17 tomm kernel: [ 0.285348] ACPI: PCI Interrupt Link [LNKA] (IRQs 5 9 10 *11)
Sep 16 07:47:17 tomm kernel: [ 0.285526] ACPI: PCI Interrupt Link [LNKB] (IRQs 5 9 *10 11)
Sep 16 07:47:17 tomm kernel: [ 0.285615] ACPI: PCI Interrupt Link [LNKC] (IRQs 5 *9 10 11)
Sep 16 07:47:17 tomm kernel: [ 0.285703] ACPI: PCI Interrupt Link [LNKD] (IRQs 5 9 10 *11)
Sep 16 07:47:17 tomm kernel: [ 0.285850] ACPI: Enabled 2 GPEs in block 00 to 07
Sep 16 07:47:17 tomm kernel: [ 0.286056] vgaarb: setting as boot device: PCI:0000:00:02.0
Sep 16 07:47:17 tomm kernel: [ 0.286058] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Sep 16 07:47:17 tomm kernel: [ 0.286059] vgaarb: loaded
Sep 16 07:47:17 tomm kernel: [ 0.286060] vgaarb: bridge control possible 0000:00:02.0
Sep 16 07:47:17 tomm kernel: [ 0.286326] SCSI subsystem initialized
Sep 16 07:47:17 tomm kernel: [ 0.286362] libata version 3.00 loaded.
Sep 16 07:47:17 tomm kernel: [ 0.286758] ACPI: bus type USB registered
Sep 16 07:47:17 tomm kernel: [ 0.286807] usbcore: registered new interface driver usbfs
Sep 16 07:47:17 tomm kernel: [ 0.286814] usbcore: registered new interface driver hub
Sep 16 07:47:17 tomm kernel: [ 0.286836] usbcore: registered new device driver usb
Sep 16 07:47:17 tomm kernel: [ 0.286978] PCI: Using ACPI for IRQ routing
Sep 16 07:47:17 tomm kernel: [ 0.286980] PCI: pci_cache_line_size set to 64 bytes
Sep 16 07:47:17 tomm kernel: [ 0.287348] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
Sep 16 07:47:17 tomm kernel: [ 0.287351] e820: reserve RAM buffer [mem 0x7fff0000-0x7fffffff]
Sep 16 07:47:17 tomm kernel: [ 0.287493] NetLabel: Initializing
Sep 16 07:47:17 tomm kernel: [ 0.287495] NetLabel: domain hash size = 128
Sep 16 07:47:17 tomm kernel: [ 0.287495] NetLabel: protocols = UNLABELED CIPSOv4
Sep 16 07:47:17 tomm kernel: [ 0.287503] NetLabel: unlabeled traffic allowed by default
Sep 16 07:47:17 tomm kernel: [ 0.287608] amd_nb: Cannot enumerate AMD northbridges
Sep 16 07:47:17 tomm kernel: [ 0.287617] clocksource: Switched to clocksource kvm-clock
Sep 16 07:47:17 tomm kernel: [ 0.293105] AppArmor: AppArmor Filesystem Enabled
Sep 16 07:47:17 tomm kernel: [ 0.293148] pnp: PnP ACPI init
Sep 16 07:47:17 tomm kernel: [ 0.293197] pnp 00:00: Plug and Play ACPI device, IDs PNP0303 (active)
Sep 16 07:47:17 tomm kernel: [ 0.293279] pnp 00:01: Plug and Play ACPI device, IDs PNP0f03 (active)
Sep 16 07:47:17 tomm kernel: [ 0.294045] pnp: PnP ACPI: found 2 devices
Sep 16 07:47:17 tomm kernel: [ 0.294050] PnPBIOS: Disabled by ACPI PNP
Sep 16 07:47:17 tomm kernel: [ 0.329851] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
Sep 16 07:47:17 tomm kernel: [ 0.329866] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
Sep 16 07:47:17 tomm kernel: [ 0.329868] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
Sep 16 07:47:17 tomm kernel: [ 0.329869] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
Sep 16 07:47:17 tomm kernel: [ 0.329871] pci_bus 0000:00: resource 7 [mem 0x80000000-0xfdffffff window]
Sep 16 07:47:17 tomm kernel: [ 0.329894] NET: Registered protocol family 2
Sep 16 07:47:17 tomm kernel: [ 0.330043] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.330052] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.330060] TCP: Hash tables configured (established 8192 bind 8192)
Sep 16 07:47:17 tomm kernel: [ 0.330069] UDP hash table entries: 512 (order: 2, 16384 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.330071] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.330091] NET: Registered protocol family 1
Sep 16 07:47:17 tomm kernel: [ 0.330102] pci 0000:00:00.0: Limiting direct PCI/PCI transfers
Sep 16 07:47:17 tomm kernel: [ 0.330139] pci 0000:00:01.0: Activating ISA DMA hang workarounds
Sep 16 07:47:17 tomm kernel: [ 0.330181] pci 0000:00:02.0: Video device with shadowed ROM
Sep 16 07:47:17 tomm kernel: [ 0.331102] PCI: CLS 0 bytes, default 64
Sep 16 07:47:17 tomm kernel: [ 0.331147] Unpacking initramfs...
Sep 16 07:47:17 tomm kernel: [ 0.802793] Freeing initrd memory: 38604K
Sep 16 07:47:17 tomm kernel: [ 0.802967] platform rtc_cmos: registered platform RTC device (no PNP device found)
Sep 16 07:47:17 tomm kernel: [ 0.802997] Scanning for low memory corruption every 60 seconds
Sep 16 07:47:17 tomm kernel: [ 0.803303] audit: initializing netlink subsys (disabled)
Sep 16 07:47:17 tomm kernel: [ 0.803319] audit: type=2000 audit(1537214981.779:1): initialized
Sep 16 07:47:17 tomm kernel: [ 0.803557] Initialise system trusted keyring
Sep 16 07:47:17 tomm kernel: [ 0.803646] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Sep 16 07:47:17 tomm kernel: [ 0.804959] zbud: loaded
Sep 16 07:47:17 tomm kernel: [ 0.805097] VFS: Disk quotas dquot_6.6.0
Sep 16 07:47:17 tomm kernel: [ 0.805121] VFS: Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Sep 16 07:47:17 tomm kernel: [ 0.805283] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Sep 16 07:47:17 tomm kernel: [ 0.805433] fuse init (API version 7.23)
Sep 16 07:47:17 tomm kernel: [ 0.805523] Key type big_key registered
Sep 16 07:47:17 tomm kernel: [ 0.805542] Allocating IMA MOK and blacklist keyrings.
Sep 16 07:47:17 tomm kernel: [ 0.805693] Key type asymmetric registered
Sep 16 07:47:17 tomm kernel: [ 0.805698] Asymmetric key parser 'x509' registered
Sep 16 07:47:17 tomm kernel: [ 0.805709] bounce: pool size: 64 pages
Sep 16 07:47:17 tomm kernel: [ 0.805730] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249)
Sep 16 07:47:17 tomm kernel: [ 0.805746] io scheduler noop registered
Sep 16 07:47:17 tomm kernel: [ 0.805748] io scheduler deadline registered (default)
Sep 16 07:47:17 tomm kernel: [ 0.805768] io scheduler cfq registered
Sep 16 07:47:17 tomm kernel: [ 0.805847] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Sep 16 07:47:17 tomm kernel: [ 0.805852] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Sep 16 07:47:17 tomm kernel: [ 0.806139] ACPI: AC Adapter [AC] (on-line)
Sep 16 07:47:17 tomm kernel: [ 0.806178] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
Sep 16 07:47:17 tomm kernel: [ 0.806181] ACPI: Power Button [PWRF]
Sep 16 07:47:17 tomm kernel: [ 0.806265] input: Sleep Button as /devices/LNXSYSTM:00/LNXSLPBN:00/input/input1
Sep 16 07:47:17 tomm kernel: [ 0.806266] ACPI: Sleep Button [SLPF]
Sep 16 07:47:17 tomm kernel: [ 0.806383] GHES: HEST is not enabled!
Sep 16 07:47:17 tomm kernel: [ 0.807335] ACPI: Battery Slot [BAT0] (battery present)
Sep 16 07:47:17 tomm kernel: [ 0.807356] isapnp: Scanning for PnP cards...
Sep 16 07:47:17 tomm kernel: [ 0.812920] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Sep 16 07:47:17 tomm kernel: [ 0.813860] Linux agpgart interface v0.103
Sep 16 07:47:17 tomm kernel: [ 0.860508] loop: module loaded
Sep 16 07:47:17 tomm kernel: [ 0.860806] ata_piix 0000:00:01.1: version 2.13
Sep 16 07:47:17 tomm kernel: [ 0.861404] scsi host0: ata_piix
Sep 16 07:47:17 tomm kernel: [ 0.861760] scsi host1: ata_piix
Sep 16 07:47:17 tomm kernel: [ 0.861948] ata1: PATA max UDMA/33 cmd 0x1f0 ctl 0x3f6 bmdma 0xd000 irq 14
Sep 16 07:47:17 tomm kernel: [ 0.861950] ata2: PATA max UDMA/33 cmd 0x170 ctl 0x376 bmdma 0xd008 irq 15
Sep 16 07:47:17 tomm kernel: [ 0.862121] libphy: Fixed MDIO Bus: probed
Sep 16 07:47:17 tomm kernel: [ 0.862125] tun: Universal TUN/TAP device driver, 1.6
Sep 16 07:47:17 tomm kernel: [ 0.862126] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Sep 16 07:47:17 tomm kernel: [ 0.862679] PPP generic driver version 2.4.2
Sep 16 07:47:17 tomm kernel: [ 0.862728] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Sep 16 07:47:17 tomm kernel: [ 0.862732] ehci-pci: EHCI PCI platform driver
Sep 16 07:47:17 tomm kernel: [ 0.862739] ehci-platform: EHCI generic platform driver
Sep 16 07:47:17 tomm kernel: [ 0.862746] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Sep 16 07:47:17 tomm kernel: [ 0.862748] ohci-pci: OHCI PCI platform driver
Sep 16 07:47:17 tomm kernel: [ 0.863246] ohci-pci 0000:00:06.0: OHCI PCI host controller
Sep 16 07:47:17 tomm kernel: [ 0.863252] ohci-pci 0000:00:06.0: new USB bus registered, assigned bus number 1
Sep 16 07:47:17 tomm kernel: [ 0.863303] ohci-pci 0000:00:06.0: irq 22, io mem 0xf0804000
Sep 16 07:47:17 tomm kernel: [ 0.952793] usb usb1: New USB device found, idVendor=1d6b, idProduct=0001
Sep 16 07:47:17 tomm kernel: [ 0.952796] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Sep 16 07:47:17 tomm kernel: [ 0.952798] usb usb1: Product: OHCI PCI host controller
Sep 16 07:47:17 tomm kernel: [ 0.952800] usb usb1: Manufacturer: Linux 4.4.140tgraham ohci_hcd
Sep 16 07:47:17 tomm kernel: [ 0.952801] usb usb1: SerialNumber: 0000:00:06.0
Sep 16 07:47:17 tomm kernel: [ 0.952896] hub 1-0:1.0: USB hub found
Sep 16 07:47:17 tomm kernel: [ 0.952906] hub 1-0:1.0: 12 ports detected
Sep 16 07:47:17 tomm kernel: [ 0.953269] ohci-platform: OHCI generic platform driver
Sep 16 07:47:17 tomm kernel: [ 0.953280] uhci_hcd: USB Universal Host Controller Interface driver
Sep 16 07:47:17 tomm kernel: [ 0.953325] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
Sep 16 07:47:17 tomm kernel: [ 0.953781] serio: i8042 KBD port at 0x60,0x64 irq 1
Sep 16 07:47:17 tomm kernel: [ 0.953787] serio: i8042 AUX port at 0x60,0x64 irq 12
Sep 16 07:47:17 tomm kernel: [ 0.953877] mousedev: PS/2 mouse device common for all mice
Sep 16 07:47:17 tomm kernel: [ 0.954211] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
Sep 16 07:47:17 tomm kernel: [ 0.954615] rtc_cmos rtc_cmos: rtc core: registered rtc_cmos as rtc0
Sep 16 07:47:17 tomm kernel: [ 0.954656] rtc_cmos rtc_cmos: alarms up to one day, 114 bytes nvram
Sep 16 07:47:17 tomm kernel: [ 0.954662] i2c /dev entries driver
Sep 16 07:47:17 tomm kernel: [ 0.954699] device-mapper: uevent: version 1.0.3
Sep 16 07:47:17 tomm kernel: [ 0.954736] device-mapper: ioctl: 4.34.0-ioctl (2015-10-28) initialised: dm-devel@redhat.com
Sep 16 07:47:17 tomm kernel: [ 0.954753] platform eisa.0: Probing EISA bus 0
Sep 16 07:47:17 tomm kernel: [ 0.954755] platform eisa.0: EISA: Cannot allocate resource for mainboard
Sep 16 07:47:17 tomm kernel: [ 0.954757] platform eisa.0: Cannot allocate resource for EISA slot 1
Sep 16 07:47:17 tomm kernel: [ 0.954758] platform eisa.0: Cannot allocate resource for EISA slot 2
Sep 16 07:47:17 tomm kernel: [ 0.954759] platform eisa.0: Cannot allocate resource for EISA slot 3
Sep 16 07:47:17 tomm kernel: [ 0.954761] platform eisa.0: Cannot allocate resource for EISA slot 4
Sep 16 07:47:17 tomm kernel: [ 0.954762] platform eisa.0: Cannot allocate resource for EISA slot 5
Sep 16 07:47:17 tomm kernel: [ 0.954763] platform eisa.0: Cannot allocate resource for EISA slot 6
Sep 16 07:47:17 tomm kernel: [ 0.954769] platform eisa.0: Cannot allocate resource for EISA slot 7
Sep 16 07:47:17 tomm kernel: [ 0.954771] platform eisa.0: Cannot allocate resource for EISA slot 8
Sep 16 07:47:17 tomm kernel: [ 0.954772] platform eisa.0: EISA: Detected 0 cards
Sep 16 07:47:17 tomm kernel: [ 0.954787] cpufreq-nforce2: No nForce2 chipset.
Sep 16 07:47:17 tomm kernel: [ 0.954795] ledtrig-cpu: registered to indicate activity on CPUs
Sep 16 07:47:17 tomm kernel: [ 0.955008] NET: Registered protocol family 10
Sep 16 07:47:17 tomm kernel: [ 0.955192] NET: Registered protocol family 17
Sep 16 07:47:17 tomm kernel: [ 0.955203] Key type dns_resolver registered
Sep 16 07:47:17 tomm kernel: [ 0.955306] Using IPI No-Shortcut mode
Sep 16 07:47:17 tomm kernel: [ 0.955388] registered taskstats version 1
Sep 16 07:47:17 tomm kernel: [ 0.955399] Loading compiled-in X.509 certificates
Sep 16 07:47:17 tomm kernel: [ 0.957051] Loaded X.509 cert 'Build time autogenerated kernel key: 7ea71d7bac8775230d24525230683b4aa6b797db'
Sep 16 07:47:17 tomm kernel: [ 0.957066] zswap: loaded using pool lzo/zbud
Sep 16 07:47:17 tomm kernel: [ 0.958531] Key type trusted registered
Sep 16 07:47:17 tomm kernel: [ 0.960910] Key type encrypted registered
Sep 16 07:47:17 tomm kernel: [ 0.960915] AppArmor: AppArmor sha1 policy hashing enabled
Sep 16 07:47:17 tomm kernel: [ 0.960925] ima: No TPM chip found, activating TPM-bypass!
Sep 16 07:47:17 tomm kernel: [ 0.960929] ima: Allocated hash algorithm: sha1
Sep 16 07:47:17 tomm kernel: [ 0.960961] evm: HMAC attrs: 0x1
Sep 16 07:47:17 tomm kernel: [ 0.961313] Magic number: 2:622:782
Sep 16 07:47:17 tomm kernel: [ 0.961372] rtc_cmos rtc_cmos: setting system clock to 2018-09-16 11:47:14 UTC (1537098434)
Sep 16 07:47:17 tomm kernel: [ 0.961424] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Sep 16 07:47:17 tomm kernel: [ 0.961425] EDD information not available.
Sep 16 07:47:17 tomm kernel: [ 0.961455] PM: Hibernation image not present or could not be loaded.
Sep 16 07:47:17 tomm kernel: [ 1.049823] ata2.00: ATAPI: VBOX CD-ROM, 1.0, max UDMA/133
Sep 16 07:47:17 tomm kernel: [ 1.050337] ata2.00: configured for UDMA/33
Sep 16 07:47:17 tomm kernel: [ 1.188002] isapnp: No Plug & Play device found
Sep 16 07:47:17 tomm kernel: [ 1.188501] scsi 1:0:0:0: CD-ROM VBOX CD-ROM 1.0 PQ: 0 ANSI: 5
Sep 16 07:47:17 tomm kernel: [ 1.189182] sr 1:0:0:0: [sr0] scsi3-mmc drive: 32x/32x xa/form2 tray
Sep 16 07:47:17 tomm kernel: [ 1.189184] cdrom: Uniform CD-ROM driver Revision: 3.20
Sep 16 07:47:17 tomm kernel: [ 1.189260] sr 1:0:0:0: Attached scsi CD-ROM sr0
Sep 16 07:47:17 tomm kernel: [ 1.189290] sr 1:0:0:0: Attached scsi generic sg0 type 5
Sep 16 07:47:17 tomm kernel: [ 1.189522] Freeing unused kernel memory: 952K
Sep 16 07:47:17 tomm kernel: [ 1.200000] Write protecting the kernel text: 8040k
Sep 16 07:47:17 tomm kernel: [ 1.200019] Write protecting the kernel read-only data: 3148k
Sep 16 07:47:17 tomm kernel: [ 1.200021] NX-protecting the kernel data: 6296k
Sep 16 07:47:17 tomm kernel: [ 1.207414] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.208981] random: systemd-udevd: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.209036] random: systemd-udevd: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.224754] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.224790] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.224856] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.224911] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.224962] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.225004] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.225043] random: udevadm: uninitialized urandom read (16 bytes read, 0 bits of entropy available)
Sep 16 07:47:17 tomm kernel: [ 1.267307] ACPI: Video Device [GFX0] (multi-head: yes rom: no post: no)
Sep 16 07:47:17 tomm kernel: [ 1.267357] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A03:00/LNXVIDEO:00/input/input4
Sep 16 07:47:17 tomm kernel: [ 1.282268] e1000: Intel(R) PRO/1000 Network Driver - version 7.3.21-k8-NAPI
Sep 16 07:47:17 tomm kernel: [ 1.282270] e1000: Copyright (c) 1999-2006 Intel Corporation.
Sep 16 07:47:17 tomm kernel: [ 1.372276] usb 1-1: new full-speed USB device number 2 using ohci-pci
Sep 16 07:47:17 tomm kernel: [ 1.505938] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input5
Sep 16 07:47:17 tomm kernel: [ 1.650541] usb 1-1: New USB device found, idVendor=80ee, idProduct=0021
Sep 16 07:47:17 tomm kernel: [ 1.650544] usb 1-1: New USB device strings: Mfr=1, Product=3, SerialNumber=0
Sep 16 07:47:17 tomm kernel: [ 1.650545] usb 1-1: Product: USB Tablet
Sep 16 07:47:17 tomm kernel: [ 1.650547] usb 1-1: Manufacturer: VirtualBox
Sep 16 07:47:17 tomm kernel: [ 1.666400] hidraw: raw HID events driver (C) Jiri Kosina
Sep 16 07:47:17 tomm kernel: [ 1.684235] usbcore: registered new interface driver usbhid
Sep 16 07:47:17 tomm kernel: [ 1.684238] usbhid: USB HID core driver
Sep 16 07:47:17 tomm kernel: [ 1.692433] input: VirtualBox USB Tablet as /devices/pci0000:00/0000:00:06.0/usb1/1-1/1-1:1.0/0003:80EE:0021.0001/input/input6
Sep 16 07:47:17 tomm kernel: [ 1.692702] hid-generic 0003:80EE:0021.0001: input,hidraw0: USB HID v1.10 Mouse [VirtualBox USB Tablet] on usb-0000:00:06.0-1/input0
Sep 16 07:47:17 tomm kernel: [ 1.718189] e1000 0000:00:03.0 eth0: (PCI:33MHz:32-bit) 08:00:27:b1:7a:45
Sep 16 07:47:17 tomm kernel: [ 1.718195] e1000 0000:00:03.0 eth0: Intel(R) PRO/1000 Network Connection
Sep 16 07:47:17 tomm kernel: [ 1.718216] ahci 0000:00:0d.0: version 3.0
Sep 16 07:47:17 tomm kernel: [ 1.718732] ahci 0000:00:0d.0: SSS flag set, parallel bus scan disabled
Sep 16 07:47:17 tomm kernel: [ 1.718891] ahci 0000:00:0d.0: AHCI 0001.0100 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
Sep 16 07:47:17 tomm kernel: [ 1.718894] ahci 0000:00:0d.0: flags: 64bit ncq stag only ccc
Sep 16 07:47:17 tomm kernel: [ 1.720144] e1000 0000:00:03.0 enp0s3: renamed from eth0
Sep 16 07:47:17 tomm kernel: [ 1.721104] scsi host2: ahci
Sep 16 07:47:17 tomm kernel: [ 1.721154] ata3: SATA max UDMA/133 abar m8192@0xf0806000 port 0xf0806100 irq 21
Sep 16 07:47:17 tomm kernel: [ 1.799769] tsc: Refined TSC clocksource calibration: 2902.579 MHz
Sep 16 07:47:17 tomm kernel: [ 1.799777] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29d6c74d731, max_idle_ns: 440795321006 ns
Sep 16 07:47:17 tomm kernel: [ 2.040052] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Sep 16 07:47:17 tomm kernel: [ 2.040326] ata3.00: ATA-6: VBOX HARDDISK, 1.0, max UDMA/133
Sep 16 07:47:17 tomm kernel: [ 2.040332] ata3.00: 52428800 sectors, multi 128: LBA48 NCQ (depth 31/32)
Sep 16 07:47:17 tomm kernel: [ 2.040752] ata3.00: configured for UDMA/133
Sep 16 07:47:17 tomm kernel: [ 2.040851] scsi 2:0:0:0: Direct-Access ATA VBOX HARDDISK 1.0 PQ: 0 ANSI: 5
Sep 16 07:47:17 tomm kernel: [ 2.041027] sd 2:0:0:0: [sda] 52428800 512-byte logical blocks: (26.8 GB/25.0 GiB)
Sep 16 07:47:17 tomm kernel: [ 2.041052] sd 2:0:0:0: [sda] Write Protect is off
Sep 16 07:47:17 tomm kernel: [ 2.041055] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
Sep 16 07:47:17 tomm kernel: [ 2.041066] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Sep 16 07:47:17 tomm kernel: [ 2.041880] sd 2:0:0:0: Attached scsi generic sg1 type 0
Sep 16 07:47:17 tomm kernel: [ 2.048760] sda: sda1 sda2 < sda5 >
Sep 16 07:47:17 tomm kernel: [ 2.049035] sd 2:0:0:0: [sda] Attached SCSI disk
Sep 16 07:47:17 tomm kernel: [ 2.131295] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Sep 16 07:47:17 tomm kernel: [ 2.454324] lp: driver loaded but no devices found
Sep 16 07:47:17 tomm kernel: [ 2.463971] ppdev: user-space parallel port driver
Sep 16 07:47:17 tomm kernel: [ 2.613483] EXT4-fs (sda1): re-mounted. Opts: errors=remount-ro
Sep 16 07:47:17 tomm kernel: [ 2.960757] audit: type=1400 audit(1537098436.496:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=366 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 2.960763] audit: type=1400 audit(1537098436.496:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session//chromium" pid=366 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 2.973411] audit: type=1400 audit(1537098436.508:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=369 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 2.973417] audit: type=1400 audit(1537098436.508:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=369 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 2.973420] audit: type=1400 audit(1537098436.508:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-helper" pid=369 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 2.973424] audit: type=1400 audit(1537098436.508:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=369 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 3.012219] audit: type=1400 audit(1537098436.548:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince" pid=372 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 3.012225] audit: type=1400 audit(1537098436.548:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince//sanitized_helper" pid=372 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 3.012229] audit: type=1400 audit(1537098436.548:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/evince-previewer" pid=372 comm="apparmor_parser"
Sep 16 07:47:17 tomm kernel: [ 3.406072] random: nonblocking pool is initialized
Sep 16 07:47:17 tomm kernel: [ 3.441711] piix4_smbus 0000:00:07.0: SMBus Host Controller at 0x4100, revision 0
Sep 16 07:47:17 tomm kernel: [ 3.613408] [drm] Initialized drm 1.1.0 20060810
Sep 16 07:47:17 tomm kernel: [ 3.799186] vboxvideo: loading out-of-tree module taints kernel.
Sep 16 07:47:17 tomm kernel: [ 3.818515] [drm] VRAM 01e00000
Sep 16 07:47:17 tomm kernel: [ 3.823206] [TTM] Zone kernel: Available graphics memory: 439280 kiB
Sep 16 07:47:17 tomm kernel: [ 3.823207] [TTM] Zone highmem: Available graphics memory: 1031124 kiB
Sep 16 07:47:17 tomm kernel: [ 3.823207] [TTM] Initializing pool allocator
Sep 16 07:47:17 tomm kernel: [ 3.823210] [TTM] Initializing DMA pool allocator
Sep 16 07:47:17 tomm kernel: [ 3.832083] intel_rapl: no valid rapl domains found in package 0
Sep 16 07:47:17 tomm kernel: [ 3.881127] fbcon: vboxdrmfb (fb0) is primary device
Sep 16 07:47:17 tomm kernel: [ 3.887662] Console: switching to colour frame buffer device 100x37
Sep 16 07:47:17 tomm kernel: [ 3.888495] vboxvideo 0000:00:02.0: fb0: vboxdrmfb frame buffer device
Sep 16 07:47:17 tomm kernel: [ 3.891360] [drm] Initialized vboxvideo 1.0.0 20130823 for 0000:00:02.0 on minor 0
Sep 16 07:47:17 tomm kernel: [ 3.892275] snd_intel8x0 0000:00:05.0: disable (unknown or VT-d) VM optimization
Sep 16 07:47:17 tomm kernel: [ 3.896821] Adding 8703996k swap on /dev/sda5. Priority:-1 extents:1 across:8703996k FS
Sep 16 07:47:17 tomm acpid: starting up with netlink and the input layer
Sep 16 07:47:17 tomm ModemManager[607]: <info> ModemManager (version 1.6.4) starting in system bus...
Sep 16 07:47:17 tomm systemd[1]: Starting Avahi mDNS/DNS-SD Stack...
Sep 16 07:47:17 tomm acpid: 9 rules loaded
Sep 16 07:47:17 tomm acpid: waiting for events: event logging is off
Sep 16 07:47:17 tomm systemd[1]: Started CUPS Scheduler.
Sep 16 07:47:17 tomm avahi-daemon[613]: Found user 'avahi' (UID 111) and group 'avahi' (GID 120).
Sep 16 07:47:17 tomm avahi-daemon[613]: Successfully dropped root privileges.
Sep 16 07:47:17 tomm avahi-daemon[613]: avahi-daemon 0.6.32-rc starting up.
Sep 16 07:47:17 tomm systemd[1]: Started Regular background program processing daemon.
Sep 16 07:47:17 tomm systemd[1]: Starting Login Service...
Sep 16 07:47:17 tomm cron[620]: (CRON) INFO (pidfile fd = 3)
Sep 16 07:47:17 tomm cron[620]: (CRON) INFO (Running @reboot jobs)
Sep 16 07:47:17 tomm systemd[1]: Starting Detect the available GPUs and deal with any system changes...
Sep 16 07:47:17 tomm systemd[1]: Starting Restore /etc/resolv.conf if the system crashed before the ppp link was shut down...
Sep 16 07:47:17 tomm gpu-manager[627]: /etc/modprobe.d is not a file
Sep 16 07:47:17 tomm systemd[1]: Started Run anacron jobs.
Sep 16 07:47:17 tomm anacron[637]: Anacron 2.3 started on 2018-09-16
Sep 16 07:47:17 tomm gpu-manager[627]: /etc/modprobe.d is not a file
Sep 16 07:47:17 tomm systemd[1]: Starting Permit User Sessions...
Sep 16 07:47:17 tomm anacron[637]: Normal exit (0 jobs run)
Sep 16 07:47:17 tomm systemd[1]: Started D-Bus System Message Bus.
Sep 16 07:47:17 tomm gpu-manager[627]: /etc/modprobe.d is not a file
Sep 16 07:47:17 tomm gpu-manager[627]: message repeated 2 times: [ /etc/modprobe.d is not a file]
Sep 16 07:47:17 tomm gpu-manager[627]: Error: can't open /lib/modules/4.4.140tgraham/updates/dkms
Sep 16 07:47:17 tomm gpu-manager[627]: Error: can't open /lib/modules/4.4.140tgraham/updates/dkms
Sep 16 07:47:17 tomm dbus[643]: [system] AppArmor D-Bus mediation is enabled
Sep 16 07:47:17 tomm thermald[585]: NO RAPL sysfs present
Sep 16 07:47:17 tomm thermald[585]: 22 CPUID levels; family:model:stepping 0x6:9e:9 (6:158:9)
Sep 16 07:47:17 tomm thermald[585]: Polling mode is enabled: 4
Sep 16 07:47:17 tomm thermald[585]: Thermal DTS: No coretemp sysfs found
Sep 16 07:47:17 tomm avahi-daemon[613]: Successfully called chroot().
Sep 16 07:47:17 tomm avahi-daemon[613]: Successfully dropped remaining capabilities.
Sep 16 07:47:17 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.systemd1'
Sep 16 07:47:17 tomm systemd[1]: Started Avahi mDNS/DNS-SD Stack.
Sep 16 07:47:17 tomm systemd[1]: Started Thermal Daemon Service.
Sep 16 07:47:17 tomm systemd[1]: Starting Network Manager...
Sep 16 07:47:17 tomm avahi-daemon[613]: No service file found in /etc/avahi/services.
Sep 16 07:47:17 tomm avahi-daemon[613]: Network interface enumeration completed.
Sep 16 07:47:17 tomm avahi-daemon[613]: Server startup complete. Host name is tomm.local. Local service cookie is 687368186.
Sep 16 07:47:17 tomm systemd[1]: Starting Snappy daemon...
Sep 16 07:47:17 tomm thermald[585]: Thermal DTS or hwmon: No Zones present Need to configure manually
Sep 16 07:47:17 tomm thermald[585]: No thermal sensors found
Sep 16 07:47:17 tomm thermald[585]: THD engine start failed
Sep 16 07:47:17 tomm systemd[1]: Started Make remote CUPS printers available locally.
Sep 16 07:47:17 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.PolicyKit1' unit='polkitd.service'
Sep 16 07:47:17 tomm systemd[1]: Starting LSB: automatic crash report generation...
Sep 16 07:47:17 tomm systemd[1]: Starting LSB: Speech Dispatcher...
Sep 16 07:47:17 tomm systemd[1]: Starting LSB: daemon to balance interrupts for SMP systems...
Sep 16 07:47:17 tomm systemd[1]: Started System Logging Service.
Sep 16 07:47:17 tomm gpu-manager[627]: update-alternatives: error: no alternatives for i386-linux-gnu_gfxcore_conf
Sep 16 07:47:17 tomm systemd[1]: Started Restore /etc/resolv.conf if the system crashed before the ppp link was shut down.
Sep 16 07:47:17 tomm systemd[1]: Started Detect the available GPUs and deal with any system changes.
Sep 16 07:47:17 tomm systemd[1]: Started Permit User Sessions.
Sep 16 07:47:17 tomm snapd[665]: AppArmor status: apparmor is enabled and all features are available
Sep 16 07:47:17 tomm NetworkManager[663]: <info> [1537098437.8532] NetworkManager (version 1.2.6) is starting...
Sep 16 07:47:17 tomm NetworkManager[663]: <info> [1537098437.8539] Read config: /etc/NetworkManager/NetworkManager.conf (etc: default-wifi-powersave-on.conf)
Sep 16 07:47:17 tomm NetworkManager[663]: <info> [1537098437.8630] manager[0x997e100]: monitoring kernel firmware directory '/lib/firmware'.
Sep 16 07:47:17 tomm NetworkManager[663]: <info> [1537098437.8633] monitoring ifupdown state file '/run/network/ifstate'.
Sep 16 07:47:17 tomm NetworkManager[663]: <info> [1537098437.8695] dns-mgr[0x99704b0]: init: dns=dnsmasq, rc-manager=resolvconf, plugin=dnsmasq
Sep 16 07:47:17 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service'
Sep 16 07:47:17 tomm snapd[665]: 2018/09/16 07:47:17.895347 daemon.go:343: started snapd/2.34.2 (series 16; classic) ubuntu/16.04 (i386) linux/4.4.140tgraham.
Sep 16 07:47:17 tomm systemd[1]: Started Snappy daemon.
Sep 16 07:47:17 tomm systemd[1]: Started LSB: Record successful boot for GRUB.
Sep 16 07:47:17 tomm snapd[665]: 2018/09/16 07:47:17.905588 stateengine.go:101: state ensure error: Get https://api.snapcraft.io/api/v1/snaps/sections: dial tcp: lookup api.snapcraft.io on [::1]:53: read udp [::1]:53299->[::1]:53: read: connection refused
Sep 16 07:47:17 tomm systemd[1]: Started LSB: Set the CPU Frequency Scaling governor to "ondemand".
Sep 16 07:47:18 tomm speech-dispatcher[673]: * speech-dispatcher disabled; edit /etc/default/speech-dispatcher
Sep 16 07:47:18 tomm systemd[1]: Started LSB: Speech Dispatcher.
Sep 16 07:47:18 tomm apport[670]: * Starting automatic crash report generation: apport
Sep 16 07:47:18 tomm apport[670]: ...done.
Sep 16 07:47:18 tomm irqbalance[686]: * Starting SMP IRQ Balancer: irqbalance
Sep 16 07:47:18 tomm systemd[1]: Started LSB: automatic crash report generation.
Sep 16 07:47:18 tomm /usr/sbin/irqbalance: Balancing is ineffective on systems with a single cpu. Shutting down
Sep 16 07:47:18 tomm irqbalance[686]: ...done.
Sep 16 07:47:18 tomm systemd[1]: Started LSB: daemon to balance interrupts for SMP systems.
Sep 16 07:47:18 tomm systemd[1]: Started Network Manager.
Sep 16 07:47:18 tomm systemd[1]: Started Login Service.
Sep 16 07:47:18 tomm systemd[1]: Starting Network Manager Script Dispatcher Service...
Sep 16 07:47:18 tomm systemd[1]: Reached target Network.
Sep 16 07:47:18 tomm systemd[1]: Starting OpenBSD Secure Shell server...
Sep 16 07:47:18 tomm systemd[1]: Started Unattended Upgrades Shutdown.
Sep 16 07:47:18 tomm systemd[1]: Starting Network Manager Wait Online...
Sep 16 07:47:18 tomm systemd[1]: Starting Authenticate and Authorize Users to Run Privileged Tasks...
Sep 16 07:47:18 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1497] init!
Sep 16 07:47:18 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.hostname1' unit='dbus-org.freedesktop.hostname1.service'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1498] management mode: unmanaged
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1501] devices added (path: /sys/devices/pci0000:00/0000:00:03.0/net/enp0s3, iface: enp0s3)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1501] device added (path: /sys/devices/pci0000:00/0000:00:03.0/net/enp0s3, iface: enp0s3): no ifupdown configuration found.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1501] devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1501] device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1502] end _init.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1502] settings: loaded plugin ifupdown: (C) 2008 Canonical Ltd. To report bugs please use the NetworkManager mailing list. (/usr/lib/i386-linux-gnu/NetworkManager/libnm-settings-plugin-ifupdown.so)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1502] settings: loaded plugin keyfile: (c) 2007 - 2015 Red Hat, Inc. To report bugs please use the NetworkManager mailing list.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1513] SettingsPlugin-Ofono: init!
Sep 16 07:47:18 tomm NetworkManager[663]: <warn> [1537098438.1513] SettingsPlugin-Ofono: file doesn't exist: /var/lib/ofono
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1514] SettingsPlugin-Ofono: end _init.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1514] settings: loaded plugin ofono: (C) 2013-2016 Canonical Ltd. To report bugs please use the NetworkManager mailing list. (/usr/lib/i386-linux-gnu/NetworkManager/libnm-settings-plugin-ofono.so)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1514] (161049904) ... get_connections.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1514] (161049904) ... get_connections (managed=false): return empty list.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1521] SettingsPlugin-Ofono: (161050024) ... get_connections.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1522] SettingsPlugin-Ofono: (161050024) connections count: 0
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.1522] get unmanaged devices count: 0
Sep 16 07:47:18 tomm systemd[1]: Starting Wait until snapd is fully seeded...
Sep 16 07:47:18 tomm systemd[1]: Started Network Manager Script Dispatcher Service.
Sep 16 07:47:18 tomm polkitd[753]: started daemon version 0.105 using authority implementation `local' version `0.105'
Sep 16 07:47:18 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Sep 16 07:47:18 tomm accounts-daemon[601]: started daemon version 0.6.40
Sep 16 07:47:18 tomm systemd[1]: Started OpenBSD Secure Shell server.
Sep 16 07:47:18 tomm systemd[1]: Started Wait until snapd is fully seeded.
Sep 16 07:47:18 tomm systemd[1]: Started Authenticate and Authorize Users to Run Privileged Tasks.
Sep 16 07:47:18 tomm systemd[1]: Started Accounts Service.
Sep 16 07:47:18 tomm systemd[1]: Started Modem Manager.
Sep 16 07:47:18 tomm systemd[1]: Starting Hostname Service...
Sep 16 07:47:18 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.hostname1'
Sep 16 07:47:18 tomm systemd[1]: Started Hostname Service.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2874] settings: hostname: using hostnamed
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2874] settings: hostname changed from (none) to "tomm"
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2876] Using DHCP client 'dhclient'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2876] manager: WiFi enabled by radio killswitch; enabled by state file
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2877] manager: WWAN enabled by radio killswitch; enabled by state file
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2877] manager: Networking is enabled by state file
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2877] Loaded device plugin: NMVxlanFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2877] Loaded device plugin: NMVlanFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2877] Loaded device plugin: NMVethFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2878] Loaded device plugin: NMTunFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2878] Loaded device plugin: NMMacvlanFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2878] Loaded device plugin: NMIPTunnelFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2878] Loaded device plugin: NMInfinibandFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2878] Loaded device plugin: NMEthernetFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2878] Loaded device plugin: NMBridgeFactory (internal)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2879] Loaded device plugin: NMBondFactory (internal)
Sep 16 07:47:18 tomm nm-dispatcher: req:1 'hostname': new request (1 scripts)
Sep 16 07:47:18 tomm nm-dispatcher: req:1 'hostname': start running ordered scripts...
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2957] Loaded device plugin: NMWwanFactory (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-wwan.so)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2975] Loaded device plugin: NMAtmManager (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-adsl.so)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.2994] Loaded device plugin: NMWifiFactory (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-wifi.so)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3028] Loaded device plugin: NMBluezManager (/usr/lib/i386-linux-gnu/NetworkManager/libnm-device-plugin-bluetooth.so)
Sep 16 07:47:18 tomm NetworkManager[663]: nm_device_get_device_type: assertion 'NM_IS_DEVICE (self)' failed
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3252] device (lo): link connected
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3265] manager: (lo): new Generic device (/org/freedesktop/NetworkManager/Devices/0)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3287] manager: (enp0s3): new Ethernet device (/org/freedesktop/NetworkManager/Devices/1)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3302] keyfile: add connection in-memory (2388c1ab-810d-3f6f-8d61-4b76f8318a1f,"Wired connection 1")
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3354] settings: (enp0s3): created default wired connection 'Wired connection 1'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3368] device (enp0s3): state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Sep 16 07:47:18 tomm kernel: [ 4.798592] IPv6: ADDRCONF(NETDEV_UP): enp0s3: link is not ready
Sep 16 07:47:18 tomm kernel: [ 4.799985] IPv6: ADDRCONF(NETDEV_UP): enp0s3: link is not ready
Sep 16 07:47:18 tomm kernel: [ 4.800878] e1000: enp0s3 NIC Link is Up 1000 Mbps Full Duplex, Flow Control: RX
Sep 16 07:47:18 tomm kernel: [ 4.801134] IPv6: ADDRCONF(NETDEV_CHANGE): enp0s3: link becomes ready
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3490] urfkill disappeared from the bus
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3632] device (enp0s3): link connected
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3685] ModemManager available in the bus
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3689] ofono is now available
Sep 16 07:47:18 tomm NetworkManager[663]: <warn> [1537098438.3695] failed to enumerate oFono devices: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.ofono was not provided by any .service files
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3700] device (enp0s3): state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3848] policy: auto-activating connection 'Wired connection 1'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3862] device (enp0s3): Activation: starting connection 'Wired connection 1' (2388c1ab-810d-3f6f-8d61-4b76f8318a1f)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3879] device (enp0s3): state change: disconnected -> prepare (reason 'none') [30 40 0]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3886] manager: NetworkManager state is now CONNECTING
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3949] device (enp0s3): state change: prepare -> config (reason 'none') [40 50 0]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.3992] device (enp0s3): state change: config -> ip-config (reason 'none') [50 70 0]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4227] dhcp4 (enp0s3): activation: beginning transaction (timeout in 45 seconds)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4287] dhcp4 (enp0s3): dhclient started with pid 776
Sep 16 07:47:18 tomm dhclient[776]: DHCPREQUEST of 192.168.1.3 on enp0s3 to 255.255.255.255 port 67 (xid=0x5b8ef85c)
Sep 16 07:47:18 tomm dhclient[776]: DHCPACK of 192.168.1.3 from 192.168.1.1
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4472] address 192.168.1.3
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4490] plen 24 (255.255.255.0)
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4492] gateway 192.168.1.1
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4494] server identifier 192.168.1.1
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4495] lease time 604800
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4496] hostname 'tomm'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4498] nameserver '192.168.1.1'
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4500] dhcp4 (enp0s3): state changed unknown -> bound
Sep 16 07:47:18 tomm avahi-daemon[613]: Joining mDNS multicast group on interface enp0s3.IPv4 with address 192.168.1.3.
Sep 16 07:47:18 tomm avahi-daemon[613]: New relevant interface enp0s3.IPv4 for mDNS.
Sep 16 07:47:18 tomm avahi-daemon[613]: Registering new address record for 192.168.1.3 on enp0s3.IPv4.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4519] device (enp0s3): state change: ip-config -> ip-check (reason 'none') [70 80 0]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4524] device (enp0s3): state change: ip-check -> secondaries (reason 'none') [80 90 0]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4579] device (enp0s3): state change: secondaries -> activated (reason 'none') [90 100 0]
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4602] manager: NetworkManager state is now CONNECTED_LOCAL
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4632] manager: NetworkManager state is now CONNECTED_GLOBAL
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4641] policy: set 'Wired connection 1' (enp0s3) as default for IPv4 routing and DNS
Sep 16 07:47:18 tomm dhclient[776]: bound to 192.168.1.3 -- renewal in 283313 seconds.
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4669] dns-plugin[0x9986310]: starting dnsmasq...
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.4694] dns-mgr: Writing DNS information to /sbin/resolvconf
Sep 16 07:47:18 tomm dnsmasq[786]: started, version 2.75 cache disabled
Sep 16 07:47:18 tomm dnsmasq[786]: compile time options: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth DNSSEC loop-detect inotify
Sep 16 07:47:18 tomm dnsmasq[786]: DBus support enabled: connected to system bus
Sep 16 07:47:18 tomm dnsmasq[786]: warning: no upstream servers configured
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.6714] device (enp0s3): Activation: successful, device activated.
Sep 16 07:47:18 tomm nm-dispatcher: req:2 'up' [enp0s3]: new request (1 scripts)
Sep 16 07:47:18 tomm nm-dispatcher: req:2 'up' [enp0s3]: start running ordered scripts...
Sep 16 07:47:18 tomm NetworkManager[663]: <info> [1537098438.6788] dnsmasq[0x9986310]: dnsmasq appeared as :1.15
Sep 16 07:47:18 tomm dnsmasq[786]: setting upstream servers from DBus
Sep 16 07:47:18 tomm dnsmasq[786]: using nameserver 192.168.1.1#53(via enp0s3)
Sep 16 07:47:18 tomm systemd[1]: Reloading OpenBSD Secure Shell server.
Sep 16 07:47:18 tomm systemd[1]: Reloaded OpenBSD Secure Shell server.
Sep 16 07:47:18 tomm systemd[1]: Reloading OpenBSD Secure Shell server.
Sep 16 07:47:18 tomm systemd[1]: Reloaded OpenBSD Secure Shell server.
Sep 16 07:47:19 tomm vboxadd[583]: VirtualBox Guest Additions: Starting.
Sep 16 07:47:19 tomm kernel: [ 6.147038] snd_intel8x0 0000:00:05.0: white list rate for 1028:0177 is 48000
Sep 16 07:47:19 tomm avahi-daemon[613]: Joining mDNS multicast group on interface enp0s3.IPv6 with address fe80::79fe:644a:922b:84ba.
Sep 16 07:47:19 tomm avahi-daemon[613]: New relevant interface enp0s3.IPv6 for mDNS.
Sep 16 07:47:19 tomm avahi-daemon[613]: Registering new address record for fe80::79fe:644a:922b:84ba on enp0s3.*.
Sep 16 07:47:19 tomm kernel: [ 6.151021] vgdrvHeartbeatInit: Setting up heartbeat to trigger every 2000 milliseconds
Sep 16 07:47:19 tomm kernel: [ 6.151099] input: Unspecified device as /devices/pci0000:00/0000:00:04.0/input/input7
Sep 16 07:47:19 tomm kernel: [ 6.152253] vboxguest: misc device minor 55, IRQ 20, I/O port d020, MMIO at 00000000f0400000 (size 0x400000)
Sep 16 07:47:19 tomm kernel: [ 6.152255] vboxguest: Successfully loaded version 5.2.18 (interface 0x00010004)
Sep 16 07:47:19 tomm systemd[1]: Reached target Sound Card.
Sep 16 07:47:19 tomm kernel: [ 6.178891] vboxsf: Successfully loaded version 5.2.18 (interface 0x00010004)
Sep 16 07:47:19 tomm NetworkManager[663]: <info> [1537098439.7246] dhcp6 (enp0s3): activation: beginning transaction (timeout in 45 seconds)
Sep 16 07:47:19 tomm NetworkManager[663]: <info> [1537098439.7285] dhcp6 (enp0s3): dhclient started with pid 956
Sep 16 07:47:19 tomm NetworkManager[663]: <info> [1537098439.7304] policy: set 'Wired connection 1' (enp0s3) as default for IPv6 routing and DNS
Sep 16 07:47:19 tomm dnsmasq[786]: setting upstream servers from DBus
Sep 16 07:47:19 tomm dnsmasq[786]: using nameserver 192.168.1.1#53(via enp0s3)
Sep 16 07:47:19 tomm dnsmasq[786]: using nameserver 2600:6c64:6a7f:f406::1#53(via enp0s3)
Sep 16 07:47:19 tomm NetworkManager[663]: <info> [1537098439.7319] dns-mgr: Writing DNS information to /sbin/resolvconf
Sep 16 07:47:20 tomm systemd[1]: Started vboxadd.service.
Sep 16 07:47:20 tomm systemd[1]: Starting Light Display Manager...
Sep 16 07:47:20 tomm systemd[1]: Starting vboxadd-service.service...
Sep 16 07:47:20 tomm vboxadd-service[1017]: vboxadd-service.sh: Starting VirtualBox Guest Addition service.
Sep 16 07:47:20 tomm vboxadd-service.sh: Starting VirtualBox Guest Addition service.
Sep 16 07:47:20 tomm kernel: [ 6.710621] VBoxService 5.2.18 r124319 (verbosity: 0) linux.x86 (Aug 14 2018 13:51:03) release log
Sep 16 07:47:20 tomm kernel: [ 6.710621] 00:00:00.000154 main Log opened 2018-09-16T11:47:20.249149000Z
Sep 16 07:47:20 tomm kernel: [ 6.710673] 00:00:00.000244 main OS Product: Linux
Sep 16 07:47:20 tomm kernel: [ 6.710709] 00:00:00.000287 main OS Release: 4.4.140tgraham
Sep 16 07:47:20 tomm kernel: [ 6.710759] 00:00:00.000321 main OS Version: #1 SMP Thu Sep 6 21:35:37 EDT 2018
Sep 16 07:47:20 tomm kernel: [ 6.710834] 00:00:00.000377 main Executable: /opt/VBoxGuestAdditions-5.2.18/sbin/VBoxService
Sep 16 07:47:20 tomm kernel: [ 6.710834] 00:00:00.000378 main Process ID: 1035
Sep 16 07:47:20 tomm kernel: [ 6.710834] 00:00:00.000379 main Package type: LINUX_32BITS_GENERIC
Sep 16 07:47:20 tomm kernel: [ 6.714541] 00:00:00.004085 main 5.2.18 r124319 started. Verbose level = 0
Sep 16 07:47:20 tomm vboxadd-service.sh: VirtualBox Guest Addition service started.
Sep 16 18:33:52 tomm systemd[1]: Started vboxadd-service.service.
Sep 16 18:33:52 tomm systemd[1]: Time has been changed
Sep 16 18:33:52 tomm systemd[1]: Received SIGRTMIN+21 from PID 335 (plymouthd).
Sep 16 18:33:52 tomm systemd[1]: Started Light Display Manager.
Sep 16 18:33:52 tomm dhclient[956]: XMT: Info-Request on enp0s3, interval 940ms.
Sep 16 18:33:52 tomm dhclient[956]: RCV: Reply message on enp0s3 from fe80::3ad5:47ff:febd:6a88.
Sep 16 18:33:52 tomm NetworkManager[663]: <info> [1537137232.6791] nameserver '2600:6c64:6a7f:f406::1'
Sep 16 18:33:52 tomm NetworkManager[663]: <info> [1537137232.6793] dhcp6 (enp0s3): state changed unknown -> bound
Sep 16 18:33:52 tomm nm-dispatcher: req:3 'dhcp6-change' [enp0s3]: new request (1 scripts)
Sep 16 18:33:52 tomm nm-dispatcher: req:3 'dhcp6-change' [enp0s3]: start running ordered scripts...
Sep 16 18:33:52 tomm NetworkManager[663]: <info> [1537137232.6899] dhcp6 (enp0s3): client pid 956 exited with status 0
Sep 16 18:33:52 tomm NetworkManager[663]: <info> [1537137232.6904] dhcp6 (enp0s3): state changed bound -> done
Sep 16 18:33:52 tomm systemd[1]: Created slice User Slice of tom.
Sep 16 18:33:52 tomm systemd[1]: Starting User Manager for UID 1000...
Sep 16 18:33:52 tomm systemd[1]: Started Session c1 of user tom.
Sep 16 18:33:52 tomm systemd[1076]: Reached target Timers.
Sep 16 18:33:52 tomm systemd[1076]: Reached target Sockets.
Sep 16 18:33:52 tomm systemd[1076]: Reached target Paths.
Sep 16 18:33:52 tomm systemd[1076]: Reached target Basic System.
Sep 16 18:33:52 tomm systemd[1076]: Reached target Default.
Sep 16 18:33:52 tomm systemd[1076]: Startup finished in 31ms.
Sep 16 18:33:52 tomm systemd[1]: Started User Manager for UID 1000.
Sep 16 18:33:52 tomm ModemManager[607]: <info> Couldn't check support for device at '/sys/devices/pci0000:00/0000:00:03.0': not supported by any plugin
Sep 16 18:33:52 tomm avahi-daemon[613]: Leaving mDNS multicast group on interface enp0s3.IPv6 with address fe80::79fe:644a:922b:84ba.
Sep 16 18:33:52 tomm avahi-daemon[613]: Joining mDNS multicast group on interface enp0s3.IPv6 with address 2600:6c64:6a7f:f406:dd33:a807:a25c:63ae.
Sep 16 18:33:52 tomm avahi-daemon[613]: Registering new address record for 2600:6c64:6a7f:f406:dd33:a807:a25c:63ae on enp0s3.*.
Sep 16 18:33:52 tomm avahi-daemon[613]: Withdrawing address record for fe80::79fe:644a:922b:84ba on enp0s3.
Sep 16 18:33:53 tomm org.ayatana.bamf[1231]: bamfdaemon start/running, process 1285
Sep 16 18:33:53 tomm avahi-daemon[613]: Registering new address record for 2600:6c64:6a7f:f406:c830:4955:8f2:5a94 on enp0s3.*.
Sep 16 18:33:53 tomm org.a11y.Bus[1231]: ** (process:1330): WARNING **: Failed to register client: GDBus.Error:org.freedesktop.DBus.Error.ServiceUnknown: The name org.gnome.SessionManager was not provided by any .service files
Sep 16 18:33:53 tomm org.a11y.Bus[1231]: Activating service name='org.a11y.atspi.Registry'
Sep 16 18:33:53 tomm org.a11y.Bus[1231]: Successfully activated service 'org.a11y.atspi.Registry'
Sep 16 18:33:53 tomm org.a11y.atspi.Registry[1339]: SpiRegistry daemon is running with well-known name - org.a11y.atspi.Registry
Sep 16 18:33:55 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.UPower' unit='upower.service'
Sep 16 18:33:55 tomm systemd[1]: Starting Daemon for power management...
Sep 16 18:33:55 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.UPower'
Sep 16 18:33:55 tomm systemd[1]: Started Daemon for power management.
Sep 16 18:33:55 tomm NetworkManager[663]: <info> [1537137235.8785] manager: startup complete
Sep 16 18:33:55 tomm systemd[1]: Started Network Manager Wait Online.
Sep 16 18:33:55 tomm systemd[1]: Reached target Network is Online.
Sep 16 18:33:55 tomm systemd[1]: Started crash report submission daemon.
Sep 16 18:33:55 tomm systemd[1]: Starting /etc/rc.local Compatibility...
Sep 16 18:33:55 tomm systemd[1]: Started /etc/rc.local Compatibility.
Sep 16 18:33:55 tomm systemd[1]: Starting Hold until boot process finishes up...
Sep 16 18:33:55 tomm systemd[1]: Started Hold until boot process finishes up.
Sep 16 18:33:55 tomm whoopsie[1460]: [18:33:55] Using lock path: /var/lock/whoopsie/lock
Sep 16 18:33:55 tomm gnome-session[1392]: gnome-session-is-accelerated: llvmpipe detected.
Sep 16 18:33:55 tomm systemd[1]: Starting Set console scheme...
Sep 16 18:33:56 tomm systemd[1]: Started Getty on tty1.
Sep 16 18:33:56 tomm whoopsie[1460]: [18:33:56] The default IPv4 route is: /org/freedesktop/NetworkManager/ActiveConnection/0
Sep 16 18:33:56 tomm whoopsie[1460]: [18:33:56] Not a paid data plan: /org/freedesktop/NetworkManager/ActiveConnection/0
Sep 16 18:33:56 tomm whoopsie[1460]: [18:33:56] Found usable connection: /org/freedesktop/NetworkManager/ActiveConnection/0
Sep 16 18:33:56 tomm systemd[1]: Reached target Login Prompts.
Sep 16 18:33:56 tomm systemd[1]: Reached target Multi-User System.
Sep 16 18:33:56 tomm dbus[643]: [system] Activating via systemd: service name='org.bluez' unit='dbus-org.bluez.service'
Sep 16 18:33:56 tomm systemd[1]: Reached target Graphical Interface.
Sep 16 18:33:56 tomm systemd[1]: Starting Update UTMP about System Runlevel Changes...
Sep 16 18:33:56 tomm systemd[1]: Started Set console scheme.
Sep 16 18:33:56 tomm systemd[1]: Started Update UTMP about System Runlevel Changes.
Sep 16 18:33:56 tomm systemd[1]: Startup finished in 2.017s (kernel) + 8.347s (userspace) = 10.364s.
Sep 16 18:33:56 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.RealtimeKit1' unit='rtkit-daemon.service'
Sep 16 18:33:56 tomm systemd[1]: Starting RealtimeKit Scheduling Policy Service...
Sep 16 18:33:56 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Sep 16 18:33:56 tomm systemd[1]: Started RealtimeKit Scheduling Policy Service.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Successfully called chroot.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Successfully dropped privileges.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Successfully limited resources.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Running.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Successfully made thread 1564 of process 1564 (n/a) owned by '1000' high priority at nice level -11.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Supervising 1 threads of 1 processes of 1 users.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Watchdog thread running.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Canary thread running.
Sep 16 18:33:56 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.ColorManager' unit='colord.service'
Sep 16 18:33:56 tomm systemd[1]: Starting Manage, Install and Generate Color Profiles...
Sep 16 18:33:56 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Sep 16 18:33:56 tomm systemd[1]: Started Manage, Install and Generate Color Profiles.
Sep 16 18:33:56 tomm pulseaudio[1564]: [pulseaudio] alsa-util.c: Disabling timer-based scheduling because running inside a VM.
Sep 16 18:33:56 tomm pulseaudio[1564]: [pulseaudio] sink.c: Default and alternate sample rates are the same.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Supervising 1 threads of 1 processes of 1 users.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Successfully made thread 1606 of process 1564 (n/a) owned by '1000' RT at priority 5.
Sep 16 18:33:56 tomm rtkit-daemon[1565]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 18:33:57 tomm pulseaudio[1564]: [pulseaudio] alsa-util.c: Disabling timer-based scheduling because running inside a VM.
Sep 16 18:33:57 tomm rtkit-daemon[1565]: Supervising 2 threads of 1 processes of 1 users.
Sep 16 18:33:57 tomm pulseaudio[1564]: [alsa-sink-Intel ICH] alsa-sink.c: ALSA woke us up to write new data to the device, but there was actually nothing to write.
Sep 16 18:33:57 tomm pulseaudio[1564]: [alsa-sink-Intel ICH] alsa-sink.c: Most likely this is a bug in the ALSA driver 'snd_intel8x0'. Please report this issue to the ALSA developers.
Sep 16 18:33:57 tomm pulseaudio[1564]: [alsa-sink-Intel ICH] alsa-sink.c: We were woken up with POLLOUT set -- however a subsequent snd_pcm_avail() returned 0 or another value < min_avail.
Sep 16 18:33:57 tomm rtkit-daemon[1565]: Successfully made thread 1607 of process 1564 (n/a) owned by '1000' RT at priority 5.
Sep 16 18:33:57 tomm rtkit-daemon[1565]: Supervising 3 threads of 1 processes of 1 users.
Sep 16 18:33:57 tomm rtkit-daemon[1565]: Successfully made thread 1610 of process 1610 (n/a) owned by '1000' high priority at nice level -11.
Sep 16 18:33:57 tomm rtkit-daemon[1565]: Supervising 4 threads of 2 processes of 1 users.
Sep 16 18:33:57 tomm pulseaudio[1610]: [pulseaudio] pid.c: Daemon already running.
Sep 16 18:33:57 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.locale1' unit='dbus-org.freedesktop.locale1.service'
Sep 16 18:33:57 tomm systemd[1]: Starting Locale Service...
Sep 16 18:33:57 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.locale1'
Sep 16 18:33:57 tomm systemd[1]: Started Locale Service.
Sep 16 18:33:57 tomm org.gnome.ScreenSaver[1231]: ** (gnome-screensaver:1567): WARNING **: Couldn't get presence status: The name org.gnome.SessionManager was not provided by any .service files
Sep 16 18:33:57 tomm gnome-session[1392]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Sep 16 18:33:57 tomm gnome-session[1392]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Sep 16 18:33:57 tomm gnome-session[1392]: SSH_AUTH_SOCK=/run/user/1000/keyring/ssh
Sep 16 18:33:58 tomm gnome-session-binary[1392]: Entering running state
Sep 16 18:33:58 tomm gnome-session[1392]: (process:1664): indicator-application-service-WARNING **: Name Lost
Sep 16 18:33:59 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.UDisks2' unit='udisks2.service'
Sep 16 18:33:59 tomm systemd[1]: Starting Disk Manager...
Sep 16 18:33:59 tomm udisksd[1747]: udisks daemon version 2.1.7 starting
Sep 16 18:33:59 tomm dbus[643]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Sep 16 18:33:59 tomm systemd[1]: Started Disk Manager.
Sep 16 18:33:59 tomm udisksd[1747]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Sep 16 18:33:59 tomm udisksd[1747]: Cleaning up mount point /media/tom/VBox_GAs_5.2.18 (device 11:0 is not mounted)
Sep 16 18:33:59 tomm dbus[643]: [system] Activating via systemd: service name='org.freedesktop.fwupd' unit='fwupd.service'
Sep 16 18:33:59 tomm systemd[1]: Starting Firmware update daemon...
Sep 16 18:33:59 tomm org.gtk.vfs.AfcVolumeMonitor[1231]: Volume monitor alive
Sep 16 18:33:59 tomm kernel: [ 13.992947] ISO 9660 Extensions: Microsoft Joliet Level 3
Sep 16 18:33:59 tomm kernel: [ 14.017268] ISO 9660 Extensions: RRIP_1991A
Sep 16 18:33:59 tomm udisksd[1747]: Mounted /dev/sr0 at /media/tom/VBox_GAs_5.2.18 on behalf of uid 1000
Sep 16 18:33:59 tomm NetworkManager[663]: <info> [1537137239.8778] manager: WiFi hardware radio set enabled
Sep 16 18:33:59 tomm NetworkManager[663]: <info> [1537137239.8778] manager: WWAN hardware radio set enabled
Sep 16 18:34:01 tomm fwupd[1762]: (fwupd:1762): Fu-WARNING **: FuMain: failed to get USB context: failed to init libusb: Other error [-99]
Sep 16 18:34:01 tomm systemd[1]: fwupd.service: Main process exited, code=exited, status=1/FAILURE
Sep 16 18:34:01 tomm systemd[1]: Failed to start Firmware update daemon.
Sep 16 18:34:01 tomm systemd[1]: fwupd.service: Unit entered failed state.
Sep 16 18:34:01 tomm systemd[1]: fwupd.service: Failed with result 'exit-code'.
Sep 16 18:34:01 tomm colord[1582]: (colord:1582): Cd-WARNING **: failed to get session [pid 1608]: No such device or address
Sep 16 18:34:02 tomm kernel: [ 16.719756] 00:00:10.009236 timesync vgsvcTimeSyncWorker: Radical guest time change: 38 802 155 333 000ns (GuestNow=1 537 137 242 413 284 000 ns GuestLast=1 537 098 440 257 951 000 ns fSetTimeLastLoop=true )
Sep 16 18:34:03 tomm org.gnome.ScreenSaver[1231]: ** Message: Lost the name, shutting down.
Sep 16 18:34:10 tomm systemd[1]: Started Session 1 of user tom.
Sep 16 18:34:18 tomm org.gnome.zeitgeist.Engine[1231]: ** (zeitgeist-datahub:1962): WARNING **: zeitgeist-datahub.vala:229: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
Sep 16 18:34:21 tomm pulseaudio[1564]: [pulseaudio] bluez5-util.c: GetManagedObjects() failed: org.freedesktop.DBus.Error.TimedOut: Failed to activate service 'org.bluez': timed out
Sep 16 18:34:53 tomm kernel: [ 68.178678] mymodule: module verification failed: signature and/or required key missing - tainting kernel
Sep 16 18:34:54 tomm kernel: [ 68.539063] Table at memory address: 0xC17DB180
Sep 16 18:40:06 tomm rsyslogd: [origin software="rsyslogd" swVersion="8.16.0" x-pid="579" x-info="http://www.rsyslog.com"] start
Sep 16 18:40:06 tomm 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 16 18:40:06 tomm rsyslogd: rsyslogd's groupid changed to 108
Sep 16 18:40:06 tomm rsyslogd: rsyslogd's userid changed to 104
Sep 16 18:40:06 tomm 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 16 18:40:06 tomm rsyslogd-2007: action 'action 10' suspended, next retry is Sun Sep 16 18:40:36 2018 [v8.16.0 try http://www.rsyslog.com/e/2007 ]
Sep 16 18:40:06 tomm kernel: [ 0.000000] Initializing cgroup subsys cpuset
Sep 16 18:40:06 tomm kernel: [ 0.000000] Initializing cgroup subsys cpu
Sep 16 18:40:06 tomm kernel: [ 0.000000] Initializing cgroup subsys cpuacct
Sep 16 18:40:06 tomm kernel: [ 0.000000] Linux version 4.4.140tgraham (root@tomm) (gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10) ) #1 SMP Thu Sep 6 21:35:37 EDT 2018 (Ubuntu 4.4.0-134.160-generic 4.4.140)
Sep 16 18:40:06 tomm kernel: [ 0.000000] KERNEL supported cpus:
Sep 16 18:40:06 tomm kernel: [ 0.000000] Intel GenuineIntel
Sep 16 18:40:06 tomm kernel: [ 0.000000] AMD AuthenticAMD
Sep 16 18:40:06 tomm kernel: [ 0.000000] NSC Geode by NSC
Sep 16 18:40:06 tomm kernel: [ 0.000000] Cyrix CyrixInstead
Sep 16 18:40:06 tomm kernel: [ 0.000000] Centaur CentaurHauls
Sep 16 18:40:06 tomm kernel: [ 0.000000] Transmeta GenuineTMx86
Sep 16 18:40:06 tomm kernel: [ 0.000000] Transmeta TransmetaCPU
Sep 16 18:40:06 tomm kernel: [ 0.000000] UMC UMC UMC UMC
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x01: 'x87 floating point registers'
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x02: 'SSE registers'
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/fpu: Supporting XSAVE feature 0x04: 'AVX registers'
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
Sep 16 18:40:06 tomm kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007ffeffff] usable
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x000000007fff0000-0x000000007fffffff] ACPI data
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Sep 16 18:40:06 tomm kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved
Sep 16 18:40:06 tomm kernel: [ 0.000000] NX (Execute Disable) protection: active
Sep 16 18:40:06 tomm kernel: [ 0.000000] SMBIOS 2.5 present.
Sep 16 18:40:06 tomm kernel: [ 0.000000] DMI: innotek GmbH VirtualBox/VirtualBox, BIOS VirtualBox 12/01/2006
Sep 16 18:40:06 tomm kernel: [ 0.000000] Hypervisor detected: KVM
Sep 16 18:40:06 tomm kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Sep 16 18:40:06 tomm kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Sep 16 18:40:06 tomm kernel: [ 0.000000] e820: last_pfn = 0x7fff0 max_arch_pfn = 0x1000000
Sep 16 18:40:06 tomm kernel: [ 0.000000] MTRR default type: uncachable
Sep 16 18:40:06 tomm kernel: [ 0.000000] MTRR variable ranges disabled:
Sep 16 18:40:06 tomm kernel: [ 0.000000] MTRR: Disabled
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/PAT: MTRRs disabled, skipping PAT initialization too.
Sep 16 18:40:06 tomm kernel: [ 0.000000] CPU MTRRs all blank - virtualized system.
Sep 16 18:40:06 tomm kernel: [ 0.000000] x86/PAT: Configuration [0-7]: WB WT UC- UC WB WT UC- UC
Sep 16 18:40:06 tomm kernel: [ 0.000000] found SMP MP-table at [mem 0x0009fff0-0x0009ffff] mapped at [c009fff0]
Sep 16 18:40:06 tomm kernel: [ 0.000000] Scanning 1 areas for low memory corruption
Sep 16 18:40:06 tomm kernel: [ 0.000000] initial memory mapped: [mem 0x00000000-0x021fffff]
Sep 16 18:40:06 tomm kernel: [ 0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
Sep 16 18:40:06 tomm kernel: [ 0.000000] BRK [0x01d82000, 0x01d82fff] PGTABLE
Sep 16 18:40:06 tomm kernel: [ 0.000000] BRK [0x01d83000, 0x01d83fff] PGTABLE
Sep 16 18:40:06 tomm kernel: [ 0.000000] RAMDISK: [mem 0x3348a000-0x35a3cfff]
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: Early table checksum verification disabled
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: RSDP 0x00000000000E0000 000024 (v02 VBOX )
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: XSDT 0x000000007FFF0030 00003C (v01 VBOX VBOXXSDT 00000001 ASL 00000061)
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: FACP 0x000000007FFF00F0 0000F4 (v04 VBOX VBOXFACP 00000001 ASL 00000061)
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: DSDT 0x000000007FFF0470 0021FF (v02 VBOX VBOXBIOS 00000002 INTL 20100528)
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: FACS 0x000000007FFF0200 000040
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: APIC 0x000000007FFF0240 000054 (v02 VBOX VBOXAPIC 00000001 ASL 00000061)
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: SSDT 0x000000007FFF02A0 0001CC (v01 VBOX VBOXCPUT 00000002 INTL 20100528)
Sep 16 18:40:06 tomm kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Sep 16 18:40:06 tomm kernel: [ 0.000000] 1155MB HIGHMEM available.