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
|
<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>
<para>This naming of language subdirectories of
<filename>/usr/share/man</filename> is based on Appendix E of the
POSIX 1003.1 standard which describes the locale identification string
— the most well-accepted method to describe a cultural
environment. The <filename><locale></filename> string
is:</para>
<para><filename><language>[_<territory>][.<character-set>][,<version>]</filename></para>
<para>The <filename><language></filename> field must be taken
from ISO 639 (a code for the representation of names of languages).
It must be two characters wide and specified with lowercase letters
only.</para>
<para>The <filename><territory></filename> field must be the
two-letter code of ISO 3166 (a specification of representations of
countries), if possible. (Most people are familiar with the
two-letter codes used for the country codes in email addresses.) It
must be two characters wide and specified with uppercase letters
only.
<footnote><para> A major exception to this rule is the
United Kingdom, which is `GB' in the ISO 3166, but `UK' for most email
addresses.</para> </footnote></para>
<para>The <filename><character-set></filename> field must
represent the standard describing the character set. If the
<filename>­<character-set></filename> field is just a
numeric specification, the number represents the number of the
international standard describing the character set. It is
recommended that this be a numeric representation if possible (ISO
standards, especially), not include additional punctuation symbols,
and that any letters be in lowercase.</para>
<para>A parameter specifying a <filename><version></filename> of
the profile may be placed after the
<filename>­<character-set></filename> field, delimited by a
comma. This may be used to discriminate between different cultural
needs; for instance, dictionary order versus a more systems-oriented
collating order. This standard recommends not using the
<filename><version></filename> field, unless it is
necessary.</para>
<para>Systems which use a unique language and code set for all manual
pages may omit the <filename><locale></filename> substring and
store all manual pages in <filename><mandir></filename>. For
example, systems which only have English manual pages coded with
ASCII, may store manual pages (the
<filename>man<section></filename> directories) directly in
<filename>/usr/share/man</filename>. (That is the traditional
circumstance and arrangement, in fact.)</para>
<para>Countries for which there is a well-accepted standard character
code set may omit the <filename>­<character-set></filename>
field, but it is strongly recommended that it be included, especially
for countries with several competing standards.</para>
<para>Various examples:</para>
<informaltable pgwide='0' frame='none'>
<tgroup cols='4' align='center'>
<colspec colname='c1'/>
<colspec colname='c2'/>
<colspec colname='c3'/>
<colspec colname='c4'/>
<thead>
<row rowsep='1'>
<entry align='left'>Language</entry>
<entry align='left'>Territory</entry>
<entry align='left'>Character Set</entry>
<entry align='left'>Directory</entry>
</row>
</thead>
<tbody>
<row>
<entry align='left'>English</entry>
<entry align='left'>—</entry>
<entry align='left'>ASCII</entry>
<entry align='left'>/usr/share/man/en</entry>
</row>
<row>
<entry align='left'>English</entry>
<entry align='left'>United Kingdom</entry>
<entry align='left'>Unicode UTF-8</entry>
<entry align='left'>/usr/share/man/en_GB.10646</entry>
</row>
<row>
<entry align='left'>English</entry>
<entry align='left'>United States</entry>
<entry align='left'>ASCII</entry>
<entry align='left'>/usr/share/man/en_US</entry>
</row>
<row>
<entry align='left'>French</entry>
<entry align='left'>Canada</entry>
<entry align='left'>ISO 8859-1</entry>
<entry align='left'>/usr/share/man/fr_CA.88591</entry>
</row>
<row>
<entry align='left'>French</entry>
<entry align='left'>France</entry>
<entry align='left'>ISO 8859-1</entry>
<entry align='left'>/usr/share/man/fr_FR.88591</entry>
</row>
<row>
<entry align='left'>German</entry>
<entry align='left'>Germany</entry>
<entry align='left'>ISO 646</entry>
<entry align='left'>/usr/share/man/de_DE.646</entry>
</row>
<row>
<entry align='left'>German</entry>
<entry align='left'>Germany</entry>
<entry align='left'>ISO 6937</entry>
<entry align='left'>/usr/share/man/de_DE.6937</entry>
</row>
<row>
<entry align='left'>German</entry>
<entry align='left'>Germany</entry>
<entry align='left'>ISO 8859-1</entry>
<entry align='left'>/usr/share/man/de_DE.88591</entry>
</row>
<row>
<entry align='left'>German</entry>
<entry align='left'>Switzerland</entry>
<entry align='left'>ISO 646</entry>
<entry align='left'>/usr/share/man/de_CH.646</entry>
</row>
<row>
<entry align='left'>Japanese</entry>
<entry align='left'>Japan</entry>
<entry align='left'>JIS</entry>
<entry align='left'>/usr/share/man/ja_JP.jis</entry>
</row>
<row>
<entry align='left'>Japanese</entry>
<entry align='left'>Japan</entry>
<entry align='left'>SJIS</entry>
<entry align='left'>/usr/share/man/ja_JP.sjis</entry>
</row>
<row>
<entry align='left'>Japanese</entry>
<entry align='left'>Japan</entry>
<entry align='left'>UJIS (or EUC-J)</entry>
<entry align='left'>/usr/share/man/ja_JP.ujis</entry>
</row>
<row>
<entry align='left'>Japanese</entry>
<entry align='left'>Japan</entry>
<entry align='left'>Unicode UTF-16</entry>
<entry align='left'>/usr/share/man/ja_JP.10646</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>Similarly, provision must be made for manual pages which are
architecture-dependent, such as documentation on device-drivers or
low-level system administration commands. These must be placed under
an <filename><arch></filename> directory in the appropriate
<filename>man<section></filename> directory; for example, a man
page for the i386 ctrlaltdel(8) command might be placed in
<filename>/usr/share/man/<locale>/man8/i386/ctrlaltdel.8</filename>.
</para>
<para>Manual pages for commands and data under
<filename>/usr/local</filename> are stored in
<filename>/usr/local/man</filename> or
<filename>/usr/local/share/man</filename>.
All manual page hierarchies in the system must have the same structure as
<filename>/usr/share/man</filename>, as this structure is expected
by commands which consume manual page content.
<footnote>
<para>
<filename>/usr/local/man</filename> is deprecated and may be
dropped in a future version of this specification.
</para>
</footnote>
</para>
<para>The cat page sections (<filename>cat<section></filename>)
containing formatted manual page entries are also found within
subdirectories of <filename><mandir>/<locale></filename>,
but are not required nor may they be distributed in lieu of nroff
source manual pages.</para>
<para>The numbered sections "1" through "8" are traditionally defined.
In general, the file name for manual pages located within a particular
section end with <filename>.<section></filename>.</para>
<para>In addition, some large sets of application-specific manual
pages have an additional suffix appended to the manual page filename.
For example, the MH mail handling system manual pages must have
<filename>mh</filename> appended to all MH manuals. All X Window
System manual pages must have an <filename>x</filename> appended to
the filename.</para>
<para>The practice of placing various language manual pages in
appropriate subdirectories of <filename>/usr/share/man</filename> also
applies to the other manual page hierarchies, such as
<filename>/usr/local/man</filename>. (This portion of the standard
also applies later in the section on the optional
<filename>/var/cache/man</filename> structure.)</para>
</section>
</section>
<section id='usrsharemiscMiscellaneousArchitecture'>
<title>/usr/share/misc : Miscellaneous architecture-independent data</title>
<para>This directory contains miscellaneous architecture-independent
files which don't require a separate subdirectory under
<filename>/usr/share</filename>.</para>
<section id='specificOptions18'><title>Specific Options</title>
<para>The following files, or symbolic links to files, must be in
<filename>/usr/share/misc</filename>, if the corresponding subsystem
is installed:</para>
<informaltable pgwide='0' frame='none'>
<tgroup cols='2' align='left'>
<colspec colname='c1'/>
<colspec colname='c2'/>
<thead>
<row>
<entry>File</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>ascii</filename></entry>
<entry>ASCII character set table (optional)</entry>
</row>
<row>
<entry><filename>termcap</filename></entry>
<entry>Terminal capability database (optional)</entry>
</row>
<row>
<entry><filename>termcap.db</filename></entry>
<entry>Terminal capability database (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>Other (application-specific) files may appear here, but a distributor
may place them in <filename>/usr/lib</filename> at their discretion.
<footnote><para>
Some such files include:
<filename>airport</filename>, <filename>birthtoken</filename>,
<filename>eqnchar</filename>, <filename>getopt</filename>,
<filename>gprof.callg</filename>, <filename>gprof.flat</filename>,
<filename>inter.phone</filename>, <filename>ipfw.samp.filters</filename>,
<filename>ipfw.samp.scripts</filename>, <filename>keycap.pcvt</filename>,
<filename>mail.help</filename>, <filename>mail.tildehelp</filename>,
<filename>man.template</filename>, <filename>map3270</filename>,
<filename>mdoc.template</filename>, <filename>more.help</filename>,
<filename>na.phone</filename>, <filename>nslookup.help</filename>,
<filename>operator</filename>, <filename>scsi_modes</filename>,
<filename>sendmail.hf</filename>, <filename>style</filename>,
<filename>units.lib</filename>, <filename>vgrindefs</filename>,
<filename>vgrindefs.db</filename>, <filename>zipcodes</filename>.
</para>
</footnote>
<footnote><para>
Historically, the <filename>magic</filename> file was placed in
<filename>/usr/share/misc</filename>, but modern variants of the file
command use several files and place them in
<filename>/usr/share/file</filename>. For compatibility,
distribution may create a symlink at
<filename>/usr/share/misc/magic</filename>, pointing to
<filename>/usr/share/file/magic</filename>.
</para>
</footnote>
</para>
</section>
</section>
<section id='usrshareppd'>
<title>/usr/share/ppd : Printer definitions (optional)</title>
<section id='usrshareppdPurpose'><title>Purpose</title>
<para><filename>/usr/share/ppd</filename> contains PostScript Printer
Definition (PPD) files, which are used as descriptions of printer
drivers by many print systems. PPD files may be placed in this
directory, or in a subdirectory.</para>
</section>
</section>
<section id='usrsharesgmlSgmlAndXmlData'>
<title>/usr/share/sgml : SGML data (optional)</title>
<section id='purpose29'><title>Purpose</title>
<para><filename>/usr/share/sgml</filename> contains
architecture-independent files used by SGML applications, such
as ordinary catalogs (not the centralized ones, see
<filename>/etc/sgml</filename>), DTDs, entities, or style
sheets.</para>
</section>
<section id='specificOptions19'><title>Specific Options</title>
<para>The following directories, or symbolic links to directories,
must be in <filename>/usr/share/sgml</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>docbook</filename></entry>
<entry>docbook DTD (optional)</entry>
</row>
<row>
<entry><filename>tei</filename></entry>
<entry>tei DTD (optional)</entry>
</row>
<row>
<entry><filename>html</filename></entry>
<entry>html DTD (optional)</entry>
</row>
<row>
<entry><filename>mathml</filename></entry>
<entry>mathml DTD (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
<para>Other files that are not specific to a given DTD may reside in
their own subdirectory.</para>
</section>
</section>
<section>
<title>/usr/share/xml : XML data (optional)</title>
<section><title>Purpose</title>
<para><filename>/usr/share/xml</filename> contains
architecture-independent files used by XML applications, such
as ordinary catalogs (not the centralized ones, see
<filename>/etc/sgml</filename>), DTDs, entities, or style
sheets.</para>
</section>
<section><title>Specific Options</title>
<para>The following directories, or symbolic links to directories,
must be in <filename>/usr/share/xml</filename>, if the corresponding
subsystem is installed:</para>
<informaltable frame="none">
<tgroup align="left" cols="2">
<thead>
<row>
<entry>Directory</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry><filename>docbook</filename></entry>
<entry>docbook XML DTD (optional)</entry>
</row>
<row>
<entry><filename>xhtml</filename></entry>
<entry>XHTML DTD (optional)</entry>
</row>
<row>
<entry><filename>mathml</filename></entry>
<entry>MathML DTD (optional)</entry>
</row>
</tbody>
</tgroup>
</informaltable>
</section>
</section>
</section>
<section id='usrsrcSourceCode'>
<title>/usr/src : Source code (optional)</title>
<section id='purpose30'><title>Purpose</title>
<para>Source code may be placed in this
subdirectory, only for reference purposes.
<footnote><para>
Generally, source should not be built within this hierarchy.
</para></footnote>
</para>
</section>
</section>
</chapter>
|