-
Notifications
You must be signed in to change notification settings - Fork 4
/
usr.xml
1427 lines (1143 loc) · 43.8 KB
/
usr.xml
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
<chapter id='theUsrHierarchy'>
<title>The /usr Hierarchy</title>
<section id='purpose18'><title>Purpose</title>
<para><filename>/usr</filename> is the second major section of the
filesystem. <filename>/usr</filename> is shareable, read-only data.
That means that <filename>/usr</filename> should be shareable between
various FHS-compliant hosts and must not be written to. Any
information that is host-specific or varies with time is stored
elsewhere.</para>
<para>Large software packages must not use a direct subdirectory under
the <filename>/usr</filename> hierarchy.</para>
</section>
<section id='requirements9'><title>Requirements</title>
<para>The following directories, or symbolic links to directories, are
required in <filename>/usr</filename>.</para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>bin</filename></entry>
<entry>Most user commands</entry>
</row>
<row>
<entry><filename>lib</filename></entry>
<entry>Libraries</entry>
</row>
<row>
<entry><filename>local</filename></entry>
<entry>Local hierarchy (empty after main installation)</entry>
</row>
<row>
<entry><filename>sbin</filename></entry>
<entry>Non-vital system binaries</entry>
</row>
<row>
<entry><filename>share</filename></entry>
<entry>Architecture-independent data</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
<section id='specificOptions9'><title>Specific Options</title>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry><entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>games</filename></entry>
<entry>Games and educational binaries (optional)</entry>
</row>
<row>
<entry><filename>include</filename></entry>
<entry>Header files included by C programs</entry>
</row>
<row>
<entry><filename>libexec</filename></entry>
<entry>Binaries run by other programs (optional)</entry>
</row>
<row>
<entry><filename>lib<replaceable><qual></replaceable></filename></entry>
<entry>Alternate Format Libraries (optional)</entry>
</row>
<row>
<entry><filename>src</filename></entry>
<entry>Source code (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>An exception is made for the X Window System because of
considerable precedent and widely-accepted practice.</para>
<para>The following symbolic links to directories may be present. This
possibility is based on the need to preserve compatibility with older
systems until all distribution can be assumed to use the
<filename>/var</filename> hierarchy.</para>
<screen>
/usr/spool -> /var/spool
/usr/tmp -> /var/tmp
/usr/spool/locks -> /var/lock
</screen>
<para>Once a system no longer requires any one of the above symbolic links,
the link may be removed, if desired.</para>
</section>
<section id='usrbinMostUserCommands'>
<title>/usr/bin : Most user commands</title>
<section id='purpose20'><title>Purpose</title>
<para>This is the primary directory of executable commands on the
system.</para>
</section>
<section id='requirements9a'><title>Requirements</title>
<para>There must be no subdirectories in <filename>/usr/bin</filename>.</para>
</section>
<section id='specificOptions11'><title>Specific Options</title>
<para>The following files, or symbolic links to files, must be in
<filename>/usr/bin</filename>, if the corresponding subsystem is
installed:</para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row><entry>Command</entry><entry>Description</entry></row>
</thead>
<tbody>
<row>
<entry><command>perl</command></entry>
<entry>The Practical Extraction and Report Language (optional)</entry>
</row>
<row>
<entry><command>python</command></entry>
<entry>The Python interpreted language (optional)</entry>
</row>
<row>
<entry><command>tclsh</command></entry>
<entry>Simple shell containing Tcl interpreter (optional)</entry>
</row>
<row>
<entry><command>wish</command></entry>
<entry>Simple Tcl/Tk windowing shell (optional)</entry>
</row>
<row>
<entry><command>expect</command></entry>
<entry>Program for interactive dialog (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<tip><title>Rationale</title>
<para>In many executable scripts, the interpreter to be invoked to
execute the script is specified using
<filename>#!<replaceable>path_to_interpreter</replaceable></filename>
on the first line of a script.
To make such scripts portable among different systems,
it is advantageous to standardize the interpreter locations.
The shell interpreter is already
fixed in <filename>/bin</filename> by this specification,
but interpreters for Perl, Python, Tcl and expect may be installed
in various places. The locations specified here may be implemented
as symbolic links to the physical location of the interpreters.
</para>
</tip>
</section>
</section>
<section id='usrincludeDirectoryForStandardInclu'>
<title>/usr/include : Directory for standard include files.</title>
<section id='purpose21'><title>Purpose</title>
<para>This is where all of the system's general-use include files for the C
programming language should be placed.</para>
</section>
<section id='specificOptions12'><title>Specific Options</title>
<para>The following directories, or symbolic links to directories,
must be in <filename>/usr/include</filename>, if the corresponding
subsystem is installed:</para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>bsd</entry>
<entry>BSD compatibility include files (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
</section>
<section id='usrlibLibrariesForProgrammingAndPa'>
<title>/usr/lib : Libraries for programming and packages</title>
<section id='purpose22'><title>Purpose</title>
<para><filename>/usr/lib</filename> includes object files and libraries.
<footnote><para> Miscellaneous
architecture-independent application-specific static files and
subdirectories must be placed in <filename>/usr/share</filename>.
</para></footnote>
On some systems, it may also include internal binaries that are not
intended to be executed directly by users or shell scripts.
<footnote><para>See below, in the <filename>/usr/libexec</filename>
section, for a discussion of <filename>/usr/lib</filename>
vs. <filename>/usr/libexec</filename> for executable binaries.
</para></footnote>
</para>
<para>Applications may use a single subdirectory under
<filename>/usr/lib</filename>. If an application uses a subdirectory,
all architecture-dependent data exclusively used by the application
must be placed within that subdirectory.
<footnote>
<para> For example, the <filename>perl5</filename> subdirectory for
Perl 5 modules and libraries.</para> </footnote></para>
</section>
<section id='specificOptions13'><title>Specific Options</title>
<para>For historical reasons, <command>/usr/lib/sendmail</command>
must be a symbolic link which resolves to the
<emphasis>sendmail</emphasis>-compatible command provided by the
system's mail transfer agent, if the latter exists.
<footnote>
<para>
Some executable commands such as <command>makewhatis</command> and
<command>sendmail</command> have also been traditionally placed in
<filename>/usr/lib</filename>. <command>makewhatis</command> is an
internal binary and must be placed in a binary directory; users access
only <command>catman</command>. Newer <command>sendmail</command>
binaries are now placed by default in <filename>/usr/sbin</filename>.
Additionally, systems using a <emphasis>sendmail</emphasis>-compatible
mail transfer agent must provide <command>/usr/sbin/sendmail</command>
as the <command>sendmail</command> command, either as the executable
itself or as a symlink to the appropriate executable. </para>
</footnote>
<footnote>
<para>
Host-specific data for the X Window System must not be stored in
<filename>/usr/lib/X11</filename>. Host-specific configuration files
such as <filename>xorg.conf</filename> must be stored in
<filename>/etc/X11</filename>. This includes configuration data such
as <filename>system.twmrc</filename> even if it is only made a
symbolic link to a more global configuration file (probably in
<filename>/usr/lib/X11</filename>).
</para>
</footnote></para>
</section>
</section>
<section id='usrlibexec'>
<title>/usr/libexec : Binaries run by other programs (optional)</title>
<section id='usrlibexecPurpose'><title>Purpose</title>
<para><filename>/usr/libexec</filename> includes internal binaries
that are not intended to be executed directly by users or shell
scripts. Applications may use a single subdirectory under
<filename>/usr/libexec</filename>.</para>
<para>Applications which use <filename>/usr/libexec</filename> in this
way must not also use <filename>/usr/lib</filename> to store internal
binaries, though they may use <filename>/usr/lib</filename> for the
other purposes documented here.</para>
<tip><title>Rationale</title>
<para>Some previous versions of this document did not support
<filename>/usr/libexec</filename>, despite it being standard practice
in a number of environments.
<footnote>
<para>See, for example, the "GNU Coding Standards" from
the Free Software Foundation.</para>
</footnote>
To accomodate this restriction, it became common practice to use
<filename>/usr/lib</filename> instead. Either practice is now
acceptable, but each application must choose one way or the other to
organize itself.
</para>
</tip>
</section>
</section>
<section id='usrlibltqualgtAlternateFormatLibrari'>
<title>/usr/lib<replaceable><qual></replaceable> : Alternate format libraries (optional)</title>
<section id='purpose23'><title>Purpose</title>
<para><filename>/usr/lib<replaceable><qual></replaceable></filename> performs the same role as <filename>/usr/lib</filename> for an
alternate binary format, except that the symbolic links
<filename>/usr/lib<replaceable><qual></replaceable>/sendmail</filename> and <filename>/usr/lib<replaceable><qual></replaceable>/X11</filename> are not required.
<footnote>
<para>
The case where <filename>/usr/lib</filename> and <filename>/usr/lib<replaceable><qual></replaceable></filename> are the
same (one is a symbolic link to the other) these files and the
per-application subdirectories will exist.
</para>
</footnote></para>
</section>
</section>
<section id='usrlocalLocalHierarchy'>
<title>/usr/local : Local hierarchy</title>
<section id='purpose24'><title>Purpose</title>
<para>The <filename>/usr/local</filename> hierarchy is for use by the
system administrator when installing software locally. It needs to be
safe from being overwritten when the system software is updated. It
may be used for programs and data that are shareable amongst a group
of hosts, but not found in <filename>/usr</filename>.</para>
<para>Locally installed software must be placed within
<filename>/usr/local</filename> rather than <filename>/usr</filename>
unless it is being installed to replace or upgrade software in
<filename>/usr</filename>.
<footnote>
<para>
Software placed in <filename>/</filename> or
<filename>/usr</filename> may be overwritten by system upgrades
(though we recommend that distributions do not overwrite data in
<filename>/etc</filename> under these circumstances). For this
reason, local software must not be placed outside of
<filename>/usr/local</filename> without good reason.
</para>
</footnote>
</para>
</section>
<section id='requirements10'><title>Requirements</title>
<para>The following directories, or symbolic links to directories,
must be in <filename>/usr/local</filename></para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>bin</filename></entry>
<entry>Local binaries</entry>
</row>
<row>
<entry><filename>etc</filename></entry>
<entry>Host-specific system configuration for local binaries</entry>
</row>
<row>
<entry><filename>games</filename></entry>
<entry>Local game binaries</entry>
</row>
<row>
<entry><filename>include</filename></entry>
<entry>Local C header files</entry>
</row>
<row>
<entry><filename>lib</filename></entry>
<entry>Local libraries</entry>
</row>
<row>
<entry><filename>man</filename></entry>
<entry>Local online manuals</entry>
</row>
<row>
<entry><filename>sbin</filename></entry>
<entry>Local system binaries</entry>
</row>
<row>
<entry><filename>share</filename></entry>
<entry>Local architecture-independent hierarchy</entry>
</row>
<row>
<entry><filename>src</filename></entry>
<entry>Local source code</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>No other directories, except those listed below, may be in
<filename>/usr/local</filename> after first installing a FHS-compliant
system.</para>
</section>
<section id='specificOptions14'><title>Specific Options</title>
<para>If directories <filename>/lib<replaceable><qual></replaceable></filename> or
<filename>/usr/lib<replaceable><qual></replaceable></filename> exist, the equivalent
directories must also exist in <filename>/usr/local</filename>.</para>
<para><filename>/usr/local/etc</filename> may be a symbolic link to
<filename>/etc/local</filename>.</para>
<tip><title>Rationale</title>
<para>The consistency of <filename>/usr/local/etc</filename> is
beneficial to installers, and is already used in other systems. As
all of <filename>/usr/local</filename> needs to be backed up to
reproduce a system, it introduces no additional maintenance overhead,
but a symlink to <filename>/etc/local</filename> is suitable if
systems want all their configuration under one hierarchy.
</para>
<para>
Note that <filename>/usr/etc</filename> is still not allowed: programs
in <filename>/usr</filename> should place configuration files in
<filename>/etc</filename>.
</para>
</tip>
<para>If the directory <filename>/usr/share/color</filename> exists as
specified in this document, then the directory
<filename>/usr/local/share/color</filename> must also exist, governed
by the same rules as <filename>/usr/share/color</filename>.</para>
<tip><title>Rationale</title>
<para>This usage allows the sysadmin a place to install color profiles
manually when necessary.</para>
</tip>
</section>
<section id='usrlocalshare1'><title>/usr/local/share : Local architecture-independent hierarchy</title>
<para>The requirements for the contents of this directory are the same
as for <filename>/usr/share</filename>.
<!-- dropped per bug 798
The only additional constraint is
that <filename>/usr/local/share/man</filename> and
<filename>/usr/local/man</filename> directories must be synonomous
(usually this means that one of them must be a symbolic link).
-->
<!-- bug 798: this note removed; deprecation note added for /usr/local/man
<footnote>
<para>
<filename>/usr/local/man</filename> may be deprecated in future FHS
releases, so if all else is equal, making that one a symlink seems
sensible.
</para>
</footnote>
-->
</para>
</section>
</section>
<section id='usrsbinNonessentialStandardSystemBi'>
<title>/usr/sbin : Non-essential standard system binaries</title>
<section id='purpose25'><title>Purpose</title>
<para>This directory contains any non-essential binaries used
exclusively by the system administrator. System administration
programs that are required for system repair, system recovery,
mounting <filename>/usr</filename>, or other essential functions must
be placed in <filename>/sbin</filename> instead.
<footnote>
<para>
Locally installed system administration programs should be placed in
<filename>/usr/local/sbin</filename>.
</para>
</footnote></para>
</section>
<section id='requirements10a'><title>Requirements</title>
<para>There must be no subdirectories in <filename>/usr/sbin</filename>.</para>
</section>
</section>
<section id='usrshareArchitectureindependentData'>
<title>/usr/share : Architecture-independent data</title>
<section id='purpose26'><title>Purpose</title>
<para>The <filename>/usr/share</filename> hierarchy is for all
read-only architecture independent data files.
<footnote>
<para>
Much of this data originally lived in <filename>/usr</filename>
(<filename>man</filename>, <filename>doc</filename>) or
<filename>/usr/lib</filename> (<filename>dict</filename>,
<filename>terminfo</filename>, <filename>zoneinfo</filename>).
</para>
</footnote>
</para>
<para>This hierarchy is intended to be shareable among all
architecture platforms of a given OS; thus, for example, a site with
i386, Alpha, and PPC platforms might maintain a single
<filename>/usr/share</filename> directory that is centrally-mounted.
Note, however, that <filename>/usr/share</filename> is generally not
intended to be shared by different OSes or by different releases of
the same OS.</para>
<para>Any program or package which contains or requires data that
doesn't need to be modified should store that data in
<filename>/usr/share</filename> (or
<filename>/usr/local/share</filename>, if installed locally). It is
recommended that a subdirectory be used in
<filename>/usr/share</filename> for this purpose. Applications using
a single file may use <filename>/usr/share/misc</filename>.</para>
<para>Game data stored in <filename>/usr/share/games</filename> must
be purely static data. Any modifiable files, such as score files,
game play logs, and so forth, should be placed in
<filename>/var/games</filename>.</para>
</section>
<section id='requirements11'><title>Requirements</title>
<para>The following directories, or symbolic links to directories,
must be in <filename>/usr/share</filename></para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>man</filename></entry>
<entry>Online manuals</entry>
</row>
<row>
<entry><filename>misc</filename></entry>
<entry>Miscellaneous architecture-independent data</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
<section id='specificOptions15'><title>Specific Options</title>
<para>The following directories, or symbolic links to directories, must be in <filename>/usr/share</filename>, if the corresponding
subsystem is installed:</para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>color</filename></entry>
<entry>Color management information (optional)</entry>
</row>
<row>
<entry><filename>dict</filename></entry>
<entry>Word lists (optional)</entry>
</row>
<row>
<entry><filename>doc</filename></entry>
<entry>Miscellaneous documentation (optional)</entry>
</row>
<row>
<entry><filename>games</filename></entry>
<entry>Static data files for /usr/games (optional)</entry>
</row>
<row>
<entry><filename>info</filename></entry>
<entry>Primary directory for GNU Info system (optional)</entry>
</row>
<row>
<entry><filename>locale</filename></entry>
<entry>Locale information (optional)</entry>
</row>
<row>
<entry><filename>nls</filename></entry>
<entry>Message catalogs for Native language support (optional)</entry>
</row>
<row>
<entry><filename>ppd</filename></entry>
<entry>Printer definitions (optional)</entry>
</row>
<row>
<entry><filename>sgml</filename></entry>
<entry>SGML data (optional)</entry>
</row>
<row>
<entry><filename>terminfo</filename></entry>
<entry>Directories for terminfo database (optional)</entry>
</row>
<row>
<entry><filename>tmac</filename></entry>
<entry>troff macros not distributed with groff (optional)</entry>
</row>
<row>
<entry><filename>xml</filename></entry>
<entry>XML data (optional)</entry>
</row>
<row>
<entry><filename>zoneinfo</filename></entry>
<entry>Timezone information and configuration (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>It is recommended that application-specific,
architecture-independent directories be placed here. Such directories
include <command>groff</command>, <command>perl</command>,
<command>ghostscript</command>, <command>texmf</command>, and
<command>kbd</command> (Linux) or <command>syscons</command>
(BSD). They may, however, be placed in <filename>/usr/lib</filename>
for backwards compatibility, at the distributor's discretion.
Similarly, a <filename>/usr/lib/games</filename> hierarchy may be used
in addition to the <filename>/usr/share/games</filename> hierarchy if
the distributor wishes to place some game data there.</para>
</section>
<section id='usrsharecolorColorManagement'>
<title>/usr/share/color : Color management information (optional)</title>
<section id='colorManagementPurpose'><title>Purpose</title>
<para>This directory is the home for ICC color management files
installed by the system.</para>
</section>
<section id='colorManagementSpecificOptions'><title>Specific
Options</title>
<para>The following directories must be in
<filename>/usr/share/color</filename>, if the corresponding subsystem
is installed:</para>
<informaltable pgwide='0' frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry><filename>Directory</filename></entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>icc</filename></entry>
<entry>ICC color profiles (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>The top-level directory <filename>/usr/share/color</filename>
must not contain any files; all files should be in subdirectories of
<filename>/usr/share/color</filename>.</para>
</section>
</section>
<section id='usrsharedictWordLists'>
<title>/usr/share/dict : Word lists (optional)</title>
<section id='purpose27'><title>Purpose</title>
<para>This directory is the home for word lists on the system;
Traditionally this directory contains only the English
<filename>words</filename> file, which is used by
<command>look(1)</command> and various spelling programs.
<filename>words</filename> may use either American or British
spelling.</para>
<tip><title>Rationale</title>
<para>The reason that only word lists are located here is that they
are the only files common to all spell checkers.</para>
</tip>
</section>
<section id='specificOptions16'><title>Specific Options</title>
<para>The following files, or symbolic links to files, must be in
<filename>/usr/share/dict</filename>, if the corresponding subsystem
is installed:</para>
<informaltable pgwide='0' frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry><filename>File</filename></entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>words</filename></entry>
<entry>List of English words (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>Sites that require both American and British spelling may link
<filename>words</filename> to
<filename>­/usr/share/dict/american-english</filename> or
<filename>­/usr/share/dict/british-english</filename>.</para>
<para>Word lists for other languages may be added using the English
name for that language, e.g.,
<filename>/usr/share/dict/french</filename>,
<filename>/usr/share/dict/danish</filename>, etc. These should, if
possible, use a character set based on Unicode, with the UTF-8
character set being the preferred option.</para>
<para>Other word lists must be included here, if present.</para>
</section>
</section>
<section id='usrsharemanManualPages'>
<title>/usr/share/man : Manual pages</title>
<section id='purpose28'><title>Purpose</title>
<para>This section details the organization for manual pages
throughout the system, including <filename>/usr/share/man</filename>.
Also refer to the section on
<filename>/var/cache/man</filename>.</para>
<para>The primary <filename><mandir></filename> of the system is
<filename>/usr/share/man</filename>.
<filename>/usr/share/man</filename> contains manual information for
commands and data under the <filename>/</filename> and
<filename>/usr</filename> filesystems.
<footnote>
<para>Obviously, there are no manual pages in <filename>/</filename>
because they are not required at boot time nor are they required in
emergencies. Really.</para></footnote></para>
<para>Manual pages are stored in
<filename><mandir>/<locale>/man<section>/<arch></filename>.
An explanation of <filename><mandir></filename>,
<filename><locale></filename>,
<filename><section></filename>, and
<filename><arch></filename> is given below.</para>
<para>A description of each section follows:</para>
<itemizedlist spacing="normal" mark="bullet">
<listitem>
<para><filename>man1</filename>: User programs
<!-- .br -->
Manual pages that describe publicly accessible commands are contained in
this chapter. Most program documentation that a user will need to use
is located here.</para>
</listitem>
<listitem>
<para><filename>man2</filename>: System calls
<!-- .br -->
This section describes all of the system calls (requests for the
kernel to perform operations).</para>
<!-- delete parenthesized remark? assume technical background? -->
</listitem>
<listitem>
<para><filename>man3</filename>: Library functions and subroutines
<!-- .br -->
Section 3 describes program library routines that are not direct calls
to kernel services. This and chapter 2 are only really of interest to
programmers.</para>
</listitem>
<listitem>
<para><filename>man4</filename>: Special files
<!-- .br -->
Section 4 describes the special files, related driver functions, and
networking support available in the system. Typically, this includes
the device files found in <filename>/dev</filename> and the kernel interface to
networking protocol support.</para>
</listitem>
<listitem>
<para><filename>man5</filename>: File formats
<!-- .br -->
The formats for many data files are documented in the
section 5. This includes various include files, program output files,
and system files.</para>
</listitem>
<listitem>
<para><filename>man6</filename>: Games
<!-- .br -->
This chapter documents games, demos, and generally trivial programs.
Different people have various notions about how essential this is.</para>
</listitem>
<listitem>
<para><filename>man7</filename>: Miscellaneous
<!-- .br -->
Manual pages that are difficult to classify are designated as being
section 7. The troff and other text processing macro packages are found
here.</para>
</listitem>
<listitem>
<para><filename>man8</filename>: System administration
<!-- .br -->
Programs used by system administrators for system operation and
maintenance are documented here. Some of these programs are also
occasionally useful for normal users.</para>
</listitem>
</itemizedlist>
</section>
<section id='specificOptions17'><title>Specific Options</title>
<para>The following directories, or symbolic links to directories,
must be in
<filename>/usr/share/<mandir>/<locale></filename>, unless
they are empty:
<footnote><para>For example, if <filename>/usr/share/man</filename>
has no manual pages in section 4 (Devices), then
<filename>/usr/share/man/man4</filename> may be omitted.</para>
</footnote></para>
<informaltable frame='none'>
<tgroup cols='2' align='left'>
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>man1</filename></entry>
<entry>User programs (optional)</entry>
</row>
<row>
<entry><filename>man2</filename></entry>
<entry>System calls (optional)</entry>
</row>
<row>
<entry><filename>man3</filename></entry>
<entry>Library calls (optional)</entry>
</row>
<row>
<entry><filename>man4</filename></entry>
<entry>Special files (optional)</entry>
</row>
<row>
<entry><filename>man5</filename></entry>
<entry>File formats (optional)</entry>
</row>
<row>
<entry><filename>man6</filename></entry>
<entry>Games (optional)</entry>
</row>
<row>
<entry><filename>man7</filename></entry>
<entry>Miscellaneous (optional)</entry>
</row>
<row>
<entry><filename>man8</filename></entry>
<entry>System administration (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>The component <filename><section></filename> describes the
manual section.</para>
<para>Provisions must be made in the structure of
<filename>/usr/share/man</filename> to support manual pages which are
written in different (or multiple) languages. These provisions must
take into account the storage and reference of these manual pages.
Relevant factors include language (including geographical-based
differences), and character code set.</para>