1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078 | Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Initializing cgroup subsys cpuset
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Initializing cgroup subsys cpu
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Initializing cgroup subsys cpuacct
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Linux version 3.16.0-23-generic (buildd@kissel) (gcc version 4.9.1 (Ubuntu 4.9.1-16ubuntu6) ) #31-Ubuntu SMP Tue Oct 21 18:00:35 UTC 2014 (Ubuntu 3.16.0-23.31-generic 3.16.4)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] KERNEL supported cpus:
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Intel GenuineIntel
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] AMD AuthenticAMD
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] NSC Geode by NSC
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Cyrix CyrixInstead
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Centaur CentaurHauls
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Transmeta GenuineTMx86
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Transmeta TransmetaCPU
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] UMC UMC UMC UMC
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] e820: BIOS-provided physical RAM map:
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x000000000009e000-0x000000000009ffff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x00000000000d2000-0x00000000000fffff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003bf4ffff] usable
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x000000003bf50000-0x000000003bf64fff] ACPI data
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x000000003bf65000-0x000000003bf65fff] ACPI NVS
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x000000003bf66000-0x000000003fffffff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec0ffff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BIOS-e820: [mem 0x00000000fff80000-0x00000000ffffffff] reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] NX (Execute Disable) protection: active
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] SMBIOS 2.4 present.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] DMI: Hewlett-Packard HP Pavilion dv9500 Notebook PC /30D1, BIOS F.25 11/29/2007
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] e820: last_pfn = 0x3bf50 max_arch_pfn = 0x1000000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] MTRR default type: uncachable
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] MTRR fixed ranges enabled:
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 00000-9FFFF write-back
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] A0000-BFFFF uncachable
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] C0000-D3FFF write-protect
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] D4000-E3FFF uncachable
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] E4000-FFFFF write-protect
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] MTRR variable ranges enabled:
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 0 base 0000000000 mask FFC0000000 write-back
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 1 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 2 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 3 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 4 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 5 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 6 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 7 disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] found SMP MP-table at [mem 0x000f8220-0x000f822f] mapped at [c00f8220]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Scanning 1 areas for low memory corruption
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] initial memory mapped: [mem 0x00000000-0x021fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Base memory trampoline at [c009a000] 9a000 size 16384
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] [mem 0x00000000-0x000fffff] page 4k
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] init_memory_mapping: [mem 0x37400000-0x375fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] [mem 0x37400000-0x375fffff] page 2M
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] init_memory_mapping: [mem 0x34000000-0x373fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] [mem 0x34000000-0x373fffff] page 2M
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] [mem 0x00100000-0x001fffff] page 4k
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] [mem 0x00200000-0x33ffffff] page 2M
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] init_memory_mapping: [mem 0x37600000-0x377fdfff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] [mem 0x37600000-0x377fdfff] page 4k
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BRK [0x01c03000, 0x01c03fff] PGTABLE
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BRK [0x01c04000, 0x01c04fff] PGTABLE
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] RAMDISK: [mem 0x3aaa0000-0x3bf4efff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Allocated new RAMDISK: [mem 0x3634f000-0x377fd94a]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Move RAMDISK from [mem 0x3aaa0000-0x3bf4e94a] to [mem 0x3634f000-0x377fd94a]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: Early table checksum verification disabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: RSDP 0x000F8250 000024 (v02 PTLTD )
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: XSDT 0x3BF5C13D 00006C (v01 HPQOEM SLIC-MPC 06040000 LTP 00000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: FACP 0x3BF649FC 0000F4 (v03 NVIDIA MCP67-M 06040000 PTL_ 000F4240)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: DSDT 0x3BF5C1A9 0087DF (v01 NVIDIA MCP67 06040000 MSFT 03000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: FACS 0x3BF65FC0 000040
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: TCPA 0x3BF64AF0 000032 (v01 Phoeni x 06040000 TL 00000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: SRAT 0x3BF64B22 0000A0 (v01 AMD HAMMER 06040000 AMD 00000001)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: SSDT 0x3BF64BC2 0001C4 (v01 PTLTD POWERNOW 06040000 LTP 00000001)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: MCFG 0x3BF64D86 00003C (v01 PTLTD MCFG 06040000 LTP 00000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: HPET 0x3BF64DC2 000038 (v01 PTLTD HPETTBL 06040000 LTP 00000001)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: APIC 0x3BF64DFA 000068 (v01 PTLTD ? APIC 06040000 LTP 00000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: BOOT 0x3BF64E62 000028 (v01 PTLTD $SBFTBL$ 06040000 LTP 00000001)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: SLIC 0x3BF64E8A 000176 (v01 HPQOEM SLIC-MPC 06040000 LTP 00000001)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 71MB HIGHMEM available.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] 887MB LOWMEM available.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] mapped low ram: 0 - 377fe000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] low ram: 0 - 377fe000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] BRK [0x01c05000, 0x01c05fff] PGTABLE
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Zone ranges:
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] DMA [mem 0x00001000-0x00ffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Normal [mem 0x01000000-0x377fdfff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] HighMem [mem 0x377fe000-0x3bf4ffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Movable zone start for each node
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Early memory node ranges
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] node 0: [mem 0x00001000-0x0009dfff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] node 0: [mem 0x00100000-0x3bf4ffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] On node 0 totalpages: 245485
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] DMA zone: 32 pages used for memmap
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] DMA zone: 0 pages reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] DMA zone: 3997 pages, LIFO batch:0
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Normal zone: 1744 pages used for memmap
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Normal zone: 223230 pages, LIFO batch:31
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] HighMem zone: 143 pages used for memmap
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] HighMem zone: 18258 pages, LIFO batch:3
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Using APIC driver default
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Detected use of extended apic ids on hypertransport bus
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: PM-Timer IO Port: 0x1008
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: Local APIC address 0xfee00000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: IRQ0 used by override.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: IRQ2 used by override.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: IRQ9 used by override.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Using ACPI (MADT) for SMP configuration information
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] ACPI: HPET id: 0x10de8201 base: 0xfed00000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] nr_irqs_gsi: 40
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x0009e000-0x0009ffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000d1fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] PM: Registered nosave memory: [mem 0x000d2000-0x000fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] e820: [mem 0x40000000-0xdfffffff] available for PCI devices
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Booting paravirtualized kernel on bare hardware
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] PERCPU: Embedded 14 pages/cpu @f5b0c000 s36480 r0 d20864 u57344
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] pcpu-alloc: s36480 r0 d20864 u57344 alloc=14*4096
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] pcpu-alloc: [0] 0 [0] 1
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 243709
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Kernel command line: initrd=/ubninit file=/cdrom/preseed/lubuntu.seed boot=casper quiet splash -- BOOT_IMAGE=/ubnkern
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Initializing CPU#0
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Initializing HighMem for node 0 (000377fe:0003bf50)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Initializing Movable for node 0 (00000000:00000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Memory: 939120K/981940K available (6931K kernel code, 692K rwdata, 2908K rodata, 848K init, 796K bss, 42820K reserved, 73032K highmem)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] virtual kernel memory layout:
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] fixmap : 0xfff15000 - 0xfffff000 ( 936 kB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] pkmap : 0xff800000 - 0xffa00000 (2048 kB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] vmalloc : 0xf7ffe000 - 0xff7fe000 ( 120 MB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] lowmem : 0xc0000000 - 0xf77fe000 ( 887 MB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] .init : 0xc1a4d000 - 0xc1b21000 ( 848 kB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] .data : 0xc16c526e - 0xc1a4b280 (3608 kB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] .text : 0xc1000000 - 0xc16c526e (6932 kB)
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Hierarchical RCU implementation.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] RCU dyntick-idle grace-period acceleration is enabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] RCU: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=2
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] NR_IRQS:2304 nr_irqs:512 16
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] CPU 0 irqstacks, hard=f5408000 soft=f540a000
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] spurious 8259A interrupt: IRQ7.
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] Console: colour VGA+ 80x25
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] console [tty0] enabled
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] allocated 2097152 bytes of page_cgroup
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] hpet clockevent registered
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] tsc: Fast TSC calibration using PIT
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] tsc: Detected 1800.271 MHz processor
Oct 3 21:11:32 lubuntu kernel: [ 0.000000] tsc: Marking TSC unstable due to TSCs unsynchronized
Oct 3 21:11:32 lubuntu kernel: [ 0.004016] Calibrating delay loop (skipped), value calculated using timer frequency.. 3600.54 BogoMIPS (lpj=7201084)
Oct 3 21:11:32 lubuntu kernel: [ 0.004022] pid_max: default: 32768 minimum: 301
Oct 3 21:11:32 lubuntu kernel: [ 0.004037] ACPI: Core revision 20140424
Oct 3 21:11:32 lubuntu kernel: [ 0.019751] ACPI: All ACPI Tables successfully acquired
Oct 3 21:11:32 lubuntu kernel: [ 0.020041] Security Framework initialized
Oct 3 21:11:32 lubuntu kernel: [ 0.020063] AppArmor: AppArmor initialized
Oct 3 21:11:32 lubuntu kernel: [ 0.020066] Yama: becoming mindful.
Oct 3 21:11:32 lubuntu kernel: [ 0.020139] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.020143] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.020515] Initializing cgroup subsys memory
Oct 3 21:11:32 lubuntu kernel: [ 0.020564] Initializing cgroup subsys devices
Oct 3 21:11:32 lubuntu kernel: [ 0.020578] Initializing cgroup subsys freezer
Oct 3 21:11:32 lubuntu kernel: [ 0.020585] Initializing cgroup subsys net_cls
Oct 3 21:11:32 lubuntu kernel: [ 0.020594] Initializing cgroup subsys blkio
Oct 3 21:11:32 lubuntu kernel: [ 0.020603] Initializing cgroup subsys perf_event
Oct 3 21:11:32 lubuntu kernel: [ 0.020608] Initializing cgroup subsys net_prio
Oct 3 21:11:32 lubuntu kernel: [ 0.020621] Initializing cgroup subsys hugetlb
Oct 3 21:11:32 lubuntu kernel: [ 0.020651] CPU: Physical Processor ID: 0
Oct 3 21:11:32 lubuntu kernel: [ 0.020654] CPU: Processor Core ID: 0
Oct 3 21:11:32 lubuntu kernel: [ 0.020658] mce: CPU supports 5 MCE banks
Oct 3 21:11:32 lubuntu kernel: [ 0.020670] LVT offset 0 assigned for vector 0xf9
Oct 3 21:11:32 lubuntu kernel: [ 0.020674] process: using AMD E400 aware idle routine
Oct 3 21:11:32 lubuntu kernel: [ 0.020680] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
Oct 3 21:11:32 lubuntu kernel: [ 0.020680] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4, 1GB 0
Oct 3 21:11:32 lubuntu kernel: [ 0.020680] tlb_flushall_shift: 6
Oct 3 21:11:32 lubuntu kernel: [ 0.024225] Freeing SMP alternatives memory: 36K (c1b21000 - c1b2a000)
Oct 3 21:11:32 lubuntu kernel: [ 0.025536] ftrace: allocating 28617 entries in 56 pages
Oct 3 21:11:32 lubuntu kernel: [ 0.040053] Enabling APIC mode: Flat. Using 1 I/O APICs
Oct 3 21:11:32 lubuntu kernel: [ 0.040610] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 3 21:11:32 lubuntu kernel: [ 0.080305] smpboot: CPU0: AMD Athlon(tm) 64 X2 Dual-Core Processor TK-55 (fam: 0f, model: 68, stepping: 01)
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] Performance Events: AMD PMU driver.
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... version: 0
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... bit width: 48
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... generic registers: 4
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... value mask: 0000ffffffffffff
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... max period: 00007fffffffffff
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... fixed-purpose events: 0
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] ... event mask: 000000000000000f
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] CPU 1 irqstacks, hard=f5734000 soft=f5736000
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] x86: Booting SMP configuration:
Oct 3 21:11:32 lubuntu kernel: [ 0.084000] .... node #0, CPUs: #1
Oct 3 21:11:32 lubuntu kernel: [ 0.008000] Initializing CPU#1
Oct 3 21:11:32 lubuntu kernel: [ 0.093644] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Oct 3 21:11:32 lubuntu kernel: [ 0.008000] process: System has AMD C1E enabled
Oct 3 21:11:32 lubuntu kernel: [ 0.008000] process: Switch to broadcast mode on CPU1
Oct 3 21:11:32 lubuntu kernel: [ 0.172138] x86: Booted up 1 node, 2 CPUs
Oct 3 21:11:32 lubuntu kernel: [ 0.172142] smpboot: Total of 2 processors activated (7200.89 BogoMIPS)
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] process: Switch to broadcast mode on CPU0
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] devtmpfs: initialized
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.selinux
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.SMACK64
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.SMACK64EXEC
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.SMACK64TRANSMUTE
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.SMACK64MMAP
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.ima
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] evm: security.capability
Oct 3 21:11:32 lubuntu kernel: [ 0.172667] PM: Registering ACPI NVS region [mem 0x3bf65000-0x3bf65fff] (4096 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.174081] pinctrl core: initialized pinctrl subsystem
Oct 3 21:11:32 lubuntu kernel: [ 0.174251] regulator-dummy: no parameters
Oct 3 21:11:32 lubuntu kernel: [ 0.174306] RTC time: 21:11:11, date: 10/03/15
Oct 3 21:11:32 lubuntu kernel: [ 0.174392] NET: Registered protocol family 16
Oct 3 21:11:32 lubuntu kernel: [ 0.176026] EISA bus registered
Oct 3 21:11:32 lubuntu kernel: [ 0.176032] cpuidle: using governor ladder
Oct 3 21:11:32 lubuntu kernel: [ 0.176037] cpuidle: using governor menu
Oct 3 21:11:32 lubuntu kernel: [ 0.176044] node 0 link 0: io port [1000, fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176048] TOM: 0000000040000000 aka 1024M
Oct 3 21:11:32 lubuntu kernel: [ 0.176052] node 0 link 0: mmio [a0000, bffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176056] node 0 link 0: mmio [40000000, dfffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176059] node 0 link 0: mmio [e0000000, efffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176063] node 0 link 0: mmio [f0000000, fe0bffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176066] bus: [bus 00-ff] on node 0 link 0
Oct 3 21:11:32 lubuntu kernel: [ 0.176069] bus: 00 [io 0x0000-0xffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176072] bus: 00 [mem 0x000a0000-0x000bffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176074] bus: 00 [mem 0x40000000-0xfcffffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.176181] ACPI: bus type PCI registered
Oct 3 21:11:32 lubuntu kernel: [ 0.176185] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 3 21:11:32 lubuntu kernel: [ 0.176319] PCI: MMCONFIG for domain 0000 [bus 00-04] at [mem 0xe0000000-0xe04fffff] (base 0xe0000000)
Oct 3 21:11:32 lubuntu kernel: [ 0.176324] PCI: MMCONFIG at [mem 0xe0000000-0xe04fffff] reserved in E820
Oct 3 21:11:32 lubuntu kernel: [ 0.176326] PCI: Using MMCONFIG for extended config space
Oct 3 21:11:32 lubuntu kernel: [ 0.176328] PCI: Using configuration type 1 for base access
Oct 3 21:11:32 lubuntu kernel: [ 0.196234] ACPI: Added _OSI(Module Device)
Oct 3 21:11:32 lubuntu kernel: [ 0.196239] ACPI: Added _OSI(Processor Device)
Oct 3 21:11:32 lubuntu kernel: [ 0.196241] ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 3 21:11:32 lubuntu kernel: [ 0.196243] ACPI: Added _OSI(Processor Aggregator Device)
Oct 3 21:11:32 lubuntu kernel: [ 0.201017] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Oct 3 21:11:32 lubuntu kernel: [ 0.201876] ACPI: Interpreter enabled
Oct 3 21:11:32 lubuntu kernel: [ 0.201890] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20140424/hwxface-580)
Oct 3 21:11:32 lubuntu kernel: [ 0.201896] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20140424/hwxface-580)
Oct 3 21:11:32 lubuntu kernel: [ 0.201916] ACPI: (supports S0 S3 S4 S5)
Oct 3 21:11:32 lubuntu kernel: [ 0.201919] ACPI: Using IOAPIC for interrupt routing
Oct 3 21:11:32 lubuntu kernel: [ 0.201961] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
Oct 3 21:11:32 lubuntu kernel: [ 0.208399] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
Oct 3 21:11:32 lubuntu kernel: [ 0.208411] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: _OSC: platform does not support [PCIeHotplug PCIeCapability]
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: _OSC: platform willing to grant [PME AER]
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [io 0x0000-0x0cf7] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [io 0x0d00-0xffff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000c0000-0x000c3fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000c4000-0x000c7fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000c8000-0x000cbfff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000cc000-0x000cffff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000d0000-0x000d3fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000d4000-0x000d7fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000d8000-0x000dbfff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000dc000-0x000dffff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000e0000-0x000e3fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000e4000-0x000e7fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000e8000-0x000ebfff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000ec000-0x000effff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x000f0000-0x000fffff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0xfed40000-0xfed44fff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: host bridge window [mem 0x40000000-0xfebfffff] (ignored)
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] PCI: root bus 00: hardware-probed resources
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] acpi PNP0A08:00: [Firmware Info]: MMCONFIG for domain 0000 [bus 00-04] only partially covers this bridge
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] PCI host bridge to bus 0000:00
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] pci_bus 0000:00: root bus resource [bus 00-ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.208549] pci_bus 0000:00: root bus resource [io 0x0000-0xffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.208550] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.208554] pci_bus 0000:00: root bus resource [mem 0x40000000-0xfcffffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.208583] pci 0000:00:00.0: [10de:0547] type 00 class 0x050000
Oct 3 21:11:32 lubuntu kernel: [ 0.208882] pci 0000:00:01.0: [10de:0548] type 00 class 0x060100
Oct 3 21:11:32 lubuntu kernel: [ 0.209040] pci 0000:00:01.1: [10de:0542] type 00 class 0x0c0500
Oct 3 21:11:32 lubuntu kernel: [ 0.209054] pci 0000:00:01.1: reg 0x10: [io 0x3080-0x30bf]
Oct 3 21:11:32 lubuntu kernel: [ 0.209073] pci 0000:00:01.1: reg 0x20: [io 0x3040-0x307f]
Oct 3 21:11:32 lubuntu kernel: [ 0.209081] pci 0000:00:01.1: reg 0x24: [io 0x3000-0x303f]
Oct 3 21:11:32 lubuntu kernel: [ 0.209113] pci 0000:00:01.1: PME# supported from D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.209255] pci 0000:00:01.2: [10de:0541] type 00 class 0x050000
Oct 3 21:11:32 lubuntu kernel: [ 0.209408] pci 0000:00:01.3: [10de:0543] type 00 class 0x0b4000
Oct 3 21:11:32 lubuntu kernel: [ 0.209427] pci 0000:00:01.3: reg 0x10: [mem 0xf6200000-0xf627ffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.209646] pci 0000:00:02.0: [10de:055e] type 00 class 0x0c0310
Oct 3 21:11:32 lubuntu kernel: [ 0.209658] pci 0000:00:02.0: reg 0x10: [mem 0xf6486000-0xf6486fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.209698] pci 0000:00:02.0: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.209702] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.209768] pci 0000:00:02.0: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.209848] pci 0000:00:02.1: [10de:055f] type 00 class 0x0c0320
Oct 3 21:11:32 lubuntu kernel: [ 0.209861] pci 0000:00:02.1: reg 0x10: [mem 0xf6489000-0xf64890ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.209909] pci 0000:00:02.1: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.209912] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.209984] pci 0000:00:02.1: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.210068] pci 0000:00:04.0: [10de:055e] type 00 class 0x0c0310
Oct 3 21:11:32 lubuntu kernel: [ 0.210080] pci 0000:00:04.0: reg 0x10: [mem 0xf6487000-0xf6487fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.210120] pci 0000:00:04.0: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.210124] pci 0000:00:04.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.210190] pci 0000:00:04.0: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.210270] pci 0000:00:04.1: [10de:055f] type 00 class 0x0c0320
Oct 3 21:11:32 lubuntu kernel: [ 0.210283] pci 0000:00:04.1: reg 0x10: [mem 0xf6489400-0xf64894ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.210331] pci 0000:00:04.1: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.210335] pci 0000:00:04.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.210403] pci 0000:00:04.1: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.210485] pci 0000:00:06.0: [10de:0560] type 00 class 0x01018a
Oct 3 21:11:32 lubuntu kernel: [ 0.210511] pci 0000:00:06.0: reg 0x20: [io 0x30c0-0x30cf]
Oct 3 21:11:32 lubuntu kernel: [ 0.210524] pci 0000:00:06.0: legacy IDE quirk: reg 0x10: [io 0x01f0-0x01f7]
Oct 3 21:11:32 lubuntu kernel: [ 0.210527] pci 0000:00:06.0: legacy IDE quirk: reg 0x14: [io 0x03f6]
Oct 3 21:11:32 lubuntu kernel: [ 0.210531] pci 0000:00:06.0: legacy IDE quirk: reg 0x18: [io 0x0170-0x0177]
Oct 3 21:11:32 lubuntu kernel: [ 0.210534] pci 0000:00:06.0: legacy IDE quirk: reg 0x1c: [io 0x0376]
Oct 3 21:11:32 lubuntu kernel: [ 0.210673] pci 0000:00:07.0: [10de:055c] type 00 class 0x040300
Oct 3 21:11:32 lubuntu kernel: [ 0.210687] pci 0000:00:07.0: reg 0x10: [mem 0xf6480000-0xf6483fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.210736] pci 0000:00:07.0: PME# supported from D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.210883] pci 0000:00:08.0: [10de:0561] type 01 class 0x060401
Oct 3 21:11:32 lubuntu kernel: [ 0.210981] pci 0000:00:08.0: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.211062] pci 0000:00:09.0: [10de:0550] type 00 class 0x010185
Oct 3 21:11:32 lubuntu kernel: [ 0.211074] pci 0000:00:09.0: reg 0x10: [io 0x30f0-0x30f7]
Oct 3 21:11:32 lubuntu kernel: [ 0.211080] pci 0000:00:09.0: reg 0x14: [io 0x30e4-0x30e7]
Oct 3 21:11:32 lubuntu kernel: [ 0.211087] pci 0000:00:09.0: reg 0x18: [io 0x30e8-0x30ef]
Oct 3 21:11:32 lubuntu kernel: [ 0.211093] pci 0000:00:09.0: reg 0x1c: [io 0x30e0-0x30e3]
Oct 3 21:11:32 lubuntu kernel: [ 0.211100] pci 0000:00:09.0: reg 0x20: [io 0x30d0-0x30df]
Oct 3 21:11:32 lubuntu kernel: [ 0.211107] pci 0000:00:09.0: reg 0x24: [mem 0xf6484000-0xf6485fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.211264] pci 0000:00:0a.0: [10de:054c] type 00 class 0x020000
Oct 3 21:11:32 lubuntu kernel: [ 0.211278] pci 0000:00:0a.0: reg 0x10: [mem 0xf6488000-0xf6488fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.211285] pci 0000:00:0a.0: reg 0x14: [io 0x30f8-0x30ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.211292] pci 0000:00:0a.0: reg 0x18: [mem 0xf6489c00-0xf6489cff]
Oct 3 21:11:32 lubuntu kernel: [ 0.211298] pci 0000:00:0a.0: reg 0x1c: [mem 0xf6489800-0xf648980f]
Oct 3 21:11:32 lubuntu kernel: [ 0.211337] pci 0000:00:0a.0: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.211341] pci 0000:00:0a.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.211439] pci 0000:00:0a.0: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.211526] pci 0000:00:0c.0: [10de:0563] type 01 class 0x060400
Oct 3 21:11:32 lubuntu kernel: [ 0.211566] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.211638] pci 0000:00:0c.0: System wakeup disabled by ACPI
Oct 3 21:11:32 lubuntu kernel: [ 0.211721] pci 0000:00:0d.0: [10de:0563] type 01 class 0x060400
Oct 3 21:11:32 lubuntu kernel: [ 0.211758] pci 0000:00:0d.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.211910] pci 0000:00:12.0: [10de:0531] type 00 class 0x030000
Oct 3 21:11:32 lubuntu kernel: [ 0.211921] pci 0000:00:12.0: reg 0x10: [mem 0xf5000000-0xf5ffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.211929] pci 0000:00:12.0: reg 0x14: [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 3 21:11:32 lubuntu kernel: [ 0.211937] pci 0000:00:12.0: reg 0x1c: [mem 0xf4000000-0xf4ffffff 64bit]
Oct 3 21:11:32 lubuntu kernel: [ 0.211946] pci 0000:00:12.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
Oct 3 21:11:32 lubuntu kernel: [ 0.212105] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
Oct 3 21:11:32 lubuntu kernel: [ 0.212245] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
Oct 3 21:11:32 lubuntu kernel: [ 0.212381] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
Oct 3 21:11:32 lubuntu kernel: [ 0.212515] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
Oct 3 21:11:32 lubuntu kernel: [ 0.212726] pci 0000:02:05.0: [1180:0832] type 00 class 0x0c0010
Oct 3 21:11:32 lubuntu kernel: [ 0.212738] pci 0000:02:05.0: proprietary Ricoh MMC controller disabled (via firewire function)
Oct 3 21:11:32 lubuntu kernel: [ 0.212741] pci 0000:02:05.0: MMC cards are now supported by standard SDHCI controller
Oct 3 21:11:32 lubuntu kernel: [ 0.212753] pci 0000:02:05.0: reg 0x10: [mem 0xf6100000-0xf61007ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.212810] pci 0000:02:05.0: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.212813] pci 0000:02:05.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.212905] pci 0000:02:05.1: [1180:0822] type 00 class 0x080500
Oct 3 21:11:32 lubuntu kernel: [ 0.212920] pci 0000:02:05.1: reg 0x10: [mem 0xf6100800-0xf61008ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.212977] pci 0000:02:05.1: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.212980] pci 0000:02:05.1: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.213068] pci 0000:02:05.2: [1180:0592] type 00 class 0x088000
Oct 3 21:11:32 lubuntu kernel: [ 0.213083] pci 0000:02:05.2: reg 0x10: [mem 0xf6101000-0xf61010ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.213139] pci 0000:02:05.2: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.213143] pci 0000:02:05.2: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.213235] pci 0000:02:05.3: [1180:0852] type 00 class 0x088000
Oct 3 21:11:32 lubuntu kernel: [ 0.213250] pci 0000:02:05.3: reg 0x10: [mem 0xf6101400-0xf61014ff]
Oct 3 21:11:32 lubuntu kernel: [ 0.213306] pci 0000:02:05.3: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.213310] pci 0000:02:05.3: PME# supported from D0 D1 D2 D3hot D3cold
Oct 3 21:11:32 lubuntu kernel: [ 0.213421] pci 0000:00:08.0: PCI bridge to [bus 02] (subtractive decode)
Oct 3 21:11:32 lubuntu kernel: [ 0.213427] pci 0000:00:08.0: bridge window [mem 0xf6100000-0xf61fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.213431] pci 0000:00:08.0: bridge window [io 0x0000-0xffff] (subtractive decode)
Oct 3 21:11:32 lubuntu kernel: [ 0.213435] pci 0000:00:08.0: bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Oct 3 21:11:32 lubuntu kernel: [ 0.213439] pci 0000:00:08.0: bridge window [mem 0x40000000-0xfcffffffff] (subtractive decode)
Oct 3 21:11:32 lubuntu kernel: [ 0.213533] acpiphp: Slot [1] registered
Oct 3 21:11:32 lubuntu kernel: [ 0.213541] pci 0000:00:0c.0: PCI bridge to [bus 04-05]
Oct 3 21:11:32 lubuntu kernel: [ 0.213546] pci 0000:00:0c.0: bridge window [io 0x4000-0x4fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.213550] pci 0000:00:0c.0: bridge window [mem 0xf2000000-0xf3ffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.213556] pci 0000:00:0c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
Oct 3 21:11:32 lubuntu kernel: [ 0.213643] pci 0000:03:00.0: [14e4:4311] type 00 class 0x028000
Oct 3 21:11:32 lubuntu kernel: [ 0.213664] pci 0000:03:00.0: reg 0x10: [mem 0xf6000000-0xf6003fff 64bit]
Oct 3 21:11:32 lubuntu kernel: [ 0.213760] pci 0000:03:00.0: supports D1 D2
Oct 3 21:11:32 lubuntu kernel: [ 0.224023] pci 0000:00:0d.0: PCI bridge to [bus 03]
Oct 3 21:11:32 lubuntu kernel: [ 0.224029] pci 0000:00:0d.0: bridge window [mem 0xf6000000-0xf60fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.224043] pci_bus 0000:00: on NUMA node 0
Oct 3 21:11:32 lubuntu kernel: [ 0.224762] ACPI: PCI Interrupt Link [LNK1] (IRQs 5) *10
Oct 3 21:11:32 lubuntu kernel: [ 0.224876] ACPI: PCI Interrupt Link [LNK2] (IRQs 7) *11
Oct 3 21:11:32 lubuntu kernel: [ 0.224988] ACPI: PCI Interrupt Link [LNK3] (IRQs 10) *0, disabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.225100] ACPI: PCI Interrupt Link [LNK4] (IRQs 11) *0, disabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.225210] ACPI: PCI Interrupt Link [LK1E] (IRQs 16) *0, disabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.225322] ACPI: PCI Interrupt Link [LK2E] (IRQs 17) *0, disabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.225433] ACPI: PCI Interrupt Link [LK3E] (IRQs 18) *0, disabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.225543] ACPI: PCI Interrupt Link [LK4E] (IRQs 19) *10
Oct 3 21:11:32 lubuntu kernel: [ 0.225653] ACPI: PCI Interrupt Link [LSMB] (IRQs *10)
Oct 3 21:11:32 lubuntu kernel: [ 0.225763] ACPI: PCI Interrupt Link [LUS0] (IRQs 18) *11
Oct 3 21:11:32 lubuntu kernel: [ 0.225874] ACPI: PCI Interrupt Link [LUS2] (IRQs 22) *7
Oct 3 21:11:32 lubuntu kernel: [ 0.225992] ACPI: PCI Interrupt Link [LMAC] (IRQs 20) *11
Oct 3 21:11:32 lubuntu kernel: [ 0.226102] ACPI: PCI Interrupt Link [LAZA] (IRQs 21) *10
Oct 3 21:11:32 lubuntu kernel: [ 0.226212] ACPI: PCI Interrupt Link [LGPU] (IRQs 16) *10
Oct 3 21:11:32 lubuntu kernel: [ 0.226323] ACPI: PCI Interrupt Link [LPID] (IRQs 22) *0, disabled.
Oct 3 21:11:32 lubuntu kernel: [ 0.226434] ACPI: PCI Interrupt Link [LSI0] (IRQs 23) *11
Oct 3 21:11:32 lubuntu kernel: [ 0.226544] ACPI: PCI Interrupt Link [Z018] (IRQs 18) *5
Oct 3 21:11:32 lubuntu kernel: [ 0.226665] ACPI: PCI Interrupt Link [Z019] (IRQs 22) *10
Oct 3 21:11:32 lubuntu kernel: [ 0.226781] ACPI: PCI Interrupt Link [LPMU] (IRQs *11)
Oct 3 21:11:32 lubuntu kernel: [ 0.227355] ACPI: Enabled 2 GPEs in block 00 to 1F
Oct 3 21:11:32 lubuntu kernel: [ 0.227425] ACPI : EC: GPE = 0x10, I/O: command/status = 0x66, data = 0x62
Oct 3 21:11:32 lubuntu kernel: [ 0.228042] vgaarb: device added: PCI:0000:00:12.0,decodes=io+mem,owns=io+mem,locks=none
Oct 3 21:11:32 lubuntu kernel: [ 0.228049] vgaarb: loaded
Oct 3 21:11:32 lubuntu kernel: [ 0.228051] vgaarb: bridge control possible 0000:00:12.0
Oct 3 21:11:32 lubuntu kernel: [ 0.228256] SCSI subsystem initialized
Oct 3 21:11:32 lubuntu kernel: [ 0.232037] libata version 3.00 loaded.
Oct 3 21:11:32 lubuntu kernel: [ 0.232101] ACPI: bus type USB registered
Oct 3 21:11:32 lubuntu kernel: [ 0.232150] usbcore: registered new interface driver usbfs
Oct 3 21:11:32 lubuntu kernel: [ 0.232172] usbcore: registered new interface driver hub
Oct 3 21:11:32 lubuntu kernel: [ 0.232181] usbcore: registered new device driver usb
Oct 3 21:11:32 lubuntu kernel: [ 0.232181] PCI: Using ACPI for IRQ routing
Oct 3 21:11:32 lubuntu kernel: [ 0.232181] PCI: pci_cache_line_size set to 64 bytes
Oct 3 21:11:32 lubuntu kernel: [ 0.232181] e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.232181] e820: reserve RAM buffer [mem 0x3bf50000-0x3bffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.232376] NetLabel: Initializing
Oct 3 21:11:32 lubuntu kernel: [ 0.232379] NetLabel: domain hash size = 128
Oct 3 21:11:32 lubuntu kernel: [ 0.232381] NetLabel: protocols = UNLABELED CIPSOv4
Oct 3 21:11:32 lubuntu kernel: [ 0.232399] NetLabel: unlabeled traffic allowed by default
Oct 3 21:11:32 lubuntu kernel: [ 0.232433] HPET: 3 timers in total, 0 timers will be used for per-cpu timer
Oct 3 21:11:32 lubuntu kernel: [ 0.232433] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 31
Oct 3 21:11:32 lubuntu kernel: [ 0.232433] hpet0: 3 comparators, 32-bit 25.000000 MHz counter
Oct 3 21:11:32 lubuntu kernel: [ 0.234167] Switched to clocksource hpet
Oct 3 21:11:32 lubuntu kernel: [ 0.244043] AppArmor: AppArmor Filesystem Enabled
Oct 3 21:11:32 lubuntu kernel: [ 0.244108] pnp: PnP ACPI init
Oct 3 21:11:32 lubuntu kernel: [ 0.244140] ACPI: bus type PNP registered
Oct 3 21:11:32 lubuntu kernel: [ 0.244884] system 00:00: [mem 0xe0000000-0xefffffff] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.244893] system 00:00: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.245153] system 00:01: [io 0x1000-0x107f] could not be reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245157] system 00:01: [io 0x1080-0x10ff] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245161] system 00:01: [io 0x1400-0x147f] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245165] system 00:01: [io 0x1480-0x14ff] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245169] system 00:01: [io 0x1800-0x187f] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245177] system 00:01: [io 0x1880-0x18ff] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245182] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.245276] system 00:02: [io 0x0360-0x0361] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245280] system 00:02: [io 0x04d0-0x04d1] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.245285] system 00:02: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.245361] pnp 00:03: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.245458] pnp 00:04: Plug and Play ACPI device, IDs PNP0303 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.245534] pnp 00:05: Plug and Play ACPI device, IDs SYN013b SYN0100 SYN0002 PNP0f13 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.246005] system 00:06: [mem 0xffc00000-0xffffffff] could not be reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.246009] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.246014] system 00:06: [mem 0xfee00000-0xfeefffff] could not be reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.246018] system 00:06: [mem 0xfed00000-0xfed00fff] could not be reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.246022] system 00:06: [mem 0xfef00000-0xfef00fff] has been reserved
Oct 3 21:11:32 lubuntu kernel: [ 0.246027] system 00:06: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 3 21:11:32 lubuntu kernel: [ 0.246136] pnp: PnP ACPI: found 7 devices
Oct 3 21:11:32 lubuntu kernel: [ 0.246138] ACPI: bus type PNP unregistered
Oct 3 21:11:32 lubuntu kernel: [ 0.246147] PnPBIOS: Disabled by ACPI PNP
Oct 3 21:11:32 lubuntu kernel: [ 0.285571] pci 0000:00:12.0: BAR 6: assigned [mem 0x40000000-0x4001ffff pref]
Oct 3 21:11:32 lubuntu kernel: [ 0.285580] pci 0000:00:08.0: PCI bridge to [bus 02]
Oct 3 21:11:32 lubuntu kernel: [ 0.285586] pci 0000:00:08.0: bridge window [mem 0xf6100000-0xf61fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285593] pci 0000:00:0c.0: PCI bridge to [bus 04-05]
Oct 3 21:11:32 lubuntu kernel: [ 0.285596] pci 0000:00:0c.0: bridge window [io 0x4000-0x4fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285601] pci 0000:00:0c.0: bridge window [mem 0xf2000000-0xf3ffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285605] pci 0000:00:0c.0: bridge window [mem 0xf0000000-0xf1ffffff 64bit pref]
Oct 3 21:11:32 lubuntu kernel: [ 0.285610] pci 0000:00:0d.0: PCI bridge to [bus 03]
Oct 3 21:11:32 lubuntu kernel: [ 0.285615] pci 0000:00:0d.0: bridge window [mem 0xf6000000-0xf60fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285621] pci_bus 0000:00: resource 4 [io 0x0000-0xffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285625] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285629] pci_bus 0000:00: resource 6 [mem 0x40000000-0xfcffffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285632] pci_bus 0000:02: resource 1 [mem 0xf6100000-0xf61fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285636] pci_bus 0000:02: resource 4 [io 0x0000-0xffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285639] pci_bus 0000:02: resource 5 [mem 0x000a0000-0x000bffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285643] pci_bus 0000:02: resource 6 [mem 0x40000000-0xfcffffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285647] pci_bus 0000:04: resource 0 [io 0x4000-0x4fff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285650] pci_bus 0000:04: resource 1 [mem 0xf2000000-0xf3ffffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285654] pci_bus 0000:04: resource 2 [mem 0xf0000000-0xf1ffffff 64bit pref]
Oct 3 21:11:32 lubuntu kernel: [ 0.285657] pci_bus 0000:03: resource 1 [mem 0xf6000000-0xf60fffff]
Oct 3 21:11:32 lubuntu kernel: [ 0.285703] NET: Registered protocol family 2
Oct 3 21:11:32 lubuntu kernel: [ 0.285991] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.286020] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.286063] TCP: Hash tables configured (established 8192 bind 8192)
Oct 3 21:11:32 lubuntu kernel: [ 0.286106] TCP: reno registered
Oct 3 21:11:32 lubuntu kernel: [ 0.286110] UDP hash table entries: 512 (order: 2, 16384 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.286122] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 0.286204] NET: Registered protocol family 1
Oct 3 21:11:32 lubuntu kernel: [ 0.286529] ACPI: PCI Interrupt Link [LUS0] enabled at IRQ 18
Oct 3 21:11:32 lubuntu kernel: [ 0.340283] ACPI: PCI Interrupt Link [LUS2] enabled at IRQ 22
Oct 3 21:11:32 lubuntu kernel: [ 0.340514] ACPI: PCI Interrupt Link [Z018] enabled at IRQ 18
Oct 3 21:11:32 lubuntu kernel: [ 0.396256] ACPI: PCI Interrupt Link [Z019] enabled at IRQ 22
Oct 3 21:11:32 lubuntu kernel: [ 0.396356] pci 0000:00:00.0: Found enabled HT MSI Mapping
Oct 3 21:11:32 lubuntu kernel: [ 0.396412] pci 0000:00:00.0: Found enabled HT MSI Mapping
Oct 3 21:11:32 lubuntu kernel: [ 0.396472] pci 0000:00:00.0: Found enabled HT MSI Mapping
Oct 3 21:11:32 lubuntu kernel: [ 0.396539] pci 0000:00:00.0: Found enabled HT MSI Mapping
Oct 3 21:11:32 lubuntu kernel: [ 0.396611] pci 0000:00:00.0: Found enabled HT MSI Mapping
Oct 3 21:11:32 lubuntu kernel: [ 0.396686] pci 0000:00:00.0: Found enabled HT MSI Mapping
Oct 3 21:11:32 lubuntu kernel: [ 0.396695] pci 0000:00:12.0: Boot video device
Oct 3 21:11:32 lubuntu kernel: [ 0.396719] PCI: CLS 64 bytes, default 64
Oct 3 21:11:32 lubuntu kernel: [ 0.396806] Trying to unpack rootfs image as initramfs...
Oct 3 21:11:32 lubuntu kernel: [ 7.046543] Freeing initrd memory: 21180K (f634f000 - f77fe000)
Oct 3 21:11:32 lubuntu kernel: [ 7.046656] Simple Boot Flag at 0x36 set to 0x1
Oct 3 21:11:32 lubuntu kernel: [ 7.046819] microcode: AMD CPU family 0xf not supported
Oct 3 21:11:32 lubuntu kernel: [ 7.046892] Scanning for low memory corruption every 60 seconds
Oct 3 21:11:32 lubuntu kernel: [ 7.047437] futex hash table entries: 512 (order: 3, 32768 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 7.047466] Initialise system trusted keyring
Oct 3 21:11:32 lubuntu kernel: [ 7.047505] audit: initializing netlink subsys (disabled)
Oct 3 21:11:32 lubuntu kernel: [ 7.047533] audit: type=2000 audit(1443906677.044:1): initialized
Oct 3 21:11:32 lubuntu kernel: [ 7.048057] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 3 21:11:32 lubuntu kernel: [ 7.051882] zpool: loaded
Oct 3 21:11:32 lubuntu kernel: [ 7.051886] zbud: loaded
Oct 3 21:11:32 lubuntu kernel: [ 7.052156] VFS: Disk quotas dquot_6.5.2
Oct 3 21:11:32 lubuntu kernel: [ 7.052246] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
Oct 3 21:11:32 lubuntu kernel: [ 7.053338] fuse init (API version 7.23)
Oct 3 21:11:32 lubuntu kernel: [ 7.053548] msgmni has been set to 1733
Oct 3 21:11:32 lubuntu kernel: [ 7.053681] Key type big_key registered
Oct 3 21:11:32 lubuntu kernel: [ 7.054489] Key type asymmetric registered
Oct 3 21:11:32 lubuntu kernel: [ 7.054495] Asymmetric key parser 'x509' registered
Oct 3 21:11:32 lubuntu kernel: [ 7.054525] bounce: pool size: 64 pages
Oct 3 21:11:32 lubuntu kernel: [ 7.054545] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Oct 3 21:11:32 lubuntu kernel: [ 7.054624] io scheduler noop registered
Oct 3 21:11:32 lubuntu kernel: [ 7.054629] io scheduler deadline registered (default)
Oct 3 21:11:32 lubuntu kernel: [ 7.054747] io scheduler cfq registered
Oct 3 21:11:32 lubuntu kernel: [ 7.054993] pcieport 0000:00:0c.0: irq 40 for MSI/MSI-X
Oct 3 21:11:32 lubuntu kernel: [ 7.055075] pcieport 0000:00:0d.0: irq 41 for MSI/MSI-X
Oct 3 21:11:32 lubuntu kernel: [ 7.055196] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 3 21:11:32 lubuntu kernel: [ 7.055233] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 3 21:11:32 lubuntu kernel: [ 7.056121] ACPI: AC Adapter [ACAD] (on-line)
Oct 3 21:11:32 lubuntu kernel: [ 7.056406] input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input0
Oct 3 21:11:32 lubuntu kernel: [ 7.056413] ACPI: Sleep Button [SLPB]
Oct 3 21:11:32 lubuntu kernel: [ 7.056529] input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input1
Oct 3 21:11:32 lubuntu kernel: [ 7.056869] ACPI: Lid Switch [LID]
Oct 3 21:11:32 lubuntu kernel: [ 7.057016] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input2
Oct 3 21:11:32 lubuntu kernel: [ 7.057023] ACPI: Power Button [PWRB]
Oct 3 21:11:32 lubuntu kernel: [ 7.057111] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input3
Oct 3 21:11:32 lubuntu kernel: [ 7.057114] ACPI: Power Button [PWRF]
Oct 3 21:11:32 lubuntu kernel: [ 7.057192] ACPI: processor limited to max C-state 1
Oct 3 21:11:32 lubuntu kernel: [ 7.057771] [Firmware Bug]: Invalid critical threshold (0)
Oct 3 21:11:32 lubuntu kernel: [ 7.058449] thermal LNXTHERM:00: registered as thermal_zone0
Oct 3 21:11:32 lubuntu kernel: [ 7.058452] ACPI: Thermal Zone [THRM] (61 C)
Oct 3 21:11:32 lubuntu kernel: [ 7.058519] GHES: HEST is not enabled!
Oct 3 21:11:32 lubuntu kernel: [ 7.058610] isapnp: Scanning for PnP cards...
Oct 3 21:11:32 lubuntu kernel: [ 7.064261] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 3 21:11:32 lubuntu kernel: [ 7.067716] Linux agpgart interface v0.103
Oct 3 21:11:32 lubuntu kernel: [ 7.070731] brd: module loaded
Oct 3 21:11:32 lubuntu kernel: [ 7.072130] loop: module loaded
Oct 3 21:11:32 lubuntu kernel: [ 7.072894] libphy: Fixed MDIO Bus: probed
Oct 3 21:11:32 lubuntu kernel: [ 7.072899] tun: Universal TUN/TAP device driver, 1.6
Oct 3 21:11:32 lubuntu kernel: [ 7.072901] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Oct 3 21:11:32 lubuntu kernel: [ 7.072985] PPP generic driver version 2.4.2
Oct 3 21:11:32 lubuntu kernel: [ 7.073055] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 3 21:11:32 lubuntu kernel: [ 7.073064] ehci-pci: EHCI PCI platform driver
Oct 3 21:11:32 lubuntu kernel: [ 7.073173] ehci-pci 0000:00:02.1: EHCI Host Controller
Oct 3 21:11:32 lubuntu kernel: [ 7.073182] ehci-pci 0000:00:02.1: new USB bus registered, assigned bus number 1
Oct 3 21:11:32 lubuntu kernel: [ 7.073193] ehci-pci 0000:00:02.1: debug port 1
Oct 3 21:11:32 lubuntu kernel: [ 7.073238] ehci-pci 0000:00:02.1: cache line size of 64 is not supported
Oct 3 21:11:32 lubuntu kernel: [ 7.073269] ehci-pci 0000:00:02.1: irq 22, io mem 0xf6489000
Oct 3 21:11:32 lubuntu kernel: [ 7.084027] ehci-pci 0000:00:02.1: USB 2.0 started, EHCI 1.00
Oct 3 21:11:32 lubuntu kernel: [ 7.084115] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Oct 3 21:11:32 lubuntu kernel: [ 7.084119] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 3 21:11:32 lubuntu kernel: [ 7.084122] usb usb1: Product: EHCI Host Controller
Oct 3 21:11:32 lubuntu kernel: [ 7.084125] usb usb1: Manufacturer: Linux 3.16.0-23-generic ehci_hcd
Oct 3 21:11:32 lubuntu kernel: [ 7.084128] usb usb1: SerialNumber: 0000:00:02.1
Oct 3 21:11:32 lubuntu kernel: [ 7.084361] hub 1-0:1.0: USB hub found
Oct 3 21:11:32 lubuntu kernel: [ 7.084373] hub 1-0:1.0: 7 ports detected
Oct 3 21:11:32 lubuntu kernel: [ 7.084772] ehci-pci 0000:00:04.1: EHCI Host Controller
Oct 3 21:11:32 lubuntu kernel: [ 7.084781] ehci-pci 0000:00:04.1: new USB bus registered, assigned bus number 2
Oct 3 21:11:32 lubuntu kernel: [ 7.084792] ehci-pci 0000:00:04.1: debug port 1
Oct 3 21:11:32 lubuntu kernel: [ 7.084825] ehci-pci 0000:00:04.1: cache line size of 64 is not supported
Oct 3 21:11:32 lubuntu kernel: [ 7.084836] ehci-pci 0000:00:04.1: irq 22, io mem 0xf6489400
Oct 3 21:11:32 lubuntu kernel: [ 7.096026] ehci-pci 0000:00:04.1: USB 2.0 started, EHCI 1.00
Oct 3 21:11:32 lubuntu kernel: [ 7.096094] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Oct 3 21:11:32 lubuntu kernel: [ 7.096098] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 3 21:11:32 lubuntu kernel: [ 7.096101] usb usb2: Product: EHCI Host Controller
Oct 3 21:11:32 lubuntu kernel: [ 7.096104] usb usb2: Manufacturer: Linux 3.16.0-23-generic ehci_hcd
Oct 3 21:11:32 lubuntu kernel: [ 7.096107] usb usb2: SerialNumber: 0000:00:04.1
Oct 3 21:11:32 lubuntu kernel: [ 7.096313] hub 2-0:1.0: USB hub found
Oct 3 21:11:32 lubuntu kernel: [ 7.096324] hub 2-0:1.0: 2 ports detected
Oct 3 21:11:32 lubuntu kernel: [ 7.096519] ehci-platform: EHCI generic platform driver
Oct 3 21:11:32 lubuntu kernel: [ 7.096549] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 3 21:11:32 lubuntu kernel: [ 7.096558] ohci-pci: OHCI PCI platform driver
Oct 3 21:11:32 lubuntu kernel: [ 7.096644] ohci-pci 0000:00:02.0: OHCI PCI host controller
Oct 3 21:11:32 lubuntu kernel: [ 7.096653] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 3
Oct 3 21:11:32 lubuntu kernel: [ 7.096704] ohci-pci 0000:00:02.0: irq 18, io mem 0xf6486000
Oct 3 21:11:32 lubuntu kernel: [ 7.154079] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
Oct 3 21:11:32 lubuntu kernel: [ 7.154084] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 3 21:11:32 lubuntu kernel: [ 7.154087] usb usb3: Product: OHCI PCI host controller
Oct 3 21:11:32 lubuntu kernel: [ 7.154090] usb usb3: Manufacturer: Linux 3.16.0-23-generic ohci_hcd
Oct 3 21:11:32 lubuntu kernel: [ 7.154093] usb usb3: SerialNumber: 0000:00:02.0
Oct 3 21:11:32 lubuntu kernel: [ 7.154332] hub 3-0:1.0: USB hub found
Oct 3 21:11:32 lubuntu kernel: [ 7.154343] hub 3-0:1.0: 7 ports detected
Oct 3 21:11:32 lubuntu kernel: [ 7.154748] ohci-pci 0000:00:04.0: OHCI PCI host controller
Oct 3 21:11:32 lubuntu kernel: [ 7.154757] ohci-pci 0000:00:04.0: new USB bus registered, assigned bus number 4
Oct 3 21:11:32 lubuntu kernel: [ 7.154787] ohci-pci 0000:00:04.0: irq 18, io mem 0xf6487000
Oct 3 21:11:32 lubuntu kernel: [ 7.210068] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001
Oct 3 21:11:32 lubuntu kernel: [ 7.210072] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 3 21:11:32 lubuntu kernel: [ 7.210075] usb usb4: Product: OHCI PCI host controller
Oct 3 21:11:32 lubuntu kernel: [ 7.210079] usb usb4: Manufacturer: Linux 3.16.0-23-generic ohci_hcd
Oct 3 21:11:32 lubuntu kernel: [ 7.210081] usb usb4: SerialNumber: 0000:00:04.0
Oct 3 21:11:32 lubuntu kernel: [ 7.210305] hub 4-0:1.0: USB hub found
Oct 3 21:11:32 lubuntu kernel: [ 7.210316] hub 4-0:1.0: 2 ports detected
Oct 3 21:11:32 lubuntu kernel: [ 7.210512] ohci-platform: OHCI generic platform driver
Oct 3 21:11:32 lubuntu kernel: [ 7.210543] uhci_hcd: USB Universal Host Controller Interface driver
Oct 3 21:11:32 lubuntu kernel: [ 7.210702] i8042: PNP: PS/2 Controller [PNP0303:KBC0,PNP0f13:MSE0] at 0x60,0x64 irq 1,12
Oct 3 21:11:32 lubuntu kernel: [ 7.234372] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 3 21:11:32 lubuntu kernel: [ 7.234379] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 3 21:11:32 lubuntu kernel: [ 7.234608] mousedev: PS/2 mouse device common for all mice
Oct 3 21:11:32 lubuntu kernel: [ 7.236030] rtc_cmos 00:03: RTC can wake from S4
Oct 3 21:11:32 lubuntu kernel: [ 7.236227] rtc_cmos 00:03: rtc core: registered rtc_cmos as rtc0
Oct 3 21:11:32 lubuntu kernel: [ 7.236272] rtc_cmos 00:03: alarms up to one year, y3k, 114 bytes nvram, hpet irqs
Oct 3 21:11:32 lubuntu kernel: [ 7.236367] device-mapper: uevent: version 1.0.3
Oct 3 21:11:32 lubuntu kernel: [ 7.236492] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Oct 3 21:11:32 lubuntu kernel: [ 7.236540] platform eisa.0: Probing EISA bus 0
Oct 3 21:11:32 lubuntu kernel: [ 7.236544] platform eisa.0: EISA: Cannot allocate resource for mainboard
Oct 3 21:11:32 lubuntu kernel: [ 7.236548] platform eisa.0: Cannot allocate resource for EISA slot 1
Oct 3 21:11:32 lubuntu kernel: [ 7.236552] platform eisa.0: Cannot allocate resource for EISA slot 2
Oct 3 21:11:32 lubuntu kernel: [ 7.236555] platform eisa.0: Cannot allocate resource for EISA slot 3
Oct 3 21:11:32 lubuntu kernel: [ 7.236559] platform eisa.0: Cannot allocate resource for EISA slot 4
Oct 3 21:11:32 lubuntu kernel: [ 7.236562] platform eisa.0: Cannot allocate resource for EISA slot 5
Oct 3 21:11:32 lubuntu kernel: [ 7.236566] platform eisa.0: Cannot allocate resource for EISA slot 6
Oct 3 21:11:32 lubuntu kernel: [ 7.236569] platform eisa.0: Cannot allocate resource for EISA slot 7
Oct 3 21:11:32 lubuntu kernel: [ 7.236573] platform eisa.0: Cannot allocate resource for EISA slot 8
Oct 3 21:11:32 lubuntu kernel: [ 7.236576] platform eisa.0: EISA: Detected 0 cards
Oct 3 21:11:32 lubuntu kernel: [ 7.236607] cpufreq-nforce2: No nForce2 chipset.
Oct 3 21:11:32 lubuntu kernel: [ 7.236619] ledtrig-cpu: registered to indicate activity on CPUs
Oct 3 21:11:32 lubuntu kernel: [ 7.236794] TCP: cubic registered
Oct 3 21:11:32 lubuntu kernel: [ 7.237042] NET: Registered protocol family 10
Oct 3 21:11:32 lubuntu kernel: [ 7.237360] NET: Registered protocol family 17
Oct 3 21:11:32 lubuntu kernel: [ 7.237382] Key type dns_resolver registered
Oct 3 21:11:32 lubuntu kernel: [ 7.237716] Using IPI No-Shortcut mode
Oct 3 21:11:32 lubuntu kernel: [ 7.237883] Loading compiled-in X.509 certificates
Oct 3 21:11:32 lubuntu kernel: [ 7.242742] Loaded X.509 cert 'Magrathea: Glacier signing key: 61c0c7658fdb5bde6bb6e06ef089a8b1bfb1ae32'
Oct 3 21:11:32 lubuntu kernel: [ 7.242766] registered taskstats version 1
Oct 3 21:11:32 lubuntu kernel: [ 7.246186] Key type trusted registered
Oct 3 21:11:32 lubuntu kernel: [ 7.249319] Key type encrypted registered
Oct 3 21:11:32 lubuntu kernel: [ 7.252557] AppArmor: AppArmor sha1 policy hashing enabled
Oct 3 21:11:32 lubuntu kernel: [ 7.252565] ima: No TPM chip found, activating TPM-bypass!
Oct 3 21:11:32 lubuntu kernel: [ 7.252594] evm: HMAC attrs: 0x1
Oct 3 21:11:32 lubuntu kernel: [ 7.253044] Magic number: 3:95:196
Oct 3 21:11:32 lubuntu kernel: [ 7.253187] rtc_cmos 00:03: setting system clock to 2015-10-03 21:11:18 UTC (1443906678)
Oct 3 21:11:32 lubuntu kernel: [ 7.253377] powernow_k8: fid 0xa (1800 MHz), vid 0x11
Oct 3 21:11:32 lubuntu kernel: [ 7.253379] powernow_k8: fid 0x8 (1600 MHz), vid 0x12
Oct 3 21:11:32 lubuntu kernel: [ 7.253382] powernow_k8: fid 0x0 (800 MHz), vid 0x1a
Oct 3 21:11:32 lubuntu kernel: [ 7.253435] powernow_k8: Found 1 AMD Athlon(tm) 64 X2 Dual-Core Processor TK-55 (2 cpu cores) (version 2.20.00)
Oct 3 21:11:32 lubuntu kernel: [ 7.253448] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Oct 3 21:11:32 lubuntu kernel: [ 7.253450] EDD information not available.
Oct 3 21:11:32 lubuntu kernel: [ 7.253577] PM: Hibernation image not present or could not be loaded.
Oct 3 21:11:32 lubuntu kernel: [ 7.258193] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
Oct 3 21:11:32 lubuntu kernel: [ 7.332329] ACPI: Battery Slot [BAT0] (battery present)
Oct 3 21:11:32 lubuntu kernel: [ 7.411341] isapnp: No Plug & Play device found
Oct 3 21:11:32 lubuntu kernel: [ 7.411915] Freeing unused kernel memory: 848K (c1a4d000 - c1b21000)
Oct 3 21:11:32 lubuntu kernel: [ 7.411988] Write protecting the kernel text: 6936k
Oct 3 21:11:32 lubuntu kernel: [ 7.412141] Write protecting the kernel read-only data: 2912k
Oct 3 21:11:32 lubuntu kernel: [ 7.412144] NX-protecting the kernel data: 5352k
Oct 3 21:11:32 lubuntu kernel: [ 7.436502] random: systemd-udevd urandom read with 28 bits of entropy available
Oct 3 21:11:32 lubuntu kernel: [ 7.452093] usb 1-4: new high-speed USB device number 3 using ehci-pci
Oct 3 21:11:32 lubuntu kernel: [ 7.467828] wmi: Mapper loaded
Oct 3 21:11:32 lubuntu kernel: [ 7.476997] ACPI: Video Device [UVGA] (multi-head: yes rom: no post: no)
Oct 3 21:11:32 lubuntu kernel: [ 7.480592] acpi device:23: registered as cooling_device2
Oct 3 21:11:32 lubuntu kernel: [ 7.481027] input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input6
Oct 3 21:11:32 lubuntu kernel: [ 7.495423] pata_amd 0000:00:06.0: version 0.4.1
Oct 3 21:11:32 lubuntu kernel: [ 7.498857] scsi0 : pata_amd
Oct 3 21:11:32 lubuntu kernel: [ 7.499096] scsi1 : pata_amd
Oct 3 21:11:32 lubuntu kernel: [ 7.499197] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x30c0 irq 14
Oct 3 21:11:32 lubuntu kernel: [ 7.499201] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x30c8 irq 15
Oct 3 21:11:32 lubuntu kernel: [ 7.514074] ACPI: PCI Interrupt Link [LNK1] enabled at IRQ 5
Oct 3 21:11:32 lubuntu kernel: [ 7.523997] ahci 0000:00:09.0: version 3.0
Oct 3 21:11:32 lubuntu kernel: [ 7.524292] ACPI: PCI Interrupt Link [LSI0] enabled at IRQ 23
Oct 3 21:11:32 lubuntu kernel: [ 7.524340] ahci 0000:00:09.0: controller can do NCQ, turning on CAP_NCQ
Oct 3 21:11:32 lubuntu kernel: [ 7.524343] ahci 0000:00:09.0: controller can't do PMP, turning off CAP_PMP
Oct 3 21:11:32 lubuntu kernel: [ 7.524411] ahci 0000:00:09.0: AHCI 0001.0100 32 slots 4 ports 3 Gbps 0xf impl IDE mode
Oct 3 21:11:32 lubuntu kernel: [ 7.524417] ahci 0000:00:09.0: flags: 64bit ncq sntf led clo pio slum part
Oct 3 21:11:32 lubuntu kernel: [ 7.526584] sdhci: Secure Digital Host Controller Interface driver
Oct 3 21:11:32 lubuntu kernel: [ 7.526588] sdhci: Copyright(c) Pierre Ossman
Oct 3 21:11:32 lubuntu kernel: [ 7.536065] scsi2 : ahci
Oct 3 21:11:32 lubuntu kernel: [ 7.536278] scsi3 : ahci
Oct 3 21:11:32 lubuntu kernel: [ 7.536441] scsi4 : ahci
Oct 3 21:11:32 lubuntu kernel: [ 7.536596] scsi5 : ahci
Oct 3 21:11:32 lubuntu kernel: [ 7.536711] ata3: SATA max UDMA/133 abar m8192@0xf6484000 port 0xf6484100 irq 23
Oct 3 21:11:32 lubuntu kernel: [ 7.536715] ata4: SATA max UDMA/133 abar m8192@0xf6484000 port 0xf6484180 irq 23
Oct 3 21:11:32 lubuntu kernel: [ 7.536718] ata5: SATA max UDMA/133 abar m8192@0xf6484000 port 0xf6484200 irq 23
Oct 3 21:11:32 lubuntu kernel: [ 7.536721] ata6: SATA max UDMA/133 abar m8192@0xf6484000 port 0xf6484280 irq 23
Oct 3 21:11:32 lubuntu kernel: [ 7.537170] ACPI: PCI Interrupt Link [LK4E] enabled at IRQ 19
Oct 3 21:11:32 lubuntu kernel: [ 7.538173] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
Oct 3 21:11:32 lubuntu kernel: [ 7.538428] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 20
Oct 3 21:11:32 lubuntu kernel: [ 7.554251] [drm] Initialized drm 1.1.0 20060810
Oct 3 21:11:32 lubuntu kernel: [ 7.558684] ssb: Found chip with id 0x4311, rev 0x02 and package 0x00
Oct 3 21:11:32 lubuntu kernel: [ 7.558694] ssb: Core 0 found: ChipCommon (cc 0x800, rev 0x13, vendor 0x4243)
Oct 3 21:11:32 lubuntu kernel: [ 7.558701] ssb: Core 1 found: IEEE 802.11 (cc 0x812, rev 0x0D, vendor 0x4243)
Oct 3 21:11:32 lubuntu kernel: [ 7.558707] ssb: Core 2 found: USB 1.1 Host (cc 0x817, rev 0x04, vendor 0x4243)
Oct 3 21:11:32 lubuntu kernel: [ 7.558713] ssb: Core 3 found: PCI-E (cc 0x820, rev 0x05, vendor 0x4243)
Oct 3 21:11:32 lubuntu kernel: [ 7.568079] firewire_ohci 0000:02:05.0: added OHCI v1.10 device as card 0, 4 IR + 4 IT contexts, quirks 0x11
Oct 3 21:11:32 lubuntu kernel: [ 7.568387] sdhci-pci 0000:02:05.1: SDHCI controller found [1180:0822] (rev 22)
Oct 3 21:11:32 lubuntu kernel: [ 7.568620] ACPI: PCI Interrupt Link [LNK2] enabled at IRQ 7
Oct 3 21:11:32 lubuntu kernel: [ 7.569660] sdhci-pci 0000:02:05.1: Will use DMA mode even though HW doesn't fully claim to support it.
Oct 3 21:11:32 lubuntu kernel: [ 7.569668] mmc0: no vqmmc regulator found
Oct 3 21:11:32 lubuntu kernel: [ 7.569670] mmc0: no vmmc regulator found
Oct 3 21:11:32 lubuntu kernel: [ 7.570668] sdhci-pci 0000:02:05.1: Will use DMA mode even though HW doesn't fully claim to support it.
Oct 3 21:11:32 lubuntu kernel: [ 7.579170] mmc0: SDHCI controller on PCI [0000:02:05.1] using DMA
Oct 3 21:11:32 lubuntu kernel: [ 7.620196] ssb: Sonics Silicon Backplane found on PCI device 0000:03:00.0
Oct 3 21:11:32 lubuntu kernel: [ 7.650745] usb 1-4: New USB device found, idVendor=0204, idProduct=6025
Oct 3 21:11:32 lubuntu kernel: [ 7.650752] usb 1-4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Oct 3 21:11:32 lubuntu kernel: [ 7.650756] usb 1-4: Product: Flash Disk
Oct 3 21:11:32 lubuntu kernel: [ 7.650759] usb 1-4: SerialNumber: 19003500EEA35E06
Oct 3 21:11:32 lubuntu kernel: [ 7.660401] ata1.00: ATAPI: MATSHITADVD-RAM UJ-861H, 1.50, max MWDMA2
Oct 3 21:11:32 lubuntu kernel: [ 7.660416] ata1: nv_mode_filter: 0x39f&0x739f->0x39f, BIOS=0x0 (0xc600) ACPI=0x39f (120:600:0x12)
Oct 3 21:11:32 lubuntu kernel: [ 7.676336] ata1.00: configured for MWDMA2
Oct 3 21:11:32 lubuntu kernel: [ 7.680914] scsi 0:0:0:0: CD-ROM MATSHITA DVD-RAM UJ-861H 1.50 PQ: 0 ANSI: 5
Oct 3 21:11:32 lubuntu kernel: [ 7.699195] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
Oct 3 21:11:32 lubuntu kernel: [ 7.699202] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 3 21:11:32 lubuntu kernel: [ 7.699483] sr 0:0:0:0: Attached scsi CD-ROM sr0
Oct 3 21:11:32 lubuntu kernel: [ 7.699719] sr 0:0:0:0: Attached scsi generic sg0 type 5
Oct 3 21:11:32 lubuntu kernel: [ 7.699848] ata2: port disabled--ignoring
Oct 3 21:11:32 lubuntu kernel: [ 7.760072] usb 1-5: new high-speed USB device number 4 using ehci-pci
Oct 3 21:11:32 lubuntu kernel: [ 7.856040] ata3: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 3 21:11:32 lubuntu kernel: [ 7.856064] ata6: SATA link down (SStatus 0 SControl 300)
Oct 3 21:11:32 lubuntu kernel: [ 7.856084] ata5: SATA link down (SStatus 0 SControl 300)
Oct 3 21:11:32 lubuntu kernel: [ 7.856112] ata4: SATA link down (SStatus 0 SControl 300)
Oct 3 21:11:32 lubuntu kernel: [ 7.856499] ata3.00: ATA-7: TOSHIBA MK8037GSX, DL232C, max UDMA/100
Oct 3 21:11:32 lubuntu kernel: [ 7.856503] ata3.00: 156301488 sectors, multi 16: LBA48
Oct 3 21:11:32 lubuntu kernel: [ 7.857011] ata3.00: configured for UDMA/100
Oct 3 21:11:32 lubuntu kernel: [ 7.857206] scsi 2:0:0:0: Direct-Access ATA TOSHIBA MK8037GS 2C PQ: 0 ANSI: 5
Oct 3 21:11:32 lubuntu kernel: [ 7.857670] sd 2:0:0:0: [sda] 156301488 512-byte logical blocks: (80.0 GB/74.5 GiB)
Oct 3 21:11:32 lubuntu kernel: [ 7.857720] sd 2:0:0:0: Attached scsi generic sg1 type 0
Oct 3 21:11:32 lubuntu kernel: [ 7.857739] sd 2:0:0:0: [sda] Write Protect is off
Oct 3 21:11:32 lubuntu kernel: [ 7.857743] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 3 21:11:32 lubuntu kernel: [ 7.857773] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 3 21:11:32 lubuntu kernel: [ 7.908930] usb 1-5: New USB device found, idVendor=0cf3, idProduct=1006
Oct 3 21:11:32 lubuntu kernel: [ 7.908936] usb 1-5: New USB device strings: Mfr=16, Product=32, SerialNumber=48
Oct 3 21:11:32 lubuntu kernel: [ 7.908940] usb 1-5: Product: USB2.0 WLAN
Oct 3 21:11:32 lubuntu kernel: [ 7.908944] usb 1-5: Manufacturer: ATHEROS
Oct 3 21:11:32 lubuntu kernel: [ 7.908946] usb 1-5: SerialNumber: 12345
Oct 3 21:11:32 lubuntu kernel: [ 8.047684] usb-storage 1-4:1.0: USB Mass Storage device detected
Oct 3 21:11:32 lubuntu kernel: [ 8.047859] scsi6 : usb-storage 1-4:1.0
Oct 3 21:11:32 lubuntu kernel: [ 8.048070] usbcore: registered new interface driver usb-storage
Oct 3 21:11:32 lubuntu kernel: [ 8.054402] usbcore: registered new interface driver uas
Oct 3 21:11:32 lubuntu kernel: [ 8.060895] forcedeth 0000:00:0a.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:1b:24:d3:4b:62
Oct 3 21:11:32 lubuntu kernel: [ 8.060903] forcedeth 0000:00:0a.0: highdma pwrctl mgmt lnktim msi desc-v3
Oct 3 21:11:32 lubuntu kernel: [ 8.061303] ACPI: PCI Interrupt Link [LGPU] enabled at IRQ 16
Oct 3 21:11:32 lubuntu kernel: [ 8.061646] nouveau [ DEVICE][0000:00:12.0] BOOT0 : 0x067000a1
Oct 3 21:11:32 lubuntu kernel: [ 8.061652] nouveau [ DEVICE][0000:00:12.0] Chipset: C67 (NV67)
Oct 3 21:11:32 lubuntu kernel: [ 8.061655] nouveau [ DEVICE][0000:00:12.0] Family : NV40
Oct 3 21:11:32 lubuntu kernel: [ 8.061740] nouveau [ VBIOS][0000:00:12.0] checking PRAMIN for image...
Oct 3 21:11:32 lubuntu kernel: [ 8.103138] nouveau [ VBIOS][0000:00:12.0] ... appears to be valid
Oct 3 21:11:32 lubuntu kernel: [ 8.103141] nouveau [ VBIOS][0000:00:12.0] using image from PRAMIN
Oct 3 21:11:32 lubuntu kernel: [ 8.103337] nouveau [ VBIOS][0000:00:12.0] BIT signature found
Oct 3 21:11:32 lubuntu kernel: [ 8.103342] nouveau [ VBIOS][0000:00:12.0] version 05.67.32.16.17
Oct 3 21:11:32 lubuntu kernel: [ 8.103494] firewire_core 0000:02:05.0: created device fw0: GUID 00241b007c518500, S400
Oct 3 21:11:32 lubuntu kernel: [ 8.103746] nouveau 0000:00:12.0: irq 42 for MSI/MSI-X
Oct 3 21:11:32 lubuntu kernel: [ 8.103761] nouveau [ PMC][0000:00:12.0] MSI interrupts enabled
Oct 3 21:11:32 lubuntu kernel: [ 8.104222] nouveau [ PFB][0000:00:12.0] RAM type: unknown
Oct 3 21:11:32 lubuntu kernel: [ 8.104228] nouveau [ PFB][0000:00:12.0] RAM size: 64 MiB
Oct 3 21:11:32 lubuntu kernel: [ 8.104231] nouveau [ PFB][0000:00:12.0] ZCOMP: 0 tags
Oct 3 21:11:32 lubuntu kernel: [ 8.110871] nouveau [ VOLT][0000:00:12.0] GPU voltage: 1200000uv
Oct 3 21:11:32 lubuntu kernel: [ 8.139488] nouveau [ PTHERM][0000:00:12.0] FAN control: none / external
Oct 3 21:11:32 lubuntu kernel: [ 8.139505] nouveau [ PTHERM][0000:00:12.0] fan management: automatic
Oct 3 21:11:32 lubuntu kernel: [ 8.139508] nouveau [ PTHERM][0000:00:12.0] internal sensor: yes
Oct 3 21:11:32 lubuntu kernel: [ 8.148048] usb 2-2: new high-speed USB device number 2 using ehci-pci
Oct 3 21:11:32 lubuntu kernel: [ 8.159367] nouveau [ CLK][0000:00:12.0] 20: core 100 MHz shader 100 MHz
Oct 3 21:11:32 lubuntu kernel: [ 8.159373] nouveau [ CLK][0000:00:12.0] 21: core 250 MHz shader 250 MHz
Oct 3 21:11:32 lubuntu kernel: [ 8.159378] nouveau [ CLK][0000:00:12.0] 22: core 425 MHz shader 425 MHz
Oct 3 21:11:32 lubuntu kernel: [ 8.159391] nouveau [ CLK][0000:00:12.0] --: core 39 MHz
Oct 3 21:11:32 lubuntu kernel: [ 8.159546] [TTM] Zone kernel: Available graphics memory: 444076 kiB
Oct 3 21:11:32 lubuntu kernel: [ 8.159549] [TTM] Zone highmem: Available graphics memory: 480592 kiB
Oct 3 21:11:32 lubuntu kernel: [ 8.159551] [TTM] Initializing pool allocator
Oct 3 21:11:32 lubuntu kernel: [ 8.159560] [TTM] Initializing DMA pool allocator
Oct 3 21:11:32 lubuntu kernel: [ 8.159580] nouveau [ DRM] VRAM: 61 MiB
Oct 3 21:11:32 lubuntu kernel: [ 8.159583] nouveau [ DRM] GART: 512 MiB
Oct 3 21:11:32 lubuntu kernel: [ 8.159589] nouveau [ DRM] TMDS table version 1.1
Oct 3 21:11:32 lubuntu kernel: [ 8.159591] nouveau W[ DRM] TMDS table script pointers not stubbed
Oct 3 21:11:32 lubuntu kernel: [ 8.159594] nouveau [ DRM] DCB version 3.0
Oct 3 21:11:32 lubuntu kernel: [ 8.159599] nouveau [ DRM] DCB outp 00: 03015323 00000004
Oct 3 21:11:32 lubuntu kernel: [ 8.159602] nouveau [ DRM] DCB outp 01: 01000310 00000023
Oct 3 21:11:32 lubuntu kernel: [ 8.159606] nouveau [ DRM] DCB outp 02: 020223f1 0040c080
Oct 3 21:11:32 lubuntu kernel: [ 8.159609] nouveau [ DRM] DCB conn 00: 0000
Oct 3 21:11:32 lubuntu kernel: [ 8.159613] nouveau [ DRM] DCB conn 01: 1161
Oct 3 21:11:32 lubuntu kernel: [ 8.159616] nouveau [ DRM] DCB conn 02: 0210
Oct 3 21:11:32 lubuntu kernel: [ 8.159619] nouveau [ DRM] DCB conn 03: 0211
Oct 3 21:11:32 lubuntu kernel: [ 8.159621] nouveau [ DRM] DCB conn 04: 0213
Oct 3 21:11:32 lubuntu kernel: [ 8.159624] nouveau [ DRM] DCB conn 05: 0340
Oct 3 21:11:32 lubuntu kernel: [ 8.159948] nouveau [ DRM] Saving VGA fonts
Oct 3 21:11:32 lubuntu kernel: [ 8.201248] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Oct 3 21:11:32 lubuntu kernel: [ 8.201252] [drm] Driver supports precise vblank timestamp query.
Oct 3 21:11:32 lubuntu kernel: [ 8.203279] nouveau [ DRM] MM: using M2MF for buffer copies
Oct 3 21:11:32 lubuntu kernel: [ 8.203290] nouveau [ DRM] Calling LVDS script 6:
Oct 3 21:11:32 lubuntu kernel: [ 8.203294] nouveau [ DRM] 0xD680: Parsing digital output script table
Oct 3 21:11:32 lubuntu kernel: [ 8.203302] nouveau [ DRM] Setting dpms mode 3 on TV encoder (output 2)
Oct 3 21:11:32 lubuntu kernel: [ 8.259320] sda: sda1 sda2 < sda5 >
Oct 3 21:11:32 lubuntu kernel: [ 8.260050] sd 2:0:0:0: [sda] Attached SCSI disk
Oct 3 21:11:32 lubuntu kernel: [ 8.294655] usb 2-2: New USB device found, idVendor=04f2, idProduct=b023
Oct 3 21:11:32 lubuntu kernel: [ 8.294662] usb 2-2: New USB device strings: Mfr=2, Product=1, SerialNumber=3
Oct 3 21:11:32 lubuntu kernel: [ 8.294665] usb 2-2: Product: HP Webcam
Oct 3 21:11:32 lubuntu kernel: [ 8.294669] usb 2-2: Manufacturer: Chicony Electronics Co., Ltd.
Oct 3 21:11:32 lubuntu kernel: [ 8.294672] usb 2-2: SerialNumber: SN0001
Oct 3 21:11:32 lubuntu kernel: [ 8.296042] nouveau [ DRM] Load detected on output B
Oct 3 21:11:32 lubuntu kernel: [ 8.296217] nouveau [ DRM] allocated 1440x900 fb: 0x9000, bo f6cdd800
Oct 3 21:11:32 lubuntu kernel: [ 8.296406] fbcon: nouveaufb (fb0) is primary device
Oct 3 21:11:32 lubuntu kernel: [ 8.321122] nouveau [ DRM] Calling LVDS script 2:
Oct 3 21:11:32 lubuntu kernel: [ 8.321125] nouveau [ DRM] 0xD6ED: Parsing digital output script table
Oct 3 21:11:32 lubuntu kernel: [ 8.467989] nouveau [ DRM] Calling LVDS script 5:
Oct 3 21:11:32 lubuntu kernel: [ 8.467992] nouveau [ DRM] 0xD676: Parsing digital output script table
Oct 3 21:11:32 lubuntu kernel: [ 8.472048] usb 3-1: new low-speed USB device number 2 using ohci-pci
Oct 3 21:11:32 lubuntu kernel: [ 8.488374] nouveau [ DRM] Setting dpms mode 0 on TV encoder (output 2)
Oct 3 21:11:32 lubuntu kernel: [ 8.488387] nouveau [ DRM] Output TV-1 is running on CRTC 1 using output B
Oct 3 21:11:32 lubuntu kernel: [ 8.489199] Console: switching to colour frame buffer device 90x36
Oct 3 21:11:32 lubuntu kernel: [ 8.489970] nouveau 0000:00:12.0: fb0: nouveaufb frame buffer device
Oct 3 21:11:32 lubuntu kernel: [ 8.489974] nouveau 0000:00:12.0: registered panic notifier
Oct 3 21:11:32 lubuntu kernel: [ 8.504038] [drm] Initialized nouveau 1.1.2 20120801 for 0000:00:12.0 on minor 0
Oct 3 21:11:32 lubuntu kernel: [ 8.695925] usb 3-1: New USB device found, idVendor=04d9, idProduct=1133
Oct 3 21:11:32 lubuntu kernel: [ 8.695932] usb 3-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 3 21:11:32 lubuntu kernel: [ 8.710971] hidraw: raw HID events driver (C) Jiri Kosina
Oct 3 21:11:32 lubuntu kernel: [ 8.730657] usbcore: registered new interface driver usbhid
Oct 3 21:11:32 lubuntu kernel: [ 8.730662] usbhid: USB HID core driver
Oct 3 21:11:32 lubuntu kernel: [ 8.737917] input: HID 04d9:1133 as /devices/pci0000:00/0000:00:02.0/usb3/3-1/3-1:1.0/0003:04D9:1133.0001/input/input8
Oct 3 21:11:32 lubuntu kernel: [ 8.738147] hid-generic 0003:04D9:1133.0001: input,hidraw0: USB HID v1.10 Mouse [HID 04d9:1133] on usb-0000:00:02.0-1/input0
Oct 3 21:11:32 lubuntu kernel: [ 8.793886] psmouse serio1: synaptics: Touchpad model: 1, fw: 6.3, id: 0x1a0b1, caps: 0xa04713/0x200000/0x0, board id: 3655, fw id: 309933
Oct 3 21:11:32 lubuntu kernel: [ 8.873634] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input7
Oct 3 21:11:32 lubuntu kernel: [ 9.046592] scsi 6:0:0:0: Direct-Access Flash Disk 5.00 PQ: 0 ANSI: 2
Oct 3 21:11:32 lubuntu kernel: [ 9.047707] sd 6:0:0:0: Attached scsi generic sg2 type 0
Oct 3 21:11:32 lubuntu kernel: [ 9.048206] sd 6:0:0:0: [sdb] 2072320 512-byte logical blocks: (1.06 GB/1011 MiB)
Oct 3 21:11:32 lubuntu kernel: [ 9.049462] sd 6:0:0:0: [sdb] Write Protect is off
Oct 3 21:11:32 lubuntu kernel: [ 9.049470] sd 6:0:0:0: [sdb] Mode Sense: 0b 00 00 08
Oct 3 21:11:32 lubuntu kernel: [ 9.050443] sd 6:0:0:0: [sdb] No Caching mode page found
Oct 3 21:11:32 lubuntu kernel: [ 9.050466] sd 6:0:0:0: [sdb] Assuming drive cache: write through
Oct 3 21:11:32 lubuntu kernel: [ 9.055214] sdb: sdb1
Oct 3 21:11:32 lubuntu kernel: [ 9.056058] nouveau [ DRM] Load detected on output B
Oct 3 21:11:32 lubuntu kernel: [ 9.059445] sd 6:0:0:0: [sdb] Attached SCSI removable disk
Oct 3 21:11:32 lubuntu kernel: [ 9.158816] nouveau [ DRM] Calling LVDS script 6:
Oct 3 21:11:32 lubuntu kernel: [ 9.158825] nouveau [ DRM] 0xD680: Parsing digital output script table
Oct 3 21:11:32 lubuntu kernel: [ 9.179063] nouveau [ DRM] Calling LVDS script 2:
Oct 3 21:11:32 lubuntu kernel: [ 9.179067] nouveau [ DRM] 0xD6ED: Parsing digital output script table
Oct 3 21:11:32 lubuntu kernel: [ 9.272143] random: nonblocking pool is initialized
Oct 3 21:11:32 lubuntu kernel: [ 9.325926] nouveau [ DRM] Calling LVDS script 5:
Oct 3 21:11:32 lubuntu kernel: [ 9.325930] nouveau [ DRM] 0xD676: Parsing digital output script table
Oct 3 21:11:32 lubuntu kernel: [ 9.331230] nouveau [ DRM] Setting dpms mode 3 on TV encoder (output 2)
Oct 3 21:11:32 lubuntu kernel: [ 9.335051] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Oct 3 21:11:32 lubuntu kernel: [ 9.351542] nouveau [ DRM] Setting dpms mode 0 on TV encoder (output 2)
Oct 3 21:11:32 lubuntu kernel: [ 9.351554] nouveau [ DRM] Output TV-1 is running on CRTC 1 using output B
Oct 3 21:11:32 lubuntu kernel: [ 9.701466] squashfs: version 4.0 (2009/01/31) Phillip Lougher
Oct 3 21:11:32 lubuntu kernel: [ 20.478186] Adding 980988k swap on /dev/sda5. Priority:-1 extents:1 across:980988k FS
Oct 3 21:11:32 lubuntu kernel: [ 20.985488] lp: driver loaded but no devices found
Oct 3 21:11:32 lubuntu kernel: [ 21.049178] ppdev: user-space parallel port driver
Oct 3 21:11:32 lubuntu kernel: [ 21.352722] i2c i2c-4: nForce2 SMBus adapter at 0x3040
Oct 3 21:11:32 lubuntu kernel: [ 21.353760] i2c i2c-5: nForce2 SMBus adapter at 0x3000
Oct 3 21:11:32 lubuntu kernel: [ 21.480675] Bluetooth: Core ver 2.19
Oct 3 21:11:32 lubuntu kernel: [ 21.480822] NET: Registered protocol family 31
Oct 3 21:11:32 lubuntu kernel: [ 21.480826] Bluetooth: HCI device and connection manager initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.480837] Bluetooth: HCI socket layer initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.480842] Bluetooth: L2CAP socket layer initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.480868] Bluetooth: SCO socket layer initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.561126] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 3 21:11:32 lubuntu kernel: [ 21.561133] Bluetooth: BNEP filters: protocol multicast
Oct 3 21:11:32 lubuntu kernel: [ 21.561145] Bluetooth: BNEP socket layer initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.597925] r592: driver successfully loaded
Oct 3 21:11:32 lubuntu kernel: [ 21.632884] Bluetooth: RFCOMM TTY layer initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.632905] Bluetooth: RFCOMM socket layer initialized
Oct 3 21:11:32 lubuntu kernel: [ 21.632919] Bluetooth: RFCOMM ver 1.11
Oct 3 21:11:32 lubuntu kernel: [ 21.653468] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
Oct 3 21:11:32 lubuntu kernel: [ 21.738141] media: Linux media interface: v0.10
Oct 3 21:11:33 lubuntu kernel: [ 21.835136] Linux video capture interface: v2.00
Oct 3 21:11:33 lubuntu kernel: [ 21.946797] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
Oct 3 21:11:33 lubuntu kernel: [ 21.999831] r852: Non dma capable device detected, dma disabled
Oct 3 21:11:33 lubuntu kernel: [ 21.999857] r852: driver loaded successfully
Oct 3 21:11:33 lubuntu kernel: [ 22.169785] cfg80211: Calling CRDA to update world regulatory domain
Oct 3 21:11:33 lubuntu kernel: [ 22.187891] device-mapper: multipath: version 1.7.0 loaded
Oct 3 21:11:33 lubuntu kernel: [ 22.209844] uvcvideo: Found UVC 1.00 device HP Webcam (04f2:b023)
Oct 3 21:11:33 lubuntu kernel: [ 22.214761] input: HP Webcam as /devices/pci0000:00/0000:00:04.1/usb2/2-2/2-2:1.0/input/input9
Oct 3 21:11:33 lubuntu kernel: [ 22.215835] usbcore: registered new interface driver uvcvideo
Oct 3 21:11:33 lubuntu kernel: [ 22.215840] USB Video Class driver (1.1.1)
Oct 3 21:11:33 lubuntu kernel: [ 22.473052] kvm: disabled by bios
Oct 3 21:11:33 lubuntu kernel: [ 22.539800] kvm: disabled by bios
Oct 3 21:11:33 lubuntu kernel: [ 22.674101] b43-phy0: Broadcom 4311 WLAN found (core revision 13)
Oct 3 21:11:33 lubuntu kernel: [ 22.714218] b43-phy0: Found PHY: Analog 4, Type 2 (G), Revision 9
Oct 3 21:11:33 lubuntu kernel: [ 22.714244] b43-phy0 warning: 5 GHz band is unsupported on this PHY
Oct 3 21:11:33 lubuntu kernel: [ 22.734140] b43 ssb0:0: Direct firmware load failed with error -2
Oct 3 21:11:33 lubuntu kernel: [ 22.734148] b43 ssb0:0: Falling back to user helper
Oct 3 21:11:33 lubuntu kernel: [ 22.734638] Broadcom 43xx driver loaded [ Features: PNL ]
Oct 3 21:11:34 lubuntu kernel: [ 23.014522] input: HP WMI hotkeys as /devices/virtual/input/input10
Oct 3 21:11:34 lubuntu kernel: [ 23.150772] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
Oct 3 21:11:34 lubuntu kernel: [ 23.150806] snd_hda_intel 0000:00:07.0: Disabling MSI
Oct 3 21:11:34 lubuntu kernel: [ 23.216910] usb 1-5: ath9k_htc: Firmware htc_9271.fw requested
Oct 3 21:11:34 lubuntu kernel: [ 23.218396] usbcore: registered new interface driver ath9k_htc
Oct 3 21:11:34 lubuntu kernel: [ 23.220739] b43 ssb0:0: Direct firmware load failed with error -2
Oct 3 21:11:34 lubuntu kernel: [ 23.220746] b43 ssb0:0: Falling back to user helper
Oct 3 21:11:34 lubuntu kernel: [ 23.257902] b43 ssb0:0: Direct firmware load failed with error -2
Oct 3 21:11:34 lubuntu kernel: [ 23.257909] b43 ssb0:0: Falling back to user helper
Oct 3 21:11:34 lubuntu kernel: [ 23.259079] b43 ssb0:0: Direct firmware load failed with error -2
Oct 3 21:11:34 lubuntu kernel: [ 23.259086] b43 ssb0:0: Falling back to user helper
Oct 3 21:11:34 lubuntu kernel: [ 23.262123] b43-phy0 ERROR: Firmware file "b43/ucode13.fw" request failed (err=-12)
Oct 3 21:11:34 lubuntu kernel: [ 23.262132] b43-phy0 ERROR: Firmware file "b43-open/ucode13.fw" request failed (err=-12)
Oct 3 21:11:34 lubuntu kernel: [ 23.262135] b43-phy0 ERROR: You must go to http://wireless.kernel.org/en/users/Drivers/b43#devicefirmware and download the correct firmware for this driver version. Please carefully read all instructions on this website.
Oct 3 21:11:34 lubuntu kernel: [ 23.283031] cfg80211: World regulatory domain updated:
Oct 3 21:11:34 lubuntu kernel: [ 23.283042] cfg80211: DFS Master region: unset
Oct 3 21:11:34 lubuntu kernel: [ 23.283045] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Oct 3 21:11:34 lubuntu kernel: [ 23.283050] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:11:34 lubuntu kernel: [ 23.283054] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:11:34 lubuntu kernel: [ 23.283057] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:11:34 lubuntu kernel: [ 23.283060] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:11:34 lubuntu kernel: [ 23.283063] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:11:34 lubuntu kernel: [ 23.531578] usb 1-5: ath9k_htc: Transferred FW: htc_9271.fw, size: 51272
Oct 3 21:11:34 lubuntu kernel: [ 23.542996] sound hdaudioC0D0: CX20549 (Venice): BIOS auto-probing.
Oct 3 21:11:34 lubuntu kernel: [ 23.590607] sound hdaudioC0D0: autoconfig: line_outs=1 (0x10/0x0/0x0/0x0/0x0) type:speaker
Oct 3 21:11:34 lubuntu kernel: [ 23.590616] sound hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Oct 3 21:11:34 lubuntu kernel: [ 23.590621] sound hdaudioC0D0: hp_outs=1 (0x11/0x0/0x0/0x0/0x0)
Oct 3 21:11:34 lubuntu kernel: [ 23.590624] sound hdaudioC0D0: mono: mono_out=0x0
Oct 3 21:11:34 lubuntu kernel: [ 23.590627] sound hdaudioC0D0: dig-out=0x13/0x0
Oct 3 21:11:34 lubuntu kernel: [ 23.590630] sound hdaudioC0D0: inputs:
Oct 3 21:11:34 lubuntu kernel: [ 23.590633] sound hdaudioC0D0: Mic=0x14
Oct 3 21:11:35 lubuntu kernel: [ 23.768192] ath9k_htc 1-5:1.0: ath9k_htc: HTC initialized with 33 credits
Oct 3 21:11:35 lubuntu kernel: [ 23.796058] sound hdaudioC0D0: Enable sync_write for stable communication
Oct 3 21:11:35 lubuntu kernel: [ 24.007460] forcedeth 0000:00:0a.0: irq 43 for MSI/MSI-X
Oct 3 21:11:35 lubuntu kernel: [ 24.007515] forcedeth 0000:00:0a.0 eth0: MSI enabled
Oct 3 21:11:35 lubuntu kernel: [ 24.007770] forcedeth 0000:00:0a.0 eth0: no link during initialization
Oct 3 21:11:35 lubuntu kernel: [ 24.008279] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 3 21:11:35 lubuntu kernel: [ 24.014301] input: HDA NVidia Front Headphone as /devices/pci0000:00/0000:00:07.0/sound/card0/input11
Oct 3 21:11:35 lubuntu kernel: [ 24.040438] ath9k_htc 1-5:1.0: ath9k_htc: FW Version: 1.3
Oct 3 21:11:35 lubuntu kernel: [ 24.040447] ath: EEPROM regdomain: 0x809c
Oct 3 21:11:35 lubuntu kernel: [ 24.040449] ath: EEPROM indicates we should expect a country code
Oct 3 21:11:35 lubuntu kernel: [ 24.040452] ath: doing EEPROM country->regdmn map search
Oct 3 21:11:35 lubuntu kernel: [ 24.040454] ath: country maps to regdmn code: 0x52
Oct 3 21:11:35 lubuntu kernel: [ 24.040456] ath: Country alpha2 being used: CN
Oct 3 21:11:35 lubuntu kernel: [ 24.040458] ath: Regpair used: 0x52
Oct 3 21:11:35 lubuntu kernel: [ 24.097124] ieee80211 phy1: Atheros AR9271 Rev:1
Oct 3 21:11:35 lubuntu kernel: [ 24.097356] cfg80211: Calling CRDA for country: CN
Oct 3 21:11:35 lubuntu kernel: [ 24.111569] cfg80211: Regulatory domain changed to country: CN
Oct 3 21:11:35 lubuntu kernel: [ 24.111578] cfg80211: DFS Master region: unset
Oct 3 21:11:35 lubuntu kernel: [ 24.111580] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Oct 3 21:11:35 lubuntu kernel: [ 24.111585] cfg80211: (2402000 KHz - 2482000 KHz @ 40000 KHz), (N/A, 2000 mBm), (N/A)
Oct 3 21:11:35 lubuntu kernel: [ 24.111588] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (N/A, 3000 mBm), (N/A)
Oct 3 21:11:35 lubuntu kernel: [ 24.111591] cfg80211: (57240000 KHz - 59400000 KHz @ 2160000 KHz), (N/A, 2800 mBm), (N/A)
Oct 3 21:11:35 lubuntu kernel: [ 24.111594] cfg80211: (59400000 KHz - 63720000 KHz @ 2160000 KHz), (N/A, 4400 mBm), (N/A)
Oct 3 21:11:35 lubuntu kernel: [ 24.111597] cfg80211: (63720000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 2800 mBm), (N/A)
Oct 3 21:11:35 lubuntu kernel: [ 24.408368] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 3 21:11:36 lubuntu kernel: [ 24.954986] zram: Created 2 device(s) ...
Oct 3 21:11:36 lubuntu kernel: [ 25.007669] zram0: detected capacity change from 0 to 246063104
Oct 3 21:11:36 lubuntu kernel: [ 25.062629] Adding 240292k swap on /dev/zram0. Priority:5 extents:1 across:240292k SSFS
Oct 3 21:11:36 lubuntu kernel: [ 25.065285] zram1: detected capacity change from 0 to 246063104
Oct 3 21:11:36 lubuntu kernel: [ 25.106792] Adding 240292k swap on /dev/zram1. Priority:5 extents:1 across:240292k SSFS
Oct 3 21:11:36 lubuntu kernel: [ 25.524088] nouveau [ DRM] Load detected on output B
Oct 3 21:11:37 lubuntu kernel: [ 26.536084] nouveau [ DRM] Load detected on output B
Oct 3 21:11:37 lubuntu kernel: [ 26.684084] nouveau [ DRM] Load detected on output B
Oct 3 21:11:38 lubuntu kernel: [ 27.353935] nouveau [ DRM] Calling LVDS script 6:
Oct 3 21:11:38 lubuntu kernel: [ 27.353944] nouveau [ DRM] 0xD680: Parsing digital output script table
Oct 3 21:11:38 lubuntu kernel: [ 27.374074] nouveau [ DRM] Calling LVDS script 2:
Oct 3 21:11:38 lubuntu kernel: [ 27.374078] nouveau [ DRM] 0xD6ED: Parsing digital output script table
Oct 3 21:11:38 lubuntu kernel: [ 27.520958] nouveau [ DRM] Calling LVDS script 5:
Oct 3 21:11:38 lubuntu kernel: [ 27.520963] nouveau [ DRM] 0xD676: Parsing digital output script table
Oct 3 21:11:38 lubuntu kernel: [ 27.521249] nouveau [ DRM] Setting dpms mode 3 on TV encoder (output 2)
Oct 3 21:11:38 lubuntu kernel: [ 27.541434] nouveau [ DRM] Setting dpms mode 0 on TV encoder (output 2)
Oct 3 21:11:38 lubuntu kernel: [ 27.541445] nouveau [ DRM] Output TV-1 is running on CRTC 1 using output B
Oct 3 21:11:42 lubuntu kernel: [ 30.824093] nouveau [ DRM] Load detected on output B
Oct 3 21:12:28 lubuntu kernel: [ 77.208028] raid6: mmxx1 1499 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.276030] raid6: mmxx2 2703 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.344027] raid6: sse1x1 492 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.412044] raid6: sse1x2 834 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.480039] raid6: sse2x1 864 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.548013] raid6: sse2x2 1443 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.616090] raid6: int32x1 675 MB/s
Oct 3 21:12:28 lubuntu kernel: [ 77.684066] raid6: int32x2 938 MB/s
Oct 3 21:12:29 lubuntu kernel: [ 77.752034] raid6: int32x4 728 MB/s
Oct 3 21:12:29 lubuntu kernel: [ 77.820049] raid6: int32x8 681 MB/s
Oct 3 21:12:29 lubuntu kernel: [ 77.820051] raid6: using algorithm mmxx2 (2703 MB/s)
Oct 3 21:12:29 lubuntu kernel: [ 77.820054] raid6: using intx1 recovery algorithm
Oct 3 21:12:29 lubuntu kernel: [ 77.837429] xor: measuring software checksum speed
Oct 3 21:12:29 lubuntu kernel: [ 77.876013] pIII_sse : 5325.000 MB/sec
Oct 3 21:12:29 lubuntu kernel: [ 77.916012] prefetch64-sse: 5333.000 MB/sec
Oct 3 21:12:29 lubuntu kernel: [ 77.916015] xor: using function: prefetch64-sse (5333.000 MB/sec)
Oct 3 21:12:29 lubuntu kernel: [ 78.006095] Btrfs loaded
Oct 3 21:12:29 lubuntu kernel: [ 78.073889] JFS: nTxBlock = 7509, nTxLock = 60074
Oct 3 21:12:29 lubuntu kernel: [ 78.186795] SGI XFS with ACLs, security attributes, realtime, large block/inode numbers, no debug enabled
Oct 3 21:12:35 lubuntu kernel: [ 84.447096] ntfs: driver 2.1.30 [Flags: R/O MODULE].
Oct 3 21:12:35 lubuntu kernel: [ 84.530412] QNX4 filesystem 0.2.3 registered.
Oct 3 21:12:36 lubuntu kernel: [ 85.350953] EXT4-fs (sda2): unable to read superblock
Oct 3 21:12:36 lubuntu kernel: [ 85.353734] EXT4-fs (sda2): unable to read superblock
Oct 3 21:12:36 lubuntu kernel: [ 85.356623] EXT4-fs (sda2): unable to read superblock
Oct 3 21:12:36 lubuntu kernel: [ 85.359493] FAT-fs (sda2): invalid media value (0x3a)
Oct 3 21:12:36 lubuntu kernel: [ 85.359501] FAT-fs (sda2): Can't find a valid FAT filesystem
Oct 3 21:12:36 lubuntu kernel: [ 85.384843] SQUASHFS error: Can't find a SQUASHFS superblock on sda2
Oct 3 21:12:36 lubuntu kernel: [ 85.393593] XFS (sda2): Invalid superblock magic number
Oct 3 21:12:36 lubuntu kernel: [ 85.396868] FAT-fs (sda2): invalid media value (0x3a)
Oct 3 21:12:36 lubuntu kernel: [ 85.396875] FAT-fs (sda2): Can't find a valid FAT filesystem
Oct 3 21:12:36 lubuntu kernel: [ 85.405249] MINIX-fs: unable to read superblock
Oct 3 21:12:36 lubuntu kernel: [ 85.420056] attempt to access beyond end of device
Oct 3 21:12:36 lubuntu kernel: [ 85.420064] sda2: rw=16, want=3, limit=2
Oct 3 21:12:36 lubuntu kernel: [ 85.420068] hfsplus: unable to find HFS+ superblock
Oct 3 21:12:36 lubuntu kernel: [ 85.424469] qnx4: no qnx4 filesystem (no root dir).
Oct 3 21:12:36 lubuntu kernel: [ 85.427284] You didn't specify the type of your ufs filesystem
Oct 3 21:12:36 lubuntu kernel: [ 85.427284]
Oct 3 21:12:36 lubuntu kernel: [ 85.427284] mount -t ufs -o ufstype=sun|sunx86|44bsd|ufs2|5xbsd|old|hp|nextstep|nextstep-cd|openstep ...
Oct 3 21:12:36 lubuntu kernel: [ 85.427284]
Oct 3 21:12:36 lubuntu kernel: [ 85.427284] >>>WARNING<<< Wrong ufstype may corrupt your filesystem, default is ufstype=old
Oct 3 21:12:36 lubuntu kernel: [ 85.430131] hfs: can't find a HFS filesystem on dev sda2
Oct 3 21:12:57 lubuntu kernel: [ 105.798635] Adding 980988k swap on /dev/sda5. Priority:-1 extents:1 across:980988k FS
Oct 3 21:13:32 lubuntu kernel: [ 141.502400] Adding 980988k swap on /dev/sda5. Priority:-1 extents:1 across:980988k FS
Oct 3 21:13:38 lubuntu kernel: [ 146.789645] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: errors=remount-ro
Oct 3 21:14:10 lubuntu kernel: [ 179.175293] SQUASHFS error: zlib decompression failed, data probably corrupt
Oct 3 21:14:10 lubuntu kernel: [ 179.175302] SQUASHFS error: squashfs_read_data failed to read block 0x7659a11
Oct 3 21:14:10 lubuntu kernel: [ 179.175307] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175310] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175321] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175324] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175330] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175332] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175338] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175340] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175346] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175348] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175354] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175356] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175362] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175364] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175373] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175376] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:14:10 lubuntu kernel: [ 179.175382] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:14:10 lubuntu kernel: [ 179.175384] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:15:51 lubuntu kernel: [ 280.617599] wlan0: authenticate with 30:91:8f:15:8c:85
Oct 3 21:15:52 lubuntu kernel: [ 280.943905] wlan0: send auth to 30:91:8f:15:8c:85 (try 1/3)
Oct 3 21:15:52 lubuntu kernel: [ 280.946071] wlan0: authenticated
Oct 3 21:15:52 lubuntu kernel: [ 280.946417] ath9k_htc 1-5:1.0 wlan0: disabling HT/VHT due to WEP/TKIP use
Oct 3 21:15:52 lubuntu kernel: [ 280.948080] wlan0: associate with 30:91:8f:15:8c:85 (try 1/3)
Oct 3 21:15:52 lubuntu kernel: [ 280.950581] wlan0: RX AssocResp from 30:91:8f:15:8c:85 (capab=0x11 status=0 aid=7)
Oct 3 21:15:52 lubuntu kernel: [ 280.954957] wlan0: associated
Oct 3 21:15:52 lubuntu kernel: [ 280.955006] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 3 21:16:15 lubuntu kernel: [ 304.714493] [sched_delayed] 4CE: hpet increased min_delta_ns to 11521 nsec
Oct 3 21:22:26 lubuntu kernel: [ 675.058051] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: (null)
Oct 3 21:22:27 lubuntu kernel: [ 676.611926] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
Oct 3 21:25:03 lubuntu kernel: [ 832.221217] wlan0: cannot understand ECSA IE operating class 4, disconnecting
Oct 3 21:25:03 lubuntu kernel: [ 832.357936] cfg80211: Calling CRDA to update world regulatory domain
Oct 3 21:25:03 lubuntu kernel: [ 832.541628] cfg80211: World regulatory domain updated:
Oct 3 21:25:03 lubuntu kernel: [ 832.541639] cfg80211: DFS Master region: unset
Oct 3 21:25:03 lubuntu kernel: [ 832.541642] cfg80211: (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp), (dfs_cac_time)
Oct 3 21:25:03 lubuntu kernel: [ 832.541647] cfg80211: (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:25:03 lubuntu kernel: [ 832.541651] cfg80211: (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:25:03 lubuntu kernel: [ 832.541655] cfg80211: (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:25:03 lubuntu kernel: [ 832.541658] cfg80211: (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:25:03 lubuntu kernel: [ 832.541662] cfg80211: (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm), (N/A)
Oct 3 21:25:03 lubuntu kernel: [ 832.569538] wlan0: authenticate with 30:91:8f:15:8c:85
Oct 3 21:25:03 lubuntu kernel: [ 832.771291] wlan0: send auth to 30:91:8f:15:8c:85 (try 1/3)
Oct 3 21:25:03 lubuntu kernel: [ 832.880126] wlan0: send auth to 30:91:8f:15:8c:85 (try 2/3)
Oct 3 21:25:04 lubuntu kernel: [ 832.988070] wlan0: send auth to 30:91:8f:15:8c:85 (try 3/3)
Oct 3 21:25:04 lubuntu kernel: [ 833.096055] wlan0: authentication with 30:91:8f:15:8c:85 timed out
Oct 3 21:25:05 lubuntu kernel: [ 834.349555] wlan0: authenticate with 30:91:8f:15:8c:85
Oct 3 21:25:05 lubuntu kernel: [ 834.549160] wlan0: send auth to 30:91:8f:15:8c:85 (try 1/3)
Oct 3 21:25:05 lubuntu kernel: [ 834.656032] wlan0: send auth to 30:91:8f:15:8c:85 (try 2/3)
Oct 3 21:25:05 lubuntu kernel: [ 834.764062] wlan0: send auth to 30:91:8f:15:8c:85 (try 3/3)
Oct 3 21:25:05 lubuntu kernel: [ 834.868177] wlan0: authentication with 30:91:8f:15:8c:85 timed out
Oct 3 21:25:19 lubuntu kernel: [ 848.704832] wlan0: authenticate with 30:91:8f:15:8c:85
Oct 3 21:25:20 lubuntu kernel: [ 849.003407] wlan0: send auth to 30:91:8f:15:8c:85 (try 1/3)
Oct 3 21:25:20 lubuntu kernel: [ 849.008647] wlan0: authenticated
Oct 3 21:25:20 lubuntu kernel: [ 849.011046] ath9k_htc 1-5:1.0 wlan0: disabling HT/VHT due to WEP/TKIP use
Oct 3 21:25:20 lubuntu kernel: [ 849.012253] wlan0: associate with 30:91:8f:15:8c:85 (try 1/3)
Oct 3 21:25:20 lubuntu kernel: [ 849.014783] wlan0: RX AssocResp from 30:91:8f:15:8c:85 (capab=0x411 status=0 aid=6)
Oct 3 21:25:20 lubuntu kernel: [ 849.023869] wlan0: associated
Oct 3 21:43:24 lubuntu kernel: [ 1933.480991] Adding 980988k swap on /dev/sda5. Priority:-1 extents:1 across:980988k FS
Oct 3 21:43:29 lubuntu kernel: [ 1938.846749] EXT4-fs (sda1): mounted filesystem with ordered data mode. Opts: errors=remount-ro
Oct 3 21:43:57 lubuntu kernel: [ 1966.257492] SQUASHFS error: zlib decompression failed, data probably corrupt
Oct 3 21:43:57 lubuntu kernel: [ 1966.257513] SQUASHFS error: squashfs_read_data failed to read block 0x7659a11
Oct 3 21:43:57 lubuntu kernel: [ 1966.257522] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257529] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257555] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257560] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257575] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257580] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257595] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257599] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257611] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257616] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257628] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257633] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257644] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257650] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257661] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257666] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
Oct 3 21:43:57 lubuntu kernel: [ 1966.257681] SQUASHFS error: Unable to read fragment cache entry [7659a11]
Oct 3 21:43:57 lubuntu kernel: [ 1966.257685] SQUASHFS error: Unable to read page, block 7659a11, size bcd3
|