ubuntuusers.de

verpixelter desctop

Autor:
Heiner_Hinze
Datum:
18. August 2014 20:59
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
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
4118
4119
4120
4121
4122
4123
4124
4125
4126
4127
4128
4129
4130
4131
4132
4133
4134
4135
4136
4137
4138
4139
4140
4141
4142
4143
4144
4145
4146
4147
4148
4149
4150
4151
4152
4153
4154
4155
4156
4157
4158
4159
4160
4161
4162
4163
4164
4165
4166
4167
4168
4169
4170
4171
4172
4173
4174
4175
4176
4177
4178
4179
4180
4181
4182
4183
4184
4185
4186
4187
4188
4189
4190
4191
4192
4193
4194
4195
4196
4197
4198
4199
4200
4201
4202
4203
4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
4214
4215
4216
4217
4218
4219
4220
4221
4222
4223
4224
4225
4226
4227
4228
4229
4230
4231
4232
4233
4234
4235
4236
4237
4238
4239
4240
4241
4242
4243
4244
4245
4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
4258
4259
4260
4261
4262
4263
4264
4265
4266
4267
4268
4269
4270
4271
4272
4273
4274
4275
4276
4277
4278
4279
4280
4281
4282
4283
4284
4285
4286
4287
4288
4289
4290
4291
4292
4293
4294
4295
4296
4297
4298
4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
4309
4310
4311
4312
4313
4314
4315
4316
4317
4318
4319
4320
4321
4322
4323
4324
4325
4326
4327
4328
4329
4330
4331
4332
4333
4334
4335
4336
4337
4338
4339
4340
4341
4342
4343
4344
4345
4346
4347
4348
4349
4350
4351
4352
4353
4354
4355
4356
4357
4358
4359
4360
4361
4362
4363
4364
4365
4366
4367
4368
4369
4370
4371
4372
4373
4374
4375
4376
4377
4378
4379
4380
4381
4382
4383
4384
4385
4386
4387
4388
4389
4390
4391
4392
4393
4394
4395
4396
4397
4398
4399
4400
4401
4402
4403
4404
4405
4406
4407
4408
4409
4410
4411
4412
4413
4414
4415
4416
4417
4418
4419
4420
4421
4422
4423
4424
4425
4426
4427
4428
4429
4430
4431
4432
4433
4434
4435
4436
4437
4438
4439
4440
4441
4442
4443
4444
4445
4446
4447
4448
4449
4450
4451
4452
4453
4454
4455
4456
4457
4458
4459
4460
4461
4462
4463
4464
4465
4466
4467
4468
4469
4470
4471
4472
4473
4474
4475
4476
4477
4478
4479
4480
4481
4482
4483
4484
4485
4486
4487
4488
4489
4490
4491
4492
4493
4494
4495
4496
4497
4498
4499
4500
4501
4502
4503
4504
4505
4506
4507
4508
4509
4510
4511
4512
4513
4514
4515
4516
4517
4518
4519
4520
4521
4522
4523
4524
4525
4526
4527
4528
4529
4530
4531
4532
4533
4534
4535
4536
4537
4538
4539
4540
4541
4542
4543
4544
4545
4546
4547
4548
4549
4550
4551
4552
4553
4554
4555
4556
4557
4558
4559
4560
4561
4562
4563
4564
4565
4566
4567
4568
4569
4570
4571
4572
4573
4574
4575
4576
4577
4578
4579
4580
4581
4582
4583
4584
4585
4586
4587
4588
4589
4590
4591
4592
4593
4594
4595
4596
4597
4598
4599
4600
4601
4602
4603
4604
4605
4606
4607
4608
4609
4610
4611
4612
4613
4614
4615
4616
4617
4618
4619
4620
4621
4622
4623
4624
4625
4626
4627
4628
4629
4630
4631
4632
4633
4634
4635
4636
4637
4638
4639
4640
4641
4642
4643
4644
4645
4646
4647
4648
4649
4650
4651
4652
4653
4654
4655
4656
4657
4658
4659
4660
4661
4662
4663
4664
4665
4666
4667
4668
4669
4670
4671
4672
4673
4674
4675
4676
4677
4678
4679
4680
4681
4682
4683
4684
4685
4686
4687
4688
4689
4690
4691
4692
4693
4694
4695
4696
4697
4698
4699
4700
4701
4702
4703
4704
4705
4706
4707
4708
4709
4710
4711
4712
4713
4714
4715
4716
4717
4718
4719
4720
4721
4722
4723
4724
4725
4726
4727
4728
4729
4730
4731
4732
4733
4734
4735
4736
4737
4738
4739
4740
4741
4742
4743
4744
4745
4746
4747
4748
4749
4750
4751
4752
4753
4754
4755
4756
4757
4758
4759
4760
4761
4762
4763
4764
4765
4766
4767
4768
4769
4770
4771
4772
4773
4774
4775
4776
4777
4778
4779
4780
4781
4782
4783
4784
4785
4786
4787
4788
4789
4790
4791
4792
4793
4794
4795
4796
4797
4798
4799
4800
4801
4802
4803
4804
4805
4806
4807
4808
4809
4810
4811
4812
4813
4814
4815
4816
4817
4818
4819
4820
4821
4822
4823
4824
4825
4826
4827
4828
4829
4830
4831
4832
4833
4834
4835
4836
4837
4838
4839
4840
4841
4842
4843
4844
4845
4846
4847
4848
4849
4850
4851
4852
4853
4854
4855
4856
4857
4858
4859
4860
4861
4862
4863
4864
4865
4866
4867
4868
4869
4870
4871
4872
4873
4874
4875
4876
4877
4878
4879
4880
4881
4882
4883
4884
4885
4886
4887
4888
4889
4890
4891
4892
4893
4894
4895
4896
4897
4898
4899
4900
4901
4902
4903
4904
4905
4906
4907
4908
4909
4910
4911
4912
4913
4914
4915
4916
4917
4918
4919
4920
4921
4922
4923
4924
4925
4926
4927
4928
4929
4930
4931
4932
4933
4934
4935
4936
4937
4938
4939
4940
4941
4942
4943
4944
4945
4946
4947
4948
4949
4950
4951
4952
4953
4954
4955
4956
4957
4958
4959
4960
4961
4962
4963
4964
4965
4966
4967
4968
4969
4970
4971
4972
4973
4974
4975
4976
4977
4978
4979
4980
4981
4982
4983
4984
4985
4986
4987
4988
4989
4990
4991
4992
4993
4994
4995
4996
4997
4998
4999
5000
5001
5002
5003
5004
5005
5006
5007
5008
5009
5010
5011
5012
5013
5014
5015
5016
5017
5018
5019
5020
5021
5022
5023
nvidia-bug-report.sh Version: 14306482

Date: Fr 15. Aug 10:05:00 CEST 2014
uname: Linux heiner-desktop 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux
command line flags: 

____________________________________________

*** /etc/issue
*** ls: -rw-r--r-- 1 root root 26 2014-07-22 17:33:52.000000000 +0200 /etc/issue
Ubuntu 14.04.1 LTS \n \l


____________________________________________

*** /etc/debian_version
*** ls: -rw-r--r-- 1 root root 11 2014-02-20 03:43:56.000000000 +0100 /etc/debian_version
jessie/sid

____________________________________________

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

____________________________________________

*** /var/log/Xorg.0.log
*** ls: -rw-r--r-- 1 root root 27642 2014-08-15 10:04:35.209606027 +0200 /var/log/Xorg.0.log
[    18.054] 
X.Org X Server 1.15.1
Release Date: 2014-04-13
[    18.054] X Protocol Version 11, Revision 0
[    18.054] Build Operating System: Linux 3.2.0-37-generic x86_64 Ubuntu
[    18.054] Current Operating System: Linux heiner-desktop 3.13.0-34-generic #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014 x86_64
[    18.054] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic root=UUID=cb6bb820-c537-4460-bd30-4c7a1c5b4a45 ro quiet splash
[    18.054] Build Date: 16 April 2014  01:36:29PM
[    18.054] xorg-server 2:1.15.1-0ubuntu2 (For technical support please see http://www.ubuntu.com/support) 
[    18.054] Current version of pixman: 0.30.2
[    18.054] 	Before reporting problems, check http://wiki.x.org
	to make sure that you have the latest version.
[    18.054] Markers: (--) probed, (**) from config file, (==) default setting,
	(++) from command line, (!!) notice, (II) informational,
	(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    18.055] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Aug 15 09:15:12 2014
[    18.149] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    18.209] (==) No Layout section.  Using the first Screen section.
[    18.209] (==) No screen section available. Using defaults.
[    18.209] (**) |-->Screen "Default Screen Section" (0)
[    18.209] (**) |   |-->Monitor "<default monitor>"
[    18.209] (==) No monitor specified for screen "Default Screen Section".
	Using a default monitor configuration.
[    18.209] (==) Automatically adding devices
[    18.209] (==) Automatically enabling devices
[    18.209] (==) Automatically adding GPU devices
[    18.209] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    18.209] 	Entry deleted from font path.
[    18.209] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    18.209] 	Entry deleted from font path.
[    18.209] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    18.209] 	Entry deleted from font path.
[    18.209] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    18.209] 	Entry deleted from font path.
[    18.209] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    18.209] 	Entry deleted from font path.
[    18.209] (==) FontPath set to:
	/usr/share/fonts/X11/misc,
	/usr/share/fonts/X11/Type1,
	built-ins
[    18.209] (==) ModulePath set to "/usr/lib/x86_64-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[    18.209] (II) The server relies on udev to provide the list of input devices.
	If no devices become available, reconfigure udev or disable AutoAddDevices.
[    18.209] (II) Loader magic: 0x7f9f23599d60
[    18.209] (II) Module ABI versions:
[    18.209] 	X.Org ANSI C Emulation: 0.4
[    18.209] 	X.Org Video Driver: 15.0
[    18.209] 	X.Org XInput driver : 20.0
[    18.209] 	X.Org Server Extension : 8.0
[    18.211] (--) PCI:*(0:0:13:0) 10de:03d0:1849:03d0 rev 162, Mem @ 0xde000000/16777216, 0xc0000000/268435456, 0xdd000000/16777216, BIOS @ 0x????????/131072
[    18.211] Initializing built-in extension Generic Event Extension
[    18.211] Initializing built-in extension SHAPE
[    18.211] Initializing built-in extension MIT-SHM
[    18.211] Initializing built-in extension XInputExtension
[    18.211] Initializing built-in extension XTEST
[    18.211] Initializing built-in extension BIG-REQUESTS
[    18.211] Initializing built-in extension SYNC
[    18.211] Initializing built-in extension XKEYBOARD
[    18.211] Initializing built-in extension XC-MISC
[    18.211] Initializing built-in extension SECURITY
[    18.211] Initializing built-in extension XINERAMA
[    18.211] Initializing built-in extension XFIXES
[    18.211] Initializing built-in extension RENDER
[    18.211] Initializing built-in extension RANDR
[    18.211] Initializing built-in extension COMPOSITE
[    18.211] Initializing built-in extension DAMAGE
[    18.211] Initializing built-in extension MIT-SCREEN-SAVER
[    18.211] Initializing built-in extension DOUBLE-BUFFER
[    18.211] Initializing built-in extension RECORD
[    18.211] Initializing built-in extension DPMS
[    18.211] Initializing built-in extension Present
[    18.211] Initializing built-in extension DRI3
[    18.211] Initializing built-in extension X-Resource
[    18.211] Initializing built-in extension XVideo
[    18.211] Initializing built-in extension XVideo-MotionCompensation
[    18.211] Initializing built-in extension SELinux
[    18.211] Initializing built-in extension XFree86-VidModeExtension
[    18.211] Initializing built-in extension XFree86-DGA
[    18.211] Initializing built-in extension XFree86-DRI
[    18.211] Initializing built-in extension DRI2
[    18.211] (WW) "glamoregl" will not be loaded unless you've specified it to be loaded elsewhere.
[    18.211] (II) "glx" will be loaded by default.
[    18.211] (WW) "xmir" is not to be loaded by default. Skipping.
[    18.211] (II) LoadModule: "glx"
[    18.212] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/libglx.so
[    18.860] (II) Module glx: vendor="NVIDIA Corporation"
[    18.860] 	compiled for 4.0.2, module version = 1.0.0
[    18.860] 	Module class: X.Org Server Extension
[    18.860] (II) NVIDIA GLX Module  304.117  Tue Nov 26 21:45:09 PST 2013
[    18.860] Loading extension GLX
[    18.860] (==) Matched nvidia as autoconfigured driver 0
[    18.860] (==) Matched nouveau as autoconfigured driver 1
[    18.861] (==) Matched modesetting as autoconfigured driver 2
[    18.861] (==) Matched fbdev as autoconfigured driver 3
[    18.861] (==) Matched vesa as autoconfigured driver 4
[    18.861] (==) Assigned the driver to the xf86ConfigLayout
[    18.861] (II) LoadModule: "nvidia"
[    18.861] (II) Loading /usr/lib/x86_64-linux-gnu/xorg/extra-modules/nvidia_drv.so
[    18.862] (II) Module nvidia: vendor="NVIDIA Corporation"
[    18.862] 	compiled for 4.0.2, module version = 1.0.0
[    18.862] 	Module class: X.Org Video Driver
[    18.862] (II) LoadModule: "nouveau"
[    18.863] (II) Loading /usr/lib/xorg/modules/drivers/nouveau_drv.so
[    18.873] (II) Module nouveau: vendor="X.Org Foundation"
[    18.874] 	compiled for 1.15.0, module version = 1.0.10
[    18.874] 	Module class: X.Org Video Driver
[    18.874] 	ABI class: X.Org Video Driver, version 15.0
[    18.874] (II) LoadModule: "modesetting"
[    18.874] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so
[    18.874] (II) Module modesetting: vendor="X.Org Foundation"
[    18.874] 	compiled for 1.15.0, module version = 0.8.1
[    18.874] 	Module class: X.Org Video Driver
[    18.874] 	ABI class: X.Org Video Driver, version 15.0
[    18.874] (II) LoadModule: "fbdev"
[    18.875] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[    18.875] (II) Module fbdev: vendor="X.Org Foundation"
[    18.875] 	compiled for 1.15.0, module version = 0.4.4
[    18.875] 	Module class: X.Org Video Driver
[    18.875] 	ABI class: X.Org Video Driver, version 15.0
[    18.875] (II) LoadModule: "vesa"
[    18.875] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[    18.875] (II) Module vesa: vendor="X.Org Foundation"
[    18.875] 	compiled for 1.15.0, module version = 2.3.3
[    18.875] 	Module class: X.Org Video Driver
[    18.875] 	ABI class: X.Org Video Driver, version 15.0
[    18.875] (II) NVIDIA dlloader X Driver  304.117  Tue Nov 26 21:27:08 PST 2013
[    18.875] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    18.875] (II) NOUVEAU driver Date:   Thu Nov 7 14:56:48 2013 +1000
[    18.875] (II) NOUVEAU driver for NVIDIA chipset families :
[    18.875] 	RIVA TNT        (NV04)
[    18.875] 	RIVA TNT2       (NV05)
[    18.875] 	GeForce 256     (NV10)
[    18.875] 	GeForce 2       (NV11, NV15)
[    18.876] 	GeForce 4MX     (NV17, NV18)
[    18.876] 	GeForce 3       (NV20)
[    18.876] 	GeForce 4Ti     (NV25, NV28)
[    18.876] 	GeForce FX      (NV3x)
[    18.876] 	GeForce 6       (NV4x)
[    18.876] 	GeForce 7       (G7x)
[    18.876] 	GeForce 8       (G8x)
[    18.876] 	GeForce GTX 200 (NVA0)
[    18.876] 	GeForce GTX 400 (NVC0)
[    18.876] (II) modesetting: Driver for Modesetting Kernel Drivers: kms
[    18.876] (II) FBDEV: driver for framebuffer: fbdev
[    18.876] (II) VESA: driver for VESA chipsets: vesa
[    18.876] (++) using VT number 7

[    18.884] (II) Loading sub module "fb"
[    18.884] (II) LoadModule: "fb"
[    18.894] (II) Loading /usr/lib/xorg/modules/libfb.so
[    18.894] (II) Module fb: vendor="X.Org Foundation"
[    18.895] 	compiled for 1.15.1, module version = 1.0.0
[    18.895] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    18.895] (II) Loading sub module "wfb"
[    18.895] (II) LoadModule: "wfb"
[    18.895] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    18.895] (II) Module wfb: vendor="X.Org Foundation"
[    18.895] 	compiled for 1.15.1, module version = 1.0.0
[    18.895] 	ABI class: X.Org ANSI C Emulation, version 0.4
[    18.895] (II) Loading sub module "ramdac"
[    18.895] (II) LoadModule: "ramdac"
[    18.895] (II) Module "ramdac" already built-in
[    18.895] (WW) Falling back to old probe method for modesetting
[    18.895] (EE) open /dev/dri/card0: No such file or directory
[    18.895] (WW) Falling back to old probe method for fbdev
[    18.895] (II) Loading sub module "fbdevhw"
[    18.895] (II) LoadModule: "fbdevhw"
[    18.896] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[    18.896] (II) Module fbdevhw: vendor="X.Org Foundation"
[    18.896] 	compiled for 1.15.1, module version = 0.0.2
[    18.896] 	ABI class: X.Org Video Driver, version 15.0
[    18.896] (EE) open /dev/fb0: No such file or directory
[    18.896] (WW) Falling back to old probe method for vesa
[    18.896] (II) NVIDIA(0): Creating default Display subsection in Screen section
	"Default Screen Section" for depth/fbbpp 24/32
[    18.896] (==) NVIDIA(0): Depth 24, (==) framebuffer bpp 32
[    18.896] (==) NVIDIA(0): RGB weight 888
[    18.896] (==) NVIDIA(0): Default visual is TrueColor
[    18.896] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    18.897] (**) NVIDIA(0): Enabling 2D acceleration
[    19.504] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    19.504] (II) NVIDIA(GPU-0):     Vision stereo.
[    19.505] (II) NVIDIA(0): NVIDIA GPU GeForce 6150SE nForce 430 (C61) at PCI:0:13:0
[    19.505] (II) NVIDIA(0):     (GPU-0)
[    19.505] (--) NVIDIA(0): Memory: 524288 kBytes
[    19.505] (--) NVIDIA(0): VideoBIOS: 05.61.32.22.03
[    19.505] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[    19.505] (--) NVIDIA(0): Valid display device(s) on GeForce 6150SE nForce 430 at PCI:0:13:0
[    19.505] (--) NVIDIA(0):     Acer AL1714 (CRT-0) (connected)
[    19.505] (--) NVIDIA(0): Acer AL1714 (CRT-0): 350.0 MHz maximum pixel clock
[    19.505] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    19.505] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    19.505] (**) NVIDIA(0):     been enabled on all display devices.)
[    19.505] (==) NVIDIA(0): 
[    19.505] (==) NVIDIA(0): No modes were requested; the default mode "nvidia-auto-select"
[    19.505] (==) NVIDIA(0):     will be used as the requested mode.
[    19.505] (==) NVIDIA(0): 
[    19.506] (II) NVIDIA(0): Validated MetaModes:
[    19.506] (II) NVIDIA(0):     "CRT-0:nvidia-auto-select"
[    19.506] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024
[    19.507] (WW) NVIDIA(0): Unable to support custom viewPortOut 1280 x 720 +0 +152
[    19.507] (--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config
[    19.507] (--) NVIDIA(0):     option
[    19.507] (II) UnloadModule: "nouveau"
[    19.507] (II) Unloading nouveau
[    19.507] (II) UnloadModule: "modesetting"
[    19.507] (II) Unloading modesetting
[    19.507] (II) UnloadModule: "fbdev"
[    19.507] (II) Unloading fbdev
[    19.507] (II) UnloadSubModule: "fbdevhw"
[    19.508] (II) Unloading fbdevhw
[    19.508] (II) UnloadModule: "vesa"
[    19.508] (II) Unloading vesa
[    19.508] (--) Depth 24 pixmap format is 32 bpp
[    19.513] (II) NVIDIA(0): Setting mode "CRT-0:nvidia-auto-select"
[    19.599] Loading extension NV-GLX
[    19.626] (==) NVIDIA(0): Disabling shared memory pixmaps
[    19.626] (==) NVIDIA(0): Backing store enabled
[    19.626] (==) NVIDIA(0): Silken mouse enabled
[    19.626] (==) NVIDIA(0): DPMS enabled
[    19.626] Loading extension NV-CONTROL
[    19.627] Loading extension XINERAMA
[    19.627] (II) Loading sub module "dri2"
[    19.627] (II) LoadModule: "dri2"
[    19.627] (II) Module "dri2" already built-in
[    19.627] (II) NVIDIA(0): [DRI2] Setup complete
[    19.627] (II) NVIDIA(0): [DRI2]   VDPAU driver: nvidia
[    19.627] (--) RandR disabled
[    19.635] (II) SELinux: Disabled on system
[    19.636] (II) Initializing extension GLX
[    19.657] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    19.662] (II) config/udev: Adding input device Power Button (/dev/input/event1)
[    19.662] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    19.662] (II) LoadModule: "evdev"
[    19.662] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so
[    19.668] (II) Module evdev: vendor="X.Org Foundation"
[    19.668] 	compiled for 1.15.0, module version = 2.8.2
[    19.668] 	Module class: X.Org XInput Driver
[    19.668] 	ABI class: X.Org XInput driver, version 20.0
[    19.669] (II) Using input driver 'evdev' for 'Power Button'
[    19.669] (**) Power Button: always reports core events
[    19.669] (**) evdev: Power Button: Device: "/dev/input/event1"
[    19.669] (--) evdev: Power Button: Vendor 0 Product 0x1
[    19.669] (--) evdev: Power Button: Found keys
[    19.669] (II) evdev: Power Button: Configuring as keyboard
[    19.669] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input1/event1"
[    19.669] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6)
[    19.669] (**) Option "xkb_rules" "evdev"
[    19.669] (**) Option "xkb_model" "pc105"
[    19.669] (**) Option "xkb_layout" "de"
[    19.671] (II) XKB: reuse xkmfile /var/lib/xkb/server-808BBA3D4C227BDB44C370226C34E44C5D69A4A9.xkm
[    19.672] (II) config/udev: Adding input device Power Button (/dev/input/event0)
[    19.672] (**) Power Button: Applying InputClass "evdev keyboard catchall"
[    19.672] (II) Using input driver 'evdev' for 'Power Button'
[    19.672] (**) Power Button: always reports core events
[    19.673] (**) evdev: Power Button: Device: "/dev/input/event0"
[    19.673] (--) evdev: Power Button: Vendor 0 Product 0x1
[    19.673] (--) evdev: Power Button: Found keys
[    19.673] (II) evdev: Power Button: Configuring as keyboard
[    19.673] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0/event0"
[    19.673] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7)
[    19.673] (**) Option "xkb_rules" "evdev"
[    19.673] (**) Option "xkb_model" "pc105"
[    19.673] (**) Option "xkb_layout" "de"
[    19.673] (II) config/udev: Adding input device Microsoft Microsoft Wireless Optical Mouse® 1.00 (/dev/input/event3)
[    19.674] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: Applying InputClass "evdev pointer catchall"
[    19.674] (II) Using input driver 'evdev' for 'Microsoft Microsoft Wireless Optical Mouse® 1.00'
[    19.674] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: always reports core events
[    19.674] (**) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Device: "/dev/input/event3"
[    19.674] (--) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Vendor 0x45e Product 0xe1
[    19.674] (--) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Found 9 mouse buttons
[    19.674] (--) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Found scroll wheel(s)
[    19.674] (--) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Found relative axes
[    19.674] (--) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Found x and y relative axes
[    19.674] (II) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Configuring as mouse
[    19.674] (II) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: Adding scrollwheel support
[    19.674] (**) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: YAxisMapping: buttons 4 and 5
[    19.674] (**) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    19.674] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.0/usb2/2-3/2-3:1.0/input/input5/event3"
[    19.674] (II) XINPUT: Adding extended input device "Microsoft Microsoft Wireless Optical Mouse® 1.00" (type: MOUSE, id 8)
[    19.674] (II) evdev: Microsoft Microsoft Wireless Optical Mouse® 1.00: initialized for relative axes.
[    19.674] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) keeping acceleration scheme 1
[    19.674] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) acceleration profile 0
[    19.674] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) acceleration factor: 2.000
[    19.674] (**) Microsoft Microsoft Wireless Optical Mouse® 1.00: (accel) acceleration threshold: 4
[    19.675] (II) config/udev: Adding input device Microsoft Microsoft Wireless Optical Mouse® 1.00 (/dev/input/mouse0)
[    19.675] (II) No input driver specified, ignoring this device.
[    19.675] (II) This device may have been added with another device file.
[    19.675] (II) config/udev: Adding input device Microsoft LifeCam VX-5000 (/dev/input/event5)
[    19.675] (**) Microsoft LifeCam VX-5000: Applying InputClass "evdev keyboard catchall"
[    19.675] (II) Using input driver 'evdev' for 'Microsoft LifeCam VX-5000'
[    19.675] (**) Microsoft LifeCam VX-5000: always reports core events
[    19.675] (**) evdev: Microsoft LifeCam VX-5000: Device: "/dev/input/event5"
[    19.675] (--) evdev: Microsoft LifeCam VX-5000: Vendor 0x45e Product 0x728
[    19.675] (--) evdev: Microsoft LifeCam VX-5000: Found keys
[    19.675] (II) evdev: Microsoft LifeCam VX-5000: Configuring as keyboard
[    19.675] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:02.1/usb1/1-2/1-2:1.0/input/input6/event5"
[    19.675] (II) XINPUT: Adding extended input device "Microsoft LifeCam VX-5000" (type: KEYBOARD, id 9)
[    19.675] (**) Option "xkb_rules" "evdev"
[    19.675] (**) Option "xkb_model" "pc105"
[    19.676] (**) Option "xkb_layout" "de"
[    19.676] (II) config/udev: Adding input device HDA NVidia Line Out Surround (/dev/input/event8)
[    19.676] (II) No input driver specified, ignoring this device.
[    19.676] (II) This device may have been added with another device file.
[    19.677] (II) config/udev: Adding input device HDA NVidia Line Out CLFE (/dev/input/event7)
[    19.677] (II) No input driver specified, ignoring this device.
[    19.677] (II) This device may have been added with another device file.
[    19.677] (II) config/udev: Adding input device HDA NVidia Line Out Side (/dev/input/event6)
[    19.677] (II) No input driver specified, ignoring this device.
[    19.677] (II) This device may have been added with another device file.
[    19.677] (II) config/udev: Adding input device HDA NVidia Mic (/dev/input/event11)
[    19.678] (II) No input driver specified, ignoring this device.
[    19.678] (II) This device may have been added with another device file.
[    19.678] (II) config/udev: Adding input device HDA NVidia Line (/dev/input/event10)
[    19.678] (II) No input driver specified, ignoring this device.
[    19.678] (II) This device may have been added with another device file.
[    19.678] (II) config/udev: Adding input device HDA NVidia Line Out Front (/dev/input/event9)
[    19.678] (II) No input driver specified, ignoring this device.
[    19.678] (II) This device may have been added with another device file.
[    19.679] (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event2)
[    19.679] (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
[    19.679] (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
[    19.679] (**) AT Translated Set 2 keyboard: always reports core events
[    19.679] (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event2"
[    19.679] (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
[    19.679] (--) evdev: AT Translated Set 2 keyboard: Found keys
[    19.679] (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
[    19.679] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input2/event2"
[    19.679] (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 10)
[    19.679] (**) Option "xkb_rules" "evdev"
[    19.679] (**) Option "xkb_model" "pc105"
[    19.679] (**) Option "xkb_layout" "de"
[    19.680] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/event4)
[    19.680] (**) ImExPS/2 Generic Explorer Mouse: Applying InputClass "evdev pointer catchall"
[    19.680] (II) Using input driver 'evdev' for 'ImExPS/2 Generic Explorer Mouse'
[    19.680] (**) ImExPS/2 Generic Explorer Mouse: always reports core events
[    19.680] (**) evdev: ImExPS/2 Generic Explorer Mouse: Device: "/dev/input/event4"
[    19.680] (--) evdev: ImExPS/2 Generic Explorer Mouse: Vendor 0x2 Product 0x6
[    19.680] (--) evdev: ImExPS/2 Generic Explorer Mouse: Found 9 mouse buttons
[    19.680] (--) evdev: ImExPS/2 Generic Explorer Mouse: Found scroll wheel(s)
[    19.680] (--) evdev: ImExPS/2 Generic Explorer Mouse: Found relative axes
[    19.680] (--) evdev: ImExPS/2 Generic Explorer Mouse: Found x and y relative axes
[    19.680] (II) evdev: ImExPS/2 Generic Explorer Mouse: Configuring as mouse
[    19.680] (II) evdev: ImExPS/2 Generic Explorer Mouse: Adding scrollwheel support
[    19.680] (**) evdev: ImExPS/2 Generic Explorer Mouse: YAxisMapping: buttons 4 and 5
[    19.680] (**) evdev: ImExPS/2 Generic Explorer Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200
[    19.680] (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio1/input/input4/event4"
[    19.680] (II) XINPUT: Adding extended input device "ImExPS/2 Generic Explorer Mouse" (type: MOUSE, id 11)
[    19.680] (II) evdev: ImExPS/2 Generic Explorer Mouse: initialized for relative axes.
[    19.680] (**) ImExPS/2 Generic Explorer Mouse: (accel) keeping acceleration scheme 1
[    19.680] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration profile 0
[    19.680] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration factor: 2.000
[    19.680] (**) ImExPS/2 Generic Explorer Mouse: (accel) acceleration threshold: 4
[    19.681] (II) config/udev: Adding input device ImExPS/2 Generic Explorer Mouse (/dev/input/mouse1)
[    19.681] (II) No input driver specified, ignoring this device.
[    19.681] (II) This device may have been added with another device file.
[    22.590] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    22.590] (II) NVIDIA(GPU-0):     Vision stereo.
[    22.590] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    22.590] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    22.590] (**) NVIDIA(0):     been enabled on all display devices.)
[    23.447] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    23.447] (II) NVIDIA(GPU-0):     Vision stereo.
[    23.447] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    23.447] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    23.447] (**) NVIDIA(0):     been enabled on all display devices.)
[    31.890] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    31.890] (II) NVIDIA(GPU-0):     Vision stereo.
[    31.890] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    31.890] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    31.890] (**) NVIDIA(0):     been enabled on all display devices.)
[    32.481] (II) NVIDIA(0): Setting mode "NULL"
[    32.534] (II) NVIDIA(0): Setting mode "VGA-0: 1152x864 @1152x864 +0+0"
[    32.792] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    32.792] (II) NVIDIA(GPU-0):     Vision stereo.
[    32.792] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    32.792] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    32.792] (**) NVIDIA(0):     been enabled on all display devices.)
[    33.049] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    33.050] (II) NVIDIA(GPU-0):     Vision stereo.
[    33.050] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    33.050] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    33.050] (**) NVIDIA(0):     been enabled on all display devices.)
[    33.133] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm
[    33.494] (II) XKB: reuse xkmfile /var/lib/xkb/server-81907AB388B478D711E6423DD8B0048239BE0CB6.xkm
[    33.536] (II) XKB: reuse xkmfile /var/lib/xkb/server-81907AB388B478D711E6423DD8B0048239BE0CB6.xkm
[    33.952] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    33.952] (II) NVIDIA(GPU-0):     Vision stereo.
[    33.952] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    33.952] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    33.952] (**) NVIDIA(0):     been enabled on all display devices.)
[    36.997] (II) XKB: reuse xkmfile /var/lib/xkb/server-A237F4D5ECC0A2998042D3B58D9A7CE5E820BA0E.xkm
[    52.409] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[    52.409] (II) NVIDIA(GPU-0):     Vision stereo.
[    52.409] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[    52.409] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[    52.409] (**) NVIDIA(0):     been enabled on all display devices.)
[  2085.577] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[  2085.577] (II) NVIDIA(GPU-0):     Vision stereo.
[  2085.577] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[  2085.577] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[  2085.577] (**) NVIDIA(0):     been enabled on all display devices.)
[  2474.945] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[  2474.945] (II) NVIDIA(GPU-0):     Vision stereo.
[  2474.945] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[  2474.945] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[  2474.945] (**) NVIDIA(0):     been enabled on all display devices.)
[  2980.537] (II) NVIDIA(GPU-0): Display (Acer AL1714 (CRT-0)) does not support NVIDIA 3D
[  2980.537] (II) NVIDIA(GPU-0):     Vision stereo.
[  2980.537] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display
[  2980.537] (**) NVIDIA(0):     device Acer AL1714 (CRT-0) (Using EDID frequencies has
[  2980.537] (**) NVIDIA(0):     been enabled on all display devices.)

____________________________________________

*** /usr/share/X11/xorg.conf.d/10-evdev.conf
*** ls: -rw-r--r-- 1 root root 1099 2014-04-16 15:38:27.000000000 +0200 /usr/share/X11/xorg.conf.d/10-evdev.conf
#
# Catch-all evdev loader for udev-based systems
# We don't simply match on any device since that also adds accelerometers
# and other devices that we don't really want to use. The list below
# matches everything but joysticks.

Section "InputClass"
        Identifier "evdev pointer catchall"
        MatchIsPointer "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev keyboard catchall"
        MatchIsKeyboard "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchpad catchall"
        MatchIsTouchpad "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev tablet catchall"
        MatchIsTablet "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

Section "InputClass"
        Identifier "evdev touchscreen catchall"
        MatchIsTouchscreen "on"
        MatchDevicePath "/dev/input/event*"
        Driver "evdev"
EndSection

____________________________________________

*** /usr/share/X11/xorg.conf.d/10-quirks.conf
*** ls: -rw-r--r-- 1 root root 1867 2014-04-16 15:38:27.000000000 +0200 /usr/share/X11/xorg.conf.d/10-quirks.conf
# Collection of quirks and blacklist/whitelists for specific devices.


# Accelerometer device, posts data through ABS_X/ABS_Y, making X unusable
# http://bugs.freedesktop.org/show_bug.cgi?id=22442 
Section "InputClass"
        Identifier "ThinkPad HDAPS accelerometer blacklist"
        MatchProduct "ThinkPad HDAPS accelerometer data"
        Option "Ignore" "on"
EndSection

# https://bugzilla.redhat.com/show_bug.cgi?id=523914
# Mouse does not move in PV Xen guest
# Explicitly tell evdev to not ignore the absolute axes.
Section "InputClass"
        Identifier "Xen Virtual Pointer axis blacklist"
        MatchProduct "Xen Virtual Pointer"
        Option "IgnoreAbsoluteAxes" "off"
        Option "IgnoreRelativeAxes" "off"
EndSection

# https://bugzilla.redhat.com/show_bug.cgi?id=612140
# please make Evoluent VerticalMouse 3 work out of the box
# Button mapping on this mouse is quirky
Section "InputClass"
	Identifier "Evoluent VerticalMouse 3"
        MatchProduct "Evoluent VerticalMouse 3"
        # Sets following configuration:
        # top button:    left
        # middle button: middle
        # bottom button: right
        # wheel click:   middle
        # thumb button:  8 (back)
	Option "ButtonMapping" "1 2 2 4 5 6 7 3 8"
EndSection


# https://bugs.freedesktop.org/show_bug.cgi?id=55867
# Bug 55867 - Doesn't know how to tag XI_TRACKBALL
Section "InputClass"
        Identifier "Tag trackballs as XI_TRACKBALL"
        MatchProduct "trackball"
        MatchDriver "evdev"
        Option "TypeName" "TRACKBALL"
EndSection

# https://bugs.freedesktop.org/show_bug.cgi?id=62831
# Bug 62831 - Mionix Naos 5000 mouse detected incorrectly
Section "InputClass"
        Identifier "Tag Mionix Naos 5000 mouse XI_MOUSE"
        MatchProduct "La-VIEW Technology Naos 5000 Mouse"
        MatchDriver "evdev"
        Option "TypeName" "MOUSE"
EndSection

____________________________________________

*** /usr/share/X11/xorg.conf.d/11-evdev-quirks.conf
*** ls: -rw-r--r-- 1 root root 590 2014-02-05 10:44:53.000000000 +0100 /usr/share/X11/xorg.conf.d/11-evdev-quirks.conf
Section "InputClass"
	Identifier "Avago Technologies mouse quirks (LP: #746639)"
	MatchIsPointer "on"
	MatchDevicePath "/dev/input/event*"
	Driver "evdev"
	MatchUSBID "192f:0416"
	Option "Emulate3Buttons" "True"
	Option "Emulate3Timeout" "50"
EndSection

# X/Y axis not working due to device reporting absolute axes
# https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-input-evdev/+bug/325581
# https://bugs.freedesktop.org/show_bug.cgi?id=32882
Section "InputClass"
	Identifier	"Benq m310"
	MatchProduct	"HID 0d62:1000"
	Driver		"evdev"
	Option		"IgnoreAbsoluteAxes"	"true"
EndSection

____________________________________________

*** /usr/share/X11/xorg.conf.d/11-evdev-trackpoint.conf
*** ls: -rw-r--r-- 1 root root 364 2014-02-05 10:44:53.000000000 +0100 /usr/share/X11/xorg.conf.d/11-evdev-trackpoint.conf
# trackpoint users want wheel emulation

Section "InputClass"
	Identifier	"trackpoint catchall"
	MatchIsPointer	"true"
	MatchProduct	"TrackPoint|DualPoint Stick"
	MatchDevicePath	"/dev/input/event*"
	Option	"Emulate3Buttons"	"true"
	Option	"EmulateWheel"	"true"
	Option	"EmulateWheelButton"	"2"
	Option	"XAxisMapping"	"6 7"
	Option	"YAxisMapping"	"4 5"
EndSection

____________________________________________

*** /usr/share/X11/xorg.conf.d/50-synaptics.conf
*** ls: -rw-r--r-- 1 root root 1757 2014-04-10 12:04:29.000000000 +0200 /usr/share/X11/xorg.conf.d/50-synaptics.conf
# Example xorg.conf.d snippet that assigns the touchpad driver
# to all touchpads. See xorg.conf.d(5) for more information on
# InputClass.
# DO NOT EDIT THIS FILE, your distribution will likely overwrite
# it when updating. Copy (and rename) this file into
# /etc/X11/xorg.conf.d first.
# Additional options may be added in the form of
#   Option "OptionName" "value"
#
Section "InputClass"
        Identifier "touchpad catchall"
        Driver "synaptics"
        MatchIsTouchpad "on"
# This option is recommend on all Linux systems using evdev, but cannot be
# enabled by default. See the following link for details:
# http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
      MatchDevicePath "/dev/input/event*"
EndSection

Section "InputClass"
        Identifier "touchpad ignore duplicates"
        MatchIsTouchpad "on"
        MatchOS "Linux"
        MatchDevicePath "/dev/input/mouse*"
        Option "Ignore" "on"
EndSection

# This option enables the bottom right corner to be a right button on
# non-synaptics clickpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Default clickpad buttons"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
#       To disable the bottom edge area so the buttons only work as buttons,
#       not for movement, set the AreaBottomEdge
#       Option "AreaBottomEdge" "82%"
EndSection

# This option disables software buttons on Apple touchpads.
# This option is only interpreted by clickpads.
Section "InputClass"
        Identifier "Disable clickpad buttons on Apple touchpads"
        MatchProduct "Apple|bcm5974"
        MatchDriver "synaptics"
        Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
EndSection

____________________________________________

*** /usr/share/X11/xorg.conf.d/50-vmmouse.conf
*** ls: -rw-r--r-- 1 root root 115 2014-02-05 10:48:03.000000000 +0100 /usr/share/X11/xorg.conf.d/50-vmmouse.conf
Section "InputClass"
	Identifier	"vmmouse"
	MatchIsPointer	"on"
	MatchTag	"vmmouse"
	Driver		"vmmouse"
EndSection


____________________________________________

*** /usr/share/X11/xorg.conf.d/50-wacom.conf
*** ls: -rw-r--r-- 1 root root 842 2014-02-05 10:36:00.000000000 +0100 /usr/share/X11/xorg.conf.d/50-wacom.conf
Section "InputClass"
	Identifier "Wacom class"
	MatchProduct "Wacom|WACOM|Hanwang|PTK-540WL|ISD-V4"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

Section "InputClass"
	Identifier "Wacom serial class"
	MatchProduct "Serial Wacom Tablet"
	Driver "wacom"
EndSection

Section "InputClass"
        Identifier "Wacom serial class identifiers"
        MatchProduct "WACf|FUJ02e5|FUJ02e7|FUJ02e9"
        Driver "wacom"
EndSection

# Waltop tablets
Section "InputClass"
	Identifier "Waltop class"
	MatchProduct "WALTOP"
	MatchIsTablet "on"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
EndSection

# N-Trig Duosense Electromagnetic Digitizer
Section "InputClass"
	Identifier "Wacom N-Trig class"
	MatchProduct "HID 1b96:0001|N-Trig Pen"
	MatchDevicePath "/dev/input/event*"
	Driver "wacom"
	Option "Button2" "3"
EndSection


____________________________________________

*** /usr/share/X11/xorg.conf.d/51-synaptics-quirks.conf
*** ls: -rw-r--r-- 1 root root 590 2014-04-10 12:04:08.000000000 +0200 /usr/share/X11/xorg.conf.d/51-synaptics-quirks.conf
Section "InputClass"
	Identifier "Dell Inspiron embedded buttons quirks"
	MatchTag "inspiron_1011|inspiron_1012"
	MatchDevicePath "/dev/input/event*"
	Driver "synaptics"
	Option "JumpyCursorThreshold" "90"
EndSection

Section "InputClass"
	Identifier "Dell Inspiron quirks"
	MatchTag "inspiron_1120"
	MatchDevicePath "/dev/input/event*"
	Driver "synaptics"
	Option "JumpyCursorThreshold" "250"
EndSection

Section "InputClass"
	Identifier "HP Mininote quirks"
	MatchTag "mininote_1000"
	MatchDevicePath "/dev/input/event*"
	Driver "synaptics"
	Option "JumpyCursorThreshold" "20"
EndSection

____________________________________________

*** /usr/share/X11/xorg.conf.d/glamoregl.conf
*** ls: lrwxrwxrwx 1 root root 29 2014-04-18 21:24:54.727542746 +0200 /usr/share/X11/xorg.conf.d/glamoregl.conf -> /etc/alternatives/glamor_conf
Section "Module"
	Disable  "glamoregl"
EndSection

____________________________________________

Skipping ldd output (glxinfo not found)

____________________________________________

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

00:00.0 RAM memory: NVIDIA Corporation MCP61 Memory Controller (rev a1)
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0
	Capabilities: [44] HyperTransport: Slave or Primary Interface
	Capabilities: [dc] HyperTransport: MSI Mapping Enable+ Fixed-
00: de 10 ea 03 06 00 b0 00 a1 00 00 05 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 ea 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 00 00 00 00
40: 49 18 ea 03 08 dc 20 02 20 00 11 11 d0 00 00 00
50: 23 05 7f 00 03 00 00 00 00 00 03 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 06 36 00 00
70: 44 44 44 00 d0 09 00 00 11 00 00 00 11 11 88 00
80: 23 99 88 00 fa 00 64 0d 03 00 00 00 7f 00 00 00
90: 70 00 00 80 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 01 01 01 01 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 80 00 00 00 00 00 00 00
d0: 00 00 00 00 00 00 00 00 00 00 00 00 08 00 01 a8
e0: 00 00 e0 fe 00 00 00 00 07 00 00 00 20 10 00 00
f0: f0 ff ff ff 00 00 00 00 00 00 00 00 00 00 00 00

00:01.0 ISA bridge: NVIDIA Corporation MCP61 LPC Bridge (rev a2)
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0
00: de 10 e0 03 0f 00 a0 00 a2 00 01 06 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 e0 03
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 49 18 e0 03 00 00 00 00 fa 3e ff 00 fa 3e ff 00
50: fa 3e ff 00 00 5a 62 02 00 00 00 05 1f 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 00 ff ff c1 00 00 00 00 00 05 19 00 00 00 00
80: 09 20 00 81 01 dd 20 00 f0 00 00 01 ff 00 00 00
90: ff 7f 00 00 ff ff 3f 3f 21 65 08 74 b9 0c 00 d0
a0: 01 00 10 81 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 90 02 0f 03 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 10 00 00 00 00 00 00 00

00:01.1 SMBus: NVIDIA Corporation MCP61 SMBus (rev a2)
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: 66MHz, fast devsel, IRQ 11
	I/O ports at ec00 [size=64]
	I/O ports at 5000 [size=64]
	I/O ports at 6000 [size=64]
	Capabilities: [44] Power Management version 2
	Kernel driver in use: nForce2_smbus
00: de 10 eb 03 01 00 b0 00 a2 00 05 0c 00 00 80 00
10: 01 ec 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 01 50 00 00 01 60 00 00 00 00 00 00 49 18 eb 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 0b 01 00 00
40: 49 18 eb 03 01 00 02 c0 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 01 40 00 00 01 44 00 00 01 48 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 fe fe 01 20 00 00
80: 00 10 fe fe 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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: d4 30 80 01 01 00 00 00 00 00 00 00 00 00 00 00
d0: 44 00 40 01 10 00 00 00 05 00 00 00 00 00 00 00
e0: 80 10 04 00 04 40 00 07 80 02 00 00 41 44 44 11
f0: 02 ff 1e bf 01 00 00 80 10 00 00 00 00 00 00 00

00:01.2 RAM memory: NVIDIA Corporation MCP61 Memory Controller (rev a2)
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: 66MHz, fast devsel
00: de 10 f5 03 00 04 a0 00 a2 00 00 05 00 00 80 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 eb 03
30: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
40: 49 18 f5 03 00 00 00 00 10 02 80 10 10 00 10 10
50: 10 10 10 10 00 00 00 00 00 00 00 00 10 42 00 00
60: 0b 00 00 00 c0 1c 52 06 21 00 10 0a 00 00 63 00
70: 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 40 00 00 00 00 00 a0 18 00 00
90: 00 00 00 00 00 00 00 12 20 81 04 00 00 00 00 00
a0: 00 14 00 06 00 00 00 00 00 00 00 00 01 00 00 00
b0: 00 00 00 00 42 80 30 04 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

00:02.0 USB controller: NVIDIA Corporation MCP61 USB 1.1 Controller (rev a2) (prog-if 10 [OHCI])
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 23
	Memory at dffff000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [44] Power Management version 2
	Kernel driver in use: ohci-pci
00: de 10 f1 03 07 00 b0 00 a2 10 03 0c 00 00 80 00
10: 00 f0 ff df 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 f1 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 05 01 03 01
40: 49 18 f1 03 01 00 02 fe 00 00 00 00 00 00 00 00
50: 04 00 00 00 1d 47 40 00 10 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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

00:02.1 USB controller: NVIDIA Corporation MCP61 USB 2.0 Controller (rev a2) (prog-if 20 [EHCI])
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 22
	Memory at dfffec00 (32-bit, non-prefetchable) [size=256]
	Capabilities: [44] Debug port: BAR=1 offset=0098
	Capabilities: [80] Power Management version 2
	Kernel driver in use: ehci-pci
00: de 10 f2 03 06 00 b0 00 a2 20 03 0c 00 00 80 00
10: 00 ec ff df 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 f2 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 0a 02 03 01
40: 49 18 f2 03 0a 80 98 20 00 00 00 00 00 00 00 00
50: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 20 20 01 00 00 60 18 85 83 12 0f 01 00 00 00 00
70: 00 00 08 00 00 10 20 80 89 3d b6 22 77 25 f4 00
80: 01 00 02 fe 00 00 00 00 00 00 00 00 15 16 00 00
90: 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 01 00 00 00 00 00 00 c0 00 00 00 00 00 00 00 00
b0: 00 11 22 33 44 00 00 00 ff 03 00 00 00 00 00 00
c0: 10 10 2d 0d 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 10 00 00 00 00 00 00 00

00:04.0 PCI bridge: NVIDIA Corporation MCP61 PCI bridge (rev a1) (prog-if 01 [Subtractive decode])
	Flags: bus master, 66MHz, fast devsel, latency 0
	Bus: primary=00, secondary=01, subordinate=01, sec-latency=32
	Capabilities: [b8] Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Capabilities: [8c] HyperTransport: MSI Mapping Enable- Fixed-
00: de 10 f3 03 04 00 b0 00 a1 01 04 06 00 00 01 00
10: 00 00 00 00 00 00 00 00 00 01 01 20 f0 00 80 22
20: f0 ff 00 00 f0 ff 00 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 b8 00 00 00 00 00 00 00 00 00 02 02
40: 00 00 73 07 01 00 02 00 07 00 00 00 00 00 44 00
50: 00 00 00 00 00 00 00 00 ff 1f ff 1f 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 02 00 00 58 56 00 00 00 00 00 00 08 00 00 a8
90: 00 00 e0 fe 00 00 00 00 00 00 00 00 00 00 00 00
a0: 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 ff ff 00 00 0d 8c 00 00 49 18 f3 03
c0: 49 18 f3 03 07 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

00:05.0 Audio device: NVIDIA Corporation MCP61 High Definition Audio (rev a2)
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 21
	Memory at dfff8000 (32-bit, non-prefetchable) [size=16K]
	Capabilities: [44] Power Management version 2
	Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+
	Capabilities: [6c] HyperTransport: MSI Mapping Enable- Fixed+
	Kernel driver in use: snd_hda_intel
00: de 10 f0 03 06 00 b0 00 a2 00 03 04 00 00 80 00
10: 00 80 ff df 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 88 08
30: 00 00 00 00 44 00 00 00 00 00 00 00 0b 02 02 05
40: 49 18 88 08 01 50 02 c0 00 00 00 00 01 01 0f 00
50: 05 6c 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 0f 00 00 00 08 00 02 a8
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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 47 00 29 00 00 00 00 00 00

00:06.0 IDE interface: NVIDIA Corporation MCP61 IDE (rev a2) (prog-if 8a [Master SecP PriP])
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0
	[virtual] Memory at 000001f0 (32-bit, non-prefetchable) [size=8]
	[virtual] Memory at 000003f0 (type 3, non-prefetchable)
	[virtual] Memory at 00000170 (32-bit, non-prefetchable) [size=8]
	[virtual] Memory at 00000370 (type 3, non-prefetchable)
	I/O ports at ffa0 [size=16]
	Capabilities: [44] Power Management version 2
	Kernel driver in use: pata_amd
00: de 10 ec 03 05 00 b0 00 a2 8a 01 01 00 00 00 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: a1 ff 00 00 00 00 00 00 00 00 00 00 49 18 ec 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 00 00 03 01
40: 49 18 ec 03 01 00 02 00 00 00 00 00 00 00 00 00
50: 02 f0 00 00 00 00 00 00 99 99 99 20 2a 00 a8 20
60: 00 00 00 c5 00 00 00 00 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 4a 36 00 00 04 10 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 01 01
a0: 00 00 00 00 00 00 00 00 00 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 10 00 00 00 00 00 00 00

00:07.0 Bridge: NVIDIA Corporation MCP61 Ethernet (rev a2)
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 43
	Memory at dfffd000 (32-bit, non-prefetchable) [size=4K]
	I/O ports at e480 [size=8]
	Capabilities: [44] Power Management version 2
	Capabilities: [50] MSI: Enable+ Count=1/8 Maskable+ 64bit+
	Capabilities: [6c] HyperTransport: MSI Mapping Enable- Fixed+
	Kernel driver in use: forcedeth
00: de 10 ef 03 07 04 b0 00 a2 00 80 06 00 00 00 00
10: 00 d0 ff df 81 e4 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 ef 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 05 01 01 14
40: 49 18 ef 03 01 50 02 fe 00 01 00 00 08 00 00 20
50: 05 6c 87 01 0c 20 e0 fe 00 00 00 00 b1 41 00 00
60: fe 00 00 00 00 00 00 00 ff 00 00 00 08 00 02 a8
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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 42 01 00 00 00 00 00 00

00:08.0 IDE interface: NVIDIA Corporation MCP61 SATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 20
	I/O ports at 0e00 [size=8]
	I/O ports at 0e20 [size=4]
	I/O ports at 0e40 [size=8]
	I/O ports at 0e60 [size=4]
	I/O ports at d880 [size=16]
	Memory at dfffc000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [44] Power Management version 2
	Capabilities: [b0] MSI: Enable- Count=1/4 Maskable- 64bit+
	Capabilities: [cc] HyperTransport: MSI Mapping Enable- Fixed+
	Kernel driver in use: sata_nv
00: de 10 f6 03 07 00 b0 00 a2 85 01 01 00 00 80 00
10: 01 0e 00 00 21 0e 00 00 41 0e 00 00 61 0e 00 00
20: 81 d8 00 00 00 c0 ff df 00 00 00 00 49 18 f6 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 0a 01 03 01
40: 49 18 f6 03 01 b0 02 00 00 00 00 00 00 00 00 00
50: 0f 68 08 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 41 0c 00 00 00 0f 06 42 00 00 00 00
70: 2c 78 c4 40 01 10 00 00 01 10 00 00 20 00 20 00
80: 00 00 00 00 ce db f7 bf 00 00 fc 3a 5c fd fb 16
90: 00 00 6c 2f 00 00 00 00 06 00 06 10 f6 03 01 01
a0: 08 00 00 00 00 00 00 00 00 00 00 00 33 31 00 02
b0: 05 cc 84 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 0a 00 0a 00 08 00 02 a8
d0: 08 00 00 44 00 08 08 00 08 00 00 44 00 08 08 00
e0: 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 0c 00 00 00 00 00

00:08.1 IDE interface: NVIDIA Corporation MCP61 SATA Controller (rev a2) (prog-if 85 [Master SecO PriO])
	Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 23
	I/O ports at 0e80 [size=8]
	I/O ports at 0ea0 [size=4]
	I/O ports at 0ec0 [size=8]
	I/O ports at 0ee0 [size=4]
	I/O ports at d000 [size=16]
	Memory at dfff7000 (32-bit, non-prefetchable) [size=4K]
	Capabilities: [44] Power Management version 2
	Capabilities: [b0] MSI: Enable- Count=1/4 Maskable- 64bit+
	Capabilities: [cc] HyperTransport: MSI Mapping Enable- Fixed+
	Kernel driver in use: sata_nv
00: de 10 f6 03 07 00 b0 00 a2 85 01 01 00 00 80 00
10: 81 0e 00 00 a1 0e 00 00 c1 0e 00 00 e1 0e 00 00
20: 01 d0 00 00 00 70 ff df 00 00 00 00 49 18 f6 03
30: 00 00 00 00 44 00 00 00 00 00 00 00 0a 02 03 01
40: 49 18 f6 03 01 b0 02 00 00 00 00 00 00 00 00 00
50: 0f 68 08 00 00 00 00 00 00 00 00 20 40 00 00 20
60: 00 00 00 c7 41 0c 00 00 00 0f 06 42 00 00 00 00
70: 2c 78 c4 40 01 10 00 00 01 10 00 00 20 00 20 00
80: 00 00 00 40 00 b0 df 38 00 00 08 b0 36 7f 59 b9
90: 00 00 74 0d 00 00 00 00 06 00 06 10 f6 03 01 01
a0: 08 00 00 10 00 00 00 00 00 00 00 00 33 31 00 02
b0: 05 cc 84 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 0a 00 0a 00 08 00 02 a8
d0: 08 00 00 77 00 08 03 00 08 00 00 44 00 08 08 00
e0: 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 0c 00 00 00 00 00

00:09.0 PCI bridge: NVIDIA Corporation MCP61 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
	Capabilities: [40] Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Capabilities: [48] Power Management version 2
	Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
	Capabilities: [60] HyperTransport: MSI Mapping Enable- Fixed-
	Capabilities: [80] Express Root Port (Slot+), MSI 00
	Capabilities: [100] Virtual Channel
	Kernel driver in use: pcieport
00: de 10 e8 03 04 04 10 00 a2 00 04 06 10 00 01 00
10: 00 00 00 00 00 00 00 00 00 02 02 00 f1 01 00 00
20: f0 ff 00 00 f1 ff 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 00 02 00
40: 0d 48 00 00 49 18 e8 03 01 50 02 f8 00 00 00 00
50: 05 60 83 00 0c 30 e0 fe 00 00 00 00 61 41 00 00
60: 08 80 00 a8 00 00 e0 fe 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 10 00 41 01 01 80 00 00 10 28 00 00 01 3d 11 00
90: 00 00 01 11 80 25 08 00 c0 01 00 00 08 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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

00:0b.0 PCI bridge: NVIDIA Corporation MCP61 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
	Capabilities: [40] Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Capabilities: [48] Power Management version 2
	Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
	Capabilities: [60] HyperTransport: MSI Mapping Enable- Fixed-
	Capabilities: [80] Express Root Port (Slot+), MSI 00
	Capabilities: [100] Virtual Channel
	Kernel driver in use: pcieport
00: de 10 e9 03 04 04 10 00 a2 00 04 06 10 00 01 00
10: 00 00 00 00 00 00 00 00 00 03 03 00 f1 01 00 00
20: f0 ff 00 00 f1 ff 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 00 02 00
40: 0d 48 00 00 49 18 e9 03 01 50 02 f8 00 00 00 00
50: 05 60 83 00 0c 30 e0 fe 00 00 00 00 71 41 00 00
60: 08 80 00 a8 00 00 e0 fe 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 10 00 41 01 01 80 00 00 10 28 00 00 11 3c 11 01
90: 00 00 11 10 00 05 10 00 c0 01 00 00 08 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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

00:0c.0 PCI bridge: NVIDIA Corporation MCP61 PCI Express bridge (rev a2) (prog-if 00 [Normal decode])
	Flags: bus master, fast devsel, latency 0
	Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
	Capabilities: [40] Subsystem: ASRock Incorporation 939NF6G-VSTA Board
	Capabilities: [48] Power Management version 2
	Capabilities: [50] MSI: Enable+ Count=1/2 Maskable- 64bit+
	Capabilities: [60] HyperTransport: MSI Mapping Enable- Fixed-
	Capabilities: [80] Express Root Port (Slot+), MSI 00
	Capabilities: [100] Virtual Channel
	Kernel driver in use: pcieport
00: de 10 e9 03 04 04 10 00 a2 00 04 06 10 00 01 00
10: 00 00 00 00 00 00 00 00 00 04 04 00 f1 01 00 00
20: f0 ff 00 00 f1 ff 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 00 02 00
40: 0d 48 00 00 49 18 e9 03 01 50 02 f8 00 00 00 00
50: 05 60 83 00 0c 30 e0 fe 00 00 00 00 81 41 00 00
60: 08 80 00 a8 00 00 e0 fe 00 00 00 00 00 00 00 00
70: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
80: 10 00 41 01 01 80 00 00 10 28 00 00 11 3c 11 02
90: 00 00 11 10 00 05 18 00 c0 01 00 00 08 00 00 00
a0: 00 00 00 00 00 00 00 00 00 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

00:0d.0 VGA compatible controller: NVIDIA Corporation C61 [GeForce 6150SE nForce 430] (rev a2) (prog-if 00 [VGA controller])
	Subsystem: ASRock Incorporation Device 03d0
	Flags: bus master, 66MHz, fast devsel, latency 0, IRQ 22
	Memory at de000000 (32-bit, non-prefetchable) [size=16M]
	Memory at c0000000 (64-bit, prefetchable) [size=256M]
	Memory at dd000000 (64-bit, non-prefetchable) [size=16M]
	[virtual] Expansion ROM at dffc0000 [disabled] [size=128K]
	Capabilities: [48] Power Management version 2
	Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
	Kernel driver in use: nvidia
00: de 10 d0 03 07 00 b0 00 a2 00 00 03 00 00 00 00
10: 00 00 00 de 0c 00 00 c0 00 00 00 00 04 00 00 dd
20: 00 00 00 00 00 00 00 00 00 00 00 00 49 18 d0 03
30: 00 00 00 00 48 00 00 00 00 00 00 00 0a 01 00 00
40: 49 18 d0 03 00 00 00 03 01 50 02 00 00 00 00 00
50: 05 00 80 00 00 00 00 00 00 00 00 00 00 00 00 00
60: 01 00 00 00 1c 04 04 00 00 00 00 00 00 00 00 00
70: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
80: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
90: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
a0: 00 00 f0 00 00 00 00 08 30 00 00 00 ff ff ff ff
b0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
c0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
d0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
e0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
f0: ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff


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


____________________________________________

/usr/bin/lspci -t

-[0000:00]-+-00.0
           +-01.0
           +-01.1
           +-01.2
           +-02.0
           +-02.1
           +-04.0-[01]--
           +-05.0
           +-06.0
           +-07.0
           +-08.0
           +-08.1
           +-09.0-[02]--
           +-0b.0-[03]--
           +-0c.0-[04]--
           +-0d.0
           +-18.0
           +-18.1
           +-18.2
           \-18.3

____________________________________________

/usr/bin/lspci -nn

00:00.0 RAM memory [0500]: NVIDIA Corporation MCP61 Memory Controller [10de:03ea] (rev a1)
00:01.0 ISA bridge [0601]: NVIDIA Corporation MCP61 LPC Bridge [10de:03e0] (rev a2)
00:01.1 SMBus [0c05]: NVIDIA Corporation MCP61 SMBus [10de:03eb] (rev a2)
00:01.2 RAM memory [0500]: NVIDIA Corporation MCP61 Memory Controller [10de:03f5] (rev a2)
00:02.0 USB controller [0c03]: NVIDIA Corporation MCP61 USB 1.1 Controller [10de:03f1] (rev a2)
00:02.1 USB controller [0c03]: NVIDIA Corporation MCP61 USB 2.0 Controller [10de:03f2] (rev a2)
00:04.0 PCI bridge [0604]: NVIDIA Corporation MCP61 PCI bridge [10de:03f3] (rev a1)
00:05.0 Audio device [0403]: NVIDIA Corporation MCP61 High Definition Audio [10de:03f0] (rev a2)
00:06.0 IDE interface [0101]: NVIDIA Corporation MCP61 IDE [10de:03ec] (rev a2)
00:07.0 Bridge [0680]: NVIDIA Corporation MCP61 Ethernet [10de:03ef] (rev a2)
00:08.0 IDE interface [0101]: NVIDIA Corporation MCP61 SATA Controller [10de:03f6] (rev a2)
00:08.1 IDE interface [0101]: NVIDIA Corporation MCP61 SATA Controller [10de:03f6] (rev a2)
00:09.0 PCI bridge [0604]: NVIDIA Corporation MCP61 PCI Express bridge [10de:03e8] (rev a2)
00:0b.0 PCI bridge [0604]: NVIDIA Corporation MCP61 PCI Express bridge [10de:03e9] (rev a2)
00:0c.0 PCI bridge [0604]: NVIDIA Corporation MCP61 PCI Express bridge [10de:03e9] (rev a2)
00:0d.0 VGA compatible controller [0300]: NVIDIA Corporation C61 [GeForce 6150SE nForce 430] [10de:03d0] (rev a2)
00:18.0 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] HyperTransport Technology Configuration [1022:1100]
00:18.1 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] Address Map [1022:1101]
00:18.2 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] DRAM Controller [1022:1102]
00:18.3 Host bridge [0600]: Advanced Micro Devices, Inc. [AMD] K8 [Athlon64/Opteron] Miscellaneous Control [1022:1103]
____________________________________________

/usr/bin/lsusb

Bus 001 Device 002: ID 045e:0728 Microsoft Corp. 
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 002 Device 002: ID 045e:00e1 Microsoft Corp. Wireless Laser Mouse 6000 Reciever
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub

____________________________________________

/usr/sbin/dmidecode

# dmidecode 2.12
SMBIOS 2.4 present.
28 structures occupying 1399 bytes.
Table at 0x000FCED0.

Handle 0x0000, DMI type 0, 24 bytes
BIOS Information
	Vendor: American Megatrends Inc.
	Version: P1.60
	Release Date: 06/12/2007
	Address: 0xF0000
	Runtime Size: 64 kB
	ROM Size: 512 kB
	Characteristics:
		PCI is supported
		BIOS is upgradeable
		BIOS shadowing is allowed
		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
		Function key-initiated network boot is supported
		Targeted content distribution is supported
	BIOS Revision: 8.14

Handle 0x0001, DMI type 1, 27 bytes
System Information
	Manufacturer: To Be Filled By O.E.M.
	Product Name: To Be Filled By O.E.M.
	Version: To Be Filled By O.E.M.
	Serial Number: To Be Filled By O.E.M.
	UUID: 00020003-0004-0005-0006-000700080009
	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:                       
	Product Name: ALiveNF6G-VSTA
	Version:                       
	Serial Number:                       
	Asset Tag:                       
	Features:
		Board is a hosting board
		Board is replaceable
	Location In Chassis:                       
	Chassis Handle: 0x0003
	Type: Motherboard
	Contained Object Handles: 0

Handle 0x0003, DMI type 3, 21 bytes
Chassis Information
	Manufacturer: To Be Filled By O.E.M.
	Type: Desktop
	Lock: Not Present
	Version: To Be Filled By O.E.M.
	Serial Number: To Be Filled By O.E.M.
	Asset Tag: To Be Filled By O.E.M.
	Boot-up State: Safe
	Power Supply State: Safe
	Thermal State: Safe
	Security Status: None
	OEM Information: 0x00000000
	Height: Unspecified
	Number Of Power Cords: 1
	Contained Elements: 0

Handle 0x0004, DMI type 4, 35 bytes
Processor Information
	Socket Designation: CPUSocket
	Type: Central Processor
	Family: Athlon 64 X2
	Manufacturer: AMD              
	ID: B1 0F 06 00 FF FB 8B 17
	Signature: Family 15, Model 107, Stepping 1
	Flags:
		FPU (Floating-point unit on-chip)
		VME (Virtual mode extension)
		DE (Debugging extension)
		PSE (Page size extension)
		TSC (Time stamp counter)
		MSR (Model specific registers)
		PAE (Physical address extension)
		MCE (Machine check exception)
		CX8 (CMPXCHG8 instruction supported)
		APIC (On-chip APIC hardware supported)
		SEP (Fast system call)
		MTRR (Memory type range registers)
		PGE (Page global enable)
		MCA (Machine check architecture)
		CMOV (Conditional move instruction supported)
		PAT (Page attribute table)
		PSE-36 (36-bit page size extension)
		CLFSH (CLFLUSH instruction supported)
		MMX (MMX technology supported)
		FXSR (FXSAVE and FXSTOR instructions supported)
		SSE (Streaming SIMD extensions)
		SSE2 (Streaming SIMD extensions 2)
		HTT (Multi-threading)
	Version: AMD Athlon(tm) 64 X2 Dual Core Processor 4000+      
	Voltage: 1.5 V
	External Clock: 200 MHz
	Max Speed: 2100 MHz
	Current Speed: 2100 MHz
	Status: Populated, Enabled
	Upgrade: Socket 940
	L1 Cache Handle: 0x0005
	L2 Cache Handle: 0x0006
	L3 Cache Handle: Not Provided
	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.

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: 1024 kB
	Maximum Size: 1024 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 5, 24 bytes
Memory Controller Information
	Error Detecting Method: 64-bit ECC
	Error Correcting Capabilities:
		None
	Supported Interleave: One-way Interleave
	Current Interleave: One-way Interleave
	Maximum Memory Module Size: 2048 MB
	Maximum Total Memory Size: 8192 MB
	Supported Speeds:
		70 ns
		60 ns
	Supported Memory Types:
		DIMM
		SDRAM
	Memory Module Voltage: 3.3 V
	Associated Memory Slots: 4
		0x0008
		0x0009
		0x000A
		0x000B
	Enabled Error Correcting Capabilities:
		None

Handle 0x0008, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: DIMM0
	Bank Connections: 0 2
	Current Speed: Unknown
	Type: ECC DIMM
	Installed Size: 1024 MB (Double-bank Connection)
	Enabled Size: 1024 MB (Double-bank Connection)
	Error Status: OK

Handle 0x0009, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: DIMM1
	Bank Connections: 0 2
	Current Speed: Unknown
	Type: ECC DIMM
	Installed Size: 1024 MB (Double-bank Connection)
	Enabled Size: 1024 MB (Double-bank Connection)
	Error Status: OK

Handle 0x000A, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: DIMM2
	Bank Connections: None
	Current Speed: Unknown
	Type: Unknown
	Installed Size: Not Installed
	Enabled Size: Not Installed
	Error Status: OK

Handle 0x000B, DMI type 6, 12 bytes
Memory Module Information
	Socket Designation: DIMM3
	Bank Connections: None
	Current Speed: Unknown
	Type: Unknown
	Installed Size: Not Installed
	Enabled Size: Not Installed
	Error Status: OK

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

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

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

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

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

Handle 0x0011, DMI type 19, 15 bytes
Memory Array Mapped Address
	Starting Address: 0x00000000000
	Ending Address: 0x0007FFFFFFF
	Range Size: 2 GB
	Physical Array Handle: 0x0010
	Partition Width: 1

Handle 0x0012, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0010
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 72 bits
	Size: 1024 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM0
	Bank Locator: BANK0
	Type: DDR2
	Type Detail: Synchronous
	Speed: 533 MHz
	Manufacturer: Manufacturer0
	Serial Number: SerNum0
	Asset Tag: AssetTagNum0
	Part Number: PartNum0

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

Handle 0x0014, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0010
	Error Information Handle: Not Provided
	Total Width: 64 bits
	Data Width: 72 bits
	Size: 1024 MB
	Form Factor: DIMM
	Set: None
	Locator: DIMM1
	Bank Locator: BANK1
	Type: DDR2
	Type Detail: Synchronous
	Speed: 533 MHz
	Manufacturer: Manufacturer1
	Serial Number: SerNum1
	Asset Tag: AssetTagNum1
	Part Number: PartNum1

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

Handle 0x0016, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0010
	Error Information Handle: Not Provided
	Total Width: Unknown
	Data Width: 64 bits
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: DIMM2
	Bank Locator: BANK2
	Type: Unknown
	Type Detail: Unknown
	Speed: Unknown
	Manufacturer: Manufacturer2
	Serial Number: SerNum2
	Asset Tag: AssetTagNum2
	Part Number: PartNum2

Handle 0x0017, DMI type 126, 19 bytes
Inactive

Handle 0x0018, DMI type 17, 27 bytes
Memory Device
	Array Handle: 0x0010
	Error Information Handle: Not Provided
	Total Width: Unknown
	Data Width: 64 bits
	Size: No Module Installed
	Form Factor: DIMM
	Set: None
	Locator: DIMM3
	Bank Locator: BANK3
	Type: Unknown
	Type Detail: Unknown
	Speed: Unknown
	Manufacturer: Manufacturer3
	Serial Number: SerNum3
	Asset Tag: AssetTagNum3
	Part Number: PartNum3

Handle 0x0019, DMI type 126, 19 bytes
Inactive

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

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


____________________________________________

/sbin/modinfo nvidia | grep vermagic


____________________________________________

Scanning kernel log files for NVRM messages:

/var/log/messages is not readable
/var/log/kernel.log is not readable

____________________________________________

dmesg:

[    0.000000] Initializing cgroup subsys cpuset
[    0.000000] Initializing cgroup subsys cpu
[    0.000000] Initializing cgroup subsys cpuacct
[    0.000000] Linux version 3.13.0-34-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014 (Ubuntu 3.13.0-34.60-generic 3.13.11.4)
[    0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic root=UUID=cb6bb820-c537-4460-bd30-4c7a1c5b4a45 ro quiet splash
[    0.000000] KERNEL supported cpus:
[    0.000000]   Intel GenuineIntel
[    0.000000]   AMD AuthenticAMD
[    0.000000]   Centaur CentaurHauls
[    0.000000] e820: BIOS-provided physical RAM map:
[    0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable
[    0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000000e8000-0x00000000000fffff] reserved
[    0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000077faffff] usable
[    0.000000] BIOS-e820: [mem 0x0000000077fb0000-0x0000000077fbffff] ACPI data
[    0.000000] BIOS-e820: [mem 0x0000000077fc0000-0x0000000077feffff] ACPI NVS
[    0.000000] BIOS-e820: [mem 0x0000000077ff0000-0x0000000077ffffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fec00000-0x00000000fec00fff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000fee00000-0x00000000feefffff] reserved
[    0.000000] BIOS-e820: [mem 0x00000000ff380000-0x00000000ffffffff] reserved
[    0.000000] NX (Execute Disable) protection: active
[    0.000000] SMBIOS 2.4 present.
[    0.000000] DMI: To Be Filled By O.E.M. To Be Filled By O.E.M./ALiveNF6G-VSTA, BIOS P1.60 06/12/2007
[    0.000000] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
[    0.000000] e820: remove [mem 0x000a0000-0x000fffff] usable
[    0.000000] No AGP bridge found
[    0.000000] e820: last_pfn = 0x77fb0 max_arch_pfn = 0x400000000
[    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 0000000000 mask FF80000000 write-back
[    0.000000]   1 disabled
[    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] found SMP MP-table at [mem 0x000ff780-0x000ff78f] mapped at [ffff8800000ff780]
[    0.000000] Scanning 1 areas for low memory corruption
[    0.000000] Base memory trampoline at [ffff880000099000] 99000 size 24576
[    0.000000] init_memory_mapping: [mem 0x00000000-0x000fffff]
[    0.000000]  [mem 0x00000000-0x000fffff] page 4k
[    0.000000] BRK [0x01fdf000, 0x01fdffff] PGTABLE
[    0.000000] BRK [0x01fe0000, 0x01fe0fff] PGTABLE
[    0.000000] BRK [0x01fe1000, 0x01fe1fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x77c00000-0x77dfffff]
[    0.000000]  [mem 0x77c00000-0x77dfffff] page 2M
[    0.000000] BRK [0x01fe2000, 0x01fe2fff] PGTABLE
[    0.000000] init_memory_mapping: [mem 0x74000000-0x77bfffff]
[    0.000000]  [mem 0x74000000-0x77bfffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x00100000-0x73ffffff]
[    0.000000]  [mem 0x00100000-0x001fffff] page 4k
[    0.000000]  [mem 0x00200000-0x73ffffff] page 2M
[    0.000000] init_memory_mapping: [mem 0x77e00000-0x77faffff]
[    0.000000]  [mem 0x77e00000-0x77faffff] page 4k
[    0.000000] BRK [0x01fe3000, 0x01fe3fff] PGTABLE
[    0.000000] RAMDISK: [mem 0x35b6a000-0x36dacfff]
[    0.000000] ACPI: RSDP 00000000000fa870 000014 (v00 ACPIAM)
[    0.000000] ACPI: RSDT 0000000077fb0000 000038 (v01 A_M_I  OEMRSDT  06000712 MSFT 00000097)
[    0.000000] ACPI: FACP 0000000077fb0200 000084 (v02 A M I  OEMFACP  12000601 MSFT 00000097)
[    0.000000] ACPI: DSDT 0000000077fb0440 004C5F (v01  ALV6V ALV6V151 00000151 INTL 20051117)
[    0.000000] ACPI: FACS 0000000077fc0000 000040
[    0.000000] ACPI: APIC 0000000077fb0390 000070 (v01 A_M_I  OEMAPIC  06000712 MSFT 00000097)
[    0.000000] ACPI: MCFG 0000000077fb0400 00003C (v01 A_M_I  OEMMCFG  06000712 MSFT 00000097)
[    0.000000] ACPI: OEMB 0000000077fc0040 000060 (v01 A_M_I  AMI_OEM  06000712 MSFT 00000097)
[    0.000000] ACPI: SSDT 0000000077fb50a0 000206 (v01 A M I  POWERNOW 00000001 AMD  00000001)
[    0.000000] ACPI: Local APIC address 0xfee00000
[    0.000000] Scanning NUMA topology in Northbridge 24
[    0.000000] No NUMA configuration found
[    0.000000] Faking a node at [mem 0x0000000000000000-0x0000000077faffff]
[    0.000000] Initmem setup node 0 [mem 0x00000000-0x77faffff]
[    0.000000]   NODE_DATA [mem 0x77fab000-0x77faffff]
[    0.000000]  [ffffea0000000000-ffffea0001dfffff] PMD -> [ffff880075800000-ffff8800775fffff] on node 0
[    0.000000] Zone ranges:
[    0.000000]   DMA      [mem 0x00001000-0x00ffffff]
[    0.000000]   DMA32    [mem 0x01000000-0xffffffff]
[    0.000000]   Normal   empty
[    0.000000] Movable zone start for each node
[    0.000000] Early memory node ranges
[    0.000000]   node   0: [mem 0x00001000-0x0009efff]
[    0.000000]   node   0: [mem 0x00100000-0x77faffff]
[    0.000000] On node 0 totalpages: 491342
[    0.000000]   DMA zone: 64 pages used for memmap
[    0.000000]   DMA zone: 21 pages reserved
[    0.000000]   DMA zone: 3998 pages, LIFO batch:0
[    0.000000]   DMA32 zone: 7615 pages used for memmap
[    0.000000]   DMA32 zone: 487344 pages, LIFO batch:31
[    0.000000] Nvidia board detected. Ignoring ACPI timer override.
[    0.000000] If you got timer trouble try acpi_use_timer_override
[    0.000000] Detected use of extended apic ids on hypertransport bus
[    0.000000] ACPI: PM-Timer IO Port: 0x4008
[    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: IOAPIC (id[0x02] address[0xfec00000] gsi_base[0])
[    0.000000] IOAPIC[0]: apic_id 2, version 17, address 0xfec00000, GSI 0-23
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
[    0.000000] ACPI: BIOS IRQ0 override ignored.
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 14 global_irq 14 high edge)
[    0.000000] ACPI: INT_SRC_OVR (bus 0 bus_irq 15 global_irq 15 high edge)
[    0.000000] ACPI: IRQ9 used by override.
[    0.000000] ACPI: IRQ14 used by override.
[    0.000000] ACPI: IRQ15 used by override.
[    0.000000] Using ACPI (MADT) for SMP configuration information
[    0.000000] smpboot: Allowing 2 CPUs, 0 hotplug CPUs
[    0.000000] nr_irqs_gsi: 40
[    0.000000] PM: Registered nosave memory: [mem 0x0009f000-0x0009ffff]
[    0.000000] PM: Registered nosave memory: [mem 0x000a0000-0x000e7fff]
[    0.000000] PM: Registered nosave memory: [mem 0x000e8000-0x000fffff]
[    0.000000] e820: [mem 0x78000000-0xfebfffff] available for PCI devices
[    0.000000] Booting paravirtualized kernel on bare hardware
[    0.000000] setup_percpu: NR_CPUS:256 nr_cpumask_bits:256 nr_cpu_ids:2 nr_node_ids:1
[    0.000000] PERCPU: Embedded 29 pages/cpu @ffff880077c00000 s86336 r8192 d24256 u1048576
[    0.000000] pcpu-alloc: s86336 r8192 d24256 u1048576 alloc=1*2097152
[    0.000000] pcpu-alloc: [0] 0 1 
[    0.000000] Built 1 zonelists in Node order, mobility grouping on.  Total pages: 483642
[    0.000000] Policy zone: DMA32
[    0.000000] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic root=UUID=cb6bb820-c537-4460-bd30-4c7a1c5b4a45 ro quiet splash
[    0.000000] PID hash table entries: 4096 (order: 3, 32768 bytes)
[    0.000000] Checking aperture...
[    0.000000] No AGP bridge found
[    0.000000] Node 0: aperture @ 3a0000000 size 32 MB
[    0.000000] Aperture beyond 4GB. Ignoring.
[    0.000000] Memory: 1899084K/1965368K available (7363K kernel code, 1142K rwdata, 3400K rodata, 1336K init, 1440K bss, 66284K reserved)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] Hierarchical RCU implementation.
[    0.000000] 	RCU dyntick-idle grace-period acceleration is enabled.
[    0.000000] 	RCU restricting CPUs from NR_CPUS=256 to nr_cpu_ids=2.
[    0.000000] 	Offload RCU callbacks from all CPUs
[    0.000000] 	Offload RCU callbacks from CPUs: 0-1.
[    0.000000] NR_IRQS:16640 nr_irqs:512 16
[    0.000000] spurious 8259A interrupt: IRQ7.
[    0.000000] Console: colour VGA+ 80x25
[    0.000000] console [tty0] enabled
[    0.000000] allocated 7864320 bytes of page_cgroup
[    0.000000] please try 'cgroup_disable=memory' option if you don't want memory cgroups
[    0.000000] tsc: Fast TSC calibration using PIT
[    0.000000] tsc: Detected 2109.466 MHz processor
[    0.000000] tsc: Marking TSC unstable due to TSCs unsynchronized
[    0.004006] Calibrating delay loop (skipped), value calculated using timer frequency.. 4218.93 BogoMIPS (lpj=8437864)
[    0.004011] pid_max: default: 32768 minimum: 301
[    0.004048] Security Framework initialized
[    0.004076] AppArmor: AppArmor initialized
[    0.004078] Yama: becoming mindful.
[    0.004413] Dentry cache hash table entries: 262144 (order: 9, 2097152 bytes)
[    0.008451] Inode-cache hash table entries: 131072 (order: 8, 1048576 bytes)
[    0.009075] Mount-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.009083] Mountpoint-cache hash table entries: 4096 (order: 3, 32768 bytes)
[    0.009407] Initializing cgroup subsys memory
[    0.009418] Initializing cgroup subsys devices
[    0.009421] Initializing cgroup subsys freezer
[    0.009424] Initializing cgroup subsys blkio
[    0.009426] Initializing cgroup subsys perf_event
[    0.009430] Initializing cgroup subsys hugetlb
[    0.009456] tseg: 0000000000
[    0.009465] CPU: Physical Processor ID: 0
[    0.009467] CPU: Processor Core ID: 0
[    0.009469] mce: CPU supports 5 MCE banks
[    0.009477] LVT offset 0 assigned for vector 0xf9
[    0.009481] process: using AMD E400 aware idle routine
[    0.009485] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.009485] Last level dTLB entries: 4KB 512, 2MB 8, 4MB 4
[    0.009485] tlb_flushall_shift: 4
[    0.009612] Freeing SMP alternatives memory: 32K (ffffffff81e6d000 - ffffffff81e75000)
[    0.010663] ACPI: Core revision 20131115
[    0.014040] ACPI: All ACPI Tables successfully acquired
[    0.014395] ftrace: allocating 28495 entries in 112 pages
[    0.024701] ..TIMER: vector=0x30 apic1=0 pin1=0 apic2=-1 pin2=-1
[    0.067651] smpboot: CPU0: AMD Athlon(tm) 64 X2 Dual Core Processor 4000+ (fam: 0f, model: 6b, stepping: 01)
[    0.068000] Performance Events: AMD PMU driver.
[    0.068000] ... version:                0
[    0.068000] ... bit width:              48
[    0.068000] ... generic registers:      4
[    0.068000] ... value mask:             0000ffffffffffff
[    0.068000] ... max period:             00007fffffffffff
[    0.068000] ... fixed-purpose events:   0
[    0.068000] ... event mask:             000000000000000f
[    0.068000] x86: Booting SMP configuration:
[    0.077429] NMI watchdog: enabled on all CPUs, permanently consumes one hw-PMU counter.
[    0.068000] .... node  #0, CPUs:      #1
[    0.156095] x86: Booted up 1 node, 2 CPUs
[    0.156098] smpboot: Total of 2 processors activated (8438.08 BogoMIPS)
[    0.156747] devtmpfs: initialized
[    0.161622] EVM: security.selinux
[    0.161624] EVM: security.SMACK64
[    0.161626] EVM: security.ima
[    0.161627] EVM: security.capability
[    0.161675] PM: Registering ACPI NVS region [mem 0x77fc0000-0x77feffff] (196608 bytes)
[    0.161675] pinctrl core: initialized pinctrl subsystem
[    0.161746] regulator-dummy: no parameters
[    0.161792] RTC time:  9:14:55, date: 08/15/14
[    0.161863] NET: Registered protocol family 16
[    0.162042] cpuidle: using governor ladder
[    0.162045] cpuidle: using governor menu
[    0.162051] node 0 link 0: io port [1000, ffffff]
[    0.162055] TOM: 0000000080000000 aka 2048M
[    0.162058] node 0 link 0: mmio [e0000000, efffffff]
[    0.162062] node 0 link 0: mmio [a0000, bffff]
[    0.162064] node 0 link 0: mmio [80000000, fe0bffff]
[    0.162068] bus: [bus 00-ff] on node 0 link 0
[    0.162070] bus: 00 [io  0x0000-0xffff]
[    0.162072] bus: 00 [mem 0x80000000-0xfcffffffff]
[    0.162073] bus: 00 [mem 0x000a0000-0x000bffff]
[    0.162126] ACPI: bus type PCI registered
[    0.162129] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
[    0.162221] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.162225] PCI: not using MMCONFIG
[    0.162227] PCI: Using configuration type 1 for base access
[    0.164080] mtrr: your CPUs had inconsistent variable MTRR settings
[    0.164082] mtrr: probably your BIOS does not setup all CPUs.
[    0.164083] mtrr: corrected configuration.
[    0.165485] bio: create slab <bio-0> at 0
[    0.165485] ACPI: Added _OSI(Module Device)
[    0.165485] ACPI: Added _OSI(Processor Device)
[    0.165485] ACPI: Added _OSI(3.0 _SCP Extensions)
[    0.165485] ACPI: Added _OSI(Processor Aggregator Device)
[    0.168254] ACPI: Executed 1 blocks of module-level executable AML code
[    0.171594] ACPI: Interpreter enabled
[    0.171608] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S2_] (20131115/hwxface-580)
[    0.171613] ACPI Exception: AE_NOT_FOUND, While evaluating Sleep State [\_S3_] (20131115/hwxface-580)
[    0.171627] ACPI: (supports S0 S1 S4 S5)
[    0.171629] ACPI: Using IOAPIC for interrupt routing
[    0.171660] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000)
[    0.173200] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in ACPI motherboard resources
[    0.183812] PCI: Ignoring host bridge windows from ACPI; if necessary, use "pci=use_crs" and report a bug
[    0.184077] ACPI: No dock devices found.
[    0.195177] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
[    0.195187] acpi PNP0A03:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI]
[    0.195549] acpi PNP0A03:00: _OSC: OS now controls [PCIeHotplug PME AER PCIeCapability]
[    0.195709] acpi PNP0A03:00: host bridge window [io  0x0000-0x0cf7] (ignored)
[    0.195712] acpi PNP0A03:00: host bridge window [io  0x0d00-0xffff] (ignored)
[    0.195715] acpi PNP0A03:00: host bridge window [mem 0x000a0000-0x000bffff] (ignored)
[    0.195718] acpi PNP0A03:00: host bridge window [mem 0x000d0000-0x000dffff] (ignored)
[    0.195721] acpi PNP0A03:00: host bridge window [mem 0x80000000-0xff37ffff] (ignored)
[    0.195724] PCI: root bus 00: hardware-probed resources
[    0.195948] PCI host bridge to bus 0000:00
[    0.195952] pci_bus 0000:00: root bus resource [bus 00-ff]
[    0.195955] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
[    0.195958] pci_bus 0000:00: root bus resource [mem 0x80000000-0xfcffffffff]
[    0.195961] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff]
[    0.195985] pci 0000:00:00.0: [10de:03ea] type 00 class 0x050000
[    0.196247] pci 0000:00:01.0: [10de:03e0] type 00 class 0x060100
[    0.196360] pci 0000:00:01.1: [10de:03eb] type 00 class 0x0c0500
[    0.196373] pci 0000:00:01.1: reg 0x10: [io  0xec00-0xec3f]
[    0.196389] pci 0000:00:01.1: reg 0x20: [io  0x5000-0x503f]
[    0.196395] pci 0000:00:01.1: reg 0x24: [io  0x6000-0x603f]
[    0.196425] pci 0000:00:01.1: PME# supported from D3hot D3cold
[    0.196481] pci 0000:00:01.1: System wakeup disabled by ACPI
[    0.196523] pci 0000:00:01.2: [10de:03f5] type 00 class 0x050000
[    0.196628] pci 0000:00:02.0: [10de:03f1] type 00 class 0x0c0310
[    0.196638] pci 0000:00:02.0: reg 0x10: [mem 0xdffff000-0xdfffffff]
[    0.196675] pci 0000:00:02.0: supports D1 D2
[    0.196677] pci 0000:00:02.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.196727] pci 0000:00:02.0: System wakeup disabled by ACPI
[    0.196774] pci 0000:00:02.1: [10de:03f2] type 00 class 0x0c0320
[    0.196786] pci 0000:00:02.1: reg 0x10: [mem 0xdfffec00-0xdfffecff]
[    0.196828] pci 0000:00:02.1: supports D1 D2
[    0.196831] pci 0000:00:02.1: PME# supported from D0 D1 D2 D3hot D3cold
[    0.196883] pci 0000:00:02.1: System wakeup disabled by ACPI
[    0.196936] pci 0000:00:04.0: [10de:03f3] type 01 class 0x060401
[    0.197014] pci 0000:00:04.0: System wakeup disabled by ACPI
[    0.197067] pci 0000:00:05.0: [10de:03f0] type 00 class 0x040300
[    0.197080] pci 0000:00:05.0: reg 0x10: [mem 0xdfff8000-0xdfffbfff]
[    0.197124] pci 0000:00:05.0: PME# supported from D3hot D3cold
[    0.197176] pci 0000:00:05.0: System wakeup disabled by ACPI
[    0.197223] pci 0000:00:06.0: [10de:03ec] type 00 class 0x01018a
[    0.197246] pci 0000:00:06.0: reg 0x20: [io  0xffa0-0xffaf]
[    0.197347] pci 0000:00:07.0: [10de:03ef] type 00 class 0x068000
[    0.197358] pci 0000:00:07.0: reg 0x10: [mem 0xdfffd000-0xdfffdfff]
[    0.197364] pci 0000:00:07.0: reg 0x14: [io  0xe480-0xe487]
[    0.197400] pci 0000:00:07.0: supports D1 D2
[    0.197403] pci 0000:00:07.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.197456] pci 0000:00:07.0: System wakeup disabled by ACPI
[    0.197499] pci 0000:00:08.0: [10de:03f6] type 00 class 0x010185
[    0.197509] pci 0000:00:08.0: reg 0x10: [io  0x0e00-0x0e07]
[    0.197514] pci 0000:00:08.0: reg 0x14: [io  0x0e20-0x0e23]
[    0.197519] pci 0000:00:08.0: reg 0x18: [io  0x0e40-0x0e47]
[    0.197523] pci 0000:00:08.0: reg 0x1c: [io  0x0e60-0x0e63]
[    0.197529] pci 0000:00:08.0: reg 0x20: [io  0xd880-0xd88f]
[    0.197534] pci 0000:00:08.0: reg 0x24: [mem 0xdfffc000-0xdfffcfff]
[    0.197634] pci 0000:00:08.1: [10de:03f6] type 00 class 0x010185
[    0.197644] pci 0000:00:08.1: reg 0x10: [io  0x0e80-0x0e87]
[    0.197649] pci 0000:00:08.1: reg 0x14: [io  0x0ea0-0x0ea3]
[    0.197654] pci 0000:00:08.1: reg 0x18: [io  0x0ec0-0x0ec7]
[    0.197659] pci 0000:00:08.1: reg 0x1c: [io  0x0ee0-0x0ee3]
[    0.197664] pci 0000:00:08.1: reg 0x20: [io  0xd000-0xd00f]
[    0.197669] pci 0000:00:08.1: reg 0x24: [mem 0xdfff7000-0xdfff7fff]
[    0.197778] pci 0000:00:09.0: [10de:03e8] type 01 class 0x060400
[    0.197806] pci 0000:00:09.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.197858] pci 0000:00:09.0: System wakeup disabled by ACPI
[    0.197905] pci 0000:00:0b.0: [10de:03e9] type 01 class 0x060400
[    0.197933] pci 0000:00:0b.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.197985] pci 0000:00:0b.0: System wakeup disabled by ACPI
[    0.198031] pci 0000:00:0c.0: [10de:03e9] type 01 class 0x060400
[    0.198058] pci 0000:00:0c.0: PME# supported from D0 D1 D2 D3hot D3cold
[    0.198110] pci 0000:00:0c.0: System wakeup disabled by ACPI
[    0.198152] pci 0000:00:0d.0: [10de:03d0] type 00 class 0x030000
[    0.198160] pci 0000:00:0d.0: reg 0x10: [mem 0xde000000-0xdeffffff]
[    0.198167] pci 0000:00:0d.0: reg 0x14: [mem 0xc0000000-0xcfffffff 64bit pref]
[    0.198173] pci 0000:00:0d.0: reg 0x1c: [mem 0xdd000000-0xddffffff 64bit]
[    0.198180] pci 0000:00:0d.0: reg 0x30: [mem 0xdffc0000-0xdffdffff pref]
[    0.198280] pci 0000:00:18.0: [1022:1100] type 00 class 0x060000
[    0.198367] pci 0000:00:18.1: [1022:1101] type 00 class 0x060000
[    0.198451] pci 0000:00:18.2: [1022:1102] type 00 class 0x060000
[    0.198535] pci 0000:00:18.3: [1022:1103] type 00 class 0x060000
[    0.198689] pci 0000:00:04.0: PCI bridge to [bus 01] (subtractive decode)
[    0.198695] pci 0000:00:04.0:   bridge window [io  0x0000-0xffff] (subtractive decode)
[    0.198698] pci 0000:00:04.0:   bridge window [mem 0x80000000-0xfcffffffff] (subtractive decode)
[    0.198701] pci 0000:00:04.0:   bridge window [mem 0x000a0000-0x000bffff] (subtractive decode)
[    0.198755] pci 0000:00:09.0: PCI bridge to [bus 02]
[    0.198809] pci 0000:00:0b.0: PCI bridge to [bus 03]
[    0.198851] pci 0000:00:0c.0: PCI bridge to [bus 04]
[    0.200200] ACPI: PCI Interrupt Link [LNKA] (IRQs 16 17 18 19) *0, disabled.
[    0.200339] ACPI: PCI Interrupt Link [LNKB] (IRQs 16 17 18 19) *0, disabled.
[    0.200475] ACPI: PCI Interrupt Link [LNKC] (IRQs 16 17 18 19) *0, disabled.
[    0.200612] ACPI: PCI Interrupt Link [LNKD] (IRQs 16 17 18 19) *0, disabled.
[    0.200748] ACPI: PCI Interrupt Link [LNEA] (IRQs 16 17 18 19) *0, disabled.
[    0.200885] ACPI: PCI Interrupt Link [LNEB] (IRQs 16 17 18 19) *0, disabled.
[    0.201021] ACPI: PCI Interrupt Link [LNEC] (IRQs 16 17 18 19) *0, disabled.
[    0.201156] ACPI: PCI Interrupt Link [LNED] (IRQs 16 17 18 19) *0, disabled.
[    0.201293] ACPI: PCI Interrupt Link [LUB0] (IRQs 20 21 22 23) *5
[    0.201427] ACPI: PCI Interrupt Link [LUB2] (IRQs 20 21 22 23) *10
[    0.201562] ACPI: PCI Interrupt Link [LMAC] (IRQs 20 21 22 23) *5
[    0.201706] ACPI: PCI Interrupt Link [LAZA] (IRQs 20 21 22 23) *11
[    0.201842] ACPI: PCI Interrupt Link [LACI] (IRQs 20 21 22 23) *0, disabled.
[    0.201978] ACPI: PCI Interrupt Link [LMC9] (IRQs 20 21 22 23) *10
[    0.202113] ACPI: PCI Interrupt Link [LSMB] (IRQs 20 21 22 23) *11
[    0.202254] ACPI: PCI Interrupt Link [LPMU] (IRQs 20 21 22 23) *0, disabled.
[    0.202395] ACPI: PCI Interrupt Link [LSA0] (IRQs 20 21 22 23) *10
[    0.202530] ACPI: PCI Interrupt Link [LSA1] (IRQs 20 21 22 23) *10
[    0.202691] ACPI: PCI Interrupt Link [LATA] (IRQs 20 21 22 23) *0, disabled.
[    0.202811] ACPI: Enabled 1 GPEs in block 00 to 1F
[    0.202820] ACPI: \_SB_.PCI0: notify handler is installed
[    0.202872] Found 1 acpi root devices
[    0.203022] vgaarb: device added: PCI:0000:00:0d.0,decodes=io+mem,owns=io+mem,locks=none
[    0.203022] vgaarb: loaded
[    0.203022] vgaarb: bridge control possible 0000:00:0d.0
[    0.203022] SCSI subsystem initialized
[    0.203022] libata version 3.00 loaded.
[    0.203022] ACPI: bus type USB registered
[    0.203022] usbcore: registered new interface driver usbfs
[    0.203022] usbcore: registered new interface driver hub
[    0.203022] usbcore: registered new device driver usb
[    0.203022] PCI: Using ACPI for IRQ routing
[    0.210116] PCI: pci_cache_line_size set to 64 bytes
[    0.210159] e820: reserve RAM buffer [mem 0x0009fc00-0x0009ffff]
[    0.210162] e820: reserve RAM buffer [mem 0x77fb0000-0x77ffffff]
[    0.210303] NetLabel: Initializing
[    0.210305] NetLabel:  domain hash size = 128
[    0.210306] NetLabel:  protocols = UNLABELED CIPSOv4
[    0.210327] NetLabel:  unlabeled traffic allowed by default
[    0.210349] Switched to clocksource refined-jiffies
[    0.219847] AppArmor: AppArmor Filesystem Enabled
[    0.219899] pnp: PnP ACPI init
[    0.219925] ACPI: bus type PNP registered
[    0.219984] pnp 00:00: [dma 4]
[    0.220043] pnp 00:00: Plug and Play ACPI device, IDs PNP0200 (active)
[    0.220097] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active)
[    0.220127] pnp 00:02: Plug and Play ACPI device, IDs PNP0800 (active)
[    0.220168] pnp 00:03: Plug and Play ACPI device, IDs PNP0c04 (active)
[    0.220655] pnp 00:04: [dma 2]
[    0.220709] pnp 00:04: Plug and Play ACPI device, IDs PNP0700 (active)
[    0.221089] pnp 00:05: [dma 3]
[    0.221221] pnp 00:05: Plug and Play ACPI device, IDs PNP0401 (active)
[    0.222049] system 00:06: [io  0x04d0-0x04d1] has been reserved
[    0.222053] system 00:06: [io  0x0800-0x080f] has been reserved
[    0.222057] system 00:06: [io  0x4000-0x407f] could not be reserved
[    0.222060] system 00:06: [io  0x4080-0x40ff] has been reserved
[    0.222063] system 00:06: [io  0x4400-0x447f] has been reserved
[    0.222066] system 00:06: [io  0x4480-0x44ff] has been reserved
[    0.222070] system 00:06: [io  0x4800-0x487f] has been reserved
[    0.222073] system 00:06: [io  0x4880-0x48ff] has been reserved
[    0.222076] system 00:06: [io  0x2000-0x207f] has been reserved
[    0.222079] system 00:06: [io  0x2080-0x20ff] has been reserved
[    0.222083] system 00:06: [mem 0x000d0000-0x000d3fff window] has been reserved
[    0.222086] system 00:06: [mem 0x000d4000-0x000d7fff window] has been reserved
[    0.222094] system 00:06: [mem 0x000de000-0x000dffff window] has been reserved
[    0.222097] system 00:06: [mem 0xfefe0000-0xfefe01ff] has been reserved
[    0.222100] system 00:06: [mem 0xfefe1000-0xfefe1fff] has been reserved
[    0.222103] system 00:06: [mem 0xfee01000-0xfeefffff] has been reserved
[    0.222108] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.222236] system 00:07: [mem 0xfec00000-0xfec00fff] could not be reserved
[    0.222240] system 00:07: [mem 0xfee00000-0xfee00fff] has been reserved
[    0.222244] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.222318] pnp 00:08: Plug and Play ACPI device, IDs PNP0303 PNP030b (active)
[    0.222387] pnp 00:09: Plug and Play ACPI device, IDs PNP0f03 PNP0f13 (active)
[    0.222649] pnp 00:0a: [dma 0 disabled]
[    0.222719] pnp 00:0a: Plug and Play ACPI device, IDs PNP0501 (active)
[    0.222833] system 00:0b: [io  0x0290-0x029f] has been reserved
[    0.222837] system 00:0b: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.222931] system 00:0c: [mem 0xe0000000-0xefffffff] has been reserved
[    0.222935] system 00:0c: Plug and Play ACPI device, IDs PNP0c02 (active)
[    0.223195] system 00:0d: [mem 0x00000000-0x0009ffff] could not be reserved
[    0.223199] system 00:0d: [mem 0x000c0000-0x000cffff] could not be reserved
[    0.223202] system 00:0d: [mem 0x000e0000-0x000fffff] could not be reserved
[    0.223206] system 00:0d: [mem 0x00100000-0x7fffffff] could not be reserved
[    0.223209] system 00:0d: [mem 0xff380000-0xffffffff] has been reserved
[    0.223213] system 00:0d: Plug and Play ACPI device, IDs PNP0c01 (active)
[    0.223597] pnp: PnP ACPI: found 14 devices
[    0.223599] ACPI: bus type PNP unregistered
[    0.230537] Switched to clocksource acpi_pm
[    0.230572] pci 0000:00:04.0: PCI bridge to [bus 01]
[    0.230580] pci 0000:00:09.0: PCI bridge to [bus 02]
[    0.230586] pci 0000:00:0b.0: PCI bridge to [bus 03]
[    0.230591] pci 0000:00:0c.0: PCI bridge to [bus 04]
[    0.230597] pci_bus 0000:00: resource 4 [io  0x0000-0xffff]
[    0.230600] pci_bus 0000:00: resource 5 [mem 0x80000000-0xfcffffffff]
[    0.230603] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff]
[    0.230606] pci_bus 0000:01: resource 4 [io  0x0000-0xffff]
[    0.230609] pci_bus 0000:01: resource 5 [mem 0x80000000-0xfcffffffff]
[    0.230612] pci_bus 0000:01: resource 6 [mem 0x000a0000-0x000bffff]
[    0.230662] NET: Registered protocol family 2
[    0.230890] TCP established hash table entries: 16384 (order: 5, 131072 bytes)
[    0.231002] TCP bind hash table entries: 16384 (order: 6, 262144 bytes)
[    0.231141] TCP: Hash tables configured (established 16384 bind 16384)
[    0.231221] TCP: reno registered
[    0.231228] UDP hash table entries: 1024 (order: 3, 32768 bytes)
[    0.231255] UDP-Lite hash table entries: 1024 (order: 3, 32768 bytes)
[    0.231377] NET: Registered protocol family 1
[    0.231732] ACPI: PCI Interrupt Link [LUB0] enabled at IRQ 23
[    0.231997] ACPI: PCI Interrupt Link [LUB2] enabled at IRQ 22
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:00.0: Found enabled HT MSI Mapping
[    0.231997] pci 0000:00:0d.0: Boot video device
[    0.231997] PCI: CLS 64 bytes, default 64
[    0.231997] Trying to unpack rootfs image as initramfs...
[    0.673014] Freeing initrd memory: 18700K (ffff880035b6a000 - ffff880036dad000)
[    0.673473] microcode: AMD CPU family 0xf not supported
[    0.673477] Scanning for low memory corruption every 60 seconds
[    0.673837] Initialise system trusted keyring
[    0.673926] audit: initializing netlink socket (disabled)
[    0.673944] type=2000 audit(1408094094.671:1): initialized
[    0.707473] HugeTLB registered 2 MB page size, pre-allocated 0 pages
[    0.709261] zbud: loaded
[    0.709468] VFS: Disk quotas dquot_6.5.2
[    0.709537] Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
[    0.710262] fuse init (API version 7.22)
[    0.710401] msgmni has been set to 3745
[    0.710493] Key type big_key registered
[    0.711221] Key type asymmetric registered
[    0.711225] Asymmetric key parser 'x509' registered
[    0.711280] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 252)
[    0.711338] io scheduler noop registered
[    0.711341] io scheduler deadline registered (default)
[    0.711380] io scheduler cfq registered
[    0.711531] pcieport 0000:00:09.0: irq 40 for MSI/MSI-X
[    0.711609] pcieport 0000:00:0b.0: irq 41 for MSI/MSI-X
[    0.711674] pcieport 0000:00:0c.0: irq 42 for MSI/MSI-X
[    0.711762] pcieport 0000:00:09.0: Signaling PME through PCIe PME interrupt
[    0.711767] pcie_pme 0000:00:09.0:pcie01: service driver pcie_pme loaded
[    0.711783] pcieport 0000:00:0b.0: Signaling PME through PCIe PME interrupt
[    0.711786] pcie_pme 0000:00:0b.0:pcie01: service driver pcie_pme loaded
[    0.711804] pcieport 0000:00:0c.0: Signaling PME through PCIe PME interrupt
[    0.711807] pcie_pme 0000:00:0c.0:pcie01: service driver pcie_pme loaded
[    0.711824] pci_hotplug: PCI Hot Plug PCI Core version: 0.5
[    0.711847] pciehp: PCI Express Hot Plug Controller Driver version: 0.4
[    0.711917] ipmi message handler version 39.2
[    0.712068] input: Power Button as /devices/LNXSYSTM:00/device:00/PNP0C0C:00/input/input0
[    0.712075] ACPI: Power Button [PWRB]
[    0.712131] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input1
[    0.712134] ACPI: Power Button [PWRF]
[    0.712274] GHES: HEST is not enabled!
[    0.712391] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
[    0.732809] 00:0a: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
[    0.734852] Linux agpgart interface v0.103
[    0.736947] brd: module loaded
[    0.738028] loop: module loaded
[    0.738646] libphy: Fixed MDIO Bus: probed
[    0.738775] tun: Universal TUN/TAP device driver, 1.6
[    0.738777] tun: (C) 1999-2004 Max Krasnyansky <maxk@qualcomm.com>
[    0.738840] PPP generic driver version 2.4.2
[    0.738903] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver
[    0.738918] ehci-pci: EHCI PCI platform driver
[    0.739103] ehci-pci 0000:00:02.1: EHCI Host Controller
[    0.739115] ehci-pci 0000:00:02.1: new USB bus registered, assigned bus number 1
[    0.739126] ehci-pci 0000:00:02.1: debug port 1
[    0.739164] ehci-pci 0000:00:02.1: cache line size of 64 is not supported
[    0.739194] ehci-pci 0000:00:02.1: irq 22, io mem 0xdfffec00
[    0.748021] ehci-pci 0000:00:02.1: USB 2.0 started, EHCI 1.00
[    0.748089] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002
[    0.748092] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.748094] usb usb1: Product: EHCI Host Controller
[    0.748097] usb usb1: Manufacturer: Linux 3.13.0-34-generic ehci_hcd
[    0.748099] usb usb1: SerialNumber: 0000:00:02.1
[    0.748243] hub 1-0:1.0: USB hub found
[    0.748255] hub 1-0:1.0: 10 ports detected
[    0.748497] ehci-platform: EHCI generic platform driver
[    0.748511] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver
[    0.748512] ohci-pci: OHCI PCI platform driver
[    0.748633] ohci-pci 0000:00:02.0: OHCI PCI host controller
[    0.748641] ohci-pci 0000:00:02.0: new USB bus registered, assigned bus number 2
[    0.748672] ohci-pci 0000:00:02.0: irq 23, io mem 0xdffff000
[    0.806085] usb usb2: New USB device found, idVendor=1d6b, idProduct=0001
[    0.806089] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
[    0.806091] usb usb2: Product: OHCI PCI host controller
[    0.806094] usb usb2: Manufacturer: Linux 3.13.0-34-generic ohci_hcd
[    0.806096] usb usb2: SerialNumber: 0000:00:02.0
[    0.806283] hub 2-0:1.0: USB hub found
[    0.806296] hub 2-0:1.0: 10 ports detected
[    0.806565] ohci-platform: OHCI generic platform driver
[    0.806581] uhci_hcd: USB Universal Host Controller Interface driver
[    0.806686] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f03:PS2M] at 0x60,0x64 irq 1,12
[    0.809245] serio: i8042 KBD port at 0x60,0x64 irq 1
[    0.809253] serio: i8042 AUX port at 0x60,0x64 irq 12
[    0.809430] mousedev: PS/2 mouse device common for all mice
[    0.809630] rtc_cmos 00:01: RTC can wake from S4
[    0.809812] rtc_cmos 00:01: rtc core: registered rtc_cmos as rtc0
[    0.809848] rtc_cmos 00:01: alarms up to one year, y3k, 114 bytes nvram
[    0.809947] device-mapper: uevent: version 1.0.3
[    0.810037] device-mapper: ioctl: 4.27.0-ioctl (2013-10-30) initialised: dm-devel@redhat.com
[    0.810046] ledtrig-cpu: registered to indicate activity on CPUs
[    0.810196] TCP: cubic registered
[    0.810317] NET: Registered protocol family 10
[    0.810570] NET: Registered protocol family 17
[    0.810584] Key type dns_resolver registered
[    0.810935] Loading compiled-in X.509 certificates
[    0.812301] Loaded X.509 cert 'Magrathea: Glacier signing key: 500bc5c87d4b115cf3c1504f7a92e233c6143d58'
[    0.812330] registered taskstats version 1
[    0.816519] Key type trusted registered
[    0.820417] Key type encrypted registered
[    0.824238] AppArmor: AppArmor sha1 policy hashing enabled
[    0.824246] IMA: No TPM chip found, activating TPM-bypass!
[    0.824522] regulator-dummy: disabling
[    0.824598]   Magic number: 10:260:222
[    0.824735] rtc_cmos 00:01: setting system clock to 2014-08-15 09:14:55 UTC (1408094095)
[    0.824957] powernow-k8: fid 0xd (2100 MHz), vid 0xa
[    0.824960] powernow-k8: fid 0xc (2000 MHz), vid 0xb
[    0.824961] powernow-k8: fid 0xa (1800 MHz), vid 0xd
[    0.824963] powernow-k8: fid 0x2 (1000 MHz), vid 0x12
[    0.825019] powernow-k8: Found 1 AMD Athlon(tm) 64 X2 Dual Core Processor 4000+ (2 cpu cores) (version 2.20.00)
[    0.825029] BIOS EDD facility v0.16 2004-Jun-25, 0 devices found
[    0.825030] EDD information not available.
[    0.825080] PM: Hibernation image not present or could not be loaded.
[    0.827422] Freeing unused kernel memory: 1336K (ffffffff81d1f000 - ffffffff81e6d000)
[    0.827426] Write protecting the kernel read-only data: 12288k
[    0.830961] Freeing unused kernel memory: 816K (ffff880001734000 - ffff880001800000)
[    0.833979] Freeing unused kernel memory: 696K (ffff880001b52000 - ffff880001c00000)
[    0.845753] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input2
[    0.858642] systemd-udevd[97]: starting version 204
[    0.883362] pata_amd 0000:00:06.0: version 0.4.1
[    0.889725] scsi0 : pata_amd
[    0.889834] scsi1 : pata_amd
[    0.889878] ata1: PATA max UDMA/133 cmd 0x1f0 ctl 0x3f6 bmdma 0xffa0 irq 14
[    0.889881] ata2: PATA max UDMA/133 cmd 0x170 ctl 0x376 bmdma 0xffa8 irq 15
[    0.889954] forcedeth: Reverse Engineered nForce ethernet driver. Version 0.64.
[    0.890236] ACPI: PCI Interrupt Link [LMAC] enabled at IRQ 21
[    0.909745] Floppy drive(s): fd0 is 1.44M
[    0.927467] FDC 0 is a post-1991 82077
[    1.052442] ata1.00: ATAPI: HL-DT-STDVD-RAM GSA-H58N, 1.00, max UDMA/66
[    1.052455] ata1: nv_mode_filter: 0x1f39f&0x1f39f->0x1f39f, BIOS=0x1f000 (0xc5000000) ACPI=0x1f01f (30:900:0x11)
[    1.060051] usb 1-2: new high-speed USB device number 2 using ehci-pci
[    1.068363] ata1.00: configured for UDMA/66
[    1.070921] scsi 0:0:0:0: CD-ROM            HL-DT-ST DVD-RAM GSA-H58N 1.00 PQ: 0 ANSI: 5
[    1.073672] sr0: scsi3-mmc drive: 48x/48x writer dvd-ram cd/rw xa/form2 cdda tray
[    1.073675] cdrom: Uniform CD-ROM driver Revision: 3.20
[    1.073834] sr 0:0:0:0: Attached scsi CD-ROM sr0
[    1.073951] sr 0:0:0:0: Attached scsi generic sg0 type 5
[    1.074076] ata2: port disabled--ignoring
[    1.280354] usb 1-2: New USB device found, idVendor=045e, idProduct=0728
[    1.280360] usb 1-2: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.280362] usb 1-2: Product: Microsoft LifeCam VX-5000
[    1.280365] usb 1-2: Manufacturer: Microsoft
[    1.312787] psmouse serio1: alps: Unknown ALPS touchpad: E7=00 00 64, EC=00 00 64
[    1.412796] forcedeth 0000:00:07.0: ifname eth0, PHY OUI 0x732 @ 1, addr 00:19:66:3c:68:e5
[    1.412803] forcedeth 0000:00:07.0: highdma pwrctl mgmt lnktim msi desc-v3
[    1.412853] sata_nv 0000:00:08.0: version 3.5
[    1.413141] ACPI: PCI Interrupt Link [LSA0] enabled at IRQ 20
[    1.413611] scsi2 : sata_nv
[    1.413705] scsi3 : sata_nv
[    1.413751] ata3: SATA max UDMA/133 cmd 0xe00 ctl 0xe20 bmdma 0xd880 irq 20
[    1.413754] ata4: SATA max UDMA/133 cmd 0xe40 ctl 0xe60 bmdma 0xd888 irq 20
[    1.413999] ACPI: PCI Interrupt Link [LSA1] enabled at IRQ 23
[    1.414418] scsi4 : sata_nv
[    1.414500] scsi5 : sata_nv
[    1.414544] ata5: SATA max UDMA/133 cmd 0xe80 ctl 0xea0 bmdma 0xd000 irq 23
[    1.414546] ata6: SATA max UDMA/133 cmd 0xec0 ctl 0xee0 bmdma 0xd008 irq 23
[    1.644044] usb 2-3: new low-speed USB device number 2 using ohci-pci
[    1.734298] ata3: SATA link down (SStatus 0 SControl 300)
[    1.862043] usb 2-3: New USB device found, idVendor=045e, idProduct=00e1
[    1.862046] usb 2-3: New USB device strings: Mfr=1, Product=2, SerialNumber=0
[    1.862049] usb 2-3: Product: Microsoft Wireless Optical Mouse\xffffffc2\xffffffae\xffffffae 1.00
[    1.862051] usb 2-3: Manufacturer: Microsoft
[    1.869527] hidraw: raw HID events driver (C) Jiri Kosina
[    1.880054] ata5: SATA link up 3.0 Gbps (SStatus 123 SControl 300)
[    1.885987] usbcore: registered new interface driver usbhid
[    1.885992] usbhid: USB HID core driver
[    1.889056] ata5.00: ATA-8: WDC WD2500AAJS-00VTA0, 01.01B01, max UDMA/133
[    1.889061] ata5.00: 488397168 sectors, multi 16: LBA48 NCQ (depth 0/32)
[    1.889356] input: Microsoft Microsoft Wireless Optical Mouse\xffffffc2\xffffffae\xffffffae 1.00 as /devices/pci0000:00/0000:00:02.0/usb2/2-3/2-3:1.0/input/input5
[    1.890019] hid-generic 0003:045E:00E1.0001: input,hidraw0: USB HID v1.11 Mouse [Microsoft Microsoft Wireless Optical Mouse\xffffffc2\xffffffae\xffffffae 1.00] on usb-0000:00:02.0-3/input0
[    1.905143] ata5.00: configured for UDMA/133
[    2.054285] ata4: SATA link down (SStatus 0 SControl 300)
[    2.054525] scsi 4:0:0:0: Direct-Access     ATA      WDC WD2500AAJS-0 01.0 PQ: 0 ANSI: 5
[    2.054760] sd 4:0:0:0: [sda] 488397168 512-byte logical blocks: (250 GB/232 GiB)
[    2.054768] sd 4:0:0:0: Attached scsi generic sg1 type 0
[    2.054843] sd 4:0:0:0: [sda] Write Protect is off
[    2.054848] sd 4:0:0:0: [sda] Mode Sense: 00 3a 00 00
[    2.054906] sd 4:0:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA
[    2.093426]  sda: sda1 sda2 < sda5 sda6 sda7 >
[    2.094023] sd 4:0:0:0: [sda] Attached SCSI disk
[    2.101210] input: ImExPS/2 Generic Explorer Mouse as /devices/platform/i8042/serio1/input/input4
[    2.374287] ata6: SATA link down (SStatus 0 SControl 300)
[    2.600370] EXT4-fs (sda7): mounted filesystem with ordered data mode. Opts: (null)
[    3.384078] random: init urandom read with 116 bits of entropy available
[    3.806871] random: nonblocking pool is initialized
[   14.290438] Adding 1964028k swap on /dev/sda6.  Priority:-1 extents:1 across:1964028k FS
[   14.370214] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[   14.555595] systemd-udevd[276]: starting version 204
[   14.666314] lp: driver loaded but no devices found
[   14.688975] i2c i2c-0: nForce2 SMBus adapter at 0x5000
[   14.689033] i2c i2c-1: nForce2 SMBus adapter at 0x6000
[   14.694377] ppdev: user-space parallel port driver
[   14.704296] parport_pc 00:05: reported by Plug and Play ACPI
[   14.704458] parport0: PC-style at 0x378 (0x778), irq 7, dma 3 [PCSPP,TRISTATE,COMPAT,ECP,DMA]
[   14.800601] lp0: using parport0 (interrupt-driven).
[   14.874124] k8temp 0000:00:18.3: Temperature readouts might be wrong - check erratum #141
[   14.883142] MCE: In-kernel MCE decoding enabled.
[   14.910572] EDAC MC: Ver: 3.0.0
[   14.911235] Linux video capture interface: v2.00
[   14.929086] AMD64 EDAC driver v3.4.0
[   14.929143] EDAC amd64: DRAM ECC disabled.
[   14.929152] EDAC amd64: ECC disabled in the BIOS or no ECC capability, module will not load.
[   14.929152]  Either enable ECC checking or force module loading by setting 'ecc_enable_override'.
[   14.929152]  (Note that use of the override may cause unknown side effects.)
[   14.945859] uvcvideo: Found UVC 1.00 device Microsoft LifeCam VX-5000 (045e:0728)
[   14.950180] input: Microsoft LifeCam VX-5000 as /devices/pci0000:00/0000:00:02.1/usb1/1-2/1-2:1.0/input/input6
[   14.951084] usbcore: registered new interface driver uvcvideo
[   14.951089] USB Video Class driver (1.1.1)
[   14.961004] type=1400 audit(1408086909.631:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/sbin/dhclient" pid=336 comm="apparmor_parser"
[   14.961017] type=1400 audit(1408086909.631:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=336 comm="apparmor_parser"
[   14.961023] type=1400 audit(1408086909.631:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=336 comm="apparmor_parser"
[   14.962344] type=1400 audit(1408086909.631:5): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/NetworkManager/nm-dhcp-client.action" pid=336 comm="apparmor_parser"
[   14.962356] type=1400 audit(1408086909.631:6): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=336 comm="apparmor_parser"
[   14.962719] type=1400 audit(1408086909.631:7): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/connman/scripts/dhclient-script" pid=336 comm="apparmor_parser"
[   14.994681] nvidia: module license 'NVIDIA' taints kernel.
[   14.994689] Disabling lock debugging due to kernel taint
[   15.060656] EXT4-fs (sda7): re-mounted. Opts: errors=remount-ro
[   15.070889] nvidia: module verification failed: signature and/or  required key missing - tainting kernel
[   15.124112] kvm: Nested Virtualization enabled
[   15.142771] ACPI: PCI Interrupt Link [LMC9] enabled at IRQ 22
[   15.142793] vgaarb: device changed decodes: PCI:0000:00:0d.0,olddecodes=io+mem,decodes=none:owns=none
[   15.144331] NVRM: loading NVIDIA UNIX x86_64 Kernel Module  304.117  Tue Nov 26 21:25:36 PST 2013
[   15.207443] ACPI: PCI Interrupt Link [LAZA] enabled at IRQ 21
[   15.207459] hda_intel: msi for device 1849:0888 set to 0
[   15.207462] hda_intel: position_fix set to 1 for device 1849:0888
[   15.207508] hda-intel 0000:00:05.0: Disabling 64bit DMA
[   15.213933] hda-intel 0000:00:05.0: Enable delay in RIRB handling
[   15.223004] usbcore: registered new interface driver snd-usb-audio
[   15.908318] SKU: Nid=0x0 sku_cfg=0x00001e01
[   15.908323] SKU: port_connectivity=0x0
[   15.908325] SKU: enable_pcbeep=0x1
[   15.908327] SKU: check_sum=0x00000000
[   15.908328] SKU: customization=0x00000000
[   15.908330] SKU: external_amp=0x0
[   15.908331] SKU: platform_type=0x0
[   15.908332] SKU: swap=0x0
[   15.908333] SKU: override=0x1
[   15.955891] init: failsafe main process (553) killed by TERM signal
[   15.972071] autoconfig: line_outs=4 (0x14/0x15/0x16/0x17/0x0) type:line
[   15.972077]    speaker_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   15.972080]    hp_outs=0 (0x0/0x0/0x0/0x0/0x0)
[   15.972081]    mono: mono_out=0x0
[   15.972083]    dig-out=0x1e/0x0
[   15.972084]    inputs:
[   15.972086]      Mic=0x18
[   15.972088]      Line=0x1a
[   15.972089]      CD=0x1c
[   15.972092] realtek: Enabling init ASM_ID=0x1e01 CODEC_ID=10ec0888
[   16.240334] Bluetooth: Core ver 2.17
[   16.240403] NET: Registered protocol family 31
[   16.240406] Bluetooth: HCI device and connection manager initialized
[   16.240903] Bluetooth: HCI socket layer initialized
[   16.240908] Bluetooth: L2CAP socket layer initialized
[   16.240918] Bluetooth: SCO socket layer initialized
[   16.265127] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   16.265133] Bluetooth: BNEP filters: protocol multicast
[   16.265148] Bluetooth: BNEP socket layer initialized
[   16.321501] Bluetooth: RFCOMM TTY layer initialized
[   16.321519] Bluetooth: RFCOMM socket layer initialized
[   16.321533] Bluetooth: RFCOMM ver 1.11
[   16.427748] type=1400 audit(1408086911.095:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=627 comm="apparmor_parser"
[   16.427762] type=1400 audit(1408086911.095:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cupsd" pid=627 comm="apparmor_parser"
[   16.428514] type=1400 audit(1408086911.099:10): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=627 comm="apparmor_parser"
[   16.612062] type=1400 audit(1408086911.283:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/x86_64-linux-gnu/lightdm-remote-session-freerdp/freerdp-session-wrapper" pid=686 comm="apparmor_parser"
[   16.787384] init: cups main process (640) killed by HUP signal
[   16.787407] init: cups main process ended, respawning
[   17.624274] input: HDA NVidia Line Out Side as /devices/pci0000:00/0000:00:05.0/sound/card0/input12
[   17.624794] input: HDA NVidia Line Out CLFE as /devices/pci0000:00/0000:00:05.0/sound/card0/input11
[   17.624981] input: HDA NVidia Line Out Surround as /devices/pci0000:00/0000:00:05.0/sound/card0/input10
[   17.625134] input: HDA NVidia Line Out Front as /devices/pci0000:00/0000:00:05.0/sound/card0/input9
[   17.625281] input: HDA NVidia Line as /devices/pci0000:00/0000:00:05.0/sound/card0/input8
[   17.625437] input: HDA NVidia Mic as /devices/pci0000:00/0000:00:05.0/sound/card0/input7
[   17.645337] forcedeth 0000:00:07.0: irq 43 for MSI/MSI-X
[   17.645382] forcedeth 0000:00:07.0 eth0: MSI enabled
[   17.882568] init: plymouth-upstart-bridge main process ended, respawning
[   17.887042] init: udev-fallback-graphics main process (950) terminated with status 1
[   18.107733] init: plymouth-splash main process (991) terminated with status 1
[   18.353375] init: plymouth-stop pre-start process (1032) terminated with status 1
[   46.588170] audit_printk_skb: 177 callbacks suppressed
[   46.588177] type=1400 audit(1408086941.261:71): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2231 comm="apparmor_parser"
[   46.588189] type=1400 audit(1408086941.261:72): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2231 comm="apparmor_parser"
[   46.588858] type=1400 audit(1408086941.261:73): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2231 comm="apparmor_parser"
[  403.402123] type=1400 audit(1408087298.074:74): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/lib/cups/backend/cups-pdf" pid=2680 comm="apparmor_parser"
[  403.402140] type=1400 audit(1408087298.074:75): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2680 comm="apparmor_parser"
[  403.402891] type=1400 audit(1408087298.074:76): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/cupsd" pid=2680 comm="apparmor_parser"
____________________________________________

Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.2-19ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) 
____________________________________________

Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/4.8/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.2-19ubuntu1' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) 
____________________________________________

xset -q:

Keyboard Control:
  auto repeat:  on    key click percent:  0    LED mask:  00000000
  XKB indicators:
    00: Caps Lock:   off    01: Num Lock:    off    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:  33
  auto repeating keys:  00ffffffdffffbbf
                        fadfffefffedffff
                        9fffffffffffffff
                        fff7ffffffffffff
  bell percent:  50    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:  0x0    WhitePixel:  0xffffff
Font Path:
  /usr/share/fonts/X11/misc,/usr/share/fonts/X11/Type1,built-ins
DPMS (Energy Star):
  Standby: 0    Suspend: 0    Off: 0
  DPMS is Enabled
  Monitor is On
____________________________________________

nvidia-settings -q all:


ERROR: Error querying target relations


Attributes queryable via heiner-desktop:0.0:

  Attribute 'OperatingSystem' (heiner-desktop: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' (heiner-desktop:0.0): 304.117 
    'NvidiaDriverVersion' is a string attribute.
    'NvidiaDriverVersion' is a read-only attribute.
    'NvidiaDriverVersion' can use the following target types: X Screen,
    GPU.

  Attribute 'NvControlVersion' (heiner-desktop:0.0): 1.28 
    'NvControlVersion' is a string attribute.
    'NvControlVersion' is a read-only attribute.
    'NvControlVersion' can use the following target types: X Screen.

  Attribute 'GLXServerVersion' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0.0): 2.1.2 NVIDIA 304.117 
    'OpenGLVersion' is a string attribute.
    'OpenGLVersion' is a read-only attribute.
    'OpenGLVersion' can use the following target types: X Screen.

  Attribute 'XRandRVersion' (heiner-desktop:0.0): 1.4 
    'XRandRVersion' is a string attribute.
    'XRandRVersion' is a read-only attribute.
    'XRandRVersion' can use the following target types: X Screen.

  Attribute 'XF86VidModeVersion' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0.0): 0x00000001.
    'ConnectedDisplays' is a bitmask attribute.
    'ConnectedDisplays' is a read-only attribute.
    'ConnectedDisplays' can use the following target types: X Screen, GPU.

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

  Attribute 'AssociatedDisplays' (heiner-desktop:0.0): 0x00000001.
    'AssociatedDisplays' is a bitmask attribute.
    'AssociatedDisplays' can use the following target types: X Screen.

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

  Attribute 'MultiGpuDisplayOwner' (heiner-desktop: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' (heiner-desktop:0.0): 1.
    'GlyphCache' is a boolean attribute; valid values are: 1 (on/true) and
    0 (off/false).
    'GlyphCache' can use the following target types: X Screen.

  Attribute 'Depth30Allowed' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0.0): -1351353827.
    'XServerUniqueId' is an integer attribute.
    'XServerUniqueId' is a read-only attribute.
    'XServerUniqueId' can use the following target types: X Screen.

  Attribute 'PixmapCache' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0.0): 0.
    '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' (heiner-desktop:0.0): 1.
    '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' (heiner-desktop: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' (heiner-desktop:0.0): 0.
    Valid values for 'FSAA' are: 0, 1, 5 and 8.
    'FSAA' can use the following target types: X Screen.

  Attribute 'TextureSharpen' (heiner-desktop: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 'TextureClamping' (heiner-desktop:0.0): 1.
    'TextureClamping' is an integer attribute.
    'TextureClamping' can use the following target types: X Screen.

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

  Attribute 'AllowFlipping' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop: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 'SliMosaicModeAvailable' (heiner-desktop: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' (heiner-desktop:0.0): 3.
    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 'VideoRam' (heiner-desktop:0.0): 524288.
    'VideoRam' is an integer attribute.
    'VideoRam' is a read-only attribute.
    'VideoRam' can use the following target types: X Screen, GPU.

  Attribute 'Irq' (heiner-desktop:0.0): 22.
    '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 'GPUMemoryInterface' (heiner-desktop:0.0): 32.
    'GPUMemoryInterface' is an integer attribute.
    'GPUMemoryInterface' is a read-only attribute.
    'GPUMemoryInterface' can use the following target types: X Screen,
    GPU.

  Attribute 'GPU2DClockFreqs' (heiner-desktop:0.0): 425,532.
    The valid values for 'GPU2DClockFreqs' are in the ranges 106 - 850, 133
    - 1200 (inclusive).
    'GPU2DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPU3DClockFreqs' (heiner-desktop:0.0): 425,532.
    The valid values for 'GPU3DClockFreqs' are in the ranges 106 - 850, 133
    - 1200 (inclusive).
    'GPU3DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPUDefault2DClockFreqs' (heiner-desktop:0.0): 425,532.
    'GPUDefault2DClockFreqs' is a packed integer attribute.
    'GPUDefault2DClockFreqs' is a read-only attribute.
    'GPUDefault2DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUDefault3DClockFreqs' (heiner-desktop:0.0): 425,532.
    'GPUDefault3DClockFreqs' is a packed integer attribute.
    'GPUDefault3DClockFreqs' is a read-only attribute.
    'GPUDefault3DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqs' (heiner-desktop:0.0): 425,532.
    'GPUCurrentClockFreqs' is a packed integer attribute.
    'GPUCurrentClockFreqs' is a read-only attribute.
    'GPUCurrentClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqsString' (heiner-desktop:0.0): nvclock=425,
  memclock=532 
    'GPUCurrentClockFreqsString' is a string attribute.
    'GPUCurrentClockFreqsString' can use the following target types: X
    Screen, GPU.

  Attribute 'GPUErrors' (heiner-desktop: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' (heiner-desktop: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 'GPUCurrentPerfLevel' (heiner-desktop:0.0): 0.
    'GPUCurrentPerfLevel' is an integer attribute.
    'GPUCurrentPerfLevel' is a read-only attribute.
    'GPUCurrentPerfLevel' can use the following target types: X Screen,
    GPU.

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

  Attribute 'GPUPerfModes' (heiner-desktop:0.0): perf=0, nvclock=425,
  memclock=532 
    'GPUPerfModes' is a string attribute.
    'GPUPerfModes' is a read-only attribute.
    'GPUPerfModes' can use the following target types: X Screen, GPU.

  Attribute 'ECCSupported' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0.0; display device: CRT-0): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0.0; display device: CRT-0):
  0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0.0; display device: CRT-0):
  0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0.0; display device:
  CRT-0): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0.0; display device: CRT-0):
  75,00 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0.0; display device: CRT-0):
  75,000 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,
    Display Device.

  Attribute 'CurrentMetaModeID' (heiner-desktop:0.0): 50.
    'CurrentMetaModeID' is an integer attribute.
    'CurrentMetaModeID' can use the following target types: X Screen.

  Attribute 'CurrentMetaMode' (heiner-desktop:0.0): id=50, switchable=yes,
  source=RandR :: DPY-0: 1152x864 @1152x864 +0+0 
    'CurrentMetaMode' is a string attribute.
    'CurrentMetaMode' can use the following target types: X Screen.

  Attribute 'XineramaInfoOrder' (heiner-desktop:0.0): VGA-0 
    'XineramaInfoOrder' is a string attribute.
    'XineramaInfoOrder' can use the following target types: X Screen.

  Attribute 'XVideoSyncToDisplay' (heiner-desktop:0.0): 0x00000001.
    'XVideoSyncToDisplay' is a bitmask attribute.
    'XVideoSyncToDisplay' can use the following target types: X Screen.

Attributes queryable via heiner-desktop:0[gpu:0]:

  Attribute 'OperatingSystem' (heiner-desktop: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' (heiner-desktop:0[gpu:0]): 304.117 
    'NvidiaDriverVersion' is a string attribute.
    'NvidiaDriverVersion' is a read-only attribute.
    'NvidiaDriverVersion' can use the following target types: X Screen,
    GPU.

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

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

  Attribute 'Depth30Allowed' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0[gpu:0]): 3.
    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 'VideoRam' (heiner-desktop:0[gpu:0]): 524288.
    'VideoRam' is an integer attribute.
    'VideoRam' is a read-only attribute.
    'VideoRam' can use the following target types: X Screen, GPU.

  Attribute 'TotalDedicatedGPUMemory' (heiner-desktop:0[gpu:0]): 128.
    'TotalDedicatedGPUMemory' is an integer attribute.
    'TotalDedicatedGPUMemory' is a read-only attribute.
    'TotalDedicatedGPUMemory' can use the following target types: GPU.

  Attribute 'UsedDedicatedGPUMemory' (heiner-desktop:0[gpu:0]): 91.
    'UsedDedicatedGPUMemory' is an integer attribute.
    'UsedDedicatedGPUMemory' is a read-only attribute.
    'UsedDedicatedGPUMemory' can use the following target types: GPU.

  Attribute 'Irq' (heiner-desktop:0[gpu:0]): 22.
    '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 'GPUMemoryInterface' (heiner-desktop:0[gpu:0]): 32.
    'GPUMemoryInterface' is an integer attribute.
    'GPUMemoryInterface' is a read-only attribute.
    'GPUMemoryInterface' can use the following target types: X Screen,
    GPU.

  Attribute 'GPU2DClockFreqs' (heiner-desktop:0[gpu:0]): 425,532.
    The valid values for 'GPU2DClockFreqs' are in the ranges 106 - 850, 133
    - 1200 (inclusive).
    'GPU2DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPU3DClockFreqs' (heiner-desktop:0[gpu:0]): 425,532.
    The valid values for 'GPU3DClockFreqs' are in the ranges 106 - 850, 133
    - 1200 (inclusive).
    'GPU3DClockFreqs' can use the following target types: X Screen, GPU.

  Attribute 'GPUDefault2DClockFreqs' (heiner-desktop:0[gpu:0]): 425,532.
    'GPUDefault2DClockFreqs' is a packed integer attribute.
    'GPUDefault2DClockFreqs' is a read-only attribute.
    'GPUDefault2DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUDefault3DClockFreqs' (heiner-desktop:0[gpu:0]): 425,532.
    'GPUDefault3DClockFreqs' is a packed integer attribute.
    'GPUDefault3DClockFreqs' is a read-only attribute.
    'GPUDefault3DClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqs' (heiner-desktop:0[gpu:0]): 425,532.
    'GPUCurrentClockFreqs' is a packed integer attribute.
    'GPUCurrentClockFreqs' is a read-only attribute.
    'GPUCurrentClockFreqs' can use the following target types: X Screen,
    GPU.

  Attribute 'GPUCurrentClockFreqsString' (heiner-desktop:0[gpu:0]):
  nvclock=425, memclock=532 
    'GPUCurrentClockFreqsString' is a string attribute.
    'GPUCurrentClockFreqsString' can use the following target types: X
    Screen, GPU.

  Attribute 'PCIDomain' (heiner-desktop: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' (heiner-desktop:0[gpu:0]): 0.
    'PCIBus' is an integer attribute.
    'PCIBus' is a read-only attribute.
    'PCIBus' can use the following target types: GPU, SDI Input Device.

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

  Attribute 'PCIFunc' (heiner-desktop: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' (heiner-desktop:0[gpu:0]): 4318,976.
    'PCIID' is a packed integer attribute.
    'PCIID' is a read-only attribute.
    'PCIID' can use the following target types: GPU, SDI Input Device.

  Attribute 'GPUPowerSource' (heiner-desktop: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 'GPUCurrentPerfLevel' (heiner-desktop:0[gpu:0]): 0.
    'GPUCurrentPerfLevel' is an integer attribute.
    'GPUCurrentPerfLevel' is a read-only attribute.
    'GPUCurrentPerfLevel' can use the following target types: X Screen,
    GPU.

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

  Attribute 'GPUPerfModes' (heiner-desktop:0[gpu:0]): perf=0, nvclock=425,
  memclock=532 
    'GPUPerfModes' is a string attribute.
    'GPUPerfModes' is a read-only attribute.
    'GPUPerfModes' can use the following target types: X Screen, GPU.

  Attribute 'ECCSupported' (heiner-desktop: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' (heiner-desktop: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' (heiner-desktop:0[gpu:0]; display device:
  CRT-0): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[gpu:0]; display device:
  CRT-0): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[gpu:0]; display device:
  CRT-0): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[gpu:0]; display
  device: CRT-0): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[gpu:0]; display device: CRT-0):
  75,00 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[gpu:0]; display device:
  CRT-0): 75,000 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,
    Display Device.

Attributes queryable via heiner-desktop:0[dpy:0]:

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'IsGvoDisplay' (heiner-desktop:0[dpy:0]): 0.
    'IsGvoDisplay' is a boolean attribute; valid values are: 1 (on/true)
    and 0 (off/false).
    'IsGvoDisplay' is a read-only attribute.
    'IsGvoDisplay' is display device specific.
    'IsGvoDisplay' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'DigitalVibrance' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'DigitalVibrance' are in the range 0 - 63
    (inclusive).
    'DigitalVibrance' is display device specific.
    'DigitalVibrance' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpening' (heiner-desktop:0[dpy:0]): 0.
    The valid values for 'ImageSharpening' are in the range 0 - 31
    (inclusive).
    'ImageSharpening' is display device specific.
    'ImageSharpening' can use the following target types: X Screen, GPU,
    Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'ImageSharpeningDefault' (heiner-desktop:0[dpy:0]): 0.
    'ImageSharpeningDefault' is an integer attribute.
    'ImageSharpeningDefault' is a read-only attribute.
    'ImageSharpeningDefault' is display device specific.
    'ImageSharpeningDefault' can use the following target types: X Screen,
    GPU, Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate' (heiner-desktop:0[dpy:0]): 75,00 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RefreshRate3' (heiner-desktop:0[dpy:0]): 75,000 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,
    Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

  Attribute 'RandROutputID' (heiner-desktop:0[dpy:0]): 571.
    'RandROutputID' is an integer attribute.
    'RandROutputID' is a read-only attribute.
    'RandROutputID' is display device specific.
    'RandROutputID' can use the following target types: Display Device.

____________________________________________

*** /proc/cmdline
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.241253622 +0200 /proc/cmdline
BOOT_IMAGE=/boot/vmlinuz-3.13.0-34-generic root=UUID=cb6bb820-c537-4460-bd30-4c7a1c5b4a45 ro quiet splash

____________________________________________

*** /proc/cpuinfo
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.249253521 +0200 /proc/cpuinfo
processor	: 0
vendor_id	: AuthenticAMD
cpu family	: 15
model		: 107
model name	: AMD Athlon(tm) 64 X2 Dual Core Processor 4000+
stepping	: 1
cpu MHz		: 1000.000
cache size	: 512 KB
physical id	: 0
siblings	: 2
core id		: 0
cpu cores	: 2
apicid		: 0
initial apicid	: 0
fpu		: yes
fpu_exception	: yes
cpuid level	: 1
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow rep_good nopl extd_apicid pni cx16 lahf_lm cmp_legacy svm extapic cr8_legacy 3dnowprefetch lbrv
bogomips	: 2009.01
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps

processor	: 1
vendor_id	: AuthenticAMD
cpu family	: 15
model		: 107
model name	: AMD Athlon(tm) 64 X2 Dual Core Processor 4000+
stepping	: 1
cpu MHz		: 1000.000
cache size	: 512 KB
physical id	: 0
siblings	: 2
core id		: 1
cpu cores	: 2
apicid		: 1
initial apicid	: 1
fpu		: yes
fpu_exception	: yes
cpuid level	: 1
wp		: yes
flags		: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ht syscall nx mmxext fxsr_opt rdtscp lm 3dnowext 3dnow rep_good nopl extd_apicid pni cx16 lahf_lm cmp_legacy svm extapic cr8_legacy 3dnowprefetch lbrv
bogomips	: 2009.01
TLB size	: 1024 4K pages
clflush size	: 64
cache_alignment	: 64
address sizes	: 40 bits physical, 48 bits virtual
power management: ts fid vid ttp tm stc 100mhzsteps


____________________________________________

*** /proc/interrupts
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.261253370 +0200 /proc/interrupts
           CPU0       CPU1       
  0:         44          0   IO-APIC-edge      timer
  1:          4        648   IO-APIC-edge      i8042
  6:          0          3   IO-APIC-edge      floppy
  7:          2          0   IO-APIC-edge      parport0
  8:          0          0   IO-APIC-edge      rtc0
  9:          0          0   IO-APIC-fasteoi   acpi
 12:          0        156   IO-APIC-edge      i8042
 14:          7       3020   IO-APIC-edge      pata_amd
 15:          0          0   IO-APIC-edge      pata_amd
 20:          0          0   IO-APIC-fasteoi   sata_nv
 21:          3       1250   IO-APIC-fasteoi   snd_hda_intel
 22:     164394      98577   IO-APIC-fasteoi   ehci_hcd:usb1, nvidia
 23:      72006      33031   IO-APIC-fasteoi   ohci_hcd:usb2, sata_nv
 40:          0          0   PCI-MSI-edge      PCIe PME
 41:          0          0   PCI-MSI-edge      PCIe PME
 42:          0          0   PCI-MSI-edge      PCIe PME
 43:      47638      49673   PCI-MSI-edge      eth0
NMI:         32         29   Non-maskable interrupts
LOC:     440120     583824   Local timer interrupts
SPU:          0          0   Spurious interrupts
PMI:         32         29   Performance monitoring interrupts
IWI:       9146      12478   IRQ work interrupts
RTR:          0          0   APIC ICR read retries
RES:     656553     621585   Rescheduling interrupts
CAL:       2772       5321   Function call interrupts
TLB:      11859       7004   TLB shootdowns
TRM:          0          0   Thermal event interrupts
THR:          0          0   Threshold APIC interrupts
MCE:          0          0   Machine check exceptions
MCP:         11         11   Machine check polls
ERR:          1
MIS:          0

____________________________________________

*** /proc/meminfo
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.273253219 +0200 /proc/meminfo
MemTotal:        1920664 kB
MemFree:          206968 kB
Buffers:           18472 kB
Cached:           450576 kB
SwapCached:         2284 kB
Active:           919360 kB
Inactive:         532412 kB
Active(anon):     678424 kB
Inactive(anon):   313628 kB
Active(file):     240936 kB
Inactive(file):   218784 kB
Unevictable:          32 kB
Mlocked:              32 kB
SwapTotal:       1964028 kB
SwapFree:        1961148 kB
Dirty:                12 kB
Writeback:             0 kB
AnonPages:        980676 kB
Mapped:           257964 kB
Shmem:              9320 kB
Slab:              91196 kB
SReclaimable:      64028 kB
SUnreclaim:        27168 kB
KernelStack:        3536 kB
PageTables:        29196 kB
NFS_Unstable:          0 kB
Bounce:                0 kB
WritebackTmp:          0 kB
CommitLimit:     2924360 kB
Committed_AS:    4027800 kB
VmallocTotal:   34359738367 kB
VmallocUsed:      374344 kB
VmallocChunk:   34359355508 kB
HardwareCorrupted:     0 kB
AnonHugePages:    374784 kB
HugePages_Total:       0
HugePages_Free:        0
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
DirectMap4k:      263872 kB
DirectMap2M:     1701888 kB

____________________________________________

*** /proc/modules
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.281253119 +0200 /proc/modules
rfcomm 69160 0 - Live 0xffffffffa0e02000
bnep 19624 2 - Live 0xffffffffa023b000
bluetooth 391196 10 rfcomm,bnep, Live 0xffffffffa0da1000
snd_hda_codec_realtek 61438 1 - Live 0xffffffffa0d79000
snd_hda_intel 52355 5 - Live 0xffffffffa0d8c000
snd_hda_codec 192906 2 snd_hda_codec_realtek,snd_hda_intel, Live 0xffffffffa0d48000
snd_usb_audio 153525 1 - Live 0xffffffffa0d13000
snd_usbmidi_lib 29215 1 snd_usb_audio, Live 0xffffffffa01fe000
snd_hwdep 13602 2 snd_hda_codec,snd_usb_audio, Live 0xffffffffa0154000
snd_seq_midi 13324 0 - Live 0xffffffffa014a000
snd_seq_midi_event 14899 1 snd_seq_midi, Live 0xffffffffa014f000
snd_rawmidi 30144 2 snd_usbmidi_lib,snd_seq_midi, Live 0xffffffffa0141000
kvm_amd 59987 0 - Live 0xffffffffa01ee000
nvidia 11334886 40 - Live 0xffffffffa0242000 (POF)
snd_seq 61560 2 snd_seq_midi,snd_seq_midi_event, Live 0xffffffffa022a000
snd_pcm 102099 4 snd_hda_intel,snd_hda_codec,snd_usb_audio, Live 0xffffffffa0210000
kvm 451511 1 kvm_amd, Live 0xffffffffa017e000
uvcvideo 80885 0 - Live 0xffffffffa0169000
videobuf2_vmalloc 13216 1 uvcvideo, Live 0xffffffffa00f9000
snd_seq_device 14497 3 snd_seq_midi,snd_rawmidi,snd_seq, Live 0xffffffffa0160000
videobuf2_memops 13362 1 videobuf2_vmalloc, Live 0xffffffffa015b000
videobuf2_core 40664 1 uvcvideo, Live 0xffffffffa0136000
videodev 134688 2 uvcvideo,videobuf2_core, Live 0xffffffffa0114000
serio_raw 13462 0 - Live 0xffffffffa00cd000
snd_page_alloc 18710 2 snd_hda_intel,snd_pcm, Live 0xffffffffa010a000
snd_timer 29482 2 snd_seq,snd_pcm, Live 0xffffffffa0101000
edac_core 62291 0 - Live 0xffffffffa00e8000
edac_mce_amd 22617 0 - Live 0xffffffffa00c6000
k8temp 12978 0 - Live 0xffffffffa00c1000
snd 69238 23 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_usb_audio,snd_usbmidi_lib,snd_hwdep,snd_seq_midi,snd_rawmidi,snd_seq,snd_pcm,snd_seq_device,snd_timer, Live 0xffffffffa00d6000
parport_pc 32701 1 - Live 0xffffffffa00b8000
soundcore 12680 1 snd, Live 0xffffffffa002a000
mac_hid 13205 0 - Live 0xffffffffa00b0000
i2c_nforce2 13221 0 - Live 0xffffffffa008f000
ppdev 17671 0 - Live 0xffffffffa001c000
lp 17759 0 - Live 0xffffffffa0034000
parport 42348 3 parport_pc,ppdev,lp, Live 0xffffffffa00a4000
hid_generic 12548 0 - Live 0xffffffffa002f000
usbhid 52570 0 - Live 0xffffffffa0096000
hid 106148 2 hid_generic,usbhid, Live 0xffffffffa0074000
pata_acpi 13038 0 - Live 0xffffffffa004e000
psmouse 106678 0 - Live 0xffffffffa0055000
floppy 69418 0 - Live 0xffffffffa003c000
sata_nv 27745 2 - Live 0xffffffffa0022000
forcedeth 67509 0 - Live 0xffffffffa000a000
pata_amd 18225 0 - Live 0xffffffffa0000000

____________________________________________

*** /proc/version
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.293252968 +0200 /proc/version
Linux version 3.13.0-34-generic (buildd@allspice) (gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) ) #60-Ubuntu SMP Wed Aug 13 15:45:27 UTC 2014

____________________________________________

*** /proc/pci does not exist

____________________________________________

*** /proc/iomem
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.309252767 +0200 /proc/iomem
00000000-00000fff : reserved
00001000-0009fbff : System RAM
0009fc00-0009ffff : reserved
000a0000-000bffff : PCI Bus #00
000c0000-000cebff : Video ROM
000d0000-000d3fff : pnp 00:06
000d4000-000d7fff : pnp 00:06
000de000-000dffff : pnp 00:06
000e8000-000fffff : reserved
  000f0000-000fffff : System ROM
00100000-77faffff : System RAM
  01000000-01730ef3 : Kernel code
  01730ef4-01d1db3f : Kernel data
  01e76000-01fddfff : Kernel bss
77fb0000-77fbffff : ACPI Tables
77fc0000-77feffff : ACPI Non-volatile Storage
77ff0000-77ffffff : reserved
80000000-fcffffffff : PCI Bus #00
  c0000000-cfffffff : 0000:00:0d.0
  dd000000-ddffffff : 0000:00:0d.0
  de000000-deffffff : 0000:00:0d.0
    de000000-deffffff : nvidia
  dffc0000-dffdffff : 0000:00:0d.0
  dfff7000-dfff7fff : 0000:00:08.1
    dfff7000-dfff7fff : sata_nv
  dfff8000-dfffbfff : 0000:00:05.0
    dfff8000-dfffbfff : ICH HD audio
  dfffc000-dfffcfff : 0000:00:08.0
    dfffc000-dfffcfff : sata_nv
  dfffd000-dfffdfff : 0000:00:07.0
    dfffd000-dfffdfff : forcedeth
  dfffec00-dfffecff : 0000:00:02.1
    dfffec00-dfffecff : ehci_hcd
  dffff000-dfffffff : 0000:00:02.0
    dffff000-dfffffff : ohci_hcd
  e0000000-efffffff : PCI MMCONFIG 0000 [bus 00-ff]
    e0000000-efffffff : pnp 00:0c
  fec00000-fec00fff : reserved
    fec00000-fec003ff : IOAPIC 0
  fee00000-feefffff : reserved
    fee00000-fee00fff : Local APIC
      fee00000-fee00fff : pnp 00:07
    fee01000-feefffff : pnp 00:06
  fefe0000-fefe01ff : pnp 00:06
  fefe1000-fefe1fff : pnp 00:06
  ff380000-ffffffff : reserved
    ff380000-ffffffff : pnp 00:0d

____________________________________________

*** /proc/mtrr
*** ls: -rw-r--r-- 1 root root 0 2014-08-15 09:15:12.879742182 +0200 /proc/mtrr
reg00: base=0x000000000 (    0MB), size= 2048MB, count=1: write-back

____________________________________________

*** /proc/driver/nvidia/version
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.333252465 +0200 /proc/driver/nvidia/version
NVRM version: NVIDIA UNIX x86_64 Kernel Module  304.117  Tue Nov 26 21:25:36 PST 2013
GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1) 

____________________________________________

*** /proc/driver/nvidia/gpus/0/information
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.345252314 +0200 /proc/driver/nvidia/gpus/0/information
Model: 		 GeForce 6150SE nForce 430
IRQ:   		 22
GPU UUID: 	 N/A
Video BIOS: 	 05.61.32.22.03
Bus Type: 	 PCI
DMA Size: 	 39 bits
DMA Mask: 	 0x7fffffffff
Bus Location: 	 0000:00.0d.0

____________________________________________

*** /proc/driver/nvidia/gpus/0/registry
*** ls: -rw-r--r-- 1 root root 0 2014-08-15 10:05:03.357252163 +0200 /proc/driver/nvidia/gpus/0/registry
Binary: ""

____________________________________________

*** /proc/driver/nvidia/warnings/README
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.377251912 +0200 /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/params
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.385251811 +0200 /proc/driver/nvidia/params
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
InitializeSystemMemoryAllocations: 1
UseVBios: 1
RMEdgeIntrCheck: 1
UsePageAttributeTable: 4294967295
EnableMSI: 0
MapRegistersEarly: 0
RegisterForACPIEvents: 1
RegistryDwords: ""
RmMsg: ""

____________________________________________

*** /proc/driver/nvidia/registry
*** ls: -rw-r--r-- 1 root root 0 2014-08-15 10:05:03.393251711 +0200 /proc/driver/nvidia/registry
Binary: ""

____________________________________________

*** /proc/asound/cards
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.405251560 +0200 /proc/asound/cards
 0 [NVidia         ]: HDA-Intel - HDA NVidia
                      HDA NVidia at 0xdfff8000 irq 21
 1 [VX5000         ]: USB-Audio - Microsoft LifeCam VX-5000
                      Microsoft Microsoft LifeCam VX-5000 at usb-0000:00:02.1-2, high speed

____________________________________________

*** /proc/asound/pcm
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.413251459 +0200 /proc/asound/pcm
00-00: ALC888 Analog : ALC888 Analog : playback 1 : capture 1
00-01: ALC888 Digital : ALC888 Digital : playback 1
00-02: ALC888 Alt Analog : ALC888 Alt Analog : capture 1
01-00: USB Audio : USB Audio : capture 1

____________________________________________

*** /proc/asound/modules
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.421251359 +0200 /proc/asound/modules
 0 snd_hda_intel
 1 snd_usb_audio

____________________________________________

*** /proc/asound/devices
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.433251208 +0200 /proc/asound/devices
  1:        : sequencer
  2: [ 1- 0]: digital audio capture
  3: [ 1]   : control
  4: [ 0- 2]: digital audio capture
  5: [ 0- 1]: digital audio playback
  6: [ 0- 0]: digital audio playback
  7: [ 0- 0]: digital audio capture
  8: [ 0- 0]: hardware dependent
  9: [ 0]   : control
 33:        : timer

____________________________________________

*** /proc/asound/version
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.441251107 +0200 /proc/asound/version
Advanced Linux Sound Architecture Driver Version k3.13.0-34-generic.

____________________________________________

*** /proc/asound/timers
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.453250956 +0200 /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-1-0: PCM playback 0-1-0 : SLAVE
P0-2-1: PCM capture 0-2-1 : SLAVE
P1-0-1: PCM capture 1-0-1 : SLAVE

____________________________________________

*** /proc/asound/hwdep
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.461250856 +0200 /proc/asound/hwdep
00-00: HDA Codec 0

____________________________________________

*** /proc/asound/card0/codec#0
*** ls: -r--r--r-- 1 root root 0 2014-08-15 10:05:03.469250755 +0200 /proc/asound/card0/codec#0
Codec: Realtek ALC888
Address: 0
AFG Function Id: 0x1 (unsol 1)
Vendor Id: 0x10ec0888
Subsystem Id: 0x18491e01
Revision Id: 0x100001
No Modem Function Group found
Default PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Default Amp-In caps: N/A
Default Amp-Out caps: N/A
State of AFG node 0x01:
  Power states:  D0 D1 D2 D3
  Power: setting=D0, actual=D0
GPIO: io=3, o=0, i=0, unsolicited=1, wake=0
  IO[0]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
  IO[1]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
  IO[2]: enable=0, dir=0, wake=0, sticky=0, data=0, unsol=0
Node 0x02 [Audio Output] wcaps 0x11: Stereo
  Device: name="ALC888 Analog", type="Audio", device=0
  Converter: stream=8, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Node 0x03 [Audio Output] wcaps 0x11: Stereo
  Converter: stream=8, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Node 0x04 [Audio Output] wcaps 0x11: Stereo
  Converter: stream=8, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Node 0x05 [Audio Output] wcaps 0x11: Stereo
  Converter: stream=8, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Node 0x06 [Audio Output] wcaps 0x211: 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="ALC888 Digital", type="SPDIF", device=1
  Converter: stream=8, channel=0
  Digital:
  Digital category: 0x0
  IEC Coding Type: 0x0
  PCM:
    rates [0x5e0]: 44100 48000 88200 96000 192000
    bits [0x1e]: 16 20 24 32
    formats [0x1]: PCM
Node 0x07 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x08 [Audio Input] wcaps 0x10011b: 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="ALC888 Analog", type="Audio", device=0
  Amp-In caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x13 0x13]
  Converter: stream=4, channel=0
  SDI-Select: 0
  PCM:
    rates [0x160]: 44100 48000 96000
    bits [0x6]: 16 20
    formats [0x1]: PCM
  Connection: 1
     0x23
Node 0x09 [Audio Input] wcaps 0x10011b: 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
  Device: name="ALC888 Alt Analog", type="Audio", device=2
  Amp-In caps: ofs=0x0b, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x80 0x80]
  Converter: stream=0, channel=0
  SDI-Select: 0
  PCM:
    rates [0x160]: 44100 48000 96000
    bits [0x6]: 16 20
    formats [0x1]: PCM
  Connection: 1
     0x22
Node 0x0a [Audio Input] wcaps 0x100391: Stereo Digital
  Converter: stream=0, channel=0
  SDI-Select: 0
  Digital:
  Digital category: 0x0
  IEC Coding Type: 0x0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0x1e]: 16 20 24 32
    formats [0x1]: PCM
  Unsolicited: tag=00, enabled=0
  Connection: 1
     0x1f
Node 0x0b [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
  Control: name="Mic Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Mic Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Line Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=2, ofs=0
  Control: name="Line Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=2, ofs=0
  Control: name="CD Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=4, ofs=0
  Control: name="CD Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=4, ofs=0
  Control: name="Beep Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=5, ofs=0
  Control: name="Beep Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=5, ofs=0
  Amp-In caps: ofs=0x17, nsteps=0x1f, stepsize=0x05, mute=1
  Amp-In vals:  [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80]
  Connection: 10
     0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x17
Node 0x0c [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Control: name="Front Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x00 0x00]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x12 0x12]
  Connection: 2
     0x02 0x0b
Node 0x0d [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Control: name="Surround Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x00 0x00]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x12 0x12]
  Connection: 2
     0x03 0x0b
Node 0x0e [Audio Mixer] wcaps 0x20010f: Stereo Amp-In 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-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x00 0x00]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x12 0x12]
  Connection: 2
     0x04 0x0b
Node 0x0f [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Control: name="Side Playback Volume", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x00 0x00]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x12 0x12]
  Connection: 2
     0x05 0x0b
Node 0x10 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x11 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x12 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x13 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x14 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Control: name="Front Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Control: name="Line Out Front Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0000003e: IN OUT HP Detect Trigger
  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
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x15 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Control: name="Surround Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Control: name="Line Out Surround Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x0000003e: IN OUT HP Detect Trigger
  Pin Default 0x01011012: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0x1, Sequence = 0x2
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=05, enabled=1
  Connection: 5
     0x0c 0x0d* 0x0e 0x0f 0x26
Node 0x16 [Pin Complex] wcaps 0x40018f: Stereo Amp-In 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
  Control: name="Line Out CLFE Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x00000036: IN OUT Detect Trigger
  Pin Default 0x01016011: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Orange
    DefAssociation = 0x1, Sequence = 0x1
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=06, enabled=1
  Connection: 5
     0x0c 0x0d 0x0e* 0x0f 0x26
Node 0x17 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Control: name="Side Playback Switch", index=0, device=0
    ControlAmp: chs=3, dir=Out, idx=0, ofs=0
  Control: name="Line Out Side Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x00 0x00]
  Pincap 0x00000036: IN OUT Detect Trigger
  Pin Default 0x01012014: [Jack] Line Out at Ext Rear
    Conn = 1/8, Color = Grey
    DefAssociation = 0x1, Sequence = 0x4
  Pin-ctls: 0x40: OUT
  Unsolicited: tag=07, enabled=1
  Connection: 5
     0x0c 0x0d 0x0e 0x0f* 0x26
Node 0x18 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Control: name="Mic Boost Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Mic Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x01a19830: [Jack] Mic at Ext Rear
    Conn = 1/8, Color = Pink
    DefAssociation = 0x3, Sequence = 0x0
  Pin-ctls: 0x21: IN VREF_50
  Unsolicited: tag=01, enabled=1
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x19 [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN VREF_HIZ
  Unsolicited: tag=00, enabled=0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x1a [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Control: name="Line Boost Volume", index=0, device=0
    ControlAmp: chs=3, dir=In, idx=0, ofs=0
  Control: name="Line Jack", index=0, device=0
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x01813031: [Jack] Line In at Ext Rear
    Conn = 1/8, Color = Blue
    DefAssociation = 0x3, Sequence = 0x1
  Pin-ctls: 0x20: IN VREF_HIZ
  Unsolicited: tag=02, enabled=1
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x1b [Pin Complex] wcaps 0x40018f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x03, stepsize=0x27, mute=0
  Amp-In vals:  [0x00 0x00]
  Amp-Out caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-Out vals:  [0x80 0x80]
  Pincap 0x0000373e: IN OUT HP Detect Trigger
    Vref caps: HIZ 50 GRD 80 100
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN VREF_HIZ
  Unsolicited: tag=00, enabled=0
  Connection: 5
     0x0c* 0x0d 0x0e 0x0f 0x26
Node 0x1c [Pin Complex] wcaps 0x400001: Stereo
  Control: name="CD Phantom Jack", index=0, device=0
  Pincap 0x00000020: IN
  Pin Default 0x9933013f: [Fixed] CD at Int ATAPI
    Conn = ATAPI, Color = Unknown
    DefAssociation = 0x3, Sequence = 0xf
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
Node 0x1d [Pin Complex] wcaps 0x400000: Mono
  Pincap 0x00000020: IN
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
Node 0x1e [Pin Complex] wcaps 0x400300: Mono Digital
  Control: name="SPDIF Phantom Jack", index=0, device=0
  Pincap 0x00000010: OUT
  Pin Default 0xc144e120: [Both] SPDIF Out at Ext Rear
    Conn = RCA, Color = White
    DefAssociation = 0x2, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x40: OUT
  Connection: 1
     0x06
Node 0x1f [Pin Complex] wcaps 0x400200: Mono Digital
  Pincap 0x00000020: IN
  Pin Default 0x411111f0: [N/A] Speaker at Ext Rear
    Conn = 1/8, Color = Black
    DefAssociation = 0xf, Sequence = 0x0
    Misc = NO_PRESENCE
  Pin-ctls: 0x20: IN
Node 0x20 [Vendor Defined Widget] wcaps 0xf00040: Mono
  Processing caps: benign=0, ncoeff=17
Node 0x21 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x22 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80]
  Connection: 11
     0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x17 0x0b
Node 0x23 [Audio Mixer] wcaps 0x20010b: Stereo Amp-In
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80]
  Connection: 11
     0x18 0x19 0x1a 0x1b 0x1c 0x1d 0x14 0x15 0x16 0x17 0x0b
Node 0x24 [Vendor Defined Widget] wcaps 0xf00000: Mono
Node 0x25 [Audio Output] wcaps 0x11: Stereo
  Converter: stream=0, channel=0
  PCM:
    rates [0x560]: 44100 48000 96000 192000
    bits [0xe]: 16 20 24
    formats [0x1]: PCM
Node 0x26 [Audio Mixer] wcaps 0x20010f: Stereo Amp-In Amp-Out
  Amp-In caps: ofs=0x00, nsteps=0x00, stepsize=0x00, mute=1
  Amp-In vals:  [0x00 0x00] [0x80 0x80]
  Amp-Out caps: ofs=0x1f, nsteps=0x1f, stepsize=0x05, mute=0
  Amp-Out vals:  [0x00 0x00]
  Connection: 2
     0x25 0x0b

____________________________________________

/usr/bin/nvidia-smi -q


==============NVSMI LOG==============

Timestamp                       : Fri Aug 15 10:05:06 2014
Driver Version                  : 304.117

Attached GPUs                   : 1
GPU 0000:00:0D.0
    Product Name                : GeForce 6150SE nForce 430
    Display Mode                : N/A
    Persistence Mode            : N/A
    Driver Model
        Current                 : N/A
        Pending                 : N/A
    Serial Number               : N/A
    GPU UUID                    : N/A
    VBIOS Version               : 05.61.32.22.03
    Inforom Version
        Image Version           : N/A
        OEM Object              : N/A
        ECC Object              : N/A
        Power Management Object : N/A
    GPU Operation Mode
        Current                 : N/A
        Pending                 : N/A
    PCI
        Bus                     : 0x00
        Device                  : 0x0D
        Domain                  : 0x0000
        Device Id               : 0x03D010DE
        Bus Id                  : 0000:00:0D.0
        Sub System Id           : 0x03D01849
        GPU Link Info
            PCIe Generation
                Max             : N/A
                Current         : N/A
            Link Width
                Max             : N/A
                Current         : N/A
    Fan Speed                   : N/A
    Performance State           : N/A
    Clocks Throttle Reasons     : N/A
    Memory Usage
        Total                   : 126 MB
        Used                    : 89 MB
        Free                    : 37 MB
    Compute Mode                : N/A
    Utilization
        Gpu                     : N/A
        Memory                  : N/A
    Ecc Mode
        Current                 : N/A
        Pending                 : N/A
    ECC Errors
        Volatile
            Single Bit            
                Device Memory   : N/A
                Register File   : N/A
                L1 Cache        : N/A
                L2 Cache        : N/A
                Texture Memory  : N/A
                Total           : N/A
            Double Bit            
                Device Memory   : N/A
                Register File   : N/A
                L1 Cache        : N/A
                L2 Cache        : N/A
                Texture Memory  : N/A
                Total           : N/A
        Aggregate
            Single Bit            
                Device Memory   : N/A
                Register File   : N/A
                L1 Cache        : N/A
                L2 Cache        : N/A
                Texture Memory  : N/A
                Total           : N/A
            Double Bit            
                Device Memory   : N/A
                Register File   : N/A
                L1 Cache        : N/A
                L2 Cache        : N/A
                Texture Memory  : N/A
                Total           : N/A
    Temperature
        Gpu                     : N/A
    Power Readings
        Power Management        : N/A
        Power Draw              : N/A
        Power Limit             : N/A
        Default Power Limit     : N/A
        Min Power Limit         : N/A
        Max Power Limit         : N/A
    Clocks
        Graphics                : N/A
        SM                      : N/A
        Memory                  : N/A
    Applications Clocks
        Graphics                : N/A
        Memory                  : N/A
    Max Clocks
        Graphics                : N/A
        SM                      : N/A
        Memory                  : N/A
    Compute Processes           : N/A


/usr/bin/nvidia-smi -q -u


==============NVSMI LOG==============

Timestamp                       : Fri Aug 15 10:05:06 2014
Driver Version                  : 304.117

HIC Info                        : N/A
Attached Units                  : 0


____________________________________________

Skipping nvidia-debugdump output (nvidia-debugdump not found)

____________________________________________

End of NVIDIA bug report log file.