ubuntuusers.de

WLAN-Diagnostik

Autor:
kith
Datum:
16. April 2015 13:58
Code:
   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
x@y:~$ lsusb
Bus 001 Device 005: ID 7392:7811 Edimax Technology Co., Ltd EW-7811Un 802.11n Wireless Adapter [Realtek RTL8188CUS]
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 002: ID 046d:c03e Logitech, Inc. Premium Optical Wheel Mouse (M-BT58)
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub


x@y:~$ iwconfig
wlan0     IEEE 802.11bgn  ESSID:"FRITZ!Box Fon WLAN 7270"  
          Mode:Managed  Frequency:2.457 GHz  Access Point: 24:65:11:78:34:10   
          Bit Rate=150 Mb/s   Tx-Power=20 dBm   
          Retry  long limit:7   RTS thr=2347 B   Fragment thr:off
          Power Management:off
          Link Quality=36/70  Signal level=-74 dBm  
          Rx invalid nwid:0  Rx invalid crypt:0  Rx invalid frag:0
          Tx excessive retries:0  Invalid misc:51   Missed beacon:0

lo        no wireless extensions.

eth0      no wireless extensions.


x@y:~$ ifconfig
eth0      Link encap:Ethernet  Hardware Adresse 00:40:d0:8e:09:2e  
          UP BROADCAST MULTICAST  MTU:1500  Metrik:1
          RX-Pakete:0 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:4 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:0 (0.0 B)  TX-Bytes:0 (0.0 B)

lo        Link encap:Lokale Schleife  
          inet Adresse:127.0.0.1  Maske:255.0.0.0
          inet6-Adresse: ::1/128 Gültigkeitsbereich:Maschine
          UP LOOPBACK RUNNING  MTU:65536  Metrik:1
          RX-Pakete:11432 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:11432 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:0 
          RX-Bytes:1071913 (1.0 MB)  TX-Bytes:1071913 (1.0 MB)

wlan0     Link encap:Ethernet  Hardware Adresse 80:1f:02:e6:8d:6a  
          inet Adresse:192.168.178.104  Bcast:192.168.178.255  Maske:255.255.255.0
          inet6-Adresse: fe80::821f:2ff:fee6:8d6a/64 Gültigkeitsbereich:Verbindung
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metrik:1
          RX-Pakete:734 Fehler:0 Verloren:0 Überläufe:0 Fenster:0
          TX-Pakete:911 Fehler:0 Verloren:0 Überläufe:0 Träger:0
          Kollisionen:0 Sendewarteschlangenlänge:1000 
          RX-Bytes:320388 (320.3 KB)  TX-Bytes:129415 (129.4 KB)


x@y:~$ sudo iwlist chan
wlan0     11 channels in total; available frequencies :
          Channel 01 : 2.412 GHz
          Channel 02 : 2.417 GHz
          Channel 03 : 2.422 GHz
          Channel 04 : 2.427 GHz
          Channel 05 : 2.432 GHz
          Channel 06 : 2.437 GHz
          Channel 07 : 2.442 GHz
          Channel 08 : 2.447 GHz
          Channel 09 : 2.452 GHz
          Channel 10 : 2.457 GHz
          Channel 11 : 2.462 GHz
          Current Frequency=2.457 GHz (Channel 10)

lo        no frequency information.

eth0      no frequency information.


x@y:~$ sudo iwlist scan
wlan0     Scan completed :
          Cell 01 - Address: 24:65:11:78:34:10
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Quality=32/70  Signal level=-78 dBm  
                    Encryption key:on
                    ESSID:"FRITZ!Box Fon WLAN 7270"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 6 Mb/s
                              9 Mb/s; 12 Mb/s; 18 Mb/s
                    Bit Rates:24 Mb/s; 36 Mb/s; 48 Mb/s; 54 Mb/s
                    Mode:Master
                    Extra:tsf=000000050ba750b2
                    Extra: Last beacon: 56ms ago
                    IE: Unknown: 0017465249545A21426F7820466F6E20574C414E2037323730
                    IE: Unknown: 010882848B960C121824
                    IE: Unknown: 03010A
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : CCMP
                        Authentication Suites (1) : PSK
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (1) : TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: 2A0100
                    IE: Unknown: 32043048606C
                    IE: Unknown: DD180050F20201018E0003A4000027A4000042435E0062322F00
                    IE: Unknown: 2D1ACE131BFF00000000000000000000000000000000000000000000
                    IE: Unknown: 3D160A0F0800000000000000000000000000000000000000
                    IE: Unknown: DD0900037F01010000FF7F
                    IE: Unknown: DD0A00037F04010020000000
                    IE: Unknown: DD0C00040E010102010000000000
                    IE: Unknown: DD6A0050F204104A0001101044000102103B00010010470010FC051C181D7B33503E297811652410341021000341564D10230009465249545A21426F78102400043030303010420004303030301054000800060050F20400011011000446426F78100800020188103C000103
          Cell 02 - Address: 02:23:08:B9:D7:D6
                    Channel:1
                    Frequency:2.412 GHz (Channel 1)
                    Quality=40/70  Signal level=-70 dBm  
                    Encryption key:on
                    ESSID:"EasyBox-C12102"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=00000589c2c16f95
                    Extra: Last beacon: 56ms ago
                    IE: Unknown: 000E45617379426F782D433132313032
                    IE: Unknown: 010882848B961224486C
                    IE: Unknown: 030101
                    IE: Unknown: 2A0104
                    IE: Unknown: 32040C183060
                    IE: Unknown: 2D1A6C0017FFFF000000000000000000000000000000000000000000
                    IE: Unknown: 3D1601000000000000000000000000000000000000000000
                    IE: Unknown: 3E0100
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : TKIP CCMP
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : TKIP CCMP
                        Authentication Suites (1) : PSK
                       Preauthentication Supported
                    IE: Unknown: DD180050F2020101000003A4000027A4000042435E0062322F00
                    IE: Unknown: 0B050000037A12
                    IE: Unknown: 7F0101
                    IE: Unknown: DD8E0050F204104A00011010440001021041000100103B0001031047001000000000000000030000022308B9D7D61021000B436F72706F726174696F6E102300094152563735323950571024000932302E30322E3033351042000B52393333313038353032301054000800060050F204000110110014576972656C65737320526F757465722857464129100800020004
                    IE: Unknown: 0706444520010D10
                    IE: Unknown: DD1E00904C336C0017FFFF000000000000000000000000000000000000000000
                    IE: Unknown: DD1A00904C3401000000000000000000000000000000000000000000
          Cell 03 - Address: F0:7D:68:97:E1:FE
                    Channel:10
                    Frequency:2.457 GHz (Channel 10)
                    Quality=28/70  Signal level=-82 dBm  
                    Encryption key:on
                    ESSID:"FingerWEG"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000000039907a1dd
                    Extra: Last beacon: 56ms ago
                    IE: Unknown: 000946696E676572574547
                    IE: Unknown: 010882848B961224486C
                    IE: Unknown: 03010A
                    IE: Unknown: 2A0100
                    IE: Unknown: 32040C183060
                    IE: Unknown: 2D1AEE1117FF000000010000000000000000000000000C0000000000
                    IE: Unknown: 3D160A070600000000000000000000000000000000000000
                    IE: Unknown: 3E0100
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: 7F0101
                    IE: Unknown: DD07000C4307000000
                    IE: Unknown: 0706474220010D10
                    IE: Unknown: DD1E00904C33EE1117FF000000010000000000000000000000000C0000000000
                    IE: Unknown: DD1A00904C340A070600000000000000000000000000000000000000
                    IE: Unknown: DD050050F20500
                    IE: Unknown: DD750050F204104A00011010440001021041000100103B000103104700107BD0EB35DE2DCBEBA47DF07D6897E1FE10210006442D4C696E6B102300074449522D363030102400074449522D3630301042000830303030303030301054000800060050F2040001101100074449522D363030100800020086
          Cell 04 - Address: 5C:D9:98:1E:8E:3E
                    Channel:6
                    Frequency:2.437 GHz (Channel 6)
                    Quality=36/70  Signal level=-74 dBm  
                    Encryption key:on
                    ESSID:"Andi_WLAN"
                    Bit Rates:1 Mb/s; 2 Mb/s; 5.5 Mb/s; 11 Mb/s; 9 Mb/s
                              18 Mb/s; 36 Mb/s; 54 Mb/s
                    Bit Rates:6 Mb/s; 12 Mb/s; 24 Mb/s; 48 Mb/s
                    Mode:Master
                    Extra:tsf=000001046e596139
                    Extra: Last beacon: 540ms ago
                    IE: Unknown: 0009416E64695F574C414E
                    IE: Unknown: 010882848B961224486C
                    IE: Unknown: 030106
                    IE: Unknown: 32040C183060
                    IE: Unknown: 0706474220010D10
                    IE: Unknown: 33082001020304050607
                    IE: Unknown: 33082105060708090A0B
                    IE: Unknown: DD050050F20500
                    IE: Unknown: DD0E0050F204104A0001101044000102
                    IE: Unknown: 050400010004
                    IE: Unknown: 2A0100
                    IE: Unknown: 2D1AEE1117FFFF0000010000000000000000000000000C0000000000
                    IE: Unknown: 3D1606070500000000000000000000000000000000000000
                    IE: Unknown: 7F0101
                    IE: WPA Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: IEEE 802.11i/WPA2 Version 1
                        Group Cipher : TKIP
                        Pairwise Ciphers (2) : CCMP TKIP
                        Authentication Suites (1) : PSK
                    IE: Unknown: DD180050F2020101800003A4000027A4000042435E0062322F00
                    IE: Unknown: 0B0501007C127A
                    IE: Unknown: DD1E00904C33EE1117FFFF0000010000000000000000000000000C0000000000
                    IE: Unknown: DD1A00904C3406070500000000000000000000000000000000000000
                    IE: Unknown: DD07000C4307000000

lo        Interface doesn't support scanning.

eth0      Interface doesn't support scanning.


x@y:~$ dmesg
[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-49-generic (buildd@kissel) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #83-Ubuntu SMP Fri Apr 10 20:14:51 UTC 2015 (Ubuntu 3.13.0-49.83-generic 3.13.11-ckt17)
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   NSC Geode by NSC
[    0.000000]   Cyrix CyrixInstead
[    0.000000]   Centaur CentaurHauls
[    0.000000]   Transmeta GenuineTMx86
[    0.000000]   Transmeta TransmetaCPU
[    0.000000]   UMC UMC UMC UMC
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000037fefffb] usable
[    0.000000] BIOS-e820: [mem 0x0000000037ff0000-0x0000000037ffffbf] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000037ffffc0-0x0000000037ffffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x00000000fff80000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.3 present.
[    0.000000] DMI: Notebook                                                         MAM2150                                                       
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] e820: last_pfn = 0x37fef max_arch_pfn = 0x1000000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-FFFFF uncachable
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 0000000000 mask FFE0000000 write-back
[    0.000000]   1 base 0020000000 mask FFF0000000 write-back
[    0.000000]   2 base 0030000000 mask FFF8000000 write-back
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] initial memory mapped: [mem 0x00000000-0x01ffffff]
[    0.000000] Base memory trampoline at [c009b000] 9b000 size 16384
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] init_memory_mapping: [mem 0x37800000-0x379fffff]
[    0.000000]  [mem 0x37800000-0x379fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x34000000-0x377fffff]
[    0.000000]  [mem 0x34000000-0x377fffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x33ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x33ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x37a00000-0x37bfdfff]
[    0.000000]  [mem 0x37a00000-0x37bfdfff] page 4k
[    0.000000] BRK [0x01b99000, 0x01b99fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35c20000-0x36e07fff]
[    0.000000] ACPI: RSDP 000e5010 000014 (v00 OID_00)
[    0.000000] ACPI: RSDT 37ffca70 000030 (v01 INSYDE FACP_000 00000100 0000 00010200)
[    0.000000] ACPI: FACP 37fffac0 000074 (v01 INSYDE FACP_000 00000100 0000 00010200)
[    0.000000] ACPI: DSDT 37ffcab0 003006 (v01 INSYDE ATIRS480 00001000 INTL 20040116)
[    0.000000] ACPI: FACS 37ffffc0 000040
[    0.000000] ACPI: APIC 37fffb50 000068 (v01 INSYDE APIC_000 30303030 0000 00010200)
[    0.000000] ACPI: HPET 37fffbc0 000038 (v01 INSYDE HPET_000 30303030 0000 30303030)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 3MB HIGHMEM available.
[    0.000000] 891MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 37bfe000
[    0.000000]   low ram: 0 - 37bfe000
[    0.000000] BRK [0x01b9a000, 0x01b9afff] PGTABLE
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   Normal   [mem 0x01000000-0x37bfdfff]
[    0.000000]   HighMem  [mem 0x37bfe000-0x37feefff]
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x37feefff]
[    0.000000] On node 0 totalpages: 229261
[    0.000000] free_area_init_node: node 0, pgdat c199f740, node_mem_map f74fe020
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   Normal zone: 1752 pages used for memmap
[    0.000000]   Normal zone: 224254 pages, LIFO batch:31
[    0.000000]   HighMem zone: 8 pages used for memmap
[    0.000000]   HighMem zone: 1009 pages, LIFO batch:0
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x1008
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] disabled)
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
[    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8086a201 base: 0x0 is invalid
[    0.000000] smpboot: Allowing 2 CPUs, 1 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
[    0.000000] e820: [mem 0x38000000-0xfff7ffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @f74dc000 s36160 r0 d21184 u57344
[    0.000000] pcpu-alloc: s36160 r0 d21184 u57344 alloc=14*4096
[    0.000000] pcpu-alloc: [0] 0 [0] 1 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 227477
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-49-generic root=UUID=feaaaf71-569b-4818-a704-7cbeb53f7485 ro quiet splash vt.handoff=7
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Initializing CPU#0
[    0.000000] allocated 1834864 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Initializing HighMem for node 0 (00037bfe:00037fef)
[    0.000000] Memory: 876856K/917044K available (6551K kernel code, 641K rwdata, 2768K rodata, 880K init, 924K bss, 40188K reserved, 4036K highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff14000 - 0xfffff000   ( 940 kB)
[    0.000000]     pkmap   : 0xffc00000 - 0xffe00000   (2048 kB)
[    0.000000]     vmalloc : 0xf83fe000 - 0xffbfe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf7bfe000   ( 891 MB)
[    0.000000]       .init : 0xc19bd000 - 0xc1a99000   ( 880 kB)
[    0.000000]       .data : 0xc1665f74 - 0xc19bc5c0   (3417 kB)
[    0.000000]       .text : 0xc1000000 - 0xc1665f74   (6551 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=8 to nr_cpu_ids=2.
[    0.000000] NR_IRQS:2304 nr_irqs:512 16
[    0.000000] CPU 0 irqstacks, hard=f5808000 soft=f580a000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour dummy device 80x25
[    0.000000] console [tty0] enabled
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 1989.702 MHz processor
[    0.000000] tsc: Marking TSC unstable due to TSCs unsynchronized
[    0.008005] Calibrating delay loop (skipped), value calculated using timer frequency.. 3979.40 BogoMIPS (lpj=7958808)
[    0.008010] pid_max: default: 32768 minimum: 301
[    0.008068] Security Framework initialized
[    0.008093] AppArmor: AppArmor initialized
[    0.008095] Yama: becoming mindful.
[    0.008171] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.008174] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.008481] Initializing cgroup subsys memory
[    0.008495] Initializing cgroup subsys devices
[    0.008498] Initializing cgroup subsys freezer
[    0.008501] Initializing cgroup subsys blkio
[    0.008504] Initializing cgroup subsys perf_event
[    0.008508] Initializing cgroup subsys hugetlb
[    0.008546] mce: CPU supports 5 MCE banks
[    0.008570] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.008570] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.008570] tlb_flushall_shift: 4
[    0.022189] ACPI: Core revision 20131115
[    0.024286] ACPI: All ACPI Tables successfully acquired
[    0.028008] ftrace: allocating 27857 entries in 55 pages
[    0.040139] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.041184] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.083313] smpboot: CPU0: Mobile AMD Sempron(tm) Processor 3300+ (fam: 0f, model: 2c, stepping: 02)
[    0.084000] Performance Events: AMD PMU driver.
[    0.084000] ... version:                0
[    0.084000] ... bit width:              48
[    0.084000] ... generic registers:      4
[    0.084000] ... value mask:             0000ffffffffffff
[    0.084000] ... max period:             00007fffffffffff
[    0.084000] ... fixed-purpose events:   0
[    0.084000] ... event mask:             000000000000000f
[    0.084000] x86: Booted up 1 node, 1 CPUs
[    0.084000] smpboot: Total of 1 processors activated (3979.40 BogoMIPS)
[    0.084000] devtmpfs: initialized
[    0.084000] EVM: security.selinux
[    0.084000] EVM: security.SMACK64
[    0.084000] EVM: security.ima
[    0.084000] EVM: security.capability
[    0.084000] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.084000] PM: Registering ACPI NVS region [mem 0x37ffffc0-0x37ffffff] (64 bytes)
[    0.084796] pinctrl core: initialized pinctrl subsystem
[    0.084924] regulator-dummy: no parameters
[    0.084964] RTC time:  8:19:57, date: 04/16/15
[    0.085024] NET: Registered protocol family 16
[    0.085234] EISA bus registered
[    0.085238] cpuidle: using governor ladder
[    0.085240] cpuidle: using governor menu
[    0.085246] node 0 link 0: io port [1000, ffffff]
[    0.085250] TOM: 0000000040000000 aka 1024M
[    0.085253] node 0 link 0: mmio [a0000, bffff]
[    0.085258] node 0 link 0: mmio [40000000, 9000ffff]
[    0.085260] node 0 link 0: mmio [a0000000, ffffffff]
[    0.085263] node 0 link 0: mmio [90010000, 9fffffff]
[    0.085267] bus: [bus 00-ff] on node 0 link 0
[    0.085270] bus: 00 [io  0x0000-0xffff]
[    0.085272] bus: 00 [mem 0x000a0000-0x000bffff]
[    0.085274] bus: 00 [mem 0x40000000-0x9fffffff]
[    0.085276] bus: 00 [mem 0xa0000000-0xfcffffffff]
[    0.085347] ACPI: bus type PCI registered
[    0.085351] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.085768] PCI : PCI BIOS area is rw and x. Use pci=nobios if you want it NX.
[    0.085780] PCI: PCI BIOS revision 2.10 entry at 0xea174, last bus=2
[    0.085781] PCI: Using configuration type 1 for base access
[    0.087360] bio: create slab <bio-0> at 0
[    0.087581] ACPI: Added _OSI(Module Device)
[    0.087584] ACPI: Added _OSI(Processor Device)
[    0.087586] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.087588] ACPI: Added _OSI(Processor Aggregator Device)
[    0.089986] ACPI: Interpreter enabled
[    0.090015] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
[    0.090021] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.090037] ACPI: (supports S0 S3 S4 S5)
[    0.090040] ACPI: Using IOAPIC for interrupt routing
[    0.090082] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.090175] ACPI: No dock devices found.
[    0.104156] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.104168] acpi PNP0A03:00: _OSC: OS supports [ASPM ClockPM Segments MSI]
[    0.104176] acpi PNP0A03:00: _OSC failed (AE_NOT_FOUND); disabling ASPM
[    0.104313] acpi PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.104316] acpi PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.104320] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.104323] acpi PNP0A03:00: host bridge window [mem 0x000c0000-0x000cffff] (ignored)
[    0.104326] acpi PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
[    0.104329] acpi PNP0A03:00: host bridge window [mem 0xfff80000-0xffffffff] (ignored)
[    0.104332] acpi PNP0A03:00: host bridge window [mem 0x38000000-0xfedfffff] (ignored)
[    0.104335] PCI: root bus 00: hardware-probed resources
[    0.104341] acpi PNP0A03:00: fail to add MMCONFIG information, can't access extended PCI configuration space under this bridge.
[    0.104500] PCI host bridge to bus 0000:00
[    0.104504] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.104508] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.104511] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.104513] pci_bus 0000:00: root bus resource [mem 0x40000000-0x9fffffff]
[    0.104516] pci_bus 0000:00: root bus resource [mem 0xa0000000-0xfcffffffff]
[    0.104527] pci 0000:00:00.0: [1002:5950] type 00 class 0x060000
[    0.104618] pci 0000:00:01.0: [1002:5a3f] type 01 class 0x060400
[    0.104740] pci 0000:00:14.0: [104c:ac44] type 02 class 0x060700
[    0.104765] pci 0000:00:14.0: reg 0x10: [mem 0x00000000-0x00000fff]
[    0.104804] pci 0000:00:14.0: supports D1 D2
[    0.104807] pci 0000:00:14.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.104887] pci 0000:00:14.1: [104c:8029] type 00 class 0x0c0010
[    0.104911] pci 0000:00:14.1: reg 0x10: [mem 0xd0000000-0xd00007ff]
[    0.104925] pci 0000:00:14.1: reg 0x14: [mem 0xd0004000-0xd0007fff]
[    0.105019] pci 0000:00:14.1: supports D1 D2
[    0.105022] pci 0000:00:14.1: PME# supported from D0 D1 D2 D3hot
[    0.105110] pci 0000:00:15.0: [1050:0033] type 00 class 0x020000
[    0.105133] pci 0000:00:15.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.105147] pci 0000:00:15.0: reg 0x14: [io  0xe100-0xe17f]
[    0.105161] pci 0000:00:15.0: reg 0x18: [mem 0xd0008000-0xd00081ff]
[    0.105242] pci 0000:00:15.0: supports D1
[    0.105245] pci 0000:00:15.0: PME# supported from D1 D3hot
[    0.105321] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
[    0.105393] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
[    0.105465] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
[    0.105530] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
[    0.105601] pci 0000:00:19.0: [10b9:5249] type 01 class 0x060400
[    0.105695] pci 0000:00:19.0: System wakeup disabled by ACPI
[    0.105740] pci 0000:00:1b.0: [10b9:5263] type 00 class 0x020000
[    0.105759] pci 0000:00:1b.0: reg 0x10: [io  0xe000-0xe0ff]
[    0.105771] pci 0000:00:1b.0: reg 0x14: [mem 0xd0008200-0xd00082ff]
[    0.105841] pci 0000:00:1b.0: PME# supported from D3hot D3cold
[    0.105880] pci 0000:00:1b.0: System wakeup disabled by ACPI
[    0.105922] pci 0000:00:1c.0: [10b9:5237] type 00 class 0x0c0310
[    0.105938] pci 0000:00:1c.0: reg 0x10: [mem 0xf8002000-0xf8002fff]
[    0.106056] pci 0000:00:1c.1: [10b9:5237] type 00 class 0x0c0310
[    0.106071] pci 0000:00:1c.1: reg 0x10: [mem 0xf8003000-0xf8003fff]
[    0.106201] pci 0000:00:1c.3: [10b9:5239] type 00 class 0x0c0320
[    0.106221] pci 0000:00:1c.3: reg 0x10: [mem 0x00000000-0x000000ff]
[    0.106296] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
[    0.106378] pci 0000:00:1d.0: [10b9:5455] type 00 class 0x040100
[    0.106402] pci 0000:00:1d.0: reg 0x10: [io  0xe300-0xe3ff]
[    0.106415] pci 0000:00:1d.0: reg 0x14: [mem 0xd0009000-0xd0009fff]
[    0.106509] pci 0000:00:1d.0: supports D1 D2
[    0.106511] pci 0000:00:1d.0: PME# supported from D2 D3hot D3cold
[    0.106592] pci 0000:00:1d.1: [10b9:5457] type 00 class 0x070300
[    0.106615] pci 0000:00:1d.1: reg 0x10: [mem 0xd000a000-0xd000afff]
[    0.106630] pci 0000:00:1d.1: reg 0x14: [io  0xe400-0xe4ff]
[    0.108048] pci 0000:00:1d.1: PME# supported from D3hot D3cold
[    0.108090] pci 0000:00:1d.1: System wakeup disabled by ACPI
[    0.108143] pci 0000:00:1e.0: [10b9:1573] type 00 class 0x060100
[    0.108298] pci 0000:00:1e.1: [10b9:7101] type 00 class 0x068000
[    0.108370] pci 0000:00:1e.1: address space collision: [io  0x1000-0x103f] conflicts with ACPI CPU throttle [??? 0x00001010-0x00001015 flags 0x80000000]
[    0.108457] pci 0000:00:1f.0: [10b9:5229] type 00 class 0x01018a
[    0.108510] pci 0000:00:1f.0: reg 0x20: [io  0x1100-0x110f]
[    0.108655] pci 0000:01:05.0: [1002:5955] type 00 class 0x030000
[    0.108665] pci 0000:01:05.0: reg 0x10: [mem 0x90000000-0x9fffffff pref]
[    0.108672] pci 0000:01:05.0: reg 0x14: [io  0xc000-0xc0ff]
[    0.108678] pci 0000:01:05.0: reg 0x18: [mem 0xc0000000-0xc000ffff]
[    0.108695] pci 0000:01:05.0: reg 0x30: [mem 0x00000000-0x0001ffff pref]
[    0.108707] pci 0000:01:05.0: supports D1 D2
[    0.108746] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.108751] pci 0000:00:01.0:   bridge window [io  0xc000-0xdfff]
[    0.108755] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff]
[    0.108759] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.108765] pci 0000:00:14.0: bridge configuration invalid ([bus 00-00]), reconfiguring
[    0.108888] pci 0000:00:19.0: PCI bridge to [bus 02]
[    0.108893] pci 0000:00:19.0:   bridge window [io  0xa000-0xbfff]
[    0.108898] pci 0000:00:19.0:   bridge window [mem 0xb8000000-0xbfffffff]
[    0.108903] pci 0000:00:19.0:   bridge window [mem 0x88000000-0x8fffffff pref]
[    0.108956] pci_bus 0000:03: busn_res: [bus 03-ff] end is updated to 06
[    0.108967] pci_bus 0000:00: on NUMA node 0
[    0.109266] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 7 10 *11 14 15)
[    0.109369] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 *5 7 10 11 14 15)
[    0.109470] ACPI: PCI Interrupt Link [LNKC] (IRQs *3 4 5 7 10 11 14 15)
[    0.109569] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 7 *10 11 14 15)
[    0.109669] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 *7 10 11 14 15)
[    0.109766] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 7 10 11 14 15) *0, disabled.
[    0.109867] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 7 10 *11 14 15)
[    0.109968] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 7 10 *11 14 15)
[    0.110068] ACPI: PCI Interrupt Link [LNKU] (IRQs 3 4 5 *7 10 11 14 15)
[    0.110159] ACPI: \_SB_.PCI0: notify handler is installed
[    0.110181] Found 1 acpi root devices
[    0.110239] ACPI : EC: GPE = 0x3, I/O: command/status = 0x66, data = 0x62
[    0.110427] vgaarb: setting as boot device: PCI:0000:01:05.0
[    0.110431] vgaarb: device added: PCI:0000:01:05.0,decodes=io+mem,owns=io+mem,locks=none
[    0.110433] vgaarb: loaded
[    0.110435] vgaarb: bridge control possible 0000:01:05.0
[    0.110759] SCSI subsystem initialized
[    0.110848] libata version 3.00 loaded.
[    0.110889] ACPI: bus type USB registered
[    0.110920] usbcore: registered new interface driver usbfs
[    0.110933] usbcore: registered new interface driver hub
[    0.110965] usbcore: registered new device driver usb
[    0.111129] PCI: Using ACPI for IRQ routing
[    0.111136] PCI: pci_cache_line_size set to 64 bytes
[    0.111165] pci 0000:00:1b.0: address space collision: [io  0xe000-0xe0ff] conflicts with 0000:00:15.0 [io  0xe000-0xe0ff]
[    0.111208] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.111211] e820: reserve RAM buffer [mem 0x37fefffc-0x37ffffff]
[    0.111364] NetLabel: Initializing
[    0.111366] NetLabel:  domain hash size = 128
[    0.111368] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.111384] NetLabel:  unlabeled traffic allowed by default
[    0.111554] Switched to clocksource refined-jiffies
[    0.119628] AppArmor: AppArmor Filesystem Enabled
[    0.119681] pnp: PnP ACPI init
[    0.119704] ACPI: bus type PNP registered
[    0.120216] pnp 00:00: Plug and Play ACPI device, IDs SYN0c06 SYN0c00 PNP0f13 (active)
[    0.120276] pnp 00:01: Plug and Play ACPI device, IDs PNP0303 (active)
[    0.120311] pnp 00:02: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.120345] pnp 00:03: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.120497] system 00:04: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.120502] system 00:04: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.120505] system 00:04: [mem 0x00100000-0x37ffffff] could not be reserved
[    0.120509] system 00:04: [mem 0xfffc0000-0xffffffff] has been reserved
[    0.120513] system 00:04: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.120516] system 00:04: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.120521] system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.120538] pnp 00:05: [dma 4]
[    0.120561] pnp 00:05: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.120588] pnp 00:06: disabling [io  0x0092] because it overlaps 0000:00:1b.0 BAR 0 [io  0x0000-0x00ff]
[    0.120592] pnp 00:06: disabling [io  0x0080] because it overlaps 0000:00:1b.0 BAR 0 [io  0x0000-0x00ff]
[    0.120596] pnp 00:06: disabling [io  0x00b0-0x00b3] because it overlaps 0000:00:1b.0 BAR 0 [io  0x0000-0x00ff]
[    0.120633] system 00:06: [io  0x0330-0x0331] has been reserved
[    0.120636] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.120641] system 00:06: [io  0x1000-0x107f] could not be reserved
[    0.120644] system 00:06: [io  0x1400-0x140f] has been reserved
[    0.120648] system 00:06: [io  0x0480-0x048f] has been reserved
[    0.120651] system 00:06: [mem 0x0e000000-0x8fffffff] could not be reserved
[    0.120655] system 00:06: [mem 0xa4000000-0xbfffffff] could not be reserved
[    0.120658] system 00:06: [mem 0xd0011000-0xf8001fff] has been reserved
[    0.120662] system 00:06: [mem 0xfec01000-0xfedfdeff] has been reserved
[    0.120665] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.120706] pnp 00:07: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.120872] pnp: PnP ACPI: found 8 devices
[    0.120874] ACPI: bus type PNP unregistered
[    0.120879] PnPBIOS: Disabled by ACPI PNP
[    0.159748] Switched to clocksource acpi_pm
[    0.159793] pci 0000:00:1e.1: BAR 13: [io  0x1000-0x103f] has bogus alignment
[    0.159799] pci 0000:00:14.0: res[15]=[mem 0x04000000-0x03ffffff pref] get_res_add_size add_size 4000000
[    0.159803] pci 0000:00:14.0: res[16]=[mem 0x04000000-0x03ffffff] get_res_add_size add_size 4000000
[    0.159806] pci 0000:00:14.0: res[13]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.159809] pci 0000:00:14.0: res[14]=[io  0x0100-0x00ff] get_res_add_size add_size 100
[    0.159817] pci 0000:00:14.0: BAR 0: assigned [mem 0x40000000-0x40000fff]
[    0.159827] pci 0000:00:14.0: BAR 15: assigned [mem 0x44000000-0x47ffffff pref]
[    0.159830] pci 0000:00:14.0: BAR 16: assigned [mem 0x48000000-0x4bffffff]
[    0.159835] pci 0000:00:14.0: BAR 13: assigned [io  0x1800-0x18ff]
[    0.159840] pci 0000:00:14.0: BAR 14: assigned [io  0x1c00-0x1cff]
[    0.159846] pci 0000:00:1b.0: BAR 0: assigned [io  0x2000-0x20ff]
[    0.159852] pci 0000:00:1c.3: BAR 0: assigned [mem 0x40001000-0x400010ff]
[    0.159859] pci 0000:01:05.0: BAR 6: assigned [mem 0xc0020000-0xc003ffff pref]
[    0.159863] pci 0000:00:01.0: PCI bridge to [bus 01]
[    0.159867] pci 0000:00:01.0:   bridge window [io  0xc000-0xdfff]
[    0.159871] pci 0000:00:01.0:   bridge window [mem 0xc0000000-0xcfffffff]
[    0.159875] pci 0000:00:01.0:   bridge window [mem 0x90000000-0x9fffffff 64bit pref]
[    0.159879] pci 0000:00:14.0: CardBus bridge to [bus 03-06]
[    0.159882] pci 0000:00:14.0:   bridge window [io  0x1800-0x18ff]
[    0.159888] pci 0000:00:14.0:   bridge window [io  0x1c00-0x1cff]
[    0.159894] pci 0000:00:14.0:   bridge window [mem 0x44000000-0x47ffffff pref]
[    0.159900] pci 0000:00:14.0:   bridge window [mem 0x48000000-0x4bffffff]
[    0.159907] pci 0000:00:19.0: PCI bridge to [bus 02]
[    0.159911] pci 0000:00:19.0:   bridge window [io  0xa000-0xbfff]
[    0.159917] pci 0000:00:19.0:   bridge window [mem 0xb8000000-0xbfffffff]
[    0.159922] pci 0000:00:19.0:   bridge window [mem 0x88000000-0x8fffffff pref]
[    0.159931] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.159934] pci_bus 0000:00: resource 5 [mem 0x000a0000-0x000bffff]
[    0.159937] pci_bus 0000:00: resource 6 [mem 0x40000000-0x9fffffff]
[    0.159940] pci_bus 0000:00: resource 7 [mem 0xa0000000-0xfcffffffff]
[    0.159943] pci_bus 0000:01: resource 0 [io  0xc000-0xdfff]
[    0.159946] pci_bus 0000:01: resource 1 [mem 0xc0000000-0xcfffffff]
[    0.159949] pci_bus 0000:01: resource 2 [mem 0x90000000-0x9fffffff 64bit pref]
[    0.159952] pci_bus 0000:03: resource 0 [io  0x1800-0x18ff]
[    0.159955] pci_bus 0000:03: resource 1 [io  0x1c00-0x1cff]
[    0.159958] pci_bus 0000:03: resource 2 [mem 0x44000000-0x47ffffff pref]
[    0.159961] pci_bus 0000:03: resource 3 [mem 0x48000000-0x4bffffff]
[    0.159964] pci_bus 0000:02: resource 0 [io  0xa000-0xbfff]
[    0.159967] pci_bus 0000:02: resource 1 [mem 0xb8000000-0xbfffffff]
[    0.159970] pci_bus 0000:02: resource 2 [mem 0x88000000-0x8fffffff pref]
[    0.159970] NET: Registered protocol family 2
[    0.159970] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.159970] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.159970] TCP: Hash tables configured (established 8192 bind 8192)
[    0.159970] TCP: reno registered
[    0.159970] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.159970] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.159970] NET: Registered protocol family 1
[    0.159970] pci 0000:00:00.0: MSI quirk detected; MSI disabled
[    0.159970] pci 0000:00:01.0: MSI quirk detected; subordinate MSI disabled
[    0.316090] pci 0000:00:1c.3: enabling device (0000 -> 0002)
[    0.316229] PCI: CLS mismatch (16 != 32), using 64 bytes
[    0.316234] pci 0000:01:05.0: Video device with shadowed ROM
[    0.316316] Trying to unpack rootfs image as initramfs...
[    0.808367] Freeing initrd memory: 18336K (f5c20000 - f6e08000)
[    0.808586] microcode: AMD CPU family 0xf not supported
[    0.808589] Scanning for low memory corruption every 60 seconds
[    0.808949] Initialise system trusted keyring
[    0.809014] audit: initializing netlink socket (disabled)
[    0.809032] type=2000 audit(1429172397.807:1): initialized
[    0.837843] bounce pool size: 64 pages
[    0.837857] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.839836] zbud: loaded
[    0.839970] VFS: Disk quotas dquot_6.5.2
[    0.840077] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.840710] fuse init (API version 7.22)
[    0.840821] msgmni has been set to 1740
[    0.840906] Key type big_key registered
[    0.841253] Key type asymmetric registered
[    0.841257] Asymmetric key parser 'x509' registered
[    0.841325] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.841374] io scheduler noop registered
[    0.841376] io scheduler deadline registered (default)
[    0.841417] io scheduler cfq registered
[    0.841581] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.841604] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.841668] vesafb: mode is 1024x768x32, linelength=4096, pages=0
[    0.841670] vesafb: scrolling: redraw
[    0.841673] vesafb: Truecolor: size=0:8:8:8, shift=0:16:8:0
[    0.841855] vesafb: framebuffer at 0x90000000, mapped to 0xf8480000, using 3072k, total 3072k
[    0.946661] Console: switching to colour frame buffer device 128x48
[    1.051340] fb0: VESA VGA frame buffer device
[    1.051449] ipmi message handler version 39.2
[    1.176039] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    1.300047] ACPI: AC Adapter [AC] (on-line)
[    1.300139] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input0
[    1.300145] ACPI: Sleep Button [SBTN]
[    1.300196] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input1
[    1.302803] ACPI: Lid Switch [LID]
[    1.302865] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
[    1.302869] ACPI: Power Button [PWRF]
[    1.302924] ACPI: acpi_idle registered with cpuidle
[    1.303017] GHES: HEST is not enabled!
[    1.303299] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    1.305271] Linux agpgart interface v0.103
[    1.307257] brd: module loaded
[    1.308369] isapnp: Scanning for PnP cards...
[    1.357646] loop: module loaded
[    1.358306] libphy: Fixed MDIO Bus: probed
[    1.358458] tun: Universal TUN/TAP device driver, 1.6
[    1.358460] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    1.358568] PPP generic driver version 2.4.2
[    1.358630] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    1.358636] ehci-pci: EHCI PCI platform driver
[    1.358808] ehci-pci 0000:00:1c.3: EHCI Host Controller
[    1.358816] ehci-pci 0000:00:1c.3: new USB bus registered, assigned bus number 1
[    1.358835] ehci-pci 0000:00:1c.3: debug port 1
[    1.358919] ehci-pci 0000:00:1c.3: irq 23, io mem 0x40001000
[    1.402737] ehci-pci 0000:00:1c.3: USB 2.0 started, EHCI 1.00
[    1.402807] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    1.402810] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.402813] usb usb1: Product: EHCI Host Controller
[    1.402816] usb usb1: Manufacturer: Linux 3.13.0-49-generic ehci_hcd
[    1.402818] usb usb1: SerialNumber: 0000:00:1c.3
[    1.402980] hub 1-0:1.0: USB hub found
[    1.402990] hub 1-0:1.0: 8 ports detected
[    1.403229] ehci-platform: EHCI generic platform driver
[    1.403249] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    1.403251] ohci-pci: OHCI PCI platform driver
[    1.403392] ohci-pci 0000:00:1c.0: OHCI PCI host controller
[    1.403401] ohci-pci 0000:00:1c.0: new USB bus registered, assigned bus number 2
[    1.403456] ohci-pci 0000:00:1c.0: irq 17, io mem 0xf8002000
[    1.536632] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    1.536637] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.536640] usb usb2: Product: OHCI PCI host controller
[    1.536643] usb usb2: Manufacturer: Linux 3.13.0-49-generic ohci_hcd
[    1.536645] usb usb2: SerialNumber: 0000:00:1c.0
[    1.536824] hub 2-0:1.0: USB hub found
[    1.536837] hub 2-0:1.0: 3 ports detected
[    1.537084] ohci-pci 0000:00:1c.1: OHCI PCI host controller
[    1.537093] ohci-pci 0000:00:1c.1: new USB bus registered, assigned bus number 3
[    1.537140] ohci-pci 0000:00:1c.1: irq 18, io mem 0xf8003000
[    1.624302] isapnp: No Plug & Play device found
[    1.626521] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001
[    1.626525] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    1.626528] usb usb3: Product: OHCI PCI host controller
[    1.626531] usb usb3: Manufacturer: Linux 3.13.0-49-generic ohci_hcd
[    1.626533] usb usb3: SerialNumber: 0000:00:1c.1
[    1.626701] hub 3-0:1.0: USB hub found
[    1.626714] hub 3-0:1.0: 3 ports detected
[    1.626847] ohci-platform: OHCI generic platform driver
[    1.626865] uhci_hcd: USB Universal Host Controller Interface driver
[    1.626964] i8042: PNP: PS/2 Controller [PNP0303:KBC,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
[    1.637722] i8042: Detected active multiplexing controller, rev 1.1
[    1.644527] serio: i8042 KBD port at 0x60,0x64 irq 1
[    1.644536] serio: i8042 AUX0 port at 0x60,0x64 irq 12
[    1.644583] serio: i8042 AUX1 port at 0x60,0x64 irq 12
[    1.644605] serio: i8042 AUX2 port at 0x60,0x64 irq 12
[    1.644630] serio: i8042 AUX3 port at 0x60,0x64 irq 12
[    1.644778] mousedev: PS/2 mouse device common for all mice
[    1.644975] rtc_cmos 00:02: RTC can wake from S4
[    1.645126] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    1.645170] rtc_cmos 00:02: alarms up to one month, y3k, 242 bytes nvram
[    1.645282] device-mapper: uevent: version 1.0.3
[    1.645375] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    1.645412] platform eisa.0: Probing EISA bus 0
[    1.645417] platform eisa.0: EISA: Cannot allocate resource for mainboard
[    1.645421] platform eisa.0: Cannot allocate resource for EISA slot 1
[    1.645424] platform eisa.0: Cannot allocate resource for EISA slot 2
[    1.645427] platform eisa.0: Cannot allocate resource for EISA slot 3
[    1.645430] platform eisa.0: Cannot allocate resource for EISA slot 4
[    1.645434] platform eisa.0: Cannot allocate resource for EISA slot 5
[    1.645437] platform eisa.0: Cannot allocate resource for EISA slot 6
[    1.645440] platform eisa.0: Cannot allocate resource for EISA slot 7
[    1.645443] platform eisa.0: Cannot allocate resource for EISA slot 8
[    1.645445] platform eisa.0: EISA: Detected 0 cards
[    1.645456] cpufreq-nforce2: No nForce2 chipset.
[    1.645462] ledtrig-cpu: registered to indicate activity on CPUs
[    1.645660] TCP: cubic registered
[    1.645782] NET: Registered protocol family 10
[    1.646040] NET: Registered protocol family 17
[    1.646058] Key type dns_resolver registered
[    1.646298] Using IPI No-Shortcut mode
[    1.646394] Loading compiled-in X.509 certificates
[    1.650767] Loaded X.509 cert 'Magrathea: Glacier signing key: 84c09e2e78ff91ba4296f5f5425fbdbb4ab05abe'
[    1.650797] registered taskstats version 1
[    1.654127] Key type trusted registered
[    1.660422] Key type encrypted registered
[    1.660430] AppArmor: AppArmor sha1 policy hashing enabled
[    1.660434] IMA: No TPM chip found, activating TPM-bypass!
[    1.660663] regulator-dummy: disabling
[    1.660748]   Magic number: 11:307:321
[    1.660799] tty tty46: hash matches
[    1.660936] rtc_cmos 00:02: setting system clock to 2015-04-16 08:19:59 UTC (1429172399)
[    1.661167] powernow-k8: fid 0xc (2000 MHz), vid 0xa
[    1.661171] powernow-k8: fid 0xa (1800 MHz), vid 0xc
[    1.661173] powernow-k8: fid 0x8 (1600 MHz), vid 0xe
[    1.661175] powernow-k8: fid 0x0 (800 MHz), vid 0x13
[    1.661211] powernow-k8: Found 1 Mobile AMD Sempron(tm) Processor 3300+ (1 cpu cores) (version 2.20.00)
[    1.661216] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    1.661218] EDD information not available.
[    1.661248] PM: Hibernation image not present or could not be loaded.
[    1.662296] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
[    1.706009] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
[    1.706022] ACPI: Battery Slot [BAT0] (battery present)
[    1.707012] Freeing unused kernel memory: 880K (c19bd000 - c1a99000)
[    1.707060] Write protecting the kernel text: 6552k
[    1.707135] Write protecting the kernel read-only data: 2776k
[    1.707137] NX-protecting the kernel data: 5736k
[    1.732304] systemd-udevd[92]: starting version 204
[    1.892063] usb 1-2: new high-speed USB device number 3 using ehci-pci
[    2.027736] usb 1-2: New USB device found, idVendor=7392, idProduct=7811
[    2.027743] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[    2.027746] usb 1-2: Product: 802.11n WLAN Adapter
[    2.027749] usb 1-2: Manufacturer: Realtek
[    2.027751] usb 1-2: SerialNumber: 00e04c000001
[    2.040632] uli526x: ULi M5261/M5263 net driver, version 0.9.3 (2005-7-29)
[    2.205854] uli526x 0000:00:1b.0 eth0: ULi M5263 at pci0000:00:1b.0, 00:40:d0:8e:09:2e, irq 20
[    2.211135] scsi0 : pata_ali
[    2.213759] scsi1 : pata_ali
[    2.213847] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0x1100 irq 14
[    2.213850] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0x1108 irq 15
[    2.268115] firewire_ohci 0000:00:14.1: added OHCI v1.10 device as card 0, 4 IR + 8 IT contexts, quirks 0x2
[    2.340050] usb 2-1: new low-speed USB device number 2 using ohci-pci
[    2.376500] ata1.00: ATA-7: SAMSUNG MP0804H, UE100-14, max UDMA/100
[    2.376504] ata1.00: 156368016 sectors, multi 16: LBA48 
[    2.384393] ata1.00: configured for UDMA/100
[    2.384555] scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MP0804H  UE10 PQ: 0 ANSI: 5
[    2.384877] sd 0:0:0:0: [sda] 156368016 512-byte logical blocks: (80.0 GB/74.5 GiB)
[    2.384948] sd 0:0:0:0: [sda] Write Protect is off
[    2.384952] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.384983] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.385236] sd 0:0:0:0: Attached scsi generic sg0 type 0
[    2.427322]  sda: sda1 sda2 < sda5 sda6 >
[    2.427790] sd 0:0:0:0: [sda] Attached SCSI disk
[    2.548360] ata2.00: ATAPI: HL-DT-ST DVDRAM GMA-4082N, HA01, max UDMA/33
[    2.548368] ata2.00: WARNING: ATAPI DMA disabled for reliability issues.  It can be enabled
[    2.548371] ata2.00: WARNING: via pata_ali.atapi_dma modparam or corresponding sysfs node.
[    2.564258] ata2.00: configured for UDMA/33
[    2.570229] scsi 1:0:0:0: CD-ROM            HL-DT-ST DVDRAM GMA-4082N HA01 PQ: 0 ANSI: 5
[    2.575462] sr0: scsi3-mmc drive: 24x/24x writer dvd-ram cd/rw xa/form2 cdda tray
[    2.575468] cdrom: Uniform CD-ROM driver Revision: 3.20
[    2.575624] sr 1:0:0:0: Attached scsi CD-ROM sr0
[    2.575701] sr 1:0:0:0: Attached scsi generic sg1 type 5
[    2.583091] usb 2-1: New USB device found, idVendor=046d, idProduct=c03e
[    2.583098] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    2.583101] usb 2-1: Product: USB-PS/2 Optical Mouse
[    2.583103] usb 2-1: Manufacturer: Logitech
[    2.605884] hidraw: raw HID events driver (C) Jiri Kosina
[    2.629788] usbcore: registered new interface driver usbhid
[    2.629793] usbhid: USB HID core driver
[    2.637548] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:1c.0/usb2/2-1/2-1:1.0/input/input11
[    2.639523] hid-generic 0003:046D:C03E.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:1c.0-1/input0
[    2.768212] firewire_core 0000:00:14.1: created device fw0: GUID 0040d001003a0575, S400
[    3.023795] psmouse serio3: synaptics: Touchpad model: 1, fw: 6.2, id: 0xa5a0b1, caps: 0xa04713/0x0/0x0, board id: 3655, fw id: 53020
[    3.074566] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio3/input/input10
[    3.484991] EXT4-fs (sda6): mounted filesystem with ordered data mode. Opts: (null)
[    4.043553] random: nonblocking pool is initialized
[   14.758935] Adding 1805308k swap on /dev/sda1.  Priority:-1 extents:1 across:1805308k FS
[   15.001215] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   15.358036] systemd-udevd[258]: starting version 204
[   16.721690] lp: driver loaded but no devices found
[   16.825836] yenta_cardbus 0000:00:14.0: CardBus bridge found [1071:8351]
[   16.825863] yenta_cardbus 0000:00:14.0: Enabling burst memory read transactions
[   16.825869] yenta_cardbus 0000:00:14.0: Using CSCINT to route CSC interrupts to PCI
[   16.825872] yenta_cardbus 0000:00:14.0: Routing CardBus interrupts to PCI
[   16.825878] yenta_cardbus 0000:00:14.0: TI: mfunc 0x01001022, devctl 0x66
[   16.911443] ppdev: user-space parallel port driver
[   17.050140] type=1400 audit(1429172414.885:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=304 comm="apparmor_parser"
[   17.050155] type=1400 audit(1429172414.885:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=304 comm="apparmor_parser"
[   17.050161] type=1400 audit(1429172414.885:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=304 comm="apparmor_parser"
[   17.050877] type=1400 audit(1429172414.885:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=304 comm="apparmor_parser"
[   17.050888] type=1400 audit(1429172414.885:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=304 comm="apparmor_parser"
[   17.051239] type=1400 audit(1429172414.885:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=304 comm="apparmor_parser"
[   17.056937] yenta_cardbus 0000:00:14.0: ISA IRQ mask 0x0cf8, PCI irq 17
[   17.056945] yenta_cardbus 0000:00:14.0: Socket status: 30000086
[   17.132678] shpchp: Standard Hot Plug PCI Controller Driver version: 0.4
[   17.240616] ali1535_smbus 0000:00:1e.1: device not available (can't reserve [io  0x1000-0x103f])
[   17.240942] ali1535_smbus 0000:00:1e.1: ALI1535_smb can't enable device
[   17.242267] ali1535_smbus 0000:00:1e.1: ALI1535 not detected, module not inserted.
[   17.353221] ali15x3_smbus 0000:00:1e.1: ALI15X3_smb region uninitialized - upgrade BIOS or use force_addr=0xaddr
[   17.355271] ali15x3_smbus 0000:00:1e.1: ALI15X3 not detected, module not inserted.
[   18.609329] [drm] Initialized drm 1.1.0 20060810
[   18.705760] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x100-0x3af:
[   18.720148] cfg80211: Calling CRDA to update world regulatory domain
[   18.707207]  excluding 0x170-0x177 0x1f0-0x1f7 0x330-0x337 0x370-0x377
[   18.739764] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x3e0-0x4ff:
[   18.748354]  excluding 0x3f0-0x3f7 0x480-0x48f 0x4d0-0x4d7
[   18.748903] pcmcia_socket pcmcia_socket0: cs: IO port probe 0x820-0x8ff:
[   18.749768]  clean.
[   18.749785] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xc00-0xcf7:
[   18.750737]  clean.
[   18.750763] pcmcia_socket pcmcia_socket0: cs: memory probe 0x0c0000-0x0fffff:
[   18.750773]  excluding 0xc0000-0xfffff
[   18.750790] pcmcia_socket pcmcia_socket0: cs: memory probe 0xa0000000-0xa0ffffff:
[   18.750801]  clean.
[   18.750815] pcmcia_socket pcmcia_socket0: cs: memory probe 0x60000000-0x60ffffff:
[   18.750826]  clean.
[   18.750840] pcmcia_socket pcmcia_socket0: cs: IO port probe 0xa00-0xaff:
[   18.751824]  clean.
[   19.124167] intel8x0_measure_ac97_clock: measured 52774 usecs (2544 samples)
[   19.124173] intel8x0: clocking to 48000
[   19.169264] cfg80211: World regulatory domain updated:
[   19.169271] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   19.169275] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   19.169277] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   19.169280] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   19.169282] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   19.169284] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   19.496397] rtl8192cu: Chip version 0x10
[   19.513040] [drm] radeon kernel modesetting enabled.
[   19.513171] checking generic (90000000 300000) vs hw (90000000 10000000)
[   19.513174] fb: conflicting fb hw usage radeondrmfb vs VESA VGA - removing generic driver
[   19.513287] Console: switching to colour dummy device 80x25
[   19.518691] [drm] initializing kernel modesetting (RS480 0x1002:0x5955 0x1071:0x8351).
[   19.518741] [drm] register mmio base: 0xC0000000
[   19.518743] [drm] register mmio size: 65536
[   19.520352] [drm] Generation 2 PCI interface, using max accessible memory
[   19.520363] radeon 0000:01:05.0: VRAM: 128M 0x0000000038000000 - 0x000000003FFFFFFF (128M used)
[   19.520367] radeon 0000:01:05.0: GTT: 512M 0x0000000040000000 - 0x000000005FFFFFFF
[   19.520812] [drm] Detected VRAM RAM=128M, BAR=256M
[   19.520816] [drm] RAM width 128bits DDR
[   19.520926] [TTM] Zone  kernel: Available graphics memory: 446018 kiB
[   19.520928] [TTM] Zone highmem: Available graphics memory: 448036 kiB
[   19.520930] [TTM] Initializing pool allocator
[   19.520936] [TTM] Initializing DMA pool allocator
[   19.521058] [drm] radeon: 128M of VRAM memory ready
[   19.521060] [drm] radeon: 512M of GTT memory ready.
[   19.521080] [drm] GART: num cpu pages 131072, num gpu pages 131072
[   19.524767] EXT4-fs (sda6): re-mounted. Opts: errors=remount-ro
[   19.544766] [drm] radeon: 1 quad pipes, 1 z pipes initialized.
[   19.550592] [drm] PCIE GART of 512M enabled (table at 0x0000000034500000).
[   19.565981] radeon 0000:01:05.0: WB enabled
[   19.565993] radeon 0000:01:05.0: fence driver on ring 0 use gpu addr 0x0000000040000000 and cpu addr 0xf36de000
[   19.565997] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[   19.565999] [drm] Driver supports precise vblank timestamp query.
[   19.566002] radeon 0000:01:05.0: radeon: MSI limited to 32-bit
[   19.566016] [drm] radeon: irq initialized.
[   19.566034] [drm] Loading R300 Microcode
[   19.672716] rtl8192cu: MAC address: 80:1f:02:e6:8d:6a
[   19.672725] rtl8192cu: Board Type 0
[   19.672956] rtl_usb: rx_max_size 15360, rx_urb_num 8, in_ep 1
[   19.673002] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw_TMSC.bin
[   19.675333] usbcore: registered new interface driver rtl8192cu
[   19.843758] [drm] radeon: ring at 0x0000000040001000
[   19.843784] [drm] ring test succeeded in 1 usecs
[   19.843945] [drm] ib test succeeded in 0 usecs
[   19.844226] [drm] Panel ID String: Samsung LTN154X1 WXGA   
[   19.844229] [drm] Panel Size 1280x800
[   19.864185] [drm] radeon legacy LVDS backlight initialized
[   19.864189] [drm] Radeon Display Connectors
[   19.864191] [drm] Connector 0:
[   19.864193] [drm]   VGA-1
[   19.864196] [drm]   DDC: 0x68 0x68 0x68 0x68 0x68 0x68 0x68 0x68
[   19.864197] [drm]   Encoders:
[   19.864199] [drm]     CRT1: INTERNAL_DAC2
[   19.864201] [drm] Connector 1:
[   19.864203] [drm]   LVDS-1
[   19.864204] [drm]   Encoders:
[   19.864205] [drm]     LCD1: INTERNAL_LVDS
[   19.864207] [drm] Connector 2:
[   19.864209] [drm]   SVIDEO-1
[   19.864210] [drm]   Encoders:
[   19.864212] [drm]     TV1: INTERNAL_DAC2
[   19.867828] [drm] radeon: power management initialized
[   19.916078] ieee80211 phy0: Selected rate control algorithm 'rtl_rc'
[   19.917212] rtlwifi: wireless switch is on
[   19.963725] [drm] fb mappable at 0x90040000
[   19.963730] [drm] vram apper at 0x90000000
[   19.963732] [drm] size 4096000
[   19.963734] [drm] fb depth is 24
[   19.963736] [drm]    pitch is 5120
[   19.964917] fbcon: radeondrmfb (fb0) is primary device
[   20.059580] Console: switching to colour frame buffer device 160x50
[   20.069098] radeon 0000:01:05.0: fb0: radeondrmfb frame buffer device
[   20.069101] radeon 0000:01:05.0: registered panic notifier
[   20.103567] [drm] Initialized radeon 2.36.0 20080528 for 0000:01:05.0 on minor 0
[   20.625406] init: failsafe main process (512) killed by TERM signal
[   22.028145] Bluetooth: Core ver 2.17
[   22.028203] NET: Registered protocol family 31
[   22.028205] Bluetooth: HCI device and connection manager initialized
[   22.029011] Bluetooth: HCI socket layer initialized
[   22.029021] Bluetooth: L2CAP socket layer initialized
[   22.029034] Bluetooth: SCO socket layer initialized
[   22.162993] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   22.163000] Bluetooth: BNEP filters: protocol multicast
[   22.163015] Bluetooth: BNEP socket layer initialized
[   22.263914] Bluetooth: RFCOMM TTY layer initialized
[   22.263932] Bluetooth: RFCOMM socket layer initialized
[   22.263948] Bluetooth: RFCOMM ver 1.11
[   22.630131] type=1400 audit(1429172420.465:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=675 comm="apparmor_parser"
[   22.630149] type=1400 audit(1429172420.465:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=675 comm="apparmor_parser"
[   22.630869] type=1400 audit(1429172420.465:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=675 comm="apparmor_parser"
[   23.002089] init: cups main process (679) killed by HUP signal
[   23.002113] init: cups main process ended, respawning
[   23.200666] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.202748] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   23.222473] rtl8192cu: MAC auto ON okay!
[   23.273640] rtl8192cu: Tx queue select: 0x05
[   23.760779] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   23.761278] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[   25.038099] type=1400 audit(1429172422.873:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=758 comm="apparmor_parser"
[   25.038114] type=1400 audit(1429172422.873:12): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=758 comm="apparmor_parser"
[   25.042028] type=1400 audit(1429172422.877:13): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="chromium" pid=758 comm="apparmor_parser"
[   25.047441] type=1400 audit(1429172422.881:14): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/sbin/dhclient" pid=759 comm="apparmor_parser"
[   25.047461] type=1400 audit(1429172422.881:15): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=759 comm="apparmor_parser"
[   25.047467] type=1400 audit(1429172422.881:16): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=759 comm="apparmor_parser"
[   25.048484] type=1400 audit(1429172422.885:17): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=759 comm="apparmor_parser"
[   25.476796] wlan0: authenticate with 24:65:11:78:34:10
[   25.510636] wlan0: send auth to 24:65:11:78:34:10 (try 1/3)
[   25.539725] wlan0: authenticated
[   25.544061] wlan0: associate with 24:65:11:78:34:10 (try 1/3)
[   25.557766] wlan0: RX AssocResp from 24:65:11:78:34:10 (capab=0x431 status=0 aid=3)
[   25.557825] wlan0: associated
[   25.558566] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
[   25.858529] wlan0: deauthenticating from 24:65:11:78:34:10 by local choice (reason=2)
[   25.884482] cfg80211: Calling CRDA to update world regulatory domain
[   25.888306] wlan0: authenticate with 24:65:11:78:34:10
[   25.913913] wlan0: send auth to 24:65:11:78:34:10 (try 1/3)
[   25.914236] cfg80211: World regulatory domain updated:
[   25.914242] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[   25.914246] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   25.914248] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   25.914250] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[   25.914253] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   25.914255] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[   25.916436] wlan0: authenticated
[   25.928068] wlan0: associate with 24:65:11:78:34:10 (try 1/3)
[   25.952902] wlan0: RX AssocResp from 24:65:11:78:34:10 (capab=0x431 status=0 aid=3)
[   25.952957] wlan0: associated
[   26.208546] uli526x 0000:00:1b.0 eth0: NIC Link is Down
[   31.084574] init: plymouth-upstart-bridge main process ended, respawning
[   31.124664] init: plymouth-upstart-bridge main process ended, respawning
[   53.177723] audit_printk_skb: 87 callbacks suppressed
[   53.177731] type=1400 audit(1429172451.012:47): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=1940 comm="apparmor_parser"
[   53.177746] type=1400 audit(1429172451.012:48): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1940 comm="apparmor_parser"
[   53.178472] type=1400 audit(1429172451.012:49): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=1940 comm="apparmor_parser"
[ 6951.743823] usb 1-2: USB disconnect, device number 3
[ 6951.744382] wlan0: deauthenticating from 24:65:11:78:34:10 by local choice (reason=3)
[ 6951.744596] rtl_usb: reg 0x102, usbctrl_vendorreq TimeOut! status:0xffffffed value=0x80b40
[ 6951.744606] rtl_usb: reg 0x422, usbctrl_vendorreq TimeOut! status:0xffffffed value=0x4d5
[ 6951.744614] rtl_usb: reg 0x542, usbctrl_vendorreq TimeOut! status:0xffffffed value=0x6200385
[ 6951.744624] rtl_usb: reg 0x608, usbctrl_vendorreq TimeOut! status:0xffffffed value=0xf0002a0e
[ 6951.787833] cfg80211: Calling CRDA to update world regulatory domain
[ 6951.878599] cfg80211: World regulatory domain updated:
[ 6951.878610] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
[ 6951.878613] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6951.878615] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6951.878618] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
[ 6951.878620] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6951.878622] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
[ 6970.824106] usb 1-2: new high-speed USB device number 4 using ehci-pci
[ 6970.960239] usb 1-2: New USB device found, idVendor=7392, idProduct=7811
[ 6970.960249] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
[ 6970.960253] usb 1-2: Product: 802.11n WLAN Adapter
[ 6970.960257] usb 1-2: Manufacturer: Realtek
[ 6970.960260] usb 1-2: SerialNumber: 00e04c000001
[ 6970.962116] rtl8192cu: Chip version 0x10
[ 6971.054726] rtl8192cu: MAC address: 80:1f:02:e6:8d:6a
[ 6971.054739] rtl8192cu: Board Type 0
[ 6971.054967] rtl_usb: rx_max_size 15360, rx_urb_num 8, in_ep 1
[ 6971.055019] rtl8192cu: Loading firmware rtlwifi/rtl8192cufw_TMSC.bin
[ 6971.055491] ieee80211 phy1: Selected rate control algorithm 'rtl_rc'
[ 6971.059123] rtlwifi: wireless switch is on
[ 6971.116864] rtl8192cu: MAC auto ON okay!
[ 6971.163375] rtl8192cu: Tx queue select: 0x05
[ 6971.640081] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6971.640570] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
[ 6972.546691] wlan0: authenticate with 24:65:11:78:34:10
[ 6972.565816] wlan0: send auth to 24:65:11:78:34:10 (try 1/3)
[ 6972.668042] wlan0: send auth to 24:65:11:78:34:10 (try 2/3)
[ 6972.671035] wlan0: authenticated
[ 6972.672082] wlan0: associate with 24:65:11:78:34:10 (try 1/3)
[ 6972.713033] wlan0: RX AssocResp from 24:65:11:78:34:10 (capab=0x431 status=0 aid=3)
[ 6972.713090] wlan0: associated
[ 6972.714023] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready