ubuntuusers.de

log

Datum:
23. Oktober 2014 23:29
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
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
auth.log

Oct 23 17:21:38 alandia-ThinkPad lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Oct 23 17:21:38 alandia-ThinkPad lightdm: PAM adding faulty module: pam_kwallet.so
Oct 23 17:21:38 alandia-ThinkPad lightdm: pam_unix(lightdm-greeter:session): session opened for user lightdm by (uid=0)
Oct 23 17:21:39 alandia-ThinkPad lightdm: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: cannot open shared object file: No such file or directory
Oct 23 17:21:39 alandia-ThinkPad lightdm: PAM adding faulty module: pam_kwallet.so
Oct 23 17:21:39 alandia-ThinkPad lightdm: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "alandia"
Oct 23 17:21:42 alandia-ThinkPad lightdm: pam_unix(lightdm-greeter:session): session closed for user lightdm
Oct 23 17:21:43 alandia-ThinkPad lightdm: pam_unix(lightdm:session): session opened for user alandia by (uid=0)
Oct 23 17:21:43 alandia-ThinkPad polkitd(authority=local): Registered Authentication Agent for unix-session:c2 (system bus name :1.73 [/usr/lib/policykit-1-gnome/polkit-gnome-authentication-agent-1], object path /org/gnome/PolicyKit1/AuthenticationAgent, locale de_DE.UTF-8)
Oct 23 17:21:50 alandia-ThinkPad dbus[686]: [system] Rejected send message, 7 matched rules; type="method_return", sender=":1.84" (uid=0 pid=2768 comm="/usr/sbin/dnsmasq --no-resolv --keep-in-foreground") interface="(unset)" member="(unset)" error name="(unset)" requested_reply="0" destination=":1.6" (uid=0 pid=915 comm="NetworkManager ")
Oct 23 17:30:50 alandia-ThinkPad sudo:  alandia : TTY=pts/0 ; PWD=/home/alandia ; USER=root ; COMMAND=/usr/bin/apt-get install gnome-utils
Oct 23 17:30:50 alandia-ThinkPad sudo: pam_unix(sudo:session): session opened for user root by alandia(uid=0)
Oct 23 17:30:50 alandia-ThinkPad sudo: pam_unix(sudo:session): session closed for user root
Oct 23 17:31:46 alandia-ThinkPad sudo:  alandia : TTY=pts/0 ; PWD=/home/alandia ; USER=root ; COMMAND=/usr/bin/apt-get install console-log
Oct 23 17:31:46 alandia-ThinkPad sudo: pam_unix(sudo:session): session opened for user root by alandia(uid=0)
Oct 23 17:31:52 alandia-ThinkPad groupadd[30020]: group added to /etc/group: name=Debian-console-log, GID=126
Oct 23 17:31:52 alandia-ThinkPad groupadd[30020]: group added to /etc/gshadow: name=Debian-console-log
Oct 23 17:31:52 alandia-ThinkPad groupadd[30020]: new group: name=Debian-console-log, GID=126
Oct 23 17:31:52 alandia-ThinkPad useradd[30024]: new user: name=Debian-console-log, UID=116, GID=126, home=/nonexistent, shell=/bin/false
Oct 23 17:31:52 alandia-ThinkPad chage[30029]: changed password expiry for Debian-console-log
Oct 23 17:31:52 alandia-ThinkPad gpasswd[30033]: user Debian-console-log added by root to group adm
Oct 23 17:31:52 alandia-ThinkPad su[30075]: Successful su for Debian-console-log by root
Oct 23 17:31:52 alandia-ThinkPad su[30075]: + ??? root:Debian-console-log
Oct 23 17:31:52 alandia-ThinkPad su[30075]: pam_unix(su:session): session opened for user Debian-console-log by (uid=0)
Oct 23 17:31:52 alandia-ThinkPad su[30075]: pam_unix(su:session): session closed for user Debian-console-log
Oct 23 17:31:53 alandia-ThinkPad sudo: pam_unix(sudo:session): session closed for user root
Oct 23 17:35:03 alandia-ThinkPad gnome-keyring-daemon[1856]: keyring alias directory: /home/alandia/.local/share/keyrings
Oct 23 18:06:08 alandia-ThinkPad compiz: PAM unable to dlopen(pam_kwallet.so): /lib/security/pam_kwallet.so: Kann die Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden
Oct 23 18:06:08 alandia-ThinkPad compiz: PAM adding faulty module: pam_kwallet.so
Oct 23 18:06:08 alandia-ThinkPad compiz: pam_succeed_if(lightdm:auth): requirement "user ingroup nopasswdlogin" not met by user "alandia"
Oct 23 18:13:48 alandia-ThinkPad compiz: gkr-pam: unlocked login keyring


dpkg.log

2014-10-23 17:31:50 startup archives unpack
2014-10-23 17:31:50 install daemon:amd64 <keine> 0.6.4-1
2014-10-23 17:31:50 status half-installed daemon:amd64 0.6.4-1
2014-10-23 17:31:50 status triggers-pending man-db:amd64 2.6.7.1-1ubuntu1
2014-10-23 17:31:50 status unpacked daemon:amd64 0.6.4-1
2014-10-23 17:31:51 status unpacked daemon:amd64 0.6.4-1
2014-10-23 17:31:51 install console-log:all <keine> 1.2-1
2014-10-23 17:31:51 status half-installed console-log:all 1.2-1
2014-10-23 17:31:51 status triggers-pending ureadahead:amd64 0.100.0-16
2014-10-23 17:31:51 status half-installed console-log:all 1.2-1
2014-10-23 17:31:51 status unpacked console-log:all 1.2-1
2014-10-23 17:31:51 status unpacked console-log:all 1.2-1
2014-10-23 17:31:51 trigproc man-db:amd64 2.6.7.1-1ubuntu1 2.6.7.1-1ubuntu1
2014-10-23 17:31:51 status half-configured man-db:amd64 2.6.7.1-1ubuntu1
2014-10-23 17:31:51 status installed man-db:amd64 2.6.7.1-1ubuntu1
2014-10-23 17:31:51 trigproc ureadahead:amd64 0.100.0-16 0.100.0-16
2014-10-23 17:31:51 status half-configured ureadahead:amd64 0.100.0-16
2014-10-23 17:31:51 status installed ureadahead:amd64 0.100.0-16
2014-10-23 17:31:51 startup packages configure
2014-10-23 17:31:51 configure daemon:amd64 0.6.4-1 <keine>
2014-10-23 17:31:51 status unpacked daemon:amd64 0.6.4-1
2014-10-23 17:31:51 status unpacked daemon:amd64 0.6.4-1
2014-10-23 17:31:51 status half-configured daemon:amd64 0.6.4-1
2014-10-23 17:31:52 status installed daemon:amd64 0.6.4-1
2014-10-23 17:31:52 configure console-log:all 1.2-1 <keine>
2014-10-23 17:31:52 status unpacked console-log:all 1.2-1
2014-10-23 17:31:52 status unpacked console-log:all 1.2-1
2014-10-23 17:31:52 status triggers-pending ureadahead:amd64 0.100.0-16
2014-10-23 17:31:52 status unpacked console-log:all 1.2-1
2014-10-23 17:31:52 status unpacked console-log:all 1.2-1
2014-10-23 17:31:52 status half-configured console-log:all 1.2-1
2014-10-23 17:31:52 status triggers-awaited console-log:all 1.2-1
2014-10-23 17:31:52 trigproc ureadahead:amd64 0.100.0-16 <keine>
2014-10-23 17:31:52 status half-configured ureadahead:amd64 0.100.0-16
2014-10-23 17:31:52 status installed console-log:all 1.2-1
2014-10-23 17:31:52 status installed ureadahead:amd64 0.100.0-16



syslog

Oct 23 17:05:07 alandia-ThinkPad wpa_supplicant[1090]: wlan0: WPA: Group rekeying completed with 34:31:c4:48:47:13 [GTK=CCMP]
Oct 23 17:05:42 alandia-ThinkPad wpa_supplicant[1090]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:21:37 alandia-ThinkPad rsyslogd: [origin software="rsyslogd" swVersion="7.4.4" x-pid="815" x-info="http://www.rsyslog.com"] start
Oct 23 17:21:37 alandia-ThinkPad rsyslogd: rsyslogd's groupid changed to 104
Oct 23 17:21:37 alandia-ThinkPad rsyslogd: rsyslogd's userid changed to 101
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Initializing cgroup subsys cpuset
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Initializing cgroup subsys cpu
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Initializing cgroup subsys cpuacct
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Linux version 3.13.0-37-generic (buildd@kapok) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 (Ubuntu 3.13.0-37.64-generic 3.13.11.7)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.13.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] KERNEL supported cpus:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   Intel GenuineIntel
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   AMD AuthenticAMD
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   Centaur CentaurHauls
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] e820: BIOS-provided physical RAM map:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009cfff] usable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x000000000009d000-0x000000000009ffff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000000e0000-0x00000000000fffff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000ce1e3fff] usable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000ce1e4000-0x00000000dcd3efff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000dcd3f000-0x00000000dce7efff] ACPI NVS
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000dce7f000-0x00000000dcefefff] ACPI data
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000dceff000-0x00000000df9fffff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000f8000000-0x00000000fbffffff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000fe101000-0x00000000fe112fff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed08000-0x00000000fed08fff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed10000-0x00000000fed19fff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000fee00fff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x00000000ffc00000-0x00000000ffffffff] reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000031e5fffff] usable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] NX (Execute Disable) protection: active
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] SMBIOS 2.7 present.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] DMI: LENOVO 20ARS0BH00/20ARS0BH00, BIOS GJET77WW (2.27 ) 05/20/2014
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] No AGP bridge found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] e820: last_pfn = 0x31e600 max_arch_pfn = 0x400000000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] MTRR default type: write-back
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] MTRR fixed ranges enabled:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   00000-9FFFF write-back
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   A0000-BFFFF uncachable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   C0000-FFFFF write-protect
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] MTRR variable ranges enabled:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   0 base 00E0000000 mask 7FE0000000 uncachable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   1 base 00DE000000 mask 7FFE000000 uncachable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   2 base 00DD000000 mask 7FFF000000 uncachable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   3 base 00DCF00000 mask 7FFFF00000 uncachable
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   4 disabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   5 disabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   6 disabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   7 disabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   8 disabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   9 disabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] e820: last_pfn = 0xce1e4 max_arch_pfn = 0x400000000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] found SMP MP-table at [mem 0x000f0100-0x000f010f] mapped at [ffff8800000f0100]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Scanning 1 areas for low memory corruption
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Base memory trampoline at [ffff880000097000] 97000 size 24576
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Using GB pages for direct mapping
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x00000000-0x000fffff] page 4k
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] init_memory_mapping: [mem 0x31e400000-0x31e5fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x31e400000-0x31e5fffff] page 2M
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] BRK [0x01fe4000, 0x01fe4fff] PGTABLE
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] init_memory_mapping: [mem 0x31c000000-0x31e3fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x31c000000-0x31e3fffff] page 2M
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] init_memory_mapping: [mem 0x300000000-0x31bffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x300000000-0x31bffffff] page 2M
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] init_memory_mapping: [mem 0x00100000-0xce1e3fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x00100000-0x001fffff] page 4k
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x00200000-0x3fffffff] page 2M
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x40000000-0xbfffffff] page 1G
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0xc0000000-0xcdffffff] page 2M
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0xce000000-0xce1e3fff] page 4k
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] init_memory_mapping: [mem 0x100000000-0x2ffffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [mem 0x100000000-0x2ffffffff] page 1G
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] RAMDISK: [mem 0x3482a000-0x3640cfff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: RSDP 00000000000f0120 000024 (v02 LENOVO)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: XSDT 00000000dcefe170 0000E4 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: FACP 00000000dcef9000 00010C (v05 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI Error: Gpe0Block - 32-bit FADT register is too long (32 bytes, 256 bits) to convert to GAS struct - 255 bits max, truncating (20131115/tbfadt-202)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: DSDT 00000000dcee3000 010DA6 (v01 LENOVO TP-GJ    00002270 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: FACS 00000000dce4a000 000040
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: DBGP 00000000dcefc000 000034 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: ECDT 00000000dcefb000 000052 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: HPET 00000000dcef8000 000038 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: APIC 00000000dcef7000 000098 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: MCFG 00000000dcef6000 00003C (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcef5000 000033 (v01 LENOVO TP-SSDT1 00000100 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcef4000 000486 (v01 LENOVO TP-SSDT2 00000200 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcee2000 0009CB (v01 LENOVO SataAhci 00001000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcee1000 000152 (v01 LENOVO Rmv_Batt 00001000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcee0000 0007F5 (v01 LENOVO  Cpu0Ist 00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcedf000 000AD8 (v01 LENOVO    CpuPm 00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcedd000 00125C (v01 LENOVO  SaSsdt  00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dcedc000 000379 (v01 LENOVO CppcTabl 00001000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: PCCT 00000000dcedb000 00006E (v05 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dceda000 000AC4 (v01 LENOVO Cpc_Tabl 00001000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: TCPA 00000000dced9000 000032 (v02    PTL   LENOVO 06040000 LNVO 00000001)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: UEFI 00000000dced8000 000042 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: POAT 00000000dcdb2000 000055 (v03 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: ASF! 00000000dcefd000 0000A5 (v32 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: BATB 00000000dced7000 000046 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: FPDT 00000000dced6000 000064 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: UEFI 00000000dced5000 0002F6 (v01 LENOVO TP-GJ    00002270 PTEC 00000002)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: SSDT 00000000dced4000 00047F (v01 LENOVO IsctTabl 00001000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] No NUMA configuration found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Faking a node at [mem 0x0000000000000000-0x000000031e5fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Initmem setup node 0 [mem 0x00000000-0x31e5fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   NODE_DATA [mem 0x31e5f9000-0x31e5fdfff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]  [ffffea0000000000-ffffea000c7fffff] PMD -> [ffff880312000000-ffff88031dbfffff] on node 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Zone ranges:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   Normal   [mem 0x100000000-0x31e5fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Movable zone start for each node
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Early memory node ranges
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   node   0: [mem 0x00001000-0x0009cfff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   node   0: [mem 0x00100000-0xce1e3fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   node   0: [mem 0x100000000-0x31e5fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] On node 0 totalpages: 3065728
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA zone: 64 pages used for memmap
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA zone: 21 pages reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA zone: 3996 pages, LIFO batch:0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA32 zone: 13128 pages used for memmap
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   DMA32 zone: 840164 pages, LIFO batch:31
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   Normal zone: 34712 pages used for memmap
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000]   Normal zone: 2221568 pages, LIFO batch:31
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x1808
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x03] enabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x00] disabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x00] disabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x07] lapic_id[0x00] disabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x08] lapic_id[0x00] disabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] high edge lint[0x1])
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1])
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-39
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: IRQ0 used by override.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: IRQ2 used by override.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: IRQ9 used by override.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] ACPI: HPET id: 0x8086a301 base: 0xfed00000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] smpboot: Allowing 8 CPUs, 4 hotplug CPUs
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] nr_irqs_gsi: 56
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0x0009d000-0x0009ffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000dffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0x000e0000-0x000fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xce1e4000-0xdcd3efff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xdcd3f000-0xdce7efff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xdce7f000-0xdcefefff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xdceff000-0xdf9fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xdfa00000-0xf7ffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xf8000000-0xfbffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfc000000-0xfe100fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfe101000-0xfe112fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfe113000-0xfebfffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec00000-0xfec00fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfec01000-0xfed07fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed08000-0xfed08fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed09000-0xfed0ffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed10000-0xfed19fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1a000-0xfed1bfff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed1c000-0xfed1ffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfed20000-0xfedfffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee00000-0xfee00fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xfee01000-0xffbfffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PM: Registered nosave memory: [mem 0xffc00000-0xffffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] e820: [mem 0xdfa00000-0xf7ffffff] available for PCI devices
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:8 nr_node_ids:1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PERCPU: Embedded 29 pages/cpu @ffff88031e200000 s86400 r8192 d24192 u262144
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] pcpu-alloc: s86400 r8192 d24192 u262144 alloc=1*2097152
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 6 7 
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 3017803
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Policy zone: Normal
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.13.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] xsave: enabled xstate_bv 0x7, cntxt size 0x340
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Checking aperture...
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] No AGP bridge found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Memory: 11958212K/12262912K available (7375K kernel code, 1144K rwdata, 3404K rodata, 1336K init, 1444K bss, 304700K reserved)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Hierarchical RCU implementation.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=8.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] 	Offload RCU callbacks from all CPUs
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] 	Offload RCU callbacks from CPUs: 0-7.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] NR_IRQS:16640 nr_irqs:1016 16
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] Console: colour dummy device 80x25
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] console [tty0] enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] allocated 49283072 bytes of page_cgroup
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] hpet clockevent registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000000] tsc: Fast TSC calibration using PIT
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.004000] tsc: Detected 2693.945 MHz processor
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000002] Calibrating delay loop (skipped), value calculated using timer frequency.. 5387.89 BogoMIPS (lpj=10775780)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000005] pid_max: default: 32768 minimum: 301
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000032] Security Framework initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000050] AppArmor: AppArmor initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.000051] Yama: becoming mindful.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.001213] Dentry cache hash table entries: 2097152 (order: 12, 16777216 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.004674] Inode-cache hash table entries: 1048576 (order: 11, 8388608 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006134] Mount-cache hash table entries: 32768 (order: 6, 262144 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006154] Mountpoint-cache hash table entries: 32768 (order: 6, 262144 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006397] Initializing cgroup subsys memory
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006402] Initializing cgroup subsys devices
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006404] Initializing cgroup subsys freezer
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006405] Initializing cgroup subsys blkio
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006407] Initializing cgroup subsys perf_event
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006409] Initializing cgroup subsys hugetlb
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006430] CPU: Physical Processor ID: 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006431] CPU: Processor Core ID: 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006436] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.006436] ENERGY_PERF_BIAS: View and update with x86_energy_perf_policy(8)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.007496] mce: CPU supports 7 MCE banks
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.007509] CPU0: Thermal monitoring enabled (TM1)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.007520] Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.007520] Last level dTLB entries: 4KB 64, 2MB 0, 4MB 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.007520] tlb_flushall_shift: 6
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.007636] Freeing SMP alternatives memory: 32K (ffffffff81e6e000 - ffffffff81e76000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.008679] ACPI: Core revision 20131115
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.019441] ACPI: All ACPI Tables successfully acquired
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.020302] ftrace: allocating 28541 entries in 112 pages
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.034232] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073909] smpboot: CPU0: Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz (fam: 06, model: 45, stepping: 01)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073915] TSC deadline timer enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073924] Performance Events: PEBS fmt2+, 16-deep LBR, Haswell events, full-width counters, Intel PMU driver.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073931] ... version:                3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073932] ... bit width:              48
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073933] ... generic registers:      4
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073934] ... value mask:             0000ffffffffffff
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073935] ... max period:             0000ffffffffffff
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073936] ... fixed-purpose events:   3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.073937] ... event mask:             000000070000000f
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.075593] x86: Booting SMP configuration:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.090069] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.075595] .... node  #0, CPUs:      #1 #2 #3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.118682] x86: Booted up 1 node, 4 CPUs
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.118685] smpboot: Total of 4 processors activated (21551.56 BogoMIPS)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.123504] devtmpfs: initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.125879] EVM: security.selinux
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.125880] EVM: security.SMACK64
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.125881] EVM: security.ima
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.125882] EVM: security.capability
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.125926] PM: Registering ACPI NVS region [mem 0xdcd3f000-0xdce7efff] (1310720 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126687] pinctrl core: initialized pinctrl subsystem
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126744] regulator-dummy: no parameters
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126774] RTC time: 15:21:22, date: 10/23/14
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126805] NET: Registered protocol family 16
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126898] cpuidle: using governor ladder
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126899] cpuidle: using governor menu
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126938] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126939] ACPI: bus type PCI registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.126941] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.127094] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xf8000000-0xfbffffff] (base 0xf8000000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.127096] PCI: MMCONFIG at [mem 0xf8000000-0xfbffffff] reserved in E820
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.131689] PCI: Using configuration type 1 for base access
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.132593] bio: create slab <bio-0> at 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.132734] ACPI: Added _OSI(Module Device)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.132736] ACPI: Added _OSI(Processor Device)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.132737] ACPI: Added _OSI(3.0 _SCP Extensions)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.132738] ACPI: Added _OSI(Processor Aggregator Device)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.134601] ACPI : EC: EC description table is found, configuring boot EC
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.140104] [Firmware Bug]: ACPI: BIOS _OSI(Linux) query ignored
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.151412] ACPI: SSDT 00000000dccd7918 000436 (v01  PmRef  Cpu0Cst 00003001 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.151879] ACPI: Dynamic OEM Table Load:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.151881] ACPI: SSDT           (null) 000436 (v01  PmRef  Cpu0Cst 00003001 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.155538] ACPI: SSDT 00000000dcd2e618 0005AA (v01  PmRef    ApIst 00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.156074] ACPI: Dynamic OEM Table Load:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.156076] ACPI: SSDT           (null) 0005AA (v01  PmRef    ApIst 00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.159396] ACPI: SSDT 00000000dcd2fc18 000119 (v01  PmRef    ApCst 00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.159857] ACPI: Dynamic OEM Table Load:
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.159859] ACPI: SSDT           (null) 000119 (v01  PmRef    ApCst 00003000 INTL 20120711)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.163888] ACPI: Interpreter enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.163895] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S1_] (20131115/hwxface-580)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.163901] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.163915] ACPI: (supports S0 S3 S4 S5)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.163916] ACPI: Using IOAPIC for interrupt routing
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.163939] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.164489] ACPI: ACPI Dock Station Driver: 1 docks/bays found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.167711] ACPI: Power Resource [PUBS] (on)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.168739] ACPI: Power Resource [NVP3] (on)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.168758] ACPI: Power Resource [NVP2] (on)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185101] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185172] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 *9 10 11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185241] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 5 6 7 9 *10 11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185309] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 *6 7 9 10 11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185376] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 *11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185430] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 7 9 10 11) *0, disabled.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185498] ACPI: PCI Interrupt Link [LNKG] (IRQs 3 4 5 6 7 9 *10 11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185565] ACPI: PCI Interrupt Link [LNKH] (IRQs 3 4 5 6 *7 9 10 11)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185607] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185612] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185714] acpi PNP0A08:00: _OSC: platform does not support [PCIeCapability]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185758] acpi PNP0A08:00: _OSC: not requesting control; platform does not support [PCIeCapability]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185760] acpi PNP0A08:00: _OSC: OS requested [PCIeHotplug PME AER PCIeCapability]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185762] acpi PNP0A08:00: _OSC: platform willing to grant [PCIeHotplug PME AER]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185764] acpi PNP0A08:00: _OSC failed (AE_SUPPORT); disabling ASPM
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185901] PCI host bridge to bus 0000:00
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185904] pci_bus 0000:00: root bus resource [bus 00-3f]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185906] pci_bus 0000:00: root bus resource [io  0x0000-0x0cf7]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185908] pci_bus 0000:00: root bus resource [io  0x0d00-0xffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185909] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185911] pci_bus 0000:00: root bus resource [mem 0xdfa00000-0xfebfffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185913] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed4bfff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185921] pci 0000:00:00.0: [8086:0a04] type 00 class 0x060000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.185992] pci 0000:00:02.0: [8086:0a16] type 00 class 0x030000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186005] pci 0000:00:02.0: reg 0x10: [mem 0xf0000000-0xf03fffff 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186012] pci 0000:00:02.0: reg 0x18: [mem 0xe0000000-0xefffffff 64bit pref]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186017] pci 0000:00:02.0: reg 0x20: [io  0x3000-0x303f]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186082] pci 0000:00:03.0: [8086:0a0c] type 00 class 0x040300
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186090] pci 0000:00:03.0: reg 0x10: [mem 0xf0630000-0xf0633fff 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186178] pci 0000:00:14.0: [8086:9c31] type 00 class 0x0c0330
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186196] pci 0000:00:14.0: reg 0x10: [mem 0xf0620000-0xf062ffff 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186251] pci 0000:00:14.0: PME# supported from D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186280] pci 0000:00:14.0: System wakeup disabled by ACPI
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186308] pci 0000:00:16.0: [8086:9c3a] type 00 class 0x078000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186328] pci 0000:00:16.0: reg 0x10: [mem 0xf0639000-0xf063901f 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186394] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186447] pci 0000:00:16.3: [8086:9c3d] type 00 class 0x070002
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186463] pci 0000:00:16.3: reg 0x10: [io  0x30b0-0x30b7]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186472] pci 0000:00:16.3: reg 0x14: [mem 0xf063f000-0xf063ffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186589] pci 0000:00:19.0: [8086:155a] type 00 class 0x020000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186605] pci 0000:00:19.0: reg 0x10: [mem 0xf0600000-0xf061ffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186612] pci 0000:00:19.0: reg 0x14: [mem 0xf063e000-0xf063efff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186619] pci 0000:00:19.0: reg 0x18: [io  0x3080-0x309f]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186675] pci 0000:00:19.0: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186703] pci 0000:00:19.0: System wakeup disabled by ACPI
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186733] pci 0000:00:1b.0: [8086:9c20] type 00 class 0x040300
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186746] pci 0000:00:1b.0: reg 0x10: [mem 0xf0634000-0xf0637fff 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186805] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186856] pci 0000:00:1c.0: [8086:9c1a] type 01 class 0x060400
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186915] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.186968] pci 0000:00:1c.1: [8086:9c14] type 01 class 0x060400
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187034] pci 0000:00:1c.1: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187068] pci 0000:00:1c.1: System wakeup disabled by ACPI
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187102] pci 0000:00:1d.0: [8086:9c26] type 00 class 0x0c0320
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187121] pci 0000:00:1d.0: reg 0x10: [mem 0xf063d000-0xf063d3ff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187208] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187240] pci 0000:00:1d.0: System wakeup disabled by ACPI
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187267] pci 0000:00:1f.0: [8086:9c43] type 00 class 0x060100
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187422] pci 0000:00:1f.2: [8086:9c03] type 00 class 0x010601
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187436] pci 0000:00:1f.2: reg 0x10: [io  0x30a8-0x30af]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187443] pci 0000:00:1f.2: reg 0x14: [io  0x30bc-0x30bf]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187450] pci 0000:00:1f.2: reg 0x18: [io  0x30a0-0x30a7]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187457] pci 0000:00:1f.2: reg 0x1c: [io  0x30b8-0x30bb]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187463] pci 0000:00:1f.2: reg 0x20: [io  0x3060-0x307f]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187470] pci 0000:00:1f.2: reg 0x24: [mem 0xf063c000-0xf063c7ff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187504] pci 0000:00:1f.2: PME# supported from D3hot
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187549] pci 0000:00:1f.3: [8086:9c22] type 00 class 0x0c0500
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187562] pci 0000:00:1f.3: reg 0x10: [mem 0xf0638000-0xf06380ff 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187580] pci 0000:00:1f.3: reg 0x20: [io  0xefa0-0xefbf]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187700] pci 0000:02:00.0: [10ec:5227] type 00 class 0xff0000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187725] pci 0000:02:00.0: reg 0x10: [mem 0xf0500000-0xf0500fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187847] pci 0000:02:00.0: supports D1 D2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.187848] pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.195341] pci 0000:00:1c.0: PCI bridge to [bus 02]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.195346] pci 0000:00:1c.0:   bridge window [mem 0xf0500000-0xf05fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.195558] pci 0000:03:00.0: [8086:08b2] type 00 class 0x028000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.195640] pci 0000:03:00.0: reg 0x10: [mem 0xf0400000-0xf0401fff 64bit]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.195849] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.203481] pci 0000:00:1c.1: PCI bridge to [bus 03]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.203485] pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf04fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204661] ACPI: Enabled 4 GPEs in block 00 to 7F
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204672] ACPI: \_SB_.PCI0: notify handler is installed
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204716] Found 1 acpi root devices
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204774] ACPI : EC: GPE = 0x25, I/O: command/status = 0x66, data = 0x62
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204856] vgaarb: device added: PCI:0000:00:02.0,decodes=io+mem,owns=io+mem,locks=none
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204860] vgaarb: loaded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204861] vgaarb: bridge control possible 0000:00:02.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.204995] SCSI subsystem initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.205039] libata version 3.00 loaded.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.205055] ACPI: bus type USB registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.205067] usbcore: registered new interface driver usbfs
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.205075] usbcore: registered new interface driver hub
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.205093] usbcore: registered new device driver usb
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.205182] PCI: Using ACPI for IRQ routing
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206495] PCI: pci_cache_line_size set to 64 bytes
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206816] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206818] e820: reserve RAM buffer [mem 0xce1e4000-0xcfffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206820] e820: reserve RAM buffer [mem 0x31e600000-0x31fffffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206887] NetLabel: Initializing
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206889] NetLabel:  domain hash size = 128
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206889] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206902] NetLabel:  unlabeled traffic allowed by default
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206947] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.206953] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.208981] Switched to clocksource hpet
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213261] AppArmor: AppArmor Filesystem Enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213282] pnp: PnP ACPI init
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213293] ACPI: bus type PNP registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213645] system 00:00: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213648] system 00:00: [mem 0x000c0000-0x000c3fff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213650] system 00:00: [mem 0x000c4000-0x000c7fff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213651] system 00:00: [mem 0x000c8000-0x000cbfff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213653] system 00:00: [mem 0x000cc000-0x000cffff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213655] system 00:00: [mem 0x000d0000-0x000d3fff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213656] system 00:00: [mem 0x000d4000-0x000d7fff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213658] system 00:00: [mem 0x000d8000-0x000dbfff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213660] system 00:00: [mem 0x000dc000-0x000dffff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213661] system 00:00: [mem 0x000e0000-0x000e3fff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213663] system 00:00: [mem 0x000e4000-0x000e7fff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213665] system 00:00: [mem 0x000e8000-0x000ebfff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213666] system 00:00: [mem 0x000ec000-0x000effff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213668] system 00:00: [mem 0x000f0000-0x000fffff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213670] system 00:00: [mem 0x00100000-0xdf9fffff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213672] system 00:00: [mem 0xfec00000-0xfed3ffff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213674] system 00:00: [mem 0xfed4c000-0xffffffff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213678] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213773] system 00:01: [io  0x1800-0x189f] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213776] system 00:01: [io  0x0800-0x087f] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213777] system 00:01: [io  0x0880-0x08ff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213780] system 00:01: [io  0x0900-0x097f] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213782] system 00:01: [io  0x0980-0x09ff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213784] system 00:01: [io  0x0a00-0x0a7f] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213785] system 00:01: [io  0x0a80-0x0aff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213787] system 00:01: [io  0x0b00-0x0b7f] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213789] system 00:01: [io  0x0b80-0x0bff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213791] system 00:01: [io  0x15e0-0x15ef] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213792] system 00:01: [io  0x1600-0x167f] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213794] system 00:01: [io  0x1640-0x165f] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213796] system 00:01: [mem 0xf8000000-0xfbffffff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213798] system 00:01: [mem 0x00000000-0x00000fff] could not be reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213800] system 00:01: [mem 0xfed1c000-0xfed1ffff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213802] system 00:01: [mem 0xfed10000-0xfed13fff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213803] system 00:01: [mem 0xfed18000-0xfed18fff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213805] system 00:01: [mem 0xfed19000-0xfed19fff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213807] system 00:01: [mem 0xfed45000-0xfed4bfff] has been reserved
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213809] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213859] pnp 00:02: Plug and Play ACPI device, IDs PNP0103 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213867] pnp 00:03: [dma 4]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213880] pnp 00:03: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213895] pnp 00:04: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213919] pnp 00:05: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213938] pnp 00:06: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213958] pnp 00:07: Plug and Play ACPI device, IDs LEN0071 PNP0303 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.213977] pnp 00:08: Plug and Play ACPI device, IDs LEN0039 PNP0f13 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.214014] pnp 00:09: Plug and Play ACPI device, IDs SMO1200 PNP0c31 (active)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.214413] pnp: PnP ACPI: found 10 devices
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.214414] ACPI: bus type PNP unregistered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220244] pci 0000:00:1c.0: PCI bridge to [bus 02]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220250] pci 0000:00:1c.0:   bridge window [mem 0xf0500000-0xf05fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220257] pci 0000:00:1c.1: PCI bridge to [bus 03]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220261] pci 0000:00:1c.1:   bridge window [mem 0xf0400000-0xf04fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220269] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220271] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220272] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220274] pci_bus 0000:00: resource 7 [mem 0xdfa00000-0xfebfffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220275] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed4bfff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220277] pci_bus 0000:02: resource 1 [mem 0xf0500000-0xf05fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220279] pci_bus 0000:03: resource 1 [mem 0xf0400000-0xf04fffff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220307] NET: Registered protocol family 2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220546] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220772] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220889] TCP: Hash tables configured (established 131072 bind 65536)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220905] TCP: reno registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220924] UDP hash table entries: 8192 (order: 6, 262144 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.220984] UDP-Lite hash table entries: 8192 (order: 6, 262144 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.221066] NET: Registered protocol family 1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.221076] pci 0000:00:02.0: Boot video device
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.221471] PCI: CLS 64 bytes, default 64
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.221527] Trying to unpack rootfs image as initramfs...
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.717889] Freeing initrd memory: 28556K (ffff88003482a000 - ffff88003640d000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.717894] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.717897] software IO TLB [mem 0xca1e4000-0xce1e4000] (64MB) mapped at [ffff8800ca1e4000-ffff8800ce1e3fff]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718086] microcode: CPU0 sig=0x40651, pf=0x40, revision=0x17
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718093] microcode: CPU1 sig=0x40651, pf=0x40, revision=0x17
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718100] microcode: CPU2 sig=0x40651, pf=0x40, revision=0x17
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718107] microcode: CPU3 sig=0x40651, pf=0x40, revision=0x17
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718148] microcode: Microcode Update Driver: v2.00 <tigran@aivazian.fsnet.co.uk>, Peter Oruba
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718149] Scanning for low memory corruption every 60 seconds
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718377] Initialise system trusted keyring
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718417] audit: initializing netlink socket (disabled)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.718425] type=2000 audit(1414077682.716:1): initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.747515] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.748535] zbud: loaded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.748674] VFS: Disk quotas dquot_6.5.2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.748711] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749081] fuse init (API version 7.22)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749142] msgmni has been set to 23411
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749188] Key type big_key registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749518] Key type asymmetric registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749521] Asymmetric key parser 'x509' registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749546] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749578] io scheduler noop registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749580] io scheduler deadline registered (default)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749600] io scheduler cfq registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749859] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749871] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749902] vesafb: mode is 1920x1080x32, linelength=7680, pages=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749903] vesafb: scrolling: redraw
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.749905] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.750547] vesafb: framebuffer at 0xe0000000, mapped to 0xffffc90005c00000, using 8128k, total 8128k
Oct 23 17:21:37 alandia-ThinkPad kernel: [    0.946776] Console: switching to colour frame buffer device 240x67
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142247] fb0: VESA VGA frame buffer device
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142263] intel_idle: MWAIT substates: 0x11142120
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142264] intel_idle: v0.4 model 0x45
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142265] intel_idle: lapic_timer_reliable_states 0xffffffff
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142388] ipmi message handler version 39.2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142509] ACPI: Deprecated procfs I/F for AC is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142637] ACPI: AC Adapter [AC] (on-line)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142709] input: Lid Switch as /devices/LNXSYSTM:00/device:00/PNP0C0D:00/input/input0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142932] ACPI: Lid Switch [LID]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142962] input: Sleep Button as /devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.142966] ACPI: Sleep Button [SLPB]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.143000] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.143002] ACPI: Power Button [PWRF]
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.144049] thermal LNXTHERM:00: registered as thermal_zone0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.144051] ACPI: Thermal Zone [THM0] (53 C)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.144078] GHES: HEST is not enabled!
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.144166] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.165793] 0000:00:16.3: ttyS4 at I/O 0x30b0 (irq = 17, base_baud = 115200) is a 16550A
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.166025] Linux agpgart interface v0.103
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.166158] tpm_tis 00:09: 1.2 TPM (device-id 0x0, rev-id 78)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.169191] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.169196] ACPI: Battery Slot [BAT0] (battery present)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.176760] ACPI: Deprecated procfs I/F for battery is loaded, please retry with CONFIG_ACPI_PROCFS_POWER cleared
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.176764] ACPI: Battery Slot [BAT1] (battery present)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.224670] tpm_tis 00:09: TPM is disabled/deactivated (0x6)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.225694] brd: module loaded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226225] loop: module loaded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226504] libphy: Fixed MDIO Bus: probed
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226571] tun: Universal TUN/TAP device driver, 1.6
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226573] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226608] PPP generic driver version 2.4.2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226642] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226649] ehci-pci: EHCI PCI platform driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226733] ehci-pci 0000:00:1d.0: EHCI Host Controller
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226738] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.226750] ehci-pci 0000:00:1d.0: debug port 2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.230641] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.230657] ehci-pci 0000:00:1d.0: irq 23, io mem 0xf063d000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240618] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240655] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240657] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240658] usb usb1: Product: EHCI Host Controller
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240660] usb usb1: Manufacturer: Linux 3.13.0-37-generic ehci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240661] usb usb1: SerialNumber: 0000:00:1d.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240758] hub 1-0:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240767] hub 1-0:1.0: 3 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240865] ehci-platform: EHCI generic platform driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240872] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240873] ohci-pci: OHCI PCI platform driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240880] ohci-platform: OHCI generic platform driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240886] uhci_hcd: USB Universal Host Controller Interface driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240967] xhci_hcd 0000:00:14.0: xHCI Host Controller
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.240970] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241044] xhci_hcd 0000:00:14.0: cache line size of 64 is not supported
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241062] xhci_hcd 0000:00:14.0: irq 56 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241112] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241113] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241115] usb usb2: Product: xHCI Host Controller
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241116] usb usb2: Manufacturer: Linux 3.13.0-37-generic xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241117] usb usb2: SerialNumber: 0000:00:14.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241202] hub 2-0:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.241212] hub 2-0:1.0: 9 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242374] xhci_hcd 0000:00:14.0: xHCI Host Controller
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242377] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242406] usb usb3: New USB device found, idVendor=1d6b, idProduct=0003
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242408] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242409] usb usb3: Product: xHCI Host Controller
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242411] usb usb3: Manufacturer: Linux 3.13.0-37-generic xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242412] usb usb3: SerialNumber: 0000:00:14.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242503] hub 3-0:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.242510] hub 3-0:1.0: 4 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.248675] i8042: PNP: PS/2 Controller [PNP0303:KBD,PNP0f13:MOU] at 0x60,0x64 irq 1,12
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250524] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250529] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250618] mousedev: PS/2 mouse device common for all mice
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250736] rtc_cmos 00:06: RTC can wake from S4
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250854] rtc_cmos 00:06: rtc core: registered rtc_cmos as rtc0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250885] rtc_cmos 00:06: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.250941] device-mapper: uevent: version 1.0.3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251003] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251013] ledtrig-cpu: registered to indicate activity on CPUs
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251097] TCP: cubic registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251180] NET: Registered protocol family 10
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251339] NET: Registered protocol family 17
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251347] Key type dns_resolver registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251566] Loading compiled-in X.509 certificates
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.251879] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.252451] Loaded X.509 cert 'Magrathea: Glacier signing key: 2cb1133b35f95a9e24deabeeb12ba449bcbabbc9'
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.252462] registered taskstats version 1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.254707] Key type trusted registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.256248] Key type encrypted registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.257793] AppArmor: AppArmor sha1 policy hashing enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.268691] tpm_tis 00:09: A TPM error (6) occurred attempting to read a pcr value
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.268695] IMA: No TPM chip found, activating TPM-bypass!
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.269139] regulator-dummy: disabling
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.269271]   Magic number: 2:168:387
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.269290] thermal cooling_device2: hash matches
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.269373] rtc_cmos 00:06: setting system clock to 2014-10-23 15:21:24 UTC (1414077684)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.270172] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.270174] EDD information not available.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.270216] PM: Hibernation image not present or could not be loaded.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.270894] Freeing unused kernel memory: 1336K (ffffffff81d20000 - ffffffff81e6e000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.270895] Write protecting the kernel read-only data: 12288k
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.272424] Freeing unused kernel memory: 804K (ffff880001737000 - ffff880001800000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.273503] Freeing unused kernel memory: 692K (ffff880001b53000 - ffff880001c00000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.284869] systemd-udevd[124]: starting version 204
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.297722] wmi: Mapper loaded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.302300] pps_core: LinuxPPS API ver. 1 registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.302302] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.302944] [drm] Initialized drm 1.1.0 20060810
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.303618] PTP clock support registered
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.303758] rtsx_pci 0000:02:00.0: irq 57 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.303776] rtsx_pci 0000:02:00.0: rtsx_pci_acquire_irq: pcr->msi_en = 1, pci->irq = 57
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.305241] ahci 0000:00:1f.2: version 3.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.305331] ahci 0000:00:1f.2: irq 58 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.307909] e1000e: Intel(R) PRO/1000 Network Driver - 2.3.2-k
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.307911] e1000e: Copyright(c) 1999 - 2013 Intel Corporation.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.320657] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 3 ports 6 Gbps 0x1 impl SATA mode
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.320663] ahci 0000:00:1f.2: flags: 64bit ncq pm led clo only pio slum part deso sadm sds apst 
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.321593] scsi0 : ahci
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.321811] scsi1 : ahci
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.321868] scsi2 : ahci
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.321904] ata1: SATA max UDMA/133 abar m2048@0xf063c000 port 0xf063c100 irq 58
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.321906] ata2: DUMMY
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.321907] ata3: DUMMY
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.322218] e1000e 0000:00:19.0: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.322235] e1000e 0000:00:19.0: irq 59 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.412863] e1000e 0000:00:19.0: PHY reset is blocked due to SOL/IDER session.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.552581] usb 1-1: new high-speed USB device number 2 using ehci-pci
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.568708] e1000e 0000:00:19.0 eth0: registered PHC clock
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.568710] e1000e 0000:00:19.0 eth0: (PCI Express:2.5GT/s:Width x1) 28:d2:44:4e:4d:57
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.568712] e1000e 0000:00:19.0 eth0: Intel(R) PRO/1000 Network Connection
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.568754] e1000e 0000:00:19.0 eth0: MAC: 11, PHY: 12, PBA No: 1000FF-0FF
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.569430] [drm] Memory usable by graphics device = 2048M
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.569433] checking generic (e0000000 7f0000) vs hw (e0000000 10000000)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.569434] fb: conflicting fb hw usage inteldrmfb vs VESA VGA - removing generic driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.569443] Console: switching to colour dummy device 80x25
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.604594] i915 0000:00:02.0: irq 60 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.604605] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.604606] [drm] Driver supports precise vblank timestamp query.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.604678] vgaarb: device changed decodes: PCI:0000:00:02.0,olddecodes=io+mem,decodes=io+mem:owns=io+mem
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.648473] ata1: SATA link up 6.0 Gbps (SStatus 133 SControl 300)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651026] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651030] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651032] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651056] ata1.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651180] ata1.00: supports DRM functions and may not be fully accessible
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651237] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651239] ata1.00: ATA-9: SAMSUNG MZ7TD256HAFV-000L9, DXT02L5Q, max UDMA/133
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651240] ata1.00: 500118192 sectors, multi 1: LBA48 NCQ (depth 31/32), AA
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651492] ata1.00: ACPI cmd ef/02:00:00:00:00:a0 (SET FEATURES) succeeded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651494] ata1.00: ACPI cmd f5/00:00:00:00:00:a0 (SECURITY FREEZE LOCK) filtered out
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651496] ata1.00: ACPI cmd ef/10:03:00:00:00:a0 (SET FEATURES) filtered out
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651524] ata1.00: ACPI cmd ef/10:09:00:00:00:a0 (SET FEATURES) succeeded
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651644] ata1.00: supports DRM functions and may not be fully accessible
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651693] ata1.00: failed to get NCQ Send/Recv Log Emask 0x1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651748] ata1.00: configured for UDMA/133
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651843] scsi 0:0:0:0: Direct-Access     ATA      SAMSUNG MZ7TD256 DXT0 PQ: 0 ANSI: 5
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651950] sd 0:0:0:0: [sda] 500118192 512-byte logical blocks: (256 GB/238 GiB)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.651967] sd 0:0:0:0: Attached scsi generic sg0 type 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.652019] sd 0:0:0:0: [sda] Write Protect is off
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.652021] sd 0:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.652045] sd 0:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.652500]  sda: sda1 sda2 < sda5 >
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.652762] sd 0:0:0:0: [sda] Attached SCSI disk
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.684988] usb 1-1: New USB device found, idVendor=8087, idProduct=8000
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.684992] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.685326] hub 1-1:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.685439] hub 1-1:1.0: 8 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.716507] tsc: Refined TSC clocksource calibration: 2693.767 MHz
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.724500] [drm] GMBUS [i915 gmbus dpb] timed out, falling back to bit banging on pin 5
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.741736] fbcon: inteldrmfb (fb0) is primary device
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.796773] usb 3-3: new SuperSpeed USB device number 2 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.814302] usb 3-3: New USB device found, idVendor=17ef, idProduct=1010
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.814304] usb 3-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.814305] usb 3-3: Product: Lenovo ThinkPad Dock   
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.814306] usb 3-3: Manufacturer: LENOVO                 
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.816178] hub 3-3:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.816299] hub 3-3:1.0: 4 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.873580] psmouse serio1: synaptics: Touchpad model: 1, fw: 8.1, id: 0x1e2b1, caps: 0xd001a3/0x940300/0x127c00, board id: 2937, fw id: 1543377
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.873588] psmouse serio1: synaptics: serio: Synaptics pass-through port at isa0060/serio1/input0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.912950] input: SynPS/2 Synaptics TouchPad as /devices/platform/i8042/serio1/input/input5
Oct 23 17:21:37 alandia-ThinkPad kernel: [    1.984373] usb 2-3: new high-speed USB device number 2 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.001614] usb 2-3: New USB device found, idVendor=17ef, idProduct=1010
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.001616] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.001617] usb 2-3: Product: Lenovo ThinkPad Dock   
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.001618] usb 2-3: Manufacturer: LENOVO                 
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.002079] hub 2-3:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.002180] hub 2-3:1.0: 4 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.176385] usb 2-6: new full-speed USB device number 3 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.194156] usb 2-6: New USB device found, idVendor=138a, idProduct=0017
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.194158] usb 2-6: New USB device strings: Mfr=0, Product=0, SerialNumber=1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.194159] usb 2-6: SerialNumber: 15ab8091e1fc
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.360309] usb 2-7: new full-speed USB device number 4 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.377701] usb 2-7: New USB device found, idVendor=8087, idProduct=07dc
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.377703] usb 2-7: New USB device strings: Mfr=0, Product=0, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.544243] usb 2-8: new high-speed USB device number 5 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.632792] usb 2-8: New USB device found, idVendor=04ca, idProduct=7035
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.632793] usb 2-8: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.632794] usb 2-8: Product: Integrated Camera
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.632795] usb 2-8: Manufacturer: J30DAT425
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.716186] Switched to clocksource tsc
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.772346] usb 1-1.5: new full-speed USB device number 3 using ehci-pci
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.816224] [drm] Enabling RC6 states: RC6 on, RC6p off, RC6pp off
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.865544] usb 1-1.5: No LPM exit latency info found.  Power management will be impacted.
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.874667] usb 1-1.5: New USB device found, idVendor=058f, idProduct=9540
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.874669] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.874683] usb 1-1.5: Product: EMV Smartcard Reader
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.874684] usb 1-1.5: Manufacturer: Generic
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.944931] usb 3-3.3: new SuperSpeed USB device number 3 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.963222] usb 3-3.3: New USB device found, idVendor=0480, idProduct=a009
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.963223] usb 3-3.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.963224] usb 3-3.3: Product: External USB 3.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.963225] usb 3-3.3: Manufacturer: TOSHIBA
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.963226] usb 3-3.3: SerialNumber: 222239118E44
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.966749] usb-storage 3-3.3:1.0: USB Mass Storage device detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.966794] scsi3 : usb-storage 3-3.3:1.0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    2.967344] usbcore: registered new interface driver usb-storage
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.048275] usb 2-3.4: new high-speed USB device number 6 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064437] usb 2-3.4: New USB device found, idVendor=17ef, idProduct=100f
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064439] usb 2-3.4: New USB device strings: Mfr=1, Product=2, SerialNumber=3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064440] usb 2-3.4: Product: Lenovo ThinkPad Dock
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064441] usb 2-3.4: Manufacturer: Lenovo
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064442] usb 2-3.4: SerialNumber: Rev1.2
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064825] hub 2-3.4:1.0: USB hub found
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.064842] hub 2-3.4:1.0: 3 ports detected
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.335965] usb 2-3.4.2: new full-speed USB device number 7 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.356848] usb 2-3.4.2: New USB device found, idVendor=08bb, idProduct=2902
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.356849] usb 2-3.4.2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.356850] usb 2-3.4.2: Product: USB Audio CODEC 
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.356851] usb 2-3.4.2: Manufacturer: Burr-Brown from TI              
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.356964] usb 2-3.4.2: ep 0x85 - rounding interval to 64 microframes, ep desc says 80 microframes
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.359708] hidraw: raw HID events driver (C) Jiri Kosina
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.361188] usbcore: registered new interface driver usbhid
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.361189] usbhid: USB HID core driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.362444] input: Burr-Brown from TI               USB Audio CODEC  as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.4/2-3.4.2/2-3.4.2:1.3/input/input7
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.362512] hid-generic 0003:08BB:2902.0001: input,hidraw0: USB HID v1.00 Device [Burr-Brown from TI               USB Audio CODEC ] on usb-0000:00:14.0-3.4.2/input3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.403927] Console: switching to colour frame buffer device 240x67
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.407855] i915 0000:00:02.0: fb0: inteldrmfb frame buffer device
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.407856] i915 0000:00:02.0: registered panic notifier
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.412388] ACPI: Video Device [VID] (multi-head: yes  rom: no  post: no)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.413257] acpi device:01: registered as cooling_device4
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.413322] input: Video Bus as /devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input8
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.413425] [drm] Initialized i915 1.6.0 20080730 for 0000:00:02.0 on minor 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.583874] usb 2-3.4.1: new low-speed USB device number 8 using xhci_hcd
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.605426] usb 2-3.4.1: New USB device found, idVendor=17ef, idProduct=6044
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.605430] usb 2-3.4.1: New USB device strings: Mfr=0, Product=2, SerialNumber=0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.605432] usb 2-3.4.1: Product: ThinkPad USB Laser Mouse
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.605580] usb 2-3.4.1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.609220] input: ThinkPad USB Laser Mouse as /devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.4/2-3.4.1/2-3.4.1:1.0/input/input9
Oct 23 17:21:37 alandia-ThinkPad kernel: [    3.609399] hid-generic 0003:17EF:6044.0002: input,hidraw1: USB HID v1.11 Mouse [ThinkPad USB Laser Mouse] on usb-0000:00:14.0-3.4.1/input0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.713097] scsi 3:0:0:0: Direct-Access     TOSHIBA  External USB 3.0 0201 PQ: 0 ANSI: 6
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.713384] sd 3:0:0:0: Attached scsi generic sg1 type 0
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.713723] sd 3:0:0:0: [sdb] 1953525164 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.714098] sd 3:0:0:0: [sdb] Write Protect is off
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.714103] sd 3:0:0:0: [sdb] Mode Sense: 2b 00 00 00
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.714465] sd 3:0:0:0: [sdb] Write cache: disabled, read cache: enabled, doesn't support DPO or FUA
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.725037]  sdb: sdb1
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.726535] sd 3:0:0:0: [sdb] Attached SCSI disk
Oct 23 17:21:37 alandia-ThinkPad kernel: [    4.812442] psmouse serio2: alps: Unknown ALPS touchpad: E7=10 00 64, EC=10 00 64
Oct 23 17:21:37 alandia-ThinkPad kernel: [    6.113464] psmouse serio2: trackpoint: IBM TrackPoint firmware: 0x0e, buttons: 3/3
Oct 23 17:21:37 alandia-ThinkPad kernel: [    6.114120] random: nonblocking pool is initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [    6.318656] input: TPPS/2 IBM TrackPoint as /devices/platform/i8042/serio1/serio2/input/input6
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.017405] bio: create slab <bio-1> at 1
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.172829] bio: create slab <bio-1> at 1
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.257034] EXT4-fs (dm-1): INFO: recovery required on readonly filesystem
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.257038] EXT4-fs (dm-1): write access will be enabled during recovery
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.401398] EXT4-fs (dm-1): orphan cleanup on readonly fs
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.410726] EXT4-fs (dm-1): 95 orphan inodes deleted
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.410729] EXT4-fs (dm-1): recovery complete
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.442111] EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.605224] Adding 12263420k swap on /dev/mapper/ubuntu--vg-swap_1.  Priority:-1 extents:1 across:12263420k SSFS
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.620494] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.664589] systemd-udevd[436]: starting version 204
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.665999] EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.695371] lp: driver loaded but no devices found
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.706962] ppdev: user-space parallel port driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.764548] Non-volatile memory driver v1.3
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.768771] thinkpad_acpi: ThinkPad ACPI Extras v0.25
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.768774] thinkpad_acpi: http://ibm-acpi.sf.net/
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.768775] thinkpad_acpi: ThinkPad BIOS GJET77WW (2.27 ), EC unknown
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.768777] thinkpad_acpi: Lenovo ThinkPad T440s, model 20ARS0BH00
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.772477] thinkpad_acpi: Unsupported brightness interface, please contact ibm-acpi-devel@lists.sourceforge.net
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.772500] thinkpad_acpi: radio switch found; radios are enabled
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.772509] thinkpad_acpi: This ThinkPad has standard ACPI backlight brightness control, supported by the ACPI video driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.772510] thinkpad_acpi: Disabling thinkpad-acpi brightness events by default...
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.776552] thinkpad_acpi: rfkill switch tpacpi_bluetooth_sw: radio is unblocked
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.777513] thinkpad_acpi: Console audio control enabled, mode: monitor (read only)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.779483] input: ThinkPad Extra Buttons as /devices/platform/thinkpad_acpi/input/input10
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.813186] mei_me 0000:00:16.0: irq 61 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827189] ACPI Warning: 0x0000000000001828-0x000000000000182f SystemIO conflicts with Region \_SB_.PCI0.LPC_.PMIO 1 (20131115/utaddress-251)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827196] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827199] ACPI Warning: 0x0000000000000830-0x000000000000083f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20131115/utaddress-251)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827203] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827204] ACPI Warning: 0x0000000000000800-0x000000000000082f SystemIO conflicts with Region \_SB_.PCI0.LPC_.LPIO 1 (20131115/utaddress-251)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827207] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.827208] lpc_ich: Resource conflict(s) found affecting gpio_ich
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.831140] type=1400 audit(1414077697.062:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=528 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.831147] type=1400 audit(1414077697.062:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=528 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.831151] type=1400 audit(1414077697.062:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=528 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.831567] type=1400 audit(1414077697.062:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=528 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.831572] type=1400 audit(1414077697.062:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=528 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.831786] type=1400 audit(1414077697.062:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=528 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.855546] HDA driver get symbol successfully from i915 module
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.855644] snd_hda_intel 0000:00:1b.0: irq 62 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.858297] cfg80211: Calling CRDA to update world regulatory domain
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.860151] snd_hda_intel 0000:00:03.0: irq 63 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.868089] Intel(R) Wireless WiFi driver for Linux, in-tree:
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.868091] Copyright(c) 2003-2013 Intel Corporation
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.869800] iwlwifi 0000:03:00.0: irq 64 for MSI/MSI-X
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886510] SKU: Nid=0x1d sku_cfg=0x40738105
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886513] SKU: port_connectivity=0x1
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886514] SKU: enable_pcbeep=0x1
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886515] SKU: check_sum=0x00000003
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886516] SKU: customization=0x00000081
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886517] SKU: external_amp=0x0
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886518] SKU: platform_type=0x1
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886519] SKU: swap=0x0
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886520] SKU: override=0x1
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886734] autoconfig: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886737]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886738]    hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886739]    mono: mono_out=0x0
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886740]    inputs:
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886741]      Mic=0x1a
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886743]      Internal Mic=0x12
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886744] realtek: No valid SSID, checking pincfg 0x40738105 for NID 0x1d
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.886745] realtek: Enabling init ASM_ID=0x8105 CODEC_ID=10ec0292
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.915772] iwlwifi 0000:03:00.0: loaded firmware version 22.24.8.0 op_mode iwlmvm
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.916179] input: HDA Intel PCH Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card1/input12
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.916240] input: HDA Intel PCH Mic as /devices/pci0000:00/0000:00:1b.0/sound/card1/input11
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.916633] input: HDA Intel HDMI HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:03.0/sound/card0/input15
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.916824] input: HDA Intel HDMI HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:03.0/sound/card0/input14
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.916967] input: HDA Intel HDMI HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:03.0/sound/card0/input13
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.934032] iwlwifi 0000:03:00.0: Detected Intel(R) Dual Band Wireless AC 7260, REV=0x144
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.934360] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.934808] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
Oct 23 17:21:37 alandia-ThinkPad kernel: [   13.948681] kvm: disabled by bios
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.022250] EXT4-fs (sda1): mounting ext2 file system using the ext4 subsystem
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.024617] EXT4-fs (sda1): mounted filesystem without journal. Opts: (null)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.092731] intel_rapl: domain uncore energy ctr 42327:42327 not working, skip
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.189655] ieee80211 phy0: Selected rate control algorithm 'iwl-mvm-rs'
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238449] cfg80211: World regulatory domain updated:
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238453] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238455] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238456] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238458] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238460] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.238461] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.345761] Bluetooth: Core ver 2.17
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.346681] NET: Registered protocol family 31
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.346684] Bluetooth: HCI device and connection manager initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.346690] Bluetooth: HCI socket layer initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.346692] Bluetooth: L2CAP socket layer initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.346697] Bluetooth: SCO socket layer initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.356540] Bluetooth: RFCOMM TTY layer initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.356550] Bluetooth: RFCOMM socket layer initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.356555] Bluetooth: RFCOMM ver 1.11
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.360489] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.360493] Bluetooth: BNEP filters: protocol multicast
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.360501] Bluetooth: BNEP socket layer initialized
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.397024] init: failsafe main process (696) killed by TERM signal
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.400437] init: samba-ad-dc main process (756) terminated with status 1
Oct 23 17:21:37 alandia-ThinkPad rsyslogd-2039: Could no open output pipe '/dev/xconsole': No such file or directory [try http://www.rsyslog.com/e/2039 ]
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.454637] type=1400 audit(1414077697.686:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=898 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.454643] type=1400 audit(1414077697.686:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=898 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.454900] type=1400 audit(1414077697.686:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=898 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Found user 'avahi' (UID 111) and group 'avahi' (GID 117).
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Successfully dropped root privileges.
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: avahi-daemon 0.6.31 starting up.
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Successfully called chroot().
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Successfully dropped remaining capabilities.
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: No service file found in /etc/avahi/services.
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Network interface enumeration completed.
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Registering HINFO record with values 'X86_64'/'LINUX'.
Oct 23 17:21:37 alandia-ThinkPad avahi-daemon[899]: Server startup complete. Host name is alandia-ThinkPad.local. Local service cookie is 1787609424.
Oct 23 17:21:37 alandia-ThinkPad ModemManager[859]: <info>  ModemManager (version 1.0.0) starting...
Oct 23 17:21:37 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.ColorManager' (using servicehelper)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> NetworkManager (version 0.9.8.8) is starting...
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> WEXT support is enabled
Oct 23 17:21:37 alandia-ThinkPad colord: Using config file /etc/colord.conf
Oct 23 17:21:37 alandia-ThinkPad colord: Using mapping database file /var/lib/colord/mapping.db
Oct 23 17:21:37 alandia-ThinkPad colord: Using device database file /var/lib/colord/storage.db
Oct 23 17:21:37 alandia-ThinkPad colord: loaded plugin libcd_plugin_camera.so
Oct 23 17:21:37 alandia-ThinkPad colord: loaded plugin libcd_plugin_scanner.so
Oct 23 17:21:37 alandia-ThinkPad colord: plugin /usr/lib/x86_64-linux-gnu/colord-plugins/libcd_plugin_sane.so not loaded: plugin refused to load
Oct 23 17:21:37 alandia-ThinkPad colord: Daemon ready for requests
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 23 17:21:37 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> DNS: loaded plugin dnsmasq
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-0720e7cdbc792b77c0740c39f325ef9e
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-523e494bc2f53c53d51d0758b07f4879
Oct 23 17:21:37 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-d4a7a2bd8ddaacf10e275e3db31d72b8
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.537961] init: cups main process (904) killed by HUP signal
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.537972] init: cups main process ended, respawning
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-c227f46f246694ba9971f270cb61a0c1
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-3a34aa6c3d1fb1ef63ff41e04ee00979
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-57f0d896250f6f98f77ca1b0d19019c0
Oct 23 17:21:37 alandia-ThinkPad polkitd[963]: started daemon version 0.105 using authority implementation `local' version `0.105'
Oct 23 17:21:37 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-d6490883a866e4059370e1de1d840283
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-654b99c87e67edb1c1cfb0dcb7fa9d04
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-fb0ac62618f016ed9b92ce239258efa8
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: init!
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: update_system_hostname
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:       interface-parser: parsing file /etc/network/interfaces
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:       interface-parser: finished parsing file /etc/network/interfaces
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPluginIfupdown: management mode: unmanaged
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth0, iface: eth0)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:19.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0, iface: wlan0)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/net/wlan0, iface: wlan0): no ifupdown configuration found.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: end _init.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ofono: Acquired D-Bus service com.canonical.NMOfono
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ofono: init!
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ofono: end _init.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> Loaded plugin (null): (null)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    Ifupdown: get unmanaged devices count: 0
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: (39345936) ... get_connections.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ifupdown: (39345936) ... get_connections (managed=false): return empty list.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing FRITZ!Box Fon WLAN 7360 SL ... 
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-353a6bcabda00f04b6988f89126ce6f5
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-6ad6d63767ce0393245528ada92f1cb2
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-c3e6382fa9b2d31b01b736f6f97aac3a
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-f64a1f19ce07290b35a752b00217b684
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-ea421e3a65cfa796e2732ce36086e327
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'FRITZ!Box Fon WLAN 7360 SL'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing FRITZ ... 
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-526fbc9bdf0d7156c553998d47a3b5fc
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-b0701c2ccf059287d0b067464df8bda9
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-0383c34650771ce95ef93fe916867725
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-72f5b1cba915b68ea75cc843e270df5a
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'FRITZ'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing GT-N7100-Netzwerk ... 
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-6a245ab2d8892e2e56232af93cd48b81
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-2f1f11ecd613fe5551420fcaf5b11ff8
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-a1d13bd5309e0f06ceda6f0d75367823
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'GT-N7100-Netzwerk'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing FRITZ!Box Fon WLAN 7390.1 ... 
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-3bd2261b1125a0fd9ebf827a2d1bed84
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-a10be98be58460669fcdc6946939b7cf
Oct 23 17:21:37 alandia-ThinkPad colord: Profile added: icc-df7c0067b1eb9bcc9fc9b33bc3a797eb
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'FRITZ!Box Fon WLAN 7390.1'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing AndroidAP ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'AndroidAP'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing Kabelnetzwerkverbindung 2 ... 
Oct 23 17:21:37 alandia-ThinkPad kernel: [   14.628288] type=1400 audit(1414077697.862:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/lightdm/lightdm-guest-session" pid=1048 comm="apparmor_parser"
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'Kabelnetzwerkverbindung 2'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing FRITZ!Box 7490 ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'FRITZ!Box 7490'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing winulum ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'winulum'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing Uni-Mainz ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'Uni-Mainz'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing eduroam ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'eduroam'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing DLink ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'DLink'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile: parsing CEMEREN ... 
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    keyfile:     read connection 'CEMEREN'
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ofono: (39128432) ... get_connections.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    SCPlugin-Ofono: (39128432) connections count: 0
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]:    Ifupdown: get unmanaged devices count: 0
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> rfkill1: found WiFi radio killswitch (at /sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0/ieee80211/phy0/rfkill1) (driver iwlwifi)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> Networking is enabled by state file
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <warn> failed to allocate link cache: (-12) Object not found
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> (eth0): carrier is OFF
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> (eth0): new Ethernet device (driver: 'e1000e' ifindex: 2)
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 23 17:21:37 alandia-ThinkPad NetworkManager[915]: <info> (eth0): bringing up device.
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.857137] e1000e 0000:00:19.0: irq 59 for MSI/MSI-X
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: checking bus 3, device 3: "/sys/devices/pci0000:00/0000:00:14.0/usb3/3-3/3-3.3"
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: bus: 3, device: 3 was not an MTP device
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.947103] Linux video capture interface: v2.00
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: checking bus 1, device 3: "/sys/devices/pci0000:00/0000:00:1d.0/usb1/1-1/1-1.5"
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: bus: 1, device: 3 was not an MTP device
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (eth0): preparing device.
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): using nl80211 for WiFi device control
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): driver supports Access Point (AP) mode
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): new 802.11 WiFi device (driver: 'iwlwifi' ifindex: 3)
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): exported as /org/freedesktop/NetworkManager/Devices/1
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): bringing up device.
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.959721] e1000e 0000:00:19.0: irq 59 for MSI/MSI-X
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.959817] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.960096] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.961511] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.962011] iwlwifi 0000:03:00.0: L1 Enabled; Disabling L0S
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.968287] usbcore: registered new interface driver btusb
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): preparing device.
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): deactivating device (reason 'managed') [2]
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 23 17:21:38 alandia-ThinkPad dbus[686]: [system] Activating service name='fi.w1.wpa_supplicant1' (using servicehelper)
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <warn> /sys/devices/virtual/net/lo: couldn't determine device driver; ignoring...
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> urfkill disappeared from the bus
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.976924] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.977173] IPv6: ADDRCONF(NETDEV_UP): wlan0: link is not ready
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.982014] Bluetooth: hci0: read Intel version: 370710018002030d00
Oct 23 17:21:38 alandia-ThinkPad kernel: [   14.982639] Bluetooth: hci0: Intel Bluetooth firmware file: intel/ibt-hw-37.7.10-fw-1.80.2.3.d.bseq
Oct 23 17:21:38 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'fi.w1.wpa_supplicant1'
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> wpa_supplicant started
Oct 23 17:21:38 alandia-ThinkPad wpa_supplicant[1186]: Successfully initialized wpa_supplicant
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> ModemManager available in the bus
Oct 23 17:21:38 alandia-ThinkPad anacron[1230]: Anacron 2.3 started on 2014-10-23
Oct 23 17:21:38 alandia-ThinkPad cron[1156]: (CRON) INFO (pidfile fd = 3)
Oct 23 17:21:38 alandia-ThinkPad anacron[1230]: Normal exit (0 jobs run)
Oct 23 17:21:38 alandia-ThinkPad cron[1234]: (CRON) STARTUP (fork ok)
Oct 23 17:21:38 alandia-ThinkPad cron[1234]: (CRON) INFO (Running @reboot jobs)
Oct 23 17:21:38 alandia-ThinkPad whoopsie[1217]: whoopsie 0.2.24.6 starting up.
Oct 23 17:21:38 alandia-ThinkPad whoopsie[1217]: Using lock path: /var/lock/whoopsie/lock
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0) supports 5 scan SSIDs
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <warn> Trying to remove a non-existant call id.
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: starting -> ready
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: unavailable -> disconnected (reason 'supplicant-available') [20 30 42]
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: ready -> disconnected
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (wlan0) supports 5 scan SSIDs
Oct 23 17:21:38 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.027824] uvcvideo: Found UVC 1.00 device Integrated Camera (04ca:7035)
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.036553] input: Integrated Camera as /devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input16
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.036696] usbcore: registered new interface driver uvcvideo
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.036697] USB Video Class driver (1.1.1)
Oct 23 17:21:38 alandia-ThinkPad whoopsie[1239]: offline
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.092977] Bluetooth: hci0: Intel Bluetooth firmware patch completed and activated
Oct 23 17:21:38 alandia-ThinkPad ntpdate[1361]: Can't find host ntp.ubuntu.com: Name or service not known (-2)
Oct 23 17:21:38 alandia-ThinkPad ntpdate[1361]: no servers can be used, exiting
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.131875] thinkpad_ec: module verification failed: signature and/or  required key missing - tainting kernel
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.132145] thinkpad_ec: thinkpad_ec_request_row: arg0 rejected: (0x01:0x00)->0x00
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.132148] thinkpad_ec: thinkpad_ec_read_row: failed requesting row: (0x01:0x00)->0xfffffffb
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.132150] thinkpad_ec: initial ec test failed
Oct 23 17:21:38 alandia-ThinkPad bluetoothd[767]: input-headset driver probe failed for device 84:51:81:04:7A:AC
Oct 23 17:21:38 alandia-ThinkPad bluetoothd[767]: Unknown command complete for opcode 19
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> BT device GT-N7100 (84:51:81:04:7A:AC) added (NAP)
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): new Bluetooth device (driver: 'bluez' ifindex: 0)
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): exported as /org/freedesktop/NetworkManager/Devices/2
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 23 17:21:38 alandia-ThinkPad bluetoothd[767]: Adapter /org/bluez/767/hci0 has been enabled
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): deactivating device (reason 'managed') [2]
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): device state change: unavailable -> disconnected (reason 'none') [20 30 0]
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.227475] thinkpad_ec: thinkpad_ec_request_row: arg0 rejected: (0x01:0x00)->0x00
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.227479] thinkpad_ec: thinkpad_ec_read_row: failed requesting row: (0x01:0x00)->0xfffffffb
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.227481] thinkpad_ec: initial ec test failed
Oct 23 17:21:38 alandia-ThinkPad acpid: starting up with netlink and the input layer
Oct 23 17:21:38 alandia-ThinkPad acpid: 10 rules loaded
Oct 23 17:21:38 alandia-ThinkPad acpid: waiting for events: event logging is off
Oct 23 17:21:38 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.Accounts' (using servicehelper)
Oct 23 17:21:38 alandia-ThinkPad bluetoothd[767]: Adapter /org/bluez/767/hci0 has been disabled
Oct 23 17:21:38 alandia-ThinkPad bluetoothd[767]: Unregister path: /org/bluez/767/hci0
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> BT device 84:51:81:04:7A:AC removed
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): device state change: disconnected -> unmanaged (reason 'removed') [30 10 36]
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): cleaning up...
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> (84:51:81:04:7A:AC): taking down device.
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.318303] usb 2-7: USB disconnect, device number 4
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 23 17:21:38 alandia-ThinkPad NetworkManager[915]: <info> Unmanaged Device found; state CONNECTED forced. (see http://bugs.launchpad.net/bugs/191889)
Oct 23 17:21:38 alandia-ThinkPad accounts-daemon[1499]: started daemon version 0.6.35
Oct 23 17:21:38 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.Accounts'
Oct 23 17:21:38 alandia-ThinkPad acpid: client connected from 1496[0:0]
Oct 23 17:21:38 alandia-ThinkPad acpid: 1 client rule loaded
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: checking bus 2, device 8: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.4/2-3.4.1"
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: bus: 2, device: 8 was not an MTP device
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: checking bus 2, device 7: "/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.4/2-3.4.2"
Oct 23 17:21:38 alandia-ThinkPad mtp-probe: bus: 2, device: 7 was not an MTP device
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.512978] init: plymouth-upstart-bridge main process ended, respawning
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.517475] init: plymouth-upstart-bridge main process (1545) terminated with status 1
Oct 23 17:21:38 alandia-ThinkPad kernel: [   15.517483] init: plymouth-upstart-bridge main process ended, respawning
Oct 23 17:21:39 alandia-ThinkPad kernel: [   15.977327] usbcore: registered new interface driver snd-usb-audio
Oct 23 17:21:39 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.UPower' (using servicehelper)
Oct 23 17:21:39 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.UPower'
Oct 23 17:21:39 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.RealtimeKit1' (using servicehelper)
Oct 23 17:21:39 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully called chroot.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully dropped privileges.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully limited resources.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Running.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Canary thread running.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Watchdog thread running.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1718 of process 1718 (n/a) owned by '112' high priority at nice level -11.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 1 threads of 1 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad NetworkManager[915]: <info> NetworkManager state is now DISCONNECTED
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1762 of process 1718 (n/a) owned by '112' RT at priority 5.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 2 threads of 1 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1784 of process 1718 (n/a) owned by '112' RT at priority 5.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 3 threads of 1 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1785 of process 1718 (n/a) owned by '112' RT at priority 5.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 4 threads of 1 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad anacron[1807]: Anacron 2.3 started on 2014-10-23
Oct 23 17:21:39 alandia-ThinkPad anacron[1807]: Normal exit (0 jobs run)
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1821 of process 1718 (n/a) owned by '112' RT at priority 5.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 5 threads of 1 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1822 of process 1718 (n/a) owned by '112' RT at priority 5.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 6 threads of 1 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 1824 of process 1824 (n/a) owned by '112' high priority at nice level -11.
Oct 23 17:21:39 alandia-ThinkPad rtkit-daemon[1720]: Supervising 7 threads of 2 processes of 1 users.
Oct 23 17:21:39 alandia-ThinkPad pulseaudio[1824]: [pulseaudio] pid.c: Daemon already running.
Oct 23 17:21:40 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.systemd1' (using servicehelper)
Oct 23 17:21:40 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.systemd1'
Oct 23 17:21:40 alandia-ThinkPad colord: Device added: xrandr-eDP1
Oct 23 17:21:40 alandia-ThinkPad colord: Automatic metadata add icc-b37b052e9573ca56264331deac85fd31 to xrandr-eDP1
Oct 23 17:21:40 alandia-ThinkPad colord: Profile added: icc-b37b052e9573ca56264331deac85fd31
Oct 23 17:21:40 alandia-ThinkPad ModemManager[859]: <warn>  Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:19.0': not supported by any plugin
Oct 23 17:21:40 alandia-ThinkPad ModemManager[859]: <warn>  Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.1/0000:03:00.0': not supported by any plugin
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Auto-activating connection 'FRITZ!Box 7490'.
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) starting connection 'FRITZ!Box 7490'
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> NetworkManager state is now CONNECTING
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) started...
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) scheduled...
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 1 of 5 (Device Prepare) complete.
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) starting...
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0/wireless): connection 'FRITZ!Box 7490' has security, and secrets exist.  No new secrets needed.
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Config: added 'ssid' value 'FRITZ!Box 7490'
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Config: added 'scan_ssid' value '1'
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Config: added 'key_mgmt' value 'WPA-PSK'
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Config: added 'auth_alg' value 'OPEN'
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Config: added 'psk' value '<omitted>'
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 2 of 5 (Device Configure) complete.
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> Config: set interface ap_scan to 1
Oct 23 17:21:41 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: disconnected -> inactive
Oct 23 17:21:42 alandia-ThinkPad colord: device removed: xrandr-eDP1
Oct 23 17:21:42 alandia-ThinkPad colord: Profile removed: icc-b37b052e9573ca56264331deac85fd31
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2098 of process 2098 (n/a) owned by '1000' high priority at nice level -11.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 7 threads of 2 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2117 of process 2098 (n/a) owned by '1000' RT at priority 5.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 8 threads of 2 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2129 of process 2098 (n/a) owned by '1000' RT at priority 5.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 9 threads of 2 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2131 of process 2098 (n/a) owned by '1000' RT at priority 5.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 10 threads of 2 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2138 of process 2098 (n/a) owned by '1000' RT at priority 5.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 11 threads of 2 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2139 of process 2098 (n/a) owned by '1000' RT at priority 5.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 12 threads of 2 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2141 of process 2141 (n/a) owned by '1000' high priority at nice level -11.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 13 threads of 3 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad pulseaudio[2141]: [pulseaudio] pid.c: Daemon already running.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Successfully made thread 2143 of process 2143 (n/a) owned by '1000' high priority at nice level -11.
Oct 23 17:21:43 alandia-ThinkPad rtkit-daemon[1720]: Supervising 13 threads of 3 processes of 2 users.
Oct 23 17:21:43 alandia-ThinkPad pulseaudio[2143]: [pulseaudio] pid.c: Daemon already running.
Oct 23 17:21:43 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.locale1' (using servicehelper)
Oct 23 17:21:43 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.locale1'
Oct 23 17:21:43 alandia-ThinkPad colord: Device added: xrandr-eDP1
Oct 23 17:21:43 alandia-ThinkPad colord: Profile added: icc-b9ff84d2beca31032be7a3163dfb4452
Oct 23 17:21:43 alandia-ThinkPad colord: Profile added: icc-7f1eaff94b4a5df3be23814782bd7b54
Oct 23 17:21:43 alandia-ThinkPad colord: Profile added: icc-50916313d3ddac64dc802bce07919185
Oct 23 17:21:43 alandia-ThinkPad colord: Automatic metadata add icc-fbb137eec330cbf8c7d1b3db8e7f07e9 to xrandr-eDP1
Oct 23 17:21:43 alandia-ThinkPad colord: Profile added: icc-fbb137eec330cbf8c7d1b3db8e7f07e9
Oct 23 17:21:43 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.UDisks2' (using servicehelper)
Oct 23 17:21:43 alandia-ThinkPad udisksd[2203]: udisks daemon version 2.1.3 starting
Oct 23 17:21:43 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.UDisks2'
Oct 23 17:21:43 alandia-ThinkPad udisksd[2203]: Acquired the name org.freedesktop.UDisks2 on the system message bus
Oct 23 17:21:44 alandia-ThinkPad ntfs-3g[2299]: Version 2013.1.13AR.1 external FUSE 29
Oct 23 17:21:44 alandia-ThinkPad ntfs-3g[2299]: Mounted /dev/sdb1 (Read-Write, label "TOSHIBA EXT", NTFS 3.1)
Oct 23 17:21:44 alandia-ThinkPad ntfs-3g[2299]: Cmdline options: rw,nosuid,nodev,uhelper=udisks2,uid=1000,gid=1000,dmask=0077,fmask=0177
Oct 23 17:21:44 alandia-ThinkPad ntfs-3g[2299]: Mount options: rw,nosuid,nodev,uhelper=udisks2,allow_other,nonempty,relatime,default_permissions,fsname=/dev/sdb1,blkdev,blksize=4096
Oct 23 17:21:44 alandia-ThinkPad ntfs-3g[2299]: Global ownership and permissions enforced, configuration type 7
Oct 23 17:21:44 alandia-ThinkPad udisksd[2203]: Mounted /dev/sdb1 at /media/alandia/TOSHIBA EXT on behalf of uid 1000
Oct 23 17:21:41 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: SME: Trying to authenticate with 34:31:c4:48:47:13 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.269965] wlan0: authenticate with 34:31:c4:48:47:13
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: inactive -> authenticating
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.274252] wlan0: send auth to 34:31:c4:48:47:13 (try 1/3)
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Trying to associate with 34:31:c4:48:47:13 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.278962] wlan0: authenticated
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.281044] wlan0: associate with 34:31:c4:48:47:13 (try 1/3)
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: authenticating -> associating
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.306294] wlan0: RX AssocResp from 34:31:c4:48:47:13 (capab=0x431 status=0 aid=1)
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Associated with 34:31:c4:48:47:13
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.309552] wlan0: associated
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.309578] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.309633] cfg80211: Calling CRDA for country: DE
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311630] cfg80211: Regulatory domain changed to country: DE
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311633] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311635] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311637] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311638] cfg80211:   (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311639] cfg80211:   (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.311641] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Key negotiation completed with 34:31:c4:48:47:13 [PTK=CCMP GTK=CCMP]
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-CONNECTED - Connection to 34:31:c4:48:47:13 completed [id=0 id_str=]
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: SME: Trying to authenticate with 06:1f:3f:c9:f1:a2 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.381373] wlan0: authenticate with 06:1f:3f:c9:f1:a2
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.384662] wlan0: send auth to 06:1f:3f:c9:f1:a2 (try 1/3)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.384779] cfg80211: Calling CRDA to update world regulatory domain
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: 4-way handshake -> authenticating
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386779] cfg80211: World regulatory domain updated:
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386782] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386785] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386787] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386789] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386791] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.386793] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Trying to associate with 06:1f:3f:c9:f1:a2 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.433591] wlan0: authenticated
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.437016] wlan0: associate with 06:1f:3f:c9:f1:a2 (try 1/3)
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: authenticating -> associating
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.440182] wlan0: RX AssocResp from 06:1f:3f:c9:f1:a2 (capab=0x431 status=0 aid=1)
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Associated with 06:1f:3f:c9:f1:a2
Oct 23 17:21:45 alandia-ThinkPad kernel: [   22.444727] wlan0: associated
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Key negotiation completed with 06:1f:3f:c9:f1:a2 [PTK=CCMP GTK=CCMP]
Oct 23 17:21:45 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-CONNECTED - Connection to 06:1f:3f:c9:f1:a2 completed [id=0 id_str=]
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0/wireless) Stage 2 of 5 (Device Configure) successful.  Connected to wireless network 'FRITZ!Box 7490'.
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) started...
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> dhclient started with pid 2503
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Beginning IP6 addrconf.
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 3 of 5 (IP Configure Start) complete.
Oct 23 17:21:45 alandia-ThinkPad dhclient: Internet Systems Consortium DHCP Client 4.2.4
Oct 23 17:21:45 alandia-ThinkPad dhclient: Copyright 2004-2012 Internet Systems Consortium.
Oct 23 17:21:45 alandia-ThinkPad dhclient: All rights reserved.
Oct 23 17:21:45 alandia-ThinkPad dhclient: For info, please visit https://www.isc.org/software/dhcp/
Oct 23 17:21:45 alandia-ThinkPad dhclient: 
Oct 23 17:21:45 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): DHCPv4 state changed nbi -> preinit
Oct 23 17:21:45 alandia-ThinkPad dhclient: Listening on LPF/wlan0/5c:51:4f:e7:3d:e9
Oct 23 17:21:45 alandia-ThinkPad dhclient: Sending on   LPF/wlan0/5c:51:4f:e7:3d:e9
Oct 23 17:21:45 alandia-ThinkPad dhclient: Sending on   Socket/fallback
Oct 23 17:21:45 alandia-ThinkPad dhclient: DHCPREQUEST of 192.168.178.31 on wlan0 to 255.255.255.255 port 67 (xid=0x3a89b2b)
Oct 23 17:21:47 alandia-ThinkPad avahi-daemon[899]: Joining mDNS multicast group on interface wlan0.IPv6 with address fe80::5e51:4fff:fee7:3de9.
Oct 23 17:21:47 alandia-ThinkPad avahi-daemon[899]: New relevant interface wlan0.IPv6 for mDNS.
Oct 23 17:21:47 alandia-ThinkPad avahi-daemon[899]: Registering new address record for fe80::5e51:4fff:fee7:3de9 on wlan0.*.
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info> WiFi hardware radio set enabled
Oct 23 17:21:48 alandia-ThinkPad dhclient: DHCPREQUEST of 192.168.178.31 on wlan0 to 255.255.255.255 port 67 (xid=0x3a89b2b)
Oct 23 17:21:48 alandia-ThinkPad dhclient: DHCPACK of 192.168.178.31 from 192.168.178.1
Oct 23 17:21:48 alandia-ThinkPad dhclient: bound to 192.168.178.31 -- renewal in 424530 seconds.
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): DHCPv4 state changed preinit -> reboot
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info>   address 192.168.178.31
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info>   prefix 24 (255.255.255.0)
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info>   gateway 192.168.178.1
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info>   nameserver '192.168.178.1'
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info>   domain name 'fritz.box'
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Configure Commit) scheduled...
Oct 23 17:21:48 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) started...
Oct 23 17:21:48 alandia-ThinkPad avahi-daemon[899]: Joining mDNS multicast group on interface wlan0.IPv4 with address 192.168.178.31.
Oct 23 17:21:48 alandia-ThinkPad avahi-daemon[899]: New relevant interface wlan0.IPv4 for mDNS.
Oct 23 17:21:48 alandia-ThinkPad avahi-daemon[899]: Registering new address record for 192.168.178.31 on wlan0.IPv4.
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: ip-config -> secondaries (reason 'none') [70 90 0]
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 5 of 5 (IPv4 Commit) complete.
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): device state change: secondaries -> activated (reason 'none') [90 100 0]
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> NetworkManager state is now CONNECTED_GLOBAL
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> Policy set 'FRITZ!Box 7490' (wlan0) as default for IPv4 routing and DNS.
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> DNS: starting dnsmasq...
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <warn> dnsmasq not available on the bus, can't update servers.
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <error> [1414077709.950713] [nm-dns-dnsmasq.c:396] update(): dnsmasq owner not found on bus: Could not get owner of name 'org.freedesktop.NetworkManager.dnsmasq': no such name
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <warn> DNS: plugin dnsmasq update failed
Oct 23 17:21:49 alandia-ThinkPad NetworkManager[915]: <info> Writing DNS information to /sbin/resolvconf
Oct 23 17:21:49 alandia-ThinkPad dnsmasq[2768]: Gestartet, Version 2.68 Cache deaktiviert
Oct 23 17:21:49 alandia-ThinkPad dnsmasq[2768]: Übersetzungsoptionen: IPv6 GNU-getopt DBus i18n IDN DHCP DHCPv6 no-Lua TFTP conntrack ipset auth
Oct 23 17:21:49 alandia-ThinkPad dnsmasq[2768]: DBus-Unterstützung eingeschaltet: mit Systembus verbunden
Oct 23 17:21:49 alandia-ThinkPad dnsmasq[2768]: Warnung: keine vorgelagerten (Upstream) Server konfiguriert
Oct 23 17:21:50 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): roamed from BSSID 34:31:C4:48:47:13 (FRITZ!Box 7490) to 06:1F:3F:C9:F1:A2 (FRITZ!Box 7490)
Oct 23 17:21:50 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) successful, device activated.
Oct 23 17:21:50 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
Oct 23 17:21:50 alandia-ThinkPad NetworkManager[915]: <warn> dnsmasq appeared on DBus: :1.84
Oct 23 17:21:50 alandia-ThinkPad NetworkManager[915]: <info> Writing DNS information to /sbin/resolvconf
Oct 23 17:21:50 alandia-ThinkPad dnsmasq[2768]: vorgelagerte Server von DBus gesetzt
Oct 23 17:21:50 alandia-ThinkPad dnsmasq[2768]: Benutze Namensserver 192.168.178.1#53
Oct 23 17:21:50 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 23 17:21:51 alandia-ThinkPad whoopsie[1239]: message repeated 5 times: [ offline]
Oct 23 17:21:51 alandia-ThinkPad whoopsie[1239]: online
Oct 23 17:21:56 alandia-ThinkPad ModemManager[859]: <info>  Creating modem with plugin 'Generic' and '1' ports
Oct 23 17:21:56 alandia-ThinkPad ModemManager[859]: <warn>  Could not grab port (tty/ttyS4): 'Cannot add port 'tty/ttyS4', unhandled serial type'
Oct 23 17:21:56 alandia-ThinkPad ModemManager[859]: <warn>  Couldn't create modem for device at '/sys/devices/pci0000:00/0000:00:16.3': Failed to find primary AT port
Oct 23 17:21:58 alandia-ThinkPad ntpdate[2930]: step time server 91.189.94.4 offset -1.925444 sec
Oct 23 17:21:59 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:22:04 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): IP6 addrconf timed out or failed.
Oct 23 17:22:04 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) scheduled...
Oct 23 17:22:04 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) started...
Oct 23 17:22:04 alandia-ThinkPad NetworkManager[915]: <info> Activation (wlan0) Stage 4 of 5 (IPv6 Configure Timeout) complete.
Oct 23 17:22:05 alandia-ThinkPad kernel: [   44.523720] audit_printk_skb: 150 callbacks suppressed
Oct 23 17:22:05 alandia-ThinkPad kernel: [   44.523723] type=1400 audit(1414077725.839:62): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=3959 comm="apparmor_parser"
Oct 23 17:22:05 alandia-ThinkPad kernel: [   44.523729] type=1400 audit(1414077725.839:63): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=3959 comm="apparmor_parser"
Oct 23 17:22:05 alandia-ThinkPad kernel: [   44.523961] type=1400 audit(1414077725.839:64): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=3959 comm="apparmor_parser"
Oct 23 17:22:05 alandia-ThinkPad colord: Profile added: Officejet_Pro_8600-Gray..
Oct 23 17:22:05 alandia-ThinkPad colord: Profile added: Officejet_Pro_8600-RGB..
Oct 23 17:22:05 alandia-ThinkPad colord: Device added: cups-Officejet_Pro_8600
Oct 23 17:22:05 alandia-ThinkPad colord: Profile added: Officejet_Pro_8600_fax-Gray..
Oct 23 17:22:05 alandia-ThinkPad colord: Profile added: Officejet_Pro_8600_fax-RGB..
Oct 23 17:22:05 alandia-ThinkPad colord: Device added: cups-Officejet_Pro_8600_fax
Oct 23 17:22:59 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.hostname1' (using servicehelper)
Oct 23 17:22:59 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 23 17:22:59 alandia-ThinkPad kernel: [   97.663557] systemd-hostnamed[6398]: Warning: nss-myhostname is not installed. Changing the local hostname might make it unresolveable. Please install nss-myhostname!
Oct 23 17:26:51 alandia-ThinkPad wpa_supplicant[1191]: message repeated 4 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 23 17:27:43 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Group rekeying completed with 06:1f:3f:c9:f1:a2 [GTK=CCMP]
Oct 23 17:28:51 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:36:51 alandia-ThinkPad wpa_supplicant[1191]: message repeated 4 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 23 17:37:43 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Group rekeying completed with 06:1f:3f:c9:f1:a2 [GTK=CCMP]
Oct 23 17:38:51 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:47:15 alandia-ThinkPad kernel: [ 1553.617714] usb 2-3.4.3: new high-speed USB device number 9 using xhci_hcd
Oct 23 17:47:15 alandia-ThinkPad kernel: [ 1553.635420] usb 2-3.4.3: New USB device found, idVendor=04e8, idProduct=6860
Oct 23 17:47:15 alandia-ThinkPad kernel: [ 1553.635424] usb 2-3.4.3: New USB device strings: Mfr=2, Product=3, SerialNumber=4
Oct 23 17:47:15 alandia-ThinkPad kernel: [ 1553.635426] usb 2-3.4.3: Product: GT-N7100
Oct 23 17:47:15 alandia-ThinkPad kernel: [ 1553.635427] usb 2-3.4.3: Manufacturer: samsung
Oct 23 17:47:15 alandia-ThinkPad kernel: [ 1553.635429] usb 2-3.4.3: SerialNumber: 4df120871b749fcf
Oct 23 17:47:16 alandia-ThinkPad colord: Device added: sysfs-samsung-GT-N7100
Oct 23 17:47:16 alandia-ThinkPad colord: Device added: sysfs-(null)
Oct 23 17:47:19 alandia-ThinkPad colord: device removed: sysfs-(null)
Oct 23 17:47:19 alandia-ThinkPad colord: device removed: sysfs-samsung-GT-N7100
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.260649] usb 2-3.4.3: USB disconnect, device number 9
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.492378] usb 2-3.4.3: new high-speed USB device number 10 using xhci_hcd
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.509981] usb 2-3.4.3: New USB device found, idVendor=04e8, idProduct=6860
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.509990] usb 2-3.4.3: New USB device strings: Mfr=2, Product=3, SerialNumber=4
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.509995] usb 2-3.4.3: Product: GT-N7100
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.509999] usb 2-3.4.3: Manufacturer: samsung
Oct 23 17:47:19 alandia-ThinkPad kernel: [ 1557.510002] usb 2-3.4.3: SerialNumber: 4df120871b749fcf
Oct 23 17:47:19 alandia-ThinkPad colord: Device added: sysfs-samsung-GT-N7100
Oct 23 17:47:19 alandia-ThinkPad colord: Device added: sysfs-(null)
Oct 23 17:47:20 alandia-ThinkPad kernel: [ 1558.363862] systemd-hostnamed[6086]: Warning: nss-myhostname is not installed. Changing the local hostname might make it unresolveable. Please install nss-myhostname!
Oct 23 17:47:20 alandia-ThinkPad dbus[686]: [system] Activating service name='org.freedesktop.hostname1' (using servicehelper)
Oct 23 17:47:20 alandia-ThinkPad dbus[686]: [system] Successfully activated service 'org.freedesktop.hostname1'
Oct 23 17:46:51 alandia-ThinkPad wpa_supplicant[1191]: message repeated 4 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 23 17:47:43 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Group rekeying completed with 06:1f:3f:c9:f1:a2 [GTK=CCMP]
Oct 23 17:48:51 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:52:51 alandia-ThinkPad wpa_supplicant[1191]: message repeated 2 times: [ wlan0: CTRL-EVENT-SCAN-STARTED ]
Oct 23 17:52:56 alandia-ThinkPad wpa_supplicant[1191]: wlan0: SME: Trying to authenticate with 34:31:c4:48:47:13 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.138564] wlan0: authenticate with 34:31:c4:48:47:13
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.142806] wlan0: send auth to 34:31:c4:48:47:13 (try 1/3)
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): roamed from BSSID 06:1F:3F:C9:F1:A2 (FRITZ!Box 7490) to (none) ((none))
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: completed -> authenticating
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.143056] cfg80211: Calling CRDA to update world regulatory domain
Oct 23 17:52:56 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Trying to associate with 34:31:c4:48:47:13 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147252] cfg80211: World regulatory domain updated:
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147259] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147264] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147268] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147271] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147274] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147277] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.147893] wlan0: authenticated
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.151024] wlan0: associate with 34:31:c4:48:47:13 (try 1/3)
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: authenticating -> associating
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.166477] wlan0: RX AssocResp from 34:31:c4:48:47:13 (capab=0x431 status=0 aid=1)
Oct 23 17:52:56 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Associated with 34:31:c4:48:47:13
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.168593] wlan0: associated
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.168689] cfg80211: Calling CRDA for country: DE
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170461] cfg80211: Regulatory domain changed to country: DE
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170462] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170464] cfg80211:   (2400000 KHz - 2483500 KHz @ 40000 KHz), (N/A, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170464] cfg80211:   (5150000 KHz - 5250000 KHz @ 40000 KHz), (N/A, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170465] cfg80211:   (5250000 KHz - 5350000 KHz @ 40000 KHz), (N/A, 2000 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170466] cfg80211:   (5470000 KHz - 5725000 KHz @ 40000 KHz), (N/A, 2698 mBm)
Oct 23 17:52:56 alandia-ThinkPad kernel: [ 1894.170467] cfg80211:   (57240000 KHz - 65880000 KHz @ 2160000 KHz), (N/A, 4000 mBm)
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: associating -> associated
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: associated -> 4-way handshake
Oct 23 17:52:56 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Key negotiation completed with 34:31:c4:48:47:13 [PTK=CCMP GTK=CCMP]
Oct 23 17:52:56 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-CONNECTED - Connection to 34:31:c4:48:47:13 completed [id=0 id_str=]
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 23 17:52:56 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): roamed from BSSID (none) ((none)) to 34:31:C4:48:47:13 (FRITZ!Box 7490)
Oct 23 17:54:51 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:54:55 alandia-ThinkPad wpa_supplicant[1191]: wlan0: SME: Trying to authenticate with 06:1f:3f:c9:f1:a2 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.308506] wlan0: authenticate with 06:1f:3f:c9:f1:a2
Oct 23 17:54:55 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): roamed from BSSID 34:31:C4:48:47:13 (FRITZ!Box 7490) to (none) ((none))
Oct 23 17:54:55 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: completed -> authenticating
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.313436] wlan0: send auth to 06:1f:3f:c9:f1:a2 (try 1/3)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.314219] cfg80211: Calling CRDA to update world regulatory domain
Oct 23 17:54:55 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Trying to associate with 06:1f:3f:c9:f1:a2 (SSID='FRITZ!Box 7490' freq=2427 MHz)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.317223] wlan0: authenticated
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319720] cfg80211: World regulatory domain updated:
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319727] cfg80211:   (start_freq - end_freq @ bandwidth), (max_antenna_gain, max_eirp)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319732] cfg80211:   (2402000 KHz - 2472000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319736] cfg80211:   (2457000 KHz - 2482000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319739] cfg80211:   (2474000 KHz - 2494000 KHz @ 20000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319742] cfg80211:   (5170000 KHz - 5250000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.319745] cfg80211:   (5735000 KHz - 5835000 KHz @ 40000 KHz), (300 mBi, 2000 mBm)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.320124] wlan0: associate with 06:1f:3f:c9:f1:a2 (try 1/3)
Oct 23 17:54:55 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: authenticating -> associating
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.331862] wlan0: RX AssocResp from 06:1f:3f:c9:f1:a2 (capab=0x431 status=0 aid=1)
Oct 23 17:54:55 alandia-ThinkPad kernel: [ 2013.344185] wlan0: associated
Oct 23 17:54:55 alandia-ThinkPad wpa_supplicant[1191]: wlan0: Associated with 06:1f:3f:c9:f1:a2
Oct 23 17:54:55 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: associating -> 4-way handshake
Oct 23 17:54:55 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Key negotiation completed with 06:1f:3f:c9:f1:a2 [PTK=CCMP GTK=CCMP]
Oct 23 17:54:55 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-CONNECTED - Connection to 06:1f:3f:c9:f1:a2 completed [id=0 id_str=]
Oct 23 17:54:55 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): supplicant interface state: 4-way handshake -> completed
Oct 23 17:54:55 alandia-ThinkPad NetworkManager[915]: <info> (wlan0): roamed from BSSID (none) ((none)) to 06:1F:3F:C9:F1:A2 (FRITZ!Box 7490)
Oct 23 17:56:51 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED 
Oct 23 17:57:43 alandia-ThinkPad wpa_supplicant[1191]: wlan0: WPA: Group rekeying completed with 06:1f:3f:c9:f1:a2 [GTK=CCMP]
Oct 23 17:58:51 alandia-ThinkPad wpa_supplicant[1191]: wlan0: CTRL-EVENT-SCAN-STARTED


Xorg.0.log

[    15.348] 
X.Org X Server 1.15.1
Release Date: 2014-04-13
[    15.348] X Protocol Version 11, Revision 0
[    15.348] Build Operating System: Linux 3.2.0-61-generic x86_64 Ubuntu
[    15.348] Current Operating System: Linux alandia-ThinkPad 3.13.0-37-generic #64-Ubuntu SMP Mon Sep 22 21:28:38 UTC 2014 x86_64
[    15.348] Kernel command line: BOOT_IMAGE=/vmlinuz-3.13.0-37-generic root=/dev/mapper/ubuntu--vg-root ro quiet splash vt.handoff=7
[    15.348] Build Date: 30 July 2014  12:21:54AM
[    15.348] xorg-server 2:1.15.1-0ubuntu2.1 (For technical support please see http://www.ubuntu.com/support) 
[    15.348] Current version of pixman: 0.30.2
[    15.348] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    15.348] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    15.348] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Oct 23 17:21:38 2014
[    15.349] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    15.349] (==) No Layout section.  Using the first Screen section.
[    15.349] (==) No screen section available. Using defaults.
[    15.349] (**) |-->Screen "Default Screen Section" (0)
[    15.349] (**) |   |-->Monitor "<default monitor>"
[    15.349] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    15.349] (==) Automatically adding devices
[    15.349] (==) Automatically enabling devices
[    15.349] (==) Automatically adding GPU devices
[    15.349] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    15.349] 	Entry deleted from font path.
[    15.349] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    15.349] 	Entry deleted from font path.
[    15.349] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    15.349] 	Entry deleted from font path.
[    15.349] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    15.349] 	Entry deleted from font path.
[    15.349] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    15.349] 	Entry deleted from font path.
[    15.349] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	built-ins
[    15.349] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[    15.349] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    15.349] (II) Loader magic: 0x7fb8e5cd5d40
[    15.349] (II) Module ABI versions:
[    15.349] 	X.Org ANSI C Emulation: 0.4
[    15.349] 	X.Org Video Driver: 15.0
[    15.349] 	X.Org XInput driver : 20.0
[    15.349] 	X.Org Server Extension : 8.0
[    15.350] (II) xfree86: Adding drm device (/dev/dri/card0)
[    15.351] (--) PCI:*(0:0:2:0) 8086:0a16:17aa:220c rev 11, Mem @ 0xf0000000/4194304, 0xe0000000/268435456, I/O @ 0x00003000/64
[    15.351] Initializing built-in extension Generic Event Extension
[    15.351] Initializing built-in extension SHAPE
[    15.351] Initializing built-in extension MIT-SHM
[    15.351] Initializing built-in extension XInputExtension
[    15.351] Initializing built-in extension XTEST
[    15.351] Initializing built-in extension BIG-REQUESTS
[    15.351] Initializing built-in extension SYNC
[    15.351] Initializing built-in extension XKEYBOARD
[    15.351] Initializing built-in extension XC-MISC
[    15.351] Initializing built-in extension SECURITY
[    15.351] Initializing built-in extension XINERAMA
[    15.351] Initializing built-in extension XFIXES
[    15.351] Initializing built-in extension RENDER
[    15.351] Initializing built-in extension RANDR
[    15.351] Initializing built-in extension COMPOSITE
[    15.351] Initializing built-in extension DAMAGE
[    15.351] Initializing built-in extension MIT-SCREEN-SAVER
[    15.351] Initializing built-in extension DOUBLE-BUFFER
[    15.351] Initializing built-in extension RECORD
[    15.351] Initializing built-in extension DPMS
[    15.351] Initializing built-in extension Present
[    15.351] Initializing built-in extension DRI3
[    15.351] Initializing built-in extension X-Resource
[    15.351] Initializing built-in extension XVideo
[    15.351] Initializing built-in extension XVideo-MotionCompensation
[    15.351] Initializing built-in extension SELinux
[    15.351] Initializing built-in extension XFree86-VidModeExtension
[    15.351] Initializing built-in extension XFree86-DGA
[    15.351] Initializing built-in extension XFree86-DRI
[    15.351] Initializing built-in extension DRI2
[    15.351] (II) LoadModule: "glx"
[    15.352] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[    15.360] (II) Module glx: vendor="X.Org Foundation"
[    15.360] 	compiled for 1.15.1, module version = 1.0.0
[    15.360] 	ABI class: X.Org Server Extension, version 8.0
[    15.360] (==) AIGLX enabled
[    15.360] Loading extension GLX
[    15.360] (==) Matched intel as autoconfigured driver 0
[    15.360] (==) Matched intel as autoconfigured driver 1
[    15.360] (==) Matched modesetting as autoconfigured driver 2
[    15.360] (==) Matched fbdev as autoconfigured driver 3
[    15.360] (==) Matched vesa as autoconfigured driver 4
[    15.360] (==) Assigned the driver to the xf86ConfigLayout
[    15.360] (II) LoadModule: "intel"
[    15.360] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[    15.361] (II) Module intel: vendor="X.Org Foundation"
[    15.361] 	compiled for 1.15.1, module version = 2.99.910
[    15.361] 	Module class: X.Org Video Driver
[    15.361] 	ABI class: X.Org Video Driver, version 15.0
[    15.361] (II) LoadModule: "modesetting"
[    15.361] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    15.361] (II) Module modesetting: vendor="X.Org Foundation"
[    15.361] 	compiled for 1.15.0, module version = 0.8.1
[    15.361] 	Module class: X.Org Video Driver
[    15.361] 	ABI class: X.Org Video Driver, version 15.0
[    15.361] (II) LoadModule: "fbdev"
[    15.361] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    15.361] (II) Module fbdev: vendor="X.Org Foundation"
[    15.361] 	compiled for 1.15.0, module version = 0.4.4
[    15.361] 	Module class: X.Org Video Driver
[    15.361] 	ABI class: X.Org Video Driver, version 15.0
[    15.361] (II) LoadModule: "vesa"
[    15.362] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    15.362] (II) Module vesa: vendor="X.Org Foundation"
[    15.362] 	compiled for 1.15.0, module version = 2.3.3
[    15.362] 	Module class: X.Org Video Driver
[    15.362] 	ABI class: X.Org Video Driver, version 15.0
[    15.362] (II) intel: Driver for Intel(R) Integrated Graphics Chipsets:
	i810, i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G,
	915G, E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM,
	Pineview G, 965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33,
	GM45, 4 Series, G45/G43, Q45/Q43, G41, B43
[    15.362] (II) intel: Driver for Intel(R) HD Graphics: 2000-6000
[    15.362] (II) intel: Driver for Intel(R) Iris(TM) Graphics: 5100, 6100
[    15.362] (II) intel: Driver for Intel(R) Iris(TM) Pro Graphics: 5200, 6200, P6300
[    15.362] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    15.362] (II) FBDEV: driver for framebuffer: fbdev
[    15.362] (II) VESA: driver for VESA chipsets: vesa
[    15.362] (++) using VT number 7

[    15.362] (II) intel(0): SNA compiled: xserver-xorg-video-intel 2:2.99.910-0ubuntu1.1 (Maarten Lankhorst <maarten.lankhorst@ubuntu.com>)
[    15.362] (WW) Falling back to old probe method for modesetting
[    15.362] (WW) Falling back to old probe method for fbdev
[    15.362] (II) Loading sub module "fbdevhw"
[    15.362] (II) LoadModule: "fbdevhw"
[    15.362] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    15.362] (II) Module fbdevhw: vendor="X.Org Foundation"
[    15.362] 	compiled for 1.15.1, module version = 0.0.2
[    15.362] 	ABI class: X.Org Video Driver, version 15.0
[    15.362] (WW) Falling back to old probe method for vesa
[    15.362] (--) intel(0): Integrated Graphics Chipset: Intel(R) HD Graphics 4400
[    15.362] (--) intel(0): CPU: x86-64, sse2, sse3, ssse3, sse4.1, sse4.2, avx, avx2
[    15.362] (II) intel(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    15.362] (==) intel(0): Depth 24, (--) framebuffer bpp 32
[    15.363] (==) intel(0): RGB weight 888
[    15.363] (==) intel(0): Default visual is TrueColor
[    15.363] (**) intel(0): Framebuffer tiled
[    15.363] (**) intel(0): Pixmaps tiled
[    15.363] (**) intel(0): "Tear free" disabled
[    15.363] (**) intel(0): Forcing per-crtc-pixmaps? no
[    15.363] (II) intel(0): Output eDP1 has no monitor section
[    15.363] (--) intel(0): found backlight control interface acpi_video0 (type 'firmware')
[    15.363] (II) intel(0): Output DP1 has no monitor section
[    15.363] (II) intel(0): Output HDMI1 has no monitor section
[    15.363] (II) intel(0): Output DP2 has no monitor section
[    15.363] (II) intel(0): Output HDMI2 has no monitor section
[    15.363] (II) intel(0): Output VIRTUAL1 has no monitor section
[    15.363] (--) intel(0): Output eDP1 using initial mode 1920x1080 on pipe 0
[    15.363] (==) intel(0): DPI set to (96, 96)
[    15.363] (II) Loading sub module "dri2"
[    15.363] (II) LoadModule: "dri2"
[    15.363] (II) Module "dri2" already built-in
[    15.363] (II) UnloadModule: "modesetting"
[    15.363] (II) Unloading modesetting
[    15.363] (II) UnloadModule: "fbdev"
[    15.363] (II) Unloading fbdev
[    15.363] (II) UnloadSubModule: "fbdevhw"
[    15.363] (II) Unloading fbdevhw
[    15.363] (II) UnloadModule: "vesa"
[    15.363] (II) Unloading vesa
[    15.363] (==) Depth 24 pixmap format is 32 bpp
[    15.363] (II) intel(0): SNA initialized with Haswell (gen7.5, gt2) backend
[    15.363] (==) intel(0): Backing store enabled
[    15.363] (==) intel(0): Silken mouse enabled
[    15.363] (II) intel(0): HW Cursor enabled
[    15.363] (II) intel(0): RandR 1.2 enabled, ignore the following RandR disabled message.
[    15.364] (==) intel(0): DPMS enabled
[    15.364] (II) intel(0): [DRI2] Setup complete
[    15.364] (II) intel(0): [DRI2]   DRI driver: i965
[    15.364] (II) intel(0): [DRI2]   VDPAU driver: i965
[    15.364] (II) intel(0): direct rendering: DRI2 Enabled
[    15.364] (==) intel(0): hotplug detection: "enabled"
[    15.364] (--) RandR disabled
[    15.369] (II) SELinux: Disabled on system
[    15.373] (II) AIGLX: enabled GLX_MESA_copy_sub_buffer
[    15.373] (II) AIGLX: enabled GLX_ARB_create_context
[    15.373] (II) AIGLX: enabled GLX_ARB_create_context_profile
[    15.373] (II) AIGLX: enabled GLX_EXT_create_context_es2_profile
[    15.373] (II) AIGLX: enabled GLX_INTEL_swap_event
[    15.373] (II) AIGLX: enabled GLX_SGI_swap_control and GLX_MESA_swap_control
[    15.373] (II) AIGLX: enabled GLX_EXT_framebuffer_sRGB
[    15.373] (II) AIGLX: enabled GLX_ARB_fbconfig_float
[    15.373] (II) AIGLX: GLX_EXT_texture_from_pixmap backed by buffer objects
[    15.373] (II) AIGLX: enabled GLX_ARB_create_context_robustness
[    15.373] (II) AIGLX: Loaded and initialized i965
[    15.373] (II) GLX: Initialized DRI2 GL provider for screen 0
[    15.375] (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[    15.384] (II) intel(0): Setting screen physical size to 508 x 285
[    15.389] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    15.390] (II) config/udev: Adding input device Power Button (/dev/input/event2)
[    15.390] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    15.390] (II) LoadModule: "evdev"
[    15.390] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    15.391] (II) Module evdev: vendor="X.Org Foundation"
[    15.391] 	compiled for 1.15.0, module version = 2.8.2
[    15.391] 	Module class: X.Org XInput Driver
[    15.391] 	ABI class: X.Org XInput driver, version 20.0
[    15.391] (II) Using input driver 'evdev' for 'Power Button'
[    15.391] (**) Power Button: always reports core events
[    15.391] (**) evdev: Power Button: Device: "/dev/input/event2"
[    15.391] (--) evdev: Power Button: Vendor 0 Product 0x1
[    15.391] (--) evdev: Power Button: Found keys
[    15.391] (II) evdev: Power Button: Configuring as keyboard
[    15.391] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input2/event2"
[    15.391] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    15.391] (**) Option "xkb_rules" "evdev"
[    15.391] (**) Option "xkb_model" "pc105"
[    15.391] (**) Option "xkb_layout" "de"
[    15.393] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[    15.393] (II) config/udev: Adding input device Video Bus (/dev/input/event6)
[    15.393] (**) Video Bus: Applying InputClass "evdev keyboard catchall"
[    15.394] (II) Using input driver 'evdev' for 'Video Bus'
[    15.394] (**) Video Bus: always reports core events
[    15.394] (**) evdev: Video Bus: Device: "/dev/input/event6"
[    15.394] (--) evdev: Video Bus: Vendor 0 Product 0x6
[    15.394] (--) evdev: Video Bus: Found keys
[    15.394] (II) evdev: Video Bus: Configuring as keyboard
[    15.394] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0A08:00/LNXVIDEO:00/input/input8/event6"
[    15.394] (II) XINPUT: Adding extended input device "Video Bus" (type: KEYBOARD, id 7)
[    15.394] (**) Option "xkb_rules" "evdev"
[    15.394] (**) Option "xkb_model" "pc105"
[    15.394] (**) Option "xkb_layout" "de"
[    15.394] (II) config/udev: Adding input device Lid Switch (/dev/input/event0)
[    15.394] (II) No input driver specified, ignoring this device.
[    15.394] (II) This device may have been added with another device file.
[    15.394] (II) config/udev: Adding input device Sleep Button (/dev/input/event1)
[    15.394] (**) Sleep Button: Applying InputClass "evdev keyboard catchall"
[    15.394] (II) Using input driver 'evdev' for 'Sleep Button'
[    15.394] (**) Sleep Button: always reports core events
[    15.394] (**) evdev: Sleep Button: Device: "/dev/input/event1"
[    15.394] (--) evdev: Sleep Button: Vendor 0 Product 0x3
[    15.394] (--) evdev: Sleep Button: Found keys
[    15.394] (II) evdev: Sleep Button: Configuring as keyboard
[    15.394] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0E:00/input/input1/event1"
[    15.394] (II) XINPUT: Adding extended input device "Sleep Button" (type: KEYBOARD, id 8)
[    15.394] (**) Option "xkb_rules" "evdev"
[    15.394] (**) Option "xkb_model" "pc105"
[    15.394] (**) Option "xkb_layout" "de"
[    15.395] (II) config/udev: Adding drm device (/dev/dri/card0) card0 /sys/devices/pci0000:00/0000:00:02.0/drm/card0
[    15.395] (II) config/udev: Ignoring already known drm device (/dev/dri/card0)
[    15.395] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=3 (/dev/input/event14)
[    15.395] (II) No input driver specified, ignoring this device.
[    15.395] (II) This device may have been added with another device file.
[    15.395] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=7 (/dev/input/event13)
[    15.395] (II) No input driver specified, ignoring this device.
[    15.395] (II) This device may have been added with another device file.
[    15.395] (II) config/udev: Adding input device HDA Intel HDMI HDMI/DP,pcm=8 (/dev/input/event12)
[    15.395] (II) No input driver specified, ignoring this device.
[    15.395] (II) This device may have been added with another device file.
[    15.395] (II) config/udev: Adding input device ThinkPad USB Laser Mouse (/dev/input/event7)
[    15.395] (**) ThinkPad USB Laser Mouse: Applying InputClass "evdev pointer catchall"
[    15.395] (II) Using input driver 'evdev' for 'ThinkPad USB Laser Mouse'
[    15.395] (**) ThinkPad USB Laser Mouse: always reports core events
[    15.395] (**) evdev: ThinkPad USB Laser Mouse: Device: "/dev/input/event7"
[    15.395] (--) evdev: ThinkPad USB Laser Mouse: Vendor 0x17ef Product 0x6044
[    15.395] (--) evdev: ThinkPad USB Laser Mouse: Found 9 mouse buttons
[    15.395] (--) evdev: ThinkPad USB Laser Mouse: Found scroll wheel(s)
[    15.395] (--) evdev: ThinkPad USB Laser Mouse: Found relative axes
[    15.395] (--) evdev: ThinkPad USB Laser Mouse: Found x and y relative axes
[    15.395] (II) evdev: ThinkPad USB Laser Mouse: Configuring as mouse
[    15.395] (II) evdev: ThinkPad USB Laser Mouse: Adding scrollwheel support
[    15.395] (**) evdev: ThinkPad USB Laser Mouse: YAxisMapping: buttons 4 and 5
[    15.395] (**) evdev: ThinkPad USB Laser Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    15.395] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.4/2-3.4.1/2-3.4.1:1.0/input/input9/event7"
[    15.395] (II) XINPUT: Adding extended input device "ThinkPad USB Laser Mouse" (type: MOUSE, id 9)
[    15.395] (II) evdev: ThinkPad USB Laser Mouse: initialized for relative axes.
[    15.396] (**) ThinkPad USB Laser Mouse: (accel) keeping acceleration scheme 1
[    15.396] (**) ThinkPad USB Laser Mouse: (accel) acceleration profile 0
[    15.396] (**) ThinkPad USB Laser Mouse: (accel) acceleration factor: 2.000
[    15.396] (**) ThinkPad USB Laser Mouse: (accel) acceleration threshold: 4
[    15.396] (II) config/udev: Adding input device ThinkPad USB Laser Mouse (/dev/input/mouse1)
[    15.396] (II) No input driver specified, ignoring this device.
[    15.396] (II) This device may have been added with another device file.
[    15.396] (II) config/udev: Adding input device Burr-Brown from TI               USB Audio CODEC  (/dev/input/event5)
[    15.396] (**) Burr-Brown from TI               USB Audio CODEC : Applying InputClass "evdev keyboard catchall"
[    15.396] (II) Using input driver 'evdev' for 'Burr-Brown from TI               USB Audio CODEC '
[    15.396] (**) Burr-Brown from TI               USB Audio CODEC : always reports core events
[    15.396] (**) evdev: Burr-Brown from TI               USB Audio CODEC : Device: "/dev/input/event5"
[    15.396] (--) evdev: Burr-Brown from TI               USB Audio CODEC : Vendor 0x8bb Product 0x2902
[    15.396] (--) evdev: Burr-Brown from TI               USB Audio CODEC : Found keys
[    15.396] (II) evdev: Burr-Brown from TI               USB Audio CODEC : Configuring as keyboard
[    15.396] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.4/2-3.4.2/2-3.4.2:1.3/input/input7/event5"
[    15.396] (II) XINPUT: Adding extended input device "Burr-Brown from TI               USB Audio CODEC " (type: KEYBOARD, id 10)
[    15.396] (**) Option "xkb_rules" "evdev"
[    15.396] (**) Option "xkb_model" "pc104"
[    15.396] (**) Option "xkb_layout" "us"
[    15.398] (II) XKB: reuse xkmfile /var/lib/xkb/server-D378AD8F86E560F712A83EE36E4E5E92C595B9BD.xkm
[    15.399] (II) config/udev: Adding input device Integrated Camera (/dev/input/event15)
[    15.399] (**) Integrated Camera: Applying InputClass "evdev keyboard catchall"
[    15.399] (II) Using input driver 'evdev' for 'Integrated Camera'
[    15.399] (**) Integrated Camera: always reports core events
[    15.399] (**) evdev: Integrated Camera: Device: "/dev/input/event15"
[    15.399] (--) evdev: Integrated Camera: Vendor 0x4ca Product 0x7035
[    15.399] (--) evdev: Integrated Camera: Found keys
[    15.399] (II) evdev: Integrated Camera: Configuring as keyboard
[    15.399] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:14.0/usb2/2-8/2-8:1.0/input/input16/event15"
[    15.399] (II) XINPUT: Adding extended input device "Integrated Camera" (type: KEYBOARD, id 11)
[    15.399] (**) Option "xkb_rules" "evdev"
[    15.399] (**) Option "xkb_model" "pc105"
[    15.399] (**) Option "xkb_layout" "de"
[    15.401] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[    15.402] (II) config/udev: Adding input device HDA Intel PCH Mic (/dev/input/event11)
[    15.402] (II) No input driver specified, ignoring this device.
[    15.402] (II) This device may have been added with another device file.
[    15.402] (II) config/udev: Adding input device HDA Intel PCH Headphone (/dev/input/event10)
[    15.402] (II) No input driver specified, ignoring this device.
[    15.402] (II) This device may have been added with another device file.
[    15.402] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event3)
[    15.402] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    15.402] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    15.402] (**) AT Translated Set 2 keyboard: always reports core events
[    15.402] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event3"
[    15.402] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    15.402] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    15.402] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    15.402] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input3/event3"
[    15.402] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 12)
[    15.402] (**) Option "xkb_rules" "evdev"
[    15.402] (**) Option "xkb_model" "pc105"
[    15.402] (**) Option "xkb_layout" "de"
[    15.402] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/event4)
[    15.402] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "evdev touchpad catchall"
[    15.402] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "touchpad catchall"
[    15.402] (**) SynPS/2 Synaptics TouchPad: Applying InputClass "Default clickpad buttons"
[    15.402] (II) LoadModule: "synaptics"
[    15.403] (II) Loading /usr/lib/xorg/modules/input/synaptics_drv.so
[    15.403] (II) Module synaptics: vendor="X.Org Foundation"
[    15.403] 	compiled for 1.15.0, module version = 1.7.4
[    15.403] 	Module class: X.Org XInput Driver
[    15.403] 	ABI class: X.Org XInput driver, version 20.0
[    15.403] (II) Using input driver 'synaptics' for 'SynPS/2 Synaptics TouchPad'
[    15.403] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    15.403] (**) Option "Device" "/dev/input/event4"
[    15.460] (II) synaptics: SynPS/2 Synaptics TouchPad: found clickpad property
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: x-axis range 1024 - 5112 (res 0)
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: y-axis range 2024 - 4832 (res 0)
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: pressure range 0 - 255
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: finger width range 0 - 15
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: buttons: left double triple
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: Vendor 0x2 Product 0x7
[    15.460] (**) Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
[    15.460] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    15.460] (**) SynPS/2 Synaptics TouchPad: always reports core events
[    15.492] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input5/event4"
[    15.492] (II) XINPUT: Adding extended input device "SynPS/2 Synaptics TouchPad" (type: TOUCHPAD, id 13)
[    15.492] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MinSpeed is now constant deceleration 2.5
[    15.492] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) MaxSpeed is now 1.75
[    15.492] (**) synaptics: SynPS/2 Synaptics TouchPad: (accel) AccelFactor is now 0.040
[    15.492] (**) SynPS/2 Synaptics TouchPad: (accel) keeping acceleration scheme 1
[    15.492] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration profile 1
[    15.492] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration factor: 2.000
[    15.492] (**) SynPS/2 Synaptics TouchPad: (accel) acceleration threshold: 4
[    15.492] (--) synaptics: SynPS/2 Synaptics TouchPad: touchpad found
[    15.492] (II) config/udev: Adding input device SynPS/2 Synaptics TouchPad (/dev/input/mouse0)
[    15.492] (**) SynPS/2 Synaptics TouchPad: Ignoring device from InputClass "touchpad ignore duplicates"
[    15.492] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/event8)
[    15.492] (**) TPPS/2 IBM TrackPoint: Applying InputClass "evdev pointer catchall"
[    15.492] (**) TPPS/2 IBM TrackPoint: Applying InputClass "trackpoint catchall"
[    15.492] (II) Using input driver 'evdev' for 'TPPS/2 IBM TrackPoint'
[    15.492] (**) TPPS/2 IBM TrackPoint: always reports core events
[    15.492] (**) evdev: TPPS/2 IBM TrackPoint: Device: "/dev/input/event8"
[    15.492] (--) evdev: TPPS/2 IBM TrackPoint: Vendor 0x2 Product 0xa
[    15.492] (--) evdev: TPPS/2 IBM TrackPoint: Found 3 mouse buttons
[    15.492] (--) evdev: TPPS/2 IBM TrackPoint: Found relative axes
[    15.492] (--) evdev: TPPS/2 IBM TrackPoint: Found x and y relative axes
[    15.492] (II) evdev: TPPS/2 IBM TrackPoint: Configuring as mouse
[    15.492] (**) Option "Emulate3Buttons" "true"
[    15.492] (**) Option "EmulateWheel" "true"
[    15.492] (**) Option "EmulateWheelButton" "2"
[    15.492] (**) Option "YAxisMapping" "4 5"
[    15.492] (**) evdev: TPPS/2 IBM TrackPoint: YAxisMapping: buttons 4 and 5
[    15.492] (**) Option "XAxisMapping" "6 7"
[    15.492] (**) evdev: TPPS/2 IBM TrackPoint: XAxisMapping: buttons 6 and 7
[    15.492] (**) evdev: TPPS/2 IBM TrackPoint: EmulateWheelButton: 2, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    15.492] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/serio2/input/input6/event8"
[    15.492] (II) XINPUT: Adding extended input device "TPPS/2 IBM TrackPoint" (type: MOUSE, id 14)
[    15.492] (II) evdev: TPPS/2 IBM TrackPoint: initialized for relative axes.
[    15.493] (**) TPPS/2 IBM TrackPoint: (accel) keeping acceleration scheme 1
[    15.493] (**) TPPS/2 IBM TrackPoint: (accel) acceleration profile 0
[    15.493] (**) TPPS/2 IBM TrackPoint: (accel) acceleration factor: 2.000
[    15.493] (**) TPPS/2 IBM TrackPoint: (accel) acceleration threshold: 4
[    15.493] (II) config/udev: Adding input device TPPS/2 IBM TrackPoint (/dev/input/mouse2)
[    15.493] (II) No input driver specified, ignoring this device.
[    15.493] (II) This device may have been added with another device file.
[    15.493] (II) config/udev: Adding input device ThinkPad Extra Buttons (/dev/input/event9)
[    15.493] (**) ThinkPad Extra Buttons: Applying InputClass "evdev keyboard catchall"
[    15.493] (II) Using input driver 'evdev' for 'ThinkPad Extra Buttons'
[    15.493] (**) ThinkPad Extra Buttons: always reports core events
[    15.493] (**) evdev: ThinkPad Extra Buttons: Device: "/dev/input/event9"
[    15.493] (--) evdev: ThinkPad Extra Buttons: Vendor 0x17aa Product 0x5054
[    15.493] (--) evdev: ThinkPad Extra Buttons: Found keys
[    15.493] (II) evdev: ThinkPad Extra Buttons: Configuring as keyboard
[    15.493] (**) Option "config_info" "udev:/sys/devices/platform/thinkpad_acpi/input/input10/event9"
[    15.494] (II) XINPUT: Adding extended input device "ThinkPad Extra Buttons" (type: KEYBOARD, id 15)
[    15.494] (**) Option "xkb_rules" "evdev"
[    15.494] (**) Option "xkb_model" "pc105"
[    15.494] (**) Option "xkb_layout" "de"
[    15.961] (II) config/udev: Adding input device ThinkPad USB Laser Mouse (/dev/input/mouse1)
[    15.961] (II) No input driver specified, ignoring this device.
[    15.961] (II) This device may have been added with another device file.
[    15.961] (WW) config/udev: device ThinkPad USB Laser Mouse already added. Ignoring.
[    15.982] (WW) config/udev: device Burr-Brown from TI               USB Audio CODEC  already added. Ignoring.
[    16.731] (II) intel(0): EDID vendor "LGD", prod id 1034
[    16.732] (II) intel(0): Printing DDC gathered Modelines:
[    16.732] (II) intel(0): Modeline "1920x1080"x0.0  140.10  1920 1980 2016 2092  1080 1083 1088 1116 +hsync -vsync (67.0 kHz eP)
[    20.343] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[    20.519] (II) XKB: reuse xkmfile /var/lib/xkb/server-81907AB388B478D711E6423DD8B0048239BE0CB6.xkm
[    20.540] (II) XKB: reuse xkmfile /var/lib/xkb/server-81907AB388B478D711E6423DD8B0048239BE0CB6.xkm
[    22.032] (II) XKB: reuse xkmfile /var/lib/xkb/server-A237F4D5ECC0A2998042D3B58D9A7CE5E820BA0E.xkm
[  2929.926] (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none
[  3328.143] (II) intel(0): switch to mode 1920x1080@60.0 on eDP1 using pipe 0, position (0, 0), rotation normal, reflection none