File: Xwindow.raw.xml

package info (click to toggle)
debian-reference 2.24
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 20,088 kB
  • ctags: 35
  • sloc: xml: 70,510; sh: 616; makefile: 352; perl: 221; sed: 3
file content (2535 lines) | stat: -rw-r--r-- 98,330 bytes parent folder | download
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
<?xml version="1.0"?>
<article>
  <articleinfo>
    <title>DebianReference/Xwindow</title>
  </articleinfo>
  <para/>
  <section>
    <title>Do not use Edit(GUI) button.</title>
    <para> </para>
    <para>Copyright 2007, 2008  Osamu Aoki GPL, (Please agree to GPL, GPL2, and any version of GPL which is compatible with DSFG if you update any part of wiki page) </para>
    <para>Generated HTML is at "<ulink url="http://people.debian.org/~osamu/pub/getwiki/html/ch08.en.html">Debian Reference: Chapter 8. The X window system</ulink>". </para>
    <para>I welcome your contributions to update this wiki page. You must follow these rules: </para>
    <itemizedlist>
      <listitem>
        <para>Do not use Edit(GUI) button of <ulink url="/MoinMoin">MoinMoin</ulink>. </para>
      </listitem>
      <listitem>You can update anytime for: <itemizedlist><listitem>grammar errors </listitem><listitem>spelling errors </listitem><listitem>moved URL location </listitem><listitem>package name transition adjustment (emacs23 etc.) </listitem><listitem>clearly broken script. </listitem></itemizedlist></listitem>
      <listitem>Before updating this wiki content: <itemizedlist><listitem><para>Read "<ulink url="http://wiki.debian.org/DebianReference/Test">Guide for contributing to Debian Reference</ulink>". </para></listitem></itemizedlist></listitem>
    </itemizedlist>
    <para/>
  </section>
  <section>
    <title>The X window system</title>
    <para>The <ulink url="http://en.wikipedia.org/wiki/X_Window_System">X window system</ulink> on the Debian system is based on the source from <ulink url="http://www.x.org/">X.Org</ulink>. As of January 2009, they are <ulink url="/X11R7">X11R7</ulink>.1(etch), <ulink url="/X11R7">X11R7</ulink>.3(lenny) and <ulink url="/X11R7">X11R7</ulink>.3(sid).   </para>
    <para/>
    <section>
      <title>Key packages</title>
      <para>There are a few (meta)packages provided to ease installation. </para>
      <table>
        <caption/>
        <tgroup cols="4">
          <colspec colname="xxx1"/>
          <colspec colname="xxx2"/>
          <colspec colname="xxx3"/>
          <colspec colname="xxx4"/>
          <tbody>
            <row>
              <entry>
                <para> List of key (meta)packages for X window. </para>
              </entry>
              <entry>
                <para> 1 </para>
              </entry>
              <entry>
                <para> 2 </para>
              </entry>
              <entry>
                <para> 3 </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">(meta)package</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">popcon</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">size</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">description</emphasis>
                </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xorg</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This metapackage provides the X libraries, an X server, a set of fonts, and a group of basic X clients and utilities. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xserver-xorg</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package provides the full suits of the X server and its configuration. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xbase-clients</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package provides a miscellaneous assortment of the X clients. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>x11-common</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package contains the filesystem infrastructure for the X window system. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xorg-docs</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package contains miscellaneous documentation for the X.Org software suite. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xspecs</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package contains X protocol, extension, and library technical specifications. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>menu</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package generates the Debian menu for all menu-aware applications. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>menu-xdg</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package converts the Debian menu structure to the <ulink url="http://en.wikipedia.org/wiki/Freedesktop.org">freedesktop.org</ulink> xdg menu structure. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xdg-utils</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> This package provides utilities to integrate desktop environment provided by the <ulink url="http://en.wikipedia.org/wiki/Freedesktop.org">freedesktop.org</ulink>. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>gnome-desktop-environment</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> metapackage for the stadard <ulink url="http://en.wikipedia.org/wiki/GNOME">GNOME</ulink> desktop environment. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>kde-core</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> metapackage for the core <ulink url="http://en.wikipedia.org/wiki/KDE">KDE</ulink> desktop environment. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xfce4</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> metapackage for the <ulink url="http://en.wikipedia.org/wiki/Xfce">Xfce</ulink> lightweight desktop environment. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>lxde-core</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> metapackage for the <ulink url="http://en.wikipedia.org/wiki/LXDE">LXDE</ulink> lightweight desktop environment. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>fluxbox</code>
                </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para> - </para>
              </entry>
              <entry>
                <para><ulink url="http://en.wikipedia.org/wiki/Fluxbox">Fluxbox</ulink>: package for highly configurable and low resource <ulink url="http://en.wikipedia.org/wiki/X_window_manager">X window manager</ulink>. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
      <para>For the basics of X, refer to <code>X</code>(7), <ulink url="http://www.tldp.org/HOWTO/XWindow-User-HOWTO.html">the LDP XWindow-User-HOWTO</ulink>.   </para>
      <para/>
    </section>
    <section>
      <title>Setting up desktop environment</title>
      <para>A <ulink url="http://en.wikipedia.org/wiki/Desktop_environment">desktop environment</ulink> is usually a combination of a <ulink url="http://en.wikipedia.org/wiki/X_window_manager">X window manager</ulink>, a file manager, and a suite of compatible utility programs. </para>
      <para>You can setup a full <ulink url="http://en.wikipedia.org/wiki/Desktop_environment">desktop environment</ulink> such as <ulink url="http://en.wikipedia.org/wiki/GNOME">GNOME</ulink>, <ulink url="http://en.wikipedia.org/wiki/KDE">KDE</ulink>, <ulink url="http://en.wikipedia.org/wiki/Xfce">Xfce</ulink>, or <ulink url="http://en.wikipedia.org/wiki/LXDE">LXDE</ulink>, from the <code>aptitude</code> under the task menu. </para>
      <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> Task menu may be out of sync with the latest package transition state under Debian <code>unstable</code>/<code>testing</code> environment. In such situation, you need to deselect some (meta)packages listed under <code>aptitude</code>(8) task menu to avoid package conflicts.  When deselecting (meta)packages, you must select certain packages providing their dependencies if you need to keep them. </para>
      <para>You may alternatively setup a simple environment manually just with a <ulink url="http://en.wikipedia.org/wiki/X_window_manager">X window manager</ulink> such as <ulink url="http://en.wikipedia.org/wiki/Fluxbox">Fluxbox</ulink>. </para>
      <para>See <ulink url="http://www.xwinman.org">Window Managers for X</ulink> for the guide to the X window manager and the desktop environment. </para>
      <para/>
      <section>
        <title>Debian menu</title>
        <para><ulink url="http://www.debian.org/doc/packaging-manuals/menu.html/">Debian menu system</ulink> provides a general interface for both text- and X-oriented programs with the <code>update-menus</code>(1) command from the <code>menu</code> package.  Each package installs its menu data in the <code>/usr/share/menu/</code> directory. See <code>/usr/share/menu/README</code>. </para>
        <para/>
      </section>
      <section>
        <title>Freedesktop.org menu</title>
        <para>Each package which is compliant to Freedesktop.org's xdg menu system installs its menu data provided by "<code>*.desktop</code>" under the <code>/usr/share/applications/</code> directory. Modern desktop environments which are compliant to Freedesktop.org standard use these data to generate their menu using the <code>xdg-utils</code> package.  See <code>/usr/share/doc/xdg-utils/README</code>. </para>
        <para/>
      </section>
      <section>
        <title>Debian menu under GNOME desktop environment</title>
        <para>In order to obtain access to the traditional Debian menu under GNOME desktop environment, you must install the <code>menu-xdg</code> package, click "System" -&gt; "Preference" -&gt; "Main Menu", and check the box for "Debian". </para>
        <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> You may need to do the similar for other modern desktop environments which are compliant to Freedesktop.org standard. </para>
        <para/>
      </section>
    </section>
    <section>
      <title>The server/client relationship</title>
      <para>The X window system is activated as a combination of the server and client programs. The meaning for the words <emphasis role="strong">server</emphasis> and <emphasis role="strong">client</emphasis> with respect to the words <emphasis role="strong">local</emphasis> and <emphasis role="strong">remote</emphasis> requires attention here: </para>
      <table>
        <caption/>
        <tgroup cols="2">
          <colspec colname="xxx1"/>
          <colspec colname="xxx2"/>
          <tbody>
            <row>
              <entry>
                <para> List of server/client terminology. </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">type</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">description</emphasis>
                </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">X server</emphasis>
                </para>
              </entry>
              <entry>
                <para> a program run on a <emphasis role="strong">local host</emphasis> connected to the user's display and input devices. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">X client</emphasis>
                </para>
              </entry>
              <entry>
                <para> a program run on a <emphasis role="strong">remote host</emphasis> that processes data and talks to the X server. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">application server</emphasis>
                </para>
              </entry>
              <entry>
                <para> a program run on a <emphasis role="strong">remote host</emphasis> that processes data and talks to the clients. </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">application client</emphasis>
                </para>
              </entry>
              <entry>
                <para> a program run on a <emphasis role="strong">local host</emphasis> connected to the user's display and input devices. </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
      <para/>
    </section>
    <section>
      <title>The X server</title>
      <para>See <code>xorg</code>(1) for X server information. </para>
      <para/>
      <section>
        <title>The (re)configuration of the X server</title>
        <para>To (re)configure an X server, </para>
        <para/>
        <screen><![CDATA[# dpkg-reconfigure --priority=low x11-common
# dpkg-reconfigure --priority=low xserver-xorg
]]></screen>
        <para>will generate a new <code>/etc/X11/xorg.conf</code> file using <code>dexconf</code>(1).  </para>
        <para>If you have manually edited this <code>/etc/X11/xorg.conf</code> file but would like it to be automatically updated again, run the following command: </para>
        <screen><![CDATA[# sudo dpkg-reconfigure -phigh xserver-xorg                               
]]></screen>
        <para>Please check your X configuration  with respect to the specification of your monitor carefully.  For the large high resolution CRT monitor, it is a good idea to set the refresh rate as high as your monitor can handle (85 Hz is great, 75 Hz is OK) to reduce flicker.  For the LCD monitor, slower standard refresh rate (60Hz) is usually fine due to its slow response. </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/idea.png" depth="15"/></imageobject><textobject><phrase>(!)</phrase></textobject></inlinemediaobject> Be careful not to use too high refresh rate which may cause fatal hardware failure of your monitor system. </para>
        <para/>
      </section>
      <section>
        <title>The connection methods to the X server</title>
        <para>There are several ways of getting the "X server" (<emphasis role="strong">display</emphasis> side) to accept connections from an "X client" (<emphasis role="strong">application</emphasis> side): </para>
        <table>
          <caption/>
          <tgroup cols="6">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <colspec colname="xxx5"/>
            <colspec colname="xxx6"/>
            <tbody>
              <row>
                <entry>
                  <para> List of connection methods to the X server. </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> 4 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">method</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">user</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">encryption</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">pertinent use</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para><code>xhost</code> command </para>
                </entry>
                <entry>
                  <para>
                    <code>xbase-clients</code>
                  </para>
                </entry>
                <entry>
                  <para> 25829 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> unchecked </para>
                </entry>
                <entry>
                  <para> no </para>
                </entry>
                <entry>
                  <para> deprecated </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para><code>xauth</code> command </para>
                </entry>
                <entry>
                  <para>
                    <code>xbase-clients</code>
                  </para>
                </entry>
                <entry>
                  <para> 25829 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> no </para>
                </entry>
                <entry>
                  <para> for local connection via pipe </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para><code>ssh -X</code> command </para>
                </entry>
                <entry>
                  <para>
                    <code>openssh-client</code>
                  </para>
                </entry>
                <entry>
                  <para> 29037 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> yes </para>
                </entry>
                <entry>
                  <para> for remote network connection </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> Gnome display manager </para>
                </entry>
                <entry>
                  <para>
                    <code>gdm</code>
                  </para>
                </entry>
                <entry>
                  <para> 17331 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> no(XDMCP) </para>
                </entry>
                <entry>
                  <para> for local connection via pipe </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> KDE display manager </para>
                </entry>
                <entry>
                  <para>
                    <code>kdm</code>
                  </para>
                </entry>
                <entry>
                  <para> 5781 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> no(XDMCP) </para>
                </entry>
                <entry>
                  <para> for local connection via pipe </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> X display manager </para>
                </entry>
                <entry>
                  <para>
                    <code>xdm</code>
                  </para>
                </entry>
                <entry>
                  <para> 645 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> no(XDMCP) </para>
                </entry>
                <entry>
                  <para> for local connection via pipe </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para><ulink url="/WindowMaker">WindowMaker</ulink> display manager </para>
                </entry>
                <entry>
                  <para>
                    <code>wdm</code>
                  </para>
                </entry>
                <entry>
                  <para> 253 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> no(XDMCP) </para>
                </entry>
                <entry>
                  <para> for local connection via pipe </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> Secure display manager </para>
                </entry>
                <entry>
                  <para>
                    <code>sdm</code>
                  </para>
                </entry>
                <entry>
                  <para> 25 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> yes </para>
                </entry>
                <entry>
                  <para> for remote SSH network connection (thin client) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> Linux Terminal Server Project display manager </para>
                </entry>
                <entry>
                  <para>
                    <code>ldm</code>
                  </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> checked </para>
                </entry>
                <entry>
                  <para> yes </para>
                </entry>
                <entry>
                  <para> for remote SSH network connection (thin client) </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/alert.png" depth="15"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject>  Do not use remote TCP/IP connection over unsecured network unless you have very good reason.  A remote TCP/IP socket connection without encryption is prone to the eavesdropping attack and is disabled by default on the Debian system.  Use <code>ssh -X</code>. </para>
        <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> You can dare to enable remote TCP/IP connection by setting <code>DisallowTCP=false</code> in <code>/etc/gdm/gdm.conf</code> and by removing <code>-nolisten</code> from lines found by "<code>find /etc/X11 -type f -print0 | xargs -0 grep nolisten</code>", if you are in the fully secured environment. </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/alert.png" depth="15"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject>  Do not use <ulink url="http://en.wikipedia.org/wiki/X_display_manager">XDMCP connection over unsecured network</ulink> either.  It sends data via UDP without encryption and prone to the eavesdropping attack. </para>
        <para/>
      </section>
    </section>
    <section>
      <title>Starting the X window system</title>
      <para>The X Window system is usually started as an X session which is the combination of an X server and connecting X clients.  For normal desktop system, both of them are executed on the workstation. </para>
      <para>To start the X Window system, </para>
      <itemizedlist>
        <listitem>
          <para><code>startx</code> command started from the command line, or  </para>
        </listitem>
        <listitem>
          <para>one of the <ulink url="http://en.wikipedia.org/wiki/X_display_manager">X display manager</ulink> daemon programs <code>*dm</code> started from the end of the start up script in <code>/etc/rc?.d/</code> directory (<code>?</code> corresponding to the runlevel) </para>
        </listitem>
      </itemizedlist>
      <para>are used to start the <ulink url="http://en.wikipedia.org/wiki/X_session_manager">X session</ulink>. (The start up script for the display manager daemons checks the content of the <code>/etc/X11/default-display-manager</code> file before actually executing themselves.) </para>
      <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> See @{@specificlocaleonlyunderxwindow@}@ for initial environment variables of the X display manager. </para>
      <para>Essentially, all these programs execute the <code>/etc/X11/Xsession</code> script.  Then the <code>/etc/X11/Xsession</code> script performs run-parts like action to execute scripts in the <code>/etc/X11/Xsession.d/</code> directory. This is essentially an execution of a program which was first found in the following order with the <code>exec</code> command: </para>
      <orderedlist numeration="arabic">
        <listitem>
          <para>The script specified as the argument of <code>/etc/X11/Xsession</code> by the X display manager, if it is defined. </para>
        </listitem>
        <listitem>
          <para>The <code>~/.xsession</code> or <code>~/.Xsession</code> script, if it is defined. </para>
        </listitem>
        <listitem>
          <para>The <code>/usr/bin/x-session-manager</code> command, if it is defined. </para>
        </listitem>
        <listitem>
          <para>The <code>/usr/bin/x-window-manager</code> command, if it is defined. </para>
        </listitem>
        <listitem>
          <para>The <code>/usr/bin/x-terminal-emulator</code> command, if it is defined. </para>
        </listitem>
      </orderedlist>
      <para>This process is affected by the content of the <code>/etc/X11/Xsession.options</code> file.  The exact programs to which these <code>usr/bin/x-*</code> commands point, are determined by the Debian alternative system and changed by <code>update-alternatives --config x-session-manager</code> etc. </para>
      <para/>
      <section>
        <title>Starting X session with gdm</title>
        <para>The <code>gdm</code> program lets you select the session type (or desktop environment: @{@settingupdesktopenvironment@}@), and language (or locale: @{@thelocale@}@) of the X session from its menu.  It keeps the selected default value in <code>~/.dmrc</code> as, e.g.: </para>
        <screen><![CDATA[[Desktop]
Session=default
Language=ja_JP.UTF-8
]]></screen>
        <para/>
      </section>
      <section>
        <title>Customizing the X session (classic method)</title>
        <para>On a system where <code>/etc/X11/Xsession.options</code> contains a line <code>allow-user-xsession</code> without preceding <code>#</code> characters, any user who defines <code>~/.xsession</code> or <code>~/.Xsession</code> will be able to customize the action of <code>/etc/X11/Xsession</code> by completely overiding the system code. The last command in the <code>~/.xsession</code> file should use form of <code>exec some-window/session-manager</code> to start your favorite X window/session managers. </para>
        <para/>
      </section>
      <section>
        <title>Customizing the X session (new method)</title>
        <para>Here are new methods to customize the X session without completely overiding the system code as above. </para>
        <itemizedlist>
          <listitem>
            <para>The display manager <code>gdm</code> can select a specific session and set it as the argument of <code>/etc/X11/Xsession</code>. </para>
          </listitem>
          <listitem>
            <para>The <code>~/.xsessionrc</code> file is executed as a part of start up process (desktop independent.) </para>
          </listitem>
          <listitem>
            <para>The <code>~/.gnomerc</code> file is executed as a part of start up process. (Gnome desktop only) </para>
          </listitem>
          <listitem>
            <para>The GUI program based session management software can use the <code>~/.gnome2/session</code> file etc.. </para>
          </listitem>
        </itemizedlist>
        <para/>
      </section>
      <section>
        <title>Connecting a remote X client via SSH</title>
        <para>The use of <code>ssh -X</code> enables a secure connection from a local X server to a remote application server. </para>
        <itemizedlist>
          <listitem>
            <para>Set <code>X11Forwarding</code> entries to <code>yes</code> in <code>/etc/ssh/sshd_config</code> of the remote host, if you want to avoid <code>-X</code> command-line option. </para>
          </listitem>
          <listitem>Start the X server on the local host. </listitem>
          <listitem>
            <para>Open an <code>xterm</code> in the local host. </para>
          </listitem>
          <listitem>
            <para>Run <code>ssh</code> to establish a connection with the remote site. </para>
            <screen><![CDATA[localname @ localhost $ ssh -q -X loginname@remotehost.domain
Password:
.....
]]></screen>
          </listitem>
          <listitem>
            <para>Run an X application command, e.g. <code>gimp</code>, on the remote site. </para>
            <screen><![CDATA[loginname @ remotehost $ gimp &
]]></screen>
          </listitem>
        </itemizedlist>
        <para>This method allows the display of the remote X client output as if it were locally connected through a local UNIX domain socket. </para>
        <para/>
      </section>
      <section>
        <title>Secure X terminal via Internet</title>
        <para>Secure X terminal via Internet, which displays remotely run entire X desktop environment, can easily achieved by using specialized package such as <code>sdm</code> and <code>ldm</code>. Your local machine becomes a secure thin client to the remote application server connected via SSH. </para>
        <para>If you want to add similar feature to your normal display manager <code>gdm</code>, create executable shell script at <code>/usr/local/bin/ssh-session</code> as: </para>
        <screen><![CDATA[#!/bin/sh -e
# Based on gdm-ssh-session in gdm source (GPL)
ZENITY=$(type -p zenity)
TARGETHOST=$($ZENITY --width=600 \
--title "Host to connect to" --entry \
--text "Enter the name of the host you want to log in to as user@host.dom:")
TARGETSESSION=$($ZENITY --width=600 --height=400 \
--title "Remote session name" --list --radiolist --text "Select one" \
--column " " --column "Session" --column "description" --print-column 2 \
TRUE "/etc/X11/Xsession" "Debian" \
FALSE "/etc/X11/xinit/Xclients" "RH variants" \
FALSE "gnome-session" "Gnome session" \
FALSE "xterm" "Safe choice" \
FALSE "rxvt" "Safe choice" \
FALSE "gnome-terminal" "Safe choice")
echo "Connecting to "$TARGETHOST" with $TARGETSESSION"
/usr/bin/ssh -A -X -T -n "$TARGETHOST" "$TARGETSESSION"
#SSH_ASKPASS=/usr/bin/ssh-askpass /usr/bin/ssh -A -X -T -n "$TARGETHOST" "$TARGETSESSION"
]]></screen>
        <para>Then add followings to <code>/etc/dm/Sessions/ssh.desktop</code>: </para>
        <screen><![CDATA[[Desktop Entry]
Encoding=UTF-8
Name=SSH
Comment=This session logs you into a remote host using ssh
Exec=/usr/local/bin/ssh-session
Type=Application
]]></screen>
        <para/>
      </section>
    </section>
    <section>
      <title>Fonts in the X window</title>
      <para>X window on the Debian system support two mechanisms for font management:  </para>
      <itemizedlist>
        <listitem>server side font management: the original core X11 font system and </listitem>
        <listitem>
          <para>client side font management: the new <ulink url="http://en.wikipedia.org/wiki/Xft">Xft</ulink> 2 font system. </para>
        </listitem>
      </itemizedlist>
      <para>The core X11 font system provides backward compatibility with older applications such as Xterm with bitmap fonts.  It is supported by installing pertinent font packages which trigger <code>defoma</code> scripts to generate required files such as "<code>fonts.dir</code>". </para>
      <para>The Xft2 font system is used by all modern applications such as ones from GNOME, KDE, <ulink url="/OpenOffice">OpenOffice</ulink>.org, etc..  It supports all fonts listed below (@{@basicfonts@}@, @{@additionalfonts@}@, and @{@cjkfonts@}@) with advanced features such as anti-aliasing.  It has no configuration mechanism itself, rather it relies upon the <ulink url="http://en.wikipedia.org/wiki/Fontconfig">fontconfig library</ulink> to configure and customize fonts as described in <code>fonts.conf</code>(5).  Actual rasterization is supported by the <ulink url="/FreeType">FreeType</ulink> 2 font engine.  These new X clients using Xft2 font system can talk to modern X server via  <ulink url="http://en.wikipedia.org/wiki/XRender">the X Rendering Extension</ulink>. </para>
      <table>
        <caption/>
        <tgroup cols="4">
          <colspec colname="xxx1"/>
          <colspec colname="xxx2"/>
          <colspec colname="xxx3"/>
          <colspec colname="xxx4"/>
          <tbody>
            <row>
              <entry>
                <para> Table of packages to support X window font systems. </para>
              </entry>
              <entry>
                <para> 1 </para>
              </entry>
              <entry>
                <para> 2 </para>
              </entry>
              <entry>
                <para> 3 </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <emphasis role="strong">package</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">popcon</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">size</emphasis>
                </para>
              </entry>
              <entry>
                <para>
                  <emphasis role="strong">description</emphasis>
                </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>xfonts-utils</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> X Window System font utility programs </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>libxft2</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> Xft: <ulink url="/FreeType">FreeType</ulink>-based font drawing library for X </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>libfreetype6</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para><ulink url="http://freetype.sourceforge.net/index.html">FreeType</ulink> 2 font engine, shared library files </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>fontconfig</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para><ulink url="http://en.wikipedia.org/wiki/Fontconfig">generic font configuration library</ulink> - support binaries </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>fontconfig-config</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> generic font configuration library - configuration </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>defoma</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> Debian Font Manager -- automatic font configuration framework </para>
              </entry>
            </row>
            <row>
              <entry>
                <para>
                  <code>x-ttcidfont-conf</code>
                </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para> </para>
              </entry>
              <entry>
                <para><ulink url="/TrueType">TrueType</ulink> configuration for X (for CJK support) </para>
              </entry>
            </row>
          </tbody>
        </tgroup>
      </table>
      <para/>
      <para>You can check actual font path for: </para>
      <itemizedlist>
        <listitem>
          <para>core X11 font path with "<code>xset q</code>" </para>
        </listitem>
        <listitem>
          <para>fontconfig font default: "<code>fc-match</code>"  </para>
        </listitem>
      </itemizedlist>
      <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> "<ulink url="http://unifont.org/iuc27/html/ICUPresentation.html">The Penguin and Unicode</ulink>" is a good overview of modern X Window system. Other documentations at <ulink url="http://unifont.org/">http://unifont.org/</ulink> should provide good information on Unicode fonts, Unicode-enabled software, internationalization, and Unicode usability issues on <ulink url="http://en.wikipedia.org/wiki/Free_and_open_source_software">free/libre/open source (FLOSS)</ulink> operating systems. </para>
      <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> You should rely on <ulink url="http://en.wikipedia.org/wiki/Fontconfig">fontconfig</ulink> infrastructure to configure fonts on the Debian system.  Debian Font Manager (<code>defoma</code>) is only useful as font installation such as <ulink url="http://en.wikipedia.org/wiki/X_logical_font_description">X logical font description (XLFD)</ulink> data. </para>
      <para/>
      <section>
        <title>Basic fonts</title>
        <para>There are 2 major types of <ulink url="http://en.wikipedia.org/wiki/Computer_font">computer fonts</ulink>: </para>
        <itemizedlist>
          <listitem>bitmap fonts (good for low resolution rasterization) </listitem>
          <listitem>outline/stroke fonts (good for high resolution rasterization) </listitem>
        </itemizedlist>
        <para>While scaling of bitmap fonts causes jugged image, scaling of outline/stroke fonts produces smooth image. </para>
        <para>Bitmap fonts on the Debian system are provided by compressed <ulink url="http://fontforge.sourceforge.net/pcf-format.html">X11 pcf bitmap font files</ulink> having their file extension "<code>.pcf.gz</code>". </para>
        <para>Outline fonts on the Debian system are provided by: </para>
        <itemizedlist>
          <listitem>
            <para><ulink url="http://en.wikipedia.org/wiki/PostScript">PostScript</ulink> Type 1 font files having their file extension "<code>.pfb</code>" (binary font file) and "<code>.afm</code>" (font metrics file). </para>
          </listitem>
          <listitem>
            <para><ulink url="http://en.wikipedia.org/wiki/TrueType">TrueType</ulink> font files having their file extension "<code>.ttf</code>". </para>
          </listitem>
        </itemizedlist>
        <table>
          <caption/>
          <tgroup cols="7">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <colspec colname="xxx5"/>
            <colspec colname="xxx6"/>
            <colspec colname="xxx7"/>
            <tbody>
              <row>
                <entry>
                  <para> Table of corresponding <ulink url="http://en.wikipedia.org/wiki/PostScript">PostScript</ulink> Type 1 fonts. </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">font package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">sans-serif font</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">serif font</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">monospace font</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">source of font</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> (<ulink url="/PostScript">PostScript</ulink>)  </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://en.wikipedia.org/wiki/Helvetica">Helvetica</ulink>
                  </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://en.wikipedia.org/wiki/Times_Roman">Times</ulink>
                  </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://en.wikipedia.org/wiki/Courier_(typeface)">Courier</ulink>
                  </para>
                </entry>
                <entry>
                  <para> Adobe </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> gsfonts </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> Nimbus Sans L  </para>
                </entry>
                <entry>
                  <para> Nimbus Roman No9 L </para>
                </entry>
                <entry>
                  <para> Nimbus Mono L </para>
                </entry>
                <entry>
                  <para><ulink url="http://en.wikipedia.org/wiki/URW">URW</ulink> (Adobe compatible size) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> gsfonts-x11 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> Nimbus Sans L  </para>
                </entry>
                <entry>
                  <para> Nimbus Roman No9 L </para>
                </entry>
                <entry>
                  <para> Nimbus Mono L </para>
                </entry>
                <entry>
                  <para> X font support with <ulink url="/PostScript">PostScript</ulink> Type 1 fonts. </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> t1-cyrillic </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> Free Helvetian </para>
                </entry>
                <entry>
                  <para> Free Times         </para>
                </entry>
                <entry>
                  <para> Free Courier  </para>
                </entry>
                <entry>
                  <para> URW extended (Adobe compatible size) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> lmodern </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> LMSans* </para>
                </entry>
                <entry>
                  <para> LMRoman* </para>
                </entry>
                <entry>
                  <para> LMTypewriter* </para>
                </entry>
                <entry>
                  <para> scalable <ulink url="/PostScript">PostScript</ulink> and <ulink url="/OpenType">OpenType</ulink> fonts based on Computer Modern (from TeX) </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <table>
          <caption/>
          <tgroup cols="7">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <colspec colname="xxx5"/>
            <colspec colname="xxx6"/>
            <colspec colname="xxx7"/>
            <tbody>
              <row>
                <entry>
                  <para> Table of corresponding <ulink url="http://en.wikipedia.org/wiki/TrueType">TrueType</ulink> fonts. </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">font package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">sans-serif font</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">serif font</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">monospace font</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">source of font</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-mscorefonts-installer </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://en.wikipedia.org/wiki/Arial">Arial</ulink>
                  </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://en.wikipedia.org/wiki/Times_Roman">Times New Roman</ulink>
                  </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://en.wikipedia.org/wiki/Courier_(typeface)">Courier New</ulink>
                  </para>
                </entry>
                <entry>
                  <para> Microsoft (Adobe compatible size) (This installs non-free data) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-liberation            </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> Liberation Sans     </para>
                </entry>
                <entry>
                  <para> Liberation Serif     </para>
                </entry>
                <entry>
                  <para> Liberation Mono          </para>
                </entry>
                <entry>
                  <para><ulink url="http://en.wikipedia.org/wiki/Liberation_fonts">Liberation Fonts project</ulink> (Microsoft compatible size) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-freefont              </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="/FreeSans">FreeSans</ulink>
                  </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="/FreeSerif">FreeSerif</ulink>
                  </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="/FreeMono">FreeMono</ulink>
                  </para>
                </entry>
                <entry>
                  <para><ulink url="http://savannah.gnu.org/projects/freefont/">GNU freefont</ulink> (Microsoft compatible size) </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-bitstream-vera        </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> Bitstream Vera Sans </para>
                </entry>
                <entry>
                  <para> Bitstream Vera Serif </para>
                </entry>
                <entry>
                  <para> Bitstream Vera Sans Mono </para>
                </entry>
                <entry>
                  <para>
                    <ulink url="http://www.gnome.org/fonts/">Bitstream, Inc.</ulink>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-dejavu                </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Sans         </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Serif         </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Sans Mono         </para>
                </entry>
                <entry>
                  <para><ulink url="http://dejavu.sourceforge.net/">http://dejavu.sourceforge.net/</ulink>, Bitstream with extended character code support </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-dejavu-core           </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Sans         </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Serif         </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Sans Mono         </para>
                </entry>
                <entry>
                  <para><ulink url="http://dejavu.sourceforge.net/">http://dejavu.sourceforge.net/</ulink> basic font style variants </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-dejavu-extra          </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Sans         </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Serif         </para>
                </entry>
                <entry>
                  <para><ulink url="/DejaVu">DejaVu</ulink> Sans Mono         </para>
                </entry>
                <entry>
                  <para><ulink url="http://dejavu.sourceforge.net/">http://dejavu.sourceforge.net/</ulink> extra font style variants </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> ttf-unifont               </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> N/A                 </para>
                </entry>
                <entry>
                  <para> N/A                  </para>
                </entry>
                <entry>
                  <para> unifont                  </para>
                </entry>
                <entry>
                  <para><ulink url="http://Unifoundry.com">http://Unifoundry.com</ulink>, GNU Unifont, with all printable character code in Unicode 5.1 Basic Multilingual Plane (BMP) </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para/>
      </section>
      <section>
        <title>Additional fonts</title>
        <para>The <code>aptitude</code> will help you find additional fonts easily:  </para>
        <itemizedlist>
          <listitem>
            <para>by the short package list under "Packages which depend on defoma" under the <code>defoma</code> package list, </para>
          </listitem>
          <listitem>
            <para>by the short package list under "Tasks" -&gt;  "Localization", </para>
          </listitem>
          <listitem>
            <para>by the filtered flat package list of font data with regex on debtag: "<code>~Gmade-of::data:font</code>", </para>
          </listitem>
          <listitem>
            <para>by the filtered flat package list of the BDF (bitmap) font packages with regex on package name: "<code>~nxfonts-</code>", or </para>
          </listitem>
          <listitem>
            <para>by the filtered flat package list of the <ulink url="/TrueType">TrueType</ulink> (outline) font packages with regex on package name: "<code>~nttf-</code>". </para>
          </listitem>
        </itemizedlist>
        <para>Since <emphasis role="strong">Free</emphasis> fonts are sometimes limited, installing or sharing some commercial <ulink url="/TrueType">TrueType</ulink> fonts is an option for a Debian users.  In order to make this process easy for the user, some convenience packages have been created: </para>
        <itemizedlist>
          <listitem>
            <para>
              <code>ttf-mathematica4.1</code>
            </para>
          </listitem>
          <listitem>
            <para>
              <code>ttf-mscorefonts-installer</code>
            </para>
          </listitem>
        </itemizedlist>
        <para>You'll have a really good selection of <ulink url="/TrueType">TrueType</ulink> fonts at the expense of contaminating your <emphasis role="strong">Free</emphasis> system with non-Free fonts. </para>
        <para/>
      </section>
      <section>
        <title>CJK fonts</title>
        <para>Here are some key points focused on CJK issues. </para>
        <table>
          <caption/>
          <tgroup cols="4">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <tbody>
              <row>
                <entry>
                  <para> Table of key words used in CJK font names to indicate font types. </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">font type</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">Japanese font name</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">Chinese font name</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">Korean font name</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> sans-serif </para>
                </entry>
                <entry>
                  <para> gothic, &#x30B4;&#x30C1;&#x30C3;&#x30AF; </para>
                </entry>
                <entry>
                  <para> hei, gothic   </para>
                </entry>
                <entry>
                  <para> dodum, gulim, gothic </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para> serif      </para>
                </entry>
                <entry>
                  <para> mincho, &#x660E;&#x671D;     </para>
                </entry>
                <entry>
                  <para> song, ming    </para>
                </entry>
                <entry>
                  <para> batang               </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para>Font name such as "VL PGothic" with "P" is a proportional font which corresponds to the fixed width "VL Gothic" font. </para>
        <para>For example, Shift_JIS code table comprises 7070 characters.  They can be grouped into: </para>
        <itemizedlist>
          <listitem>JIS X 0201 single-byte characters (191 characters), </listitem>
          <listitem>JIS X 0208 double-byte characters (6879 characters). </listitem>
        </itemizedlist>
        <para>Double-byte characters occupy double width on console terminals which uses CJK fixed width fonts.  In order to cope with such situation, <ulink url="http://www.ibiblio.org/pub/packages/ccic/software/info/HBF-1.1/">Hanzi Bitmap Font (HBF) File</ulink> with file extension "<code>.hbf</code>" may be deployed for fonts containing single-byte and double-byte characters. </para>
        <para>In order to save space for <ulink url="http://en.wikipedia.org/wiki/TrueType">TrueType</ulink> font files, <ulink url="http://en.wikipedia.org/wiki/TrueType">TrueType</ulink> font collection file with file extension "<code>.ttc</code>" may be used. </para>
        <para>I order to cover complicated code space of characters, CID keyed Type 1 <ulink url="http://en.wikipedia.org/wiki/PostScript">PostScript</ulink> font is used with CMap files starting themselves with "<code>%!PS-Adobe-3.0 Resource-CMap</code>".  This is rarely used for normal X display but used for PDF rendering etc. (see @{@xutilityapplications@}@). </para>
        <para><inlinemediaobject><imageobject><imagedata width="16" fileref="/htdocs/rightsidebar/img/icon-info.png" depth="16"/></imageobject><textobject><phrase>{i}</phrase></textobject></inlinemediaobject> The multiple <ulink url="http://en.wikipedia.org/wiki/Glyph">glyphs</ulink> are expected for some <ulink url="http://en.wikipedia.org/wiki/Unicode">Unicode</ulink> code points due to <ulink url="http://en.wikipedia.org/wiki/Han_unification">Han unification</ulink>.  One of the most annoying ones are  "U+3001 IDEOGRAPHIC COMMA" and "U+3002 IDEOGRAPHIC FULL STOP" whose character positions differ among CJK countries.  Configuring priority of Japanese centric fonts over Chinese ones using "<code>~/.fonts.conf</code>" should give peace of minds to Japanese. </para>
        <para/>
      </section>
    </section>
    <section>
      <title>X applications</title>
      <para/>
      <section>
        <title>X office applications</title>
        <para>Here is a list of basic office applications (OO is <ulink url="/OpenOffice">OpenOffice</ulink>.org): </para>
        <table>
          <caption/>
          <tgroup cols="5">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <colspec colname="xxx5"/>
            <tbody>
              <row>
                <entry>
                  <para> List of basic X office applications </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">package size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">description</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">type</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>openoffice.org-writer</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> word processor </para>
                </entry>
                <entry>
                  <para> OO </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>openoffice.org-calc</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> spreadsheet </para>
                </entry>
                <entry>
                  <para> OO </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>openoffice.org-impress</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> presentation </para>
                </entry>
                <entry>
                  <para> OO </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>openoffice.org-base</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> database management </para>
                </entry>
                <entry>
                  <para> OO </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>openoffice.org-draw</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> vector graphics editor (draw) </para>
                </entry>
                <entry>
                  <para> OO </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>openoffice.org-math</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> mathematical equation/formula editor </para>
                </entry>
                <entry>
                  <para> OO </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>abiword</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> word processor </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>gnumeric</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> spreadsheet </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>gimp</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> bitmap graphics editor (paint) </para>
                </entry>
                <entry>
                  <para> GTK </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>inkscape</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> vector graphics editor (draw) </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>dia-gnome</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> flowchart and diagram editor </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>mergeant</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> database management </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>planner</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> project management </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kword</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> word processor </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kspread</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> spreadsheet </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kpresenter</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> presentation </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kexi</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> database management </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kivio</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> flowchart and diagram editor </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>karbon</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> vector graphics editor (draw) </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>krita</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> bitmap graphics editor (paint) </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kplato</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> project management </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kchart</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> graph and chart drawing program </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kformula</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> mathematical equation/formula editor </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kugar</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> business quality report generator </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para/>
      </section>
      <section>
        <title>X utility applications</title>
        <para>Here is a list of basic utility applications which caught my eyes: </para>
        <table>
          <caption/>
          <tgroup cols="5">
            <colspec colname="xxx1"/>
            <colspec colname="xxx2"/>
            <colspec colname="xxx3"/>
            <colspec colname="xxx4"/>
            <colspec colname="xxx5"/>
            <tbody>
              <row>
                <entry>
                  <para> List of basic X utility applications </para>
                </entry>
                <entry>
                  <para> 1 </para>
                </entry>
                <entry>
                  <para> 2 </para>
                </entry>
                <entry>
                  <para> 3 </para>
                </entry>
                <entry>
                  <para> </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <emphasis role="strong">package</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">popcon</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">package size</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">description</emphasis>
                  </para>
                </entry>
                <entry>
                  <para>
                    <emphasis role="strong">type</emphasis>
                  </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>evince</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> document(pdf) viewer </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kpdf</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> document(pdf) viewer </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>okular</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> document(pdf) viewer </para>
                </entry>
                <entry>
                  <para> KDE4 </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>evolution</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> Personal information Management (groupware and email) </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kontact</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> Personal information Management (groupware and email) </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>scribus</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> desktop page layout editor </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>glabels</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> label editor </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kbarcode</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> barcode and label printing application </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>gnucash</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> personal accounting </para>
                </entry>
                <entry>
                  <para> GNOME </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>homebank</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> personal accounting </para>
                </entry>
                <entry>
                  <para> GTK </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kmymoney2</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> personal accounting </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>xsane</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> scanner frontend </para>
                </entry>
                <entry>
                  <para> GTK </para>
                </entry>
              </row>
              <row>
                <entry>
                  <para>
                    <code>kooka</code>
                  </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> - </para>
                </entry>
                <entry>
                  <para> scanner frontend </para>
                </entry>
                <entry>
                  <para> KDE </para>
                </entry>
              </row>
            </tbody>
          </tgroup>
        </table>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/attention.png" depth="15"/></imageobject><textobject><phrase>&lt;!&gt;</phrase></textobject></inlinemediaobject> The <code>poppler-data</code> package (non-free, see @{@theghostscript@}@) needs to be installed for <code>evince</code> and <code>okular</code> to display CJK PDF documents using Cmap data (@{@cjkfonts@}@). </para>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/idea.png" depth="15"/></imageobject><textobject><phrase>(!)</phrase></textobject></inlinemediaobject> Installing softwares such as <code>scribus</code> (KDE) on GNOME desktop environment are quite acceptable since corresponding functionality is not available under GNOME desktop environment.  But installing too many packages with duplicated functionalities will clutter your menu. </para>
        <para/>
      </section>
    </section>
    <section>
      <title>The X trivia</title>
      <para/>
      <section>
        <title>Keymaps and pointer button mappings in X</title>
        <para>The <code>xmodmap</code>(1) program is a utility for modifying keymaps and pointer button mappings in the X window system.  To get the <code>keycode</code>, run the <code>xev</code> program in the X and press keys.  To get the meaning of <code>keysym</code>, look into the MACRO definition in <code>/usr/include/X11/keysymdef.h</code> file.  All <code>#define</code> statements in this file are named as <code>XK_</code> prepended to <code>keysym</code> names. </para>
        <para/>
      </section>
      <section>
        <title>The classic X clients</title>
        <para>Most traditional X client programs, such as <code>xterm</code>, can be started with a set of standard command line options to specify geometry, font, and display.   </para>
        <para>They also use the X resource database to configure their appearance.  The system-wide defaults of X resources are stored in <code>/etc/X11/Xresources/*</code> and application defaults of them are stored in <code>/etc/X11/app-defaults/*</code>.  Use these settings as the starting points. </para>
        <para>The file <code>~/.Xresources</code> is used to store user resource specifications.  This file is automatically merged into the default X resources upon login.  To make changes to these settings and make them effective immediately, merge them into the database using the command: </para>
        <screen><![CDATA[$ xrdb -merge ~/.Xresources
]]></screen>
        <para>See <code>x</code>(7) and <code>xrdb</code>(1). </para>
        <para/>
      </section>
      <section>
        <title>The X terminal emulator -- xterm</title>
        <para>Learn everything about <code>xterm</code> at <ulink url="http://dickey.his.com/xterm/xterm.faq.html">http://dickey.his.com/xterm/xterm.faq.html</ulink>. </para>
        <para/>
      </section>
      <section>
        <title>Running X clients as root</title>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/alert.png" depth="15"/></imageobject><textobject><phrase>/!\</phrase></textobject></inlinemediaobject><emphasis role="strong">Never attempt to start an X display/session manager as root to have entire X desktop environment running as root</emphasis>.  This is considered security risk. </para>
        <para>The easiest way to run a particular X client, e.g. "<code>foo</code>" as root is to use <code>sudo</code>: </para>
        <screen><![CDATA[$ sudo foo &
]]></screen>
        <para>or </para>
        <screen><![CDATA[$ sudo -s
# foo &
]]></screen>
        <para>or </para>
        <screen><![CDATA[$ gksu foo &
]]></screen>
        <para>or </para>
        <screen><![CDATA[$ ssh -X root@localhost
# foo &
]]></screen>
        <para><inlinemediaobject><imageobject><imagedata width="15" fileref="/htdocs/rightsidebar/img/attention.png" depth="15"/></imageobject><textobject><phrase>&lt;!&gt;</phrase></textobject></inlinemediaobject> Use of <code>ssh</code> just for this purpose as above is waste of resource. </para>
        <para>Please note, in order for the X client to connect to the X server,  </para>
        <itemizedlist>
          <listitem>
            <para>values of the old user's "<code>$XAUTHORITY</code>" and "<code>$DISPLAY</code>" environment variables must be copied to the new user's ones, and </para>
          </listitem>
          <listitem>
            <para>the file pointed by value of the "<code>$XAUTHORITY</code>" environment variable must be readable by the new user. </para>
          </listitem>
        </itemizedlist>
        <para>The <code>gksu</code> package (popcon: @@@pop-gksu@@@) is a specialized GTK+ GUI package for gaining the root privileges.  It can be configured to use <code>su</code>(1) or <code>sudo</code>(8) as its backend depending on the <code>/apps/gksu/sudo-mode</code> gconf key.  You can edit gconf key using the <code>gconf-editor</code>(1) command (menu: "Applications" -&gt; "System Tools" -&gt; "Configuration Editor"). </para>
      </section>
    </section>
  </section>
</article>