ubuntuusers.de

nvidia bug report

Datum:
5. Januar 2011 19:29
Code:
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
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
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
____________________________________________

Start of NVIDIA bug report log file.  Please include this file
when reporting a graphics driver bug via the nV News NVIDIA
Linux forum (see www.nvnews.net) or by sending email to
'linux-bugs@nvidia.com'.

nvidia-bug-report.sh Version: 7129006

Date: Mi 5. Jan 19:27:42 CET 2011
uname: Linux opelig-ul 2.6.35-22-generic #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 i686 GNU/Linux

____________________________________________

*** /etc/issue
*** ls: -rw-r--r-- 1 root root 20 2010-10-07 11:15:22.000000000 +0200 /etc/issue
Ubuntu 10.10 \n \l


____________________________________________

*** /etc/debian_version
*** ls: -rw-r--r-- 1 root root 12 2010-04-23 11:45:44.000000000 +0200 /etc/debian_version
squeeze/sid

____________________________________________

*** /var/log/nvidia-installer.log does not exist

____________________________________________

*** /var/log/Xorg.0.log
*** ls: -rw-r--r-- 1 root root 14999 2011-01-05 18:45:17.598906000 +0100 /var/log/Xorg.0.log
[  1959.241] 
X.Org X Server 1.9.0
Release Date: 2010-08-20
[  1959.241] X Protocol Version 11, Revision 0
[  1959.241] Build Operating System: Linux 2.6.24-27-server i686 Ubuntu
[  1959.241] Current Operating System: Linux opelig-ul 2.6.35-22-generic #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 i686
[  1959.241] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic root=UUID=ce7843c1-9d18-4db8-a22c-41be970accc0 ro quiet splash
[  1959.242] Build Date: 16 September 2010  05:39:22PM
[  1959.242] xorg-server 2:1.9.0-0ubuntu7 (For technical support please see http://www.ubuntu.com/support) 
[  1959.242] Current version of pixman: 0.18.4
[  1959.242] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[  1959.242] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[  1959.242] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan  5 18:45:16 2011
[  1959.242] (==) Using config file: "/etc/X11/xorg.conf"
[  1959.242] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[  1959.243] (==) No Layout section.  Using the first Screen section.
[  1959.243] (**) |-->Screen "Default Screen" (0)
[  1959.243] (**) |   |-->Monitor "<default monitor>"
[  1959.244] (==) No device specified for screen "Default Screen".
	Using the first device section listed.
[  1959.244] (**) |   |-->Device "Default Device"
[  1959.244] (==) No monitor specified for screen "Default Screen".
	Using a default monitor configuration.
[  1959.244] (==) Automatically adding devices
[  1959.244] (==) Automatically enabling devices
[  1959.244] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[  1959.244] 	Entry deleted from font path.
[  1959.244] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	built-ins
[  1959.244] (==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[  1959.244] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[  1959.244] (II) Loader magic: 0x81f8e00
[  1959.244] (II) Module ABI versions:
[  1959.244] 	X.Org ANSI C Emulation: 0.4
[  1959.244] 	X.Org Video Driver: 8.0
[  1959.244] 	X.Org XInput driver : 11.0
[  1959.244] 	X.Org Server Extension : 4.0
[  1959.246] (--) PCI:*(0:1:0:0) 10de:05e2:10de:0585 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000bc00/128, BIOS @ 0x????????/524288
[  1959.246] (II) Open ACPI successful (/var/run/acpid.socket)
[  1959.246] (II) "extmod" will be loaded by default.
[  1959.246] (II) "dbe" will be loaded by default.
[  1959.246] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[  1959.246] (II) "record" will be loaded by default.
[  1959.246] (II) "dri" will be loaded by default.
[  1959.246] (II) "dri2" will be loaded by default.
[  1959.246] (II) LoadModule: "glx"
[  1959.247] (II) Loading /usr/lib/xorg/extra-modules/libglx.so
[  1959.265] (II) Module glx: vendor="NVIDIA Corporation"
[  1959.266] 	compiled for 4.0.2, module version = 1.0.0
[  1959.266] 	Module class: X.Org Server Extension
[  1959.266] (II) NVIDIA GLX Module  260.19.06  Mon Sep 13 07:01:31 PDT 2010
[  1959.266] (II) Loading extension GLX
[  1959.266] (II) LoadModule: "extmod"
[  1959.266] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[  1959.266] (II) Module extmod: vendor="X.Org Foundation"
[  1959.266] 	compiled for 1.9.0, module version = 1.0.0
[  1959.266] 	Module class: X.Org Server Extension
[  1959.266] 	ABI class: X.Org Server Extension, version 4.0
[  1959.266] (II) Loading extension MIT-SCREEN-SAVER
[  1959.266] (II) Loading extension XFree86-VidModeExtension
[  1959.266] (II) Loading extension XFree86-DGA
[  1959.266] (II) Loading extension DPMS
[  1959.266] (II) Loading extension XVideo
[  1959.266] (II) Loading extension XVideo-MotionCompensation
[  1959.266] (II) Loading extension X-Resource
[  1959.266] (II) LoadModule: "dbe"
[  1959.266] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[  1959.266] (II) Module dbe: vendor="X.Org Foundation"
[  1959.266] 	compiled for 1.9.0, module version = 1.0.0
[  1959.266] 	Module class: X.Org Server Extension
[  1959.266] 	ABI class: X.Org Server Extension, version 4.0
[  1959.266] (II) Loading extension DOUBLE-BUFFER
[  1959.266] (II) LoadModule: "record"
[  1959.266] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[  1959.266] (II) Module record: vendor="X.Org Foundation"
[  1959.266] 	compiled for 1.9.0, module version = 1.13.0
[  1959.266] 	Module class: X.Org Server Extension
[  1959.266] 	ABI class: X.Org Server Extension, version 4.0
[  1959.266] (II) Loading extension RECORD
[  1959.266] (II) LoadModule: "dri"
[  1959.266] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[  1959.266] (II) Module dri: vendor="X.Org Foundation"
[  1959.266] 	compiled for 1.9.0, module version = 1.0.0
[  1959.266] 	ABI class: X.Org Server Extension, version 4.0
[  1959.266] (II) Loading extension XFree86-DRI
[  1959.266] (II) LoadModule: "dri2"
[  1959.267] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[  1959.267] (II) Module dri2: vendor="X.Org Foundation"
[  1959.267] 	compiled for 1.9.0, module version = 1.2.0
[  1959.267] 	ABI class: X.Org Server Extension, version 4.0
[  1959.267] (II) Loading extension DRI2
[  1959.267] (II) LoadModule: "nvidia"
[  1959.267] (II) Loading /usr/lib/xorg/extra-modules/nvidia_drv.so
[  1959.267] (II) Module nvidia: vendor="NVIDIA Corporation"
[  1959.267] 	compiled for 4.0.2, module version = 1.0.0
[  1959.267] 	Module class: X.Org Video Driver
[  1959.267] (II) NVIDIA dlloader X Driver  260.19.06  Mon Sep 13 06:37:13 PDT 2010
[  1959.267] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[  1959.267] (--) using VT number 8

[  1959.279] (II) Loading sub module "fb"
[  1959.279] (II) LoadModule: "fb"
[  1959.280] (II) Loading /usr/lib/xorg/modules/libfb.so
[  1959.280] (II) Module fb: vendor="X.Org Foundation"
[  1959.280] 	compiled for 1.9.0, module version = 1.0.0
[  1959.280] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1959.280] (II) Loading sub module "wfb"
[  1959.280] (II) LoadModule: "wfb"
[  1959.281] (II) Loading /usr/lib/xorg/modules/libwfb.so
[  1959.281] (II) Module wfb: vendor="X.Org Foundation"
[  1959.281] 	compiled for 1.9.0, module version = 1.0.0
[  1959.281] 	ABI class: X.Org ANSI C Emulation, version 0.4
[  1959.281] (II) Loading sub module "ramdac"
[  1959.281] (II) LoadModule: "ramdac"
[  1959.281] (II) Module "ramdac" already built-in
[  1959.282] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen" for depth/fbbpp 24/32
[  1959.282] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[  1959.282] (==) NVIDIA(0): RGB weight 888
[  1959.282] (==) NVIDIA(0): Default visual is TrueColor
[  1959.282] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[  1959.282] (**) NVIDIA(0): Option "NoLogo" "True"
[  1959.282] (**) NVIDIA(0): Enabling RENDER acceleration
[  1959.282] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
[  1959.282] (II) NVIDIA(0):     enabled.
[  1960.361] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 260 (GT200) at PCI:1:0:0 (GPU-0)
[  1960.361] (--) NVIDIA(0): Memory: 917504 kBytes
[  1960.361] (--) NVIDIA(0): VideoBIOS: 62.00.1a.00.06
[  1960.361] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[  1960.361] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[  1960.361] (--) NVIDIA(0): Connected display device(s) on GeForce GTX 260 at PCI:1:0:0
[  1960.361] (--) NVIDIA(0):     D@^ Zc!^ ? (CRT-1)
[  1960.361] (--) NVIDIA(0): D@^ Zc!^ ? (CRT-1): 400.0 MHz maximum pixel clock
[  1960.501] (II) NVIDIA(0): Assigned Display Device: CRT-1
[  1960.501] (==) NVIDIA(0): 
[  1960.501] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[  1960.501] (==) NVIDIA(0):     will be used as the requested mode.
[  1960.501] (==) NVIDIA(0): 
[  1960.501] (II) NVIDIA(0): Validated modes:
[  1960.501] (II) NVIDIA(0):     "nvidia-auto-select"
[  1960.501] (II) NVIDIA(0): Virtual screen size determined to be 800 x 600
[  1960.524] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[  1960.524] (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
[  1960.524] (--) Depth 24 pixmap format is 32 bpp
[  1960.524] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
[  1960.524] (II) NVIDIA(0): Initialized GPU GART.
[  1960.528] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
[  1960.550] (II) Loading extension NV-GLX
[  1960.576] (II) NVIDIA(0): Initialized OpenGL Acceleration
[  1960.576] (==) NVIDIA(0): Disabling shared memory pixmaps
[  1960.576] (II) NVIDIA(0): Initialized X Rendering Acceleration
[  1960.576] (==) NVIDIA(0): Backing store disabled
[  1960.576] (==) NVIDIA(0): Silken mouse enabled
[  1960.580] (==) NVIDIA(0): DPMS enabled
[  1960.580] (II) Loading extension NV-CONTROL
[  1960.580] (II) Loading extension XINERAMA
[  1960.580] (II) Loading sub module "dri2"
[  1960.580] (II) LoadModule: "dri2"
[  1960.580] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
[  1960.580] (II) NVIDIA(0): [DRI2] Setup complete
[  1960.580] (==) RandR enabled
[  1960.580] (II) Initializing built-in extension Generic Event Extension
[  1960.580] (II) Initializing built-in extension SHAPE
[  1960.580] (II) Initializing built-in extension MIT-SHM
[  1960.580] (II) Initializing built-in extension XInputExtension
[  1960.580] (II) Initializing built-in extension XTEST
[  1960.580] (II) Initializing built-in extension BIG-REQUESTS
[  1960.580] (II) Initializing built-in extension SYNC
[  1960.580] (II) Initializing built-in extension XKEYBOARD
[  1960.580] (II) Initializing built-in extension XC-MISC
[  1960.580] (II) Initializing built-in extension SECURITY
[  1960.580] (II) Initializing built-in extension XINERAMA
[  1960.580] (II) Initializing built-in extension XFIXES
[  1960.580] (II) Initializing built-in extension RENDER
[  1960.580] (II) Initializing built-in extension RANDR
[  1960.580] (II) Initializing built-in extension COMPOSITE
[  1960.580] (II) Initializing built-in extension DAMAGE
[  1960.580] (II) Initializing built-in extension GESTURE
[  1960.580] (II) Initializing extension GLX
[  1960.606] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[  1960.612] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[  1960.612] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1960.612] (II) LoadModule: "evdev"
[  1960.612] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[  1960.612] (II) Module evdev: vendor="X.Org Foundation"
[  1960.612] 	compiled for 1.9.0, module version = 2.3.2
[  1960.612] 	Module class: X.Org XInput Driver
[  1960.612] 	ABI class: X.Org XInput driver, version 11.0
[  1960.612] (**) Power Button: always reports core events
[  1960.612] (**) Power Button: Device: "/dev/input/event1"
[  1960.632] (II) Power Button: Found keys
[  1960.632] (II) Power Button: Configuring as keyboard
[  1960.632] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[  1960.632] (**) Option "xkb_rules" "evdev"
[  1960.632] (**) Option "xkb_model" "evdev"
[  1960.632] (**) Option "xkb_layout" "de"
[  1960.638] (II) XKB: reuse xkmfile /var/lib/xkb/server-1B5353734E7854C1F2B0553E65A16986C9AAC402.xkm
[  1960.642] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[  1960.642] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[  1960.642] (**) Power Button: always reports core events
[  1960.642] (**) Power Button: Device: "/dev/input/event0"
[  1960.656] (II) Power Button: Found keys
[  1960.656] (II) Power Button: Configuring as keyboard
[  1960.656] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[  1960.656] (**) Option "xkb_rules" "evdev"
[  1960.656] (**) Option "xkb_model" "evdev"
[  1960.656] (**) Option "xkb_layout" "de"
[  1960.664] (II) config/udev: Adding input device spca561 (/dev/input/event4)
[  1960.664] (**) spca561: Applying InputClass "evdev keyboard catchall"
[  1960.664] (**) spca561: always reports core events
[  1960.664] (**) spca561: Device: "/dev/input/event4"
[  1960.684] (II) spca561: Found keys
[  1960.684] (II) spca561: Configuring as keyboard
[  1960.684] (II) XINPUT: Adding extended input device "spca561" (type: KEYBOARD)
[  1960.684] (**) Option "xkb_rules" "evdev"
[  1960.684] (**) Option "xkb_model" "evdev"
[  1960.684] (**) Option "xkb_layout" "de"
[  1960.688] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event3)
[  1960.688] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
[  1960.688] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
[  1960.688] (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event3"
[  1960.704] (II) Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
[  1960.704] (II) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
[  1960.704] (II) Logitech USB-PS/2 Optical Mouse: Found relative axes
[  1960.704] (II) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
[  1960.704] (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
[  1960.704] (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
[  1960.704] (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[  1960.704] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE)
[  1960.704] (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
[  1960.705] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
[  1960.705] (II) No input driver/identifier specified (ignoring)
[  1960.711] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[  1960.711] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[  1960.711] (**) AT Translated Set 2 keyboard: always reports core events
[  1960.711] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event2"
[  1960.724] (II) AT Translated Set 2 keyboard: Found keys
[  1960.724] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[  1960.724] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[  1960.724] (**) Option "xkb_rules" "evdev"
[  1960.724] (**) Option "xkb_model" "evdev"
[  1960.724] (**) Option "xkb_layout" "de"

____________________________________________

*** /etc/X11/xorg.conf
*** ls: -rw-r--r-- 1 root root 216 2011-01-05 18:11:33.338241000 +0100 /etc/X11/xorg.conf

Section "Screen"
	Identifier	"Default Screen"
	DefaultDepth	24
EndSection

Section "Module"
	Load	"glx"
EndSection

Section "Device"
	Identifier	"Default Device"
	Driver	"nvidia"
	Option	"NoLogo"	"True"
EndSection


____________________________________________

*** /var/log/Xorg.0.log.old
*** ls: -rw-r--r-- 1 root root 15459 2011-01-05 18:45:15.974906001 +0100 /var/log/Xorg.0.log.old
[    15.911] 
X.Org X Server 1.9.0
Release Date: 2010-08-20
[    15.911] X Protocol Version 11, Revision 0
[    15.911] Build Operating System: Linux 2.6.24-27-server i686 Ubuntu
[    15.911] Current Operating System: Linux opelig-ul 2.6.35-22-generic #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 i686
[    15.911] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic root=UUID=ce7843c1-9d18-4db8-a22c-41be970accc0 ro quiet splash
[    15.911] Build Date: 16 September 2010  05:39:22PM
[    15.911] xorg-server 2:1.9.0-0ubuntu7 (For technical support please see http://www.ubuntu.com/support) 
[    15.918] Current version of pixman: 0.18.4
[    15.918] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    15.918] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    15.918] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Jan  5 18:12:53 2011
[    15.974] (==) Using config file: "/etc/X11/xorg.conf"
[    15.974] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    16.004] (==) No Layout section.  Using the first Screen section.
[    16.004] (**) |-->Screen "Default Screen" (0)
[    16.005] (**) |   |-->Monitor "<default monitor>"
[    16.005] (==) No device specified for screen "Default Screen".
	Using the first device section listed.
[    16.005] (**) |   |-->Device "Default Device"
[    16.005] (==) No monitor specified for screen "Default Screen".
	Using a default monitor configuration.
[    16.005] (==) Automatically adding devices
[    16.005] (==) Automatically enabling devices
[    16.044] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    16.044] 	Entry deleted from font path.
[    16.062] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/100dpi/:unscaled,
	/usr/share/fonts/X11/75dpi/:unscaled,
	/usr/share/fonts/X11/Type1,
	/usr/share/fonts/X11/100dpi,
	/usr/share/fonts/X11/75dpi,
	/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,
	built-ins
[    16.062] (==) ModulePath set to "/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[    16.062] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    16.062] (II) Loader magic: 0x81f8e00
[    16.062] (II) Module ABI versions:
[    16.062] 	X.Org ANSI C Emulation: 0.4
[    16.062] 	X.Org Video Driver: 8.0
[    16.062] 	X.Org XInput driver : 11.0
[    16.062] 	X.Org Server Extension : 4.0
[    16.063] (--) PCI:*(0:1:0:0) 10de:05e2:10de:0585 rev 161, Mem @ 0xfa000000/16777216, 0xd0000000/268435456, 0xf8000000/33554432, I/O @ 0x0000bc00/128, BIOS @ 0x????????/524288
[    16.063] (II) Open ACPI successful (/var/run/acpid.socket)
[    16.063] (II) "extmod" will be loaded by default.
[    16.063] (II) "dbe" will be loaded by default.
[    16.063] (II) "glx" will be loaded. This was enabled by default and also specified in the config file.
[    16.063] (II) "record" will be loaded by default.
[    16.063] (II) "dri" will be loaded by default.
[    16.063] (II) "dri2" will be loaded by default.
[    16.063] (II) LoadModule: "glx"
[    16.432] (II) Loading /usr/lib/xorg/extra-modules/libglx.so
[    18.899] (II) Module glx: vendor="NVIDIA Corporation"
[    18.899] 	compiled for 4.0.2, module version = 1.0.0
[    18.899] 	Module class: X.Org Server Extension
[    18.899] (II) NVIDIA GLX Module  260.19.06  Mon Sep 13 07:01:31 PDT 2010
[    18.899] (II) Loading extension GLX
[    18.899] (II) LoadModule: "extmod"
[    18.914] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    18.918] (II) Module extmod: vendor="X.Org Foundation"
[    18.918] 	compiled for 1.9.0, module version = 1.0.0
[    18.918] 	Module class: X.Org Server Extension
[    18.918] 	ABI class: X.Org Server Extension, version 4.0
[    18.918] (II) Loading extension MIT-SCREEN-SAVER
[    18.918] (II) Loading extension XFree86-VidModeExtension
[    18.918] (II) Loading extension XFree86-DGA
[    18.918] (II) Loading extension DPMS
[    18.918] (II) Loading extension XVideo
[    18.918] (II) Loading extension XVideo-MotionCompensation
[    18.918] (II) Loading extension X-Resource
[    18.918] (II) LoadModule: "dbe"
[    18.918] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    18.923] (II) Module dbe: vendor="X.Org Foundation"
[    18.923] 	compiled for 1.9.0, module version = 1.0.0
[    18.923] 	Module class: X.Org Server Extension
[    18.923] 	ABI class: X.Org Server Extension, version 4.0
[    18.923] (II) Loading extension DOUBLE-BUFFER
[    18.923] (II) LoadModule: "record"
[    18.923] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    18.932] (II) Module record: vendor="X.Org Foundation"
[    18.932] 	compiled for 1.9.0, module version = 1.13.0
[    18.932] 	Module class: X.Org Server Extension
[    18.932] 	ABI class: X.Org Server Extension, version 4.0
[    18.932] (II) Loading extension RECORD
[    18.932] (II) LoadModule: "dri"
[    18.932] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    18.933] (II) Module dri: vendor="X.Org Foundation"
[    18.933] 	compiled for 1.9.0, module version = 1.0.0
[    18.933] 	ABI class: X.Org Server Extension, version 4.0
[    18.933] (II) Loading extension XFree86-DRI
[    18.933] (II) LoadModule: "dri2"
[    18.933] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    18.933] (II) Module dri2: vendor="X.Org Foundation"
[    18.933] 	compiled for 1.9.0, module version = 1.2.0
[    18.933] 	ABI class: X.Org Server Extension, version 4.0
[    18.933] (II) Loading extension DRI2
[    18.933] (II) LoadModule: "nvidia"
[    18.934] (II) Loading /usr/lib/xorg/extra-modules/nvidia_drv.so
[    18.971] (II) Module nvidia: vendor="NVIDIA Corporation"
[    18.971] 	compiled for 4.0.2, module version = 1.0.0
[    18.971] 	Module class: X.Org Video Driver
[    19.029] (II) NVIDIA dlloader X Driver  260.19.06  Mon Sep 13 06:37:13 PDT 2010
[    19.036] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    19.036] (++) using VT number 7

[    19.039] (II) Loading sub module "fb"
[    19.039] (II) LoadModule: "fb"
[    19.039] (II) Loading /usr/lib/xorg/modules/libfb.so
[    19.049] (II) Module fb: vendor="X.Org Foundation"
[    19.049] 	compiled for 1.9.0, module version = 1.0.0
[    19.049] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    19.049] (II) Loading sub module "wfb"
[    19.049] (II) LoadModule: "wfb"
[    19.050] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    19.057] (II) Module wfb: vendor="X.Org Foundation"
[    19.057] 	compiled for 1.9.0, module version = 1.0.0
[    19.057] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    19.057] (II) Loading sub module "ramdac"
[    19.057] (II) LoadModule: "ramdac"
[    19.057] (II) Module "ramdac" already built-in
[    19.096] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen" for depth/fbbpp 24/32
[    19.096] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[    19.096] (==) NVIDIA(0): RGB weight 888
[    19.096] (==) NVIDIA(0): Default visual is TrueColor
[    19.096] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    19.096] (**) NVIDIA(0): Option "NoLogo" "True"
[    19.097] (**) NVIDIA(0): Enabling RENDER acceleration
[    19.097] (II) NVIDIA(0): Support for GLX with the Damage and Composite X extensions is
[    19.097] (II) NVIDIA(0):     enabled.
[    20.770] (II) NVIDIA(0): NVIDIA GPU GeForce GTX 260 (GT200) at PCI:1:0:0 (GPU-0)
[    20.771] (--) NVIDIA(0): Memory: 917504 kBytes
[    20.771] (--) NVIDIA(0): VideoBIOS: 62.00.1a.00.06
[    20.771] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    20.771] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[    20.771] (--) NVIDIA(0): Connected display device(s) on GeForce GTX 260 at PCI:1:0:0
[    20.771] (--) NVIDIA(0):     D@^ Zc!^ ? (CRT-1)
[    20.771] (--) NVIDIA(0): D@^ Zc!^ ? (CRT-1): 400.0 MHz maximum pixel clock
[    20.884] (II) NVIDIA(0): Assigned Display Device: CRT-1
[    20.884] (==) NVIDIA(0): 
[    20.884] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    20.884] (==) NVIDIA(0):     will be used as the requested mode.
[    20.884] (==) NVIDIA(0): 
[    20.884] (II) NVIDIA(0): Validated modes:
[    20.884] (II) NVIDIA(0):     "nvidia-auto-select"
[    20.884] (II) NVIDIA(0): Virtual screen size determined to be 800 x 600
[    20.907] (==) NVIDIA(0): DPI set to (75, 75); computed from built-in default
[    20.908] (==) NVIDIA(0): Enabling 32-bit ARGB GLX visuals.
[    20.908] (--) Depth 24 pixmap format is 32 bpp
[    20.908] (II) NVIDIA: Using 768.00 MB of virtual memory for indirect memory access.
[    20.908] (II) NVIDIA(0): Initialized GPU GART.
[    20.911] (II) NVIDIA(0): Setting mode "nvidia-auto-select"
[    20.933] (II) Loading extension NV-GLX
[    20.983] (II) NVIDIA(0): Initialized OpenGL Acceleration
[    20.998] (==) NVIDIA(0): Disabling shared memory pixmaps
[    20.998] (II) NVIDIA(0): Initialized X Rendering Acceleration
[    20.998] (==) NVIDIA(0): Backing store disabled
[    20.998] (==) NVIDIA(0): Silken mouse enabled
[    21.012] (==) NVIDIA(0): DPMS enabled
[    21.013] (II) Loading extension NV-CONTROL
[    21.013] (II) Loading extension XINERAMA
[    21.013] (II) Loading sub module "dri2"
[    21.013] (II) LoadModule: "dri2"
[    21.013] (II) Reloading /usr/lib/xorg/modules/extensions/libdri2.so
[    21.013] (II) NVIDIA(0): [DRI2] Setup complete
[    21.013] (==) RandR enabled
[    21.013] (II) Initializing built-in extension Generic Event Extension
[    21.013] (II) Initializing built-in extension SHAPE
[    21.013] (II) Initializing built-in extension MIT-SHM
[    21.013] (II) Initializing built-in extension XInputExtension
[    21.013] (II) Initializing built-in extension XTEST
[    21.013] (II) Initializing built-in extension BIG-REQUESTS
[    21.013] (II) Initializing built-in extension SYNC
[    21.013] (II) Initializing built-in extension XKEYBOARD
[    21.013] (II) Initializing built-in extension XC-MISC
[    21.013] (II) Initializing built-in extension SECURITY
[    21.013] (II) Initializing built-in extension XINERAMA
[    21.013] (II) Initializing built-in extension XFIXES
[    21.013] (II) Initializing built-in extension RENDER
[    21.013] (II) Initializing built-in extension RANDR
[    21.013] (II) Initializing built-in extension COMPOSITE
[    21.013] (II) Initializing built-in extension DAMAGE
[    21.013] (II) Initializing built-in extension GESTURE
[    21.013] (II) Initializing extension GLX
[    21.159] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    21.171] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    21.171] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    21.171] (II) LoadModule: "evdev"
[    21.171] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    21.202] (II) Module evdev: vendor="X.Org Foundation"
[    21.202] 	compiled for 1.9.0, module version = 2.3.2
[    21.202] 	Module class: X.Org XInput Driver
[    21.202] 	ABI class: X.Org XInput driver, version 11.0
[    21.202] (**) Power Button: always reports core events
[    21.202] (**) Power Button: Device: "/dev/input/event1"
[    21.216] (II) Power Button: Found keys
[    21.216] (II) Power Button: Configuring as keyboard
[    21.216] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    21.216] (**) Option "xkb_rules" "evdev"
[    21.216] (**) Option "xkb_model" "evdev"
[    21.216] (**) Option "xkb_layout" "de"
[    21.218] (II) XKB: reuse xkmfile /var/lib/xkb/server-1B5353734E7854C1F2B0553E65A16986C9AAC402.xkm
[    21.233] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    21.233] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    21.233] (**) Power Button: always reports core events
[    21.233] (**) Power Button: Device: "/dev/input/event0"
[    21.248] (II) Power Button: Found keys
[    21.248] (II) Power Button: Configuring as keyboard
[    21.248] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD)
[    21.248] (**) Option "xkb_rules" "evdev"
[    21.248] (**) Option "xkb_model" "evdev"
[    21.248] (**) Option "xkb_layout" "de"
[    21.250] (II) config/udev: Adding input device spca561 (/dev/input/event4)
[    21.250] (**) spca561: Applying InputClass "evdev keyboard catchall"
[    21.250] (**) spca561: always reports core events
[    21.250] (**) spca561: Device: "/dev/input/event4"
[    21.264] (II) spca561: Found keys
[    21.264] (II) spca561: Configuring as keyboard
[    21.264] (II) XINPUT: Adding extended input device "spca561" (type: KEYBOARD)
[    21.264] (**) Option "xkb_rules" "evdev"
[    21.264] (**) Option "xkb_model" "evdev"
[    21.264] (**) Option "xkb_layout" "de"
[    21.265] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event3)
[    21.265] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall"
[    21.265] (**) Logitech USB-PS/2 Optical Mouse: always reports core events
[    21.265] (**) Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event3"
[    21.265] (II) Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons
[    21.265] (II) Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s)
[    21.265] (II) Logitech USB-PS/2 Optical Mouse: Found relative axes
[    21.265] (II) Logitech USB-PS/2 Optical Mouse: Found x and y relative axes
[    21.265] (II) Logitech USB-PS/2 Optical Mouse: Configuring as mouse
[    21.265] (**) Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5
[    21.265] (**) Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    21.265] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE)
[    21.265] (II) Logitech USB-PS/2 Optical Mouse: initialized for relative axes.
[    21.266] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse0)
[    21.266] (II) No input driver/identifier specified (ignoring)
[    21.267] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    21.267] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    21.267] (**) AT Translated Set 2 keyboard: always reports core events
[    21.267] (**) AT Translated Set 2 keyboard: Device: "/dev/input/event2"
[    21.268] (II) AT Translated Set 2 keyboard: Found keys
[    21.268] (II) AT Translated Set 2 keyboard: Configuring as keyboard
[    21.268] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD)
[    21.268] (**) Option "xkb_rules" "evdev"
[    21.268] (**) Option "xkb_model" "evdev"
[    21.268] (**) Option "xkb_layout" "de"
[  1958.844] (II) Power Button: Close
[  1958.844] (II) UnloadModule: "evdev"
[  1958.868] (II) Power Button: Close
[  1958.868] (II) UnloadModule: "evdev"
[  1958.888] (II) spca561: Close
[  1958.888] (II) UnloadModule: "evdev"
[  1958.912] (II) Logitech USB-PS/2 Optical Mouse: Close
[  1958.912] (II) UnloadModule: "evdev"
[  1958.936] (II) AT Translated Set 2 keyboard: Close
[  1958.936] (II) UnloadModule: "evdev"
[  1959.102]  ddxSigGiveUp: Closing log

____________________________________________

Skipping ldd output (glxinfo not found)

____________________________________________

/usr/bin/lspci -d "10de:*" -v -xxx

01:00.0 VGA compatible controller: nVidia Corporation GT200 [GeForce GTX 260] (rev a1) (prog-if 00 [VGA controller])
	Subsystem: nVidia Corporation Device 0585
	Flags: bus master, fast devsel, latency 0, IRQ 18
	Memory at fa000000 (32-bit, non-prefetchable) [size=16M]
	Memory at d0000000 (64-bit, prefetchable) [size=256M]
	Memory at f8000000 (64-bit, non-prefetchable) [size=32M]
	I/O ports at bc00 [size=128]
	[virtual] Expansion ROM at fbb80000 [disabled] [size=512K]
	Capabilities: [60] Power Management version 3
	Capabilities: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
	Capabilities: [78] Express Endpoint, MSI 00
	Capabilities: [100] Virtual Channel
	Capabilities: [128] Power Budgeting <?>
	Capabilities: [600] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
	Kernel driver in use: nvidia
	Kernel modules: nvidia-current, nouveau, nvidiafb
00: de 10 e2 05 07 00 10 00 a1 00 00 03 00 00 00 00
10: 00 00 00 fa 0c 00 00 d0 00 00 00 00 04 00 00 f8
20: 00 00 00 00 01 bc 00 00 00 00 00 00 de 10 85 05
30: 00 00 00 00 60 00 00 00 00 00 00 00 0a 01 00 00
40: de 10 85 05 00 00 00 00 00 00 00 00 00 00 00 00
50: 01 00 00 00 01 00 00 00 ce d6 23 00 00 00 00 00
60: 01 68 03 00 08 00 00 00 05 78 80 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 10 00 02 00 e0 84 2c 01
80: 10 29 00 00 02 2d 00 00 08 00 02 01 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 10 00 00 00
a0: 00 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00


____________________________________________

/usr/bin/lspci -t

-[0000:00]-+-00.0
           +-02.0-[01]----00.0
           +-06.0-[02]----00.0
           +-07.0-[03]----00.0
           +-09.0-[04]----00.0
           +-11.0
           +-12.0
           +-12.1
           +-12.2
           +-13.0
           +-13.1
           +-13.2
           +-14.0
           +-14.1
           +-14.2
           +-14.3
           +-14.4-[05]----06.0
           +-14.5
           +-18.0
           +-18.1
           +-18.2
           +-18.3
           \-18.4

____________________________________________

/usr/bin/lspci -nn

00:00.0 Host bridge [0600]: ATI Technologies Inc RD780 Northbridge only dual slot PCI-e_GFX and HT1 K8 part [1002:5958]
00:02.0 PCI bridge [0604]: ATI Technologies Inc RD790 PCI to PCI bridge (external gfx0 port A) [1002:5978]
00:06.0 PCI bridge [0604]: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port C) [1002:597c]
00:07.0 PCI bridge [0604]: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port D) [1002:597d]
00:09.0 PCI bridge [0604]: ATI Technologies Inc RD790 PCI to PCI bridge (PCI express gpp port E) [1002:597e]
00:11.0 SATA controller [0106]: ATI Technologies Inc SB700/SB800 SATA Controller [AHCI mode] [1002:4391]
00:12.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller [1002:4397]
00:12.1 USB Controller [0c03]: ATI Technologies Inc SB700 USB OHCI1 Controller [1002:4398]
00:12.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI Controller [1002:4396]
00:13.0 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI0 Controller [1002:4397]
00:13.1 USB Controller [0c03]: ATI Technologies Inc SB700 USB OHCI1 Controller [1002:4398]
00:13.2 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB EHCI Controller [1002:4396]
00:14.0 SMBus [0c05]: ATI Technologies Inc SBx00 SMBus Controller [1002:4385] (rev 3c)
00:14.1 IDE interface [0101]: ATI Technologies Inc SB700/SB800 IDE Controller [1002:439c]
00:14.2 Audio device [0403]: ATI Technologies Inc SBx00 Azalia (Intel HDA) [1002:4383]
00:14.3 ISA bridge [0601]: ATI Technologies Inc SB700/SB800 LPC host controller [1002:439d]
00:14.4 PCI bridge [0604]: ATI Technologies Inc SBx00 PCI to PCI Bridge [1002:4384]
00:14.5 USB Controller [0c03]: ATI Technologies Inc SB700/SB800 USB OHCI2 Controller [1002:4399]
00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor HyperTransport Configuration [1022:1200]
00:18.1 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor Address Map [1022:1201]
00:18.2 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor DRAM Controller [1022:1202]
00:18.3 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor Miscellaneous Control [1022:1203]
00:18.4 Host bridge [0600]: Advanced Micro Devices [AMD] Family 10h Processor Link Control [1022:1204]
01:00.0 VGA compatible controller [0300]: nVidia Corporation GT200 [GeForce GTX 260] [10de:05e2] (rev a1)
02:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. RTL8111/8168B PCI Express Gigabit Ethernet controller [10ec:8168] (rev 03)
03:00.0 FireWire (IEEE 1394) [0c00]: VIA Technologies, Inc. VT6315 Series Firewire Controller [1106:3403]
04:00.0 IDE interface [0101]: Marvell Technology Group Ltd. 88SE6121 SATA II Controller [11ab:6121] (rev b2)
05:06.0 Multimedia controller [0480]: Philips Semiconductors SAA7134/SAA7135HL Video Broadcast Decoder [1131:7134] (rev 01)
____________________________________________

/usr/sbin/lsusb

Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 002: ID 046d:c051 Logitech, Inc. G3 (MX518) Optical Mouse
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 004 Device 002: ID 0a12:0001 Cambridge Silicon Radio, Ltd Bluetooth Dongle (HCI mode)
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 046d:0928 Logitech, Inc. QuickCam Express
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 002: ID 03f0:2504 Hewlett-Packard DeskJet F4200 series
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub

____________________________________________

/usr/sbin/dmidecode

# dmidecode 2.9
SMBIOS 2.5 present.
67 structures occupying 2442 bytes.
Table at 0x0009F400.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: American Megatrends Inc.
	Version: 2102   
	Release Date: 06/17/2010
	Address: 0xF0000
	Runtime Size: 64 kB
	ROM Size: 1024 kB
	Characteristics:
		ISA is supported
		PCI is supported
		PNP is supported
		APM is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		ESCD support is available
		Boot from CD is supported
		Selectable boot is supported
		BIOS ROM is socketed
		EDD is supported
		5.25"/1.2 MB floppy services are supported (int 13h)
		3.5"/720 KB floppy services are supported (int 13h)
		3.5"/2.88 MB floppy services are supported (int 13h)
		Print screen service is supported (int 5h)
		8042 keyboard services are supported (int 9h)
		Serial services are supported (int 14h)
		Printer services are supported (int 17h)
		CGA/mono video services are supported (int 10h)
		ACPI is supported
		USB legacy is supported
		LS-120 boot is supported
		ATAPI Zip drive boot is supported
		BIOS boot specification is supported
		Targeted content distribution is supported
	BIOS Revision: 8.15

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: System manufacturer
	Product Name: System Product Name
	Version: System Version
	Serial Number: System Serial Number
	UUID: C0D7001E-8C00-002B-3009-90E6BACF5085
	Wake-up Type: Power Switch
	SKU Number: To Be Filled By O.E.M.
	Family: To Be Filled By O.E.M.

Handle 0x0002, DMI type 2, 15 bytes
Base Board Information
	Manufacturer: ASUSTeK Computer INC.
	Product Name: M4A79XTD EVO
	Version: Rev X.0X
	Serial Number: MT709AK16100938
	Asset Tag: To Be Filled By O.E.M.
	Features:
		Board is a hosting board
		Board is replaceable
	Location In Chassis: To Be Filled By O.E.M.
	Chassis Handle: 0x0003
	Type: Motherboard
	Contained Object Handles: 0

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
	Manufacturer: Chassis Manufacture
	Type: Desktop
	Lock: Not Present
	Version: Chassis Version
	Serial Number: Chassis Serial Number
	Asset Tag: Asset-1234567890
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00000001
	Height: Unspecified
	Number Of Power Cords: 1
	Contained Elements: 0

Handle 0x0004, DMI type 4, 40 bytes
Processor Information
	Socket Designation: AM3
	Type: Central Processor
	Family: <OUT OF SPEC>
	Manufacturer: AMD              
	ID: 62 0F 10 00 FF FB 8B 17
	Version: AMD Athlon(tm) II X2 250 Processor                  
	Voltage: 1.5 V
	External Clock: 200 MHz
	Max Speed: 3000 MHz
	Current Speed: 3000 MHz
	Status: Populated, Enabled
	Upgrade: Other
	L1 Cache Handle: 0x0005
	L2 Cache Handle: 0x0006
	L3 Cache Handle: 0x0007
	Serial Number: To Be Filled By O.E.M.
	Asset Tag: To Be Filled By O.E.M.
	Part Number: To Be Filled By O.E.M.
	Core Count: 2
	Core Enabled: 2
	Characteristics:
		64-bit capable

Handle 0x0005, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L1-Cache
	Configuration: Enabled, Not Socketed, Level 1
	Operational Mode: Varies With Memory Address
	Location: Internal
	Installed Size: 256 KB
	Maximum Size: 256 KB
	Supported SRAM Types:
		Pipeline Burst
	Installed SRAM Type: Pipeline Burst
	Speed: Unknown
	Error Correction Type: Single-bit ECC
	System Type: Data
	Associativity: 4-way Set-associative

Handle 0x0006, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L2-Cache
	Configuration: Enabled, Not Socketed, Level 2
	Operational Mode: Varies With Memory Address
	Location: Internal
	Installed Size: 2048 KB
	Maximum Size: 2048 KB
	Supported SRAM Types:
		Pipeline Burst
	Installed SRAM Type: Pipeline Burst
	Speed: Unknown
	Error Correction Type: Single-bit ECC
	System Type: Unified
	Associativity: 4-way Set-associative

Handle 0x0007, DMI type 7, 19 bytes
Cache Information
	Socket Designation: L3-Cache
	Configuration: Disabled, Not Socketed, Level 3
	Operational Mode: Unknown
	Location: Internal
	Installed Size: 0 KB
	Maximum Size: 0 KB
	Supported SRAM Types:
		Unknown
	Installed SRAM Type: Unknown
	Speed: Unknown
	Error Correction Type: Unknown
	System Type: Unknown
	Associativity: Unknown

Handle 0x0008, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PS/2 Mouse
	Internal Connector Type: None
	External Reference Designator: PS2Mouse
	External Connector Type: PS/2
	Port Type: Mouse Port

Handle 0x0009, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PS/2 KeyBoard
	Internal Connector Type: None
	External Reference Designator: Keyboard
	External Connector Type: PS/2
	Port Type: Keyboard Port

Handle 0x000A, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB78
	Internal Connector Type: None
	External Reference Designator: USB78
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x000B, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SPDIF_O
	Internal Connector Type: None
	External Reference Designator: SPDIF_O1
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x000C, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB56
	Internal Connector Type: None
	External Reference Designator: USB56
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x000D, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB34
	Internal Connector Type: None
	External Reference Designator: USB34
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x000E, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: IE1394_1
	Internal Connector Type: None
	External Reference Designator: 1394
	External Connector Type: IEEE 1394
	Port Type: Firewire (IEEE P1394)

Handle 0x000F, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: ESATA
	Internal Connector Type: None
	External Reference Designator: ESATA
	External Connector Type: SAS/SATA Plug Receptacle
	Port Type: SATA

Handle 0x0010, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: LAN
	Internal Connector Type: None
	External Reference Designator: LAN
	External Connector Type: RJ-45
	Port Type: Network Port

Handle 0x0011, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB12
	Internal Connector Type: None
	External Reference Designator: USB12
	External Connector Type: Access Bus (USB)
	Port Type: USB

Handle 0x0012, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Line In
	Internal Connector Type: None
	External Reference Designator: Line In
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0013, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Line Out
	Internal Connector Type: None
	External Reference Designator: Line Out
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0014, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Mic In
	Internal Connector Type: None
	External Reference Designator: Mic In
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0015, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Center Out
	Internal Connector Type: None
	External Reference Designator: Center Out
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0016, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Surround Out
	Internal Connector Type: None
	External Reference Designator: Surround Out
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0017, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: Side Surround
	Internal Connector Type: None
	External Reference Designator: Side Surround Out
	External Connector Type: Mini Jack (headphones)
	Port Type: Audio Port

Handle 0x0018, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: CPU_FAN
	Internal Connector Type: Other
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x0019, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PWR_FAN
	Internal Connector Type: Other
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x001A, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: CHA_FAN1
	Internal Connector Type: Other
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x001B, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: CHA_FAN2
	Internal Connector Type: Other
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x001C, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: COM1
	Internal Connector Type: 9 Pin Dual Inline (pin 10 cut)
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x001D, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PRI_IDE
	Internal Connector Type: On Board IDE
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x001E, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: AAFP
	Internal Connector Type: Mini Jack (headphones)
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Audio Port

Handle 0x001F, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SPDIF_OUT
	Internal Connector Type: Mini Jack (headphones)
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Audio Port

Handle 0x0020, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: CD
	Internal Connector Type: On Board Sound Input From CD-ROM
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Audio Port

Handle 0x0021, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: IE1394_2
	Internal Connector Type: IEEE 1394
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Firewire (IEEE P1394)

Handle 0x0022, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB910
	Internal Connector Type: Access Bus (USB)
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: USB

Handle 0x0023, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: USB1112
	Internal Connector Type: Access Bus (USB)
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: USB

Handle 0x0024, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA1
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x0025, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA2
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x0026, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA3
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x0027, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA4
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x0028, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA5
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x0029, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA6
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x002A, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: SATA_E1
	Internal Connector Type: SAS/SATA Plug Receptacle
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: SATA

Handle 0x002B, DMI type 8, 9 bytes
Port Connector Information
	Internal Reference Designator: PANEL
	Internal Connector Type: Other
	External Reference Designator: Not Specified
	External Connector Type: None
	Port Type: Other

Handle 0x002C, DMI type 9, 13 bytes
System Slot Information
	Designation: PCIEX16_1
	Type: x16 PCI Express
	Current Usage: Available
	Length: Short
	ID: 2
	Characteristics:
		3.3 V is provided
		Opening is shared
		PME signal is supported

Handle 0x002D, DMI type 9, 13 bytes
System Slot Information
	Designation: PCIEX16_2
	Type: x16 PCI Express
	Current Usage: Available
	Length: Short
	ID: 2
	Characteristics:
		3.3 V is provided
		Opening is shared
		PME signal is supported

Handle 0x002E, DMI type 9, 13 bytes
System Slot Information
	Designation: PCIEX1_1
	Type: x1 PCI Express
	Current Usage: Available
	Length: Short
	ID: 4
	Characteristics:
		3.3 V is provided
		Opening is shared
		PME signal is supported

Handle 0x002F, DMI type 9, 13 bytes
System Slot Information
	Designation: PCIEX1_2
	Type: x1 PCI Express
	Current Usage: Available
	Length: Short
	ID: 5
	Characteristics:
		3.3 V is provided
		Opening is shared
		PME signal is supported

Handle 0x0030, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI1
	Type: 32-bit PCI
	Current Usage: Available
	Length: Short
	ID: 13
	Characteristics:
		3.3 V is provided
		Opening is shared
		PME signal is supported

Handle 0x0031, DMI type 9, 13 bytes
System Slot Information
	Designation: PCI2
	Type: 32-bit PCI
	Current Usage: In Use
	Length: Short
	ID: 14
	Characteristics:
		3.3 V is provided
		Opening is shared
		PME signal is supported

Handle 0x0032, DMI type 10, 6 bytes
On Board Device Information
	Type: Video
	Status: Enabled
	Description:   To Be Filled By O.E.M.

Handle 0x0033, DMI type 11, 5 bytes
OEM Strings
	String 1: 90E6BACF5085
	String 2: To Be Filled By O.E.M.
	String 3: To Be Filled By O.E.M.
	String 4: To Be Filled By O.E.M.

Handle 0x0034, DMI type 13, 22 bytes
BIOS Language Information
	Installable Languages: 1
		en|US|iso8859-1
	Currently Installed Language: en|US|iso8859-1

Handle 0x0035, DMI type 15, 35 bytes
System Event Log
	Area Length: 4 bytes
	Header Start Offset: 0x0000
	Header Length: 2 bytes
	Data Start Offset: 0x0002
	Access Method: Indexed I/O, one 16-bit index port, one 8-bit data port
	Access Address: Index 0x046A, Data 0x046C
	Status: Invalid, Not Full
	Change Token: 0x00000000
	Header Format: No Header
	Supported Log Type Descriptors: 6
	Descriptor 1: End of log
	Data Format 1: OEM-specific
	Descriptor 2: End of log
	Data Format 2: OEM-specific
	Descriptor 3: End of log
	Data Format 3: OEM-specific
	Descriptor 4: End of log
	Data Format 4: OEM-specific
	Descriptor 5: End of log
	Data Format 5: OEM-specific
	Descriptor 6: End of log
	Data Format 6: OEM-specific

Handle 0x0036, DMI type 16, 15 bytes
Physical Memory Array
	Location: System Board Or Motherboard
	Use: System Memory
	Error Correction Type: None
	Maximum Capacity: 16 GB
	Error Information Handle: Not Provided
	Number Of Devices: 4

Handle 0x0037, DMI type 19, 15 bytes
Memory Array Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x000BFFFFFFF
	Range Size: 3 GB
	Physical Array Handle: 0x0036
	Partition Width: 0

Handle 0x0038, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0036
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 1024 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM0
	Bank Locator: BANK0
	Type: Other
	Type Detail: Synchronous
	Speed: 1333 MHz (0.8 ns)
	Manufacturer: Manufacturer00
	Serial Number: SerNum00
	Asset Tag: AssetTagNum0
	Part Number: ModulePartNumber00

Handle 0x0039, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x0003FFFFFFF
	Range Size: 1 GB
	Physical Device Handle: 0x0038
	Memory Array Mapped Address Handle: 0x0037
	Partition Row Position: 1

Handle 0x003A, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0036
	Error Information Handle: Not Provided
	Total Width: Unknown
	Data Width: Unknown
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: DIMM1
	Bank Locator: BANK1
	Type: Unknown
	Type Detail: None
	Speed: Unknown
	Manufacturer: Manufacturer01
	Serial Number: SerNum01
	Asset Tag: AssetTagNum1
	Part Number: ModulePartNumber01

Handle 0x003B, DMI type 126, 19 bytes
Inactive

Handle 0x003C, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0036
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 1024 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM2
	Bank Locator: BANK2
	Type: Other
	Type Detail: Synchronous
	Speed: 1333 MHz (0.8 ns)
	Manufacturer: Manufacturer02
	Serial Number: SerNum02
	Asset Tag: AssetTagNum2
	Part Number: ModulePartNumber02

Handle 0x003D, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00040000000
	Ending Address: 0x0007FFFFFFF
	Range Size: 1 GB
	Physical Device Handle: 0x003C
	Memory Array Mapped Address Handle: 0x0037
	Partition Row Position: 1

Handle 0x003E, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0036
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 64 bits
	Size: 1024 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM3
	Bank Locator: BANK3
	Type: Other
	Type Detail: Synchronous
	Speed: 1333 MHz (0.8 ns)
	Manufacturer: Manufacturer03
	Serial Number: SerNum03
	Asset Tag: AssetTagNum3
	Part Number: ModulePartNumber03

Handle 0x003F, DMI type 20, 19 bytes
Memory Device Mapped Address
	Starting Address: 0x00080000000
	Ending Address: 0x000BFFFFFFF
	Range Size: 1 GB
	Physical Device Handle: 0x003E
	Memory Array Mapped Address Handle: 0x0037
	Partition Row Position: 1

Handle 0x0040, DMI type 32, 20 bytes
System Boot Information
	Status: No errors detected

Handle 0x0041, DMI type 139, 94 bytes
OEM-specific Type
	Header and Data:
		8B 5E 41 00 00 1E 8C 00 00 2B 30 09 04 04 32 55
		F8 00 A2 02 A1 00 40 63 43 10 84 83 03 DF 40 80
		00 20 00 73 3C 10 08 00 60 0F 06 11 15 04 20 00
		3C 10 00 00 00 00 00 00 00 00 00 00 00 00 00 00
		00 00 00 00 09 30 2B FF FF 8C 1E 00 04 00 00 23
		33 00 00 00 00 00 00 00 00 00 00 00 00 01
	Strings:
		V1394GUID

Handle 0x0042, DMI type 127, 4 bytes
End Of Table


____________________________________________

/sbin/modinfo nvidia | grep vermagic


____________________________________________

Scanning kernel log files for NVRM messages:

  /var/log/messages:
Jan  5 18:11:33 opelig-ul kernel: [  410.926251] NVRM: The NVIDIA probe routine was not called for 1 device(s).
Jan  5 18:11:33 opelig-ul kernel: [  410.926262] NVRM: This can occur when a driver such as nouveau, rivafb,
Jan  5 18:11:33 opelig-ul kernel: [  410.926265] NVRM: nvidiafb, or rivatv was loaded and obtained ownership of
Jan  5 18:11:33 opelig-ul kernel: [  410.926269] NVRM: the NVIDIA device(s).
Jan  5 18:11:33 opelig-ul kernel: [  410.926276] NVRM: Try unloading the conflicting kernel module (and/or
Jan  5 18:11:33 opelig-ul kernel: [  410.926279] NVRM: reconfigure your kernel without the conflicting
Jan  5 18:11:33 opelig-ul kernel: [  410.926282] NVRM: driver(s)), then try loading the NVIDIA kernel module
Jan  5 18:11:33 opelig-ul kernel: [  410.926285] NVRM: again.
Jan  5 18:11:33 opelig-ul kernel: [  410.926289] NVRM: No NVIDIA graphics adapter probed!
Jan  5 18:12:48 opelig-ul kernel: [    9.405783] NVRM: loading NVIDIA UNIX x86 Kernel Module  260.19.06  Mon Sep 13 06:35:06 PDT 2010
/var/log/kernel.log is not readable

____________________________________________

dmesg:

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Linux version 2.6.35-22-generic (buildd@rothera) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu4) ) #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010 (Ubuntu 2.6.35-22.33-generic 2.6.35.4)
[    0.000000] BIOS-provided physical RAM map:
[    0.000000]  BIOS-e820: 0000000000000000 - 000000000009ec00 (usable)
[    0.000000]  BIOS-e820: 000000000009ec00 - 00000000000a0000 (reserved)
[    0.000000]  BIOS-e820: 00000000000e6000 - 0000000000100000 (reserved)
[    0.000000]  BIOS-e820: 0000000000100000 - 00000000bff90000 (usable)
[    0.000000]  BIOS-e820: 00000000bff90000 - 00000000bffa8000 (ACPI data)
[    0.000000]  BIOS-e820: 00000000bffa8000 - 00000000bffd0000 (ACPI NVS)
[    0.000000]  BIOS-e820: 00000000bffd0000 - 00000000c0000000 (reserved)
[    0.000000]  BIOS-e820: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] Notice: NX (Execute Disable) protection cannot be enabled: non-PAE kernel!
[    0.000000] DMI present.
[    0.000000] AMI BIOS detected: BIOS may corrupt low RAM, working around it.
[    0.000000] e820 update range: 0000000000000000 - 0000000000010000 (usable) ==> (reserved)
[    0.000000] e820 update range: 0000000000000000 - 0000000000001000 (usable) ==> (reserved)
[    0.000000] e820 remove range: 00000000000a0000 - 0000000000100000 (usable)
[    0.000000] last_pfn = 0xbff90 max_arch_pfn = 0x100000
[    0.000000] MTRR default type: uncachable
[    0.000000] MTRR fixed ranges enabled:
[    0.000000]   00000-9FFFF write-back
[    0.000000]   A0000-EFFFF uncachable
[    0.000000]   F0000-FFFFF write-protect
[    0.000000] MTRR variable ranges enabled:
[    0.000000]   0 base 000000000000 mask FFFF80000000 write-back
[    0.000000]   1 base 000080000000 mask FFFFC0000000 write-back
[    0.000000]   2 disabled
[    0.000000]   3 disabled
[    0.000000]   4 disabled
[    0.000000]   5 disabled
[    0.000000]   6 disabled
[    0.000000]   7 disabled
[    0.000000] x86 PAT enabled: cpu 0, old 0x7040600070406, new 0x7010600070106
[    0.000000] Scanning 0 areas for low memory corruption
[    0.000000] modified physical RAM map:
[    0.000000]  modified: 0000000000000000 - 0000000000010000 (reserved)
[    0.000000]  modified: 0000000000010000 - 000000000009ec00 (usable)
[    0.000000]  modified: 000000000009ec00 - 00000000000a0000 (reserved)
[    0.000000]  modified: 00000000000e6000 - 0000000000100000 (reserved)
[    0.000000]  modified: 0000000000100000 - 00000000bff90000 (usable)
[    0.000000]  modified: 00000000bff90000 - 00000000bffa8000 (ACPI data)
[    0.000000]  modified: 00000000bffa8000 - 00000000bffd0000 (ACPI NVS)
[    0.000000]  modified: 00000000bffd0000 - 00000000c0000000 (reserved)
[    0.000000]  modified: 00000000fff00000 - 0000000100000000 (reserved)
[    0.000000] initial memory mapped : 0 - 00c00000
[    0.000000] found SMP MP-table at [c00ff780] ff780
[    0.000000] init_memory_mapping: 0000000000000000-00000000377fe000
[    0.000000]  0000000000 - 0000400000 page 4k
[    0.000000]  0000400000 - 0037400000 page 2M
[    0.000000]  0037400000 - 00377fe000 page 4k
[    0.000000] kernel direct mapping tables up to 377fe000 @ 15000-1a000
[    0.000000] RAMDISK: 375ac000 - 37ff0000
[    0.000000] Allocated new RAMDISK: 009a5000 - 013e8cc1
[    0.000000] Move RAMDISK from 00000000375ac000 - 0000000037fefcc0 to 009a5000 - 013e8cc0
[    0.000000] ACPI: RSDP 000fb9e0 00024 (v02 ACPIAM)
[    0.000000] ACPI: XSDT bff90100 0005C (v01 061710 XSDT1619 20100617 MSFT 00000097)
[    0.000000] ACPI: FACP bff90290 000F4 (v03 061710 FACP1619 20100617 MSFT 00000097)
[    0.000000] ACPI Warning: Optional field Pm2ControlBlock has zero address or length: 0x0000000000000000/0x1 (20100428/tbfadt-557)
[    0.000000] ACPI: DSDT bff90450 0E893 (v01  A1396 A1396000 00000000 INTL 20060113)
[    0.000000] ACPI: FACS bffa8000 00040
[    0.000000] ACPI: APIC bff90390 0007C (v01 061710 APIC1619 20100617 MSFT 00000097)
[    0.000000] ACPI: MCFG bff90410 0003C (v01 061710 OEMMCFG  20100617 MSFT 00000097)
[    0.000000] ACPI: OEMB bffa8040 00072 (v01 061710 OEMB1619 20100617 MSFT 00000097)
[    0.000000] ACPI: SRAT bff9f450 000A0 (v01 AMD    FAM_F_10 00000002 AMD  00000001)
[    0.000000] ACPI: HPET bff9f4f0 00038 (v01 061710 OEMHPET  20100617 MSFT 00000097)
[    0.000000] ACPI: SSDT bff9f530 00458 (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] 2183MB HIGHMEM available.
[    0.000000] 887MB LOWMEM available.
[    0.000000]   mapped low ram: 0 - 377fe000
[    0.000000]   low ram: 0 - 377fe000
[    0.000000] Zone PFN ranges:
[    0.000000]   DMA      0x00000010 -> 0x00001000
[    0.000000]   Normal   0x00001000 -> 0x000377fe
[    0.000000]   HighMem  0x000377fe -> 0x000bff90
[    0.000000] Movable zone start PFN for each node
[    0.000000] early_node_map[2] active PFN ranges
[    0.000000]     0: 0x00000010 -> 0x0000009e
[    0.000000]     0: 0x00000100 -> 0x000bff90
[    0.000000] On node 0 totalpages: 786206
[    0.000000] free_area_init_node: node 0, pgdat c07ffd40, node_mem_map c13ea200
[    0.000000]   DMA zone: 32 pages used for memmap
[    0.000000]   DMA zone: 0 pages reserved
[    0.000000]   DMA zone: 3950 pages, LIFO batch:0
[    0.000000]   Normal zone: 1744 pages used for memmap
[    0.000000]   Normal zone: 221486 pages, LIFO batch:31
[    0.000000]   HighMem zone: 4368 pages used for memmap
[    0.000000]   HighMem zone: 554626 pages, LIFO batch:31
[    0.000000] Using APIC driver default
[    0.000000] ACPI: PM-Timer IO Port: 0x808
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] ACPI: LAPIC (acpi_id[0x01] lapic_id[0x00] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x02] lapic_id[0x01] enabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x03] lapic_id[0x82] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x04] lapic_id[0x83] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x05] lapic_id[0x84] disabled)
[    0.000000] ACPI: LAPIC (acpi_id[0x06] lapic_id[0x85] disabled)
[    0.000000] ACPI: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 33, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 low level)
[    0.000000] ACPI: IRQ0 used by override.
[    0.000000] ACPI: IRQ2 used by override.
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] ACPI: HPET id: 0x8300 base: 0xfed00000
[    0.000000] SMP: Allowing 6 CPUs, 4 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] early_res array is doubled to 64 at [16000 - 167ff]
[    0.000000] PM: Registered nosave memory: 000000000009e000 - 000000000009f000
[    0.000000] PM: Registered nosave memory: 000000000009f000 - 00000000000a0000
[    0.000000] PM: Registered nosave memory: 00000000000a0000 - 00000000000e6000
[    0.000000] PM: Registered nosave memory: 00000000000e6000 - 0000000000100000
[    0.000000] Allocating PCI resources starting at c0000000 (gap: c0000000:3ff00000)
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:8 nr_cpumask_bits:8 nr_cpu_ids:6 nr_node_ids:1
[    0.000000] PERCPU: Embedded 14 pages/cpu @c2c00000 s36416 r0 d20928 u524288
[    0.000000] pcpu-alloc: s36416 r0 d20928 u524288 alloc=1*4194304
[    0.000000] pcpu-alloc: [0] 0 1 2 3 4 5 - - 
[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 780062
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic root=UUID=ce7843c1-9d18-4db8-a22c-41be970accc0 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Enabling fast FPU save and restore... done.
[    0.000000] Enabling unmasked SIMD FPU exception support... done.
[    0.000000] Initializing CPU#0
[    0.000000] allocated 15726080 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] Subtract (51 early reservations)
[    0.000000]   #1 [0000001000 - 0000002000]   EX TRAMPOLINE
[    0.000000]   #2 [0000100000 - 00009a0adc]   TEXT DATA BSS
[    0.000000]   #3 [00009a1000 - 00009a4230]             BRK
[    0.000000]   #4 [00000ff790 - 0000100000]   BIOS reserved
[    0.000000]   #5 [00000ff780 - 00000ff790]    MP-table mpf
[    0.000000]   #6 [000009ec00 - 00000f0700]   BIOS reserved
[    0.000000]   #7 [00000f0884 - 00000ff780]   BIOS reserved
[    0.000000]   #8 [00000f0700 - 00000f0884]    MP-table mpc
[    0.000000]   #9 [0000010000 - 0000011000]      TRAMPOLINE
[    0.000000]   #10 [0000011000 - 0000015000]     ACPI WAKEUP
[    0.000000]   #11 [0000015000 - 0000016000]         PGTABLE
[    0.000000]   #12 [00009a5000 - 00013e9000]     NEW RAMDISK
[    0.000000]   #13 [00013e9000 - 00013ea000]         BOOTMEM
[    0.000000]   #14 [00013ea000 - 0002bea000]         BOOTMEM
[    0.000000]   #15 [0002bea000 - 0002bea004]         BOOTMEM
[    0.000000]   #16 [0002bea040 - 0002bea100]         BOOTMEM
[    0.000000]   #17 [0002bea100 - 0002bea154]         BOOTMEM
[    0.000000]   #18 [0002bea180 - 0002bed180]         BOOTMEM
[    0.000000]   #19 [0002bed180 - 0002bed250]         BOOTMEM
[    0.000000]   #20 [0002bed280 - 0002bf9280]         BOOTMEM
[    0.000000]   #21 [0002bf9280 - 0002bf92a5]         BOOTMEM
[    0.000000]   #22 [0002bf92c0 - 0002bf92e7]         BOOTMEM
[    0.000000]   #23 [0002bf9300 - 0002bf93fc]         BOOTMEM
[    0.000000]   #24 [0002bf9400 - 0002bf9440]         BOOTMEM
[    0.000000]   #25 [0002bf9440 - 0002bf9480]         BOOTMEM
[    0.000000]   #26 [0002bf9480 - 0002bf94c0]         BOOTMEM
[    0.000000]   #27 [0002bf94c0 - 0002bf9500]         BOOTMEM
[    0.000000]   #28 [0002bf9500 - 0002bf9540]         BOOTMEM
[    0.000000]   #29 [0002bf9540 - 0002bf9580]         BOOTMEM
[    0.000000]   #30 [0002bf9580 - 0002bf95c0]         BOOTMEM
[    0.000000]   #31 [0002bf95c0 - 0002bf9600]         BOOTMEM
[    0.000000]   #32 [0002bf9600 - 0002bf9610]         BOOTMEM
[    0.000000]   #33 [0002bf9640 - 0002bf96aa]         BOOTMEM
[    0.000000]   #34 [0002bf96c0 - 0002bf972a]         BOOTMEM
[    0.000000]   #35 [0002c00000 - 0002c0e000]         BOOTMEM
[    0.000000]   #36 [0002c80000 - 0002c8e000]         BOOTMEM
[    0.000000]   #37 [0002d00000 - 0002d0e000]         BOOTMEM
[    0.000000]   #38 [0002d80000 - 0002d8e000]         BOOTMEM
[    0.000000]   #39 [0002e00000 - 0002e0e000]         BOOTMEM
[    0.000000]   #40 [0002e80000 - 0002e8e000]         BOOTMEM
[    0.000000]   #41 [0002bfb740 - 0002bfb744]         BOOTMEM
[    0.000000]   #42 [0002bfb780 - 0002bfb784]         BOOTMEM
[    0.000000]   #43 [0002bfb7c0 - 0002bfb7d8]         BOOTMEM
[    0.000000]   #44 [0002bfb800 - 0002bfb818]         BOOTMEM
[    0.000000]   #45 [0002bfb840 - 0002bfb8d8]         BOOTMEM
[    0.000000]   #46 [0002bfb900 - 0002bfb938]         BOOTMEM
[    0.000000]   #47 [0002bfb940 - 0002bff940]         BOOTMEM
[    0.000000]   #48 [0002e8e000 - 0002f0e000]         BOOTMEM
[    0.000000]   #49 [0002c0e000 - 0002c4e000]         BOOTMEM
[    0.000000]   #50 [0002f0e000 - 0003e0d600]         BOOTMEM
[    0.000000] Initializing HighMem for node 0 (000377fe:000bff90)
[    0.000000] Memory: 3084308k/3145280k available (4928k kernel code, 60516k reserved, 2336k data, 684k init, 2235976k highmem)
[    0.000000] virtual kernel memory layout:
[    0.000000]     fixmap  : 0xfff16000 - 0xfffff000   ( 932 kB)
[    0.000000]     pkmap   : 0xff800000 - 0xffc00000   (4096 kB)
[    0.000000]     vmalloc : 0xf7ffe000 - 0xff7fe000   ( 120 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf77fe000   ( 887 MB)
[    0.000000]       .init : 0xc0819000 - 0xc08c4000   ( 684 kB)
[    0.000000]       .data : 0xc05d029e - 0xc0818668   (2336 kB)
[    0.000000]       .text : 0xc0100000 - 0xc05d029e   (4928 kB)
[    0.000000] Checking if this processor honours the WP bit even in supervisor mode...Ok.
[    0.000000] SLUB: Genslabs=13, HWalign=64, Order=0-3, MinObjects=0, CPUs=6, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU-based detection of stalled CPUs is disabled.
[    0.000000] 	Verbose stalled-CPUs detection is disabled.
[    0.000000] NR_IRQS:2304 nr_irqs:728
[    0.000000] Extended CMOS year: 2000
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] hpet clockevent registered
[    0.000000] Fast TSC calibration using PIT
[    0.000000] Detected 2999.664 MHz processor.
[    0.004004] Calibrating delay loop (skipped), value calculated using timer frequency.. 5999.32 BogoMIPS (lpj=11998656)
[    0.004009] pid_max: default: 32768 minimum: 301
[    0.004024] Security Framework initialized
[    0.004039] AppArmor: AppArmor initialized
[    0.004040] Yama: becoming mindful.
[    0.004084] Mount-cache hash table entries: 512
[    0.004174] Initializing cgroup subsys ns
[    0.004177] Initializing cgroup subsys cpuacct
[    0.004181] Initializing cgroup subsys memory
[    0.004188] Initializing cgroup subsys devices
[    0.004190] Initializing cgroup subsys freezer
[    0.004193] Initializing cgroup subsys net_cls
[    0.004210] CPU: Physical Processor ID: 0
[    0.004212] CPU: Processor Core ID: 0
[    0.004214] mce: CPU supports 6 MCE banks
[    0.004224] Performance Events: AMD PMU driver.
[    0.004229] ... version:                0
[    0.004231] ... bit width:              48
[    0.004232] ... generic registers:      4
[    0.004234] ... value mask:             0000ffffffffffff
[    0.004236] ... max period:             00007fffffffffff
[    0.004238] ... fixed-purpose events:   0
[    0.004240] ... event mask:             000000000000000f
[    0.008767] ACPI: Core revision 20100428
[    0.024006] ftrace: converting mcount calls to 0f 1f 44 00 00
[    0.024010] ftrace: allocating 21758 entries in 43 pages
[    0.028055] Enabling APIC mode:  Flat.  Using 1 I/O APICs
[    0.028350] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
[    0.068994] CPU0: AMD Athlon(tm) II X2 250 Processor stepping 02
[    0.072000] Booting Node   0, Processors  #1
[    0.008000] Initializing CPU#1
[    0.160006] Brought up 2 CPUs
[    0.160008] Total of 2 processors activated (11999.37 BogoMIPS).
[    0.160185] devtmpfs: initialized
[    0.160669] regulator: core version 0.5
[    0.160691] Time: 18:12:37  Date: 01/05/11
[    0.160720] NET: Registered protocol family 16
[    0.160753] Trying to unpack rootfs image as initramfs...
[    0.160806] EISA bus registered
[    0.160810] node 0 link 0: io port [1000, ffffff]
[    0.160812] TOM: 00000000c0000000 aka 3072M
[    0.160814] Fam 10h mmconf [e0000000, efffffff]
[    0.160816] node 0 link 0: mmio [e0000000, efffffff] ==> none
[    0.160819] node 0 link 0: mmio [f0000000, ffffffff]
[    0.160821] node 0 link 0: mmio [a0000, bffff]
[    0.160823] node 0 link 0: mmio [c0000000, dfffffff]
[    0.160824] bus: [00, 07] on node 0 link 0
[    0.160827] bus: 00 index 0 [io  0x0000-0xffff]
[    0.160828] bus: 00 index 1 [mem 0xf0000000-0xffffffff]
[    0.160830] bus: 00 index 2 [mem 0x000a0000-0x000bffff]
[    0.160831] bus: 00 index 3 [mem 0xc0000000-0xdfffffff]
[    0.160838] ACPI: bus type pci registered
[    0.160885] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.160887] PCI: not using MMCONFIG
[    0.161505] PCI: PCI BIOS revision 3.00 entry at 0xf0031, last bus=5
[    0.161507] PCI: Using configuration type 1 for base access
[    0.161508] PCI: Using configuration type 1 for extended access
[    0.168075] bio: create slab <bio-0> at 0
[    0.169184] ACPI: EC: Look up EC in DSDT
[    0.170976] ACPI: Executed 3 blocks of module-level executable AML code
[    0.254417] ACPI: Interpreter enabled
[    0.254421] ACPI: (supports S0 S1 S3 S4 S5)
[    0.254441] ACPI: Using IOAPIC for interrupt routing
[    0.254488] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.256230] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.256232] PCI: Using MMCONFIG for extended config space
[    0.261220] ACPI: No dock devices found.
[    0.261224] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
[    0.261350] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.261599] pci_root PNP0A03:00: host bridge window [io  0x0000-0x0cf7]
[    0.261601] pci_root PNP0A03:00: host bridge window [io  0x0d00-0xffff]
[    0.261603] pci_root PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff]
[    0.261605] pci_root PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff]
[    0.261607] pci_root PNP0A03:00: host bridge window [mem 0xc0000000-0xdfffffff]
[    0.261609] pci_root PNP0A03:00: host bridge window [mem 0xf0000000-0xfebfffff]
[    0.261667] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
[    0.261669] pci 0000:00:02.0: PME# disabled
[    0.261700] pci 0000:00:06.0: PME# supported from D0 D3hot D3cold
[    0.261702] pci 0000:00:06.0: PME# disabled
[    0.261730] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
[    0.261732] pci 0000:00:07.0: PME# disabled
[    0.261760] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
[    0.261762] pci 0000:00:09.0: PME# disabled
[    0.261800] pci 0000:00:11.0: reg 10: [io  0xa000-0xa007]
[    0.261806] pci 0000:00:11.0: reg 14: [io  0x9000-0x9003]
[    0.261812] pci 0000:00:11.0: reg 18: [io  0x8000-0x8007]
[    0.261818] pci 0000:00:11.0: reg 1c: [io  0x7000-0x7003]
[    0.261823] pci 0000:00:11.0: reg 20: [io  0x6000-0x600f]
[    0.261829] pci 0000:00:11.0: reg 24: [mem 0xf7fffc00-0xf7ffffff]
[    0.261877] pci 0000:00:12.0: reg 10: [mem 0xf7ffd000-0xf7ffdfff]
[    0.261925] pci 0000:00:12.1: reg 10: [mem 0xf7ffe000-0xf7ffefff]
[    0.261984] pci 0000:00:12.2: reg 10: [mem 0xf7fff800-0xf7fff8ff]
[    0.262031] pci 0000:00:12.2: supports D1 D2
[    0.262032] pci 0000:00:12.2: PME# supported from D0 D1 D2 D3hot
[    0.262036] pci 0000:00:12.2: PME# disabled
[    0.262063] pci 0000:00:13.0: reg 10: [mem 0xf7ffb000-0xf7ffbfff]
[    0.262110] pci 0000:00:13.1: reg 10: [mem 0xf7ffc000-0xf7ffcfff]
[    0.262169] pci 0000:00:13.2: reg 10: [mem 0xf7fff400-0xf7fff4ff]
[    0.262216] pci 0000:00:13.2: supports D1 D2
[    0.262217] pci 0000:00:13.2: PME# supported from D0 D1 D2 D3hot
[    0.262221] pci 0000:00:13.2: PME# disabled
[    0.262317] pci 0000:00:14.1: reg 10: [io  0x0000-0x0007]
[    0.262323] pci 0000:00:14.1: reg 14: [io  0x0000-0x0003]
[    0.262328] pci 0000:00:14.1: reg 18: [io  0x0000-0x0007]
[    0.262334] pci 0000:00:14.1: reg 1c: [io  0x0000-0x0003]
[    0.262340] pci 0000:00:14.1: reg 20: [io  0xff00-0xff0f]
[    0.262396] pci 0000:00:14.2: reg 10: [mem 0xf7ff4000-0xf7ff7fff 64bit]
[    0.262435] pci 0000:00:14.2: PME# supported from D0 D3hot D3cold
[    0.262438] pci 0000:00:14.2: PME# disabled
[    0.262529] pci 0000:00:14.5: reg 10: [mem 0xf7ffa000-0xf7ffafff]
[    0.262660] pci 0000:01:00.0: reg 10: [mem 0xfa000000-0xfaffffff]
[    0.262668] pci 0000:01:00.0: reg 14: [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.262675] pci 0000:01:00.0: reg 1c: [mem 0xf8000000-0xf9ffffff 64bit]
[    0.262680] pci 0000:01:00.0: reg 24: [io  0xbc00-0xbc7f]
[    0.262684] pci 0000:01:00.0: reg 30: [mem 0xfbb80000-0xfbbfffff pref]
[    0.268021] pci 0000:00:02.0: PCI bridge to [bus 01-01]
[    0.268026] pci 0000:00:02.0:   bridge window [io  0xb000-0xbfff]
[    0.268029] pci 0000:00:02.0:   bridge window [mem 0xf8000000-0xfbbfffff]
[    0.268033] pci 0000:00:02.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.268077] pci 0000:02:00.0: reg 10: [io  0xc800-0xc8ff]
[    0.268091] pci 0000:02:00.0: reg 18: [mem 0xf6fff000-0xf6ffffff 64bit pref]
[    0.268100] pci 0000:02:00.0: reg 20: [mem 0xf6ff8000-0xf6ffbfff 64bit pref]
[    0.268106] pci 0000:02:00.0: reg 30: [mem 0xfbcf0000-0xfbcfffff pref]
[    0.268135] pci 0000:02:00.0: supports D1 D2
[    0.268136] pci 0000:02:00.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.268139] pci 0000:02:00.0: PME# disabled
[    0.276023] pci 0000:00:06.0: PCI bridge to [bus 02-02]
[    0.276028] pci 0000:00:06.0:   bridge window [io  0xc000-0xcfff]
[    0.276030] pci 0000:00:06.0:   bridge window [mem 0xfbc00000-0xfbcfffff]
[    0.276034] pci 0000:00:06.0:   bridge window [mem 0xf6f00000-0xf6ffffff 64bit pref]
[    0.276102] pci 0000:03:00.0: reg 10: [mem 0xfbdff800-0xfbdfffff 64bit]
[    0.276111] pci 0000:03:00.0: reg 18: [io  0xd800-0xd8ff]
[    0.276187] pci 0000:03:00.0: supports D2
[    0.276188] pci 0000:03:00.0: PME# supported from D2 D3hot D3cold
[    0.276193] pci 0000:03:00.0: PME# disabled
[    0.284028] pci 0000:00:07.0: PCI bridge to [bus 03-03]
[    0.284033] pci 0000:00:07.0:   bridge window [io  0xd000-0xdfff]
[    0.284035] pci 0000:00:07.0:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    0.284038] pci 0000:00:07.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.284083] pci 0000:04:00.0: reg 10: [io  0xec00-0xec07]
[    0.284088] pci 0000:04:00.0: reg 14: [io  0xe880-0xe883]
[    0.284093] pci 0000:04:00.0: reg 18: [io  0xe800-0xe807]
[    0.284098] pci 0000:04:00.0: reg 1c: [io  0xe480-0xe483]
[    0.284104] pci 0000:04:00.0: reg 20: [io  0xe400-0xe40f]
[    0.284109] pci 0000:04:00.0: reg 24: [mem 0xfbeffc00-0xfbefffff]
[    0.284139] pci 0000:04:00.0: supports D1
[    0.284140] pci 0000:04:00.0: PME# supported from D0 D1 D3hot
[    0.284144] pci 0000:04:00.0: PME# disabled
[    0.284156] pci 0000:04:00.0: disabling ASPM on pre-1.1 PCIe device.  You can enable it with 'pcie_aspm=force'
[    0.284162] pci 0000:00:09.0: PCI bridge to [bus 04-04]
[    0.284165] pci 0000:00:09.0:   bridge window [io  0xe000-0xefff]
[    0.284167] pci 0000:00:09.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    0.284170] pci 0000:00:09.0:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.284217] pci 0000:05:06.0: reg 10: [mem 0xfbfffc00-0xfbffffff]
[    0.284274] pci 0000:05:06.0: supports D1 D2
[    0.284317] pci 0000:00:14.4: PCI bridge to [bus 05-05] (subtractive decode)
[    0.284321] pci 0000:00:14.4:   bridge window [io  0xf000-0x0000] (disabled)
[    0.284325] pci 0000:00:14.4:   bridge window [mem 0xfbf00000-0xfbffffff]
[    0.284329] pci 0000:00:14.4:   bridge window [mem 0xfff00000-0x000fffff pref] (disabled)
[    0.284331] pci 0000:00:14.4:   bridge window [io  0x0000-0x0cf7] (subtractive decode)
[    0.284332] pci 0000:00:14.4:   bridge window [io  0x0d00-0xffff] (subtractive decode)
[    0.284334] pci 0000:00:14.4:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.284336] pci 0000:00:14.4:   bridge window [mem 0x000d0000-0x000dffff] (subtractive decode)
[    0.284338] pci 0000:00:14.4:   bridge window [mem 0xc0000000-0xdfffffff] (subtractive decode)
[    0.284339] pci 0000:00:14.4:   bridge window [mem 0xf0000000-0xfebfffff] (subtractive decode)
[    0.284352] pci_bus 0000:00: on NUMA node 0
[    0.284361] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0._PRT]
[    0.284551] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE2._PRT]
[    0.284606] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE6._PRT]
[    0.284655] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE7._PRT]
[    0.284697] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.PCE9._PRT]
[    0.284765] ACPI: PCI Interrupt Routing Table [\_SB_.PCI0.P0PC._PRT]
[    0.288625] ACPI: PCI Interrupt Link [LNKA] (IRQs *4 7 10 11 12 14 15)
[    0.288714] ACPI: PCI Interrupt Link [LNKB] (IRQs 4 *7 10 11 12 14 15)
[    0.288801] ACPI: PCI Interrupt Link [LNKC] (IRQs 4 7 *10 11 12 14 15)
[    0.288886] ACPI: PCI Interrupt Link [LNKD] (IRQs 4 7 10 *11 12 14 15)
[    0.288971] ACPI: PCI Interrupt Link [LNKE] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[    0.289056] ACPI: PCI Interrupt Link [LNKF] (IRQs 4 7 10 *11 12 14 15)
[    0.289142] ACPI: PCI Interrupt Link [LNKG] (IRQs 4 7 *10 11 12 14 15)
[    0.289230] ACPI: PCI Interrupt Link [LNKH] (IRQs 4 7 10 11 12 14 15) *0, disabled.
[    0.289262] HEST: Table is not found!
[    0.289321] vgaarb: device added: PCI:0000:01:00.0,decodes=io+mem,owns=io+mem,locks=none
[    0.289323] vgaarb: loaded
[    0.289417] SCSI subsystem initialized
[    0.289466] libata version 3.00 loaded.
[    0.289495] usbcore: registered new interface driver usbfs
[    0.289503] usbcore: registered new interface driver hub
[    0.289516] usbcore: registered new device driver usb
[    0.289661] ACPI: WMI: Mapper loaded
[    0.289662] PCI: Using ACPI for IRQ routing
[    0.289665] PCI: pci_cache_line_size set to 64 bytes
[    0.289740] reserve RAM buffer: 000000000009ec00 - 000000000009ffff 
[    0.289742] reserve RAM buffer: 00000000bff90000 - 00000000bfffffff 
[    0.289796] NetLabel: Initializing
[    0.289797] NetLabel:  domain hash size = 128
[    0.289798] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.289806] NetLabel:  unlabeled traffic allowed by default
[    0.289829] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
[    0.289832] hpet0: 4 comparators, 32-bit 14.318180 MHz counter
[    0.291859] Switching to clocksource tsc
[    0.297388] AppArmor: AppArmor Filesystem Enabled
[    0.297401] pnp: PnP ACPI init
[    0.297413] ACPI: bus type pnp registered
[    0.299414] pnp: PnP ACPI: found 12 devices
[    0.299416] ACPI: ACPI bus type pnp unregistered
[    0.299418] PnPBIOS: Disabled by ACPI PNP
[    0.299427] system 00:06: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.299429] system 00:06: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.299433] system 00:07: [io  0x04d0-0x04d1] has been reserved
[    0.299435] system 00:07: [io  0x040b] has been reserved
[    0.299437] system 00:07: [io  0x04d6] has been reserved
[    0.299439] system 00:07: [io  0x0c00-0x0c01] has been reserved
[    0.299441] system 00:07: [io  0x0c14] has been reserved
[    0.299442] system 00:07: [io  0x0c50-0x0c51] has been reserved
[    0.299444] system 00:07: [io  0x0c52] has been reserved
[    0.299446] system 00:07: [io  0x0c6c] has been reserved
[    0.299447] system 00:07: [io  0x0c6f] has been reserved
[    0.299449] system 00:07: [io  0x0cd0-0x0cd1] has been reserved
[    0.299451] system 00:07: [io  0x0cd2-0x0cd3] has been reserved
[    0.299452] system 00:07: [io  0x0cd4-0x0cd5] has been reserved
[    0.299454] system 00:07: [io  0x0cd6-0x0cd7] has been reserved
[    0.299456] system 00:07: [io  0x0cd8-0x0cdf] has been reserved
[    0.299458] system 00:07: [io  0x0b00-0x0b3f] has been reserved
[    0.299459] system 00:07: [io  0x0800-0x089f] has been reserved
[    0.299461] system 00:07: [io  0x0b00-0x0b0f] has been reserved
[    0.299463] system 00:07: [io  0x0b20-0x0b3f] has been reserved
[    0.299465] system 00:07: [io  0x0900-0x090f] has been reserved
[    0.299467] system 00:07: [io  0x0910-0x091f] has been reserved
[    0.299468] system 00:07: [io  0xfe00-0xfefe] has been reserved
[    0.299471] system 00:07: [mem 0xffb80000-0xffbfffff] has been reserved
[    0.299473] system 00:07: [mem 0xfec10000-0xfec1001f] has been reserved
[    0.299477] system 00:09: [io  0x0230-0x023f] has been reserved
[    0.299478] system 00:09: [io  0x0290-0x029f] has been reserved
[    0.299480] system 00:09: [io  0x0f40-0x0f4f] has been reserved
[    0.299482] system 00:09: [io  0x0a30-0x0a3f] has been reserved
[    0.299485] system 00:0a: [mem 0xe0000000-0xefffffff] has been reserved
[    0.299489] system 00:0b: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.299491] system 00:0b: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.299492] system 00:0b: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.299494] system 00:0b: [mem 0x00100000-0xbfffffff] could not be reserved
[    0.299496] system 00:0b: [mem 0xfec00000-0xffffffff] could not be reserved
[    0.334843] pci 0000:00:02.0: PCI bridge to [bus 01-01]
[    0.334845] pci 0000:00:02.0:   bridge window [io  0xb000-0xbfff]
[    0.334848] pci 0000:00:02.0:   bridge window [mem 0xf8000000-0xfbbfffff]
[    0.334850] pci 0000:00:02.0:   bridge window [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.334853] pci 0000:00:06.0: PCI bridge to [bus 02-02]
[    0.334855] pci 0000:00:06.0:   bridge window [io  0xc000-0xcfff]
[    0.334858] pci 0000:00:06.0:   bridge window [mem 0xfbc00000-0xfbcfffff]
[    0.334860] pci 0000:00:06.0:   bridge window [mem 0xf6f00000-0xf6ffffff 64bit pref]
[    0.334863] pci 0000:00:07.0: PCI bridge to [bus 03-03]
[    0.334865] pci 0000:00:07.0:   bridge window [io  0xd000-0xdfff]
[    0.334867] pci 0000:00:07.0:   bridge window [mem 0xfbd00000-0xfbdfffff]
[    0.334869] pci 0000:00:07.0:   bridge window [mem pref disabled]
[    0.334872] pci 0000:00:09.0: PCI bridge to [bus 04-04]
[    0.334874] pci 0000:00:09.0:   bridge window [io  0xe000-0xefff]
[    0.334876] pci 0000:00:09.0:   bridge window [mem 0xfbe00000-0xfbefffff]
[    0.334878] pci 0000:00:09.0:   bridge window [mem pref disabled]
[    0.334881] pci 0000:00:14.4: PCI bridge to [bus 05-05]
[    0.334882] pci 0000:00:14.4:   bridge window [io  disabled]
[    0.334887] pci 0000:00:14.4:   bridge window [mem 0xfbf00000-0xfbffffff]
[    0.334890] pci 0000:00:14.4:   bridge window [mem pref disabled]
[    0.334900]   alloc irq_desc for 18 on node -1
[    0.334901]   alloc kstat_irqs on node -1
[    0.334905] pci 0000:00:02.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.334908] pci 0000:00:02.0: setting latency timer to 64
[    0.334913] pci 0000:00:06.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.334915] pci 0000:00:06.0: setting latency timer to 64
[    0.334919]   alloc irq_desc for 19 on node -1
[    0.334920]   alloc kstat_irqs on node -1
[    0.334922] pci 0000:00:07.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    0.334925] pci 0000:00:07.0: setting latency timer to 64
[    0.334928]   alloc irq_desc for 17 on node -1
[    0.334930]   alloc kstat_irqs on node -1
[    0.334932] pci 0000:00:09.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.334934] pci 0000:00:09.0: setting latency timer to 64
[    0.334940] pci_bus 0000:00: resource 4 [io  0x0000-0x0cf7]
[    0.334942] pci_bus 0000:00: resource 5 [io  0x0d00-0xffff]
[    0.334944] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.334945] pci_bus 0000:00: resource 7 [mem 0x000d0000-0x000dffff]
[    0.334947] pci_bus 0000:00: resource 8 [mem 0xc0000000-0xdfffffff]
[    0.334949] pci_bus 0000:00: resource 9 [mem 0xf0000000-0xfebfffff]
[    0.334951] pci_bus 0000:01: resource 0 [io  0xb000-0xbfff]
[    0.334952] pci_bus 0000:01: resource 1 [mem 0xf8000000-0xfbbfffff]
[    0.334954] pci_bus 0000:01: resource 2 [mem 0xd0000000-0xdfffffff 64bit pref]
[    0.334956] pci_bus 0000:02: resource 0 [io  0xc000-0xcfff]
[    0.334958] pci_bus 0000:02: resource 1 [mem 0xfbc00000-0xfbcfffff]
[    0.334959] pci_bus 0000:02: resource 2 [mem 0xf6f00000-0xf6ffffff 64bit pref]
[    0.334961] pci_bus 0000:03: resource 0 [io  0xd000-0xdfff]
[    0.334963] pci_bus 0000:03: resource 1 [mem 0xfbd00000-0xfbdfffff]
[    0.334964] pci_bus 0000:04: resource 0 [io  0xe000-0xefff]
[    0.334966] pci_bus 0000:04: resource 1 [mem 0xfbe00000-0xfbefffff]
[    0.334968] pci_bus 0000:05: resource 1 [mem 0xfbf00000-0xfbffffff]
[    0.334970] pci_bus 0000:05: resource 4 [io  0x0000-0x0cf7]
[    0.334971] pci_bus 0000:05: resource 5 [io  0x0d00-0xffff]
[    0.334973] pci_bus 0000:05: resource 6 [mem 0x000a0000-0x000bffff]
[    0.334974] pci_bus 0000:05: resource 7 [mem 0x000d0000-0x000dffff]
[    0.334976] pci_bus 0000:05: resource 8 [mem 0xc0000000-0xdfffffff]
[    0.334978] pci_bus 0000:05: resource 9 [mem 0xf0000000-0xfebfffff]
[    0.335002] NET: Registered protocol family 2
[    0.335046] IP route cache hash table entries: 32768 (order: 5, 131072 bytes)
[    0.335198] TCP established hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.335555] TCP bind hash table entries: 65536 (order: 7, 524288 bytes)
[    0.335735] TCP: Hash tables configured (established 131072 bind 65536)
[    0.335736] TCP reno registered
[    0.335739] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.335745] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.335810] NET: Registered protocol family 1
[    0.400006] Freeing initrd memory: 10512k freed
[    0.468107] pci 0000:01:00.0: Boot video device
[    0.468120] PCI: CLS 64 bytes, default 64
[    0.468283] cpufreq-nforce2: No nForce2 chipset.
[    0.468300] Scanning for low memory corruption every 60 seconds
[    0.468367] audit: initializing netlink socket (disabled)
[    0.468374] type=2000 audit(1294251157.468:1): initialized
[    0.475019] highmem bounce pool size: 64 pages
[    0.475022] HugeTLB registered 4 MB page size, pre-allocated 0 pages
[    0.475920] VFS: Disk quotas dquot_6.5.2
[    0.475981] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)
[    0.476383] fuse init (API version 7.14)
[    0.476436] msgmni has been set to 1677
[    0.478077] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 253)
[    0.478079] io scheduler noop registered
[    0.478080] io scheduler deadline registered
[    0.478090] io scheduler cfq registered (default)
[    0.478169] pcieport 0000:00:02.0: setting latency timer to 64
[    0.478186]   alloc irq_desc for 40 on node -1
[    0.478187]   alloc kstat_irqs on node -1
[    0.478193] pcieport 0000:00:02.0: irq 40 for MSI/MSI-X
[    0.478229] pcieport 0000:00:06.0: setting latency timer to 64
[    0.478243]   alloc irq_desc for 41 on node -1
[    0.478245]   alloc kstat_irqs on node -1
[    0.478248] pcieport 0000:00:06.0: irq 41 for MSI/MSI-X
[    0.478281] pcieport 0000:00:07.0: setting latency timer to 64
[    0.478296]   alloc irq_desc for 42 on node -1
[    0.478297]   alloc kstat_irqs on node -1
[    0.478300] pcieport 0000:00:07.0: irq 42 for MSI/MSI-X
[    0.478331] pcieport 0000:00:09.0: setting latency timer to 64
[    0.478346]   alloc irq_desc for 43 on node -1
[    0.478347]   alloc kstat_irqs on node -1
[    0.478350] pcieport 0000:00:09.0: irq 43 for MSI/MSI-X
[    0.478395] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.478408] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.478518] input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input0
[    0.478521] ACPI: Power Button [PWRB]
[    0.478549] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.478552] ACPI: Power Button [PWRF]
[    0.478780] ACPI: acpi_idle registered with cpuidle
[    0.480709] ERST: Table is not found!
[    0.480749] isapnp: Scanning for PnP cards...
[    0.480863] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled
[    0.481677] brd: module loaded
[    0.481977] loop: module loaded
[    0.482102]   alloc irq_desc for 16 on node -1
[    0.482103]   alloc kstat_irqs on node -1
[    0.482108] pata_acpi 0000:00:14.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.482129] pata_acpi 0000:00:14.1: setting latency timer to 64
[    0.482146] pata_acpi 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    0.482158] pata_acpi 0000:04:00.0: setting latency timer to 64
[    0.482165] pata_acpi 0000:04:00.0: PCI INT A disabled
[    0.482333] Fixed MDIO Bus: probed
[    0.482352] PPP generic driver version 2.4.2
[    0.482373] tun: Universal TUN/TAP device driver, 1.6
[    0.482374] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.482413] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.482425] ehci_hcd 0000:00:12.2: PCI INT B -> GSI 17 (level, low) -> IRQ 17
[    0.482435] ehci_hcd 0000:00:12.2: EHCI Host Controller
[    0.482454] ehci_hcd 0000:00:12.2: new USB bus registered, assigned bus number 1
[    0.482476] ehci_hcd 0000:00:12.2: debug port 1
[    0.482494] ehci_hcd 0000:00:12.2: irq 17, io mem 0xf7fff800
[    0.492034] ehci_hcd 0000:00:12.2: USB 2.0 started, EHCI 1.00
[    0.492136] hub 1-0:1.0: USB hub found
[    0.492139] hub 1-0:1.0: 6 ports detected
[    0.492202] ehci_hcd 0000:00:13.2: PCI INT B -> GSI 19 (level, low) -> IRQ 19
[    0.492218] ehci_hcd 0000:00:13.2: EHCI Host Controller
[    0.492240] ehci_hcd 0000:00:13.2: new USB bus registered, assigned bus number 2
[    0.492262] ehci_hcd 0000:00:13.2: debug port 1
[    0.492283] ehci_hcd 0000:00:13.2: irq 19, io mem 0xf7fff400
[    0.504034] ehci_hcd 0000:00:13.2: USB 2.0 started, EHCI 1.00
[    0.504136] hub 2-0:1.0: USB hub found
[    0.504139] hub 2-0:1.0: 6 ports detected
[    0.504197] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.504210] ohci_hcd 0000:00:12.0: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.504226] ohci_hcd 0000:00:12.0: OHCI Host Controller
[    0.504248] ohci_hcd 0000:00:12.0: new USB bus registered, assigned bus number 3
[    0.504273] ohci_hcd 0000:00:12.0: irq 16, io mem 0xf7ffd000
[    0.564121] hub 3-0:1.0: USB hub found
[    0.564127] hub 3-0:1.0: 3 ports detected
[    0.564180] ohci_hcd 0000:00:12.1: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    0.564194] ohci_hcd 0000:00:12.1: OHCI Host Controller
[    0.564216] ohci_hcd 0000:00:12.1: new USB bus registered, assigned bus number 4
[    0.564232] ohci_hcd 0000:00:12.1: irq 16, io mem 0xf7ffe000
[    0.624132] hub 4-0:1.0: USB hub found
[    0.624138] hub 4-0:1.0: 3 ports detected
[    0.624191] ohci_hcd 0000:00:13.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.624207] ohci_hcd 0000:00:13.0: OHCI Host Controller
[    0.624232] ohci_hcd 0000:00:13.0: new USB bus registered, assigned bus number 5
[    0.624255] ohci_hcd 0000:00:13.0: irq 18, io mem 0xf7ffb000
[    0.684137] hub 5-0:1.0: USB hub found
[    0.684144] hub 5-0:1.0: 3 ports detected
[    0.684196] ohci_hcd 0000:00:13.1: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.684210] ohci_hcd 0000:00:13.1: OHCI Host Controller
[    0.684233] ohci_hcd 0000:00:13.1: new USB bus registered, assigned bus number 6
[    0.684249] ohci_hcd 0000:00:13.1: irq 18, io mem 0xf7ffc000
[    0.744138] hub 6-0:1.0: USB hub found
[    0.744144] hub 6-0:1.0: 3 ports detected
[    0.744204] ohci_hcd 0000:00:14.5: PCI INT C -> GSI 18 (level, low) -> IRQ 18
[    0.744220] ohci_hcd 0000:00:14.5: OHCI Host Controller
[    0.744242] ohci_hcd 0000:00:14.5: new USB bus registered, assigned bus number 7
[    0.744257] ohci_hcd 0000:00:14.5: irq 18, io mem 0xf7ffa000
[    0.804057] usb 1-1: new high speed USB device using ehci_hcd and address 2
[    0.804174] hub 7-0:1.0: USB hub found
[    0.804179] hub 7-0:1.0: 2 ports detected
[    0.804229] uhci_hcd: USB Universal Host Controller Interface driver
[    0.804283] PNP: PS/2 Controller [PNP0303:PS2K] at 0x60,0x64 irq 1
[    0.804284] PNP: PS/2 appears to have AUX port disabled, if this is incorrect please boot with i8042.nopnp
[    0.804408] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.804447] mice: PS/2 mouse device common for all mice
[    0.804508] rtc_cmos 00:02: RTC can wake from S4
[    0.804532] rtc_cmos 00:02: rtc core: registered rtc_cmos as rtc0
[    0.804553] rtc0: alarms up to one month, y3k, 114 bytes nvram, hpet irqs
[    0.804616] device-mapper: uevent: version 1.0.3
[    0.804685] device-mapper: ioctl: 4.17.0-ioctl (2010-03-05) initialised: dm-devel@redhat.com
[    0.804727] device-mapper: multipath: version 1.1.1 loaded
[    0.804729] device-mapper: multipath round-robin: version 1.0.0 loaded
[    0.804794] EISA: Probing bus 0 at eisa.0
[    0.804795] EISA: Cannot allocate resource for mainboard
[    0.804796] Cannot allocate resource for EISA slot 1
[    0.804798] Cannot allocate resource for EISA slot 2
[    0.804799] Cannot allocate resource for EISA slot 3
[    0.804800] Cannot allocate resource for EISA slot 4
[    0.804801] Cannot allocate resource for EISA slot 5
[    0.804803] Cannot allocate resource for EISA slot 6
[    0.804804] Cannot allocate resource for EISA slot 7
[    0.804805] Cannot allocate resource for EISA slot 8
[    0.804806] EISA: Detected 0 cards.
[    0.804847] cpuidle: using governor ladder
[    0.804848] cpuidle: using governor menu
[    0.805039] TCP cubic registered
[    0.805116] NET: Registered protocol family 10
[    0.805347] lo: Disabled Privacy Extensions
[    0.805488] NET: Registered protocol family 17
[    0.805505] powernow-k8: Found 1 AMD Athlon(tm) II X2 250 Processor (2 cpu cores) (version 2.20.00)
[    0.805536] powernow-k8:    0 : pstate 0 (3000 MHz)
[    0.805538] powernow-k8:    1 : pstate 1 (2300 MHz)
[    0.805539] powernow-k8:    2 : pstate 2 (1800 MHz)
[    0.805540] powernow-k8:    3 : pstate 3 (800 MHz)
[    0.828444] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.834794] isapnp: No Plug & Play device found
[    0.834820] Using IPI No-Shortcut mode
[    0.834894] PM: Resume from disk failed.
[    0.834901] registered taskstats version 1
[    0.835132]   Magic number: 11:420:240
[    0.835204] rtc_cmos 00:02: setting system clock to 2011-01-05 18:12:38 UTC (1294251158)
[    0.835206] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.835207] EDD information not available.
[    0.835259] Freeing unused kernel memory: 684k freed
[    0.835466] Write protecting the kernel text: 4932k
[    0.835491] Write protecting the kernel read-only data: 1976k
[    0.850164] udev[74]: starting version 163
[    0.900322] scsi0 : pata_atiixp
[    0.922809] r8169 Gigabit Ethernet driver 2.3LK-NAPI loaded
[    0.922827] r8169 0000:02:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    0.922857] r8169 0000:02:00.0: setting latency timer to 64
[    0.922887]   alloc irq_desc for 44 on node -1
[    0.922888]   alloc kstat_irqs on node -1
[    0.922898] r8169 0000:02:00.0: irq 44 for MSI/MSI-X
[    0.923233] r8169 0000:02:00.0: eth0: RTL8168d/8111d at 0xf80ee000, 90:e6:ba:cf:50:85, XID 083000c0 IRQ 44
[    0.926034] scsi1 : pata_atiixp
[    0.926995] ata1: PATA max UDMA/100 cmd 0x1f0 ctl 0x3f6 bmdma 0xff00 irq 14
[    0.926997] ata2: PATA max UDMA/100 cmd 0x170 ctl 0x376 bmdma 0xff08 irq 15
[    0.970433] ahci 0000:00:11.0: version 3.0
[    0.970444]   alloc irq_desc for 22 on node -1
[    0.970446]   alloc kstat_irqs on node -1
[    0.970451] ahci 0000:00:11.0: PCI INT A -> GSI 22 (level, low) -> IRQ 22
[    0.970483]   alloc irq_desc for 45 on node -1
[    0.970484]   alloc kstat_irqs on node -1
[    0.970493] ahci 0000:00:11.0: irq 45 for MSI/MSI-X
[    0.970588] ahci 0000:00:11.0: AHCI 0001.0100 32 slots 6 ports 3 Gbps 0x3f impl SATA mode
[    0.970590] ahci 0000:00:11.0: flags: 64bit ncq sntf ilck pm led clo pmp pio slum part ccc 
[    0.970881] scsi2 : ahci
[    0.970948] scsi3 : ahci
[    0.970991] scsi4 : ahci
[    0.971038] scsi5 : ahci
[    0.971081] scsi6 : ahci
[    0.971125] scsi7 : ahci
[    0.971160] ata3: SATA max UDMA/133 abar m1024@0xf7fffc00 port 0xf7fffd00 irq 45
[    0.971163] ata4: SATA max UDMA/133 abar m1024@0xf7fffc00 port 0xf7fffd80 irq 45
[    0.971166] ata5: SATA max UDMA/133 abar m1024@0xf7fffc00 port 0xf7fffe00 irq 45
[    0.971169] ata6: SATA max UDMA/133 abar m1024@0xf7fffc00 port 0xf7fffe80 irq 45
[    0.971172] ata7: SATA max UDMA/133 abar m1024@0xf7fffc00 port 0xf7ffff00 irq 45
[    0.971174] ata8: SATA max UDMA/133 abar m1024@0xf7fffc00 port 0xf7ffff80 irq 45
[    1.068541] ata1.00: ATAPI: HL-DT-STDVD-RAM GH22LP20, 1.02, max UDMA/66
[    1.084511] ata1.00: configured for UDMA/66
[    1.086705] scsi 0:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GH22LP20 1.02 PQ: 0 ANSI: 5
[    1.090231] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.090234] Uniform CD-ROM driver Revision: 3.20
[    1.090328] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    1.090374] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    1.240048] ata6: SATA link down (SStatus 0 SControl 300)
[    1.240077] ata5: SATA link down (SStatus 0 SControl 300)
[    1.240378] ata7: SATA link down (SStatus 0 SControl 300)
[    1.240425] ata8: SATA link down (SStatus 0 SControl 300)
[    1.404056] ata3: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.404061] ata4: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
[    1.404653] ata3.00: ATA-7: WDC WD2500JS-00MHB1, 10.02E02, max UDMA/133
[    1.404656] ata3.00: 488397168 sectors, multi 16: LBA48 
[    1.404706] ata4.00: ATA-7: Maxtor 7Y250M0, YAR51HW0, max UDMA/133
[    1.404708] ata4.00: 490234752 sectors, multi 0: LBA48 
[    1.405300] ata3.00: configured for UDMA/133
[    1.405490] ata4.00: configured for UDMA/133
[    1.420165] scsi 2:0:0:0: Direct-Access     ATA      WDC WD2500JS-00M 10.0 PQ: 0 ANSI: 5
[    1.420293] sd 2:0:0:0: Attached scsi generic sg1 type 0
[    1.420368] sd 2:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    1.420415] scsi 3:0:0:0: Direct-Access     ATA      Maxtor 7Y250M0   YAR5 PQ: 0 ANSI: 5
[    1.420426] sd 2:0:0:0: [sda] Write Protect is off
[    1.420428] sd 2:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    1.420441] sd 2:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.420543]  sda:
[    1.420555] sd 3:0:0:0: Attached scsi generic sg2 type 0
[    1.420575] sd 3:0:0:0: [sdb] 490234752 512-byte logical blocks: (251 GB/233 GiB)
[    1.420623] sd 3:0:0:0: [sdb] Write Protect is off
[    1.420625] sd 3:0:0:0: [sdb] Mode Sense: 00 3a 00 00
[    1.420636] sd 3:0:0:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    1.420758]  sdb:
[    1.436035] usb 4-2: new full speed USB device using ohci_hcd and address 2
[    1.439866]  sdb1 sdb2
[    1.440044]  sda1 sda2 sda3 sda4
[    1.440102] sd 3:0:0:0: [sdb] Attached SCSI disk
[    1.451276] sd 2:0:0:0: [sda] Attached SCSI disk
[    1.452676] firewire_ohci 0000:03:00.0: PCI INT A -> GSI 19 (level, low) -> IRQ 19
[    1.452682] firewire_ohci 0000:03:00.0: setting latency timer to 64
[    1.453738] pata_marvell 0000:04:00.0: PCI INT A -> GSI 17 (level, low) -> IRQ 17
[    1.453758] pata_marvell 0000:04:00.0: setting latency timer to 64
[    1.454594] scsi8 : pata_marvell
[    1.454711] scsi9 : pata_marvell
[    1.454738] ata9: PATA max UDMA/100 cmd 0xec00 ctl 0xe880 bmdma 0xe400 irq 17
[    1.454740] ata10: PATA max UDMA/133 cmd 0xe800 ctl 0xe480 bmdma 0xe408 irq 17
[    1.548030] firewire_ohci: Added fw-ohci device 0000:03:00.0, OHCI v1.10, 4 IR + 8 IT contexts, quirks 0x1
[    1.874521] EXT4-fs (sda4): mounted filesystem with ordered data mode. Opts: (null)
[    2.040099] firewire_core: created device fw0: GUID 001e8c00002b3009, S400
[    2.048036] usb 5-1: new low speed USB device using ohci_hcd and address 2
[    2.480365] usb 3-2: new full speed USB device using ohci_hcd and address 2
[    3.572908] Adding 5999612k swap on /dev/sda3.  Priority:-1 extents:1 across:5999612k 
[    5.020289] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro
[    5.039893] udev[413]: starting version 163
[    6.220195] type=1400 audit(1294247563.882:2): apparmor="STATUS" operation="profile_load" name="/sbin/dhclient3" pid=668 comm="apparmor_parser"
[    6.220394] type=1400 audit(1294247563.882:3): apparmor="STATUS" operation="profile_load" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=668 comm="apparmor_parser"
[    6.220507] type=1400 audit(1294247563.882:4): apparmor="STATUS" operation="profile_load" name="/usr/lib/connman/scripts/dhclient-script" pid=668 comm="apparmor_parser"
[    6.347093] ACPI: resource piix4_smbus [io  0x0b00-0x0b07] conflicts with ACPI region SOR1 [??? 0x00000b00-0x00000b0f flags 0x31]
[    6.347096] ACPI: If an ACPI driver is available for this device, you should use it instead of the native driver
[    6.531778] Linux agpgart interface v0.103
[    6.591313] usbcore: registered new interface driver hiddev
[    6.596416] input: Logitech USB-PS/2 Optical Mouse as /devices/pci0000:00/0000:00:13.0/usb5/5-1/5-1:1.0/input/input3
[    6.596491] generic-usb 0003:046D:C051.0001: input,hidraw0: USB HID v1.10 Mouse [Logitech USB-PS/2 Optical Mouse] on usb-0000:00:13.0-1/input0
[    6.596507] usbcore: registered new interface driver usbhid
[    6.596509] usbhid: USB HID core driver
[    6.723654] lp: driver loaded but no devices found
[    6.759042] Linux video capture interface: v2.00
[    6.985276] Bluetooth: Core ver 2.15
[    6.985307] NET: Registered protocol family 31
[    6.985308] Bluetooth: HCI device and connection manager initialized
[    6.985311] Bluetooth: HCI socket layer initialized
[    7.043790] gspca: main v2.9.0 registered
[    7.047742] saa7130/34: v4l2 driver version 0.2.16 loaded
[    7.047782]   alloc irq_desc for 21 on node -1
[    7.047784]   alloc kstat_irqs on node -1
[    7.047789] saa7134 0000:05:06.0: PCI INT A -> GSI 21 (level, low) -> IRQ 21
[    7.047796] saa7134[0]: found at 0000:05:06.0, rev: 1, irq: 21, latency: 64, mmio: 0xfbfffc00
[    7.047802] saa7134[0]: subsystem: 1894:a006, board: KNC One TV-Station DVR [card=24,autodetected]
[    7.047817] saa7134[0]: board init: gpio is 830000
[    7.052343] gspca: probing 046d:0928
[    7.163342] input: spca561 as /devices/pci0000:00/0000:00:12.0/usb3/3-2/input/input4
[    7.163408] gspca: video0 created
[    7.163422] usbcore: registered new interface driver spca561
[    7.163423] spca561: registered
[    7.208027] saa7134[0]: i2c eeprom 00: 94 18 06 a0 06 80 00 01 00 00 00 00 00 00 01 00
[    7.208034] saa7134[0]: i2c eeprom 10: 00 ff 86 0e ff 20 ff ff ff ff ff ff ff ff ff ff
[    7.208040] saa7134[0]: i2c eeprom 20: 01 40 01 02 02 03 01 03 06 ff 01 df ff ff ff ff
[    7.208046] saa7134[0]: i2c eeprom 30: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208052] saa7134[0]: i2c eeprom 40: ff 05 00 c0 86 ff ff ff ff ff ff ff ff ff ff ff
[    7.208057] saa7134[0]: i2c eeprom 50: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208063] saa7134[0]: i2c eeprom 60: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208068] saa7134[0]: i2c eeprom 70: 00 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208074] saa7134[0]: i2c eeprom 80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208079] saa7134[0]: i2c eeprom 90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208085] saa7134[0]: i2c eeprom a0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208090] saa7134[0]: i2c eeprom b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208096] saa7134[0]: i2c eeprom c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208101] saa7134[0]: i2c eeprom d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208107] saa7134[0]: i2c eeprom e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.208112] saa7134[0]: i2c eeprom f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
[    7.384293] Bluetooth: Generic Bluetooth USB driver ver 0.6
[    7.384510] usbcore: registered new interface driver btusb
[    7.495620] IR NEC protocol handler initialized
[    7.602473] IR RC5(x) protocol handler initialized
[    7.623467] IR RC6 protocol handler initialized
[    7.653373] IR JVC protocol handler initialized
[    7.664439] tuner 0-0043: chip found @ 0x86 (saa7134[0])
[    7.740612] IR Sony protocol handler initialized
[    7.759287] tda9887 0-0043: creating new instance
[    7.759289] tda9887 0-0043: tda988[5/6/7] found
[    7.760654] lirc_dev: IR Remote Control driver registered, major 249 
[    7.761806] IR LIRC bridge handler initialized
[    7.844361] All bytes are equal. It is not a TEA5767
[    7.844430] tuner 0-0060: chip found @ 0xc0 (saa7134[0])
[    7.924364] tuner-simple 0-0060: creating new instance
[    7.924368] tuner-simple 0-0060: type set to 38 (Philips PAL/SECAM multi (FM1216ME MK3))
[    8.030249] saa6752hs 0-0020: chip found @ 0x40 (saa7134[0])
[    8.052427] saa7134[0]: registered device video1 [v4l2]
[    8.052451] saa7134[0]: registered device vbi0
[    8.052467] saa7134[0]: registered device radio0
[    8.089704] HDA Intel 0000:00:14.2: PCI INT A -> GSI 16 (level, low) -> IRQ 16
[    8.179436] saa7134 ALSA driver for DMA sound loaded
[    8.179459] saa7134[0]/alsa: saa7134[0] at 0xfbfffc00 irq 21 registered as card -2
[    8.181538] saa7134[0]: registered device video2 [mpeg]
[    8.998137] nvidia: module license 'NVIDIA' taints kernel.
[    8.998141] Disabling lock debugging due to kernel taint
[    9.405673] nvidia 0000:01:00.0: PCI INT A -> GSI 18 (level, low) -> IRQ 18
[    9.405680] nvidia 0000:01:00.0: setting latency timer to 64
[    9.405683] vgaarb: device changed decodes: PCI:0000:01:00.0,olddecodes=io+mem,decodes=none:owns=io+mem
[    9.405783] NVRM: loading NVIDIA UNIX x86 Kernel Module  260.19.06  Mon Sep 13 06:35:06 PDT 2010
[    9.587116] usblp0: USB Bidirectional printer dev 2 if 1 alt 0 proto 2 vid 0x03F0 pid 0x2504
[    9.587293] usbcore: registered new interface driver usblp
[   11.118201] type=1400 audit(1294247568.778:5): apparmor="STATUS" operation="profile_replace" name="/sbin/dhclient3" pid=1060 comm="apparmor_parser"
[   11.118402] type=1400 audit(1294247568.778:6): apparmor="STATUS" operation="profile_replace" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=1060 comm="apparmor_parser"
[   11.118515] type=1400 audit(1294247568.778:7): apparmor="STATUS" operation="profile_replace" name="/usr/lib/connman/scripts/dhclient-script" pid=1060 comm="apparmor_parser"
[   11.139126] type=1400 audit(1294247568.798:8): apparmor="STATUS" operation="profile_load" name="/usr/share/gdm/guest-session/Xsession" pid=1059 comm="apparmor_parser"
[   11.151814] type=1400 audit(1294247568.810:9): apparmor="STATUS" operation="profile_load" name="/usr/lib/cups/backend/cups-pdf" pid=1063 comm="apparmor_parser"
[   11.152074] type=1400 audit(1294247568.814:10): apparmor="STATUS" operation="profile_load" name="/usr/sbin/cupsd" pid=1063 comm="apparmor_parser"
[   11.492457] type=1400 audit(1294247569.154:11): apparmor="STATUS" operation="profile_load" name="/usr/sbin/tcpdump" pid=1064 comm="apparmor_parser"
[   11.503670] type=1400 audit(1294247569.162:12): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince" pid=1061 comm="apparmor_parser"
[   11.506230] type=1400 audit(1294247569.166:13): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-previewer" pid=1061 comm="apparmor_parser"
[   11.507812] type=1400 audit(1294247569.166:14): apparmor="STATUS" operation="profile_load" name="/usr/bin/evince-thumbnailer" pid=1061 comm="apparmor_parser"
[   12.404045] ppdev: user-space parallel port driver
[   14.404993] Bluetooth: L2CAP ver 2.14
[   14.404995] Bluetooth: L2CAP socket layer initialized
[   14.464652] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   14.464655] Bluetooth: BNEP filters: protocol multicast
[   14.488662] Bluetooth: SCO (Voice Link) ver 0.6
[   14.488664] Bluetooth: SCO socket layer initialized
[   14.764646] r8169 0000:02:00.0: eth0: link up
[   14.764651] r8169 0000:02:00.0: eth0: link up
[   14.850926] Bluetooth: RFCOMM TTY layer initialized
[   14.850929] Bluetooth: RFCOMM socket layer initialized
[   14.850931] Bluetooth: RFCOMM ver 1.11
[   16.137990] usb 1-1: usbfs: interface 1 claimed by usblp while 'usb' sets config #1
[   18.669349] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro,commit=0
[   25.120019] eth0: no IPv6 routers present
[   25.730491] EXT4-fs (sda4): re-mounted. Opts: errors=remount-ro,commit=0
____________________________________________

Using built-in specs.
Target: i686-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 4.4.4-14ubuntu5' --with-bugurl=file:///usr/share/doc/gcc-4.4/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.4 --enable-shared --enable-multiarch --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.4 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-objc-gc --enable-targets=all --disable-werror --with-arch-32=i686 --with-tune=generic --enable-checking=release --build=i686-linux-gnu --host=i686-linux-gnu --target=i686-linux-gnu
Thread model: posix
gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) 
____________________________________________

xset -q:

Keyboard Control:
  auto repeat:  on    key click percent:  0    LED mask:  00000002
  XKB indicators:
    00: Caps Lock:   off    01: Num Lock:    on     02: Scroll Lock: off
    03: Compose:     off    04: Kana:        off    05: Sleep:       off
    06: Suspend:     off    07: Mute:        off    08: Misc:        off
    09: Mail:        off    10: Charging:    off    11: Shift Lock:  off
    12: Group 2:     off    13: Mouse Keys:  off
  auto repeat delay:  500    repeat rate:  30
  auto repeating keys:  00ffffffdffffbbf
                        fadfffefffedffff
                        9fffffffffffffff
                        fff7ffffffffffff
  bell percent:  0    bell pitch:  400    bell duration:  100
Pointer Control:
  acceleration:  2/1    threshold:  4
Screen Saver:
  prefer blanking:  yes    allow exposures:  yes
  timeout:  0    cycle:  0
Colors:
  default colormap:  0x20    BlackPixel:  0    WhitePixel:  16777215
Font Path:
  /usr/share/fonts/X11/misc,/usr/share/fonts/X11/100dpi/:unscaled,/usr/share/fonts/X11/75dpi/:unscaled,/usr/share/fonts/X11/Type1,/usr/share/fonts/X11/100dpi,/usr/share/fonts/X11/75dpi,/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType,built-ins
DPMS (Energy Star):
  Standby: 0    Suspend: 0    Off: 0
  DPMS is Enabled
  Monitor is On
____________________________________________

nvidia-settings -q all:


Attributes queryable via opelig-ul:0.0:

  Attribute 'OperatingSystem' (opelig-ul:0.0): 0.
    The valid values for 'OperatingSystem' are in the range 0 - 2
    (inclusive).
    'OperatingSystem' is a read-only attribute.
    'OperatingSystem' can use the following target types: X Screen, GPU.

  Attribute 'NvidiaDriverVersion' (opelig-ul:0.0): 260.19.06 
    'NvidiaDriverVersion' is a string attribute.
    'NvidiaDriverVersion' is a read-only attribute.
    'NvidiaDriverVersion' can use the following target types: X Screen,
    GPU.

  Attribute 'NvControlVersion' (opelig-ul:0.0): 1.24 
    'NvControlVersion' is a string attribute.
    'NvControlVersion' is a read-only attribute.
    'NvControlVersion' can use the following target types: X Screen.

  Attribute 'GLXServerVersion' (opelig-ul:0.0): 1.4 
    'GLXServerVersion' is a string attribute.
    'GLXServerVersion' is a read-only attribute.
    'GLXServerVersion' can use the following target types: X Screen.

  Attribute 'GLXClientVersion' (opelig-ul:0.0): 1.4 
    'GLXClientVersion' is a string attribute.
    'GLXClientVersion' is a read-only attribute.
    'GLXClientVersion' can use the following target types: X Screen.

  Attribute 'OpenGLVersion' (opelig-ul:0.0): 3.3.0 NVIDIA 260.19.06 
    'OpenGLVersion' is a string attribute.
    'OpenGLVersion' is a read-only attribute.
    'OpenGLVersion' can use the following target types: X Screen.

  Attribute 'XRandRVersion' (opelig-ul:0.0): 1.3 
    'XRandRVersion' is a string attribute.
    'XRandRVersion' is a read-only attribute.
    'XRandRVersion' can use the following target types: X Screen.

  Attribute 'XF86VidModeVersion' (opelig-ul:0.0): 2.2 
    'XF86VidModeVersion' is a string attribute.
    'XF86VidModeVersion' is a read-only attribute.
    'XF86VidModeVersion' can use the following target types: X Screen.

  Attribute 'XvVersion' (opelig-ul:0.0): 2.2 
    'XvVersion' is a string attribute.
    'XvVersion' is a read-only attribute.
    'XvVersion' can use the following target types: X Screen.

  Attribute 'TwinView' (opelig-ul:0.0): 0.
    'TwinView' is a boolean attribute; valid values are: 1 (on/true) and 0
    (off/false).
    'TwinView' is a read-only attribute.
    'TwinView' can use the following target types: X Screen.

  Attribute 'ConnectedDisplays' (opelig-ul:0.0): 0x00000002.
    'ConnectedDisplays' is a bitmask attribute.
    'ConnectedDisplays' is a read-only attribute.
    'ConnectedDisplays' can use the following target types: X Screen, GPU.

  Attribute 'EnabledDisplays' (opelig-ul:0.0): 0x00000002.
    'EnabledDisplays' is a bitmask attribute.
    'EnabledDisplays' is a read-only attribute.
    'EnabledDisplays' can use the following target types: X Screen, GPU.

  Attribute 'CursorShadow' (opelig-ul:0.0): 0.
    'CursorShadow' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'CursorShadow' can use the following target types: X Screen.

  Attribute 'CursorShadowAlpha' (opelig-ul:0.0): 64.
    The valid values for 'CursorShadowAlpha' are in the range 0 - 254
    (inclusive).
    'CursorShadowAlpha' can use the following target types: X Screen.

  Attribute 'CursorShadowRed' (opelig-ul:0.0): 0.
    The valid values for 'CursorShadowRed' are in the range 0 - 255
    (inclusive).
    'CursorShadowRed' can use the following target types: X Screen.

  Attribute 'CursorShadowGreen' (opelig-ul:0.0): 0.
    The valid values for 'CursorShadowGreen' are in the range 0 - 255
    (inclusive).
    'CursorShadowGreen' can use the following target types: X Screen.

  Attribute 'CursorShadowBlue' (opelig-ul:0.0): 0.
    The valid values for 'CursorShadowBlue' are in the range 0 - 255
    (inclusive).
    'CursorShadowBlue' can use the following target types: X Screen.

  Attribute 'CursorShadowXOffset' (opelig-ul:0.0): 4.
    The valid values for 'CursorShadowXOffset' are in the range 0 - 32
    (inclusive).
    'CursorShadowXOffset' can use the following target types: X Screen.

  Attribute 'CursorShadowYOffset' (opelig-ul:0.0): 2.
    The valid values for 'CursorShadowYOffset' are in the range 0 - 32
    (inclusive).
    'CursorShadowYOffset' can use the following target types: X Screen.

  Attribute 'AssociatedDisplays' (opelig-ul:0.0): 0x00000002.
    'AssociatedDisplays' is a bitmask attribute.
    'AssociatedDisplays' can use the following target types: X Screen.

  Attribute 'InitialPixmapPlacement' (opelig-ul:0.0): 2.
    The valid values for 'InitialPixmapPlacement' are in the range 0 - 4
    (inclusive).
    'InitialPixmapPlacement' can use the following target types: X Screen.

  Attribute 'DynamicTwinview' (opelig-ul:0.0): 1.
    'DynamicTwinview' is an integer attribute.
    'DynamicTwinview' is a read-only attribute.
    'DynamicTwinview' can use the following target types: X Screen.

  Attribute 'MultiGpuDisplayOwner' (opelig-ul:0.0): 0.
    'MultiGpuDisplayOwner' is an integer attribute.
    'MultiGpuDisplayOwner' is a read-only attribute.
    'MultiGpuDisplayOwner' can use the following target types: X Screen.

  Attribute 'GlyphCache' (opelig-ul:0.0): 1.
    The valid values for 'GlyphCache' are in the range 0 - 1 (inclusive).
    'GlyphCache' can use the following target types: X Screen.

  Attribute 'Depth30Allowed' (opelig-ul:0.0): 0.
    'Depth30Allowed' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'Depth30Allowed' is a read-only attribute.
    'Depth30Allowed' can use the following target types: X Screen, GPU.

  Attribute 'NoScanout' (opelig-ul:0.0): 0.
    'NoScanout' is a boolean attribute; valid values are: 1 (on/true) and 0
    (off/false).
    'NoScanout' is a read-only attribute.
    'NoScanout' can use the following target types: X Screen, GPU.

  Attribute 'XServerUniqueId' (opelig-ul:0.0): 1577317773.
    'XServerUniqueId' is a read-only attribute.
    'XServerUniqueId' can use the following target types: X Screen.

  Attribute 'PixmapCache' (opelig-ul:0.0): 1.
    'PixmapCache' is a boolean attribute; valid values are: 1 (on/true) and
    0 (off/false).
    'PixmapCache' can use the following target types: X Screen.

  Attribute 'PixmapCacheRoundSizeKB' (opelig-ul:0.0): 1024.
    The valid values for 'PixmapCacheRoundSizeKB' are in the range 4 -
    1048576 (inclusive).
    'PixmapCacheRoundSizeKB' can use the following target types: X Screen.

  Attribute 'AccelerateTrapezoids' (opelig-ul:0.0): 1.
    'AccelerateTrapezoids' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'AccelerateTrapezoids' can use the following target types: X Screen.

  Attribute 'SyncToVBlank' (opelig-ul:0.0): 0.
    'SyncToVBlank' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'SyncToVBlank' can use the following target types: X Screen.

  Attribute 'LogAniso' (opelig-ul:0.0): 0.
    The valid values for 'LogAniso' are in the range 0 - 4 (inclusive).
    'LogAniso' can use the following target types: X Screen.

  Attribute 'FSAA' (opelig-ul:0.0): 0.
    Valid values for 'FSAA' are: 0, 1, 5, 7, 8, 9, 10 and 12.
    'FSAA' can use the following target types: X Screen.

  Attribute 'TextureSharpen' (opelig-ul:0.0): 0.
    'TextureSharpen' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'TextureSharpen' can use the following target types: X Screen.

  Attribute 'AllowFlipping' (opelig-ul:0.0): 1.
    'AllowFlipping' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'AllowFlipping' can use the following target types: X Screen.

  Attribute 'FSAAAppControlled' (opelig-ul:0.0): 1.
    'FSAAAppControlled' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'FSAAAppControlled' can use the following target types: X Screen.

  Attribute 'LogAnisoAppControlled' (opelig-ul:0.0): 1.
    'LogAnisoAppControlled' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'LogAnisoAppControlled' can use the following target types: X Screen.

  Attribute 'OpenGLImageSettings' (opelig-ul:0.0): 1.
    The valid values for 'OpenGLImageSettings' are in the range 0 - 3
    (inclusive).
    'OpenGLImageSettings' can use the following target types: X Screen.

  Attribute 'FSAAAppEnhanced' (opelig-ul:0.0): 0.
    'FSAAAppEnhanced' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'FSAAAppEnhanced' can use the following target types: X Screen.

  Attribute 'SliMosaicModeAvailable' (opelig-ul:0.0): 0.
    'SliMosaicModeAvailable' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'SliMosaicModeAvailable' is a read-only attribute.
    'SliMosaicModeAvailable' can use the following target types: X Screen,
    GPU, VCS.

  Attribute 'BusType' (opelig-ul:0.0): 2.
    The valid values for 'BusType' are in the range 0 - 3 (inclusive).
    'BusType' is a read-only attribute.
    'BusType' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'PCIEMaxLinkSpeed' (opelig-ul:0.0): 5000.
    'PCIEMaxLinkSpeed' is an integer attribute.
    'PCIEMaxLinkSpeed' is a read-only attribute.
    'PCIEMaxLinkSpeed' can use the following target types: X Screen, GPU,
    SDI Input Device.

  Attribute 'VideoRam' (opelig-ul:0.0): 917504.
    'VideoRam' is an integer attribute.
    'VideoRam' is a read-only attribute.
    'VideoRam' can use the following target types: X Screen, GPU.

  Attribute 'Irq' (opelig-ul:0.0): 18.
    'Irq' is an integer attribute.
    'Irq' is a read-only attribute.
    'Irq' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'CUDACores' (opelig-ul:0.0): 192.
    'CUDACores' is an integer attribute.
    'CUDACores' is a read-only attribute.
    'CUDACores' can use the following target types: X Screen, GPU.

  Attribute 'GPUMemoryInterface' (opelig-ul:0.0): 448.
    'GPUMemoryInterface' is an integer attribute.
    'GPUMemoryInterface' is a read-only attribute.
    'GPUMemoryInterface' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCoreTemp' (opelig-ul:0.0): 54.
    'GPUCoreTemp' is an integer attribute.
    'GPUCoreTemp' is a read-only attribute.
    'GPUCoreTemp' can use the following target types: X Screen, GPU.

  Attribute 'GPUAmbientTemp' (opelig-ul:0.0): 46.
    'GPUAmbientTemp' is an integer attribute.
    'GPUAmbientTemp' is a read-only attribute.
    'GPUAmbientTemp' can use the following target types: X Screen, GPU.

  Attribute 'GPU2DClockFreqs' (opelig-ul:0.0): 300,100.
    The valid values for 'GPU2DClockFreqs' are in the ranges 75 - 600, 25 -
    1680 (inclusive).
    'GPU2DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPU3DClockFreqs' (opelig-ul:0.0): 576,999.
    The valid values for 'GPU3DClockFreqs' are in the ranges 144 - 1152,
    249 - 1680 (inclusive).
    'GPU3DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPUDefault2DClockFreqs' (opelig-ul:0.0): 300,100.
    'GPUDefault2DClockFreqs' is a packed integer attribute.
    'GPUDefault2DClockFreqs' is a read-only attribute.
    'GPUDefault2DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUDefault3DClockFreqs' (opelig-ul:0.0): 576,999.
    'GPUDefault3DClockFreqs' is a packed integer attribute.
    'GPUDefault3DClockFreqs' is a read-only attribute.
    'GPUDefault3DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqs' (opelig-ul:0.0): 576,999.
    'GPUCurrentClockFreqs' is a packed integer attribute.
    'GPUCurrentClockFreqs' is a read-only attribute.
    'GPUCurrentClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentProcessorClockFreqs' (opelig-ul:0.0): 1242.
    The valid values for 'GPUCurrentProcessorClockFreqs' are in the range
    310 - 2484 (inclusive).
    'GPUCurrentProcessorClockFreqs' can use the following target types: X
    Screen, GPU.

  Attribute 'GPUCurrentClockFreqsString' (opelig-ul:0.0): nvclock=300,
  memclock=100, processorclock=600 
    'GPUCurrentClockFreqsString' is a string attribute.
    'GPUCurrentClockFreqsString' can use the following target types: X
    Screen, GPU.

  Attribute 'BusRate' (opelig-ul:0.0): 16.
    The valid values for 'BusRate' are in the range 1 - 16 (inclusive).
    'BusRate' is a read-only attribute.
    'BusRate' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'PCIEGen' (opelig-ul:0.0): 2.
    'PCIEGen' is an integer attribute.
    'PCIEGen' is a read-only attribute.
    'PCIEGen' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'GPUErrors' (opelig-ul:0.0): 0.
    'GPUErrors' is an integer attribute.
    'GPUErrors' is a read-only attribute.
    'GPUErrors' can use the following target types: X Screen.

  Attribute 'GPUPowerSource' (opelig-ul:0.0): 0.
    'GPUPowerSource' is an integer attribute.
    'GPUPowerSource' is a read-only attribute.
    'GPUPowerSource' can use the following target types: X Screen, GPU.

  Attribute 'GPUCurrentPerfMode' (opelig-ul:0.0): 1.
    'GPUCurrentPerfMode' is an integer attribute.
    'GPUCurrentPerfMode' is a read-only attribute.
    'GPUCurrentPerfMode' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentPerfLevel' (opelig-ul:0.0): 2.
    'GPUCurrentPerfLevel' is an integer attribute.
    'GPUCurrentPerfLevel' is a read-only attribute.
    'GPUCurrentPerfLevel' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUAdaptiveClockState' (opelig-ul:0.0): 1.
    'GPUAdaptiveClockState' is an integer attribute.
    'GPUAdaptiveClockState' is a read-only attribute.
    'GPUAdaptiveClockState' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUPerfModes' (opelig-ul:0.0): perf=0, nvclock=300,
  memclock=100, processorclock=600 ; perf=1, nvclock=400, memclock=300,
  processorclock=800 ; perf=2, nvclock=576, memclock=999,
  processorclock=1242 
    'GPUPerfModes' is a string attribute.
    'GPUPerfModes' is a read-only attribute.
    'GPUPerfModes' can use the following target types: X Screen, GPU.

  Attribute 'ECCSupported' (opelig-ul:0.0): 0.
    'ECCSupported' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'ECCSupported' is a read-only attribute.
    'ECCSupported' can use the following target types: X Screen, GPU.

  Attribute 'ECCConfigurationSupported' (opelig-ul:0.0): 0.
    'ECCConfigurationSupported' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'ECCConfigurationSupported' is a read-only attribute.
    'ECCConfigurationSupported' can use the following target types: X
    Screen, GPU.

  Attribute 'GvoSupported' (opelig-ul:0.0): 0.
    'GvoSupported' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'GvoSupported' is a read-only attribute.
    'GvoSupported' can use the following target types: X Screen.

  Attribute 'IsGvoDisplay' (opelig-ul:0.0): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' can use the following target types: X Screen, GPU.

  Attribute 'DigitalVibrance' (opelig-ul:0.0; display device: CRT-1): 0.
    The valid values for 'DigitalVibrance' are in the range -1024 - 1023
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU.

  Attribute 'RefreshRate' (opelig-ul:0.0; display device: CRT-1): 60,32
  Hz.
    'RefreshRate' is an integer attribute.
    'RefreshRate' is a read-only attribute.
    'RefreshRate' is display device specific.
    'RefreshRate' can use the following target types: X Screen, GPU.

  Attribute 'RefreshRate3' (opelig-ul:0.0; display device: CRT-1): 60,317
  Hz.
    'RefreshRate3' is an integer attribute.
    'RefreshRate3' is a read-only attribute.
    'RefreshRate3' is display device specific.
    'RefreshRate3' can use the following target types: X Screen, GPU.

  Attribute 'OverscanCompensation' (opelig-ul:0.0; display device: CRT-1):
  0.
    The valid values for 'OverscanCompensation' are in the range 0 - 200
    (inclusive).
    'OverscanCompensation' is display device specific.
    'OverscanCompensation' can use the following target types: X Screen,
    GPU.

  Attribute 'XVideoTextureBrightness' (opelig-ul:0.0): 0.
    The valid values for 'XVideoTextureBrightness' are in the range -1000 -
    1000 (inclusive).
    'XVideoTextureBrightness' can use the following target types: X
    Screen.

  Attribute 'XVideoTextureContrast' (opelig-ul:0.0): 0.
    The valid values for 'XVideoTextureContrast' are in the range -1000 -
    1000 (inclusive).
    'XVideoTextureContrast' can use the following target types: X Screen.

  Attribute 'XVideoTextureHue' (opelig-ul:0.0): 0.
    The valid values for 'XVideoTextureHue' are in the range -1000 - 1000
    (inclusive).
    'XVideoTextureHue' can use the following target types: X Screen.

  Attribute 'XVideoTextureSaturation' (opelig-ul:0.0): 0.
    The valid values for 'XVideoTextureSaturation' are in the range -1000 -
    1000 (inclusive).
    'XVideoTextureSaturation' can use the following target types: X
    Screen.

  Attribute 'XVideoTextureSyncToVBlank' (opelig-ul:0.0): 1.
    The valid values for 'XVideoTextureSyncToVBlank' are in the range 0 - 1
    (inclusive).
    'XVideoTextureSyncToVBlank' can use the following target types: X
    Screen.

  Attribute 'XVideoSyncToDisplay' (opelig-ul:0.0): 0x00000002.
    'XVideoSyncToDisplay' is a bitmask attribute.
    'XVideoSyncToDisplay' can use the following target types: X Screen.

Attributes queryable via opelig-ul:0[gpu:0]:

  Attribute 'OperatingSystem' (opelig-ul:0[gpu:0]): 0.
    The valid values for 'OperatingSystem' are in the range 0 - 2
    (inclusive).
    'OperatingSystem' is a read-only attribute.
    'OperatingSystem' can use the following target types: X Screen, GPU.

  Attribute 'NvidiaDriverVersion' (opelig-ul:0[gpu:0]): 260.19.06 
    'NvidiaDriverVersion' is a string attribute.
    'NvidiaDriverVersion' is a read-only attribute.
    'NvidiaDriverVersion' can use the following target types: X Screen,
    GPU.

  Attribute 'ConnectedDisplays' (opelig-ul:0[gpu:0]): 0x00000002.
    'ConnectedDisplays' is a bitmask attribute.
    'ConnectedDisplays' is a read-only attribute.
    'ConnectedDisplays' can use the following target types: X Screen, GPU.

  Attribute 'EnabledDisplays' (opelig-ul:0[gpu:0]): 0x00000002.
    'EnabledDisplays' is a bitmask attribute.
    'EnabledDisplays' is a read-only attribute.
    'EnabledDisplays' can use the following target types: X Screen, GPU.

  Attribute 'Depth30Allowed' (opelig-ul:0[gpu:0]): 0.
    'Depth30Allowed' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'Depth30Allowed' is a read-only attribute.
    'Depth30Allowed' can use the following target types: X Screen, GPU.

  Attribute 'NoScanout' (opelig-ul:0[gpu:0]): 0.
    'NoScanout' is a boolean attribute; valid values are: 1 (on/true) and 0
    (off/false).
    'NoScanout' is a read-only attribute.
    'NoScanout' can use the following target types: X Screen, GPU.

  Attribute 'SliMosaicModeAvailable' (opelig-ul:0[gpu:0]): 0.
    'SliMosaicModeAvailable' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'SliMosaicModeAvailable' is a read-only attribute.
    'SliMosaicModeAvailable' can use the following target types: X Screen,
    GPU, VCS.

  Attribute 'BusType' (opelig-ul:0[gpu:0]): 2.
    The valid values for 'BusType' are in the range 0 - 3 (inclusive).
    'BusType' is a read-only attribute.
    'BusType' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'PCIEMaxLinkSpeed' (opelig-ul:0[gpu:0]): 5000.
    'PCIEMaxLinkSpeed' is an integer attribute.
    'PCIEMaxLinkSpeed' is a read-only attribute.
    'PCIEMaxLinkSpeed' can use the following target types: X Screen, GPU,
    SDI Input Device.

  Attribute 'VideoRam' (opelig-ul:0[gpu:0]): 917504.
    'VideoRam' is an integer attribute.
    'VideoRam' is a read-only attribute.
    'VideoRam' can use the following target types: X Screen, GPU.

  Attribute 'Irq' (opelig-ul:0[gpu:0]): 18.
    'Irq' is an integer attribute.
    'Irq' is a read-only attribute.
    'Irq' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'CUDACores' (opelig-ul:0[gpu:0]): 192.
    'CUDACores' is an integer attribute.
    'CUDACores' is a read-only attribute.
    'CUDACores' can use the following target types: X Screen, GPU.

  Attribute 'GPUMemoryInterface' (opelig-ul:0[gpu:0]): 448.
    'GPUMemoryInterface' is an integer attribute.
    'GPUMemoryInterface' is a read-only attribute.
    'GPUMemoryInterface' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCoreTemp' (opelig-ul:0[gpu:0]): 54.
    'GPUCoreTemp' is an integer attribute.
    'GPUCoreTemp' is a read-only attribute.
    'GPUCoreTemp' can use the following target types: X Screen, GPU.

  Attribute 'GPUAmbientTemp' (opelig-ul:0[gpu:0]): 46.
    'GPUAmbientTemp' is an integer attribute.
    'GPUAmbientTemp' is a read-only attribute.
    'GPUAmbientTemp' can use the following target types: X Screen, GPU.

  Attribute 'GPU2DClockFreqs' (opelig-ul:0[gpu:0]): 300,100.
    The valid values for 'GPU2DClockFreqs' are in the ranges 75 - 600, 25 -
    1680 (inclusive).
    'GPU2DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPU3DClockFreqs' (opelig-ul:0[gpu:0]): 576,999.
    The valid values for 'GPU3DClockFreqs' are in the ranges 144 - 1152,
    249 - 1680 (inclusive).
    'GPU3DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPUDefault2DClockFreqs' (opelig-ul:0[gpu:0]): 300,100.
    'GPUDefault2DClockFreqs' is a packed integer attribute.
    'GPUDefault2DClockFreqs' is a read-only attribute.
    'GPUDefault2DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUDefault3DClockFreqs' (opelig-ul:0[gpu:0]): 576,999.
    'GPUDefault3DClockFreqs' is a packed integer attribute.
    'GPUDefault3DClockFreqs' is a read-only attribute.
    'GPUDefault3DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqs' (opelig-ul:0[gpu:0]): 576,999.
    'GPUCurrentClockFreqs' is a packed integer attribute.
    'GPUCurrentClockFreqs' is a read-only attribute.
    'GPUCurrentClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentProcessorClockFreqs' (opelig-ul:0[gpu:0]): 1242.
    The valid values for 'GPUCurrentProcessorClockFreqs' are in the range
    310 - 2484 (inclusive).
    'GPUCurrentProcessorClockFreqs' can use the following target types: X
    Screen, GPU.

  Attribute 'GPUCurrentClockFreqsString' (opelig-ul:0[gpu:0]): nvclock=300,
  memclock=100, processorclock=600 
    'GPUCurrentClockFreqsString' is a string attribute.
    'GPUCurrentClockFreqsString' can use the following target types: X
    Screen, GPU.

  Attribute 'BusRate' (opelig-ul:0[gpu:0]): 16.
    The valid values for 'BusRate' are in the range 1 - 16 (inclusive).
    'BusRate' is a read-only attribute.
    'BusRate' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'PCIDomain' (opelig-ul:0[gpu:0]): 0.
    'PCIDomain' is an integer attribute.
    'PCIDomain' is a read-only attribute.
    'PCIDomain' can use the following target types: GPU, SDI Input Device.

  Attribute 'PCIBus' (opelig-ul:0[gpu:0]): 1.
    'PCIBus' is an integer attribute.
    'PCIBus' is a read-only attribute.
    'PCIBus' can use the following target types: GPU, SDI Input Device.

  Attribute 'PCIDevice' (opelig-ul:0[gpu:0]): 0.
    'PCIDevice' is an integer attribute.
    'PCIDevice' is a read-only attribute.
    'PCIDevice' can use the following target types: GPU, SDI Input Device.

  Attribute 'PCIFunc' (opelig-ul:0[gpu:0]): 0.
    'PCIFunc' is an integer attribute.
    'PCIFunc' is a read-only attribute.
    'PCIFunc' can use the following target types: GPU, SDI Input Device.

  Attribute 'PCIID' (opelig-ul:0[gpu:0]): 4318,1506.
    'PCIID' is a packed integer attribute.
    'PCIID' is a read-only attribute.
    'PCIID' can use the following target types: GPU, SDI Input Device.

  Attribute 'PCIEGen' (opelig-ul:0[gpu:0]): 2.
    'PCIEGen' is an integer attribute.
    'PCIEGen' is a read-only attribute.
    'PCIEGen' can use the following target types: X Screen, GPU, SDI Input
    Device.

  Attribute 'GPUPowerSource' (opelig-ul:0[gpu:0]): 0.
    'GPUPowerSource' is an integer attribute.
    'GPUPowerSource' is a read-only attribute.
    'GPUPowerSource' can use the following target types: X Screen, GPU.

  Attribute 'GPUCurrentPerfMode' (opelig-ul:0[gpu:0]): 1.
    'GPUCurrentPerfMode' is an integer attribute.
    'GPUCurrentPerfMode' is a read-only attribute.
    'GPUCurrentPerfMode' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentPerfLevel' (opelig-ul:0[gpu:0]): 2.
    'GPUCurrentPerfLevel' is an integer attribute.
    'GPUCurrentPerfLevel' is a read-only attribute.
    'GPUCurrentPerfLevel' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUAdaptiveClockState' (opelig-ul:0[gpu:0]): 1.
    'GPUAdaptiveClockState' is an integer attribute.
    'GPUAdaptiveClockState' is a read-only attribute.
    'GPUAdaptiveClockState' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUPerfModes' (opelig-ul:0[gpu:0]): perf=0, nvclock=300,
  memclock=100, processorclock=600 ; perf=1, nvclock=400, memclock=300,
  processorclock=800 ; perf=2, nvclock=576, memclock=999,
  processorclock=1242 
    'GPUPerfModes' is a string attribute.
    'GPUPerfModes' is a read-only attribute.
    'GPUPerfModes' can use the following target types: X Screen, GPU.

  Attribute 'GPUPowerMizerMode' (opelig-ul:0[gpu:0]): 0.
    'GPUPowerMizerMode' is an integer attribute.
    'GPUPowerMizerMode' can use the following target types: GPU.

  Attribute 'ECCSupported' (opelig-ul:0[gpu:0]): 0.
    'ECCSupported' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'ECCSupported' is a read-only attribute.
    'ECCSupported' can use the following target types: X Screen, GPU.

  Attribute 'ECCConfigurationSupported' (opelig-ul:0[gpu:0]): 0.
    'ECCConfigurationSupported' is a boolean attribute; valid values are: 1
    (on/true) and 0 (off/false).
    'ECCConfigurationSupported' is a read-only attribute.
    'ECCConfigurationSupported' can use the following target types: X
    Screen, GPU.

  Attribute 'IsGvoDisplay' (opelig-ul:0[gpu:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' can use the following target types: X Screen, GPU.

  Attribute 'DigitalVibrance' (opelig-ul:0[gpu:0]; display device: CRT-1):
  0.
    The valid values for 'DigitalVibrance' are in the range -1024 - 1023
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU.

  Attribute 'RefreshRate' (opelig-ul:0[gpu:0]; display device: CRT-1):
  60,32 Hz.
    'RefreshRate' is an integer attribute.
    'RefreshRate' is a read-only attribute.
    'RefreshRate' is display device specific.
    'RefreshRate' can use the following target types: X Screen, GPU.

  Attribute 'RefreshRate3' (opelig-ul:0[gpu:0]; display device: CRT-1):
  60,317 Hz.
    'RefreshRate3' is an integer attribute.
    'RefreshRate3' is a read-only attribute.
    'RefreshRate3' is display device specific.
    'RefreshRate3' can use the following target types: X Screen, GPU.

  Attribute 'OverscanCompensation' (opelig-ul:0[gpu:0]; display device:
  CRT-1): 0.
    The valid values for 'OverscanCompensation' are in the range 0 - 200
    (inclusive).
    'OverscanCompensation' is display device specific.
    'OverscanCompensation' can use the following target types: X Screen,
    GPU.

Attributes queryable via opelig-ul:0[fan:0]:

  Attribute 'GPUCurrentFanSpeed' (opelig-ul:0[fan:0]): 40.
    The valid values for 'GPUCurrentFanSpeed' are in the range 0 - 100
    (inclusive).
    'GPUCurrentFanSpeed' can use the following target types: Fan.

  Attribute 'GPUFanControlType' (opelig-ul:0[fan:0]): 2.
    'GPUFanControlType' is an integer attribute.
    'GPUFanControlType' is a read-only attribute.
    'GPUFanControlType' can use the following target types: Fan.

  Attribute 'GPUFanTarget' (opelig-ul:0[fan:0]): 0x00000007.
    'GPUFanTarget' is a bitmask attribute.
    'GPUFanTarget' is a read-only attribute.
    'GPUFanTarget' can use the following target types: Fan.

Attributes queryable via opelig-ul:0[thermalsensor:0]:

  Attribute 'ThermalSensorReading' (opelig-ul:0[thermalsensor:0]): 54.
    The valid values for 'ThermalSensorReading' are in the range 0 - 191
    (inclusive).
    'ThermalSensorReading' is a read-only attribute.
    'ThermalSensorReading' can use the following target types: Thermal
    Sensor.

  Attribute 'ThermalSensorProvider' (opelig-ul:0[thermalsensor:0]): 1.
    'ThermalSensorProvider' is an integer attribute.
    'ThermalSensorProvider' is a read-only attribute.
    'ThermalSensorProvider' can use the following target types: Thermal
    Sensor.

  Attribute 'ThermalSensorTarget' (opelig-ul:0[thermalsensor:0]): 1.
    'ThermalSensorTarget' is an integer attribute.
    'ThermalSensorTarget' is a read-only attribute.
    'ThermalSensorTarget' can use the following target types: Thermal
    Sensor.

Attributes queryable via opelig-ul:0[thermalsensor:1]:

  Attribute 'ThermalSensorReading' (opelig-ul:0[thermalsensor:1]): 46.
    The valid values for 'ThermalSensorReading' are in the range 0 - 191
    (inclusive).
    'ThermalSensorReading' is a read-only attribute.
    'ThermalSensorReading' can use the following target types: Thermal
    Sensor.

  Attribute 'ThermalSensorProvider' (opelig-ul:0[thermalsensor:1]): 8.
    'ThermalSensorProvider' is an integer attribute.
    'ThermalSensorProvider' is a read-only attribute.
    'ThermalSensorProvider' can use the following target types: Thermal
    Sensor.

  Attribute 'ThermalSensorTarget' (opelig-ul:0[thermalsensor:1]): 8.
    'ThermalSensorTarget' is an integer attribute.
    'ThermalSensorTarget' is a read-only attribute.
    'ThermalSensorTarget' can use the following target types: Thermal
    Sensor.

____________________________________________

*** /proc/cmdline
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.654906001 +0100 /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-2.6.35-22-generic root=UUID=ce7843c1-9d18-4db8-a22c-41be970accc0 ro quiet splash

____________________________________________

*** /proc/cpuinfo
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.662906001 +0100 /proc/cpuinfo
processor	: 0
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 6
model name	: AMD Athlon(tm) II X2 250 Processor
stepping	: 2
cpu MHz		: 800.000
cache size	: 1024 KB
physical id	: 0
siblings	: 2
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fdiv_bug	: no
hlt_bug		: no
f00f_bug	: no
coma_bug	: no
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save
bogomips	: 5999.32
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate

processor	: 1
vendor_id	: AuthenticAMD
cpu family	: 16
model		: 6
model name	: AMD Athlon(tm) II X2 250 Processor
stepping	: 2
cpu MHz		: 800.000
cache size	: 1024 KB
physical id	: 0
siblings	: 2
core id		: 1
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fdiv_bug	: no
hlt_bug		: no
f00f_bug	: no
coma_bug	: no
fpu		: yes
fpu_exception	: yes
cpuid level	: 5
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt pdpe1gb rdtscp lm 3dnowext 3dnow constant_tsc nonstop_tsc extd_apicid pni monitor cx16 popcnt lahf_lm cmp_legacy svm extapic cr8_legacy abm sse4a misalignsse 3dnowprefetch osvw ibs skinit wdt npt lbrv svm_lock nrip_save
bogomips	: 6000.04
clflush size	: 64
cache_alignment	: 64
address sizes	: 48 bits physical, 48 bits virtual
power management: ts ttp tm stc 100mhzsteps hwpstate


____________________________________________

*** /proc/interrupts
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.670906001 +0100 /proc/interrupts
           CPU0       CPU1       
  0:         44         16   IO-APIC-edge      timer
  1:       2401        153   IO-APIC-edge      i8042
  7:          1          0   IO-APIC-edge    
  8:          0          1   IO-APIC-edge      rtc0
  9:          0          0   IO-APIC-fasteoi   acpi
 14:         62      22364   IO-APIC-edge      pata_atiixp
 15:          0          0   IO-APIC-edge      pata_atiixp
 16:       7369        911   IO-APIC-fasteoi   ohci_hcd:usb3, ohci_hcd:usb4, hda_intel
 17:          1         25   IO-APIC-fasteoi   ehci_hcd:usb1, pata_marvell
 18:       5424      44499   IO-APIC-fasteoi   ohci_hcd:usb5, ohci_hcd:usb6, ohci_hcd:usb7, nvidia
 19:          0          3   IO-APIC-fasteoi   ehci_hcd:usb2, firewire_ohci
 21:          0         37   IO-APIC-fasteoi   saa7134[0], saa7134[0]
 44:      24564         62   PCI-MSI-edge      eth0
 45:          9      28556   PCI-MSI-edge      ahci
NMI:          0          0   Non-maskable interrupts
LOC:     219632     257015   Local timer interrupts
SPU:          0          0   Spurious interrupts
PMI:          0          0   Performance monitoring interrupts
PND:          0          0   Performance pending work
RES:     588918     498925   Rescheduling interrupts
CAL:       4651       1984   Function call interrupts
TLB:       2761       1961   TLB shootdowns
TRM:          0          0   Thermal event interrupts
THR:          0          0   Threshold APIC interrupts
MCE:          0          0   Machine check exceptions
MCP:         16         16   Machine check polls
ERR:          1
MIS:          0

____________________________________________

*** /proc/meminfo
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.674906001 +0100 /proc/meminfo
MemTotal:        3095504 kB
MemFree:         2223088 kB
Buffers:           43088 kB
Cached:           422780 kB
SwapCached:            0 kB
Active:           541492 kB
Inactive:         222480 kB
Active(anon):     298504 kB
Inactive(anon):     4864 kB
Active(file):     242988 kB
Inactive(file):   217616 kB
Unevictable:           0 kB
Mlocked:               0 kB
HighTotal:       2235976 kB
HighFree:        1495696 kB
LowTotal:         859528 kB
LowFree:          727392 kB
SwapTotal:       5999612 kB
SwapFree:        5999612 kB
Dirty:                52 kB
Writeback:             0 kB
AnonPages:        297992 kB
Mapped:           103336 kB
Shmem:              5268 kB
Slab:              38676 kB
SReclaimable:      28020 kB
SUnreclaim:        10656 kB
KernelStack:        2392 kB
PageTables:         5912 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     7547364 kB
Committed_AS:    1115036 kB
VmallocTotal:     122880 kB
VmallocUsed:       71000 kB
VmallocChunk:      34300 kB
HardwareCorrupted:     0 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       4096 kB
DirectMap4k:       65528 kB
DirectMap4M:      843776 kB

____________________________________________

*** /proc/modules
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.682906001 +0100 /proc/modules
binfmt_misc 6599 1 - Live 0xf80fb000
rfcomm 33811 4 - Live 0xf8362000
sco 7998 2 - Live 0xf80ea000
bnep 9542 2 - Live 0xf80a7000
l2cap 37008 16 rfcomm,bnep, Live 0xf80d0000
parport_pc 26058 0 - Live 0xf8096000
ppdev 5556 0 - Live 0xf804f000
usblp 10651 0 - Live 0xf807d000
nvidia 9329739 38 - Live 0xfa393000 (P)
snd_hda_codec_via 51755 1 - Live 0xf8e1a000
saa7134_empress 8208 0 - Live 0xf8dfe000
saa7134_alsa 10412 1 - Live 0xf840e000
snd_hda_intel 22107 2 - Live 0xf83f2000
snd_hda_codec 87552 2 snd_hda_codec_via,snd_hda_intel, Live 0xf83b2000
saa6752hs 9160 1 - Live 0xf8399000
tuner_simple 13641 1 - Live 0xf8393000
tuner_types 14575 1 tuner_simple, Live 0xf836c000
tea5767 5994 0 - Live 0xf835e000
snd_hwdep 5040 1 snd_hda_codec, Live 0xf834f000
ir_lirc_codec 3092 0 - Live 0xf82ee000
lirc_dev 9393 1 ir_lirc_codec, Live 0xf82f4000
tda9887 9697 1 - Live 0xf82dc000
ir_sony_decoder 1889 0 - Live 0xf82c4000
snd_pcm 71475 3 saa7134_alsa,snd_hda_intel,snd_hda_codec, Live 0xf8328000
ir_jvc_decoder 1950 0 - Live 0xf812e000
tda8290 12538 0 - Live 0xf8113000
ir_rc6_decoder 2334 0 - Live 0xf810d000
snd_seq_midi 4588 0 - Live 0xf80f7000
ir_rc5_decoder 1950 0 - Live 0xf80e7000
tuner 20578 2 - Live 0xf80db000
snd_rawmidi 17783 1 snd_seq_midi, Live 0xf80b8000
snd_seq_midi_event 6047 1 snd_seq_midi, Live 0xf809f000
ir_nec_decoder 2014 0 - Live 0xf8053000
btusb 10969 2 - Live 0xf8025000
snd_seq 47174 2 snd_seq_midi,snd_seq_midi_event, Live 0xf8f7b000
snd_timer 19067 2 snd_pcm,snd_seq, Live 0xf8f5c000
snd_seq_device 5744 3 snd_seq_midi,snd_rawmidi,snd_seq, Live 0xf8f4a000
gspca_spca561 8594 0 - Live 0xf8f3d000
saa7134 148613 2 saa7134_empress,saa7134_alsa, Live 0xf8f03000
gspca_main 23644 1 gspca_spca561, Live 0xf8ef7000
v4l2_common 17329 4 saa7134_empress,saa6752hs,tuner,saa7134, Live 0xf8ea7000
bluetooth 50500 9 rfcomm,sco,bnep,l2cap,btusb, Live 0xf8e88000
videobuf_dma_sg 9806 3 saa7134_empress,saa7134_alsa,saa7134, Live 0xf8e3d000
videobuf_core 16907 3 saa7134_empress,saa7134,videobuf_dma_sg, Live 0xf8e2b000
snd 49006 16 snd_hda_codec_via,saa7134_alsa,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_pcm,snd_rawmidi,snd_seq,snd_timer,snd_seq_device, Live 0xf8e0c000
ir_common 5167 1 saa7134, Live 0xf8423000
ir_core 14654 8 ir_lirc_codec,ir_sony_decoder,ir_jvc_decoder,ir_rc6_decoder,ir_rc5_decoder,ir_nec_decoder,saa7134,ir_common, Live 0xf8414000
videodev 43098 6 saa7134_empress,saa6752hs,tuner,saa7134,gspca_main,v4l2_common, Live 0xf83f9000
tveeprom 11178 1 saa7134, Live 0xf83e0000
v4l1_compat 13359 1 videodev, Live 0xf83d0000
usbhid 36882 0 - Live 0xf839d000
hid 67742 1 usbhid, Live 0xf8374000
ati_agp 5202 0 - Live 0xf8352000
lp 7342 0 - Live 0xf8345000
agpgart 32011 2 nvidia,ati_agp, Live 0xf831e000
soundcore 880 1 snd, Live 0xf82fa000
snd_page_alloc 7120 2 snd_hda_intel,snd_pcm, Live 0xf82f0000
asus_atk0110 11423 0 - Live 0xf82e2000
parport 31492 3 parport_pc,ppdev,lp, Live 0xf82cc000
k10temp 2607 0 - Live 0xf82b8000
i2c_piix4 8635 0 - Live 0xf82ac000
pata_marvell 2312 0 - Live 0xf812b000
firewire_ohci 21106 0 - Live 0xf8118000
ahci 19013 0 - Live 0xf80fe000
libahci 21667 4 ahci, Live 0xf80c8000
r8169 36489 0 - Live 0xf80ad000
firewire_core 46643 1 firewire_ohci, Live 0xf8088000
crc_itu_t 1383 1 firewire_core, Live 0xf8055000
mii 4425 1 r8169, Live 0xf804b000
pata_atiixp 3288 0 - Live 0xf8041000

____________________________________________

*** /proc/version
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.690906001 +0100 /proc/version
Linux version 2.6.35-22-generic (buildd@rothera) (gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu4) ) #33-Ubuntu SMP Sun Sep 19 20:34:50 UTC 2010

____________________________________________

*** /proc/pci does not exist

____________________________________________

*** /proc/iomem
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.702906001 +0100 /proc/iomem
00000000-0000ffff : reserved
00010000-0009ebff : System RAM
0009ec00-0009ffff : reserved
000a0000-000bffff : PCI Bus 0000:00
  000a0000-000bffff : Video RAM area
000c0000-000cd5ff : Video ROM
000cd800-000cdbff : Adapter ROM
000d0000-000dffff : PCI Bus 0000:00
000e6000-000fffff : reserved
  000f0000-000fffff : System ROM
00100000-bff8ffff : System RAM
  00100000-005d029d : Kernel code
  005d029e-00818667 : Kernel data
  008ca000-009a0adb : Kernel bss
bff90000-bffa7fff : ACPI Tables
bffa8000-bffcffff : ACPI Non-volatile Storage
bffd0000-bfffffff : reserved
c0000000-dfffffff : PCI Bus 0000:00
  d0000000-dfffffff : PCI Bus 0000:01
    d0000000-dfffffff : 0000:01:00.0
e0000000-efffffff : PCI MMCONFIG 0000 [bus 00-ff]
  e0000000-efffffff : pnp 00:0a
f0000000-febfffff : PCI Bus 0000:00
  f6f00000-f6ffffff : PCI Bus 0000:02
    f6ff8000-f6ffbfff : 0000:02:00.0
      f6ff8000-f6ffbfff : r8169
    f6fff000-f6ffffff : 0000:02:00.0
      f6fff000-f6ffffff : r8169
  f7ff4000-f7ff7fff : 0000:00:14.2
    f7ff4000-f7ff7fff : ICH HD audio
  f7ffa000-f7ffafff : 0000:00:14.5
    f7ffa000-f7ffafff : ohci_hcd
  f7ffb000-f7ffbfff : 0000:00:13.0
    f7ffb000-f7ffbfff : ohci_hcd
  f7ffc000-f7ffcfff : 0000:00:13.1
    f7ffc000-f7ffcfff : ohci_hcd
  f7ffd000-f7ffdfff : 0000:00:12.0
    f7ffd000-f7ffdfff : ohci_hcd
  f7ffe000-f7ffefff : 0000:00:12.1
    f7ffe000-f7ffefff : ohci_hcd
  f7fff400-f7fff4ff : 0000:00:13.2
    f7fff400-f7fff4ff : ehci_hcd
  f7fff800-f7fff8ff : 0000:00:12.2
    f7fff800-f7fff8ff : ehci_hcd
  f7fffc00-f7ffffff : 0000:00:11.0
    f7fffc00-f7ffffff : ahci
  f8000000-fbbfffff : PCI Bus 0000:01
    f8000000-f9ffffff : 0000:01:00.0
    fa000000-faffffff : 0000:01:00.0
      fa000000-faffffff : nvidia
    fbb80000-fbbfffff : 0000:01:00.0
  fbc00000-fbcfffff : PCI Bus 0000:02
    fbcf0000-fbcfffff : 0000:02:00.0
  fbd00000-fbdfffff : PCI Bus 0000:03
    fbdff800-fbdfffff : 0000:03:00.0
      fbdff800-fbdfffff : firewire_ohci
  fbe00000-fbefffff : PCI Bus 0000:04
    fbeffc00-fbefffff : 0000:04:00.0
  fbf00000-fbffffff : PCI Bus 0000:05
    fbfffc00-fbffffff : 0000:05:06.0
      fbfffc00-fbffffff : saa7134[0]
fec00000-fec003ff : IOAPIC 0
fec10000-fec1001f : pnp 00:07
fed00000-fed003ff : HPET 2
fee00000-fee00fff : Local APIC
  fee00000-fee00fff : pnp 00:06
ffb80000-ffbfffff : pnp 00:07
fff00000-ffffffff : reserved

____________________________________________

*** /proc/mtrr
*** ls: -rw-r--r-- 1 root root 0 2011-01-05 18:45:16.118906001 +0100 /proc/mtrr
reg00: base=0x000000000 (    0MB), size= 2048MB, count=1: write-back
reg01: base=0x080000000 ( 2048MB), size= 1024MB, count=1: write-back

____________________________________________

*** /proc/driver/nvidia/version
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.714906001 +0100 /proc/driver/nvidia/version
NVRM version: NVIDIA UNIX x86 Kernel Module  260.19.06  Mon Sep 13 06:35:06 PDT 2010
GCC version:  gcc version 4.4.5 (Ubuntu/Linaro 4.4.4-14ubuntu5) 

____________________________________________

*** /proc/driver/nvidia/cards/0
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.726906001 +0100 /proc/driver/nvidia/cards/0
Model: 		 GeForce GTX 260
IRQ:   		 18
Video BIOS: 	 62.00.1a.00.06
Card Type: 	 PCI-E
DMA Size: 	 40 bits
DMA Mask: 	 0xffffffffff
Bus Location: 	 0000:01.00.0

____________________________________________

*** /proc/driver/nvidia/warnings/README
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.738906001 +0100 /proc/driver/nvidia/warnings/README
The NVIDIA graphics driver tries to detect potential problems
with the host system and warns about them using the system's
logging mechanisms. Important warning message are also logged
to dedicated text files in this directory.

____________________________________________

*** /proc/driver/nvidia/registry
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.746906001 +0100 /proc/driver/nvidia/registry
EnableVia4x: 0
EnableALiAGP: 0
NvAGP: 3
ReqAGPRate: 15
EnableAGPSBA: 0
EnableAGPFW: 0
Mobile: 4294967295
ResmanDebugLevel: 4294967295
RmLogonRC: 1
ModifyDeviceFiles: 1
DeviceFileUID: 0
DeviceFileGID: 0
DeviceFileMode: 438
RemapLimit: 0
UpdateMemoryTypes: 4294967295
UseVBios: 1
RMEdgeIntrCheck: 1
UsePageAttributeTable: 4294967295
EnableMSI: 0
MapRegistersEarly: 0
RegisterForACPIEvents: 1
RegistryDwords: ""

____________________________________________

*** /proc/asound/cards
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.758906001 +0100 /proc/asound/cards
 0 [SB             ]: HDA-Intel - HDA ATI SB
                      HDA ATI SB at 0xf7ff4000 irq 16
 1 [SAA7134        ]: SAA7134 - SAA7134
                      saa7134[0] at 0xfbfffc00 irq 21

____________________________________________

*** /proc/asound/pcm
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.762906001 +0100 /proc/asound/pcm
00-00: VT1708S Analog : VT1708S Analog : playback 2 : capture 2
00-01: VT1708S Digital : VT1708S Digital : playback 1
01-00: SAA7134 PCM : SAA7134 PCM : capture 1

____________________________________________

*** /proc/asound/modules
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.770906001 +0100 /proc/asound/modules
 0 snd_hda_intel
 1 saa7134_alsa

____________________________________________

*** /proc/asound/devices
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.778906001 +0100 /proc/asound/devices
  2:        : timer
  3:        : sequencer
  4: [ 1- 0]: digital audio capture
  5: [ 1]   : control
  6: [ 0- 1]: digital audio playback
  7: [ 0- 0]: digital audio playback
  8: [ 0- 0]: digital audio capture
  9: [ 0- 0]: hardware dependent
 10: [ 0]   : control

____________________________________________

*** /proc/asound/version
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.786906001 +0100 /proc/asound/version
Advanced Linux Sound Architecture Driver Version 1.0.23.

____________________________________________

*** /proc/asound/timers
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.794906001 +0100 /proc/asound/timers
G0: system timer : 4000.000us (10000000 ticks)
P0-0-0: PCM playback 0-0-0 : SLAVE
P0-0-1: PCM capture 0-0-1 : SLAVE
P0-0-2: PCM playback 0-0-2 : SLAVE
P0-0-3: PCM capture 0-0-3 : SLAVE
P0-1-0: PCM playback 0-1-0 : SLAVE
P1-0-1: PCM capture 1-0-1 : SLAVE

____________________________________________

*** /proc/asound/hwdep
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.798906001 +0100 /proc/asound/hwdep
00-00: HDA Codec 0

____________________________________________

*** /proc/asound/card0/codec#0
*** ls: -r--r--r-- 1 root root 0 2011-01-05 19:27:45.806906001 +0100 /proc/asound/card0/codec#0
Codec: VIA VT1708S
Address: 0
Function Id: 0x1
Vendor Id: 0x11060397
Subsystem Id: 0x1043836c
Revision Id: 0x100000
No Modem Function Group found
Default PCM:
    rates [0x0]:
    bits [0x0]:
    formats [0x0]:
Default Amp-In caps: N/A
Default Amp-Out caps: N/A
GPIO: io=1, o=0, i=0, unsolicited=1, wake=0
  IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
Node 0x10 [Audio Output] wcaps 0x41d: Stereo Amp-Out
  Control: name="Front Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Device: name="VT1708S Analog", type="Audio", device=0
  Amp-Out caps: ofs=0x2a, nsteps=0x2a, stepsize=0x05, mute=0
  Amp-Out vals:  [0x22 0x22]
  Converter: stream=0, channel=0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
Node 0x11 [Audio Output] wcaps 0x41d: Stereo Amp-Out
  Control: name="Surround Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x2a, nsteps=0x2a, stepsize=0x05, mute=0
  Amp-Out vals:  [0x28 0x28]
  Converter: stream=0, channel=0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
Node 0x12 [Audio Output] wcaps 0x611: Stereo Digital
  Control: name="IEC958 Playback Con Mask", index=0, device=0
  Control: name="IEC958 Playback Pro Mask", index=0, device=0
  Control: name="IEC958 Playback Default", index=0, device=0
  Control: name="IEC958 Playback Switch", index=0, device=0
  Control: name="IEC958 Default PCM Playback Switch", index=0, device=0
  Device: name="VT1708S Digital", type="SPDIF", device=1
  Converter: stream=0, channel=0
  Digital: Enabled
  Digital category: 0x0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
Node 0x13 [Audio Input] wcaps 0x10051b: Stereo Amp-In
  Control: name="Capture Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Capture Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Device: name="VT1708S Analog", type="Audio", device=0
  Amp-In caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x00 0x00]
  Converter: stream=0, channel=0
  SDI-Select: 0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x17
Node 0x14 [Audio Input] wcaps 0x10051b: Stereo Amp-In
  Control: name="Capture Volume", index=1, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Capture Switch", index=1, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Amp-In caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x00 0x00]
  Converter: stream=0, channel=0
  SDI-Select: 0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x1e
Node 0x15 [Audio Output] wcaps 0x611: Stereo Digital
  Converter: stream=0, channel=0
  Digital: Enabled
  Digital category: 0x0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
Node 0x16 [Audio Mixer] wcaps 0x20050b: Stereo Amp-In
  Control: name="Master Front Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Master Front Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Mic Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=2, ofs=0
  Control: name="Mic Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=2, ofs=0
  Control: name="Front Mic Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=4, ofs=0
  Control: name="Front Mic Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=4, ofs=0
  Control: name="Line Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=3, ofs=0
  Control: name="Line Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=3, ofs=0
  Control: name="CD Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=1, ofs=0
  Control: name="CD Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=1, ofs=0
  Amp-In caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x00 0x00] [0x19 0x19] [0x80 0x80] [0x00 0x00] [0x00 0x00] [0x97 0x97] [0x80 0x80]
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 7
     0x10 0x1f 0x1a 0x1b 0x1e 0x1d 0x25
Node 0x17 [Audio Selector] wcaps 0x300501: Stereo
  Control: name="Input Source", index=0, device=0
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 6
     0x1f 0x1a* 0x1b 0x1e 0x1d 0x16
Node 0x18 [Audio Selector] wcaps 0x30050d: Stereo Amp-Out
  Control: name="Surround Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
  Connection: 1
     0x11
Node 0x19 [Pin Complex] wcaps 0x400581: Stereo
  Pincap 0x00000014: OUT Detect
  Pin Default 0x01011012: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0x1, Sequence = 0x2
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
  Connection: 1
     0x18
Node 0x1a [Pin Complex] wcaps 0x400581: Stereo
  Control: name="Mic Boost Capture Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Smart 5.1", index=0, device=0
  Pincap 0x00002334: IN OUT Detect
    Vref caps: HIZ 50 100
  Pin Default 0x01a19036: [Jack] Mic at Ext Rear
    Conn = 1/8, Color = Pink
    DefAssociation = 0x3, Sequence = 0x6
  Pin-ctls: 0x21: IN VREF_50
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x26
Node 0x1b [Pin Complex] wcaps 0x400581: Stereo
  Control: name="Independent HP", index=0, device=0
  Control: name="Smart 5.1", index=0, device=0
  Pincap 0x00002334: IN OUT Detect
    Vref caps: HIZ 50 100
  Pin Default 0x0181303e: [Jack] Line In at Ext Rear
    Conn = 1/8, Color = Blue
    DefAssociation = 0x3, Sequence = 0xe
  Pin-ctls: 0x20: IN VREF_HIZ
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
  Connection: 1
     0x18
Node 0x1c [Pin Complex] wcaps 0x40058d: Stereo Amp-Out
  Control: name="Front Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0001001c: OUT HP EAPD Detect
  EAPD 0x2: EAPD
  Pin Default 0x01014010: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Green
    DefAssociation = 0x1, Sequence = 0x0
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x16
Node 0x1d [Pin Complex] wcaps 0x40058d: Stereo Amp-Out
  Control: name="Headphone Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Control: name="Independent HP", index=0, device=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0000233c: IN OUT HP Detect
    Vref caps: HIZ 50 100
  Pin Default 0x0221411f: [Jack] HP Out at Ext Front
    Conn = 1/8, Color = Green
    DefAssociation = 0x1, Sequence = 0xf
    Misc = NO_PRESENCE
  Pin-ctls: 0xc0: OUT HP VREF_HIZ
  Unsolicited: tag=05, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 2
     0x16* 0x25
Node 0x1e [Pin Complex] wcaps 0x40058d: Stereo Amp-Out
  Control: name="Front Mic Boost Capture Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Smart 5.1", index=0, device=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0000233c: IN OUT HP Detect
    Vref caps: HIZ 50 100
  Pin Default 0x02a19138: [Jack] Mic at Ext Front
    Conn = 1/8, Color = Pink
    DefAssociation = 0x3, Sequence = 0x8
    Misc = NO_PRESENCE
  Pin-ctls: 0x21: IN VREF_50
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 2
     0x16 0x25*
Node 0x1f [Pin Complex] wcaps 0x400401: Stereo
  Pincap 0x00000020: IN
  Pin Default 0x90370137: [Fixed] CD at Int N/A
    Conn = Analog, Color = Unknown
    DefAssociation = 0x3, Sequence = 0x7
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
Node 0x20 [Pin Complex] wcaps 0x400701: Stereo Digital
  Pincap 0x00000010: OUT
  Pin Default 0x185600f0: [Jack] Digital Out at Int HDMI
    Conn = Digital, Color = Unknown
    DefAssociation = 0xf, Sequence = 0x0
  Pin-ctls: 0x40: OUT
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x12
Node 0x21 [Pin Complex] wcaps 0x400701: Stereo Digital
  Pincap 0x00000010: OUT
  Pin Default 0x074521f0: [Jack] SPDIF Out at Ext Rear Panel
    Conn = Optical, Color = Grey
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x15
Node 0x22 [Pin Complex] wcaps 0x400581: Stereo
  Pincap 0x00000014: OUT Detect
  Pin Default 0x01016011: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Orange
    DefAssociation = 0x1, Sequence = 0x1
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
  Connection: 1
     0x26
Node 0x23 [Pin Complex] wcaps 0x400581: Stereo
  Pincap 0x00000014: OUT Detect
  Pin Default 0x01012014: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Grey
    DefAssociation = 0x1, Sequence = 0x4
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=04, enabled=1
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
  Connection: 1
     0x27
Node 0x24 [Audio Output] wcaps 0x41d: Stereo Amp-Out
  Control: name="Center Playback Volume", index=0, device=0
    ControlAmp: chs=1, dir=Out, idx=0, ofs=0
  Control: name="LFE Playback Volume", index=0, device=0
    ControlAmp: chs=2, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x2a, nsteps=0x2a, stepsize=0x05, mute=0
  Amp-Out vals:  [0x28 0x28]
  Converter: stream=0, channel=0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
Node 0x25 [Audio Output] wcaps 0x41d: Stereo Amp-Out
  Control: name="Side Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Control: name="Headphone Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x2a, nsteps=0x2a, stepsize=0x05, mute=0
  Amp-Out vals:  [0x2a 0x2a]
  Converter: stream=0, channel=0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
Node 0x26 [Audio Selector] wcaps 0x30050d: Stereo Amp-Out
  Control: name="Center Playback Switch", index=0, device=0
    ControlAmp: chs=1, dir=Out, idx=0, ofs=0
  Control: name="LFE Playback Switch", index=0, device=0
    ControlAmp: chs=2, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Power states:  D0 D1 D2 D3
  Power: setting=D3, actual=D3
  Connection: 1
     0x24
Node 0x27 [Audio Selector] wcaps 0x30050d: Stereo Amp-Out
  Control: name="Side Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
  Connection: 1
     0x25

____________________________________________

End of NVIDIA bug report log file.