ubuntuusers.de

kompletter Syslog

Datum:
26. Oktober 2011 14:37
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
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
Oct 26 10:50:23 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="959" x-info="http://www.rsyslog.com"] rsyslogd was HUPed
Oct 26 10:51:11 desktop anacron[1080]: Job `cron.daily' terminated
Oct 26 10:51:11 desktop anacron[1080]: Normal exit (1 job run)
Oct 26 10:55:11 desktop ntfs-3g[2045]: Unmounting /dev/sdh1 (201109646)
Oct 26 10:55:12 desktop ata_id[3831]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:55:28 desktop ata_id[3920]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:09 desktop ata_id[3945]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:09 desktop ata_id[3956]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:10 desktop ata_id[3964]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:10 desktop ata_id[3977]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:11 desktop ata_id[3984]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:11 desktop ata_id[3997]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:58:50 desktop ata_id[4027]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 10:59:06 desktop ata_id[4111]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:02:57 desktop ata_id[4183]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:03:13 desktop ata_id[4286]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:15:16 desktop ata_id[4311]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:15:16 desktop ata_id[4322]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:15:18 desktop ata_id[4345]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:15:34 desktop ata_id[4436]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 11:16:53 desktop dbus[984]: [system] Reloaded configuration
Oct 26 11:17:01  dbus[984]: last message repeated 3 times
Oct 26 11:17:01 desktop CRON[5059]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Oct 26 11:17:06 desktop dbus[984]: [system] Reloaded configuration
Oct 26 11:31:01 desktop dbus[984]: [system] Reloaded configuration
Oct 26 11:31:01 desktop dbus[984]: [system] Reloaded configuration
Oct 26 11:31:02 desktop kernel: [ 3897.008025] ata5.00: qc timeout (cmd 0xa0)
Oct 26 11:31:02 desktop kernel: [ 3897.008037] ata5.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x6 frozen
Oct 26 11:31:02 desktop kernel: [ 3897.008041] ata5.00: irq_stat 0x40000001
Oct 26 11:31:02 desktop kernel: [ 3897.008046] sr 4:0:0:0: CDB: Test Unit Ready: 00 00 00 00 00 00
Oct 26 11:31:02 desktop kernel: [ 3897.008059] ata5.00: cmd a0/00:00:00:00:00/00:00:00:00:00/a0 tag 0
Oct 26 11:31:02 desktop kernel: [ 3897.008061]          res 51/20:03:00:00:00/00:00:00:00:00/a0 Emask 0x5 (timeout)
Oct 26 11:31:02 desktop kernel: [ 3897.008065] ata5.00: status: { DRDY ERR }
Oct 26 11:31:02 desktop kernel: [ 3897.008070] ata5: hard resetting link
Oct 26 11:31:03 desktop kernel: [ 3897.500055] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 11:31:03 desktop kernel: [ 3897.504827] ata5.00: configured for UDMA/33
Oct 26 11:31:03 desktop kernel: [ 3897.520052] ata5: EH complete
Oct 26 11:31:11 desktop dbus[984]: [system] Activating service name='com.ubuntu.DeviceDriver' (using servicehelper)
Oct 26 11:31:12 desktop dbus[984]: [system] Successfully activated service 'com.ubuntu.DeviceDriver'
Oct 26 11:31:49 desktop dbus[984]: [system] Activating service name='com.ubuntu.SystemService' (using servicehelper)
Oct 26 11:31:49 desktop dbus[984]: [system] Successfully activated service 'com.ubuntu.SystemService'
Oct 26 12:17:01 desktop CRON[8400]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Oct 26 13:17:01 desktop CRON[8600]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Oct 26 13:25:13 desktop dbus[984]: [system] Reloaded configuration
Oct 26 13:26:16  dbus[984]: last message repeated 11 times
Oct 26 13:27:28  dbus[984]: last message repeated 2 times
Oct 26 14:04:28 desktop ata_id[13072]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 14:07:12 desktop udevd[4344]: inotify_add_watch(6, /dev/dm-0, 10) failed: No such file or directory
Oct 26 14:07:13 desktop ata_id[13241]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 14:10:22 desktop ata_id[13260]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 14:10:52 desktop ata_id[13267]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 14:11:02 desktop udevd[4374]: inotify_add_watch(6, /dev/dm-0, 10) failed: No such file or directory
Oct 26 14:11:04 desktop ata_id[13329]: HDIO_GET_IDENTITY failed for '/dev/sdh': Invalid argument
Oct 26 14:17:02 desktop CRON[13337]: (root) CMD (   cd / && run-parts --report /etc/cron.hourly)
Oct 26 14:18:16 desktop kernel: [13929.344301] init: tty4 main process (1060) killed by TERM signal
Oct 26 14:18:16 desktop kernel: Kernel logging (proc) stopped.
Oct 26 14:18:16 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="959" x-info="http://www.rsyslog.com"] exiting on signal 15.
Oct 26 14:19:33 desktop kernel: imklog 5.8.1, log source = /proc/kmsg started.
Oct 26 14:19:33 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="982" x-info="http://www.rsyslog.com"] start
Oct 26 14:19:33 desktop rsyslogd: rsyslogd's groupid changed to 103
Oct 26 14:19:33 desktop rsyslogd: rsyslogd's userid changed to 101
Oct 26 14:19:33 desktop rsyslogd-2039: Could no open output pipe '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Oct 26 14:19:33 desktop modem-manager[1028]: <info>  ModemManager (version 0.5) starting...
Oct 26 14:19:34 desktop kernel: [    0.000000] Initializing cgroup subsys cpuset
Oct 26 14:19:34 desktop kernel: [    0.000000] Initializing cgroup subsys cpu
Oct 26 14:19:34 desktop kernel: [    0.000000] Linux version 3.0.0-13-generic (buildd@allspice) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #21-Ubuntu SMP Mon Oct 17 20:18:51 UTC 2011 (Ubuntu 3.0.0-13.21-generic 3.0.6)
Oct 26 14:19:34 desktop kernel: [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-13-generic root=UUID=426ef53b-3501-49a3-af67-a6a18cff0233 ro quiet splash vt.handoff=7
Oct 26 14:19:34 desktop kernel: [    0.000000] KERNEL supported cpus:
Oct 26 14:19:34 desktop kernel: [    0.000000]   Intel GenuineIntel
Oct 26 14:19:34 desktop kernel: [    0.000000]   AMD AuthenticAMD
Oct 26 14:19:34 desktop kernel: [    0.000000]   Centaur CentaurHauls
Oct 26 14:19:34 desktop kernel: [    0.000000] BIOS-provided physical RAM map:
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfeb0000 (usable)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfeb0000 - 00000000cfee3000 (ACPI NVS)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfee3000 - 00000000cfef0000 (ACPI data)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000]  BIOS-e820: 0000000100000000 - 0000000130000000 (usable)
Oct 26 14:19:34 desktop kernel: [    0.000000] NX (Execute Disable) protection: active
Oct 26 14:19:34 desktop kernel: [    0.000000] DMI 2.4 present.
Oct 26 14:19:34 desktop kernel: [    0.000000] DMI: Gigabyte Technology Co., Ltd. EP45-DS3R/EP45-DS3R, BIOS F10 09/22/2008
Oct 26 14:19:34 desktop kernel: [    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 26 14:19:34 desktop kernel: [    0.000000] No AGP bridge found
Oct 26 14:19:34 desktop kernel: [    0.000000] last_pfn = 0x130000 max_arch_pfn = 0x400000000
Oct 26 14:19:34 desktop kernel: [    0.000000] MTRR default type: uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000] MTRR fixed ranges enabled:
Oct 26 14:19:34 desktop kernel: [    0.000000]   00000-9FFFF write-back
Oct 26 14:19:34 desktop kernel: [    0.000000]   A0000-BFFFF uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000]   C0000-CCFFF write-protect
Oct 26 14:19:34 desktop kernel: [    0.000000]   CD000-EFFFF uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000]   F0000-FFFFF write-through
Oct 26 14:19:34 desktop kernel: [    0.000000] MTRR variable ranges enabled:
Oct 26 14:19:34 desktop kernel: [    0.000000]   0 base 000000000 mask F00000000 write-back
Oct 26 14:19:34 desktop kernel: [    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000]   3 base 100000000 mask FC0000000 write-back
Oct 26 14:19:34 desktop kernel: [    0.000000]   4 base 130000000 mask FF0000000 uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000]   5 base 0CFF00000 mask FFFF00000 uncachable
Oct 26 14:19:34 desktop kernel: [    0.000000]   6 disabled
Oct 26 14:19:34 desktop kernel: [    0.000000]   7 disabled
Oct 26 14:19:34 desktop kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Oct 26 14:19:34 desktop kernel: [    0.000000] original variable MTRRs
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 0, base: 0GB, range: 4GB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 1, base: 3584MB, range: 512MB, type UC
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 2, base: 3328MB, range: 256MB, type UC
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 3, base: 4GB, range: 1GB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 4, base: 4864MB, range: 256MB, type UC
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 5, base: 3327MB, range: 1MB, type UC
Oct 26 14:19:34 desktop kernel: [    0.000000] total RAM covered: 4095M
Oct 26 14:19:34 desktop kernel: [    0.000000] Found optimal setting for mtrr clean up
Oct 26 14:19:34 desktop kernel: [    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 6  	lose cover RAM: 0G
Oct 26 14:19:34 desktop kernel: [    0.000000] New variable MTRRs
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 0, base: 0GB, range: 2GB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 1, base: 2GB, range: 1GB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 2, base: 3GB, range: 256MB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 3, base: 3327MB, range: 1MB, type UC
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 4, base: 4GB, range: 512MB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] reg 5, base: 4608MB, range: 256MB, type WB
Oct 26 14:19:34 desktop kernel: [    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
Oct 26 14:19:34 desktop kernel: [    0.000000] last_pfn = 0xcfeb0 max_arch_pfn = 0x400000000
Oct 26 14:19:34 desktop kernel: [    0.000000] found SMP MP-table at [ffff8800000f59d0] f59d0
Oct 26 14:19:34 desktop kernel: [    0.000000] initial memory mapped : 0 - 20000000
Oct 26 14:19:34 desktop kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
Oct 26 14:19:34 desktop kernel: [    0.000000] init_memory_mapping: 0000000000000000-00000000cfeb0000
Oct 26 14:19:34 desktop kernel: [    0.000000]  0000000000 - 00cfe00000 page 2M
Oct 26 14:19:34 desktop kernel: [    0.000000]  00cfe00000 - 00cfeb0000 page 4k
Oct 26 14:19:34 desktop kernel: [    0.000000] kernel direct mapping tables up to cfeb0000 @ cfeaa000-cfeb0000
Oct 26 14:19:34 desktop kernel: [    0.000000] init_memory_mapping: 0000000100000000-0000000130000000
Oct 26 14:19:34 desktop kernel: [    0.000000]  0100000000 - 0130000000 page 2M
Oct 26 14:19:34 desktop kernel: [    0.000000] kernel direct mapping tables up to 130000000 @ 12fffa000-130000000
Oct 26 14:19:34 desktop kernel: [    0.000000] RAMDISK: 365b6000 - 372d3000
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: RSDP 00000000000f7800 00014 (v00 GBT   )
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: RSDT 00000000cfee3040 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: FACP 00000000cfee30c0 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: DSDT 00000000cfee3180 050F5 (v01 GBT    GBTUACPI 00001000 MSFT 0100000C)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: FACS 00000000cfeb0000 00040
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: HPET 00000000cfee83c0 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: MCFG 00000000cfee8440 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: APIC 00000000cfee82c0 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: SSDT 00000000cfee8e20 003AB (v01  PmRef    CpuPm 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 26 14:19:34 desktop kernel: [    0.000000] No NUMA configuration found
Oct 26 14:19:34 desktop kernel: [    0.000000] Faking a node at 0000000000000000-0000000130000000
Oct 26 14:19:34 desktop kernel: [    0.000000] Initmem setup node 0 0000000000000000-0000000130000000
Oct 26 14:19:34 desktop kernel: [    0.000000]   NODE_DATA [000000012fffb000 - 000000012fffffff]
Oct 26 14:19:34 desktop kernel: [    0.000000]  [ffffea0000000000-ffffea00043fffff] PMD -> [ffff88012b600000-ffff88012effffff] on node 0
Oct 26 14:19:34 desktop kernel: [    0.000000] Zone PFN ranges:
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA      0x00000010 -> 0x00001000
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA32    0x00001000 -> 0x00100000
Oct 26 14:19:34 desktop kernel: [    0.000000]   Normal   0x00100000 -> 0x00130000
Oct 26 14:19:34 desktop kernel: [    0.000000] Movable zone start PFN for each node
Oct 26 14:19:34 desktop kernel: [    0.000000] early_node_map[3] active PFN ranges
Oct 26 14:19:34 desktop kernel: [    0.000000]     0: 0x00000010 -> 0x0000009e
Oct 26 14:19:34 desktop kernel: [    0.000000]     0: 0x00000100 -> 0x000cfeb0
Oct 26 14:19:34 desktop kernel: [    0.000000]     0: 0x00100000 -> 0x00130000
Oct 26 14:19:34 desktop kernel: [    0.000000] On node 0 totalpages: 1048126
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA zone: 56 pages used for memmap
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA zone: 5 pages reserved
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA zone: 3921 pages, LIFO batch:0
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA32 zone: 14280 pages used for memmap
Oct 26 14:19:34 desktop kernel: [    0.000000]   DMA32 zone: 833256 pages, LIFO batch:31
Oct 26 14:19:34 desktop kernel: [    0.000000]   Normal zone: 2688 pages used for memmap
Oct 26 14:19:34 desktop kernel: [    0.000000]   Normal zone: 193920 pages, LIFO batch:31
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x03] enabled)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x02] enabled)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Oct 26 14:19:34 desktop kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: IRQ0 used by override.
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: IRQ2 used by override.
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: IRQ9 used by override.
Oct 26 14:19:34 desktop kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Oct 26 14:19:34 desktop kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Oct 26 14:19:34 desktop kernel: [    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
Oct 26 14:19:34 desktop kernel: [    0.000000] nr_irqs_gsi: 40
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfeb0000 - 00000000cfee3000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fec00000
Oct 26 14:19:34 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
Oct 26 14:19:34 desktop kernel: [    0.000000] Allocating PCI resources starting at e4000000 (gap: e4000000:1ac00000)
Oct 26 14:19:34 desktop kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Oct 26 14:19:34 desktop kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
Oct 26 14:19:34 desktop kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88012fc00000 s79616 r8192 d22784 u524288
Oct 26 14:19:34 desktop kernel: [    0.000000] pcpu-alloc: s79616 r8192 d22784 u524288 alloc=1*2097152
Oct 26 14:19:34 desktop kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 
Oct 26 14:19:34 desktop kernel: [    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1031097
Oct 26 14:19:34 desktop kernel: [    0.000000] Policy zone: Normal
Oct 26 14:19:34 desktop kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-13-generic root=UUID=426ef53b-3501-49a3-af67-a6a18cff0233 ro quiet splash vt.handoff=7
Oct 26 14:19:34 desktop kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Oct 26 14:19:34 desktop kernel: [    0.000000] Checking aperture...
Oct 26 14:19:34 desktop kernel: [    0.000000] No AGP bridge found
Oct 26 14:19:34 desktop kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Oct 26 14:19:34 desktop kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Oct 26 14:19:34 desktop kernel: [    0.000000] Memory: 4039700k/4980736k available (6105k kernel code, 788232k absent, 152804k reserved, 4879k data, 984k init)
Oct 26 14:19:34 desktop kernel: [    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Oct 26 14:19:34 desktop kernel: [    0.000000] Hierarchical RCU implementation.
Oct 26 14:19:34 desktop kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Oct 26 14:19:34 desktop kernel: [    0.000000] NR_IRQS:16640 nr_irqs:712 16
Oct 26 14:19:34 desktop kernel: [    0.000000] vt handoff: transparent VT on vt#7
Oct 26 14:19:34 desktop kernel: [    0.000000] Console: colour dummy device 80x25
Oct 26 14:19:34 desktop kernel: [    0.000000] console [tty0] enabled
Oct 26 14:19:34 desktop kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Oct 26 14:19:34 desktop kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 26 14:19:34 desktop kernel: [    0.000000] hpet clockevent registered
Oct 26 14:19:34 desktop kernel: [    0.000000] Fast TSC calibration using PIT
Oct 26 14:19:34 desktop kernel: [    0.000000] Detected 2399.798 MHz processor.
Oct 26 14:19:34 desktop kernel: [    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 4799.59 BogoMIPS (lpj=9599192)
Oct 26 14:19:34 desktop kernel: [    0.004008] pid_max: default: 32768 minimum: 301
Oct 26 14:19:34 desktop kernel: [    0.004035] Security Framework initialized
Oct 26 14:19:34 desktop kernel: [    0.004051] AppArmor: AppArmor initialized
Oct 26 14:19:34 desktop kernel: [    0.004052] Yama: becoming mindful.
Oct 26 14:19:34 desktop kernel: [    0.004449] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Oct 26 14:19:34 desktop kernel: [    0.008208] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Oct 26 14:19:34 desktop kernel: [    0.008998] Mount-cache hash table entries: 256
Oct 26 14:19:34 desktop kernel: [    0.009137] Initializing cgroup subsys cpuacct
Oct 26 14:19:34 desktop kernel: [    0.009143] Initializing cgroup subsys memory
Oct 26 14:19:34 desktop kernel: [    0.009151] Initializing cgroup subsys devices
Oct 26 14:19:34 desktop kernel: [    0.009153] Initializing cgroup subsys freezer
Oct 26 14:19:34 desktop kernel: [    0.009155] Initializing cgroup subsys net_cls
Oct 26 14:19:34 desktop kernel: [    0.009157] Initializing cgroup subsys blkio
Oct 26 14:19:34 desktop kernel: [    0.009164] Initializing cgroup subsys perf_event
Oct 26 14:19:34 desktop kernel: [    0.009192] CPU: Physical Processor ID: 0
Oct 26 14:19:34 desktop kernel: [    0.009194] CPU: Processor Core ID: 0
Oct 26 14:19:34 desktop kernel: [    0.009196] mce: CPU supports 6 MCE banks
Oct 26 14:19:34 desktop kernel: [    0.009204] CPU0: Thermal monitoring enabled (TM2)
Oct 26 14:19:34 desktop kernel: [    0.009207] using mwait in idle threads.
Oct 26 14:19:34 desktop kernel: [    0.011445] ACPI: Core revision 20110413
Oct 26 14:19:34 desktop kernel: [    0.015148] ftrace: allocating 25656 entries in 101 pages
Oct 26 14:19:34 desktop kernel: [    0.016344] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 26 14:19:34 desktop kernel: [    0.056565] CPU0: Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz stepping 0b
Oct 26 14:19:34 desktop kernel: [    0.060003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
Oct 26 14:19:34 desktop kernel: [    0.060003] PEBS disabled due to CPU errata.
Oct 26 14:19:34 desktop kernel: [    0.060003] ... version:                2
Oct 26 14:19:34 desktop kernel: [    0.060003] ... bit width:              40
Oct 26 14:19:34 desktop kernel: [    0.060003] ... generic registers:      2
Oct 26 14:19:34 desktop kernel: [    0.060003] ... value mask:             000000ffffffffff
Oct 26 14:19:34 desktop kernel: [    0.060003] ... max period:             000000007fffffff
Oct 26 14:19:34 desktop kernel: [    0.060003] ... fixed-purpose events:   3
Oct 26 14:19:34 desktop kernel: [    0.060003] ... event mask:             0000000700000003
Oct 26 14:19:34 desktop kernel: [    0.060003] Booting Node   0, Processors  #1
Oct 26 14:19:34 desktop kernel: [    0.060003] smpboot cpu 1: start_ip = 99000
Oct 26 14:19:34 desktop kernel: [    0.148106]  #2
Oct 26 14:19:34 desktop kernel: [    0.148108] smpboot cpu 2: start_ip = 99000
Oct 26 14:19:34 desktop kernel: [    0.240131]  #3 Ok.
Oct 26 14:19:34 desktop kernel: [    0.240133] smpboot cpu 3: start_ip = 99000
Oct 26 14:19:34 desktop kernel: [    0.332027] Brought up 4 CPUs
Oct 26 14:19:34 desktop kernel: [    0.332030] Total of 4 processors activated (19200.10 BogoMIPS).
Oct 26 14:19:34 desktop kernel: [    0.334284] devtmpfs: initialized
Oct 26 14:19:34 desktop kernel: [    0.334284] PM: Registering ACPI NVS region at cfeb0000 (208896 bytes)
Oct 26 14:19:34 desktop kernel: [    0.334284] print_constraints: dummy: 
Oct 26 14:19:34 desktop kernel: [    0.334284] Time: 14:19:18  Date: 10/26/11
Oct 26 14:19:34 desktop kernel: [    0.334284] NET: Registered protocol family 16
Oct 26 14:19:34 desktop kernel: [    0.334284] Trying to unpack rootfs image as initramfs...
Oct 26 14:19:34 desktop kernel: [    0.336099] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Oct 26 14:19:34 desktop kernel: [    0.336102] ACPI: bus type pci registered
Oct 26 14:19:34 desktop kernel: [    0.336163] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Oct 26 14:19:34 desktop kernel: [    0.336165] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
Oct 26 14:19:34 desktop kernel: [    0.346710] PCI: Using configuration type 1 for base access
Oct 26 14:19:34 desktop kernel: [    0.347412] bio: create slab <bio-0> at 0
Oct 26 14:19:34 desktop kernel: [    0.348481] ACPI: EC: Look up EC in DSDT
Oct 26 14:19:34 desktop kernel: [    0.352189] ACPI: SSDT 00000000cfee8540 0022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.352377] ACPI: Dynamic OEM Table Load:
Oct 26 14:19:34 desktop kernel: [    0.352380] ACPI: SSDT           (null) 0022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.352476] ACPI: SSDT 00000000cfee8a00 00152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.352654] ACPI: Dynamic OEM Table Load:
Oct 26 14:19:34 desktop kernel: [    0.352657] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.352754] ACPI: SSDT 00000000cfee8b60 00152 (v01  PmRef  Cpu2Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.352932] ACPI: Dynamic OEM Table Load:
Oct 26 14:19:34 desktop kernel: [    0.352935] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu2Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.353032] ACPI: SSDT 00000000cfee8cc0 00152 (v01  PmRef  Cpu3Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.353213] ACPI: Dynamic OEM Table Load:
Oct 26 14:19:34 desktop kernel: [    0.353216] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu3Ist 00003000 INTL 20040311)
Oct 26 14:19:34 desktop kernel: [    0.353348] ACPI: Interpreter enabled
Oct 26 14:19:34 desktop kernel: [    0.353351] ACPI: (supports S0 S3 S4 S5)
Oct 26 14:19:34 desktop kernel: [    0.353366] ACPI: Using IOAPIC for interrupt routing
Oct 26 14:19:34 desktop kernel: [    0.356954] ACPI: No dock devices found.
Oct 26 14:19:34 desktop kernel: [    0.356956] HEST: Table not found.
Oct 26 14:19:34 desktop kernel: [    0.356959] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 26 14:19:34 desktop kernel: [    0.357009] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Oct 26 14:19:34 desktop kernel: [    0.357104] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
Oct 26 14:19:34 desktop kernel: [    0.357107] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
Oct 26 14:19:34 desktop kernel: [    0.357109] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
Oct 26 14:19:34 desktop kernel: [    0.357112] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
Oct 26 14:19:34 desktop kernel: [    0.357114] pci_root PNP0A03:00: host bridge window [mem 0xfed40000-0xfed44fff]
Oct 26 14:19:34 desktop kernel: [    0.357116] pci_root PNP0A03:00: host bridge window [mem 0xcff00000-0xfebfffff]
Oct 26 14:19:34 desktop kernel: [    0.357128] pci 0000:00:00.0: [8086:2e20] type 0 class 0x000600
Oct 26 14:19:34 desktop kernel: [    0.357164] pci 0000:00:01.0: [8086:2e21] type 1 class 0x000604
Oct 26 14:19:34 desktop kernel: [    0.357193] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Oct 26 14:19:34 desktop kernel: [    0.357196] pci 0000:00:01.0: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.357232] pci 0000:00:1a.0: [8086:3a37] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.357272] pci 0000:00:1a.0: reg 20: [io  0xe100-0xe11f]
Oct 26 14:19:34 desktop kernel: [    0.357312] pci 0000:00:1a.1: [8086:3a38] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.357352] pci 0000:00:1a.1: reg 20: [io  0xe200-0xe21f]
Oct 26 14:19:34 desktop kernel: [    0.357393] pci 0000:00:1a.2: [8086:3a39] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.357433] pci 0000:00:1a.2: reg 20: [io  0xe000-0xe01f]
Oct 26 14:19:34 desktop kernel: [    0.357478] pci 0000:00:1a.7: [8086:3a3c] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.357494] pci 0000:00:1a.7: reg 10: [mem 0xea205000-0xea2053ff]
Oct 26 14:19:34 desktop kernel: [    0.357571] pci 0000:00:1b.0: [8086:3a3e] type 0 class 0x000403
Oct 26 14:19:34 desktop kernel: [    0.357585] pci 0000:00:1b.0: reg 10: [mem 0xea200000-0xea203fff 64bit]
Oct 26 14:19:34 desktop kernel: [    0.357636] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Oct 26 14:19:34 desktop kernel: [    0.357639] pci 0000:00:1b.0: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.357658] pci 0000:00:1c.0: [8086:3a40] type 1 class 0x000604
Oct 26 14:19:34 desktop kernel: [    0.357708] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Oct 26 14:19:34 desktop kernel: [    0.357711] pci 0000:00:1c.0: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.357732] pci 0000:00:1c.3: [8086:3a46] type 1 class 0x000604
Oct 26 14:19:34 desktop kernel: [    0.357782] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Oct 26 14:19:34 desktop kernel: [    0.357785] pci 0000:00:1c.3: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.357804] pci 0000:00:1c.4: [8086:3a48] type 1 class 0x000604
Oct 26 14:19:34 desktop kernel: [    0.357855] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Oct 26 14:19:34 desktop kernel: [    0.357858] pci 0000:00:1c.4: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.357881] pci 0000:00:1d.0: [8086:3a34] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.357920] pci 0000:00:1d.0: reg 20: [io  0xe300-0xe31f]
Oct 26 14:19:34 desktop kernel: [    0.357960] pci 0000:00:1d.1: [8086:3a35] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.358000] pci 0000:00:1d.1: reg 20: [io  0xe400-0xe41f]
Oct 26 14:19:34 desktop kernel: [    0.358040] pci 0000:00:1d.2: [8086:3a36] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.358080] pci 0000:00:1d.2: reg 20: [io  0xe500-0xe51f]
Oct 26 14:19:34 desktop kernel: [    0.358125] pci 0000:00:1d.7: [8086:3a3a] type 0 class 0x000c03
Oct 26 14:19:34 desktop kernel: [    0.358141] pci 0000:00:1d.7: reg 10: [mem 0xea204000-0xea2043ff]
Oct 26 14:19:34 desktop kernel: [    0.358214] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
Oct 26 14:19:34 desktop kernel: [    0.358266] pci 0000:00:1f.0: [8086:3a16] type 0 class 0x000601
Oct 26 14:19:34 desktop kernel: [    0.358343] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
Oct 26 14:19:34 desktop kernel: [    0.358346] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
Oct 26 14:19:34 desktop kernel: [    0.358350] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 000b)
Oct 26 14:19:34 desktop kernel: [    0.358386] pci 0000:00:1f.2: [8086:3a22] type 0 class 0x000106
Oct 26 14:19:34 desktop kernel: [    0.358403] pci 0000:00:1f.2: reg 10: [io  0xe600-0xe607]
Oct 26 14:19:34 desktop kernel: [    0.358410] pci 0000:00:1f.2: reg 14: [io  0xe700-0xe703]
Oct 26 14:19:34 desktop kernel: [    0.358418] pci 0000:00:1f.2: reg 18: [io  0xe800-0xe807]
Oct 26 14:19:34 desktop kernel: [    0.358425] pci 0000:00:1f.2: reg 1c: [io  0xe900-0xe903]
Oct 26 14:19:34 desktop kernel: [    0.358433] pci 0000:00:1f.2: reg 20: [io  0xea00-0xea1f]
Oct 26 14:19:34 desktop kernel: [    0.358440] pci 0000:00:1f.2: reg 24: [mem 0xea206000-0xea2067ff]
Oct 26 14:19:34 desktop kernel: [    0.358471] pci 0000:00:1f.2: PME# supported from D3hot
Oct 26 14:19:34 desktop kernel: [    0.358474] pci 0000:00:1f.2: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.358489] pci 0000:00:1f.3: [8086:3a30] type 0 class 0x000c05
Oct 26 14:19:34 desktop kernel: [    0.358503] pci 0000:00:1f.3: reg 10: [mem 0xea207000-0xea2070ff 64bit]
Oct 26 14:19:34 desktop kernel: [    0.358522] pci 0000:00:1f.3: reg 20: [io  0x0500-0x051f]
Oct 26 14:19:34 desktop kernel: [    0.358577] pci 0000:01:00.0: [10de:05e2] type 0 class 0x000300
Oct 26 14:19:34 desktop kernel: [    0.358587] pci 0000:01:00.0: reg 10: [mem 0xe6000000-0xe6ffffff]
Oct 26 14:19:34 desktop kernel: [    0.358597] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.358608] pci 0000:01:00.0: reg 1c: [mem 0xe4000000-0xe5ffffff 64bit]
Oct 26 14:19:34 desktop kernel: [    0.358615] pci 0000:01:00.0: reg 24: [io  0xb000-0xb07f]
Oct 26 14:19:34 desktop kernel: [    0.358622] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
Oct 26 14:19:34 desktop kernel: [    0.358654] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 26 14:19:34 desktop kernel: [    0.358657] pci 0000:00:01.0:   bridge window [io  0xb000-0xbfff]
Oct 26 14:19:34 desktop kernel: [    0.358660] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe7ffffff]
Oct 26 14:19:34 desktop kernel: [    0.358664] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.358700] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
Oct 26 14:19:34 desktop kernel: [    0.358704] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
Oct 26 14:19:34 desktop kernel: [    0.358708] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
Oct 26 14:19:34 desktop kernel: [    0.358713] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:19:34 desktop kernel: [    0.358765] pci 0000:03:00.0: [197b:2368] type 0 class 0x000101
Oct 26 14:19:34 desktop kernel: [    0.358794] pci 0000:03:00.0: reg 10: [io  0xc000-0xc007]
Oct 26 14:19:34 desktop kernel: [    0.358807] pci 0000:03:00.0: reg 14: [io  0xc100-0xc103]
Oct 26 14:19:34 desktop kernel: [    0.358820] pci 0000:03:00.0: reg 18: [io  0xc200-0xc207]
Oct 26 14:19:34 desktop kernel: [    0.358834] pci 0000:03:00.0: reg 1c: [io  0xc300-0xc303]
Oct 26 14:19:34 desktop kernel: [    0.358848] pci 0000:03:00.0: reg 20: [io  0xc400-0xc40f]
Oct 26 14:19:34 desktop kernel: [    0.358923] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
Oct 26 14:19:34 desktop kernel: [    0.358927] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
Oct 26 14:19:34 desktop kernel: [    0.358930] pci 0000:00:1c.3:   bridge window [mem 0xe8000000-0xe8ffffff]
Oct 26 14:19:34 desktop kernel: [    0.358936] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:19:34 desktop kernel: [    0.358988] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
Oct 26 14:19:34 desktop kernel: [    0.359004] pci 0000:04:00.0: reg 10: [io  0xd000-0xd0ff]
Oct 26 14:19:34 desktop kernel: [    0.359032] pci 0000:04:00.0: reg 18: [mem 0xea010000-0xea010fff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.359049] pci 0000:04:00.0: reg 20: [mem 0xea000000-0xea00ffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.359061] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 26 14:19:34 desktop kernel: [    0.359099] pci 0000:04:00.0: supports D1 D2
Oct 26 14:19:34 desktop kernel: [    0.359101] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 26 14:19:34 desktop kernel: [    0.359105] pci 0000:04:00.0: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.359137] pci 0000:00:1c.4: PCI bridge to [bus 04-04]
Oct 26 14:19:34 desktop kernel: [    0.359140] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
Oct 26 14:19:34 desktop kernel: [    0.359144] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe9ffffff]
Oct 26 14:19:34 desktop kernel: [    0.359149] pci 0000:00:1c.4:   bridge window [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.359187] pci 0000:05:07.0: [104c:8024] type 0 class 0x000c00
Oct 26 14:19:34 desktop kernel: [    0.359203] pci 0000:05:07.0: reg 10: [mem 0xea104000-0xea1047ff]
Oct 26 14:19:34 desktop kernel: [    0.359213] pci 0000:05:07.0: reg 14: [mem 0xea100000-0xea103fff]
Oct 26 14:19:34 desktop kernel: [    0.359270] pci 0000:05:07.0: supports D1 D2
Oct 26 14:19:34 desktop kernel: [    0.359272] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
Oct 26 14:19:34 desktop kernel: [    0.359276] pci 0000:05:07.0: PME# disabled
Oct 26 14:19:34 desktop kernel: [    0.359310] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359314] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
Oct 26 14:19:34 desktop kernel: [    0.359318] pci 0000:00:1e.0:   bridge window [mem 0xea100000-0xea1fffff]
Oct 26 14:19:34 desktop kernel: [    0.359324] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:19:34 desktop kernel: [    0.359326] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359329] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359331] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359334] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359336] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359338] pci 0000:00:1e.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
Oct 26 14:19:34 desktop kernel: [    0.359358] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 26 14:19:34 desktop kernel: [    0.359449] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
Oct 26 14:19:34 desktop kernel: [    0.359479] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
Oct 26 14:19:34 desktop kernel: [    0.359513] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
Oct 26 14:19:34 desktop kernel: [    0.359539] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
Oct 26 14:19:34 desktop kernel: [    0.359619]  pci0000:00: Requesting ACPI _OSC control (0x1d)
Oct 26 14:19:34 desktop kernel: [    0.359622]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
Oct 26 14:19:34 desktop kernel: [    0.359624] ACPI _OSC control for PCIe not granted, disabling ASPM
Oct 26 14:19:34 desktop kernel: [    0.367492] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
Oct 26 14:19:34 desktop kernel: [    0.367535] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
Oct 26 14:19:34 desktop kernel: [    0.367581] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
Oct 26 14:19:34 desktop kernel: [    0.367622] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 *15)
Oct 26 14:19:34 desktop kernel: [    0.367662] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
Oct 26 14:19:34 desktop kernel: [    0.367704] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
Oct 26 14:19:34 desktop kernel: [    0.367744] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
Oct 26 14:19:34 desktop kernel: [    0.367785] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
Oct 26 14:19:34 desktop kernel: [    0.367882] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Oct 26 14:19:34 desktop kernel: [    0.367886] vgaarb: loaded
Oct 26 14:19:34 desktop kernel: [    0.367887] vgaarb: bridge control possible 0000:01:00.0
Oct 26 14:19:34 desktop kernel: [    0.368069] SCSI subsystem initialized
Oct 26 14:19:34 desktop kernel: [    0.368113] libata version 3.00 loaded.
Oct 26 14:19:34 desktop kernel: [    0.368113] usbcore: registered new interface driver usbfs
Oct 26 14:19:34 desktop kernel: [    0.368113] usbcore: registered new interface driver hub
Oct 26 14:19:34 desktop kernel: [    0.368126] usbcore: registered new device driver usb
Oct 26 14:19:34 desktop kernel: [    0.368126] PCI: Using ACPI for IRQ routing
Oct 26 14:19:34 desktop kernel: [    0.369383] PCI: pci_cache_line_size set to 64 bytes
Oct 26 14:19:34 desktop kernel: [    0.369459] reserve RAM buffer: 000000000009e800 - 000000000009ffff 
Oct 26 14:19:34 desktop kernel: [    0.369461] reserve RAM buffer: 00000000cfeb0000 - 00000000cfffffff 
Oct 26 14:19:34 desktop kernel: [    0.369545] NetLabel: Initializing
Oct 26 14:19:34 desktop kernel: [    0.369546] NetLabel:  domain hash size = 128
Oct 26 14:19:34 desktop kernel: [    0.369548] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 26 14:19:34 desktop kernel: [    0.369558] NetLabel:  unlabeled traffic allowed by default
Oct 26 14:19:34 desktop kernel: [    0.369591] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
Oct 26 14:19:34 desktop kernel: [    0.369595] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Oct 26 14:19:34 desktop kernel: [    0.369600] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Oct 26 14:19:34 desktop kernel: [    0.376050] Switching to clocksource hpet
Oct 26 14:19:34 desktop kernel: [    0.379359] Switched to NOHz mode on CPU #0
Oct 26 14:19:34 desktop kernel: [    0.379417] Switched to NOHz mode on CPU #1
Oct 26 14:19:34 desktop kernel: [    0.379941] Switched to NOHz mode on CPU #3
Oct 26 14:19:34 desktop kernel: [    0.380007] Switched to NOHz mode on CPU #2
Oct 26 14:19:34 desktop kernel: [    0.382147] AppArmor: AppArmor Filesystem Enabled
Oct 26 14:19:34 desktop kernel: [    0.382174] pnp: PnP ACPI init
Oct 26 14:19:34 desktop kernel: [    0.382191] ACPI: bus type pnp registered
Oct 26 14:19:34 desktop kernel: [    0.382277] pnp 00:00: [bus 00-3f]
Oct 26 14:19:34 desktop kernel: [    0.382280] pnp 00:00: [io  0x0cf8-0x0cff]
Oct 26 14:19:34 desktop kernel: [    0.382282] pnp 00:00: [io  0x0000-0x0cf7 window]
Oct 26 14:19:34 desktop kernel: [    0.382284] pnp 00:00: [io  0x0d00-0xffff window]
Oct 26 14:19:34 desktop kernel: [    0.382286] pnp 00:00: [mem 0x000a0000-0x000bffff window]
Oct 26 14:19:34 desktop kernel: [    0.382288] pnp 00:00: [mem 0x000c0000-0x000dffff window]
Oct 26 14:19:34 desktop kernel: [    0.382291] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
Oct 26 14:19:34 desktop kernel: [    0.382293] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
Oct 26 14:19:34 desktop kernel: [    0.382346] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 26 14:19:34 desktop kernel: [    0.382416] pnp 00:01: [io  0x0010-0x001f]
Oct 26 14:19:34 desktop kernel: [    0.382418] pnp 00:01: [io  0x0022-0x003f]
Oct 26 14:19:34 desktop kernel: [    0.382420] pnp 00:01: [io  0x0044-0x004d]
Oct 26 14:19:34 desktop kernel: [    0.382421] pnp 00:01: [io  0x0050-0x005f]
Oct 26 14:19:34 desktop kernel: [    0.382423] pnp 00:01: [io  0x0062-0x0063]
Oct 26 14:19:34 desktop kernel: [    0.382424] pnp 00:01: [io  0x0065-0x006f]
Oct 26 14:19:34 desktop kernel: [    0.382426] pnp 00:01: [io  0x0074-0x007f]
Oct 26 14:19:34 desktop kernel: [    0.382428] pnp 00:01: [io  0x0091-0x0093]
Oct 26 14:19:34 desktop kernel: [    0.382429] pnp 00:01: [io  0x00a2-0x00bf]
Oct 26 14:19:34 desktop kernel: [    0.382431] pnp 00:01: [io  0x00e0-0x00ef]
Oct 26 14:19:34 desktop kernel: [    0.382432] pnp 00:01: [io  0x04d0-0x04d1]
Oct 26 14:19:34 desktop kernel: [    0.382434] pnp 00:01: [io  0x0290-0x029f]
Oct 26 14:19:34 desktop kernel: [    0.382436] pnp 00:01: [io  0x0800-0x0805]
Oct 26 14:19:34 desktop kernel: [    0.382437] pnp 00:01: [io  0x0290-0x0294]
Oct 26 14:19:34 desktop kernel: [    0.382439] pnp 00:01: [io  0x0880-0x088f]
Oct 26 14:19:34 desktop kernel: [    0.382440] pnp 00:01: [io  0x04c0-0x04ff]
Oct 26 14:19:34 desktop kernel: [    0.382500] system 00:01: [io  0x04d0-0x04d1] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.382503] system 00:01: [io  0x0290-0x029f] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.382505] system 00:01: [io  0x0800-0x0805] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.382508] system 00:01: [io  0x0290-0x0294] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.382510] system 00:01: [io  0x0880-0x088f] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.382513] system 00:01: [io  0x04c0-0x04ff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.382516] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:19:34 desktop kernel: [    0.382527] pnp 00:02: [dma 4]
Oct 26 14:19:34 desktop kernel: [    0.382529] pnp 00:02: [io  0x0000-0x000f]
Oct 26 14:19:34 desktop kernel: [    0.382530] pnp 00:02: [io  0x0080-0x0090]
Oct 26 14:19:34 desktop kernel: [    0.382532] pnp 00:02: [io  0x0094-0x009f]
Oct 26 14:19:34 desktop kernel: [    0.382533] pnp 00:02: [io  0x00c0-0x00df]
Oct 26 14:19:34 desktop kernel: [    0.382561] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 26 14:19:34 desktop kernel: [    0.382604] pnp 00:03: [irq 0 disabled]
Oct 26 14:19:34 desktop kernel: [    0.382614] pnp 00:03: [irq 8]
Oct 26 14:19:34 desktop kernel: [    0.382616] pnp 00:03: [mem 0xfed00000-0xfed003ff]
Oct 26 14:19:34 desktop kernel: [    0.382645] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
Oct 26 14:19:34 desktop kernel: [    0.382668] pnp 00:04: [io  0x0070-0x0073]
Oct 26 14:19:34 desktop kernel: [    0.382694] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 26 14:19:34 desktop kernel: [    0.382702] pnp 00:05: [io  0x0061]
Oct 26 14:19:34 desktop kernel: [    0.382729] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 26 14:19:34 desktop kernel: [    0.382738] pnp 00:06: [io  0x00f0-0x00ff]
Oct 26 14:19:34 desktop kernel: [    0.382743] pnp 00:06: [irq 13]
Oct 26 14:19:34 desktop kernel: [    0.382769] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 26 14:19:34 desktop kernel: [    0.383038] pnp 00:07: [io  0x0400-0x04bf]
Oct 26 14:19:34 desktop kernel: [    0.383085] system 00:07: [io  0x0400-0x04bf] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383088] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:19:34 desktop kernel: [    0.383248] pnp 00:08: [mem 0xe0000000-0xe3ffffff]
Oct 26 14:19:34 desktop kernel: [    0.383301] system 00:08: [mem 0xe0000000-0xe3ffffff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383304] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:19:34 desktop kernel: [    0.383431] pnp 00:09: [mem 0x000d2000-0x000d3fff]
Oct 26 14:19:34 desktop kernel: [    0.383433] pnp 00:09: [mem 0x000f0000-0x000f7fff]
Oct 26 14:19:34 desktop kernel: [    0.383435] pnp 00:09: [mem 0x000f8000-0x000fbfff]
Oct 26 14:19:34 desktop kernel: [    0.383437] pnp 00:09: [mem 0x000fc000-0x000fffff]
Oct 26 14:19:34 desktop kernel: [    0.383439] pnp 00:09: [mem 0xcfeb0000-0xcfefffff]
Oct 26 14:19:34 desktop kernel: [    0.383440] pnp 00:09: [mem 0x00000000-0x0009ffff]
Oct 26 14:19:34 desktop kernel: [    0.383442] pnp 00:09: [mem 0x00100000-0xcfeaffff]
Oct 26 14:19:34 desktop kernel: [    0.383444] pnp 00:09: [mem 0xfec00000-0xfec00fff]
Oct 26 14:19:34 desktop kernel: [    0.383446] pnp 00:09: [mem 0xfed10000-0xfed1dfff]
Oct 26 14:19:34 desktop kernel: [    0.383447] pnp 00:09: [mem 0xfed20000-0xfed8ffff]
Oct 26 14:19:34 desktop kernel: [    0.383449] pnp 00:09: [mem 0xfee00000-0xfee00fff]
Oct 26 14:19:34 desktop kernel: [    0.383451] pnp 00:09: [mem 0xffb00000-0xffb7ffff]
Oct 26 14:19:34 desktop kernel: [    0.383455] pnp 00:09: [mem 0xfff00000-0xffffffff]
Oct 26 14:19:34 desktop kernel: [    0.383457] pnp 00:09: [mem 0x000e0000-0x000effff]
Oct 26 14:19:34 desktop kernel: [    0.383517] system 00:09: [mem 0x000d2000-0x000d3fff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383520] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383523] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383525] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383528] system 00:09: [mem 0xcfeb0000-0xcfefffff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383530] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383533] system 00:09: [mem 0x00100000-0xcfeaffff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383535] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383538] system 00:09: [mem 0xfed10000-0xfed1dfff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383540] system 00:09: [mem 0xfed20000-0xfed8ffff] could not be reserved
Oct 26 14:19:34 desktop kernel: [    0.383543] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383545] system 00:09: [mem 0xffb00000-0xffb7ffff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383548] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383550] system 00:09: [mem 0x000e0000-0x000effff] has been reserved
Oct 26 14:19:34 desktop kernel: [    0.383553] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 26 14:19:34 desktop kernel: [    0.383573] pnp 00:0a: [mem 0xffb80000-0xffbfffff]
Oct 26 14:19:34 desktop kernel: [    0.383610] pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
Oct 26 14:19:34 desktop kernel: [    0.383615] pnp: PnP ACPI: found 11 devices
Oct 26 14:19:34 desktop kernel: [    0.383617] ACPI: ACPI bus type pnp unregistered
Oct 26 14:19:34 desktop kernel: [    0.389488] PCI: max bus depth: 1 pci_try_num: 2
Oct 26 14:19:34 desktop kernel: [    0.389528] pci 0000:00:1c.3: BAR 15: assigned [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389532] pci 0000:00:1c.0: BAR 14: assigned [mem 0xea500000-0xea6fffff]
Oct 26 14:19:34 desktop kernel: [    0.389537] pci 0000:00:1c.0: BAR 15: assigned [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389540] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
Oct 26 14:19:34 desktop kernel: [    0.389543] pci 0000:01:00.0: BAR 6: assigned [mem 0xe7000000-0xe707ffff pref]
Oct 26 14:19:34 desktop kernel: [    0.389546] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 26 14:19:34 desktop kernel: [    0.389549] pci 0000:00:01.0:   bridge window [io  0xb000-0xbfff]
Oct 26 14:19:34 desktop kernel: [    0.389552] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe7ffffff]
Oct 26 14:19:34 desktop kernel: [    0.389555] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389560] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
Oct 26 14:19:34 desktop kernel: [    0.389562] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Oct 26 14:19:34 desktop kernel: [    0.389567] pci 0000:00:1c.0:   bridge window [mem 0xea500000-0xea6fffff]
Oct 26 14:19:34 desktop kernel: [    0.389571] pci 0000:00:1c.0:   bridge window [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389576] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
Oct 26 14:19:34 desktop kernel: [    0.389579] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
Oct 26 14:19:34 desktop kernel: [    0.389583] pci 0000:00:1c.3:   bridge window [mem 0xe8000000-0xe8ffffff]
Oct 26 14:19:34 desktop kernel: [    0.389587] pci 0000:00:1c.3:   bridge window [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389594] pci 0000:04:00.0: BAR 6: assigned [mem 0xea020000-0xea02ffff pref]
Oct 26 14:19:34 desktop kernel: [    0.389596] pci 0000:00:1c.4: PCI bridge to [bus 04-04]
Oct 26 14:19:34 desktop kernel: [    0.389599] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
Oct 26 14:19:34 desktop kernel: [    0.389603] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe9ffffff]
Oct 26 14:19:34 desktop kernel: [    0.389607] pci 0000:00:1c.4:   bridge window [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389612] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
Oct 26 14:19:34 desktop kernel: [    0.389614] pci 0000:00:1e.0:   bridge window [io  disabled]
Oct 26 14:19:34 desktop kernel: [    0.389618] pci 0000:00:1e.0:   bridge window [mem 0xea100000-0xea1fffff]
Oct 26 14:19:34 desktop kernel: [    0.389622] pci 0000:00:1e.0:   bridge window [mem pref disabled]
Oct 26 14:19:34 desktop kernel: [    0.389639] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:19:34 desktop kernel: [    0.389643] pci 0000:00:01.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.389650] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:19:34 desktop kernel: [    0.389653] pci 0000:00:1c.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.389661] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:19:34 desktop kernel: [    0.389665] pci 0000:00:1c.3: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.389670] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:19:34 desktop kernel: [    0.389674] pci 0000:00:1c.4: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.389680] pci 0000:00:1e.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.389683] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Oct 26 14:19:34 desktop kernel: [    0.389686] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Oct 26 14:19:34 desktop kernel: [    0.389688] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Oct 26 14:19:34 desktop kernel: [    0.389690] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
Oct 26 14:19:34 desktop kernel: [    0.389692] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
Oct 26 14:19:34 desktop kernel: [    0.389694] pci_bus 0000:00: resource 9 [mem 0xcff00000-0xfebfffff]
Oct 26 14:19:34 desktop kernel: [    0.389696] pci_bus 0000:01: resource 0 [io  0xb000-0xbfff]
Oct 26 14:19:34 desktop kernel: [    0.389698] pci_bus 0000:01: resource 1 [mem 0xe4000000-0xe7ffffff]
Oct 26 14:19:34 desktop kernel: [    0.389700] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389703] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Oct 26 14:19:34 desktop kernel: [    0.389705] pci_bus 0000:02: resource 1 [mem 0xea500000-0xea6fffff]
Oct 26 14:19:34 desktop kernel: [    0.389707] pci_bus 0000:02: resource 2 [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389709] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
Oct 26 14:19:34 desktop kernel: [    0.389711] pci_bus 0000:03: resource 1 [mem 0xe8000000-0xe8ffffff]
Oct 26 14:19:34 desktop kernel: [    0.389714] pci_bus 0000:03: resource 2 [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389716] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
Oct 26 14:19:34 desktop kernel: [    0.389718] pci_bus 0000:04: resource 1 [mem 0xe9000000-0xe9ffffff]
Oct 26 14:19:34 desktop kernel: [    0.389720] pci_bus 0000:04: resource 2 [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:19:34 desktop kernel: [    0.389722] pci_bus 0000:05: resource 1 [mem 0xea100000-0xea1fffff]
Oct 26 14:19:34 desktop kernel: [    0.389725] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
Oct 26 14:19:34 desktop kernel: [    0.389727] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
Oct 26 14:19:34 desktop kernel: [    0.389729] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
Oct 26 14:19:34 desktop kernel: [    0.389731] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff]
Oct 26 14:19:34 desktop kernel: [    0.389733] pci_bus 0000:05: resource 8 [mem 0xfed40000-0xfed44fff]
Oct 26 14:19:34 desktop kernel: [    0.389735] pci_bus 0000:05: resource 9 [mem 0xcff00000-0xfebfffff]
Oct 26 14:19:34 desktop kernel: [    0.389772] NET: Registered protocol family 2
Oct 26 14:19:34 desktop kernel: [    0.389908] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 26 14:19:34 desktop kernel: [    0.390918] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
Oct 26 14:19:34 desktop kernel: [    0.394168] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Oct 26 14:19:34 desktop kernel: [    0.394561] TCP: Hash tables configured (established 524288 bind 65536)
Oct 26 14:19:34 desktop kernel: [    0.394563] TCP reno registered
Oct 26 14:19:34 desktop kernel: [    0.394572] UDP hash table entries: 2048 (order: 4, 65536 bytes)
Oct 26 14:19:34 desktop kernel: [    0.394603] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
Oct 26 14:19:34 desktop kernel: [    0.394742] NET: Registered protocol family 1
Oct 26 14:19:34 desktop kernel: [    0.394917] pci 0000:01:00.0: Boot video device
Oct 26 14:19:34 desktop kernel: [    0.394927] PCI: CLS 32 bytes, default 64
Oct 26 14:19:34 desktop kernel: [    0.394930] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 26 14:19:34 desktop kernel: [    0.394933] Placing 64MB software IO TLB between ffff8800cbeaa000 - ffff8800cfeaa000
Oct 26 14:19:34 desktop kernel: [    0.394935] software IO TLB at phys 0xcbeaa000 - 0xcfeaa000
Oct 26 14:19:34 desktop kernel: [    0.395341] audit: initializing netlink socket (disabled)
Oct 26 14:19:34 desktop kernel: [    0.395351] type=2000 audit(1319638758.388:1): initialized
Oct 26 14:19:34 desktop kernel: [    0.422811] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 26 14:19:34 desktop kernel: [    0.441640] VFS: Disk quotas dquot_6.5.2
Oct 26 14:19:34 desktop kernel: [    0.441693] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 26 14:19:34 desktop kernel: [    0.442256] fuse init (API version 7.16)
Oct 26 14:19:34 desktop kernel: [    0.442331] msgmni has been set to 7890
Oct 26 14:19:34 desktop kernel: [    0.442792] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 26 14:19:34 desktop kernel: [    0.442832] io scheduler noop registered
Oct 26 14:19:34 desktop kernel: [    0.442834] io scheduler deadline registered
Oct 26 14:19:34 desktop kernel: [    0.442867] io scheduler cfq registered (default)
Oct 26 14:19:34 desktop kernel: [    0.442963] pcieport 0000:00:01.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.442992] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [    0.443034] pcieport 0000:00:1c.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.443067] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [    0.443120] pcieport 0000:00:1c.3: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.443153] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [    0.443202] pcieport 0000:00:1c.4: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.443235] pcieport 0000:00:1c.4: irq 43 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [    0.443304] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 26 14:19:34 desktop kernel: [    0.443326] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 26 14:19:34 desktop kernel: [    0.443363] intel_idle: MWAIT substates: 0x20
Oct 26 14:19:34 desktop kernel: [    0.443365] intel_idle: does not run on family 6 model 15
Oct 26 14:19:34 desktop kernel: [    0.443429] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
Oct 26 14:19:34 desktop kernel: [    0.443433] ACPI: Power Button [PWRB]
Oct 26 14:19:34 desktop kernel: [    0.443480] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Oct 26 14:19:34 desktop kernel: [    0.443483] ACPI: Power Button [PWRF]
Oct 26 14:19:34 desktop kernel: [    0.443508] ACPI: acpi_idle registered with cpuidle
Oct 26 14:19:34 desktop kernel: [    0.443558] Marking TSC unstable due to TSC halts in idle
Oct 26 14:19:34 desktop kernel: [    0.444909] ERST: Table is not found!
Oct 26 14:19:34 desktop kernel: [    0.444963] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 26 14:19:34 desktop kernel: [    0.585973] Freeing initrd memory: 13428k freed
Oct 26 14:19:34 desktop kernel: [    0.728319] Linux agpgart interface v0.103
Oct 26 14:19:34 desktop kernel: [    0.729360] brd: module loaded
Oct 26 14:19:34 desktop kernel: [    0.729803] loop: module loaded
Oct 26 14:19:34 desktop kernel: [    0.729931] pata_acpi 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:19:34 desktop kernel: [    0.729954] pata_acpi 0000:03:00.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.729966] pata_acpi 0000:03:00.0: PCI INT A disabled
Oct 26 14:19:34 desktop kernel: [    0.730209] Fixed MDIO Bus: probed
Oct 26 14:19:34 desktop kernel: [    0.730229] PPP generic driver version 2.4.2
Oct 26 14:19:34 desktop kernel: [    0.730257] tun: Universal TUN/TAP device driver, 1.6
Oct 26 14:19:34 desktop kernel: [    0.730259] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Oct 26 14:19:34 desktop kernel: [    0.730322] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 26 14:19:34 desktop kernel: [    0.730340] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:19:34 desktop kernel: [    0.730365] ehci_hcd 0000:00:1a.7: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.730369] ehci_hcd 0000:00:1a.7: EHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.730398] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
Oct 26 14:19:34 desktop kernel: [    0.734312] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
Oct 26 14:19:34 desktop kernel: [    0.734326] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xea205000
Oct 26 14:19:34 desktop kernel: [    0.748024] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Oct 26 14:19:34 desktop kernel: [    0.748169] hub 1-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.748175] hub 1-0:1.0: 6 ports detected
Oct 26 14:19:34 desktop kernel: [    0.748247] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:19:34 desktop kernel: [    0.748256] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.748260] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.748296] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
Oct 26 14:19:34 desktop kernel: [    0.752199] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 26 14:19:34 desktop kernel: [    0.752211] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xea204000
Oct 26 14:19:34 desktop kernel: [    0.768026] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 26 14:19:34 desktop kernel: [    0.768145] hub 2-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.768150] hub 2-0:1.0: 6 ports detected
Oct 26 14:19:34 desktop kernel: [    0.768224] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 26 14:19:34 desktop kernel: [    0.768234] uhci_hcd: USB Universal Host Controller Interface driver
Oct 26 14:19:34 desktop kernel: [    0.768249] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:19:34 desktop kernel: [    0.768254] uhci_hcd 0000:00:1a.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.768257] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.768289] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Oct 26 14:19:34 desktop kernel: [    0.768320] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
Oct 26 14:19:34 desktop kernel: [    0.768416] hub 3-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.768420] hub 3-0:1.0: 2 ports detected
Oct 26 14:19:34 desktop kernel: [    0.768473] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Oct 26 14:19:34 desktop kernel: [    0.768478] uhci_hcd 0000:00:1a.1: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.768481] uhci_hcd 0000:00:1a.1: UHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.768510] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Oct 26 14:19:34 desktop kernel: [    0.768539] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
Oct 26 14:19:34 desktop kernel: [    0.768633] hub 4-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.768636] hub 4-0:1.0: 2 ports detected
Oct 26 14:19:34 desktop kernel: [    0.768686] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:19:34 desktop kernel: [    0.768691] uhci_hcd 0000:00:1a.2: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.768694] uhci_hcd 0000:00:1a.2: UHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.768723] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
Oct 26 14:19:34 desktop kernel: [    0.768744] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
Oct 26 14:19:34 desktop kernel: [    0.768837] hub 5-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.768840] hub 5-0:1.0: 2 ports detected
Oct 26 14:19:34 desktop kernel: [    0.768890] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:19:34 desktop kernel: [    0.768895] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.768898] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.768927] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
Oct 26 14:19:34 desktop kernel: [    0.768950] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
Oct 26 14:19:34 desktop kernel: [    0.769042] hub 6-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.769045] hub 6-0:1.0: 2 ports detected
Oct 26 14:19:34 desktop kernel: [    0.769096] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:19:34 desktop kernel: [    0.769101] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.769104] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.769131] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
Oct 26 14:19:34 desktop kernel: [    0.769161] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
Oct 26 14:19:34 desktop kernel: [    0.769255] hub 7-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.769258] hub 7-0:1.0: 2 ports detected
Oct 26 14:19:34 desktop kernel: [    0.769307] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:19:34 desktop kernel: [    0.769312] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.769315] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 26 14:19:34 desktop kernel: [    0.769342] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
Oct 26 14:19:34 desktop kernel: [    0.769363] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
Oct 26 14:19:34 desktop kernel: [    0.769459] hub 8-0:1.0: USB hub found
Oct 26 14:19:34 desktop kernel: [    0.769462] hub 8-0:1.0: 2 ports detected
Oct 26 14:19:34 desktop kernel: [    0.769546] i8042: PNP: No PS/2 controller found. Probing ports directly.
Oct 26 14:19:34 desktop kernel: [    0.769928] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 26 14:19:34 desktop kernel: [    0.769940] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 26 14:19:34 desktop kernel: [    0.770143] mousedev: PS/2 mouse device common for all mice
Oct 26 14:19:34 desktop kernel: [    0.770271] rtc_cmos 00:04: RTC can wake from S4
Oct 26 14:19:34 desktop kernel: [    0.770362] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
Oct 26 14:19:34 desktop kernel: [    0.770384] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
Oct 26 14:19:34 desktop kernel: [    0.770493] device-mapper: uevent: version 1.0.3
Oct 26 14:19:34 desktop kernel: [    0.770553] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
Oct 26 14:19:34 desktop kernel: [    0.770610] cpuidle: using governor ladder
Oct 26 14:19:34 desktop kernel: [    0.770698] cpuidle: using governor menu
Oct 26 14:19:34 desktop kernel: [    0.770700] EFI Variables Facility v0.08 2004-May-17
Oct 26 14:19:34 desktop kernel: [    0.770934] TCP cubic registered
Oct 26 14:19:34 desktop kernel: [    0.771043] NET: Registered protocol family 10
Oct 26 14:19:34 desktop kernel: [    0.771476] NET: Registered protocol family 17
Oct 26 14:19:34 desktop kernel: [    0.771492] Registering the dns_resolver key type
Oct 26 14:19:34 desktop kernel: [    0.771582] PM: Hibernation image not present or could not be loaded.
Oct 26 14:19:34 desktop kernel: [    0.771594] registered taskstats version 1
Oct 26 14:19:34 desktop kernel: [    0.786491]   Magic number: 15:733:334
Oct 26 14:19:34 desktop kernel: [    0.786524] tty tty55: hash matches
Oct 26 14:19:34 desktop kernel: [    0.786584] rtc_cmos 00:04: setting system clock to 2011-10-26 14:19:19 UTC (1319638759)
Oct 26 14:19:34 desktop kernel: [    0.791210] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Oct 26 14:19:34 desktop kernel: [    0.791213] EDD information not available.
Oct 26 14:19:34 desktop kernel: [    0.792937] Freeing unused kernel memory: 984k freed
Oct 26 14:19:34 desktop kernel: [    0.793111] Write protecting the kernel read-only data: 10240k
Oct 26 14:19:34 desktop kernel: [    0.793335] Freeing unused kernel memory: 20k freed
Oct 26 14:19:34 desktop kernel: [    0.797782] Freeing unused kernel memory: 1396k freed
Oct 26 14:19:34 desktop kernel: [    0.846721] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Oct 26 14:19:34 desktop kernel: [    0.846734] pata_jmicron 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:19:34 desktop kernel: [    0.846746] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:19:34 desktop kernel: [    0.846776] pata_jmicron 0000:03:00.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.846799] r8169 0000:04:00.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    0.847039] r8169 0000:04:00.0: irq 44 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [    0.847403] scsi0 : pata_jmicron
Oct 26 14:19:34 desktop kernel: [    0.847522] scsi1 : pata_jmicron
Oct 26 14:19:34 desktop kernel: [    0.847661] r8169 0000:04:00.0: eth0: RTL8168c/8111c at 0xffffc90000644000, 00:1f:d0:25:52:1b, XID 1c4000c0 IRQ 44
Oct 26 14:19:34 desktop kernel: [    0.847971] ata1: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 19
Oct 26 14:19:34 desktop kernel: [    0.847974] ata2: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 19
Oct 26 14:19:34 desktop kernel: [    1.060029] usb 1-5: new high speed USB device number 2 using ehci_hcd
Oct 26 14:19:34 desktop kernel: [    1.160561] ahci 0000:00:1f.2: version 3.0
Oct 26 14:19:34 desktop kernel: [    1.160574] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:19:34 desktop kernel: [    1.160620] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [    1.160664] ahci: SSS flag set, parallel bus scan disabled
Oct 26 14:19:34 desktop kernel: [    1.160699] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
Oct 26 14:19:34 desktop kernel: [    1.160703] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems 
Oct 26 14:19:34 desktop kernel: [    1.160707] ahci 0000:00:1f.2: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [    1.161603] firewire_ohci 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:19:34 desktop kernel: [    1.204677] scsi2 : ahci
Oct 26 14:19:34 desktop kernel: [    1.204777] scsi3 : ahci
Oct 26 14:19:34 desktop kernel: [    1.204877] scsi4 : ahci
Oct 26 14:19:34 desktop kernel: [    1.204961] scsi5 : ahci
Oct 26 14:19:34 desktop kernel: [    1.205050] scsi6 : ahci
Oct 26 14:19:34 desktop kernel: [    1.205134] scsi7 : ahci
Oct 26 14:19:34 desktop kernel: [    1.205264] ata3: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206100 irq 45
Oct 26 14:19:34 desktop kernel: [    1.205267] ata4: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206180 irq 45
Oct 26 14:19:34 desktop kernel: [    1.205270] ata5: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206200 irq 45
Oct 26 14:19:34 desktop kernel: [    1.205272] ata6: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206280 irq 45
Oct 26 14:19:34 desktop kernel: [    1.205275] ata7: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206300 irq 45
Oct 26 14:19:34 desktop kernel: [    1.205277] ata8: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206380 irq 45
Oct 26 14:19:34 desktop kernel: [    1.216085] firewire_ohci: Added fw-ohci device 0000:05:07.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
Oct 26 14:19:34 desktop kernel: [    1.370551] usbcore: registered new interface driver uas
Oct 26 14:19:34 desktop kernel: [    1.480021] usb 2-3: new high speed USB device number 2 using ehci_hcd
Oct 26 14:19:34 desktop kernel: [    1.524030] ata3: SATA link down (SStatus 0 SControl 300)
Oct 26 14:19:34 desktop kernel: [    1.617115] Initializing USB Mass Storage driver...
Oct 26 14:19:34 desktop kernel: [    1.617256] scsi8 : usb-storage 1-5:1.0
Oct 26 14:19:34 desktop kernel: [    1.617436] scsi9 : usb-storage 2-3:1.0
Oct 26 14:19:34 desktop kernel: [    1.617541] usbcore: registered new interface driver usb-storage
Oct 26 14:19:34 desktop kernel: [    1.617544] USB Mass Storage support registered.
Oct 26 14:19:34 desktop kernel: [    1.716105] firewire_core: created device fw0: GUID 002c965900001fd0, S400
Oct 26 14:19:34 desktop kernel: [    1.908027] usb 8-2: new low speed USB device number 2 using uhci_hcd
Oct 26 14:19:34 desktop kernel: [    2.016049] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:19:34 desktop kernel: [    2.016588] ata4.00: HPA detected: current 488395055, native 488397168
Oct 26 14:19:34 desktop kernel: [    2.016656] ata4.00: ATA-7: WDC WD2500JS-00NCB1, 10.02E02, max UDMA/133
Oct 26 14:19:34 desktop kernel: [    2.016660] ata4.00: 488395055 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:19:34 desktop kernel: [    2.017319] ata4.00: configured for UDMA/133
Oct 26 14:19:34 desktop kernel: [    2.017442] scsi 3:0:0:0: Direct-Access     ATA      WDC WD2500JS-00N 10.0 PQ: 0 ANSI: 5
Oct 26 14:19:34 desktop kernel: [    2.017570] sd 3:0:0:0: Attached scsi generic sg0 type 0
Oct 26 14:19:34 desktop kernel: [    2.017587] sd 3:0:0:0: [sda] 488395055 512-byte logical blocks: (250 GB/232 GiB)
Oct 26 14:19:34 desktop kernel: [    2.017667] sd 3:0:0:0: [sda] Write Protect is off
Oct 26 14:19:34 desktop kernel: [    2.017670] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 26 14:19:34 desktop kernel: [    2.017700] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:19:34 desktop kernel: [    2.054044]  sda: sda1 sda2 sda3 < sda5 sda6 > sda4
Oct 26 14:19:34 desktop kernel: [    2.054514] sd 3:0:0:0: [sda] Attached SCSI disk
Oct 26 14:19:34 desktop kernel: [    2.122699] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input2
Oct 26 14:19:34 desktop kernel: [    2.122769] generic-usb 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.2-2/input0
Oct 26 14:19:34 desktop kernel: [    2.155931] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/input/input3
Oct 26 14:19:34 desktop kernel: [    2.156042] generic-usb 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-2/input1
Oct 26 14:19:34 desktop kernel: [    2.156057] usbcore: registered new interface driver usbhid
Oct 26 14:19:34 desktop kernel: [    2.156058] usbhid: USB HID core driver
Oct 26 14:19:34 desktop kernel: [    2.508020] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 14:19:34 desktop kernel: [    2.511369] ata5.00: ATAPI: Optiarc DVD-ROM DDU1671S, 1.11, max UDMA/33
Oct 26 14:19:34 desktop kernel: [    2.511374] ata5.00: applying bridge limits
Oct 26 14:19:34 desktop kernel: [    2.512824] ata5.00: configured for UDMA/33
Oct 26 14:19:34 desktop kernel: [    2.519082] scsi 4:0:0:0: CD-ROM            Optiarc  DVD-ROM DDU1671S 1.11 PQ: 0 ANSI: 5
Oct 26 14:19:34 desktop kernel: [    2.521734] sr0: scsi3-mmc drive: 4x/48x cd/rw xa/form2 cdda tray
Oct 26 14:19:34 desktop kernel: [    2.521737] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 26 14:19:34 desktop kernel: [    2.521873] sr 4:0:0:0: Attached scsi CD-ROM sr0
Oct 26 14:19:34 desktop kernel: [    2.521943] sr 4:0:0:0: Attached scsi generic sg1 type 5
Oct 26 14:19:34 desktop kernel: [    2.616917] scsi 9:0:0:0: Direct-Access     Generic  USB SD Reader    1.00 PQ: 0 ANSI: 0
Oct 26 14:19:34 desktop kernel: [    2.617418] scsi 9:0:0:1: Direct-Access     Generic  USB CF Reader    1.01 PQ: 0 ANSI: 0
Oct 26 14:19:34 desktop kernel: [    2.617916] scsi 9:0:0:2: Direct-Access     Generic  USB xD/SM Reader 1.02 PQ: 0 ANSI: 0
Oct 26 14:19:34 desktop kernel: [    2.618416] scsi 9:0:0:3: Direct-Access     Generic  USB MS Reader    1.03 PQ: 0 ANSI: 0
Oct 26 14:19:34 desktop kernel: [    2.620036] scsi 8:0:0:0: Direct-Access     Hitachi  HTS545032A7E380       PQ: 0 ANSI: 4
Oct 26 14:19:34 desktop kernel: [    2.988208] sd 8:0:0:0: Attached scsi generic sg2 type 0
Oct 26 14:19:34 desktop kernel: [    2.988372] sd 9:0:0:0: Attached scsi generic sg3 type 0
Oct 26 14:19:34 desktop kernel: [    2.988489] sd 9:0:0:1: Attached scsi generic sg4 type 0
Oct 26 14:19:34 desktop kernel: [    2.988608] sd 9:0:0:2: Attached scsi generic sg5 type 0
Oct 26 14:19:34 desktop kernel: [    2.988734] sd 9:0:0:3: Attached scsi generic sg6 type 0
Oct 26 14:19:34 desktop kernel: [    2.989030] sd 8:0:0:0: [sdb] 625142448 512-byte logical blocks: (320 GB/298 GiB)
Oct 26 14:19:34 desktop kernel: [    2.992906] sd 9:0:0:0: [sdc] Attached SCSI removable disk
Oct 26 14:19:34 desktop kernel: [    2.994781] sd 9:0:0:1: [sdd] Attached SCSI removable disk
Oct 26 14:19:34 desktop kernel: [    2.995406] sd 8:0:0:0: [sdb] Write Protect is off
Oct 26 14:19:34 desktop kernel: [    2.995411] sd 8:0:0:0: [sdb] Mode Sense: 38 00 00 00
Oct 26 14:19:34 desktop kernel: [    2.995427] sd 9:0:0:2: [sde] Attached SCSI removable disk
Oct 26 14:19:34 desktop kernel: [    2.996027] sd 9:0:0:3: [sdf] Attached SCSI removable disk
Oct 26 14:19:34 desktop kernel: [    3.001649] sd 8:0:0:0: [sdb] No Caching mode page present
Oct 26 14:19:34 desktop kernel: [    3.001652] sd 8:0:0:0: [sdb] Assuming drive cache: write through
Oct 26 14:19:34 desktop kernel: [    3.012052] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 14:19:34 desktop kernel: [    3.013122] ata6.00: ATAPI: Optiarc DVD RW AD-7201S, 1.06, max UDMA/100
Oct 26 14:19:34 desktop kernel: [    3.014480] ata6.00: configured for UDMA/100
Oct 26 14:19:34 desktop kernel: [    3.015159] sd 8:0:0:0: [sdb] No Caching mode page present
Oct 26 14:19:34 desktop kernel: [    3.015162] sd 8:0:0:0: [sdb] Assuming drive cache: write through
Oct 26 14:19:34 desktop kernel: [    3.017831] scsi 5:0:0:0: CD-ROM            Optiarc  DVD RW AD-7201S  1.06 PQ: 0 ANSI: 5
Oct 26 14:19:34 desktop kernel: [    3.020027] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Oct 26 14:19:34 desktop kernel: [    3.020161] sr 5:0:0:0: Attached scsi CD-ROM sr1
Oct 26 14:19:34 desktop kernel: [    3.020232] sr 5:0:0:0: Attached scsi generic sg7 type 5
Oct 26 14:19:34 desktop kernel: [    3.512019] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:19:34 desktop kernel: [    3.525140] ata7.00: ATA-8: WDC WD10EADS-00L5B1, 01.01A01, max UDMA/133
Oct 26 14:19:34 desktop kernel: [    3.525145] ata7.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:19:34 desktop kernel: [    3.525979] ata7.00: configured for UDMA/133
Oct 26 14:19:34 desktop kernel: [    3.526081] scsi 6:0:0:0: Direct-Access     ATA      WDC WD10EADS-00L 01.0 PQ: 0 ANSI: 5
Oct 26 14:19:34 desktop kernel: [    3.526213] sd 6:0:0:0: [sdg] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 26 14:19:34 desktop kernel: [    3.526238] sd 6:0:0:0: Attached scsi generic sg8 type 0
Oct 26 14:19:34 desktop kernel: [    3.526284] sd 6:0:0:0: [sdg] Write Protect is off
Oct 26 14:19:34 desktop kernel: [    3.526288] sd 6:0:0:0: [sdg] Mode Sense: 00 3a 00 00
Oct 26 14:19:34 desktop avahi-daemon[1033]: Found user 'avahi' (UID 106) and group 'avahi' (GID 113).
Oct 26 14:19:34 desktop avahi-daemon[1033]: Successfully dropped root privileges.
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> NetworkManager (version 0.9.1.90) is starting...
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 14:19:34 desktop avahi-daemon[1033]: avahi-daemon 0.6.30 starting up.
Oct 26 14:19:34 desktop kernel: [    3.526322] sd 6:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:19:34 desktop kernel: [    3.531336]  sdg: sdg1
Oct 26 14:19:34 desktop kernel: [    3.531580] sd 6:0:0:0: [sdg] Attached SCSI disk
Oct 26 14:19:34 desktop kernel: [    3.964039]  sdb: unknown partition table
Oct 26 14:19:34 desktop kernel: [    3.978025] sd 8:0:0:0: [sdb] No Caching mode page present
Oct 26 14:19:34 desktop kernel: [    3.978029] sd 8:0:0:0: [sdb] Assuming drive cache: write through
Oct 26 14:19:34 desktop kernel: [    3.978032] sd 8:0:0:0: [sdb] Attached SCSI disk
Oct 26 14:19:34 desktop kernel: [    4.016033] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:19:34 desktop kernel: [    4.022341] ata8.00: HPA detected: current 976771055, native 976773168
Oct 26 14:19:34 desktop kernel: [    4.022403] ata8.00: ATA-7: SAMSUNG HD502IJ, 1AA01113, max UDMA7
Oct 26 14:19:34 desktop kernel: [    4.022407] ata8.00: 976771055 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:19:34 desktop kernel: [    4.028833] ata8.00: configured for UDMA/133
Oct 26 14:19:34 desktop kernel: [    4.028926] scsi 7:0:0:0: Direct-Access     ATA      SAMSUNG HD502IJ  1AA0 PQ: 0 ANSI: 5
Oct 26 14:19:34 desktop kernel: [    4.029021] sd 7:0:0:0: [sdh] 976771055 512-byte logical blocks: (500 GB/465 GiB)
Oct 26 14:19:34 desktop kernel: [    4.029047] sd 7:0:0:0: Attached scsi generic sg9 type 0
Oct 26 14:19:34 desktop kernel: [    4.029072] sd 7:0:0:0: [sdh] Write Protect is off
Oct 26 14:19:34 desktop kernel: [    4.029075] sd 7:0:0:0: [sdh] Mode Sense: 00 3a 00 00
Oct 26 14:19:34 desktop kernel: [    4.029110] sd 7:0:0:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:19:34 desktop kernel: [    4.037984]  sdh: sdh1
Oct 26 14:19:34 desktop kernel: [    4.038199] sd 7:0:0:0: [sdh] Attached SCSI disk
Oct 26 14:19:34 desktop kernel: [    4.585840] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:19:34 desktop kernel: [   13.503897] lp: driver loaded but no devices found
Oct 26 14:19:34 desktop kernel: [   13.536680] Adding 7815584k swap on /dev/sda1.  Priority:-1 extents:1 across:7815584k 
Oct 26 14:19:34 desktop kernel: [   13.579635] nvidia: module license 'NVIDIA' taints kernel.
Oct 26 14:19:34 desktop kernel: [   13.579639] Disabling lock debugging due to kernel taint
Oct 26 14:19:34 desktop kernel: [   13.613432] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
Oct 26 14:19:34 desktop kernel: [   13.613485] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X
Oct 26 14:19:34 desktop kernel: [   13.613511] HDA Intel 0000:00:1b.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [   13.623575] type=1400 audit(1319631572.332:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=538 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   13.623777] type=1400 audit(1319631572.332:3): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=629 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   13.623839] type=1400 audit(1319631572.332:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=538 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   13.624032] type=1400 audit(1319631572.336:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=538 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   13.624048] type=1400 audit(1319631572.336:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=629 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   13.624211] type=1400 audit(1319631572.336:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=629 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   13.670121] hda_codec: ALC889A: BIOS auto-probing.
Oct 26 14:19:34 desktop kernel: [   13.688249] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Oct 26 14:19:34 desktop kernel: [   14.347064] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:19:34 desktop kernel: [   14.347072] nvidia 0000:01:00.0: setting latency timer to 64
Oct 26 14:19:34 desktop kernel: [   14.347077] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
Oct 26 14:19:34 desktop kernel: [   14.347315] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  280.13  Wed Jul 27 16:53:56 PDT 2011
Oct 26 14:19:34 desktop kernel: [   14.638754] vesafb: mode is 640x480x32, linelength=2560, pages=0
Oct 26 14:19:34 desktop kernel: [   14.638756] vesafb: scrolling: redraw
Oct 26 14:19:34 desktop kernel: [   14.638759] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 26 14:19:34 desktop kernel: [   14.640546] vesafb: framebuffer at 0xe5000000, mapped to 0xffffc90005800000, using 1216k, total 1216k
Oct 26 14:19:34 desktop kernel: [   14.640700] Console: switching to colour frame buffer device 80x30
Oct 26 14:19:34 desktop kernel: [   14.640712] fb0: VESA VGA frame buffer device
Oct 26 14:19:34 desktop kernel: [   14.812682] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
Oct 26 14:19:34 desktop kernel: [   14.957924] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:19:34 desktop kernel: [   15.029744] EXT4-fs (sdh1): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:19:34 desktop kernel: [   15.175465] EXT4-fs (sdg1): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:19:34 desktop kernel: [   15.231673] type=1400 audit(1319631573.940:8): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=995 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   15.233193] type=1400 audit(1319631573.944:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=999 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   15.233473] type=1400 audit(1319631573.944:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=999 comm="apparmor_parser"
Oct 26 14:19:34 desktop kernel: [   15.233687] type=1400 audit(1319631573.944:11): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=996 comm="apparmor_parser"
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin SimTech
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Gobi
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Huawei
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Wavecom
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin X22X
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Longcheer
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Nokia
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Option
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin AnyData
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Ericsson MBM
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin MotoC
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Samsung
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Linktop
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin ZTE
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Generic
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Novatel
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Sierra
Oct 26 14:19:34 desktop modem-manager[1028]: <info>  Loaded plugin Option High-Speed
Oct 26 14:19:34 desktop kernel: [   15.304941] ppdev: user-space parallel port driver
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 14:19:34 desktop avahi-daemon[1033]: Successfully called chroot().
Oct 26 14:19:34 desktop avahi-daemon[1033]: Successfully dropped remaining capabilities.
Oct 26 14:19:34 desktop dbus[1019]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
Oct 26 14:19:34 desktop avahi-daemon[1033]: Loading service file /services/udisks.service.
Oct 26 14:19:34 desktop polkitd[1053]: started daemon version 0.102 using authority implementation `local' version `0.102'
Oct 26 14:19:34 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: init!
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0, iface: eth0)
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: end _init.
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 14:19:34 desktop NetworkManager[1034]:    Ifupdown: get unmanaged devices count: 0
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: (17551152) ... get_connections.
Oct 26 14:19:34 desktop NetworkManager[1034]:    SCPlugin-Ifupdown: (17551152) ... get_connections (managed=false): return empty list.
Oct 26 14:19:34 desktop NetworkManager[1034]:    Ifupdown: get unmanaged devices count: 0
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> modem-manager is now available
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> Networking is enabled by state file
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): carrier is OFF
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): now managed
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): bringing up device.
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): preparing device.
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 14:19:34 desktop NetworkManager[1034]: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0
Oct 26 14:19:34 desktop kernel: [   15.405941] r8169 0000:04:00.0: eth0: link down
Oct 26 14:19:34 desktop kernel: [   15.405949] r8169 0000:04:00.0: eth0: link down
Oct 26 14:19:34 desktop kernel: [   15.406369] ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 14:19:34 desktop NetworkManager[1034]: <warn> bluez error getting default adapter: The name org.bluez was not provided by any .service files
Oct 26 14:19:34 desktop avahi-daemon[1033]: Network interface enumeration completed.
Oct 26 14:19:34 desktop avahi-daemon[1033]: Registering HINFO record with values 'X86_64'/'LINUX'.
Oct 26 14:19:34 desktop avahi-daemon[1033]: Server startup complete. Host name is desktop.local. Local service cookie is 1827417181.
Oct 26 14:19:34 desktop avahi-daemon[1033]: Service "desktop" (/services/udisks.service) successfully established.
Oct 26 14:19:34 desktop kernel: [   15.479298] init: failsafe main process (953) killed by TERM signal
Oct 26 14:19:34 desktop kernel: [   15.479704] init: apport pre-start process (1071) terminated with status 1
Oct 26 14:19:34 desktop anacron[1093]: Anacron 2.3 started on 2011-10-26
Oct 26 14:19:34 desktop cron[1082]: (CRON) INFO (pidfile fd = 3)
Oct 26 14:19:34 desktop acpid: starting up with proc fs
Oct 26 14:19:34 desktop acpid: 32 rules loaded
Oct 26 14:19:34 desktop acpid: waiting for events: event logging is off
Oct 26 14:19:34 desktop kernel: [   15.492465] init: apport post-stop process (1099) terminated with status 1
Oct 26 14:19:34 desktop cron[1106]: (CRON) STARTUP (fork ok)
Oct 26 14:19:34 desktop cron[1106]: (CRON) INFO (Running @reboot jobs)
Oct 26 14:19:34 desktop acpid: client connected from 1112[0:0]
Oct 26 14:19:34 desktop acpid: 1 client rule loaded
Oct 26 14:19:34 desktop anacron[1093]: Normal exit (0 jobs run)
Oct 26 14:19:34 desktop bluetoothd[1126]: Bluetooth daemon 4.96
Oct 26 14:19:34 desktop bluetoothd[1126]: Starting SDP server
Oct 26 14:19:34 desktop kernel: [   15.689543] Bluetooth: Core ver 2.16
Oct 26 14:19:34 desktop kernel: [   15.689561] NET: Registered protocol family 31
Oct 26 14:19:34 desktop kernel: [   15.689562] Bluetooth: HCI device and connection manager initialized
Oct 26 14:19:34 desktop kernel: [   15.689565] Bluetooth: HCI socket layer initialized
Oct 26 14:19:34 desktop kernel: [   15.689566] Bluetooth: L2CAP socket layer initialized
Oct 26 14:19:34 desktop kernel: [   15.689759] Bluetooth: SCO socket layer initialized
Oct 26 14:19:34 desktop kernel: [   15.691399] Bluetooth: RFCOMM TTY layer initialized
Oct 26 14:19:34 desktop kernel: [   15.691403] Bluetooth: RFCOMM socket layer initialized
Oct 26 14:19:34 desktop kernel: [   15.691404] Bluetooth: RFCOMM ver 1.11
Oct 26 14:19:34 desktop NetworkManager[1034]: <warn> bluez error getting default adapter: No such adapter
Oct 26 14:19:34 desktop kernel: [   15.694472] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 26 14:19:34 desktop kernel: [   15.694475] Bluetooth: BNEP filters: protocol multicast
Oct 26 14:19:34 desktop anacron[1219]: Anacron 2.3 started on 2011-10-26
Oct 26 14:19:34 desktop anacron[1219]: Normal exit (0 jobs run)
Oct 26 14:19:34 desktop udev-configure-printer: add /module/lp
Oct 26 14:19:34 desktop udev-configure-printer: Failed to get parent
Oct 26 14:19:34 desktop kernel: [   16.031686] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
Oct 26 14:19:34 desktop kernel: [   16.091055] EXT4-fs (sda2): re-mounted. Opts: commit=0
Oct 26 14:19:34 desktop kernel: [   16.100453] EXT4-fs (sdh1): re-mounted. Opts: commit=0
Oct 26 14:19:34 desktop kernel: [   16.107292] EXT4-fs (sdg1): re-mounted. Opts: commit=0
Oct 26 14:19:35 desktop acpid: client connected from 1112[0:0]
Oct 26 14:19:35 desktop acpid: 1 client rule loaded
Oct 26 14:19:35 desktop dbus[1019]: [system] Activating service name='org.freedesktop.Accounts' (using servicehelper)
Oct 26 14:19:35 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.Accounts'
Oct 26 14:19:35 desktop accounts-daemon[1282]: started daemon version 0.6.14
Oct 26 14:19:36 desktop dbus[1019]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
Oct 26 14:19:36 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
Oct 26 14:19:36 desktop dbus[1019]: [system] Activating service name='org.freedesktop.UPower' (using servicehelper)
Oct 26 14:19:36 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.UPower'
Oct 26 14:19:36 desktop anacron[1469]: Anacron 2.3 started on 2011-10-26
Oct 26 14:19:36 desktop anacron[1469]: Normal exit (0 jobs run)
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): carrier now ON (device state 20)
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): device state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Auto-activating connection 'Wired connection 1'.
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) starting connection 'Wired connection 1'
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) successful.
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 14:19:36 desktop kernel: [   17.757884] r8169 0000:04:00.0: eth0: link up
Oct 26 14:19:36 desktop kernel: [   17.758353] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> dhclient started with pid 1475
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 14:19:36 desktop dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1
Oct 26 14:19:36 desktop dhclient: Copyright 2004-2010 Internet Systems Consortium.
Oct 26 14:19:36 desktop dhclient: All rights reserved.
Oct 26 14:19:36 desktop dhclient: For info, please visit https://www.isc.org/software/dhcp/
Oct 26 14:19:36 desktop dhclient: 
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): DHCPv4 state changed nbi -> preinit
Oct 26 14:19:36 desktop dbus[1019]: [system] Activating service name='org.freedesktop.ColorManager' (using servicehelper)
Oct 26 14:19:36 desktop dhclient: Listening on LPF/eth0/00:1f:d0:25:52:1b
Oct 26 14:19:36 desktop dhclient: Sending on   LPF/eth0/00:1f:d0:25:52:1b
Oct 26 14:19:36 desktop dhclient: Sending on   Socket/fallback
Oct 26 14:19:36 desktop dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
Oct 26 14:19:36 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Oct 26 14:19:36 desktop dhclient: DHCPOFFER of 192.168.1.34 from 192.168.1.1
Oct 26 14:19:36 desktop dhclient: DHCPREQUEST of 192.168.1.34 on eth0 to 255.255.255.255 port 67
Oct 26 14:19:36 desktop dhclient: DHCPACK of 192.168.1.34 from 192.168.1.1
Oct 26 14:19:36 desktop dhclient: bound to 192.168.1.34 -- renewal in 105302 seconds.
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> (eth0): DHCPv4 state changed preinit -> bound
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started...
Oct 26 14:19:36 desktop NetworkManager[1034]: <info>   address 192.168.1.34
Oct 26 14:19:36 desktop NetworkManager[1034]: <info>   prefix 24 (255.255.255.0)
Oct 26 14:19:36 desktop NetworkManager[1034]: <info>   gateway 192.168.1.1
Oct 26 14:19:36 desktop NetworkManager[1034]: <info>   hostname 'dhcppc2'
Oct 26 14:19:36 desktop NetworkManager[1034]: <info>   nameserver '212.101.0.10'
Oct 26 14:19:36 desktop NetworkManager[1034]: <info>   nameserver '212.101.4.253'
Oct 26 14:19:36 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) started...
Oct 26 14:19:36 desktop avahi-daemon[1033]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.1.34.
Oct 26 14:19:36 desktop avahi-daemon[1033]: New relevant interface eth0.IPv4 for mDNS.
Oct 26 14:19:36 desktop avahi-daemon[1033]: Registering new address record for 192.168.1.34 on eth0.IPv4.
Oct 26 14:19:36 desktop dbus[1019]: [system] Activating service name='org.freedesktop.RealtimeKit1' (using servicehelper)
Oct 26 14:19:36 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Successfully called chroot.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Successfully dropped privileges.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Successfully limited resources.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Running.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Watchdog thread running.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Canary thread running.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Successfully made thread 1524 of process 1524 (n/a) owned by '104' high priority at nice level -11.
Oct 26 12:19:36 desktop rtkit-daemon[1526]: Supervising 1 threads of 1 processes of 1 users.
Oct 26 12:19:37 desktop rtkit-daemon[1526]: Successfully made thread 1529 of process 1524 (n/a) owned by '104' RT at priority 5.
Oct 26 12:19:37 desktop rtkit-daemon[1526]: Supervising 2 threads of 1 processes of 1 users.
Oct 26 12:19:37 desktop rtkit-daemon[1526]: Successfully made thread 1530 of process 1524 (n/a) owned by '104' RT at priority 5.
Oct 26 12:19:37 desktop rtkit-daemon[1526]: Supervising 3 threads of 1 processes of 1 users.
Oct 26 14:19:37 desktop kernel: [   18.339600] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
Oct 26 14:19:37 desktop kernel: [   18.348462] EXT4-fs (sda2): re-mounted. Opts: commit=0
Oct 26 14:19:37 desktop kernel: [   18.392325] EXT4-fs (sdh1): re-mounted. Opts: commit=0
Oct 26 14:19:37 desktop kernel: [   18.394537] EXT4-fs (sdg1): re-mounted. Opts: commit=0
Oct 26 14:19:37 desktop NetworkManager[1034]: <info> (eth0): device state change: ip-config -> activated (reason 'none') [70 100 0]
Oct 26 14:19:37 desktop NetworkManager[1034]: <info> Policy set 'Wired connection 1' (eth0) as default for IPv4 routing and DNS.
Oct 26 14:19:37 desktop NetworkManager[1034]: <info> Activation (eth0) successful, device activated.
Oct 26 14:19:37 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete.
Oct 26 14:19:37 desktop NetworkManager[1034]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete.
Oct 26 14:19:37 desktop dbus[1019]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
Oct 26 14:19:37 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 26 14:19:37 desktop avahi-daemon[1033]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::21f:d0ff:fe25:521b.
Oct 26 14:19:37 desktop avahi-daemon[1033]: New relevant interface eth0.IPv6 for mDNS.
Oct 26 14:19:37 desktop avahi-daemon[1033]: Registering new address record for fe80::21f:d0ff:fe25:521b on eth0.*.
Oct 26 14:19:42 desktop gnome-session[1620]: EggSMClient-WARNING: Desktop file '/home/fabian/.config/autostart/skype.desktop' has malformed Icon key 'skype.png'(should not include extension)
Oct 26 12:19:44 desktop rtkit-daemon[1526]: Successfully made thread 1703 of process 1703 (n/a) owned by '1000' high priority at nice level -11.
Oct 26 12:19:44 desktop rtkit-daemon[1526]: Supervising 4 threads of 2 processes of 2 users.
Oct 26 12:19:44 desktop rtkit-daemon[1526]: Successfully made thread 1704 of process 1703 (n/a) owned by '1000' RT at priority 5.
Oct 26 12:19:44 desktop rtkit-daemon[1526]: Supervising 5 threads of 2 processes of 2 users.
Oct 26 12:19:44 desktop rtkit-daemon[1526]: Successfully made thread 1705 of process 1703 (n/a) owned by '1000' RT at priority 5.
Oct 26 12:19:44 desktop rtkit-daemon[1526]: Supervising 6 threads of 2 processes of 2 users.
Oct 26 14:19:46 desktop dbus[1019]: [system] Activating service name='org.freedesktop.UDisks' (using servicehelper)
Oct 26 14:19:46 desktop dbus[1019]: [system] Successfully activated service 'org.freedesktop.UDisks'
Oct 26 14:19:46 desktop gnome-session[1620]: WARNING: Failed to start app: Unable to start application: Kindprozess »emerald« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:19:46 desktop gnome-session[1620]: WARNING: Failed to start app: Unable to start application: Kindprozess »mail-notification« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:19:46 desktop gnome-session[1620]: WARNING: Failed to start app: Unable to start application: Kindprozess »skype« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:19:46 desktop gnome-session[1620]: WARNING: Failed to start app: Unable to start application: Kindprozess »dropbox« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:19:46 desktop gnome-session[1620]: WARNING: Failed to start app: Unable to start application: Kindprozess »synergys« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:19:46 desktop kernel: [   28.064021] eth0: no IPv6 routers present
Oct 26 14:19:47 desktop ntpdate[1587]: adjust time server 91.189.94.4 offset 0.130563 sec
Oct 26 14:20:12 desktop acpid: client 1112[0:0] has disconnected
Oct 26 14:20:12 desktop acpid: client 1112[0:0] has disconnected
Oct 26 14:20:12 desktop acpid: client connected from 1936[0:0]
Oct 26 14:20:12 desktop acpid: 1 client rule loaded
Oct 26 14:20:13 desktop acpid: client connected from 1936[0:0]
Oct 26 14:20:13 desktop acpid: 1 client rule loaded
Oct 26 12:20:14 desktop rtkit-daemon[1526]: Successfully made thread 2018 of process 2018 (n/a) owned by '104' high priority at nice level -11.
Oct 26 12:20:14 desktop rtkit-daemon[1526]: Supervising 4 threads of 2 processes of 2 users.
Oct 26 12:20:14 desktop rtkit-daemon[1526]: Successfully made thread 2021 of process 2018 (n/a) owned by '104' RT at priority 5.
Oct 26 12:20:14 desktop rtkit-daemon[1526]: Supervising 5 threads of 2 processes of 2 users.
Oct 26 12:20:14 desktop rtkit-daemon[1526]: Successfully made thread 2022 of process 2018 (n/a) owned by '104' RT at priority 5.
Oct 26 12:20:14 desktop rtkit-daemon[1526]: Supervising 6 threads of 2 processes of 2 users.
Oct 26 12:20:19 desktop rtkit-daemon[1526]: Successfully made thread 2135 of process 2135 (n/a) owned by '1001' high priority at nice level -11.
Oct 26 12:20:19 desktop rtkit-daemon[1526]: Supervising 7 threads of 3 processes of 3 users.
Oct 26 12:20:19 desktop rtkit-daemon[1526]: Successfully made thread 2141 of process 2135 (n/a) owned by '1001' RT at priority 5.
Oct 26 12:20:19 desktop rtkit-daemon[1526]: Supervising 8 threads of 3 processes of 3 users.
Oct 26 12:20:19 desktop rtkit-daemon[1526]: Successfully made thread 2142 of process 2135 (n/a) owned by '1001' RT at priority 5.
Oct 26 12:20:19 desktop rtkit-daemon[1526]: Supervising 9 threads of 3 processes of 3 users.
Oct 26 14:20:33 desktop kernel: Kernel logging (proc) stopped.
Oct 26 14:20:33 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="982" x-info="http://www.rsyslog.com"] exiting on signal 15.
Oct 26 14:21:48 desktop kernel: imklog 5.8.1, log source = /proc/kmsg started.
Oct 26 14:21:48 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="969" x-info="http://www.rsyslog.com"] start
Oct 26 14:21:48 desktop rsyslogd: rsyslogd's groupid changed to 103
Oct 26 14:21:48 desktop rsyslogd: rsyslogd's userid changed to 101
Oct 26 14:21:48 desktop rsyslogd-2039: Could no open output pipe '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Oct 26 14:21:48 desktop kernel: [    0.000000] Initializing cgroup subsys cpuset
Oct 26 14:21:48 desktop kernel: [    0.000000] Initializing cgroup subsys cpu
Oct 26 14:21:48 desktop kernel: [    0.000000] Linux version 3.0.0-13-generic (buildd@allspice) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #21-Ubuntu SMP Mon Oct 17 20:18:51 UTC 2011 (Ubuntu 3.0.0-13.21-generic 3.0.6)
Oct 26 14:21:48 desktop kernel: [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-13-generic root=UUID=426ef53b-3501-49a3-af67-a6a18cff0233 ro quiet splash vt.handoff=7
Oct 26 14:21:48 desktop kernel: [    0.000000] KERNEL supported cpus:
Oct 26 14:21:48 desktop kernel: [    0.000000]   Intel GenuineIntel
Oct 26 14:21:48 desktop kernel: [    0.000000]   AMD AuthenticAMD
Oct 26 14:21:48 desktop kernel: [    0.000000]   Centaur CentaurHauls
Oct 26 14:21:48 desktop kernel: [    0.000000] BIOS-provided physical RAM map:
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfeb0000 (usable)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfeb0000 - 00000000cfee3000 (ACPI NVS)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfee3000 - 00000000cfef0000 (ACPI data)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000]  BIOS-e820: 0000000100000000 - 0000000130000000 (usable)
Oct 26 14:21:48 desktop kernel: [    0.000000] NX (Execute Disable) protection: active
Oct 26 14:21:48 desktop kernel: [    0.000000] DMI 2.4 present.
Oct 26 14:21:48 desktop kernel: [    0.000000] DMI: Gigabyte Technology Co., Ltd. EP45-DS3R/EP45-DS3R, BIOS F10 09/22/2008
Oct 26 14:21:48 desktop kernel: [    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 26 14:21:48 desktop kernel: [    0.000000] No AGP bridge found
Oct 26 14:21:48 desktop kernel: [    0.000000] last_pfn = 0x130000 max_arch_pfn = 0x400000000
Oct 26 14:21:48 desktop kernel: [    0.000000] MTRR default type: uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000] MTRR fixed ranges enabled:
Oct 26 14:21:48 desktop kernel: [    0.000000]   00000-9FFFF write-back
Oct 26 14:21:48 desktop kernel: [    0.000000]   A0000-BFFFF uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000]   C0000-CCFFF write-protect
Oct 26 14:21:48 desktop kernel: [    0.000000]   CD000-EFFFF uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000]   F0000-FFFFF write-through
Oct 26 14:21:48 desktop kernel: [    0.000000] MTRR variable ranges enabled:
Oct 26 14:21:48 desktop kernel: [    0.000000]   0 base 000000000 mask F00000000 write-back
Oct 26 14:21:48 desktop kernel: [    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000]   3 base 100000000 mask FC0000000 write-back
Oct 26 14:21:48 desktop kernel: [    0.000000]   4 base 130000000 mask FF0000000 uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000]   5 base 0CFF00000 mask FFFF00000 uncachable
Oct 26 14:21:48 desktop kernel: [    0.000000]   6 disabled
Oct 26 14:21:48 desktop kernel: [    0.000000]   7 disabled
Oct 26 14:21:48 desktop kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Oct 26 14:21:48 desktop kernel: [    0.000000] original variable MTRRs
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 0, base: 0GB, range: 4GB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 1, base: 3584MB, range: 512MB, type UC
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 2, base: 3328MB, range: 256MB, type UC
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 3, base: 4GB, range: 1GB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 4, base: 4864MB, range: 256MB, type UC
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 5, base: 3327MB, range: 1MB, type UC
Oct 26 14:21:48 desktop kernel: [    0.000000] total RAM covered: 4095M
Oct 26 14:21:48 desktop kernel: [    0.000000] Found optimal setting for mtrr clean up
Oct 26 14:21:48 desktop kernel: [    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 6  	lose cover RAM: 0G
Oct 26 14:21:48 desktop kernel: [    0.000000] New variable MTRRs
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 0, base: 0GB, range: 2GB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 1, base: 2GB, range: 1GB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 2, base: 3GB, range: 256MB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 3, base: 3327MB, range: 1MB, type UC
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 4, base: 4GB, range: 512MB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] reg 5, base: 4608MB, range: 256MB, type WB
Oct 26 14:21:48 desktop kernel: [    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
Oct 26 14:21:48 desktop kernel: [    0.000000] last_pfn = 0xcfeb0 max_arch_pfn = 0x400000000
Oct 26 14:21:48 desktop kernel: [    0.000000] found SMP MP-table at [ffff8800000f59d0] f59d0
Oct 26 14:21:48 desktop kernel: [    0.000000] initial memory mapped : 0 - 20000000
Oct 26 14:21:48 desktop kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
Oct 26 14:21:48 desktop kernel: [    0.000000] init_memory_mapping: 0000000000000000-00000000cfeb0000
Oct 26 14:21:48 desktop kernel: [    0.000000]  0000000000 - 00cfe00000 page 2M
Oct 26 14:21:48 desktop kernel: [    0.000000]  00cfe00000 - 00cfeb0000 page 4k
Oct 26 14:21:48 desktop kernel: [    0.000000] kernel direct mapping tables up to cfeb0000 @ cfeaa000-cfeb0000
Oct 26 14:21:48 desktop kernel: [    0.000000] init_memory_mapping: 0000000100000000-0000000130000000
Oct 26 14:21:48 desktop kernel: [    0.000000]  0100000000 - 0130000000 page 2M
Oct 26 14:21:48 desktop kernel: [    0.000000] kernel direct mapping tables up to 130000000 @ 12fffa000-130000000
Oct 26 14:21:48 desktop kernel: [    0.000000] RAMDISK: 365b6000 - 372d3000
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: RSDP 00000000000f7800 00014 (v00 GBT   )
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: RSDT 00000000cfee3040 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: FACP 00000000cfee30c0 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: DSDT 00000000cfee3180 050F5 (v01 GBT    GBTUACPI 00001000 MSFT 0100000C)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: FACS 00000000cfeb0000 00040
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: HPET 00000000cfee83c0 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: MCFG 00000000cfee8440 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: APIC 00000000cfee82c0 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: SSDT 00000000cfee8e20 003AB (v01  PmRef    CpuPm 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 26 14:21:48 desktop kernel: [    0.000000] No NUMA configuration found
Oct 26 14:21:48 desktop kernel: [    0.000000] Faking a node at 0000000000000000-0000000130000000
Oct 26 14:21:48 desktop kernel: [    0.000000] Initmem setup node 0 0000000000000000-0000000130000000
Oct 26 14:21:48 desktop kernel: [    0.000000]   NODE_DATA [000000012fffb000 - 000000012fffffff]
Oct 26 14:21:48 desktop kernel: [    0.000000]  [ffffea0000000000-ffffea00043fffff] PMD -> [ffff88012b600000-ffff88012effffff] on node 0
Oct 26 14:21:48 desktop kernel: [    0.000000] Zone PFN ranges:
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA      0x00000010 -> 0x00001000
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA32    0x00001000 -> 0x00100000
Oct 26 14:21:48 desktop kernel: [    0.000000]   Normal   0x00100000 -> 0x00130000
Oct 26 14:21:48 desktop kernel: [    0.000000] Movable zone start PFN for each node
Oct 26 14:21:48 desktop kernel: [    0.000000] early_node_map[3] active PFN ranges
Oct 26 14:21:48 desktop kernel: [    0.000000]     0: 0x00000010 -> 0x0000009e
Oct 26 14:21:48 desktop kernel: [    0.000000]     0: 0x00000100 -> 0x000cfeb0
Oct 26 14:21:48 desktop kernel: [    0.000000]     0: 0x00100000 -> 0x00130000
Oct 26 14:21:48 desktop kernel: [    0.000000] On node 0 totalpages: 1048126
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA zone: 56 pages used for memmap
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA zone: 5 pages reserved
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA zone: 3921 pages, LIFO batch:0
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA32 zone: 14280 pages used for memmap
Oct 26 14:21:48 desktop kernel: [    0.000000]   DMA32 zone: 833256 pages, LIFO batch:31
Oct 26 14:21:48 desktop kernel: [    0.000000]   Normal zone: 2688 pages used for memmap
Oct 26 14:21:48 desktop kernel: [    0.000000]   Normal zone: 193920 pages, LIFO batch:31
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x02] enabled)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x03] enabled)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x01] enabled)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Oct 26 14:21:48 desktop kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: IRQ0 used by override.
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: IRQ2 used by override.
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: IRQ9 used by override.
Oct 26 14:21:48 desktop kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Oct 26 14:21:48 desktop kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Oct 26 14:21:48 desktop kernel: [    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
Oct 26 14:21:48 desktop kernel: [    0.000000] nr_irqs_gsi: 40
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfeb0000 - 00000000cfee3000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fec00000
Oct 26 14:21:48 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
Oct 26 14:21:48 desktop kernel: [    0.000000] Allocating PCI resources starting at e4000000 (gap: e4000000:1ac00000)
Oct 26 14:21:48 desktop kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Oct 26 14:21:48 desktop kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
Oct 26 14:21:48 desktop kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88012fc00000 s79616 r8192 d22784 u524288
Oct 26 14:21:48 desktop kernel: [    0.000000] pcpu-alloc: s79616 r8192 d22784 u524288 alloc=1*2097152
Oct 26 14:21:48 desktop kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 
Oct 26 14:21:48 desktop kernel: [    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1031097
Oct 26 14:21:48 desktop kernel: [    0.000000] Policy zone: Normal
Oct 26 14:21:48 desktop kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-13-generic root=UUID=426ef53b-3501-49a3-af67-a6a18cff0233 ro quiet splash vt.handoff=7
Oct 26 14:21:48 desktop kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Oct 26 14:21:48 desktop kernel: [    0.000000] Checking aperture...
Oct 26 14:21:48 desktop kernel: [    0.000000] No AGP bridge found
Oct 26 14:21:48 desktop kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Oct 26 14:21:48 desktop kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Oct 26 14:21:48 desktop kernel: [    0.000000] Memory: 4039700k/4980736k available (6105k kernel code, 788232k absent, 152804k reserved, 4879k data, 984k init)
Oct 26 14:21:48 desktop kernel: [    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Oct 26 14:21:48 desktop kernel: [    0.000000] Hierarchical RCU implementation.
Oct 26 14:21:48 desktop kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Oct 26 14:21:48 desktop kernel: [    0.000000] NR_IRQS:16640 nr_irqs:712 16
Oct 26 14:21:48 desktop kernel: [    0.000000] vt handoff: transparent VT on vt#7
Oct 26 14:21:48 desktop kernel: [    0.000000] Console: colour dummy device 80x25
Oct 26 14:21:48 desktop kernel: [    0.000000] console [tty0] enabled
Oct 26 14:21:48 desktop kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Oct 26 14:21:48 desktop kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 26 14:21:48 desktop kernel: [    0.000000] hpet clockevent registered
Oct 26 14:21:48 desktop kernel: [    0.000000] Fast TSC calibration using PIT
Oct 26 14:21:48 desktop kernel: [    0.000000] Detected 2400.535 MHz processor.
Oct 26 14:21:48 desktop kernel: [    0.004003] Calibrating delay loop (skipped), value calculated using timer frequency.. 4801.07 BogoMIPS (lpj=9602140)
Oct 26 14:21:48 desktop kernel: [    0.004008] pid_max: default: 32768 minimum: 301
Oct 26 14:21:48 desktop kernel: [    0.004035] Security Framework initialized
Oct 26 14:21:48 desktop kernel: [    0.004051] AppArmor: AppArmor initialized
Oct 26 14:21:48 desktop kernel: [    0.004052] Yama: becoming mindful.
Oct 26 14:21:48 desktop kernel: [    0.004448] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Oct 26 14:21:48 desktop kernel: [    0.008204] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Oct 26 14:21:48 desktop kernel: [    0.008986] Mount-cache hash table entries: 256
Oct 26 14:21:48 desktop kernel: [    0.009124] Initializing cgroup subsys cpuacct
Oct 26 14:21:48 desktop kernel: [    0.009130] Initializing cgroup subsys memory
Oct 26 14:21:48 desktop kernel: [    0.009139] Initializing cgroup subsys devices
Oct 26 14:21:48 desktop kernel: [    0.009141] Initializing cgroup subsys freezer
Oct 26 14:21:48 desktop kernel: [    0.009143] Initializing cgroup subsys net_cls
Oct 26 14:21:48 desktop kernel: [    0.009145] Initializing cgroup subsys blkio
Oct 26 14:21:48 desktop kernel: [    0.009151] Initializing cgroup subsys perf_event
Oct 26 14:21:48 desktop kernel: [    0.009180] CPU: Physical Processor ID: 0
Oct 26 14:21:48 desktop kernel: [    0.009181] CPU: Processor Core ID: 0
Oct 26 14:21:48 desktop kernel: [    0.009184] mce: CPU supports 6 MCE banks
Oct 26 14:21:48 desktop kernel: [    0.009191] CPU0: Thermal monitoring enabled (TM2)
Oct 26 14:21:48 desktop kernel: [    0.009195] using mwait in idle threads.
Oct 26 14:21:48 desktop kernel: [    0.011432] ACPI: Core revision 20110413
Oct 26 14:21:48 desktop kernel: [    0.015069] ftrace: allocating 25656 entries in 101 pages
Oct 26 14:21:48 desktop kernel: [    0.016346] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 26 14:21:48 desktop kernel: [    0.056481] CPU0: Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz stepping 0b
Oct 26 14:21:48 desktop kernel: [    0.060003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
Oct 26 14:21:48 desktop kernel: [    0.060003] PEBS disabled due to CPU errata.
Oct 26 14:21:48 desktop kernel: [    0.060003] ... version:                2
Oct 26 14:21:48 desktop kernel: [    0.060003] ... bit width:              40
Oct 26 14:21:48 desktop kernel: [    0.060003] ... generic registers:      2
Oct 26 14:21:48 desktop kernel: [    0.060003] ... value mask:             000000ffffffffff
Oct 26 14:21:48 desktop kernel: [    0.060003] ... max period:             000000007fffffff
Oct 26 14:21:48 desktop kernel: [    0.060003] ... fixed-purpose events:   3
Oct 26 14:21:48 desktop kernel: [    0.060003] ... event mask:             0000000700000003
Oct 26 14:21:48 desktop kernel: [    0.060003] Booting Node   0, Processors  #1
Oct 26 14:21:48 desktop kernel: [    0.060003] smpboot cpu 1: start_ip = 99000
Oct 26 14:21:48 desktop kernel: [    0.148083]  #2
Oct 26 14:21:48 desktop kernel: [    0.148085] smpboot cpu 2: start_ip = 99000
Oct 26 14:21:48 desktop kernel: [    0.240086]  #3 Ok.
Oct 26 14:21:48 desktop kernel: [    0.240088] smpboot cpu 3: start_ip = 99000
Oct 26 14:21:48 desktop kernel: [    0.332033] Brought up 4 CPUs
Oct 26 14:21:48 desktop kernel: [    0.332036] Total of 4 processors activated (19201.59 BogoMIPS).
Oct 26 14:21:48 desktop kernel: [    0.334283] devtmpfs: initialized
Oct 26 14:21:48 desktop kernel: [    0.334283] PM: Registering ACPI NVS region at cfeb0000 (208896 bytes)
Oct 26 14:21:48 desktop kernel: [    0.334283] print_constraints: dummy: 
Oct 26 14:21:48 desktop kernel: [    0.334283] Time: 14:21:33  Date: 10/26/11
Oct 26 14:21:48 desktop kernel: [    0.334283] NET: Registered protocol family 16
Oct 26 14:21:48 desktop kernel: [    0.334283] Trying to unpack rootfs image as initramfs...
Oct 26 14:21:48 desktop kernel: [    0.336083] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Oct 26 14:21:48 desktop kernel: [    0.336086] ACPI: bus type pci registered
Oct 26 14:21:48 desktop kernel: [    0.336139] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Oct 26 14:21:48 desktop kernel: [    0.336142] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
Oct 26 14:21:48 desktop kernel: [    0.346680] PCI: Using configuration type 1 for base access
Oct 26 14:21:48 desktop kernel: [    0.347383] bio: create slab <bio-0> at 0
Oct 26 14:21:48 desktop kernel: [    0.348445] ACPI: EC: Look up EC in DSDT
Oct 26 14:21:48 desktop kernel: [    0.352186] ACPI: SSDT 00000000cfee8540 0022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.352375] ACPI: Dynamic OEM Table Load:
Oct 26 14:21:48 desktop kernel: [    0.352378] ACPI: SSDT           (null) 0022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.352474] ACPI: SSDT 00000000cfee8a00 00152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.352652] ACPI: Dynamic OEM Table Load:
Oct 26 14:21:48 desktop kernel: [    0.352655] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.352751] ACPI: SSDT 00000000cfee8b60 00152 (v01  PmRef  Cpu2Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.352929] ACPI: Dynamic OEM Table Load:
Oct 26 14:21:48 desktop kernel: [    0.352932] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu2Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.353032] ACPI: SSDT 00000000cfee8cc0 00152 (v01  PmRef  Cpu3Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.353213] ACPI: Dynamic OEM Table Load:
Oct 26 14:21:48 desktop kernel: [    0.353216] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu3Ist 00003000 INTL 20040311)
Oct 26 14:21:48 desktop kernel: [    0.353348] ACPI: Interpreter enabled
Oct 26 14:21:48 desktop kernel: [    0.353352] ACPI: (supports S0 S3 S4 S5)
Oct 26 14:21:48 desktop kernel: [    0.353367] ACPI: Using IOAPIC for interrupt routing
Oct 26 14:21:48 desktop kernel: [    0.356953] ACPI: No dock devices found.
Oct 26 14:21:48 desktop kernel: [    0.356955] HEST: Table not found.
Oct 26 14:21:48 desktop kernel: [    0.356958] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 26 14:21:48 desktop kernel: [    0.357017] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Oct 26 14:21:48 desktop kernel: [    0.357111] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
Oct 26 14:21:48 desktop kernel: [    0.357114] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
Oct 26 14:21:48 desktop kernel: [    0.357116] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
Oct 26 14:21:48 desktop kernel: [    0.357119] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
Oct 26 14:21:48 desktop kernel: [    0.357121] pci_root PNP0A03:00: host bridge window [mem 0xfed40000-0xfed44fff]
Oct 26 14:21:48 desktop kernel: [    0.357123] pci_root PNP0A03:00: host bridge window [mem 0xcff00000-0xfebfffff]
Oct 26 14:21:48 desktop kernel: [    0.357135] pci 0000:00:00.0: [8086:2e20] type 0 class 0x000600
Oct 26 14:21:48 desktop kernel: [    0.357171] pci 0000:00:01.0: [8086:2e21] type 1 class 0x000604
Oct 26 14:21:48 desktop kernel: [    0.357199] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Oct 26 14:21:48 desktop kernel: [    0.357202] pci 0000:00:01.0: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.357238] pci 0000:00:1a.0: [8086:3a37] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.357278] pci 0000:00:1a.0: reg 20: [io  0xe100-0xe11f]
Oct 26 14:21:48 desktop kernel: [    0.357319] pci 0000:00:1a.1: [8086:3a38] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.357359] pci 0000:00:1a.1: reg 20: [io  0xe200-0xe21f]
Oct 26 14:21:48 desktop kernel: [    0.357400] pci 0000:00:1a.2: [8086:3a39] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.357440] pci 0000:00:1a.2: reg 20: [io  0xe000-0xe01f]
Oct 26 14:21:48 desktop kernel: [    0.357485] pci 0000:00:1a.7: [8086:3a3c] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.357501] pci 0000:00:1a.7: reg 10: [mem 0xea205000-0xea2053ff]
Oct 26 14:21:48 desktop kernel: [    0.357579] pci 0000:00:1b.0: [8086:3a3e] type 0 class 0x000403
Oct 26 14:21:48 desktop kernel: [    0.357593] pci 0000:00:1b.0: reg 10: [mem 0xea200000-0xea203fff 64bit]
Oct 26 14:21:48 desktop kernel: [    0.357644] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Oct 26 14:21:48 desktop kernel: [    0.357648] pci 0000:00:1b.0: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.357665] pci 0000:00:1c.0: [8086:3a40] type 1 class 0x000604
Oct 26 14:21:48 desktop kernel: [    0.357716] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Oct 26 14:21:48 desktop kernel: [    0.357719] pci 0000:00:1c.0: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.357740] pci 0000:00:1c.3: [8086:3a46] type 1 class 0x000604
Oct 26 14:21:48 desktop kernel: [    0.357790] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Oct 26 14:21:48 desktop kernel: [    0.357793] pci 0000:00:1c.3: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.357812] pci 0000:00:1c.4: [8086:3a48] type 1 class 0x000604
Oct 26 14:21:48 desktop kernel: [    0.357863] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Oct 26 14:21:48 desktop kernel: [    0.357867] pci 0000:00:1c.4: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.357889] pci 0000:00:1d.0: [8086:3a34] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.357929] pci 0000:00:1d.0: reg 20: [io  0xe300-0xe31f]
Oct 26 14:21:48 desktop kernel: [    0.357969] pci 0000:00:1d.1: [8086:3a35] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.358009] pci 0000:00:1d.1: reg 20: [io  0xe400-0xe41f]
Oct 26 14:21:48 desktop kernel: [    0.358049] pci 0000:00:1d.2: [8086:3a36] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.358089] pci 0000:00:1d.2: reg 20: [io  0xe500-0xe51f]
Oct 26 14:21:48 desktop kernel: [    0.358134] pci 0000:00:1d.7: [8086:3a3a] type 0 class 0x000c03
Oct 26 14:21:48 desktop kernel: [    0.358150] pci 0000:00:1d.7: reg 10: [mem 0xea204000-0xea2043ff]
Oct 26 14:21:48 desktop kernel: [    0.358224] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
Oct 26 14:21:48 desktop kernel: [    0.358275] pci 0000:00:1f.0: [8086:3a16] type 0 class 0x000601
Oct 26 14:21:48 desktop kernel: [    0.358352] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
Oct 26 14:21:48 desktop kernel: [    0.358356] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
Oct 26 14:21:48 desktop kernel: [    0.358360] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 000b)
Oct 26 14:21:48 desktop kernel: [    0.358396] pci 0000:00:1f.2: [8086:3a22] type 0 class 0x000106
Oct 26 14:21:48 desktop kernel: [    0.358413] pci 0000:00:1f.2: reg 10: [io  0xe600-0xe607]
Oct 26 14:21:48 desktop kernel: [    0.358421] pci 0000:00:1f.2: reg 14: [io  0xe700-0xe703]
Oct 26 14:21:48 desktop kernel: [    0.358428] pci 0000:00:1f.2: reg 18: [io  0xe800-0xe807]
Oct 26 14:21:48 desktop kernel: [    0.358436] pci 0000:00:1f.2: reg 1c: [io  0xe900-0xe903]
Oct 26 14:21:48 desktop kernel: [    0.358443] pci 0000:00:1f.2: reg 20: [io  0xea00-0xea1f]
Oct 26 14:21:48 desktop kernel: [    0.358451] pci 0000:00:1f.2: reg 24: [mem 0xea206000-0xea2067ff]
Oct 26 14:21:48 desktop kernel: [    0.358481] pci 0000:00:1f.2: PME# supported from D3hot
Oct 26 14:21:48 desktop kernel: [    0.358485] pci 0000:00:1f.2: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.358500] pci 0000:00:1f.3: [8086:3a30] type 0 class 0x000c05
Oct 26 14:21:48 desktop kernel: [    0.358514] pci 0000:00:1f.3: reg 10: [mem 0xea207000-0xea2070ff 64bit]
Oct 26 14:21:48 desktop kernel: [    0.358534] pci 0000:00:1f.3: reg 20: [io  0x0500-0x051f]
Oct 26 14:21:48 desktop kernel: [    0.358589] pci 0000:01:00.0: [10de:05e2] type 0 class 0x000300
Oct 26 14:21:48 desktop kernel: [    0.358599] pci 0000:01:00.0: reg 10: [mem 0xe6000000-0xe6ffffff]
Oct 26 14:21:48 desktop kernel: [    0.358609] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.358619] pci 0000:01:00.0: reg 1c: [mem 0xe4000000-0xe5ffffff 64bit]
Oct 26 14:21:48 desktop kernel: [    0.358627] pci 0000:01:00.0: reg 24: [io  0xb000-0xb07f]
Oct 26 14:21:48 desktop kernel: [    0.358634] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
Oct 26 14:21:48 desktop kernel: [    0.358666] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 26 14:21:48 desktop kernel: [    0.358669] pci 0000:00:01.0:   bridge window [io  0xb000-0xbfff]
Oct 26 14:21:48 desktop kernel: [    0.358672] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe7ffffff]
Oct 26 14:21:48 desktop kernel: [    0.358676] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.358712] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
Oct 26 14:21:48 desktop kernel: [    0.358716] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
Oct 26 14:21:48 desktop kernel: [    0.358720] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
Oct 26 14:21:48 desktop kernel: [    0.358725] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:21:48 desktop kernel: [    0.358777] pci 0000:03:00.0: [197b:2368] type 0 class 0x000101
Oct 26 14:21:48 desktop kernel: [    0.358806] pci 0000:03:00.0: reg 10: [io  0xc000-0xc007]
Oct 26 14:21:48 desktop kernel: [    0.358820] pci 0000:03:00.0: reg 14: [io  0xc100-0xc103]
Oct 26 14:21:48 desktop kernel: [    0.358833] pci 0000:03:00.0: reg 18: [io  0xc200-0xc207]
Oct 26 14:21:48 desktop kernel: [    0.358847] pci 0000:03:00.0: reg 1c: [io  0xc300-0xc303]
Oct 26 14:21:48 desktop kernel: [    0.358861] pci 0000:03:00.0: reg 20: [io  0xc400-0xc40f]
Oct 26 14:21:48 desktop kernel: [    0.358936] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
Oct 26 14:21:48 desktop kernel: [    0.358940] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
Oct 26 14:21:48 desktop kernel: [    0.358943] pci 0000:00:1c.3:   bridge window [mem 0xe8000000-0xe8ffffff]
Oct 26 14:21:48 desktop kernel: [    0.358949] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:21:48 desktop kernel: [    0.359001] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
Oct 26 14:21:48 desktop kernel: [    0.359017] pci 0000:04:00.0: reg 10: [io  0xd000-0xd0ff]
Oct 26 14:21:48 desktop kernel: [    0.359045] pci 0000:04:00.0: reg 18: [mem 0xea010000-0xea010fff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.359063] pci 0000:04:00.0: reg 20: [mem 0xea000000-0xea00ffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.359075] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 26 14:21:48 desktop kernel: [    0.359112] pci 0000:04:00.0: supports D1 D2
Oct 26 14:21:48 desktop kernel: [    0.359114] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 26 14:21:48 desktop kernel: [    0.359119] pci 0000:04:00.0: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.359150] pci 0000:00:1c.4: PCI bridge to [bus 04-04]
Oct 26 14:21:48 desktop kernel: [    0.359154] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
Oct 26 14:21:48 desktop kernel: [    0.359157] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe9ffffff]
Oct 26 14:21:48 desktop kernel: [    0.359163] pci 0000:00:1c.4:   bridge window [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.359200] pci 0000:05:07.0: [104c:8024] type 0 class 0x000c00
Oct 26 14:21:48 desktop kernel: [    0.359217] pci 0000:05:07.0: reg 10: [mem 0xea104000-0xea1047ff]
Oct 26 14:21:48 desktop kernel: [    0.359227] pci 0000:05:07.0: reg 14: [mem 0xea100000-0xea103fff]
Oct 26 14:21:48 desktop kernel: [    0.359284] pci 0000:05:07.0: supports D1 D2
Oct 26 14:21:48 desktop kernel: [    0.359286] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
Oct 26 14:21:48 desktop kernel: [    0.359290] pci 0000:05:07.0: PME# disabled
Oct 26 14:21:48 desktop kernel: [    0.359325] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359329] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
Oct 26 14:21:48 desktop kernel: [    0.359332] pci 0000:00:1e.0:   bridge window [mem 0xea100000-0xea1fffff]
Oct 26 14:21:48 desktop kernel: [    0.359338] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:21:48 desktop kernel: [    0.359341] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359343] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359345] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359348] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359350] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359352] pci 0000:00:1e.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
Oct 26 14:21:48 desktop kernel: [    0.359372] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 26 14:21:48 desktop kernel: [    0.359462] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
Oct 26 14:21:48 desktop kernel: [    0.359492] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
Oct 26 14:21:48 desktop kernel: [    0.359525] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
Oct 26 14:21:48 desktop kernel: [    0.359552] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
Oct 26 14:21:48 desktop kernel: [    0.359632]  pci0000:00: Requesting ACPI _OSC control (0x1d)
Oct 26 14:21:48 desktop kernel: [    0.359635]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
Oct 26 14:21:48 desktop kernel: [    0.359637] ACPI _OSC control for PCIe not granted, disabling ASPM
Oct 26 14:21:48 desktop kernel: [    0.367503] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
Oct 26 14:21:48 desktop kernel: [    0.367547] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
Oct 26 14:21:48 desktop kernel: [    0.367592] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
Oct 26 14:21:48 desktop kernel: [    0.367633] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 *15)
Oct 26 14:21:48 desktop kernel: [    0.367673] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
Oct 26 14:21:48 desktop kernel: [    0.367715] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
Oct 26 14:21:48 desktop kernel: [    0.367756] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
Oct 26 14:21:48 desktop kernel: [    0.367796] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
Oct 26 14:21:48 desktop kernel: [    0.367894] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Oct 26 14:21:48 desktop kernel: [    0.367897] vgaarb: loaded
Oct 26 14:21:48 desktop kernel: [    0.367899] vgaarb: bridge control possible 0000:01:00.0
Oct 26 14:21:48 desktop kernel: [    0.368080] SCSI subsystem initialized
Oct 26 14:21:48 desktop kernel: [    0.368125] libata version 3.00 loaded.
Oct 26 14:21:48 desktop kernel: [    0.368125] usbcore: registered new interface driver usbfs
Oct 26 14:21:48 desktop kernel: [    0.368125] usbcore: registered new interface driver hub
Oct 26 14:21:48 desktop kernel: [    0.368125] usbcore: registered new device driver usb
Oct 26 14:21:48 desktop kernel: [    0.368125] PCI: Using ACPI for IRQ routing
Oct 26 14:21:48 desktop kernel: [    0.369394] PCI: pci_cache_line_size set to 64 bytes
Oct 26 14:21:48 desktop kernel: [    0.369472] reserve RAM buffer: 000000000009e800 - 000000000009ffff 
Oct 26 14:21:48 desktop kernel: [    0.369474] reserve RAM buffer: 00000000cfeb0000 - 00000000cfffffff 
Oct 26 14:21:48 desktop kernel: [    0.369556] NetLabel: Initializing
Oct 26 14:21:48 desktop kernel: [    0.369558] NetLabel:  domain hash size = 128
Oct 26 14:21:48 desktop kernel: [    0.369559] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 26 14:21:48 desktop kernel: [    0.369569] NetLabel:  unlabeled traffic allowed by default
Oct 26 14:21:48 desktop kernel: [    0.369602] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
Oct 26 14:21:48 desktop kernel: [    0.369607] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Oct 26 14:21:48 desktop kernel: [    0.369611] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Oct 26 14:21:48 desktop kernel: [    0.380235] Switching to clocksource hpet
Oct 26 14:21:48 desktop kernel: [    0.380742] Switched to NOHz mode on CPU #1
Oct 26 14:21:48 desktop kernel: [    0.380774] Switched to NOHz mode on CPU #2
Oct 26 14:21:48 desktop kernel: [    0.383592] Switched to NOHz mode on CPU #0
Oct 26 14:21:48 desktop kernel: [    0.383646] Switched to NOHz mode on CPU #3
Oct 26 14:21:48 desktop kernel: [    0.386168] AppArmor: AppArmor Filesystem Enabled
Oct 26 14:21:48 desktop kernel: [    0.386195] pnp: PnP ACPI init
Oct 26 14:21:48 desktop kernel: [    0.386212] ACPI: bus type pnp registered
Oct 26 14:21:48 desktop kernel: [    0.386295] pnp 00:00: [bus 00-3f]
Oct 26 14:21:48 desktop kernel: [    0.386298] pnp 00:00: [io  0x0cf8-0x0cff]
Oct 26 14:21:48 desktop kernel: [    0.386300] pnp 00:00: [io  0x0000-0x0cf7 window]
Oct 26 14:21:48 desktop kernel: [    0.386302] pnp 00:00: [io  0x0d00-0xffff window]
Oct 26 14:21:48 desktop kernel: [    0.386304] pnp 00:00: [mem 0x000a0000-0x000bffff window]
Oct 26 14:21:48 desktop kernel: [    0.386306] pnp 00:00: [mem 0x000c0000-0x000dffff window]
Oct 26 14:21:48 desktop kernel: [    0.386309] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
Oct 26 14:21:48 desktop kernel: [    0.386311] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
Oct 26 14:21:48 desktop kernel: [    0.386364] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 26 14:21:48 desktop kernel: [    0.386434] pnp 00:01: [io  0x0010-0x001f]
Oct 26 14:21:48 desktop kernel: [    0.386436] pnp 00:01: [io  0x0022-0x003f]
Oct 26 14:21:48 desktop kernel: [    0.386438] pnp 00:01: [io  0x0044-0x004d]
Oct 26 14:21:48 desktop kernel: [    0.386439] pnp 00:01: [io  0x0050-0x005f]
Oct 26 14:21:48 desktop kernel: [    0.386441] pnp 00:01: [io  0x0062-0x0063]
Oct 26 14:21:48 desktop kernel: [    0.386442] pnp 00:01: [io  0x0065-0x006f]
Oct 26 14:21:48 desktop kernel: [    0.386444] pnp 00:01: [io  0x0074-0x007f]
Oct 26 14:21:48 desktop kernel: [    0.386446] pnp 00:01: [io  0x0091-0x0093]
Oct 26 14:21:48 desktop kernel: [    0.386447] pnp 00:01: [io  0x00a2-0x00bf]
Oct 26 14:21:48 desktop kernel: [    0.386449] pnp 00:01: [io  0x00e0-0x00ef]
Oct 26 14:21:48 desktop kernel: [    0.386450] pnp 00:01: [io  0x04d0-0x04d1]
Oct 26 14:21:48 desktop kernel: [    0.386452] pnp 00:01: [io  0x0290-0x029f]
Oct 26 14:21:48 desktop kernel: [    0.386454] pnp 00:01: [io  0x0800-0x0805]
Oct 26 14:21:48 desktop kernel: [    0.386455] pnp 00:01: [io  0x0290-0x0294]
Oct 26 14:21:48 desktop kernel: [    0.386457] pnp 00:01: [io  0x0880-0x088f]
Oct 26 14:21:48 desktop kernel: [    0.386458] pnp 00:01: [io  0x04c0-0x04ff]
Oct 26 14:21:48 desktop kernel: [    0.386519] system 00:01: [io  0x04d0-0x04d1] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.386522] system 00:01: [io  0x0290-0x029f] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.386524] system 00:01: [io  0x0800-0x0805] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.386526] system 00:01: [io  0x0290-0x0294] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.386529] system 00:01: [io  0x0880-0x088f] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.386531] system 00:01: [io  0x04c0-0x04ff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.386534] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:21:48 desktop kernel: [    0.386545] pnp 00:02: [dma 4]
Oct 26 14:21:48 desktop kernel: [    0.386547] pnp 00:02: [io  0x0000-0x000f]
Oct 26 14:21:48 desktop kernel: [    0.386549] pnp 00:02: [io  0x0080-0x0090]
Oct 26 14:21:48 desktop kernel: [    0.386550] pnp 00:02: [io  0x0094-0x009f]
Oct 26 14:21:48 desktop kernel: [    0.386552] pnp 00:02: [io  0x00c0-0x00df]
Oct 26 14:21:48 desktop kernel: [    0.386579] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 26 14:21:48 desktop kernel: [    0.386622] pnp 00:03: [irq 0 disabled]
Oct 26 14:21:48 desktop kernel: [    0.386632] pnp 00:03: [irq 8]
Oct 26 14:21:48 desktop kernel: [    0.386633] pnp 00:03: [mem 0xfed00000-0xfed003ff]
Oct 26 14:21:48 desktop kernel: [    0.386662] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
Oct 26 14:21:48 desktop kernel: [    0.386685] pnp 00:04: [io  0x0070-0x0073]
Oct 26 14:21:48 desktop kernel: [    0.386712] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 26 14:21:48 desktop kernel: [    0.386720] pnp 00:05: [io  0x0061]
Oct 26 14:21:48 desktop kernel: [    0.386748] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 26 14:21:48 desktop kernel: [    0.386756] pnp 00:06: [io  0x00f0-0x00ff]
Oct 26 14:21:48 desktop kernel: [    0.386761] pnp 00:06: [irq 13]
Oct 26 14:21:48 desktop kernel: [    0.386787] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 26 14:21:48 desktop kernel: [    0.387056] pnp 00:07: [io  0x0400-0x04bf]
Oct 26 14:21:48 desktop kernel: [    0.387100] system 00:07: [io  0x0400-0x04bf] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387104] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:21:48 desktop kernel: [    0.387265] pnp 00:08: [mem 0xe0000000-0xe3ffffff]
Oct 26 14:21:48 desktop kernel: [    0.387317] system 00:08: [mem 0xe0000000-0xe3ffffff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387320] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:21:48 desktop kernel: [    0.387447] pnp 00:09: [mem 0x000d2000-0x000d3fff]
Oct 26 14:21:48 desktop kernel: [    0.387450] pnp 00:09: [mem 0x000f0000-0x000f7fff]
Oct 26 14:21:48 desktop kernel: [    0.387451] pnp 00:09: [mem 0x000f8000-0x000fbfff]
Oct 26 14:21:48 desktop kernel: [    0.387453] pnp 00:09: [mem 0x000fc000-0x000fffff]
Oct 26 14:21:48 desktop kernel: [    0.387455] pnp 00:09: [mem 0xcfeb0000-0xcfefffff]
Oct 26 14:21:48 desktop kernel: [    0.387457] pnp 00:09: [mem 0x00000000-0x0009ffff]
Oct 26 14:21:48 desktop kernel: [    0.387459] pnp 00:09: [mem 0x00100000-0xcfeaffff]
Oct 26 14:21:48 desktop kernel: [    0.387461] pnp 00:09: [mem 0xfec00000-0xfec00fff]
Oct 26 14:21:48 desktop kernel: [    0.387462] pnp 00:09: [mem 0xfed10000-0xfed1dfff]
Oct 26 14:21:48 desktop kernel: [    0.387464] pnp 00:09: [mem 0xfed20000-0xfed8ffff]
Oct 26 14:21:48 desktop kernel: [    0.387466] pnp 00:09: [mem 0xfee00000-0xfee00fff]
Oct 26 14:21:48 desktop kernel: [    0.387468] pnp 00:09: [mem 0xffb00000-0xffb7ffff]
Oct 26 14:21:48 desktop kernel: [    0.387472] pnp 00:09: [mem 0xfff00000-0xffffffff]
Oct 26 14:21:48 desktop kernel: [    0.387474] pnp 00:09: [mem 0x000e0000-0x000effff]
Oct 26 14:21:48 desktop kernel: [    0.387533] system 00:09: [mem 0x000d2000-0x000d3fff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387536] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387539] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387541] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387544] system 00:09: [mem 0xcfeb0000-0xcfefffff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387546] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387549] system 00:09: [mem 0x00100000-0xcfeaffff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387551] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387554] system 00:09: [mem 0xfed10000-0xfed1dfff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387556] system 00:09: [mem 0xfed20000-0xfed8ffff] could not be reserved
Oct 26 14:21:48 desktop kernel: [    0.387559] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387561] system 00:09: [mem 0xffb00000-0xffb7ffff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387564] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387566] system 00:09: [mem 0x000e0000-0x000effff] has been reserved
Oct 26 14:21:48 desktop kernel: [    0.387569] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 26 14:21:48 desktop kernel: [    0.387590] pnp 00:0a: [mem 0xffb80000-0xffbfffff]
Oct 26 14:21:48 desktop kernel: [    0.387627] pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
Oct 26 14:21:48 desktop kernel: [    0.387633] pnp: PnP ACPI: found 11 devices
Oct 26 14:21:48 desktop kernel: [    0.387634] ACPI: ACPI bus type pnp unregistered
Oct 26 14:21:48 desktop kernel: [    0.393533] PCI: max bus depth: 1 pci_try_num: 2
Oct 26 14:21:48 desktop kernel: [    0.393578] pci 0000:00:1c.3: BAR 15: assigned [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393582] pci 0000:00:1c.0: BAR 14: assigned [mem 0xea500000-0xea6fffff]
Oct 26 14:21:48 desktop kernel: [    0.393587] pci 0000:00:1c.0: BAR 15: assigned [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393590] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
Oct 26 14:21:48 desktop kernel: [    0.393594] pci 0000:01:00.0: BAR 6: assigned [mem 0xe7000000-0xe707ffff pref]
Oct 26 14:21:48 desktop kernel: [    0.393597] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 26 14:21:48 desktop kernel: [    0.393599] pci 0000:00:01.0:   bridge window [io  0xb000-0xbfff]
Oct 26 14:21:48 desktop kernel: [    0.393603] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe7ffffff]
Oct 26 14:21:48 desktop kernel: [    0.393606] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393610] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
Oct 26 14:21:48 desktop kernel: [    0.393612] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Oct 26 14:21:48 desktop kernel: [    0.393617] pci 0000:00:1c.0:   bridge window [mem 0xea500000-0xea6fffff]
Oct 26 14:21:48 desktop kernel: [    0.393621] pci 0000:00:1c.0:   bridge window [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393626] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
Oct 26 14:21:48 desktop kernel: [    0.393629] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
Oct 26 14:21:48 desktop kernel: [    0.393633] pci 0000:00:1c.3:   bridge window [mem 0xe8000000-0xe8ffffff]
Oct 26 14:21:48 desktop kernel: [    0.393637] pci 0000:00:1c.3:   bridge window [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393644] pci 0000:04:00.0: BAR 6: assigned [mem 0xea020000-0xea02ffff pref]
Oct 26 14:21:48 desktop kernel: [    0.393646] pci 0000:00:1c.4: PCI bridge to [bus 04-04]
Oct 26 14:21:48 desktop kernel: [    0.393648] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
Oct 26 14:21:48 desktop kernel: [    0.393653] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe9ffffff]
Oct 26 14:21:48 desktop kernel: [    0.393657] pci 0000:00:1c.4:   bridge window [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393662] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
Oct 26 14:21:48 desktop kernel: [    0.393664] pci 0000:00:1e.0:   bridge window [io  disabled]
Oct 26 14:21:48 desktop kernel: [    0.393668] pci 0000:00:1e.0:   bridge window [mem 0xea100000-0xea1fffff]
Oct 26 14:21:48 desktop kernel: [    0.393672] pci 0000:00:1e.0:   bridge window [mem pref disabled]
Oct 26 14:21:48 desktop kernel: [    0.393697] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:21:48 desktop kernel: [    0.393701] pci 0000:00:01.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.393708] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:21:48 desktop kernel: [    0.393712] pci 0000:00:1c.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.393721] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:21:48 desktop kernel: [    0.393724] pci 0000:00:1c.3: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.393730] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:21:48 desktop kernel: [    0.393734] pci 0000:00:1c.4: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.393740] pci 0000:00:1e.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.393743] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Oct 26 14:21:48 desktop kernel: [    0.393745] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Oct 26 14:21:48 desktop kernel: [    0.393747] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Oct 26 14:21:48 desktop kernel: [    0.393750] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
Oct 26 14:21:48 desktop kernel: [    0.393752] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
Oct 26 14:21:48 desktop kernel: [    0.393754] pci_bus 0000:00: resource 9 [mem 0xcff00000-0xfebfffff]
Oct 26 14:21:48 desktop kernel: [    0.393756] pci_bus 0000:01: resource 0 [io  0xb000-0xbfff]
Oct 26 14:21:48 desktop kernel: [    0.393758] pci_bus 0000:01: resource 1 [mem 0xe4000000-0xe7ffffff]
Oct 26 14:21:48 desktop kernel: [    0.393760] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393763] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Oct 26 14:21:48 desktop kernel: [    0.393765] pci_bus 0000:02: resource 1 [mem 0xea500000-0xea6fffff]
Oct 26 14:21:48 desktop kernel: [    0.393767] pci_bus 0000:02: resource 2 [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393769] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
Oct 26 14:21:48 desktop kernel: [    0.393771] pci_bus 0000:03: resource 1 [mem 0xe8000000-0xe8ffffff]
Oct 26 14:21:48 desktop kernel: [    0.393773] pci_bus 0000:03: resource 2 [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393776] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
Oct 26 14:21:48 desktop kernel: [    0.393778] pci_bus 0000:04: resource 1 [mem 0xe9000000-0xe9ffffff]
Oct 26 14:21:48 desktop kernel: [    0.393780] pci_bus 0000:04: resource 2 [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:21:48 desktop kernel: [    0.393782] pci_bus 0000:05: resource 1 [mem 0xea100000-0xea1fffff]
Oct 26 14:21:48 desktop kernel: [    0.393784] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
Oct 26 14:21:48 desktop kernel: [    0.393786] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
Oct 26 14:21:48 desktop kernel: [    0.393788] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
Oct 26 14:21:48 desktop kernel: [    0.393790] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff]
Oct 26 14:21:48 desktop kernel: [    0.393792] pci_bus 0000:05: resource 8 [mem 0xfed40000-0xfed44fff]
Oct 26 14:21:48 desktop kernel: [    0.393794] pci_bus 0000:05: resource 9 [mem 0xcff00000-0xfebfffff]
Oct 26 14:21:48 desktop kernel: [    0.393838] NET: Registered protocol family 2
Oct 26 14:21:48 desktop kernel: [    0.393972] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 26 14:21:48 desktop kernel: [    0.394871] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
Oct 26 14:21:48 desktop kernel: [    0.397619] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Oct 26 14:21:48 desktop kernel: [    0.398004] TCP: Hash tables configured (established 524288 bind 65536)
Oct 26 14:21:48 desktop kernel: [    0.398006] TCP reno registered
Oct 26 14:21:48 desktop kernel: [    0.398015] UDP hash table entries: 2048 (order: 4, 65536 bytes)
Oct 26 14:21:48 desktop kernel: [    0.398048] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
Oct 26 14:21:48 desktop kernel: [    0.398186] NET: Registered protocol family 1
Oct 26 14:21:48 desktop kernel: [    0.398354] pci 0000:01:00.0: Boot video device
Oct 26 14:21:48 desktop kernel: [    0.398364] PCI: CLS 32 bytes, default 64
Oct 26 14:21:48 desktop kernel: [    0.398367] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 26 14:21:48 desktop kernel: [    0.398369] Placing 64MB software IO TLB between ffff8800cbeaa000 - ffff8800cfeaa000
Oct 26 14:21:48 desktop kernel: [    0.398371] software IO TLB at phys 0xcbeaa000 - 0xcfeaa000
Oct 26 14:21:48 desktop kernel: [    0.398772] audit: initializing netlink socket (disabled)
Oct 26 14:21:48 desktop kernel: [    0.398781] type=2000 audit(1319638893.392:1): initialized
Oct 26 14:21:48 desktop kernel: [    0.426624] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 26 14:21:48 desktop kernel: [    0.445482] VFS: Disk quotas dquot_6.5.2
Oct 26 14:21:48 desktop kernel: [    0.445538] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 26 14:21:48 desktop kernel: [    0.446098] fuse init (API version 7.16)
Oct 26 14:21:48 desktop kernel: [    0.446176] msgmni has been set to 7890
Oct 26 14:21:48 desktop kernel: [    0.446646] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 26 14:21:48 desktop kernel: [    0.446688] io scheduler noop registered
Oct 26 14:21:48 desktop kernel: [    0.446690] io scheduler deadline registered
Oct 26 14:21:48 desktop kernel: [    0.446723] io scheduler cfq registered (default)
Oct 26 14:21:48 desktop kernel: [    0.446820] pcieport 0000:00:01.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.446850] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [    0.446889] pcieport 0000:00:1c.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.446923] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [    0.446974] pcieport 0000:00:1c.3: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.447008] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [    0.447058] pcieport 0000:00:1c.4: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.447091] pcieport 0000:00:1c.4: irq 43 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [    0.447162] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 26 14:21:48 desktop kernel: [    0.447182] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 26 14:21:48 desktop kernel: [    0.447220] intel_idle: MWAIT substates: 0x20
Oct 26 14:21:48 desktop kernel: [    0.447221] intel_idle: does not run on family 6 model 15
Oct 26 14:21:48 desktop kernel: [    0.447285] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
Oct 26 14:21:48 desktop kernel: [    0.447290] ACPI: Power Button [PWRB]
Oct 26 14:21:48 desktop kernel: [    0.447338] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Oct 26 14:21:48 desktop kernel: [    0.447342] ACPI: Power Button [PWRF]
Oct 26 14:21:48 desktop kernel: [    0.447366] ACPI: acpi_idle registered with cpuidle
Oct 26 14:21:48 desktop kernel: [    0.447412] Marking TSC unstable due to TSC halts in idle
Oct 26 14:21:48 desktop kernel: [    0.449290] ERST: Table is not found!
Oct 26 14:21:48 desktop kernel: [    0.449363] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 26 14:21:48 desktop kernel: [    0.587016] Freeing initrd memory: 13428k freed
Oct 26 14:21:48 desktop kernel: [    0.688398] Linux agpgart interface v0.103
Oct 26 14:21:48 desktop kernel: [    0.689491] brd: module loaded
Oct 26 14:21:48 desktop kernel: [    0.689945] loop: module loaded
Oct 26 14:21:48 desktop kernel: [    0.690103] pata_acpi 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:21:48 desktop kernel: [    0.690132] pata_acpi 0000:03:00.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.690146] pata_acpi 0000:03:00.0: PCI INT A disabled
Oct 26 14:21:48 desktop kernel: [    0.690394] Fixed MDIO Bus: probed
Oct 26 14:21:48 desktop kernel: [    0.690416] PPP generic driver version 2.4.2
Oct 26 14:21:48 desktop kernel: [    0.690445] tun: Universal TUN/TAP device driver, 1.6
Oct 26 14:21:48 desktop kernel: [    0.690446] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Oct 26 14:21:48 desktop kernel: [    0.690511] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 26 14:21:48 desktop kernel: [    0.690532] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:21:48 desktop kernel: [    0.690560] ehci_hcd 0000:00:1a.7: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.690563] ehci_hcd 0000:00:1a.7: EHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.690592] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
Oct 26 14:21:48 desktop kernel: [    0.694500] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
Oct 26 14:21:48 desktop kernel: [    0.694517] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xea205000
Oct 26 14:21:48 desktop kernel: [    0.708024] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Oct 26 14:21:48 desktop kernel: [    0.708162] hub 1-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.708168] hub 1-0:1.0: 6 ports detected
Oct 26 14:21:48 desktop kernel: [    0.708246] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:21:48 desktop kernel: [    0.708257] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.708260] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.708295] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
Oct 26 14:21:48 desktop kernel: [    0.712202] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 26 14:21:48 desktop kernel: [    0.712214] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xea204000
Oct 26 14:21:48 desktop kernel: [    0.728026] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 26 14:21:48 desktop kernel: [    0.728143] hub 2-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.728148] hub 2-0:1.0: 6 ports detected
Oct 26 14:21:48 desktop kernel: [    0.728225] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 26 14:21:48 desktop kernel: [    0.728235] uhci_hcd: USB Universal Host Controller Interface driver
Oct 26 14:21:48 desktop kernel: [    0.728255] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:21:48 desktop kernel: [    0.728260] uhci_hcd 0000:00:1a.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.728263] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.728290] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Oct 26 14:21:48 desktop kernel: [    0.728319] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
Oct 26 14:21:48 desktop kernel: [    0.728413] hub 3-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.728416] hub 3-0:1.0: 2 ports detected
Oct 26 14:21:48 desktop kernel: [    0.728471] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Oct 26 14:21:48 desktop kernel: [    0.728476] uhci_hcd 0000:00:1a.1: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.728479] uhci_hcd 0000:00:1a.1: UHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.728514] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Oct 26 14:21:48 desktop kernel: [    0.728544] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
Oct 26 14:21:48 desktop kernel: [    0.728638] hub 4-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.728641] hub 4-0:1.0: 2 ports detected
Oct 26 14:21:48 desktop kernel: [    0.728692] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:21:48 desktop kernel: [    0.728697] uhci_hcd 0000:00:1a.2: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.728700] uhci_hcd 0000:00:1a.2: UHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.728727] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
Oct 26 14:21:48 desktop kernel: [    0.728748] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
Oct 26 14:21:48 desktop kernel: [    0.728843] hub 5-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.728847] hub 5-0:1.0: 2 ports detected
Oct 26 14:21:48 desktop kernel: [    0.728897] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:21:48 desktop kernel: [    0.728902] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.728905] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.728934] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
Oct 26 14:21:48 desktop kernel: [    0.728955] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
Oct 26 14:21:48 desktop kernel: [    0.729054] hub 6-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.729057] hub 6-0:1.0: 2 ports detected
Oct 26 14:21:48 desktop kernel: [    0.729106] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:21:48 desktop kernel: [    0.729111] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.729114] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.729151] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
Oct 26 14:21:48 desktop kernel: [    0.729179] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
Oct 26 14:21:48 desktop kernel: [    0.729272] hub 7-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.729276] hub 7-0:1.0: 2 ports detected
Oct 26 14:21:48 desktop kernel: [    0.729326] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:21:48 desktop kernel: [    0.729331] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.729334] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 26 14:21:48 desktop kernel: [    0.729362] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
Oct 26 14:21:48 desktop kernel: [    0.729385] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
Oct 26 14:21:48 desktop kernel: [    0.729479] hub 8-0:1.0: USB hub found
Oct 26 14:21:48 desktop kernel: [    0.729483] hub 8-0:1.0: 2 ports detected
Oct 26 14:21:48 desktop kernel: [    0.729568] i8042: PNP: No PS/2 controller found. Probing ports directly.
Oct 26 14:21:48 desktop kernel: [    0.729934] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 26 14:21:48 desktop kernel: [    0.729943] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 26 14:21:48 desktop kernel: [    0.730077] mousedev: PS/2 mouse device common for all mice
Oct 26 14:21:48 desktop kernel: [    0.730219] rtc_cmos 00:04: RTC can wake from S4
Oct 26 14:21:48 desktop kernel: [    0.730300] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
Oct 26 14:21:48 desktop kernel: [    0.730322] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
Oct 26 14:21:48 desktop kernel: [    0.730406] device-mapper: uevent: version 1.0.3
Oct 26 14:21:48 desktop kernel: [    0.730467] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
Oct 26 14:21:48 desktop kernel: [    0.730521] cpuidle: using governor ladder
Oct 26 14:21:48 desktop kernel: [    0.730608] cpuidle: using governor menu
Oct 26 14:21:48 desktop kernel: [    0.730610] EFI Variables Facility v0.08 2004-May-17
Oct 26 14:21:48 desktop kernel: [    0.730832] TCP cubic registered
Oct 26 14:21:48 desktop kernel: [    0.730940] NET: Registered protocol family 10
Oct 26 14:21:48 desktop kernel: [    0.731367] NET: Registered protocol family 17
Oct 26 14:21:48 desktop kernel: [    0.731379] Registering the dns_resolver key type
Oct 26 14:21:48 desktop kernel: [    0.731461] PM: Hibernation image not present or could not be loaded.
Oct 26 14:21:48 desktop kernel: [    0.731472] registered taskstats version 1
Oct 26 14:21:48 desktop kernel: [    0.746199]   Magic number: 15:286:385
Oct 26 14:21:48 desktop kernel: [    0.746210] usb usb3: hash matches
Oct 26 14:21:48 desktop kernel: [    0.746229] thermal cooling_device0: hash matches
Oct 26 14:21:48 desktop kernel: [    0.746293] rtc_cmos 00:04: setting system clock to 2011-10-26 14:21:34 UTC (1319638894)
Oct 26 14:21:48 desktop kernel: [    0.750977] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Oct 26 14:21:48 desktop kernel: [    0.750980] EDD information not available.
Oct 26 14:21:48 desktop kernel: [    0.752708] Freeing unused kernel memory: 984k freed
Oct 26 14:21:48 desktop kernel: [    0.752883] Write protecting the kernel read-only data: 10240k
Oct 26 14:21:48 desktop kernel: [    0.753106] Freeing unused kernel memory: 20k freed
Oct 26 14:21:48 desktop kernel: [    0.757556] Freeing unused kernel memory: 1396k freed
Oct 26 14:21:48 desktop kernel: [    0.794996] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Oct 26 14:21:48 desktop kernel: [    0.795019] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:21:48 desktop kernel: [    0.795056] r8169 0000:04:00.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.795111] r8169 0000:04:00.0: irq 44 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [    0.795625] r8169 0000:04:00.0: eth0: RTL8168c/8111c at 0xffffc90000644000, 00:1f:d0:25:52:1b, XID 1c4000c0 IRQ 44
Oct 26 14:21:48 desktop kernel: [    0.800409] ahci 0000:00:1f.2: version 3.0
Oct 26 14:21:48 desktop kernel: [    0.800423] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:21:48 desktop kernel: [    0.800465] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [    0.800507] ahci: SSS flag set, parallel bus scan disabled
Oct 26 14:21:48 desktop kernel: [    0.800541] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
Oct 26 14:21:48 desktop kernel: [    0.800544] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems 
Oct 26 14:21:48 desktop kernel: [    0.800548] ahci 0000:00:1f.2: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.801207] pata_jmicron 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:21:48 desktop kernel: [    0.801244] pata_jmicron 0000:03:00.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [    0.801889] scsi0 : pata_jmicron
Oct 26 14:21:48 desktop kernel: [    0.801999] scsi1 : pata_jmicron
Oct 26 14:21:48 desktop kernel: [    0.802448] ata1: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 19
Oct 26 14:21:48 desktop kernel: [    0.802451] ata2: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 19
Oct 26 14:21:48 desktop kernel: [    0.840723] scsi2 : ahci
Oct 26 14:21:48 desktop kernel: [    0.840827] scsi3 : ahci
Oct 26 14:21:48 desktop kernel: [    0.840914] scsi4 : ahci
Oct 26 14:21:48 desktop kernel: [    0.840997] scsi5 : ahci
Oct 26 14:21:48 desktop kernel: [    0.841085] scsi6 : ahci
Oct 26 14:21:48 desktop kernel: [    0.841167] scsi7 : ahci
Oct 26 14:21:48 desktop kernel: [    0.841303] ata3: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206100 irq 45
Oct 26 14:21:48 desktop kernel: [    0.841306] ata4: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206180 irq 45
Oct 26 14:21:48 desktop kernel: [    0.841309] ata5: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206200 irq 45
Oct 26 14:21:48 desktop kernel: [    0.841311] ata6: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206280 irq 45
Oct 26 14:21:48 desktop kernel: [    0.841314] ata7: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206300 irq 45
Oct 26 14:21:48 desktop kernel: [    0.841316] ata8: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206380 irq 45
Oct 26 14:21:48 desktop kernel: [    1.020027] usb 1-5: new high speed USB device number 2 using ehci_hcd
Oct 26 14:21:48 desktop kernel: [    1.164030] ata3: SATA link down (SStatus 0 SControl 300)
Oct 26 14:21:48 desktop kernel: [    1.370610] usbcore: registered new interface driver uas
Oct 26 14:21:48 desktop kernel: [    1.480027] usb 2-3: new high speed USB device number 2 using ehci_hcd
Oct 26 14:21:48 desktop kernel: [    1.616921] Initializing USB Mass Storage driver...
Oct 26 14:21:48 desktop kernel: [    1.617068] scsi8 : usb-storage 1-5:1.0
Oct 26 14:21:48 desktop kernel: [    1.617247] scsi9 : usb-storage 2-3:1.0
Oct 26 14:21:48 desktop kernel: [    1.617355] usbcore: registered new interface driver usb-storage
Oct 26 14:21:48 desktop kernel: [    1.617358] USB Mass Storage support registered.
Oct 26 14:21:48 desktop kernel: [    1.656112] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:21:48 desktop kernel: [    1.656648] ata4.00: HPA detected: current 488395055, native 488397168
Oct 26 14:21:48 desktop kernel: [    1.656703] ata4.00: ATA-7: WDC WD2500JS-00NCB1, 10.02E02, max UDMA/133
Oct 26 14:21:48 desktop kernel: [    1.656707] ata4.00: 488395055 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:21:48 desktop kernel: [    1.657371] ata4.00: configured for UDMA/133
Oct 26 14:21:48 desktop kernel: [    1.657486] scsi 3:0:0:0: Direct-Access     ATA      WDC WD2500JS-00N 10.0 PQ: 0 ANSI: 5
Oct 26 14:21:48 desktop kernel: [    1.657587] sd 3:0:0:0: [sda] 488395055 512-byte logical blocks: (250 GB/232 GiB)
Oct 26 14:21:48 desktop kernel: [    1.657610] sd 3:0:0:0: Attached scsi generic sg0 type 0
Oct 26 14:21:48 desktop kernel: [    1.657635] sd 3:0:0:0: [sda] Write Protect is off
Oct 26 14:21:48 desktop kernel: [    1.657638] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 26 14:21:48 desktop kernel: [    1.657659] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:21:48 desktop kernel: [    1.689217]  sda: sda1 sda2 sda3 < sda5 sda6 > sda4
Oct 26 14:21:48 desktop kernel: [    1.689624] sd 3:0:0:0: [sda] Attached SCSI disk
Oct 26 14:21:48 desktop kernel: [    1.908037] usb 8-2: new low speed USB device number 2 using uhci_hcd
Oct 26 14:21:48 desktop kernel: [    2.118726] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input2
Oct 26 14:21:48 desktop kernel: [    2.118794] generic-usb 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.2-2/input0
Oct 26 14:21:48 desktop kernel: [    2.148036] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 14:21:48 desktop kernel: [    2.151405] ata5.00: ATAPI: Optiarc DVD-ROM DDU1671S, 1.11, max UDMA/33
Oct 26 14:21:48 desktop kernel: [    2.151409] ata5.00: applying bridge limits
Oct 26 14:21:48 desktop kernel: [    2.151921] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/input/input3
Oct 26 14:21:48 desktop kernel: [    2.151997] generic-usb 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-2/input1
Oct 26 14:21:48 desktop kernel: [    2.152018] usbcore: registered new interface driver usbhid
Oct 26 14:21:48 desktop kernel: [    2.152020] usbhid: USB HID core driver
Oct 26 14:21:48 desktop kernel: [    2.152869] ata5.00: configured for UDMA/33
Oct 26 14:21:48 desktop kernel: [    2.159123] scsi 4:0:0:0: CD-ROM            Optiarc  DVD-ROM DDU1671S 1.11 PQ: 0 ANSI: 5
Oct 26 14:21:48 desktop kernel: [    2.161783] sr0: scsi3-mmc drive: 4x/48x cd/rw xa/form2 cdda tray
Oct 26 14:21:48 desktop kernel: [    2.161787] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 26 14:21:48 desktop kernel: [    2.161949] sr 4:0:0:0: Attached scsi CD-ROM sr0
Oct 26 14:21:48 desktop kernel: [    2.162038] sr 4:0:0:0: Attached scsi generic sg1 type 5
Oct 26 14:21:48 desktop kernel: [    2.616678] scsi 9:0:0:0: Direct-Access     Generic  USB SD Reader    1.00 PQ: 0 ANSI: 0
Oct 26 14:21:48 desktop kernel: [    2.617167] scsi 9:0:0:1: Direct-Access     Generic  USB CF Reader    1.01 PQ: 0 ANSI: 0
Oct 26 14:21:48 desktop kernel: [    2.617669] scsi 9:0:0:2: Direct-Access     Generic  USB xD/SM Reader 1.02 PQ: 0 ANSI: 0
Oct 26 14:21:48 desktop kernel: [    2.618170] scsi 9:0:0:3: Direct-Access     Generic  USB MS Reader    1.03 PQ: 0 ANSI: 0
Oct 26 14:21:48 desktop kernel: [    2.620092] scsi 8:0:0:0: Direct-Access     Hitachi  HTS545032A7E380       PQ: 0 ANSI: 4
Oct 26 14:21:48 desktop kernel: [    2.652036] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 14:21:48 desktop kernel: [    2.653100] ata6.00: ATAPI: Optiarc DVD RW AD-7201S, 1.06, max UDMA/100
Oct 26 14:21:48 desktop kernel: [    2.654448] ata6.00: configured for UDMA/100
Oct 26 14:21:48 desktop kernel: [    2.656145] scsi: waiting for bus probes to complete ...
Oct 26 14:21:48 desktop kernel: [    3.132211] sd 9:0:0:0: Attached scsi generic sg2 type 0
Oct 26 14:21:48 desktop kernel: [    3.132347] sd 9:0:0:1: Attached scsi generic sg3 type 0
Oct 26 14:21:48 desktop kernel: [    3.132459] sd 9:0:0:2: Attached scsi generic sg4 type 0
Oct 26 14:21:48 desktop kernel: [    3.132580] sd 9:0:0:3: Attached scsi generic sg5 type 0
Oct 26 14:21:48 desktop kernel: [    3.135539] sd 9:0:0:0: [sdb] Attached SCSI removable disk
Oct 26 14:21:48 desktop kernel: [    3.136270] sd 8:0:0:0: Attached scsi generic sg6 type 0
Oct 26 14:21:48 desktop kernel: [    3.137090] sd 8:0:0:0: [sdf] 625142448 512-byte logical blocks: (320 GB/298 GiB)
Oct 26 14:21:48 desktop kernel: [    3.137894] scsi 5:0:0:0: CD-ROM            Optiarc  DVD RW AD-7201S  1.06 PQ: 0 ANSI: 5
Oct 26 14:21:48 desktop kernel: [    3.138032] sd 9:0:0:1: [sdc] Attached SCSI removable disk
Oct 26 14:21:48 desktop kernel: [    3.139282] sd 9:0:0:2: [sdd] Attached SCSI removable disk
Oct 26 14:21:48 desktop kernel: [    3.139907] sd 9:0:0:3: [sde] Attached SCSI removable disk
Oct 26 14:21:48 desktop kernel: [    3.140116] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Oct 26 14:21:48 desktop kernel: [    3.140200] sr 5:0:0:0: Attached scsi CD-ROM sr1
Oct 26 14:21:48 desktop kernel: [    3.140252] sr 5:0:0:0: Attached scsi generic sg7 type 5
Oct 26 14:21:48 desktop kernel: [    3.143338] sd 8:0:0:0: [sdf] Write Protect is off
Oct 26 14:21:48 desktop kernel: [    3.143343] sd 8:0:0:0: [sdf] Mode Sense: 38 00 00 00
Oct 26 14:21:48 desktop kernel: [    3.149712] sd 8:0:0:0: [sdf] No Caching mode page present
Oct 26 14:21:48 desktop kernel: [    3.149715] sd 8:0:0:0: [sdf] Assuming drive cache: write through
Oct 26 14:21:48 desktop kernel: [    3.163461] sd 8:0:0:0: [sdf] No Caching mode page present
Oct 26 14:21:48 desktop kernel: [    3.163465] sd 8:0:0:0: [sdf] Assuming drive cache: write through
Oct 26 14:21:48 desktop kernel: [    3.632019] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:21:48 desktop kernel: [    3.641461] ata7.00: ATA-8: WDC WD10EADS-00L5B1, 01.01A01, max UDMA/133
Oct 26 14:21:48 desktop kernel: [    3.641465] ata7.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:21:48 desktop kernel: [    3.642322] ata7.00: configured for UDMA/133
Oct 26 14:21:48 desktop kernel: [    3.642424] scsi 6:0:0:0: Direct-Access     ATA      WDC WD10EADS-00L 01.0 PQ: 0 ANSI: 5
Oct 26 14:21:48 desktop kernel: [    3.642585] sd 6:0:0:0: Attached scsi generic sg8 type 0
Oct 26 14:21:48 desktop kernel: [    3.642610] sd 6:0:0:0: [sdg] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 26 14:21:48 desktop kernel: [    3.642685] sd 6:0:0:0: [sdg] Write Protect is off
Oct 26 14:21:48 desktop kernel: [    3.642688] sd 6:0:0:0: [sdg] Mode Sense: 00 3a 00 00
Oct 26 14:21:48 desktop kernel: [    3.642712] sd 6:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:21:48 desktop kernel: [    3.647624]  sdg: sdg1
Oct 26 14:21:48 desktop kernel: [    3.647879] sd 6:0:0:0: [sdg] Attached SCSI disk
Oct 26 14:21:48 desktop kernel: [    4.132018] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:21:48 desktop kernel: [    4.133091]  sdf: unknown partition table
Oct 26 14:21:48 desktop kernel: [    4.138325] ata8.00: HPA detected: current 976771055, native 976773168
Oct 26 14:21:48 desktop kernel: [    4.138386] ata8.00: ATA-7: SAMSUNG HD502IJ, 1AA01113, max UDMA7
Oct 26 14:21:48 desktop kernel: [    4.138390] ata8.00: 976771055 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:21:48 desktop kernel: [    4.144823] ata8.00: configured for UDMA/133
Oct 26 14:21:48 desktop kernel: [    4.144925] scsi 7:0:0:0: Direct-Access     ATA      SAMSUNG HD502IJ  1AA0 PQ: 0 ANSI: 5
Oct 26 14:21:48 desktop kernel: [    4.145018] sd 7:0:0:0: [sdh] 976771055 512-byte logical blocks: (500 GB/465 GiB)
Oct 26 14:21:48 desktop kernel: [    4.145036] sd 7:0:0:0: Attached scsi generic sg9 type 0
Oct 26 14:21:48 desktop kernel: [    4.145063] sd 7:0:0:0: [sdh] Write Protect is off
Oct 26 14:21:48 desktop kernel: [    4.145066] sd 7:0:0:0: [sdh] Mode Sense: 00 3a 00 00
Oct 26 14:21:48 desktop kernel: [    4.145093] sd 7:0:0:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:21:48 desktop kernel: [    4.146836] sd 8:0:0:0: [sdf] No Caching mode page present
Oct 26 14:21:48 desktop kernel: [    4.146840] sd 8:0:0:0: [sdf] Assuming drive cache: write through
Oct 26 14:21:48 desktop kernel: [    4.146844] sd 8:0:0:0: [sdf] Attached SCSI disk
Oct 26 14:21:48 desktop kernel: [    4.155753]  sdh: sdh1
Oct 26 14:21:48 desktop kernel: [    4.156046] sd 7:0:0:0: [sdh] Attached SCSI disk
Oct 26 14:21:48 desktop kernel: [    4.157210] firewire_ohci 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:21:48 desktop kernel: [    4.216192] firewire_ohci: Added fw-ohci device 0000:05:07.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
Oct 26 14:21:48 desktop kernel: [    4.645718] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:21:48 desktop kernel: [    4.716141] firewire_core: created device fw0: GUID 002c965900001fd0, S400
Oct 26 14:21:48 desktop kernel: [   13.398122] lp: driver loaded but no devices found
Oct 26 14:21:48 desktop kernel: [   13.421424] Adding 7815584k swap on /dev/sda1.  Priority:-1 extents:1 across:7815584k 
Oct 26 14:21:48 desktop kernel: [   13.441558] nvidia: module license 'NVIDIA' taints kernel.
Oct 26 14:21:48 desktop kernel: [   13.441562] Disabling lock debugging due to kernel taint
Oct 26 14:21:48 desktop kernel: [   13.450948] type=1400 audit(1319631707.199:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=502 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   13.451191] type=1400 audit(1319631707.199:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=502 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   13.451349] type=1400 audit(1319631707.199:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=502 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   13.494192] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
Oct 26 14:21:48 desktop kernel: [   13.494241] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X
Oct 26 14:21:48 desktop kernel: [   13.494267] HDA Intel 0000:00:1b.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [   13.544421] hda_codec: ALC889A: BIOS auto-probing.
Oct 26 14:21:48 desktop kernel: [   13.564872] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Oct 26 14:21:48 desktop kernel: [   14.200446] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:21:48 desktop kernel: [   14.200454] nvidia 0000:01:00.0: setting latency timer to 64
Oct 26 14:21:48 desktop kernel: [   14.200459] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
Oct 26 14:21:48 desktop kernel: [   14.200614] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  280.13  Wed Jul 27 16:53:56 PDT 2011
Oct 26 14:21:48 desktop kernel: [   14.429539] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
Oct 26 14:21:48 desktop kernel: [   14.551560] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:21:48 desktop kernel: [   14.602834] vesafb: mode is 640x480x32, linelength=2560, pages=0
Oct 26 14:21:48 desktop kernel: [   14.602837] vesafb: scrolling: redraw
Oct 26 14:21:48 desktop kernel: [   14.602840] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 26 14:21:48 desktop kernel: [   14.604625] vesafb: framebuffer at 0xe5000000, mapped to 0xffffc90005800000, using 1216k, total 1216k
Oct 26 14:21:48 desktop kernel: [   14.604790] Console: switching to colour frame buffer device 80x30
Oct 26 14:21:48 desktop kernel: [   14.604803] fb0: VESA VGA frame buffer device
Oct 26 14:21:48 desktop kernel: [   14.617005] EXT4-fs (sdh1): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:21:48 desktop kernel: [   14.794022] EXT4-fs (sdg1): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:21:48 desktop kernel: [   14.849808] type=1400 audit(1319631708.599:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=992 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   14.850026] type=1400 audit(1319631708.599:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=993 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   14.850271] type=1400 audit(1319631708.599:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=993 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   14.850427] type=1400 audit(1319631708.599:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=993 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   14.851591] type=1400 audit(1319631708.599:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=996 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   14.851875] type=1400 audit(1319631708.599:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=996 comm="apparmor_parser"
Oct 26 14:21:48 desktop kernel: [   14.852182] type=1400 audit(1319631708.603:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=998 comm="apparmor_parser"
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  ModemManager (version 0.5) starting...
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin SimTech
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Gobi
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Huawei
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Wavecom
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin X22X
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Longcheer
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Nokia
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Option
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin AnyData
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Ericsson MBM
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin MotoC
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Samsung
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Linktop
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin ZTE
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Generic
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Novatel
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Sierra
Oct 26 14:21:48 desktop modem-manager[1024]: <info>  Loaded plugin Option High-Speed
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> NetworkManager (version 0.9.1.90) is starting...
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 14:21:48 desktop avahi-daemon[1028]: Found user 'avahi' (UID 106) and group 'avahi' (GID 113).
Oct 26 14:21:48 desktop avahi-daemon[1028]: Successfully dropped root privileges.
Oct 26 14:21:48 desktop avahi-daemon[1028]: avahi-daemon 0.6.30 starting up.
Oct 26 14:21:48 desktop kernel: [   14.915911] ppdev: user-space parallel port driver
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 14:21:48 desktop avahi-daemon[1028]: Successfully called chroot().
Oct 26 14:21:48 desktop avahi-daemon[1028]: Successfully dropped remaining capabilities.
Oct 26 14:21:48 desktop dbus[1015]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
Oct 26 14:21:48 desktop avahi-daemon[1028]: Loading service file /services/udisks.service.
Oct 26 14:21:48 desktop polkitd[1047]: started daemon version 0.102 using authority implementation `local' version `0.102'
Oct 26 14:21:48 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: init!
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0, iface: eth0)
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: end _init.
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 14:21:48 desktop NetworkManager[1026]:    Ifupdown: get unmanaged devices count: 0
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: (14757680) ... get_connections.
Oct 26 14:21:48 desktop NetworkManager[1026]:    SCPlugin-Ifupdown: (14757680) ... get_connections (managed=false): return empty list.
Oct 26 14:21:48 desktop NetworkManager[1026]:    Ifupdown: get unmanaged devices count: 0
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> modem-manager is now available
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> Networking is enabled by state file
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): carrier is OFF
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): now managed
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): bringing up device.
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): preparing device.
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 14:21:48 desktop NetworkManager[1026]: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0
Oct 26 14:21:48 desktop NetworkManager[1026]: <warn> bluez error getting default adapter: The name org.bluez was not provided by any .service files
Oct 26 14:21:48 desktop kernel: [   15.024612] r8169 0000:04:00.0: eth0: link down
Oct 26 14:21:48 desktop kernel: [   15.024620] r8169 0000:04:00.0: eth0: link down
Oct 26 14:21:48 desktop kernel: [   15.025043] ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 14:21:48 desktop avahi-daemon[1028]: Network interface enumeration completed.
Oct 26 14:21:48 desktop avahi-daemon[1028]: Registering HINFO record with values 'X86_64'/'LINUX'.
Oct 26 14:21:48 desktop avahi-daemon[1028]: Server startup complete. Host name is desktop.local. Local service cookie is 1645623960.
Oct 26 14:21:48 desktop avahi-daemon[1028]: Service "desktop" (/services/udisks.service) successfully established.
Oct 26 14:21:48 desktop kernel: [   15.062095] init: failsafe main process (947) killed by TERM signal
Oct 26 14:21:48 desktop kernel: [   15.063932] init: apport pre-start process (1066) terminated with status 1
Oct 26 14:21:48 desktop anacron[1090]: Anacron 2.3 started on 2011-10-26
Oct 26 14:21:48 desktop acpid: starting up with proc fs
Oct 26 14:21:48 desktop cron[1076]: (CRON) INFO (pidfile fd = 3)
Oct 26 14:21:48 desktop acpid: 32 rules loaded
Oct 26 14:21:48 desktop acpid: waiting for events: event logging is off
Oct 26 14:21:48 desktop kernel: [   15.077322] init: apport post-stop process (1094) terminated with status 1
Oct 26 14:21:48 desktop cron[1109]: (CRON) STARTUP (fork ok)
Oct 26 14:21:48 desktop cron[1109]: (CRON) INFO (Running @reboot jobs)
Oct 26 14:21:48 desktop acpid: client connected from 1110[0:0]
Oct 26 14:21:48 desktop acpid: 1 client rule loaded
Oct 26 14:21:48 desktop anacron[1090]: Normal exit (0 jobs run)
Oct 26 14:21:49 desktop bluetoothd[1128]: Bluetooth daemon 4.96
Oct 26 14:21:49 desktop bluetoothd[1128]: Starting SDP server
Oct 26 14:21:49 desktop NetworkManager[1026]: <warn> bluez error getting default adapter: No such adapter
Oct 26 14:21:49 desktop kernel: [   15.381008] Bluetooth: Core ver 2.16
Oct 26 14:21:49 desktop kernel: [   15.381029] NET: Registered protocol family 31
Oct 26 14:21:49 desktop kernel: [   15.381030] Bluetooth: HCI device and connection manager initialized
Oct 26 14:21:49 desktop kernel: [   15.381033] Bluetooth: HCI socket layer initialized
Oct 26 14:21:49 desktop kernel: [   15.381034] Bluetooth: L2CAP socket layer initialized
Oct 26 14:21:49 desktop kernel: [   15.381085] Bluetooth: SCO socket layer initialized
Oct 26 14:21:49 desktop kernel: [   15.382977] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 26 14:21:49 desktop kernel: [   15.382981] Bluetooth: BNEP filters: protocol multicast
Oct 26 14:21:49 desktop kernel: [   15.383113] Bluetooth: RFCOMM TTY layer initialized
Oct 26 14:21:49 desktop kernel: [   15.383119] Bluetooth: RFCOMM socket layer initialized
Oct 26 14:21:49 desktop kernel: [   15.383121] Bluetooth: RFCOMM ver 1.11
Oct 26 14:21:49 desktop udev-configure-printer: add /module/lp
Oct 26 14:21:49 desktop udev-configure-printer: Failed to get parent
Oct 26 14:21:49 desktop anacron[1217]: Anacron 2.3 started on 2011-10-26
Oct 26 14:21:49 desktop anacron[1217]: Normal exit (0 jobs run)
Oct 26 14:21:49 desktop kernel: [   15.848506] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
Oct 26 14:21:49 desktop kernel: [   15.909581] EXT4-fs (sda2): re-mounted. Opts: commit=0
Oct 26 14:21:49 desktop kernel: [   16.106751] EXT4-fs (sdh1): re-mounted. Opts: commit=0
Oct 26 14:21:49 desktop kernel: [   16.113553] EXT4-fs (sdg1): re-mounted. Opts: commit=0
Oct 26 14:21:50 desktop acpid: client connected from 1110[0:0]
Oct 26 14:21:50 desktop acpid: 1 client rule loaded
Oct 26 14:21:50 desktop dbus[1015]: [system] Activating service name='org.freedesktop.Accounts' (using servicehelper)
Oct 26 14:21:50 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.Accounts'
Oct 26 14:21:50 desktop accounts-daemon[1276]: started daemon version 0.6.14
Oct 26 14:21:50 desktop dbus[1015]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
Oct 26 14:21:50 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
Oct 26 14:21:50 desktop dbus[1015]: [system] Activating service name='org.freedesktop.UPower' (using servicehelper)
Oct 26 14:21:50 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.UPower'
Oct 26 14:21:50 desktop anacron[1463]: Anacron 2.3 started on 2011-10-26
Oct 26 14:21:50 desktop anacron[1463]: Normal exit (0 jobs run)
Oct 26 14:21:51 desktop dbus[1015]: [system] Activating service name='org.freedesktop.ColorManager' (using servicehelper)
Oct 26 14:21:51 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): carrier now ON (device state 20)
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): device state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Auto-activating connection 'Wired connection 1'.
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) starting connection 'Wired connection 1'
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) successful.
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> dhclient started with pid 1475
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 14:21:51 desktop kernel: [   17.380414] r8169 0000:04:00.0: eth0: link up
Oct 26 14:21:51 desktop kernel: [   17.380909] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Oct 26 14:21:51 desktop dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1
Oct 26 14:21:51 desktop dhclient: Copyright 2004-2010 Internet Systems Consortium.
Oct 26 14:21:51 desktop dhclient: All rights reserved.
Oct 26 14:21:51 desktop dhclient: For info, please visit https://www.isc.org/software/dhcp/
Oct 26 14:21:51 desktop dhclient: 
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): DHCPv4 state changed nbi -> preinit
Oct 26 14:21:51 desktop dhclient: Listening on LPF/eth0/00:1f:d0:25:52:1b
Oct 26 14:21:51 desktop dhclient: Sending on   LPF/eth0/00:1f:d0:25:52:1b
Oct 26 14:21:51 desktop dhclient: Sending on   Socket/fallback
Oct 26 14:21:51 desktop dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
Oct 26 14:21:51 desktop dhclient: DHCPOFFER of 192.168.1.34 from 192.168.1.1
Oct 26 14:21:51 desktop dhclient: DHCPREQUEST of 192.168.1.34 on eth0 to 255.255.255.255 port 67
Oct 26 14:21:51 desktop dhclient: DHCPACK of 192.168.1.34 from 192.168.1.1
Oct 26 14:21:51 desktop dhclient: bound to 192.168.1.34 -- renewal in 109045 seconds.
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> (eth0): DHCPv4 state changed preinit -> bound
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started...
Oct 26 14:21:51 desktop NetworkManager[1026]: <info>   address 192.168.1.34
Oct 26 14:21:51 desktop NetworkManager[1026]: <info>   prefix 24 (255.255.255.0)
Oct 26 14:21:51 desktop NetworkManager[1026]: <info>   gateway 192.168.1.1
Oct 26 14:21:51 desktop NetworkManager[1026]: <info>   hostname 'dhcppc2'
Oct 26 14:21:51 desktop NetworkManager[1026]: <info>   nameserver '212.101.0.10'
Oct 26 14:21:51 desktop NetworkManager[1026]: <info>   nameserver '212.101.4.253'
Oct 26 14:21:51 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) started...
Oct 26 14:21:51 desktop avahi-daemon[1028]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.1.34.
Oct 26 14:21:51 desktop avahi-daemon[1028]: New relevant interface eth0.IPv4 for mDNS.
Oct 26 14:21:51 desktop avahi-daemon[1028]: Registering new address record for 192.168.1.34 on eth0.IPv4.
Oct 26 14:21:51 desktop dbus[1015]: [system] Activating service name='org.freedesktop.RealtimeKit1' (using servicehelper)
Oct 26 14:21:51 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Successfully called chroot.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Successfully dropped privileges.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Successfully limited resources.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Running.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Watchdog thread running.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Canary thread running.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Successfully made thread 1514 of process 1514 (n/a) owned by '104' high priority at nice level -11.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Supervising 1 threads of 1 processes of 1 users.
Oct 26 14:21:51 desktop kernel: [   17.780886] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
Oct 26 14:21:51 desktop kernel: [   17.796430] EXT4-fs (sda2): re-mounted. Opts: commit=0
Oct 26 14:21:51 desktop kernel: [   17.838381] EXT4-fs (sdh1): re-mounted. Opts: commit=0
Oct 26 14:21:51 desktop kernel: [   17.840747] EXT4-fs (sdg1): re-mounted. Opts: commit=0
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Successfully made thread 1540 of process 1514 (n/a) owned by '104' RT at priority 5.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Supervising 2 threads of 1 processes of 1 users.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Successfully made thread 1541 of process 1514 (n/a) owned by '104' RT at priority 5.
Oct 26 12:21:51 desktop rtkit-daemon[1516]: Supervising 3 threads of 1 processes of 1 users.
Oct 26 14:21:52 desktop NetworkManager[1026]: <info> (eth0): device state change: ip-config -> activated (reason 'none') [70 100 0]
Oct 26 14:21:52 desktop NetworkManager[1026]: <info> Policy set 'Wired connection 1' (eth0) as default for IPv4 routing and DNS.
Oct 26 14:21:52 desktop NetworkManager[1026]: <info> Activation (eth0) successful, device activated.
Oct 26 14:21:52 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete.
Oct 26 14:21:52 desktop NetworkManager[1026]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete.
Oct 26 14:21:52 desktop dbus[1015]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
Oct 26 14:21:52 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 26 14:21:52 desktop avahi-daemon[1028]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::21f:d0ff:fe25:521b.
Oct 26 14:21:52 desktop avahi-daemon[1028]: New relevant interface eth0.IPv6 for mDNS.
Oct 26 14:21:52 desktop avahi-daemon[1028]: Registering new address record for fe80::21f:d0ff:fe25:521b on eth0.*.
Oct 26 14:21:58 desktop gnome-session[1613]: EggSMClient-WARNING: Desktop file '/home/fabian/.config/autostart/skype.desktop' has malformed Icon key 'skype.png'(should not include extension)
Oct 26 12:22:00 desktop rtkit-daemon[1516]: Successfully made thread 1696 of process 1696 (n/a) owned by '1000' high priority at nice level -11.
Oct 26 12:22:00 desktop rtkit-daemon[1516]: Supervising 4 threads of 2 processes of 2 users.
Oct 26 12:22:00 desktop rtkit-daemon[1516]: Successfully made thread 1697 of process 1696 (n/a) owned by '1000' RT at priority 5.
Oct 26 12:22:00 desktop rtkit-daemon[1516]: Supervising 5 threads of 2 processes of 2 users.
Oct 26 12:22:00 desktop rtkit-daemon[1516]: Successfully made thread 1698 of process 1696 (n/a) owned by '1000' RT at priority 5.
Oct 26 12:22:00 desktop rtkit-daemon[1516]: Supervising 6 threads of 2 processes of 2 users.
Oct 26 14:22:01 desktop kernel: [   27.800027] eth0: no IPv6 routers present
Oct 26 14:22:01 desktop dbus[1015]: [system] Activating service name='org.freedesktop.UDisks' (using servicehelper)
Oct 26 14:22:01 desktop dbus[1015]: [system] Successfully activated service 'org.freedesktop.UDisks'
Oct 26 14:22:01 desktop gnome-session[1613]: WARNING: Failed to start app: Unable to start application: Kindprozess »emerald« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:22:01 desktop gnome-session[1613]: WARNING: Failed to start app: Unable to start application: Kindprozess »mail-notification« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:22:01 desktop gnome-session[1613]: WARNING: Failed to start app: Unable to start application: Kindprozess »skype« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:22:02 desktop gnome-session[1613]: WARNING: Failed to start app: Unable to start application: Kindprozess »dropbox« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:22:02 desktop gnome-session[1613]: WARNING: Failed to start app: Unable to start application: Kindprozess »synergys« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:22:02 desktop ntpdate[1579]: adjust time server 91.189.94.4 offset -0.296418 sec
Oct 26 14:23:08 desktop dbus[1015]: [system] Activating service name='org.debian.apt' (using servicehelper)
Oct 26 14:23:09 desktop AptDaemon: INFO: Initializing daemon
Oct 26 14:23:09 desktop dbus[1015]: [system] Successfully activated service 'org.debian.apt'
Oct 26 14:23:09 desktop AptDaemon: INFO: UpgradeSystem() was called with safe mode: 1
Oct 26 14:23:09 desktop AptDaemon.Trans: INFO: Simulate was called
Oct 26 14:23:09 desktop AptDaemon.Worker: INFO: Simulating trans: /org/debian/apt/transaction/49f010fa1b0642ebafb25a5e960b8931
Oct 26 14:23:13 desktop AptDaemon.Worker: INFO: Upgrade system with safe mode: 1
Oct 26 14:28:09 desktop AptDaemon: INFO: Quitting due to inactivity
Oct 26 14:28:09 desktop AptDaemon: INFO: Quitting was requested
Oct 26 14:29:12 desktop kernel: Kernel logging (proc) stopped.
Oct 26 14:29:12 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="969" x-info="http://www.rsyslog.com"] exiting on signal 15.
Oct 26 14:30:41 desktop kernel: imklog 5.8.1, log source = /proc/kmsg started.
Oct 26 14:30:41 desktop rsyslogd: [origin software="rsyslogd" swVersion="5.8.1" x-pid="984" x-info="http://www.rsyslog.com"] start
Oct 26 14:30:41 desktop rsyslogd: rsyslogd's groupid changed to 103
Oct 26 14:30:41 desktop rsyslogd: rsyslogd's userid changed to 101
Oct 26 14:30:41 desktop rsyslogd-2039: Could no open output pipe '/dev/xconsole' [try http://www.rsyslog.com/e/2039 ]
Oct 26 14:30:41 desktop kernel: [    0.000000] Initializing cgroup subsys cpuset
Oct 26 14:30:41 desktop kernel: [    0.000000] Initializing cgroup subsys cpu
Oct 26 14:30:41 desktop kernel: [    0.000000] Linux version 3.0.0-13-generic (buildd@allspice) (gcc version 4.6.1 (Ubuntu/Linaro 4.6.1-9ubuntu3) ) #21-Ubuntu SMP Mon Oct 17 20:18:51 UTC 2011 (Ubuntu 3.0.0-13.21-generic 3.0.6)
Oct 26 14:30:41 desktop kernel: [    0.000000] Command line: BOOT_IMAGE=/vmlinuz-3.0.0-13-generic root=UUID=426ef53b-3501-49a3-af67-a6a18cff0233 ro quiet splash vt.handoff=7
Oct 26 14:30:41 desktop kernel: [    0.000000] KERNEL supported cpus:
Oct 26 14:30:41 desktop kernel: [    0.000000]   Intel GenuineIntel
Oct 26 14:30:41 desktop kernel: [    0.000000]   AMD AuthenticAMD
Oct 26 14:30:41 desktop kernel: [    0.000000]   Centaur CentaurHauls
Oct 26 14:30:41 desktop kernel: [    0.000000] BIOS-provided physical RAM map:
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 0000000000000000 - 000000000009e800 (usable)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 000000000009f800 - 00000000000a0000 (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 00000000000f0000 - 0000000000100000 (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 0000000000100000 - 00000000cfeb0000 (usable)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfeb0000 - 00000000cfee3000 (ACPI NVS)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfee3000 - 00000000cfef0000 (ACPI data)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 00000000cfef0000 - 00000000cff00000 (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 00000000e0000000 - 00000000e4000000 (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 00000000fec00000 - 0000000100000000 (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000]  BIOS-e820: 0000000100000000 - 0000000130000000 (usable)
Oct 26 14:30:41 desktop kernel: [    0.000000] NX (Execute Disable) protection: active
Oct 26 14:30:41 desktop kernel: [    0.000000] DMI 2.4 present.
Oct 26 14:30:41 desktop kernel: [    0.000000] DMI: Gigabyte Technology Co., Ltd. EP45-DS3R/EP45-DS3R, BIOS F10 09/22/2008
Oct 26 14:30:41 desktop kernel: [    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
Oct 26 14:30:41 desktop kernel: [    0.000000] No AGP bridge found
Oct 26 14:30:41 desktop kernel: [    0.000000] last_pfn = 0x130000 max_arch_pfn = 0x400000000
Oct 26 14:30:41 desktop kernel: [    0.000000] MTRR default type: uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000] MTRR fixed ranges enabled:
Oct 26 14:30:41 desktop kernel: [    0.000000]   00000-9FFFF write-back
Oct 26 14:30:41 desktop kernel: [    0.000000]   A0000-BFFFF uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000]   C0000-CCFFF write-protect
Oct 26 14:30:41 desktop kernel: [    0.000000]   CD000-EFFFF uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000]   F0000-FFFFF write-through
Oct 26 14:30:41 desktop kernel: [    0.000000] MTRR variable ranges enabled:
Oct 26 14:30:41 desktop kernel: [    0.000000]   0 base 000000000 mask F00000000 write-back
Oct 26 14:30:41 desktop kernel: [    0.000000]   1 base 0E0000000 mask FE0000000 uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000]   2 base 0D0000000 mask FF0000000 uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000]   3 base 100000000 mask FC0000000 write-back
Oct 26 14:30:41 desktop kernel: [    0.000000]   4 base 130000000 mask FF0000000 uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000]   5 base 0CFF00000 mask FFFF00000 uncachable
Oct 26 14:30:41 desktop kernel: [    0.000000]   6 disabled
Oct 26 14:30:41 desktop kernel: [    0.000000]   7 disabled
Oct 26 14:30:41 desktop kernel: [    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
Oct 26 14:30:41 desktop kernel: [    0.000000] original variable MTRRs
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 0, base: 0GB, range: 4GB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 1, base: 3584MB, range: 512MB, type UC
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 2, base: 3328MB, range: 256MB, type UC
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 3, base: 4GB, range: 1GB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 4, base: 4864MB, range: 256MB, type UC
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 5, base: 3327MB, range: 1MB, type UC
Oct 26 14:30:41 desktop kernel: [    0.000000] total RAM covered: 4095M
Oct 26 14:30:41 desktop kernel: [    0.000000] Found optimal setting for mtrr clean up
Oct 26 14:30:41 desktop kernel: [    0.000000]  gran_size: 64K 	chunk_size: 2M 	num_reg: 6  	lose cover RAM: 0G
Oct 26 14:30:41 desktop kernel: [    0.000000] New variable MTRRs
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 0, base: 0GB, range: 2GB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 1, base: 2GB, range: 1GB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 2, base: 3GB, range: 256MB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 3, base: 3327MB, range: 1MB, type UC
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 4, base: 4GB, range: 512MB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] reg 5, base: 4608MB, range: 256MB, type WB
Oct 26 14:30:41 desktop kernel: [    0.000000] e820 update range: 00000000cff00000 - 0000000100000000 (usable) ==> (reserved)
Oct 26 14:30:41 desktop kernel: [    0.000000] last_pfn = 0xcfeb0 max_arch_pfn = 0x400000000
Oct 26 14:30:41 desktop kernel: [    0.000000] found SMP MP-table at [ffff8800000f59d0] f59d0
Oct 26 14:30:41 desktop kernel: [    0.000000] initial memory mapped : 0 - 20000000
Oct 26 14:30:41 desktop kernel: [    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 20480
Oct 26 14:30:41 desktop kernel: [    0.000000] init_memory_mapping: 0000000000000000-00000000cfeb0000
Oct 26 14:30:41 desktop kernel: [    0.000000]  0000000000 - 00cfe00000 page 2M
Oct 26 14:30:41 desktop kernel: [    0.000000]  00cfe00000 - 00cfeb0000 page 4k
Oct 26 14:30:41 desktop kernel: [    0.000000] kernel direct mapping tables up to cfeb0000 @ cfeaa000-cfeb0000
Oct 26 14:30:41 desktop kernel: [    0.000000] init_memory_mapping: 0000000100000000-0000000130000000
Oct 26 14:30:41 desktop kernel: [    0.000000]  0100000000 - 0130000000 page 2M
Oct 26 14:30:41 desktop kernel: [    0.000000] kernel direct mapping tables up to 130000000 @ 12fffa000-130000000
Oct 26 14:30:41 desktop kernel: [    0.000000] RAMDISK: 365b6000 - 372d3000
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: RSDP 00000000000f7800 00014 (v00 GBT   )
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: RSDT 00000000cfee3040 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: FACP 00000000cfee30c0 00074 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: DSDT 00000000cfee3180 050F5 (v01 GBT    GBTUACPI 00001000 MSFT 0100000C)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: FACS 00000000cfeb0000 00040
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: HPET 00000000cfee83c0 00038 (v01 GBT    GBTUACPI 42302E31 GBTU 00000098)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: MCFG 00000000cfee8440 0003C (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: APIC 00000000cfee82c0 00084 (v01 GBT    GBTUACPI 42302E31 GBTU 01010101)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: SSDT 00000000cfee8e20 003AB (v01  PmRef    CpuPm 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 26 14:30:41 desktop kernel: [    0.000000] No NUMA configuration found
Oct 26 14:30:41 desktop kernel: [    0.000000] Faking a node at 0000000000000000-0000000130000000
Oct 26 14:30:41 desktop kernel: [    0.000000] Initmem setup node 0 0000000000000000-0000000130000000
Oct 26 14:30:41 desktop kernel: [    0.000000]   NODE_DATA [000000012fffb000 - 000000012fffffff]
Oct 26 14:30:41 desktop kernel: [    0.000000]  [ffffea0000000000-ffffea00043fffff] PMD -> [ffff88012b600000-ffff88012effffff] on node 0
Oct 26 14:30:41 desktop kernel: [    0.000000] Zone PFN ranges:
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA      0x00000010 -> 0x00001000
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA32    0x00001000 -> 0x00100000
Oct 26 14:30:41 desktop kernel: [    0.000000]   Normal   0x00100000 -> 0x00130000
Oct 26 14:30:41 desktop kernel: [    0.000000] Movable zone start PFN for each node
Oct 26 14:30:41 desktop kernel: [    0.000000] early_node_map[3] active PFN ranges
Oct 26 14:30:41 desktop kernel: [    0.000000]     0: 0x00000010 -> 0x0000009e
Oct 26 14:30:41 desktop kernel: [    0.000000]     0: 0x00000100 -> 0x000cfeb0
Oct 26 14:30:41 desktop kernel: [    0.000000]     0: 0x00100000 -> 0x00130000
Oct 26 14:30:41 desktop kernel: [    0.000000] On node 0 totalpages: 1048126
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA zone: 56 pages used for memmap
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA zone: 5 pages reserved
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA zone: 3921 pages, LIFO batch:0
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA32 zone: 14280 pages used for memmap
Oct 26 14:30:41 desktop kernel: [    0.000000]   DMA32 zone: 833256 pages, LIFO batch:31
Oct 26 14:30:41 desktop kernel: [    0.000000]   Normal zone: 2688 pages used for memmap
Oct 26 14:30:41 desktop kernel: [    0.000000]   Normal zone: 193920 pages, LIFO batch:31
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: PM-Timer IO Port: 0x408
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: Local APIC address 0xfee00000
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x00] lapic_id[0x00] enabled)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x01] enabled)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x02] enabled)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x03] enabled)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x00] dfl dfl lint[0x1])
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x01] dfl dfl lint[0x1])
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x02] dfl dfl lint[0x1])
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: LAPIC_NMI (acpi_id[0x03] dfl dfl lint[0x1])
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
Oct 26 14:30:41 desktop kernel: [    0.000000] IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-23
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: IRQ0 used by override.
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: IRQ2 used by override.
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: IRQ9 used by override.
Oct 26 14:30:41 desktop kernel: [    0.000000] Using ACPI (MADT) for SMP configuration information
Oct 26 14:30:41 desktop kernel: [    0.000000] ACPI: HPET id: 0x8086a201 base: 0xfed00000
Oct 26 14:30:41 desktop kernel: [    0.000000] SMP: Allowing 4 CPUs, 0 hotplug CPUs
Oct 26 14:30:41 desktop kernel: [    0.000000] nr_irqs_gsi: 40
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 000000000009e000 - 00000000000a0000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000f0000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000000f0000 - 0000000000100000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfeb0000 - 00000000cfee3000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfee3000 - 00000000cfef0000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cfef0000 - 00000000cff00000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000cff00000 - 00000000e0000000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000e0000000 - 00000000e4000000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000e4000000 - 00000000fec00000
Oct 26 14:30:41 desktop kernel: [    0.000000] PM: Registered nosave memory: 00000000fec00000 - 0000000100000000
Oct 26 14:30:41 desktop kernel: [    0.000000] Allocating PCI resources starting at e4000000 (gap: e4000000:1ac00000)
Oct 26 14:30:41 desktop kernel: [    0.000000] Booting paravirtualized kernel on bare hardware
Oct 26 14:30:41 desktop kernel: [    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:4 nr_node_ids:1
Oct 26 14:30:41 desktop kernel: [    0.000000] PERCPU: Embedded 27 pages/cpu @ffff88012fc00000 s79616 r8192 d22784 u524288
Oct 26 14:30:41 desktop kernel: [    0.000000] pcpu-alloc: s79616 r8192 d22784 u524288 alloc=1*2097152
Oct 26 14:30:41 desktop kernel: [    0.000000] pcpu-alloc: [0] 0 1 2 3 
Oct 26 14:30:41 desktop kernel: [    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 1031097
Oct 26 14:30:41 desktop kernel: [    0.000000] Policy zone: Normal
Oct 26 14:30:41 desktop kernel: [    0.000000] Kernel command line: BOOT_IMAGE=/vmlinuz-3.0.0-13-generic root=UUID=426ef53b-3501-49a3-af67-a6a18cff0233 ro quiet splash vt.handoff=7
Oct 26 14:30:41 desktop kernel: [    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
Oct 26 14:30:41 desktop kernel: [    0.000000] Checking aperture...
Oct 26 14:30:41 desktop kernel: [    0.000000] No AGP bridge found
Oct 26 14:30:41 desktop kernel: [    0.000000] Calgary: detecting Calgary via BIOS EBDA area
Oct 26 14:30:41 desktop kernel: [    0.000000] Calgary: Unable to locate Rio Grande table in EBDA - bailing!
Oct 26 14:30:41 desktop kernel: [    0.000000] Memory: 4039700k/4980736k available (6105k kernel code, 788232k absent, 152804k reserved, 4879k data, 984k init)
Oct 26 14:30:41 desktop kernel: [    0.000000] SLUB: Genslabs=15, HWalign=64, Order=0-3, MinObjects=0, CPUs=4, Nodes=1
Oct 26 14:30:41 desktop kernel: [    0.000000] Hierarchical RCU implementation.
Oct 26 14:30:41 desktop kernel: [    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
Oct 26 14:30:41 desktop kernel: [    0.000000] NR_IRQS:16640 nr_irqs:712 16
Oct 26 14:30:41 desktop kernel: [    0.000000] vt handoff: transparent VT on vt#7
Oct 26 14:30:41 desktop kernel: [    0.000000] Console: colour dummy device 80x25
Oct 26 14:30:41 desktop kernel: [    0.000000] console [tty0] enabled
Oct 26 14:30:41 desktop kernel: [    0.000000] allocated 33554432 bytes of page_cgroup
Oct 26 14:30:41 desktop kernel: [    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
Oct 26 14:30:41 desktop kernel: [    0.000000] hpet clockevent registered
Oct 26 14:30:41 desktop kernel: [    0.000000] Fast TSC calibration using PIT
Oct 26 14:30:41 desktop kernel: [    0.000000] Detected 2399.870 MHz processor.
Oct 26 14:30:41 desktop kernel: [    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 4799.74 BogoMIPS (lpj=9599480)
Oct 26 14:30:41 desktop kernel: [    0.004008] pid_max: default: 32768 minimum: 301
Oct 26 14:30:41 desktop kernel: [    0.004035] Security Framework initialized
Oct 26 14:30:41 desktop kernel: [    0.004051] AppArmor: AppArmor initialized
Oct 26 14:30:41 desktop kernel: [    0.004052] Yama: becoming mindful.
Oct 26 14:30:41 desktop kernel: [    0.004449] Dentry cache hash table entries: 524288 (order: 10, 4194304 bytes)
Oct 26 14:30:41 desktop kernel: [    0.008210] Inode-cache hash table entries: 262144 (order: 9, 2097152 bytes)
Oct 26 14:30:41 desktop kernel: [    0.008997] Mount-cache hash table entries: 256
Oct 26 14:30:41 desktop kernel: [    0.009135] Initializing cgroup subsys cpuacct
Oct 26 14:30:41 desktop kernel: [    0.009141] Initializing cgroup subsys memory
Oct 26 14:30:41 desktop kernel: [    0.009150] Initializing cgroup subsys devices
Oct 26 14:30:41 desktop kernel: [    0.009152] Initializing cgroup subsys freezer
Oct 26 14:30:41 desktop kernel: [    0.009154] Initializing cgroup subsys net_cls
Oct 26 14:30:41 desktop kernel: [    0.009156] Initializing cgroup subsys blkio
Oct 26 14:30:41 desktop kernel: [    0.009162] Initializing cgroup subsys perf_event
Oct 26 14:30:41 desktop kernel: [    0.009191] CPU: Physical Processor ID: 0
Oct 26 14:30:41 desktop kernel: [    0.009192] CPU: Processor Core ID: 0
Oct 26 14:30:41 desktop kernel: [    0.009195] mce: CPU supports 6 MCE banks
Oct 26 14:30:41 desktop kernel: [    0.009203] CPU0: Thermal monitoring enabled (TM2)
Oct 26 14:30:41 desktop kernel: [    0.009206] using mwait in idle threads.
Oct 26 14:30:41 desktop kernel: [    0.011445] ACPI: Core revision 20110413
Oct 26 14:30:41 desktop kernel: [    0.015122] ftrace: allocating 25656 entries in 101 pages
Oct 26 14:30:41 desktop kernel: [    0.016345] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
Oct 26 14:30:41 desktop kernel: [    0.056549] CPU0: Intel(R) Core(TM)2 Quad CPU    Q6600  @ 2.40GHz stepping 0b
Oct 26 14:30:41 desktop kernel: [    0.060003] Performance Events: PEBS fmt0+, Core2 events, Intel PMU driver.
Oct 26 14:30:41 desktop kernel: [    0.060003] PEBS disabled due to CPU errata.
Oct 26 14:30:41 desktop kernel: [    0.060003] ... version:                2
Oct 26 14:30:41 desktop kernel: [    0.060003] ... bit width:              40
Oct 26 14:30:41 desktop kernel: [    0.060003] ... generic registers:      2
Oct 26 14:30:41 desktop kernel: [    0.060003] ... value mask:             000000ffffffffff
Oct 26 14:30:41 desktop kernel: [    0.060003] ... max period:             000000007fffffff
Oct 26 14:30:41 desktop kernel: [    0.060003] ... fixed-purpose events:   3
Oct 26 14:30:41 desktop kernel: [    0.060003] ... event mask:             0000000700000003
Oct 26 14:30:41 desktop kernel: [    0.060003] Booting Node   0, Processors  #1
Oct 26 14:30:41 desktop kernel: [    0.060003] smpboot cpu 1: start_ip = 99000
Oct 26 14:30:41 desktop kernel: [    0.148113]  #2
Oct 26 14:30:41 desktop kernel: [    0.148116] smpboot cpu 2: start_ip = 99000
Oct 26 14:30:41 desktop kernel: [    0.240086]  #3 Ok.
Oct 26 14:30:41 desktop kernel: [    0.240088] smpboot cpu 3: start_ip = 99000
Oct 26 14:30:41 desktop kernel: [    0.332026] Brought up 4 CPUs
Oct 26 14:30:41 desktop kernel: [    0.332029] Total of 4 processors activated (19200.24 BogoMIPS).
Oct 26 14:30:41 desktop kernel: [    0.334284] devtmpfs: initialized
Oct 26 14:30:41 desktop kernel: [    0.334284] PM: Registering ACPI NVS region at cfeb0000 (208896 bytes)
Oct 26 14:30:41 desktop kernel: [    0.334284] print_constraints: dummy: 
Oct 26 14:30:41 desktop kernel: [    0.334284] Time: 14:30:12  Date: 10/26/11
Oct 26 14:30:41 desktop kernel: [    0.334284] NET: Registered protocol family 16
Oct 26 14:30:41 desktop kernel: [    0.334284] Trying to unpack rootfs image as initramfs...
Oct 26 14:30:41 desktop kernel: [    0.336088] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
Oct 26 14:30:41 desktop kernel: [    0.336091] ACPI: bus type pci registered
Oct 26 14:30:41 desktop kernel: [    0.336159] PCI: MMCONFIG for domain 0000 [bus 00-3f] at [mem 0xe0000000-0xe3ffffff] (base 0xe0000000)
Oct 26 14:30:41 desktop kernel: [    0.336162] PCI: MMCONFIG at [mem 0xe0000000-0xe3ffffff] reserved in E820
Oct 26 14:30:41 desktop kernel: [    0.346709] PCI: Using configuration type 1 for base access
Oct 26 14:30:41 desktop kernel: [    0.347872] bio: create slab <bio-0> at 0
Oct 26 14:30:41 desktop kernel: [    0.348885] ACPI: EC: Look up EC in DSDT
Oct 26 14:30:41 desktop kernel: [    0.352221] ACPI: SSDT 00000000cfee8540 0022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.352408] ACPI: Dynamic OEM Table Load:
Oct 26 14:30:41 desktop kernel: [    0.352411] ACPI: SSDT           (null) 0022A (v01  PmRef  Cpu0Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.352508] ACPI: SSDT 00000000cfee8a00 00152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.352686] ACPI: Dynamic OEM Table Load:
Oct 26 14:30:41 desktop kernel: [    0.352688] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu1Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.352786] ACPI: SSDT 00000000cfee8b60 00152 (v01  PmRef  Cpu2Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.352964] ACPI: Dynamic OEM Table Load:
Oct 26 14:30:41 desktop kernel: [    0.352967] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu2Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.353063] ACPI: SSDT 00000000cfee8cc0 00152 (v01  PmRef  Cpu3Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.353244] ACPI: Dynamic OEM Table Load:
Oct 26 14:30:41 desktop kernel: [    0.353247] ACPI: SSDT           (null) 00152 (v01  PmRef  Cpu3Ist 00003000 INTL 20040311)
Oct 26 14:30:41 desktop kernel: [    0.353379] ACPI: Interpreter enabled
Oct 26 14:30:41 desktop kernel: [    0.353382] ACPI: (supports S0 S3 S4 S5)
Oct 26 14:30:41 desktop kernel: [    0.353398] ACPI: Using IOAPIC for interrupt routing
Oct 26 14:30:41 desktop kernel: [    0.357496] ACPI: No dock devices found.
Oct 26 14:30:41 desktop kernel: [    0.357499] HEST: Table not found.
Oct 26 14:30:41 desktop kernel: [    0.357501] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
Oct 26 14:30:41 desktop kernel: [    0.357550] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3f])
Oct 26 14:30:41 desktop kernel: [    0.357644] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
Oct 26 14:30:41 desktop kernel: [    0.357647] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
Oct 26 14:30:41 desktop kernel: [    0.357649] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
Oct 26 14:30:41 desktop kernel: [    0.357651] pci_root PNP0A03:00: host bridge window [mem 0x000c0000-0x000dffff]
Oct 26 14:30:41 desktop kernel: [    0.357654] pci_root PNP0A03:00: host bridge window [mem 0xfed40000-0xfed44fff]
Oct 26 14:30:41 desktop kernel: [    0.357656] pci_root PNP0A03:00: host bridge window [mem 0xcff00000-0xfebfffff]
Oct 26 14:30:41 desktop kernel: [    0.357668] pci 0000:00:00.0: [8086:2e20] type 0 class 0x000600
Oct 26 14:30:41 desktop kernel: [    0.357703] pci 0000:00:01.0: [8086:2e21] type 1 class 0x000604
Oct 26 14:30:41 desktop kernel: [    0.357733] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
Oct 26 14:30:41 desktop kernel: [    0.357736] pci 0000:00:01.0: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.357773] pci 0000:00:1a.0: [8086:3a37] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.357813] pci 0000:00:1a.0: reg 20: [io  0xe100-0xe11f]
Oct 26 14:30:41 desktop kernel: [    0.357853] pci 0000:00:1a.1: [8086:3a38] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.357893] pci 0000:00:1a.1: reg 20: [io  0xe200-0xe21f]
Oct 26 14:30:41 desktop kernel: [    0.357933] pci 0000:00:1a.2: [8086:3a39] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.357974] pci 0000:00:1a.2: reg 20: [io  0xe000-0xe01f]
Oct 26 14:30:41 desktop kernel: [    0.358019] pci 0000:00:1a.7: [8086:3a3c] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.358035] pci 0000:00:1a.7: reg 10: [mem 0xea205000-0xea2053ff]
Oct 26 14:30:41 desktop kernel: [    0.358112] pci 0000:00:1b.0: [8086:3a3e] type 0 class 0x000403
Oct 26 14:30:41 desktop kernel: [    0.358126] pci 0000:00:1b.0: reg 10: [mem 0xea200000-0xea203fff 64bit]
Oct 26 14:30:41 desktop kernel: [    0.358177] pci 0000:00:1b.0: PME# supported from D0 D3hot D3cold
Oct 26 14:30:41 desktop kernel: [    0.358180] pci 0000:00:1b.0: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.358198] pci 0000:00:1c.0: [8086:3a40] type 1 class 0x000604
Oct 26 14:30:41 desktop kernel: [    0.358249] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
Oct 26 14:30:41 desktop kernel: [    0.358252] pci 0000:00:1c.0: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.358273] pci 0000:00:1c.3: [8086:3a46] type 1 class 0x000604
Oct 26 14:30:41 desktop kernel: [    0.358323] pci 0000:00:1c.3: PME# supported from D0 D3hot D3cold
Oct 26 14:30:41 desktop kernel: [    0.358327] pci 0000:00:1c.3: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.358346] pci 0000:00:1c.4: [8086:3a48] type 1 class 0x000604
Oct 26 14:30:41 desktop kernel: [    0.358396] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
Oct 26 14:30:41 desktop kernel: [    0.358399] pci 0000:00:1c.4: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.358422] pci 0000:00:1d.0: [8086:3a34] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.358462] pci 0000:00:1d.0: reg 20: [io  0xe300-0xe31f]
Oct 26 14:30:41 desktop kernel: [    0.358503] pci 0000:00:1d.1: [8086:3a35] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.358542] pci 0000:00:1d.1: reg 20: [io  0xe400-0xe41f]
Oct 26 14:30:41 desktop kernel: [    0.358583] pci 0000:00:1d.2: [8086:3a36] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.358622] pci 0000:00:1d.2: reg 20: [io  0xe500-0xe51f]
Oct 26 14:30:41 desktop kernel: [    0.358668] pci 0000:00:1d.7: [8086:3a3a] type 0 class 0x000c03
Oct 26 14:30:41 desktop kernel: [    0.358684] pci 0000:00:1d.7: reg 10: [mem 0xea204000-0xea2043ff]
Oct 26 14:30:41 desktop kernel: [    0.358757] pci 0000:00:1e.0: [8086:244e] type 1 class 0x000604
Oct 26 14:30:41 desktop kernel: [    0.358809] pci 0000:00:1f.0: [8086:3a16] type 0 class 0x000601
Oct 26 14:30:41 desktop kernel: [    0.358885] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0800 (mask 000f)
Oct 26 14:30:41 desktop kernel: [    0.358889] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0290 (mask 000f)
Oct 26 14:30:41 desktop kernel: [    0.358892] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 4700 (mask 000b)
Oct 26 14:30:41 desktop kernel: [    0.358929] pci 0000:00:1f.2: [8086:3a22] type 0 class 0x000106
Oct 26 14:30:41 desktop kernel: [    0.358947] pci 0000:00:1f.2: reg 10: [io  0xe600-0xe607]
Oct 26 14:30:41 desktop kernel: [    0.358955] pci 0000:00:1f.2: reg 14: [io  0xe700-0xe703]
Oct 26 14:30:41 desktop kernel: [    0.358962] pci 0000:00:1f.2: reg 18: [io  0xe800-0xe807]
Oct 26 14:30:41 desktop kernel: [    0.358970] pci 0000:00:1f.2: reg 1c: [io  0xe900-0xe903]
Oct 26 14:30:41 desktop kernel: [    0.358977] pci 0000:00:1f.2: reg 20: [io  0xea00-0xea1f]
Oct 26 14:30:41 desktop kernel: [    0.358985] pci 0000:00:1f.2: reg 24: [mem 0xea206000-0xea2067ff]
Oct 26 14:30:41 desktop kernel: [    0.359016] pci 0000:00:1f.2: PME# supported from D3hot
Oct 26 14:30:41 desktop kernel: [    0.359019] pci 0000:00:1f.2: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.359034] pci 0000:00:1f.3: [8086:3a30] type 0 class 0x000c05
Oct 26 14:30:41 desktop kernel: [    0.359048] pci 0000:00:1f.3: reg 10: [mem 0xea207000-0xea2070ff 64bit]
Oct 26 14:30:41 desktop kernel: [    0.359068] pci 0000:00:1f.3: reg 20: [io  0x0500-0x051f]
Oct 26 14:30:41 desktop kernel: [    0.359123] pci 0000:01:00.0: [10de:05e2] type 0 class 0x000300
Oct 26 14:30:41 desktop kernel: [    0.359133] pci 0000:01:00.0: reg 10: [mem 0xe6000000-0xe6ffffff]
Oct 26 14:30:41 desktop kernel: [    0.359143] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.359154] pci 0000:01:00.0: reg 1c: [mem 0xe4000000-0xe5ffffff 64bit]
Oct 26 14:30:41 desktop kernel: [    0.359161] pci 0000:01:00.0: reg 24: [io  0xb000-0xb07f]
Oct 26 14:30:41 desktop kernel: [    0.359168] pci 0000:01:00.0: reg 30: [mem 0x00000000-0x0007ffff pref]
Oct 26 14:30:41 desktop kernel: [    0.359200] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 26 14:30:41 desktop kernel: [    0.359203] pci 0000:00:01.0:   bridge window [io  0xb000-0xbfff]
Oct 26 14:30:41 desktop kernel: [    0.359206] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe7ffffff]
Oct 26 14:30:41 desktop kernel: [    0.359210] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.359246] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
Oct 26 14:30:41 desktop kernel: [    0.359250] pci 0000:00:1c.0:   bridge window [io  0xf000-0x0000] (disabled)
Oct 26 14:30:41 desktop kernel: [    0.359254] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff] (disabled)
Oct 26 14:30:41 desktop kernel: [    0.359260] pci 0000:00:1c.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:30:41 desktop kernel: [    0.359312] pci 0000:03:00.0: [197b:2368] type 0 class 0x000101
Oct 26 14:30:41 desktop kernel: [    0.359340] pci 0000:03:00.0: reg 10: [io  0xc000-0xc007]
Oct 26 14:30:41 desktop kernel: [    0.359354] pci 0000:03:00.0: reg 14: [io  0xc100-0xc103]
Oct 26 14:30:41 desktop kernel: [    0.359367] pci 0000:03:00.0: reg 18: [io  0xc200-0xc207]
Oct 26 14:30:41 desktop kernel: [    0.359381] pci 0000:03:00.0: reg 1c: [io  0xc300-0xc303]
Oct 26 14:30:41 desktop kernel: [    0.359395] pci 0000:03:00.0: reg 20: [io  0xc400-0xc40f]
Oct 26 14:30:41 desktop kernel: [    0.359471] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
Oct 26 14:30:41 desktop kernel: [    0.359474] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
Oct 26 14:30:41 desktop kernel: [    0.359478] pci 0000:00:1c.3:   bridge window [mem 0xe8000000-0xe8ffffff]
Oct 26 14:30:41 desktop kernel: [    0.359483] pci 0000:00:1c.3:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:30:41 desktop kernel: [    0.359536] pci 0000:04:00.0: [10ec:8168] type 0 class 0x000200
Oct 26 14:30:41 desktop kernel: [    0.359551] pci 0000:04:00.0: reg 10: [io  0xd000-0xd0ff]
Oct 26 14:30:41 desktop kernel: [    0.359579] pci 0000:04:00.0: reg 18: [mem 0xea010000-0xea010fff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.359596] pci 0000:04:00.0: reg 20: [mem 0xea000000-0xea00ffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.359608] pci 0000:04:00.0: reg 30: [mem 0x00000000-0x0000ffff pref]
Oct 26 14:30:41 desktop kernel: [    0.359646] pci 0000:04:00.0: supports D1 D2
Oct 26 14:30:41 desktop kernel: [    0.359648] pci 0000:04:00.0: PME# supported from D0 D1 D2 D3hot D3cold
Oct 26 14:30:41 desktop kernel: [    0.359652] pci 0000:04:00.0: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.359686] pci 0000:00:1c.4: PCI bridge to [bus 04-04]
Oct 26 14:30:41 desktop kernel: [    0.359689] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
Oct 26 14:30:41 desktop kernel: [    0.359693] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe9ffffff]
Oct 26 14:30:41 desktop kernel: [    0.359699] pci 0000:00:1c.4:   bridge window [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.359737] pci 0000:05:07.0: [104c:8024] type 0 class 0x000c00
Oct 26 14:30:41 desktop kernel: [    0.359754] pci 0000:05:07.0: reg 10: [mem 0xea104000-0xea1047ff]
Oct 26 14:30:41 desktop kernel: [    0.359764] pci 0000:05:07.0: reg 14: [mem 0xea100000-0xea103fff]
Oct 26 14:30:41 desktop kernel: [    0.359821] pci 0000:05:07.0: supports D1 D2
Oct 26 14:30:41 desktop kernel: [    0.359823] pci 0000:05:07.0: PME# supported from D0 D1 D2 D3hot
Oct 26 14:30:41 desktop kernel: [    0.359827] pci 0000:05:07.0: PME# disabled
Oct 26 14:30:41 desktop kernel: [    0.359862] pci 0000:00:1e.0: PCI bridge to [bus 05-05] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359866] pci 0000:00:1e.0:   bridge window [io  0xf000-0x0000] (disabled)
Oct 26 14:30:41 desktop kernel: [    0.359870] pci 0000:00:1e.0:   bridge window [mem 0xea100000-0xea1fffff]
Oct 26 14:30:41 desktop kernel: [    0.359875] pci 0000:00:1e.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
Oct 26 14:30:41 desktop kernel: [    0.359878] pci 0000:00:1e.0:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359880] pci 0000:00:1e.0:   bridge window [io  0x0d00-0xffff] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359882] pci 0000:00:1e.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359885] pci 0000:00:1e.0:   bridge window [mem 0x000c0000-0x000dffff] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359887] pci 0000:00:1e.0:   bridge window [mem 0xfed40000-0xfed44fff] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359889] pci 0000:00:1e.0:   bridge window [mem 0xcff00000-0xfebfffff] (subtractive decode)
Oct 26 14:30:41 desktop kernel: [    0.359909] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
Oct 26 14:30:41 desktop kernel: [    0.360000] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX0._PRT]
Oct 26 14:30:41 desktop kernel: [    0.360047] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX3._PRT]
Oct 26 14:30:41 desktop kernel: [    0.360080] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PEX4._PRT]
Oct 26 14:30:41 desktop kernel: [    0.360107] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.HUB0._PRT]
Oct 26 14:30:41 desktop kernel: [    0.360186]  pci0000:00: Requesting ACPI _OSC control (0x1d)
Oct 26 14:30:41 desktop kernel: [    0.360190]  pci0000:00: ACPI _OSC request failed (AE_NOT_FOUND), returned control mask: 0x1d
Oct 26 14:30:41 desktop kernel: [    0.360191] ACPI _OSC control for PCIe not granted, disabling ASPM
Oct 26 14:30:41 desktop kernel: [    0.368051] ACPI: PCI Interrupt Link [LNKA] (IRQs 3 4 5 6 7 9 10 *11 12 14 15)
Oct 26 14:30:41 desktop kernel: [    0.368094] ACPI: PCI Interrupt Link [LNKB] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
Oct 26 14:30:41 desktop kernel: [    0.368141] ACPI: PCI Interrupt Link [LNKC] (IRQs 3 4 *5 6 7 9 10 11 12 14 15)
Oct 26 14:30:41 desktop kernel: [    0.368182] ACPI: PCI Interrupt Link [LNKD] (IRQs 3 4 5 6 7 9 10 11 12 14 *15)
Oct 26 14:30:41 desktop kernel: [    0.368222] ACPI: PCI Interrupt Link [LNKE] (IRQs 3 4 5 6 7 9 10 11 12 14 15) *0, disabled.
Oct 26 14:30:41 desktop kernel: [    0.368263] ACPI: PCI Interrupt Link [LNKF] (IRQs 3 4 5 6 *7 9 10 11 12 14 15)
Oct 26 14:30:41 desktop kernel: [    0.368305] ACPI: PCI Interrupt Link [LNK0] (IRQs 3 4 5 6 7 9 *10 11 12 14 15)
Oct 26 14:30:41 desktop kernel: [    0.368345] ACPI: PCI Interrupt Link [LNK1] (IRQs 3 4 5 6 7 9 10 11 12 *14 15)
Oct 26 14:30:41 desktop kernel: [    0.368463] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
Oct 26 14:30:41 desktop kernel: [    0.368466] vgaarb: loaded
Oct 26 14:30:41 desktop kernel: [    0.368468] vgaarb: bridge control possible 0000:01:00.0
Oct 26 14:30:41 desktop kernel: [    0.368638] SCSI subsystem initialized
Oct 26 14:30:41 desktop kernel: [    0.368700] libata version 3.00 loaded.
Oct 26 14:30:41 desktop kernel: [    0.368700] usbcore: registered new interface driver usbfs
Oct 26 14:30:41 desktop kernel: [    0.368700] usbcore: registered new interface driver hub
Oct 26 14:30:41 desktop kernel: [    0.368976] usbcore: registered new device driver usb
Oct 26 14:30:41 desktop kernel: [    0.369137] PCI: Using ACPI for IRQ routing
Oct 26 14:30:41 desktop kernel: [    0.369371] PCI: pci_cache_line_size set to 64 bytes
Oct 26 14:30:41 desktop kernel: [    0.369449] reserve RAM buffer: 000000000009e800 - 000000000009ffff 
Oct 26 14:30:41 desktop kernel: [    0.369451] reserve RAM buffer: 00000000cfeb0000 - 00000000cfffffff 
Oct 26 14:30:41 desktop kernel: [    0.369534] NetLabel: Initializing
Oct 26 14:30:41 desktop kernel: [    0.369535] NetLabel:  domain hash size = 128
Oct 26 14:30:41 desktop kernel: [    0.369537] NetLabel:  protocols = UNLABELED CIPSOv4
Oct 26 14:30:41 desktop kernel: [    0.369547] NetLabel:  unlabeled traffic allowed by default
Oct 26 14:30:41 desktop kernel: [    0.369582] HPET: 4 timers in total, 0 timers will be used for per-cpu timer
Oct 26 14:30:41 desktop kernel: [    0.369587] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
Oct 26 14:30:41 desktop kernel: [    0.369591] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
Oct 26 14:30:41 desktop kernel: [    0.380051] Switching to clocksource hpet
Oct 26 14:30:41 desktop kernel: [    0.383408] Switched to NOHz mode on CPU #0
Oct 26 14:30:41 desktop kernel: [    0.383481] Switched to NOHz mode on CPU #1
Oct 26 14:30:41 desktop kernel: [    0.383953] Switched to NOHz mode on CPU #2
Oct 26 14:30:41 desktop kernel: [    0.383958] Switched to NOHz mode on CPU #3
Oct 26 14:30:41 desktop kernel: [    0.386132] AppArmor: AppArmor Filesystem Enabled
Oct 26 14:30:41 desktop kernel: [    0.386160] pnp: PnP ACPI init
Oct 26 14:30:41 desktop kernel: [    0.386177] ACPI: bus type pnp registered
Oct 26 14:30:41 desktop kernel: [    0.386258] pnp 00:00: [bus 00-3f]
Oct 26 14:30:41 desktop kernel: [    0.386261] pnp 00:00: [io  0x0cf8-0x0cff]
Oct 26 14:30:41 desktop kernel: [    0.386263] pnp 00:00: [io  0x0000-0x0cf7 window]
Oct 26 14:30:41 desktop kernel: [    0.386265] pnp 00:00: [io  0x0d00-0xffff window]
Oct 26 14:30:41 desktop kernel: [    0.386267] pnp 00:00: [mem 0x000a0000-0x000bffff window]
Oct 26 14:30:41 desktop kernel: [    0.386269] pnp 00:00: [mem 0x000c0000-0x000dffff window]
Oct 26 14:30:41 desktop kernel: [    0.386271] pnp 00:00: [mem 0xfed40000-0xfed44fff window]
Oct 26 14:30:41 desktop kernel: [    0.386273] pnp 00:00: [mem 0xcff00000-0xfebfffff window]
Oct 26 14:30:41 desktop kernel: [    0.386326] pnp 00:00: Plug and Play ACPI device, IDs PNP0a03 (active)
Oct 26 14:30:41 desktop kernel: [    0.386399] pnp 00:01: [io  0x0010-0x001f]
Oct 26 14:30:41 desktop kernel: [    0.386402] pnp 00:01: [io  0x0022-0x003f]
Oct 26 14:30:41 desktop kernel: [    0.386403] pnp 00:01: [io  0x0044-0x004d]
Oct 26 14:30:41 desktop kernel: [    0.386405] pnp 00:01: [io  0x0050-0x005f]
Oct 26 14:30:41 desktop kernel: [    0.386406] pnp 00:01: [io  0x0062-0x0063]
Oct 26 14:30:41 desktop kernel: [    0.386408] pnp 00:01: [io  0x0065-0x006f]
Oct 26 14:30:41 desktop kernel: [    0.386410] pnp 00:01: [io  0x0074-0x007f]
Oct 26 14:30:41 desktop kernel: [    0.386411] pnp 00:01: [io  0x0091-0x0093]
Oct 26 14:30:41 desktop kernel: [    0.386413] pnp 00:01: [io  0x00a2-0x00bf]
Oct 26 14:30:41 desktop kernel: [    0.386414] pnp 00:01: [io  0x00e0-0x00ef]
Oct 26 14:30:41 desktop kernel: [    0.386416] pnp 00:01: [io  0x04d0-0x04d1]
Oct 26 14:30:41 desktop kernel: [    0.386418] pnp 00:01: [io  0x0290-0x029f]
Oct 26 14:30:41 desktop kernel: [    0.386419] pnp 00:01: [io  0x0800-0x0805]
Oct 26 14:30:41 desktop kernel: [    0.386421] pnp 00:01: [io  0x0290-0x0294]
Oct 26 14:30:41 desktop kernel: [    0.386422] pnp 00:01: [io  0x0880-0x088f]
Oct 26 14:30:41 desktop kernel: [    0.386424] pnp 00:01: [io  0x04c0-0x04ff]
Oct 26 14:30:41 desktop kernel: [    0.386485] system 00:01: [io  0x04d0-0x04d1] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.386487] system 00:01: [io  0x0290-0x029f] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.386490] system 00:01: [io  0x0800-0x0805] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.386492] system 00:01: [io  0x0290-0x0294] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.386494] system 00:01: [io  0x0880-0x088f] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.386497] system 00:01: [io  0x04c0-0x04ff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.386500] system 00:01: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:30:41 desktop kernel: [    0.386511] pnp 00:02: [dma 4]
Oct 26 14:30:41 desktop kernel: [    0.386513] pnp 00:02: [io  0x0000-0x000f]
Oct 26 14:30:41 desktop kernel: [    0.386514] pnp 00:02: [io  0x0080-0x0090]
Oct 26 14:30:41 desktop kernel: [    0.386516] pnp 00:02: [io  0x0094-0x009f]
Oct 26 14:30:41 desktop kernel: [    0.386518] pnp 00:02: [io  0x00c0-0x00df]
Oct 26 14:30:41 desktop kernel: [    0.386545] pnp 00:02: Plug and Play ACPI device, IDs PNP0200 (active)
Oct 26 14:30:41 desktop kernel: [    0.386587] pnp 00:03: [irq 0 disabled]
Oct 26 14:30:41 desktop kernel: [    0.386597] pnp 00:03: [irq 8]
Oct 26 14:30:41 desktop kernel: [    0.386599] pnp 00:03: [mem 0xfed00000-0xfed003ff]
Oct 26 14:30:41 desktop kernel: [    0.386625] pnp 00:03: Plug and Play ACPI device, IDs PNP0103 (active)
Oct 26 14:30:41 desktop kernel: [    0.386648] pnp 00:04: [io  0x0070-0x0073]
Oct 26 14:30:41 desktop kernel: [    0.386674] pnp 00:04: Plug and Play ACPI device, IDs PNP0b00 (active)
Oct 26 14:30:41 desktop kernel: [    0.386682] pnp 00:05: [io  0x0061]
Oct 26 14:30:41 desktop kernel: [    0.386711] pnp 00:05: Plug and Play ACPI device, IDs PNP0800 (active)
Oct 26 14:30:41 desktop kernel: [    0.386720] pnp 00:06: [io  0x00f0-0x00ff]
Oct 26 14:30:41 desktop kernel: [    0.386725] pnp 00:06: [irq 13]
Oct 26 14:30:41 desktop kernel: [    0.386750] pnp 00:06: Plug and Play ACPI device, IDs PNP0c04 (active)
Oct 26 14:30:41 desktop kernel: [    0.387019] pnp 00:07: [io  0x0400-0x04bf]
Oct 26 14:30:41 desktop kernel: [    0.387064] system 00:07: [io  0x0400-0x04bf] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387068] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:30:41 desktop kernel: [    0.387232] pnp 00:08: [mem 0xe0000000-0xe3ffffff]
Oct 26 14:30:41 desktop kernel: [    0.387285] system 00:08: [mem 0xe0000000-0xe3ffffff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387289] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active)
Oct 26 14:30:41 desktop kernel: [    0.387417] pnp 00:09: [mem 0x000d2000-0x000d3fff]
Oct 26 14:30:41 desktop kernel: [    0.387419] pnp 00:09: [mem 0x000f0000-0x000f7fff]
Oct 26 14:30:41 desktop kernel: [    0.387421] pnp 00:09: [mem 0x000f8000-0x000fbfff]
Oct 26 14:30:41 desktop kernel: [    0.387423] pnp 00:09: [mem 0x000fc000-0x000fffff]
Oct 26 14:30:41 desktop kernel: [    0.387425] pnp 00:09: [mem 0xcfeb0000-0xcfefffff]
Oct 26 14:30:41 desktop kernel: [    0.387427] pnp 00:09: [mem 0x00000000-0x0009ffff]
Oct 26 14:30:41 desktop kernel: [    0.387428] pnp 00:09: [mem 0x00100000-0xcfeaffff]
Oct 26 14:30:41 desktop kernel: [    0.387430] pnp 00:09: [mem 0xfec00000-0xfec00fff]
Oct 26 14:30:41 desktop kernel: [    0.387432] pnp 00:09: [mem 0xfed10000-0xfed1dfff]
Oct 26 14:30:41 desktop kernel: [    0.387434] pnp 00:09: [mem 0xfed20000-0xfed8ffff]
Oct 26 14:30:41 desktop kernel: [    0.387435] pnp 00:09: [mem 0xfee00000-0xfee00fff]
Oct 26 14:30:41 desktop kernel: [    0.387437] pnp 00:09: [mem 0xffb00000-0xffb7ffff]
Oct 26 14:30:41 desktop kernel: [    0.387441] pnp 00:09: [mem 0xfff00000-0xffffffff]
Oct 26 14:30:41 desktop kernel: [    0.387443] pnp 00:09: [mem 0x000e0000-0x000effff]
Oct 26 14:30:41 desktop kernel: [    0.387503] system 00:09: [mem 0x000d2000-0x000d3fff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387506] system 00:09: [mem 0x000f0000-0x000f7fff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387508] system 00:09: [mem 0x000f8000-0x000fbfff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387511] system 00:09: [mem 0x000fc000-0x000fffff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387513] system 00:09: [mem 0xcfeb0000-0xcfefffff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387516] system 00:09: [mem 0x00000000-0x0009ffff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387518] system 00:09: [mem 0x00100000-0xcfeaffff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387521] system 00:09: [mem 0xfec00000-0xfec00fff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387523] system 00:09: [mem 0xfed10000-0xfed1dfff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387526] system 00:09: [mem 0xfed20000-0xfed8ffff] could not be reserved
Oct 26 14:30:41 desktop kernel: [    0.387528] system 00:09: [mem 0xfee00000-0xfee00fff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387531] system 00:09: [mem 0xffb00000-0xffb7ffff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387533] system 00:09: [mem 0xfff00000-0xffffffff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387535] system 00:09: [mem 0x000e0000-0x000effff] has been reserved
Oct 26 14:30:41 desktop kernel: [    0.387538] system 00:09: Plug and Play ACPI device, IDs PNP0c01 (active)
Oct 26 14:30:41 desktop kernel: [    0.387558] pnp 00:0a: [mem 0xffb80000-0xffbfffff]
Oct 26 14:30:41 desktop kernel: [    0.387596] pnp 00:0a: Plug and Play ACPI device, IDs INT0800 (active)
Oct 26 14:30:41 desktop kernel: [    0.387602] pnp: PnP ACPI: found 11 devices
Oct 26 14:30:41 desktop kernel: [    0.387603] ACPI: ACPI bus type pnp unregistered
Oct 26 14:30:41 desktop kernel: [    0.393482] PCI: max bus depth: 1 pci_try_num: 2
Oct 26 14:30:41 desktop kernel: [    0.393523] pci 0000:00:1c.3: BAR 15: assigned [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393528] pci 0000:00:1c.0: BAR 14: assigned [mem 0xea500000-0xea6fffff]
Oct 26 14:30:41 desktop kernel: [    0.393532] pci 0000:00:1c.0: BAR 15: assigned [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393535] pci 0000:00:1c.0: BAR 13: assigned [io  0x1000-0x1fff]
Oct 26 14:30:41 desktop kernel: [    0.393539] pci 0000:01:00.0: BAR 6: assigned [mem 0xe7000000-0xe707ffff pref]
Oct 26 14:30:41 desktop kernel: [    0.393542] pci 0000:00:01.0: PCI bridge to [bus 01-01]
Oct 26 14:30:41 desktop kernel: [    0.393544] pci 0000:00:01.0:   bridge window [io  0xb000-0xbfff]
Oct 26 14:30:41 desktop kernel: [    0.393548] pci 0000:00:01.0:   bridge window [mem 0xe4000000-0xe7ffffff]
Oct 26 14:30:41 desktop kernel: [    0.393551] pci 0000:00:01.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393555] pci 0000:00:1c.0: PCI bridge to [bus 02-02]
Oct 26 14:30:41 desktop kernel: [    0.393558] pci 0000:00:1c.0:   bridge window [io  0x1000-0x1fff]
Oct 26 14:30:41 desktop kernel: [    0.393563] pci 0000:00:1c.0:   bridge window [mem 0xea500000-0xea6fffff]
Oct 26 14:30:41 desktop kernel: [    0.393566] pci 0000:00:1c.0:   bridge window [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393572] pci 0000:00:1c.3: PCI bridge to [bus 03-03]
Oct 26 14:30:41 desktop kernel: [    0.393574] pci 0000:00:1c.3:   bridge window [io  0xc000-0xcfff]
Oct 26 14:30:41 desktop kernel: [    0.393579] pci 0000:00:1c.3:   bridge window [mem 0xe8000000-0xe8ffffff]
Oct 26 14:30:41 desktop kernel: [    0.393583] pci 0000:00:1c.3:   bridge window [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393589] pci 0000:04:00.0: BAR 6: assigned [mem 0xea020000-0xea02ffff pref]
Oct 26 14:30:41 desktop kernel: [    0.393591] pci 0000:00:1c.4: PCI bridge to [bus 04-04]
Oct 26 14:30:41 desktop kernel: [    0.393594] pci 0000:00:1c.4:   bridge window [io  0xd000-0xdfff]
Oct 26 14:30:41 desktop kernel: [    0.393599] pci 0000:00:1c.4:   bridge window [mem 0xe9000000-0xe9ffffff]
Oct 26 14:30:41 desktop kernel: [    0.393602] pci 0000:00:1c.4:   bridge window [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393608] pci 0000:00:1e.0: PCI bridge to [bus 05-05]
Oct 26 14:30:41 desktop kernel: [    0.393610] pci 0000:00:1e.0:   bridge window [io  disabled]
Oct 26 14:30:41 desktop kernel: [    0.393614] pci 0000:00:1e.0:   bridge window [mem 0xea100000-0xea1fffff]
Oct 26 14:30:41 desktop kernel: [    0.393617] pci 0000:00:1e.0:   bridge window [mem pref disabled]
Oct 26 14:30:41 desktop kernel: [    0.393636] pci 0000:00:01.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:30:41 desktop kernel: [    0.393639] pci 0000:00:01.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.393646] pci 0000:00:1c.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:30:41 desktop kernel: [    0.393650] pci 0000:00:1c.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.393658] pci 0000:00:1c.3: PCI INT D -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:30:41 desktop kernel: [    0.393661] pci 0000:00:1c.3: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.393667] pci 0000:00:1c.4: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:30:41 desktop kernel: [    0.393671] pci 0000:00:1c.4: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.393676] pci 0000:00:1e.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.393680] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
Oct 26 14:30:41 desktop kernel: [    0.393682] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
Oct 26 14:30:41 desktop kernel: [    0.393684] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
Oct 26 14:30:41 desktop kernel: [    0.393686] pci_bus 0000:00: resource 7 [mem 0x000c0000-0x000dffff]
Oct 26 14:30:41 desktop kernel: [    0.393688] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff]
Oct 26 14:30:41 desktop kernel: [    0.393690] pci_bus 0000:00: resource 9 [mem 0xcff00000-0xfebfffff]
Oct 26 14:30:41 desktop kernel: [    0.393692] pci_bus 0000:01: resource 0 [io  0xb000-0xbfff]
Oct 26 14:30:41 desktop kernel: [    0.393694] pci_bus 0000:01: resource 1 [mem 0xe4000000-0xe7ffffff]
Oct 26 14:30:41 desktop kernel: [    0.393697] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393699] pci_bus 0000:02: resource 0 [io  0x1000-0x1fff]
Oct 26 14:30:41 desktop kernel: [    0.393701] pci_bus 0000:02: resource 1 [mem 0xea500000-0xea6fffff]
Oct 26 14:30:41 desktop kernel: [    0.393703] pci_bus 0000:02: resource 2 [mem 0xea700000-0xea8fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393705] pci_bus 0000:03: resource 0 [io  0xc000-0xcfff]
Oct 26 14:30:41 desktop kernel: [    0.393707] pci_bus 0000:03: resource 1 [mem 0xe8000000-0xe8ffffff]
Oct 26 14:30:41 desktop kernel: [    0.393710] pci_bus 0000:03: resource 2 [mem 0xea300000-0xea4fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393712] pci_bus 0000:04: resource 0 [io  0xd000-0xdfff]
Oct 26 14:30:41 desktop kernel: [    0.393714] pci_bus 0000:04: resource 1 [mem 0xe9000000-0xe9ffffff]
Oct 26 14:30:41 desktop kernel: [    0.393716] pci_bus 0000:04: resource 2 [mem 0xea000000-0xea0fffff 64bit pref]
Oct 26 14:30:41 desktop kernel: [    0.393718] pci_bus 0000:05: resource 1 [mem 0xea100000-0xea1fffff]
Oct 26 14:30:41 desktop kernel: [    0.393721] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
Oct 26 14:30:41 desktop kernel: [    0.393722] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
Oct 26 14:30:41 desktop kernel: [    0.393724] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
Oct 26 14:30:41 desktop kernel: [    0.393727] pci_bus 0000:05: resource 7 [mem 0x000c0000-0x000dffff]
Oct 26 14:30:41 desktop kernel: [    0.393729] pci_bus 0000:05: resource 8 [mem 0xfed40000-0xfed44fff]
Oct 26 14:30:41 desktop kernel: [    0.393731] pci_bus 0000:05: resource 9 [mem 0xcff00000-0xfebfffff]
Oct 26 14:30:41 desktop kernel: [    0.393770] NET: Registered protocol family 2
Oct 26 14:30:41 desktop kernel: [    0.393904] IP route cache hash table entries: 131072 (order: 8, 1048576 bytes)
Oct 26 14:30:41 desktop kernel: [    0.394925] TCP established hash table entries: 524288 (order: 11, 8388608 bytes)
Oct 26 14:30:41 desktop kernel: [    0.398194] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes)
Oct 26 14:30:41 desktop kernel: [    0.398409] TCP: Hash tables configured (established 524288 bind 65536)
Oct 26 14:30:41 desktop kernel: [    0.398411] TCP reno registered
Oct 26 14:30:41 desktop kernel: [    0.398421] UDP hash table entries: 2048 (order: 4, 65536 bytes)
Oct 26 14:30:41 desktop kernel: [    0.398443] UDP-Lite hash table entries: 2048 (order: 4, 65536 bytes)
Oct 26 14:30:41 desktop kernel: [    0.398566] NET: Registered protocol family 1
Oct 26 14:30:41 desktop kernel: [    0.398724] pci 0000:01:00.0: Boot video device
Oct 26 14:30:41 desktop kernel: [    0.398735] PCI: CLS 32 bytes, default 64
Oct 26 14:30:41 desktop kernel: [    0.398737] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
Oct 26 14:30:41 desktop kernel: [    0.398739] Placing 64MB software IO TLB between ffff8800cbeaa000 - ffff8800cfeaa000
Oct 26 14:30:41 desktop kernel: [    0.398741] software IO TLB at phys 0xcbeaa000 - 0xcfeaa000
Oct 26 14:30:41 desktop kernel: [    0.399094] audit: initializing netlink socket (disabled)
Oct 26 14:30:41 desktop kernel: [    0.399102] type=2000 audit(1319639412.392:1): initialized
Oct 26 14:30:41 desktop kernel: [    0.426718] HugeTLB registered 2 MB page size, pre-allocated 0 pages
Oct 26 14:30:41 desktop kernel: [    0.445638] VFS: Disk quotas dquot_6.5.2
Oct 26 14:30:41 desktop kernel: [    0.445693] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
Oct 26 14:30:41 desktop kernel: [    0.446251] fuse init (API version 7.16)
Oct 26 14:30:41 desktop kernel: [    0.446327] msgmni has been set to 7890
Oct 26 14:30:41 desktop kernel: [    0.446782] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
Oct 26 14:30:41 desktop kernel: [    0.446822] io scheduler noop registered
Oct 26 14:30:41 desktop kernel: [    0.446824] io scheduler deadline registered
Oct 26 14:30:41 desktop kernel: [    0.446857] io scheduler cfq registered (default)
Oct 26 14:30:41 desktop kernel: [    0.446955] pcieport 0000:00:01.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.446984] pcieport 0000:00:01.0: irq 40 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [    0.447024] pcieport 0000:00:1c.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.447057] pcieport 0000:00:1c.0: irq 41 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [    0.447108] pcieport 0000:00:1c.3: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.447142] pcieport 0000:00:1c.3: irq 42 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [    0.447191] pcieport 0000:00:1c.4: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.447225] pcieport 0000:00:1c.4: irq 43 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [    0.447294] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
Oct 26 14:30:41 desktop kernel: [    0.447315] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
Oct 26 14:30:41 desktop kernel: [    0.447352] intel_idle: MWAIT substates: 0x20
Oct 26 14:30:41 desktop kernel: [    0.447353] intel_idle: does not run on family 6 model 15
Oct 26 14:30:41 desktop kernel: [    0.447418] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
Oct 26 14:30:41 desktop kernel: [    0.447422] ACPI: Power Button [PWRB]
Oct 26 14:30:41 desktop kernel: [    0.447469] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
Oct 26 14:30:41 desktop kernel: [    0.447472] ACPI: Power Button [PWRF]
Oct 26 14:30:41 desktop kernel: [    0.447498] ACPI: acpi_idle registered with cpuidle
Oct 26 14:30:41 desktop kernel: [    0.447545] Marking TSC unstable due to TSC halts in idle
Oct 26 14:30:41 desktop kernel: [    0.449012] ERST: Table is not found!
Oct 26 14:30:41 desktop kernel: [    0.449066] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
Oct 26 14:30:41 desktop kernel: [    0.585972] Freeing initrd memory: 13428k freed
Oct 26 14:30:41 desktop kernel: [    0.700285] Linux agpgart interface v0.103
Oct 26 14:30:41 desktop kernel: [    0.701329] brd: module loaded
Oct 26 14:30:41 desktop kernel: [    0.701770] loop: module loaded
Oct 26 14:30:41 desktop kernel: [    0.701898] pata_acpi 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:30:41 desktop kernel: [    0.701922] pata_acpi 0000:03:00.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.701934] pata_acpi 0000:03:00.0: PCI INT A disabled
Oct 26 14:30:41 desktop kernel: [    0.702179] Fixed MDIO Bus: probed
Oct 26 14:30:41 desktop kernel: [    0.702198] PPP generic driver version 2.4.2
Oct 26 14:30:41 desktop kernel: [    0.702226] tun: Universal TUN/TAP device driver, 1.6
Oct 26 14:30:41 desktop kernel: [    0.702228] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
Oct 26 14:30:41 desktop kernel: [    0.702292] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
Oct 26 14:30:41 desktop kernel: [    0.702310] ehci_hcd 0000:00:1a.7: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:30:41 desktop kernel: [    0.702332] ehci_hcd 0000:00:1a.7: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.702336] ehci_hcd 0000:00:1a.7: EHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.702363] ehci_hcd 0000:00:1a.7: new USB bus registered, assigned bus number 1
Oct 26 14:30:41 desktop kernel: [    0.706263] ehci_hcd 0000:00:1a.7: cache line size of 32 is not supported
Oct 26 14:30:41 desktop kernel: [    0.706280] ehci_hcd 0000:00:1a.7: irq 18, io mem 0xea205000
Oct 26 14:30:41 desktop kernel: [    0.720024] ehci_hcd 0000:00:1a.7: USB 2.0 started, EHCI 1.00
Oct 26 14:30:41 desktop kernel: [    0.720170] hub 1-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.720176] hub 1-0:1.0: 6 ports detected
Oct 26 14:30:41 desktop kernel: [    0.720248] ehci_hcd 0000:00:1d.7: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:30:41 desktop kernel: [    0.720260] ehci_hcd 0000:00:1d.7: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.720263] ehci_hcd 0000:00:1d.7: EHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.720294] ehci_hcd 0000:00:1d.7: new USB bus registered, assigned bus number 2
Oct 26 14:30:41 desktop kernel: [    0.724209] ehci_hcd 0000:00:1d.7: cache line size of 32 is not supported
Oct 26 14:30:41 desktop kernel: [    0.724221] ehci_hcd 0000:00:1d.7: irq 23, io mem 0xea204000
Oct 26 14:30:41 desktop kernel: [    0.740026] ehci_hcd 0000:00:1d.7: USB 2.0 started, EHCI 1.00
Oct 26 14:30:41 desktop kernel: [    0.740145] hub 2-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.740153] hub 2-0:1.0: 6 ports detected
Oct 26 14:30:41 desktop kernel: [    0.740225] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
Oct 26 14:30:41 desktop kernel: [    0.740236] uhci_hcd: USB Universal Host Controller Interface driver
Oct 26 14:30:41 desktop kernel: [    0.740252] uhci_hcd 0000:00:1a.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:30:41 desktop kernel: [    0.740257] uhci_hcd 0000:00:1a.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.740259] uhci_hcd 0000:00:1a.0: UHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.740287] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
Oct 26 14:30:41 desktop kernel: [    0.740316] uhci_hcd 0000:00:1a.0: irq 16, io base 0x0000e100
Oct 26 14:30:41 desktop kernel: [    0.740418] hub 3-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.740422] hub 3-0:1.0: 2 ports detected
Oct 26 14:30:41 desktop kernel: [    0.740477] uhci_hcd 0000:00:1a.1: PCI INT B -> GSI 21 (level, low) -> IRQ 21
Oct 26 14:30:41 desktop kernel: [    0.740482] uhci_hcd 0000:00:1a.1: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.740485] uhci_hcd 0000:00:1a.1: UHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.740514] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
Oct 26 14:30:41 desktop kernel: [    0.740544] uhci_hcd 0000:00:1a.1: irq 21, io base 0x0000e200
Oct 26 14:30:41 desktop kernel: [    0.740637] hub 4-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.740641] hub 4-0:1.0: 2 ports detected
Oct 26 14:30:41 desktop kernel: [    0.740692] uhci_hcd 0000:00:1a.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:30:41 desktop kernel: [    0.740697] uhci_hcd 0000:00:1a.2: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.740700] uhci_hcd 0000:00:1a.2: UHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.740731] uhci_hcd 0000:00:1a.2: new USB bus registered, assigned bus number 5
Oct 26 14:30:41 desktop kernel: [    0.740752] uhci_hcd 0000:00:1a.2: irq 18, io base 0x0000e000
Oct 26 14:30:41 desktop kernel: [    0.740844] hub 5-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.740848] hub 5-0:1.0: 2 ports detected
Oct 26 14:30:41 desktop kernel: [    0.740898] uhci_hcd 0000:00:1d.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:30:41 desktop kernel: [    0.740903] uhci_hcd 0000:00:1d.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.740906] uhci_hcd 0000:00:1d.0: UHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.740934] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 6
Oct 26 14:30:41 desktop kernel: [    0.740957] uhci_hcd 0000:00:1d.0: irq 23, io base 0x0000e300
Oct 26 14:30:41 desktop kernel: [    0.741051] hub 6-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.741055] hub 6-0:1.0: 2 ports detected
Oct 26 14:30:41 desktop kernel: [    0.741105] uhci_hcd 0000:00:1d.1: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:30:41 desktop kernel: [    0.741110] uhci_hcd 0000:00:1d.1: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.741113] uhci_hcd 0000:00:1d.1: UHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.741140] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 7
Oct 26 14:30:41 desktop kernel: [    0.741169] uhci_hcd 0000:00:1d.1: irq 19, io base 0x0000e400
Oct 26 14:30:41 desktop kernel: [    0.741264] hub 7-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.741268] hub 7-0:1.0: 2 ports detected
Oct 26 14:30:41 desktop kernel: [    0.741315] uhci_hcd 0000:00:1d.2: PCI INT C -> GSI 18 (level, low) -> IRQ 18
Oct 26 14:30:41 desktop kernel: [    0.741320] uhci_hcd 0000:00:1d.2: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.741323] uhci_hcd 0000:00:1d.2: UHCI Host Controller
Oct 26 14:30:41 desktop kernel: [    0.741358] uhci_hcd 0000:00:1d.2: new USB bus registered, assigned bus number 8
Oct 26 14:30:41 desktop kernel: [    0.741380] uhci_hcd 0000:00:1d.2: irq 18, io base 0x0000e500
Oct 26 14:30:41 desktop kernel: [    0.741472] hub 8-0:1.0: USB hub found
Oct 26 14:30:41 desktop kernel: [    0.741476] hub 8-0:1.0: 2 ports detected
Oct 26 14:30:41 desktop kernel: [    0.741563] i8042: PNP: No PS/2 controller found. Probing ports directly.
Oct 26 14:30:41 desktop kernel: [    0.741951] serio: i8042 KBD port at 0x60,0x64 irq 1
Oct 26 14:30:41 desktop kernel: [    0.741963] serio: i8042 AUX port at 0x60,0x64 irq 12
Oct 26 14:30:41 desktop kernel: [    0.742176] mousedev: PS/2 mouse device common for all mice
Oct 26 14:30:41 desktop kernel: [    0.742303] rtc_cmos 00:04: RTC can wake from S4
Oct 26 14:30:41 desktop kernel: [    0.742395] rtc_cmos 00:04: rtc core: registered rtc_cmos as rtc0
Oct 26 14:30:41 desktop kernel: [    0.742417] rtc0: alarms up to one month, 242 bytes nvram, hpet irqs
Oct 26 14:30:41 desktop kernel: [    0.742530] device-mapper: uevent: version 1.0.3
Oct 26 14:30:41 desktop kernel: [    0.742592] device-mapper: ioctl: 4.20.0-ioctl (2011-02-02) initialised: dm-devel@redhat.com
Oct 26 14:30:41 desktop kernel: [    0.742648] cpuidle: using governor ladder
Oct 26 14:30:41 desktop kernel: [    0.742736] cpuidle: using governor menu
Oct 26 14:30:41 desktop kernel: [    0.742738] EFI Variables Facility v0.08 2004-May-17
Oct 26 14:30:41 desktop kernel: [    0.742968] TCP cubic registered
Oct 26 14:30:41 desktop kernel: [    0.743074] NET: Registered protocol family 10
Oct 26 14:30:41 desktop kernel: [    0.743507] NET: Registered protocol family 17
Oct 26 14:30:41 desktop kernel: [    0.743525] Registering the dns_resolver key type
Oct 26 14:30:41 desktop kernel: [    0.743609] PM: Hibernation image not present or could not be loaded.
Oct 26 14:30:41 desktop kernel: [    0.743620] registered taskstats version 1
Oct 26 14:30:41 desktop kernel: [    0.758471]   Magic number: 15:939:536
Oct 26 14:30:41 desktop kernel: [    0.758488] bdi 1:14: hash matches
Oct 26 14:30:41 desktop kernel: [    0.758498] tty ttyS16: hash matches
Oct 26 14:30:41 desktop kernel: [    0.758567] rtc_cmos 00:04: setting system clock to 2011-10-26 14:30:13 UTC (1319639413)
Oct 26 14:30:41 desktop kernel: [    0.763261] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
Oct 26 14:30:41 desktop kernel: [    0.763264] EDD information not available.
Oct 26 14:30:41 desktop kernel: [    0.764987] Freeing unused kernel memory: 984k freed
Oct 26 14:30:41 desktop kernel: [    0.765162] Write protecting the kernel read-only data: 10240k
Oct 26 14:30:41 desktop kernel: [    0.765384] Freeing unused kernel memory: 20k freed
Oct 26 14:30:41 desktop kernel: [    0.769833] Freeing unused kernel memory: 1396k freed
Oct 26 14:30:41 desktop kernel: [    0.807710] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
Oct 26 14:30:41 desktop kernel: [    0.807737] r8169 0000:04:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:30:41 desktop kernel: [    0.807776] r8169 0000:04:00.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.807833] r8169 0000:04:00.0: irq 44 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [    0.808256] r8169 0000:04:00.0: eth0: RTL8168c/8111c at 0xffffc90000644000, 00:1f:d0:25:52:1b, XID 1c4000c0 IRQ 44
Oct 26 14:30:41 desktop kernel: [    0.810933] pata_jmicron 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:30:41 desktop kernel: [    0.810972] pata_jmicron 0000:03:00.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    0.812176] scsi0 : pata_jmicron
Oct 26 14:30:41 desktop kernel: [    0.812934] scsi1 : pata_jmicron
Oct 26 14:30:41 desktop kernel: [    0.813566] ata1: PATA max UDMA/100 cmd 0xc000 ctl 0xc100 bmdma 0xc400 irq 19
Oct 26 14:30:41 desktop kernel: [    0.813569] ata2: PATA max UDMA/100 cmd 0xc200 ctl 0xc300 bmdma 0xc408 irq 19
Oct 26 14:30:41 desktop kernel: [    1.032027] usb 1-5: new high speed USB device number 2 using ehci_hcd
Oct 26 14:30:41 desktop kernel: [    1.125404] ahci 0000:00:1f.2: version 3.0
Oct 26 14:30:41 desktop kernel: [    1.125417] ahci 0000:00:1f.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
Oct 26 14:30:41 desktop kernel: [    1.125469] firewire_ohci 0000:05:07.0: PCI INT A -> GSI 23 (level, low) -> IRQ 23
Oct 26 14:30:41 desktop kernel: [    1.125479] ahci 0000:00:1f.2: irq 45 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [    1.125535] ahci: SSS flag set, parallel bus scan disabled
Oct 26 14:30:41 desktop kernel: [    1.125570] ahci 0000:00:1f.2: AHCI 0001.0200 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
Oct 26 14:30:41 desktop kernel: [    1.125574] ahci 0000:00:1f.2: flags: 64bit ncq sntf stag pm led clo pmp pio slum part ccc ems 
Oct 26 14:30:41 desktop kernel: [    1.125578] ahci 0000:00:1f.2: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [    1.164615] scsi2 : ahci
Oct 26 14:30:41 desktop kernel: [    1.164726] scsi3 : ahci
Oct 26 14:30:41 desktop kernel: [    1.164825] scsi4 : ahci
Oct 26 14:30:41 desktop kernel: [    1.164919] scsi5 : ahci
Oct 26 14:30:41 desktop kernel: [    1.165012] scsi6 : ahci
Oct 26 14:30:41 desktop kernel: [    1.165104] scsi7 : ahci
Oct 26 14:30:41 desktop kernel: [    1.165260] ata3: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206100 irq 45
Oct 26 14:30:41 desktop kernel: [    1.165263] ata4: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206180 irq 45
Oct 26 14:30:41 desktop kernel: [    1.165265] ata5: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206200 irq 45
Oct 26 14:30:41 desktop kernel: [    1.165268] ata6: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206280 irq 45
Oct 26 14:30:41 desktop kernel: [    1.165270] ata7: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206300 irq 45
Oct 26 14:30:41 desktop kernel: [    1.165273] ata8: SATA max UDMA/133 abar m2048@0xea206000 port 0xea206380 irq 45
Oct 26 14:30:41 desktop kernel: [    1.180082] firewire_ohci: Added fw-ohci device 0000:05:07.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x2
Oct 26 14:30:41 desktop kernel: [    1.370602] usbcore: registered new interface driver uas
Oct 26 14:30:41 desktop kernel: [    1.480021] usb 2-3: new high speed USB device number 2 using ehci_hcd
Oct 26 14:30:41 desktop kernel: [    1.484040] ata3: SATA link down (SStatus 0 SControl 300)
Oct 26 14:30:41 desktop kernel: [    1.616886] Initializing USB Mass Storage driver...
Oct 26 14:30:41 desktop kernel: [    1.617024] scsi8 : usb-storage 1-5:1.0
Oct 26 14:30:41 desktop kernel: [    1.617220] scsi9 : usb-storage 2-3:1.0
Oct 26 14:30:41 desktop kernel: [    1.617312] usbcore: registered new interface driver usb-storage
Oct 26 14:30:41 desktop kernel: [    1.617314] USB Mass Storage support registered.
Oct 26 14:30:41 desktop kernel: [    1.680109] firewire_core: created device fw0: GUID 002c965900001fd0, S400
Oct 26 14:30:41 desktop kernel: [    1.908026] usb 8-2: new low speed USB device number 2 using uhci_hcd
Oct 26 14:30:41 desktop kernel: [    1.976047] ata4: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:30:41 desktop kernel: [    1.976590] ata4.00: HPA detected: current 488395055, native 488397168
Oct 26 14:30:41 desktop kernel: [    1.976648] ata4.00: ATA-7: WDC WD2500JS-00NCB1, 10.02E02, max UDMA/133
Oct 26 14:30:41 desktop kernel: [    1.976652] ata4.00: 488395055 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:30:41 desktop kernel: [    1.977316] ata4.00: configured for UDMA/133
Oct 26 14:30:41 desktop kernel: [    1.977441] scsi 3:0:0:0: Direct-Access     ATA      WDC WD2500JS-00N 10.0 PQ: 0 ANSI: 5
Oct 26 14:30:41 desktop kernel: [    1.977566] sd 3:0:0:0: Attached scsi generic sg0 type 0
Oct 26 14:30:41 desktop kernel: [    1.977585] sd 3:0:0:0: [sda] 488395055 512-byte logical blocks: (250 GB/232 GiB)
Oct 26 14:30:41 desktop kernel: [    1.977673] sd 3:0:0:0: [sda] Write Protect is off
Oct 26 14:30:41 desktop kernel: [    1.977676] sd 3:0:0:0: [sda] Mode Sense: 00 3a 00 00
Oct 26 14:30:41 desktop kernel: [    1.977706] sd 3:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:30:41 desktop kernel: [    2.010303]  sda: sda1 sda2 sda3 < sda5 sda6 > sda4
Oct 26 14:30:41 desktop kernel: [    2.010779] sd 3:0:0:0: [sda] Attached SCSI disk
Oct 26 14:30:41 desktop kernel: [    2.122703] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.0/input/input2
Oct 26 14:30:41 desktop kernel: [    2.122773] generic-usb 0003:046D:C505.0001: input,hidraw0: USB HID v1.10 Keyboard [Logitech USB Receiver] on usb-0000:00:1d.2-2/input0
Oct 26 14:30:41 desktop kernel: [    2.155944] input: Logitech USB Receiver as /devices/pci0000:00/0000:00:1d.2/usb8/8-2/8-2:1.1/input/input3
Oct 26 14:30:41 desktop kernel: [    2.156059] generic-usb 0003:046D:C505.0002: input,hidraw1: USB HID v1.10 Mouse [Logitech USB Receiver] on usb-0000:00:1d.2-2/input1
Oct 26 14:30:41 desktop kernel: [    2.156075] usbcore: registered new interface driver usbhid
Oct 26 14:30:41 desktop kernel: [    2.156076] usbhid: USB HID core driver
Oct 26 14:30:41 desktop kernel: [    2.468019] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 14:30:41 desktop kernel: [    2.471393] ata5.00: ATAPI: Optiarc DVD-ROM DDU1671S, 1.11, max UDMA/33
Oct 26 14:30:41 desktop kernel: [    2.471398] ata5.00: applying bridge limits
Oct 26 14:30:41 desktop kernel: [    2.472845] ata5.00: configured for UDMA/33
Oct 26 14:30:41 desktop kernel: [    2.479094] scsi 4:0:0:0: CD-ROM            Optiarc  DVD-ROM DDU1671S 1.11 PQ: 0 ANSI: 5
Oct 26 14:30:41 desktop kernel: [    2.481754] sr0: scsi3-mmc drive: 4x/48x cd/rw xa/form2 cdda tray
Oct 26 14:30:41 desktop kernel: [    2.481759] cdrom: Uniform CD-ROM driver Revision: 3.20
Oct 26 14:30:41 desktop kernel: [    2.481904] sr 4:0:0:0: Attached scsi CD-ROM sr0
Oct 26 14:30:41 desktop kernel: [    2.481987] sr 4:0:0:0: Attached scsi generic sg1 type 5
Oct 26 14:30:41 desktop kernel: [    2.616800] scsi 9:0:0:0: Direct-Access     Generic  USB SD Reader    1.00 PQ: 0 ANSI: 0
Oct 26 14:30:41 desktop kernel: [    2.617302] scsi 9:0:0:1: Direct-Access     Generic  USB CF Reader    1.01 PQ: 0 ANSI: 0
Oct 26 14:30:41 desktop kernel: [    2.617804] scsi 9:0:0:2: Direct-Access     Generic  USB xD/SM Reader 1.02 PQ: 0 ANSI: 0
Oct 26 14:30:41 desktop kernel: [    2.618300] scsi 9:0:0:3: Direct-Access     Generic  USB MS Reader    1.03 PQ: 0 ANSI: 0
Oct 26 14:30:41 desktop kernel: [    2.619979] scsi 8:0:0:0: Direct-Access     Hitachi  HTS545032A7E380       PQ: 0 ANSI: 4
Oct 26 14:30:41 desktop kernel: [    2.972150] ata6: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
Oct 26 14:30:41 desktop kernel: [    2.973210] ata6.00: ATAPI: Optiarc DVD RW AD-7201S, 1.06, max UDMA/100
Oct 26 14:30:41 desktop kernel: [    2.974572] ata6.00: configured for UDMA/100
Oct 26 14:30:41 desktop kernel: [    2.976272] scsi: waiting for bus probes to complete ...
Oct 26 14:30:41 desktop kernel: [    3.140212] sd 9:0:0:0: Attached scsi generic sg2 type 0
Oct 26 14:30:41 desktop kernel: [    3.140346] sd 9:0:0:1: Attached scsi generic sg3 type 0
Oct 26 14:30:41 desktop kernel: [    3.140460] sd 9:0:0:2: Attached scsi generic sg4 type 0
Oct 26 14:30:41 desktop kernel: [    3.140577] sd 9:0:0:3: Attached scsi generic sg5 type 0
Oct 26 14:30:41 desktop kernel: [    3.140827] sd 8:0:0:0: Attached scsi generic sg6 type 0
Oct 26 14:30:41 desktop kernel: [    3.141727] sd 8:0:0:0: [sdf] 625142448 512-byte logical blocks: (320 GB/298 GiB)
Oct 26 14:30:41 desktop kernel: [    3.142506] scsi 5:0:0:0: CD-ROM            Optiarc  DVD RW AD-7201S  1.06 PQ: 0 ANSI: 5
Oct 26 14:30:41 desktop kernel: [    3.144693] sr1: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
Oct 26 14:30:41 desktop kernel: [    3.144809] sr 5:0:0:0: Attached scsi CD-ROM sr1
Oct 26 14:30:41 desktop kernel: [    3.144872] sr 5:0:0:0: Attached scsi generic sg7 type 5
Oct 26 14:30:41 desktop kernel: [    3.146043] sd 9:0:0:0: [sdb] Attached SCSI removable disk
Oct 26 14:30:41 desktop kernel: [    3.146664] sd 9:0:0:1: [sdc] Attached SCSI removable disk
Oct 26 14:30:41 desktop kernel: [    3.147291] sd 9:0:0:2: [sdd] Attached SCSI removable disk
Oct 26 14:30:41 desktop kernel: [    3.147914] sd 9:0:0:3: [sde] Attached SCSI removable disk
Oct 26 14:30:41 desktop kernel: [    3.148122] sd 8:0:0:0: [sdf] Write Protect is off
Oct 26 14:30:41 desktop kernel: [    3.148137] sd 8:0:0:0: [sdf] Mode Sense: 38 00 00 00
Oct 26 14:30:41 desktop kernel: [    3.154476] sd 8:0:0:0: [sdf] No Caching mode page present
Oct 26 14:30:41 desktop kernel: [    3.154479] sd 8:0:0:0: [sdf] Assuming drive cache: write through
Oct 26 14:30:41 desktop kernel: [    3.167976] sd 8:0:0:0: [sdf] No Caching mode page present
Oct 26 14:30:41 desktop kernel: [    3.167979] sd 8:0:0:0: [sdf] Assuming drive cache: write through
Oct 26 14:30:41 desktop kernel: [    3.636039] ata7: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:30:41 desktop kernel: [    3.655292] ata7.00: ATA-8: WDC WD10EADS-00L5B1, 01.01A01, max UDMA/133
Oct 26 14:30:41 desktop kernel: [    3.655296] ata7.00: 1953525168 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:30:41 desktop kernel: [    3.656166] ata7.00: configured for UDMA/133
Oct 26 14:30:41 desktop kernel: [    3.656262] scsi 6:0:0:0: Direct-Access     ATA      WDC WD10EADS-00L 01.0 PQ: 0 ANSI: 5
Oct 26 14:30:41 desktop kernel: [    3.656379] sd 6:0:0:0: [sdg] 1953525168 512-byte logical blocks: (1.00 TB/931 GiB)
Oct 26 14:30:41 desktop kernel: [    3.656385] sd 6:0:0:0: Attached scsi generic sg8 type 0
Oct 26 14:30:41 desktop kernel: [    3.656467] sd 6:0:0:0: [sdg] Write Protect is off
Oct 26 14:30:41 desktop kernel: [    3.656469] sd 6:0:0:0: [sdg] Mode Sense: 00 3a 00 00
Oct 26 14:30:41 desktop kernel: [    3.656499] sd 6:0:0:0: [sdg] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:30:41 desktop kernel: [    3.661447]  sdg: sdg1
Oct 26 14:30:41 desktop kernel: [    3.661702] sd 6:0:0:0: [sdg] Attached SCSI disk
Oct 26 14:30:41 desktop kernel: [    4.129854]  sdf: unknown partition table
Oct 26 14:30:41 desktop kernel: [    4.143478] sd 8:0:0:0: [sdf] No Caching mode page present
Oct 26 14:30:41 desktop kernel: [    4.143482] sd 8:0:0:0: [sdf] Assuming drive cache: write through
Oct 26 14:30:41 desktop kernel: [    4.143486] sd 8:0:0:0: [sdf] Attached SCSI disk
Oct 26 14:30:41 desktop kernel: [    4.148033] ata8: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
Oct 26 14:30:41 desktop kernel: [    4.154337] ata8.00: HPA detected: current 976771055, native 976773168
Oct 26 14:30:41 desktop kernel: [    4.154402] ata8.00: ATA-7: SAMSUNG HD502IJ, 1AA01113, max UDMA7
Oct 26 14:30:41 desktop kernel: [    4.154406] ata8.00: 976771055 sectors, multi 0: LBA48 NCQ (depth 31/32), AA
Oct 26 14:30:41 desktop kernel: [    4.160832] ata8.00: configured for UDMA/133
Oct 26 14:30:41 desktop kernel: [    4.160923] scsi 7:0:0:0: Direct-Access     ATA      SAMSUNG HD502IJ  1AA0 PQ: 0 ANSI: 5
Oct 26 14:30:41 desktop kernel: [    4.161024] sd 7:0:0:0: [sdh] 976771055 512-byte logical blocks: (500 GB/465 GiB)
Oct 26 14:30:41 desktop kernel: [    4.161050] sd 7:0:0:0: Attached scsi generic sg9 type 0
Oct 26 14:30:41 desktop kernel: [    4.161075] sd 7:0:0:0: [sdh] Write Protect is off
Oct 26 14:30:41 desktop kernel: [    4.161077] sd 7:0:0:0: [sdh] Mode Sense: 00 3a 00 00
Oct 26 14:30:41 desktop kernel: [    4.161100] sd 7:0:0:0: [sdh] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
Oct 26 14:30:41 desktop kernel: [    4.170752]  sdh: sdh1
Oct 26 14:30:41 desktop kernel: [    4.171047] sd 7:0:0:0: [sdh] Attached SCSI disk
Oct 26 14:30:41 desktop kernel: [    4.675269] EXT4-fs (sda5): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:30:41 desktop kernel: [   13.461589] lp: driver loaded but no devices found
Oct 26 14:30:41 desktop kernel: [   13.500750] Adding 7815584k swap on /dev/sda1.  Priority:-1 extents:1 across:7815584k 
Oct 26 14:30:41 desktop kernel: [   13.506722] nvidia: module license 'NVIDIA' taints kernel.
Oct 26 14:30:41 desktop kernel: [   13.506726] Disabling lock debugging due to kernel taint
Oct 26 14:30:41 desktop kernel: [   13.563627] type=1400 audit(1319632226.297:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient" pid=559 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   13.563860] type=1400 audit(1319632226.297:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=559 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   13.564031] type=1400 audit(1319632226.301:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=559 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   13.596116] HDA Intel 0000:00:1b.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
Oct 26 14:30:41 desktop kernel: [   13.596166] HDA Intel 0000:00:1b.0: irq 46 for MSI/MSI-X
Oct 26 14:30:41 desktop kernel: [   13.596190] HDA Intel 0000:00:1b.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [   13.650989] hda_codec: ALC889A: BIOS auto-probing.
Oct 26 14:30:41 desktop kernel: [   13.683421] input: HDA Intel Headphone as /devices/pci0000:00/0000:00:1b.0/sound/card0/input4
Oct 26 14:30:41 desktop kernel: [   14.275677] nvidia 0000:01:00.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
Oct 26 14:30:41 desktop kernel: [   14.275685] nvidia 0000:01:00.0: setting latency timer to 64
Oct 26 14:30:41 desktop kernel: [   14.275689] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
Oct 26 14:30:41 desktop kernel: [   14.275872] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  280.13  Wed Jul 27 16:53:56 PDT 2011
Oct 26 14:30:41 desktop kernel: [   14.334070] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro
Oct 26 14:30:41 desktop kernel: [   14.456128] EXT4-fs (sda2): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:30:41 desktop kernel: [   14.470963] vesafb: mode is 640x480x32, linelength=2560, pages=0
Oct 26 14:30:41 desktop kernel: [   14.470966] vesafb: scrolling: redraw
Oct 26 14:30:41 desktop kernel: [   14.470969] vesafb: Truecolor: size=8:8:8:8, shift=24:16:8:0
Oct 26 14:30:41 desktop kernel: [   14.472883] vesafb: framebuffer at 0xe5000000, mapped to 0xffffc90005800000, using 1216k, total 1216k
Oct 26 14:30:41 desktop kernel: [   14.473049] Console: switching to colour frame buffer device 80x30
Oct 26 14:30:41 desktop kernel: [   14.473060] fb0: VESA VGA frame buffer device
Oct 26 14:30:41 desktop kernel: [   28.037147] EXT4-fs (sdh1): warning: maximal mount count reached, running e2fsck is recommended
Oct 26 14:30:41 desktop kernel: [   28.049392] EXT4-fs (sdh1): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:30:41 desktop kernel: [   28.656183] EXT4-fs (sdg1): mounted filesystem with ordered data mode. Opts: (null)
Oct 26 14:30:41 desktop kernel: [   28.704537] type=1400 audit(1319632241.441:5): apparmor="STATUS" operation="profile_load" name="/usr/lib/lightdm/lightdm-guest-session-wrapper" pid=1001 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.704621] type=1400 audit(1319632241.441:6): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient" pid=1002 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.704867] type=1400 audit(1319632241.441:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1002 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.705023] type=1400 audit(1319632241.441:8): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1002 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.705803] type=1400 audit(1319632241.441:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/mission-control-5" pid=1005 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.706086] type=1400 audit(1319632241.441:10): apparmor="STATUS" operation="profile_load" name="/usr/lib/telepathy/telepathy-*" pid=1005 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.706736] type=1400 audit(1319632241.441:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1007 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.707119] type=1400 audit(1319632241.441:12): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1006 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.707466] type=1400 audit(1319632241.441:13): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1006 comm="apparmor_parser"
Oct 26 14:30:41 desktop kernel: [   28.708939] type=1400 audit(1319632241.445:14): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=1003 comm="apparmor_parser"
Oct 26 14:30:41 desktop avahi-daemon[1047]: Found user 'avahi' (UID 106) and group 'avahi' (GID 113).
Oct 26 14:30:41 desktop avahi-daemon[1047]: Successfully dropped root privileges.
Oct 26 14:30:41 desktop avahi-daemon[1047]: avahi-daemon 0.6.30 starting up.
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  ModemManager (version 0.5) starting...
Oct 26 14:30:41 desktop avahi-daemon[1047]: Successfully called chroot().
Oct 26 14:30:41 desktop avahi-daemon[1047]: Successfully dropped remaining capabilities.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> NetworkManager (version 0.9.1.90) is starting...
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> Read config file /etc/NetworkManager/NetworkManager.conf
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin SimTech
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Gobi
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Huawei
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Wavecom
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin X22X
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Longcheer
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Nokia
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Option
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin AnyData
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Ericsson MBM
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin MotoC
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Samsung
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Linktop
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin ZTE
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Generic
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Novatel
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Sierra
Oct 26 14:30:41 desktop modem-manager[1044]: <info>  Loaded plugin Option High-Speed
Oct 26 14:30:41 desktop avahi-daemon[1047]: Loading service file /services/udisks.service.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> VPN: loaded org.freedesktop.NetworkManager.pptp
Oct 26 14:30:41 desktop kernel: [   28.785800] ppdev: user-space parallel port driver
Oct 26 14:30:41 desktop dbus[1035]: [system] Activating service name='org.freedesktop.PolicyKit1' (using servicehelper)
Oct 26 14:30:41 desktop polkitd[1071]: started daemon version 0.102 using authority implementation `local' version `0.102'
Oct 26 14:30:41 desktop kernel: [   28.846388] init: failsafe main process (956) killed by TERM signal
Oct 26 14:30:41 desktop kernel: [   28.846762] init: apport pre-start process (1077) terminated with status 1
Oct 26 14:30:41 desktop cron[1084]: (CRON) INFO (pidfile fd = 3)
Oct 26 14:30:41 desktop acpid: starting up with proc fs
Oct 26 14:30:41 desktop anacron[1099]: Anacron 2.3 started on 2011-10-26
Oct 26 14:30:41 desktop acpid: 32 rules loaded
Oct 26 14:30:41 desktop acpid: waiting for events: event logging is off
Oct 26 14:30:41 desktop cron[1105]: (CRON) STARTUP (fork ok)
Oct 26 14:30:41 desktop kernel: [   28.854672] init: apport post-stop process (1103) terminated with status 1
Oct 26 14:30:41 desktop cron[1105]: (CRON) INFO (Running @reboot jobs)
Oct 26 14:30:41 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.PolicyKit1'
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: init!
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: update_system_hostname
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPluginIfupdown: management mode: unmanaged
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0, iface: eth0)
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: device added (path: /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0, iface: eth0): no ifupdown configuration found.
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: devices added (path: /sys/devices/virtual/net/lo, iface: lo)
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: device added (path: /sys/devices/virtual/net/lo, iface: lo): no ifupdown configuration found.
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: end _init.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> Loaded plugin ifupdown: (C) 2008 Canonical Ltd.  To report bugs please use the NetworkManager mailing list.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> Loaded plugin keyfile: (c) 2007 - 2010 Red Hat, Inc.  To report bugs please use the NetworkManager mailing list.
Oct 26 14:30:41 desktop NetworkManager[1049]:    Ifupdown: get unmanaged devices count: 0
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: (10568496) ... get_connections.
Oct 26 14:30:41 desktop NetworkManager[1049]:    SCPlugin-Ifupdown: (10568496) ... get_connections (managed=false): return empty list.
Oct 26 14:30:41 desktop NetworkManager[1049]:    Ifupdown: get unmanaged devices count: 0
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> modem-manager is now available
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> monitoring kernel firmware directory '/lib/firmware'.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> WiFi enabled by radio killswitch; enabled by state file
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> WWAN enabled by radio killswitch; enabled by state file
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> WiMAX enabled by radio killswitch; enabled by state file
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> Networking is enabled by state file
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): carrier is OFF
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): new Ethernet device (driver: 'r8169' ifindex: 2)
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): exported as /org/freedesktop/NetworkManager/Devices/0
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): now managed
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): device state change: unmanaged -> unavailable (reason 'managed') [10 20 2]
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): bringing up device.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): preparing device.
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> (eth0): deactivating device (reason 'managed') [2]
Oct 26 14:30:41 desktop kernel: [   28.887325] r8169 0000:04:00.0: eth0: link down
Oct 26 14:30:41 desktop kernel: [   28.887338] r8169 0000:04:00.0: eth0: link down
Oct 26 14:30:41 desktop kernel: [   28.887790] ADDRCONF(NETDEV_UP): eth0: link is not ready
Oct 26 14:30:41 desktop NetworkManager[1049]: <info> Added default wired connection 'Wired connection 1' for /sys/devices/pci0000:00/0000:00:1c.4/0000:04:00.0/net/eth0
Oct 26 14:30:41 desktop NetworkManager[1049]: <warn> bluez error getting default adapter: The name org.bluez was not provided by any .service files
Oct 26 14:30:41 desktop acpid: client connected from 1119[0:0]
Oct 26 14:30:41 desktop acpid: 1 client rule loaded
Oct 26 14:30:41 desktop avahi-daemon[1047]: Network interface enumeration completed.
Oct 26 14:30:41 desktop avahi-daemon[1047]: Registering HINFO record with values 'X86_64'/'LINUX'.
Oct 26 14:30:41 desktop avahi-daemon[1047]: Server startup complete. Host name is desktop.local. Local service cookie is 92885712.
Oct 26 14:30:41 desktop avahi-daemon[1047]: Service "desktop" (/services/udisks.service) successfully established.
Oct 26 14:30:41 desktop anacron[1099]: Normal exit (0 jobs run)
Oct 26 14:30:41 desktop bluetoothd[1142]: Bluetooth daemon 4.96
Oct 26 14:30:41 desktop bluetoothd[1142]: Starting SDP server
Oct 26 14:30:41 desktop kernel: [   29.194207] Bluetooth: Core ver 2.16
Oct 26 14:30:41 desktop kernel: [   29.194231] NET: Registered protocol family 31
Oct 26 14:30:41 desktop kernel: [   29.194233] Bluetooth: HCI device and connection manager initialized
Oct 26 14:30:41 desktop kernel: [   29.194235] Bluetooth: HCI socket layer initialized
Oct 26 14:30:41 desktop kernel: [   29.194236] Bluetooth: L2CAP socket layer initialized
Oct 26 14:30:41 desktop kernel: [   29.194428] Bluetooth: SCO socket layer initialized
Oct 26 14:30:41 desktop NetworkManager[1049]: <warn> bluez error getting default adapter: No such adapter
Oct 26 14:30:41 desktop kernel: [   29.197118] Bluetooth: RFCOMM TTY layer initialized
Oct 26 14:30:41 desktop kernel: [   29.197123] Bluetooth: RFCOMM socket layer initialized
Oct 26 14:30:41 desktop kernel: [   29.197125] Bluetooth: RFCOMM ver 1.11
Oct 26 14:30:41 desktop kernel: [   29.199013] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
Oct 26 14:30:41 desktop kernel: [   29.199015] Bluetooth: BNEP filters: protocol multicast
Oct 26 14:30:42 desktop anacron[1227]: Anacron 2.3 started on 2011-10-26
Oct 26 14:30:42 desktop anacron[1227]: Normal exit (0 jobs run)
Oct 26 14:30:42 desktop udev-configure-printer: add /module/lp
Oct 26 14:30:42 desktop udev-configure-printer: Failed to get parent
Oct 26 14:30:42 desktop kernel: [   29.957145] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
Oct 26 14:30:42 desktop kernel: [   30.022058] EXT4-fs (sda2): re-mounted. Opts: commit=0
Oct 26 14:30:42 desktop kernel: [   30.024363] EXT4-fs (sdh1): re-mounted. Opts: commit=0
Oct 26 14:30:42 desktop kernel: [   30.082984] EXT4-fs (sdg1): re-mounted. Opts: commit=0
Oct 26 14:30:43 desktop acpid: client connected from 1119[0:0]
Oct 26 14:30:43 desktop acpid: 1 client rule loaded
Oct 26 14:30:43 desktop dbus[1035]: [system] Activating service name='org.freedesktop.Accounts' (using servicehelper)
Oct 26 14:30:43 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.Accounts'
Oct 26 14:30:43 desktop accounts-daemon[1287]: started daemon version 0.6.14
Oct 26 14:30:43 desktop dbus[1035]: [system] Activating service name='org.freedesktop.ConsoleKit' (using servicehelper)
Oct 26 14:30:43 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.ConsoleKit'
Oct 26 14:30:43 desktop dbus[1035]: [system] Activating service name='org.freedesktop.UPower' (using servicehelper)
Oct 26 14:30:43 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.UPower'
Oct 26 14:30:43 desktop anacron[1474]: Anacron 2.3 started on 2011-10-26
Oct 26 14:30:43 desktop anacron[1474]: Normal exit (0 jobs run)
Oct 26 14:30:43 desktop dbus[1035]: [system] Activating service name='org.freedesktop.ColorManager' (using servicehelper)
Oct 26 14:30:43 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.ColorManager'
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> (eth0): carrier now ON (device state 20)
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> (eth0): device state change: unavailable -> disconnected (reason 'carrier-changed') [20 30 40]
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Auto-activating connection 'Wired connection 1'.
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) starting connection 'Wired connection 1'
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> (eth0): device state change: disconnected -> prepare (reason 'none') [30 40 0]
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> (eth0): device state change: prepare -> config (reason 'none') [40 50 0]
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) successful.
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled.
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) started...
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> (eth0): device state change: config -> ip-config (reason 'none') [50 70 0]
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Beginning DHCPv4 transaction (timeout in 45 seconds)
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> dhclient started with pid 1490
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) complete.
Oct 26 14:30:43 desktop kernel: [   31.225065] r8169 0000:04:00.0: eth0: link up
Oct 26 14:30:43 desktop kernel: [   31.225534] ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
Oct 26 14:30:43 desktop dhclient: Internet Systems Consortium DHCP Client 4.1.1-P1
Oct 26 14:30:43 desktop dhclient: Copyright 2004-2010 Internet Systems Consortium.
Oct 26 14:30:43 desktop dhclient: All rights reserved.
Oct 26 14:30:43 desktop dhclient: For info, please visit https://www.isc.org/software/dhcp/
Oct 26 14:30:43 desktop dhclient: 
Oct 26 14:30:43 desktop NetworkManager[1049]: <info> (eth0): DHCPv4 state changed nbi -> preinit
Oct 26 14:30:44 desktop dhclient: Listening on LPF/eth0/00:1f:d0:25:52:1b
Oct 26 14:30:44 desktop dhclient: Sending on   LPF/eth0/00:1f:d0:25:52:1b
Oct 26 14:30:44 desktop dhclient: Sending on   Socket/fallback
Oct 26 14:30:44 desktop dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 3
Oct 26 14:30:44 desktop dhclient: DHCPOFFER of 192.168.1.34 from 192.168.1.1
Oct 26 14:30:44 desktop dhclient: DHCPREQUEST of 192.168.1.34 on eth0 to 255.255.255.255 port 67
Oct 26 14:30:44 desktop dhclient: DHCPACK of 192.168.1.34 from 192.168.1.1
Oct 26 14:30:44 desktop dhclient: bound to 192.168.1.34 -- renewal in 118381 seconds.
Oct 26 14:30:44 desktop NetworkManager[1049]: <info> (eth0): DHCPv4 state changed preinit -> bound
Oct 26 14:30:44 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) scheduled...
Oct 26 14:30:44 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) started...
Oct 26 14:30:44 desktop NetworkManager[1049]: <info>   address 192.168.1.34
Oct 26 14:30:44 desktop NetworkManager[1049]: <info>   prefix 24 (255.255.255.0)
Oct 26 14:30:44 desktop NetworkManager[1049]: <info>   gateway 192.168.1.1
Oct 26 14:30:44 desktop NetworkManager[1049]: <info>   hostname 'dhcppc2'
Oct 26 14:30:44 desktop NetworkManager[1049]: <info>   nameserver '212.101.0.10'
Oct 26 14:30:44 desktop NetworkManager[1049]: <info>   nameserver '212.101.4.253'
Oct 26 14:30:44 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) started...
Oct 26 14:30:44 desktop avahi-daemon[1047]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.1.34.
Oct 26 14:30:44 desktop avahi-daemon[1047]: New relevant interface eth0.IPv4 for mDNS.
Oct 26 14:30:44 desktop avahi-daemon[1047]: Registering new address record for 192.168.1.34 on eth0.IPv4.
Oct 26 14:30:44 desktop dbus[1035]: [system] Activating service name='org.freedesktop.RealtimeKit1' (using servicehelper)
Oct 26 14:30:44 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.RealtimeKit1'
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Successfully called chroot.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Successfully dropped privileges.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Successfully limited resources.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Running.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Canary thread running.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Watchdog thread running.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Successfully made thread 1527 of process 1527 (n/a) owned by '104' high priority at nice level -11.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Supervising 1 threads of 1 processes of 1 users.
Oct 26 14:30:44 desktop kernel: [   31.663439] EXT4-fs (sda5): re-mounted. Opts: errors=remount-ro,commit=0
Oct 26 14:30:44 desktop kernel: [   31.672501] EXT4-fs (sda2): re-mounted. Opts: commit=0
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Successfully made thread 1534 of process 1527 (n/a) owned by '104' RT at priority 5.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Supervising 2 threads of 1 processes of 1 users.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Successfully made thread 1535 of process 1527 (n/a) owned by '104' RT at priority 5.
Oct 26 12:30:44 desktop rtkit-daemon[1529]: Supervising 3 threads of 1 processes of 1 users.
Oct 26 14:30:44 desktop kernel: [   31.719575] EXT4-fs (sdh1): re-mounted. Opts: commit=0
Oct 26 14:30:44 desktop kernel: [   31.721703] EXT4-fs (sdg1): re-mounted. Opts: commit=0
Oct 26 14:30:45 desktop NetworkManager[1049]: <info> (eth0): device state change: ip-config -> activated (reason 'none') [70 100 0]
Oct 26 14:30:45 desktop NetworkManager[1049]: <info> Policy set 'Wired connection 1' (eth0) as default for IPv4 routing and DNS.
Oct 26 14:30:45 desktop NetworkManager[1049]: <info> Activation (eth0) successful, device activated.
Oct 26 14:30:45 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 5 of 5 (IP Configure Commit) complete.
Oct 26 14:30:45 desktop NetworkManager[1049]: <info> Activation (eth0) Stage 4 of 5 (IP4 Configure Get) complete.
Oct 26 14:30:45 desktop dbus[1035]: [system] Activating service name='org.freedesktop.nm_dispatcher' (using servicehelper)
Oct 26 14:30:45 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
Oct 26 14:30:45 desktop avahi-daemon[1047]: Joining mDNS multicast group on interface eth0.IPv6 with address fe80::21f:d0ff:fe25:521b.
Oct 26 14:30:45 desktop avahi-daemon[1047]: New relevant interface eth0.IPv6 for mDNS.
Oct 26 14:30:45 desktop avahi-daemon[1047]: Registering new address record for fe80::21f:d0ff:fe25:521b on eth0.*.
Oct 26 14:30:49 desktop gnome-session[1623]: EggSMClient-WARNING: Desktop file '/home/fabian/.config/autostart/skype.desktop' has malformed Icon key 'skype.png'(should not include extension)
Oct 26 12:30:50 desktop rtkit-daemon[1529]: Successfully made thread 1706 of process 1706 (n/a) owned by '1000' high priority at nice level -11.
Oct 26 12:30:50 desktop rtkit-daemon[1529]: Supervising 4 threads of 2 processes of 2 users.
Oct 26 12:30:50 desktop rtkit-daemon[1529]: Successfully made thread 1707 of process 1706 (n/a) owned by '1000' RT at priority 5.
Oct 26 12:30:50 desktop rtkit-daemon[1529]: Supervising 5 threads of 2 processes of 2 users.
Oct 26 12:30:50 desktop rtkit-daemon[1529]: Successfully made thread 1708 of process 1706 (n/a) owned by '1000' RT at priority 5.
Oct 26 12:30:50 desktop rtkit-daemon[1529]: Supervising 6 threads of 2 processes of 2 users.
Oct 26 14:30:52 desktop dbus[1035]: [system] Activating service name='org.freedesktop.UDisks' (using servicehelper)
Oct 26 14:30:52 desktop dbus[1035]: [system] Successfully activated service 'org.freedesktop.UDisks'
Oct 26 14:30:52 desktop gnome-session[1623]: WARNING: Failed to start app: Unable to start application: Kindprozess »emerald« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:30:52 desktop gnome-session[1623]: WARNING: Failed to start app: Unable to start application: Kindprozess »mail-notification« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:30:52 desktop gnome-session[1623]: WARNING: Failed to start app: Unable to start application: Kindprozess »skype« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:30:52 desktop gnome-session[1623]: WARNING: Failed to start app: Unable to start application: Kindprozess »dropbox« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:30:52 desktop gnome-session[1623]: WARNING: Failed to start app: Unable to start application: Kindprozess »synergys« konnte nicht ausgeführt werden (Datei oder Verzeichnis nicht gefunden)
Oct 26 14:30:53 desktop ntpdate[1590]: step time server 91.189.94.4 offset -0.566442 sec
Oct 26 14:30:54 desktop kernel: [   42.192030] eth0: no IPv6 routers present
Oct 26 14:31:59 desktop dbus[1035]: [system] Activating service name='org.debian.apt' (using servicehelper)
Oct 26 14:31:59 desktop AptDaemon: INFO: Initializing daemon
Oct 26 14:31:59 desktop dbus[1035]: [system] Successfully activated service 'org.debian.apt'
Oct 26 14:31:59 desktop AptDaemon: INFO: UpgradeSystem() was called with safe mode: 1
Oct 26 14:31:59 desktop AptDaemon.Trans: INFO: Simulate was called
Oct 26 14:31:59 desktop AptDaemon.Worker: INFO: Simulating trans: /org/debian/apt/transaction/bd6aa7db9a204fe09002f8c2df5d372d
Oct 26 14:32:03 desktop AptDaemon.Worker: INFO: Upgrade system with safe mode: 1