Files
oldlinux-files/docs/linux-standards/private/fsstnd/post-release/fsstnd-94.03.07
2024-02-19 00:23:35 -05:00

2575 lines
80 KiB
Plaintext

Linux Filesystem Structure v1.x
Daniel Quinlan <quinlan@bucknell.edu>
Filesystem Standard Group
ABSTRACT
The open and distributed process in which the Linux
operating system has developed fosters rapid growth of the
operating system, applications, and integrated distributions.
This decentralized process, however, has created a need for
standardization of the Linux filesystem structure. This
document aims to specify standard locations of files and
directories in Linux systems. This will allow users,
developers, and distributors to obtain system components from
various sources that will work together as smoothly as if they
had been developed under a monolithic development process. It
will also ease system administration, development of second
and third party packages, and the writing of implementation
independent documentation.
March 7, 1994
Linux Filesystem Structure March 7, 1994
UNIX is a registered trademark of the X/Open Company, Ltd.
SunOS, Sun Microsystems, Sun NIS, Sun RPC, and NFS are registered
trademarks of Sun Microsystems, Inc.
System V and SVR4 are trademarks of AT&T.
Novell and Novell NetWare are trademarks of Novell.
HP-UX is a trademark of Hewlett Packard.
Linux is not a trademark, and has no connection to UNIX.
All other copyrights are owned by their owners, unless specifically
noted otherwise. Use of a term in this document should not be regarded
as affecting the validity of any trademark or service mark.
Copyright (C) 1994 Daniel Quinlan <quinlan@bucknell.edu>
Permission is granted to copy and distribute verbatim copies of this
standard provided the copyright and this permission notice are preserved
on all copies.
Permission is granted for FSSTND contributors and participants to copy
and distribute modified versions of this standard under the conditions
for verbatim copying for purposes of filesystem standardization
activities only, and subject to those restrictions listed below.
The following restrictions apply to reproducing or transmitting the
document in any form:
o All copies or portions thereof must identify the document's title
and section, and must be accompanied by this entire notice in a
prominent location.
o No portion of this document may be redistributed in any modified or
abridged form without the prior approval of the FSSTND coordinator.
Any entities seeking permission to distribute any material derived from
this document (other than verbatim copies) must contact the FSSTND
coordinator for the appropriate license.
Linux Filesystem Structure March 7, 1994
Preface
Status of the Standard
This proposed standard is currently being distributed to members of the
Linux community in order to solicit their reactions to the series of
ideas, concepts, and recommendations included within it. While the
entire content of this standard may not be identical to what every
individual desires, it has proven to be a good start towards solving
many problems.
The guidelines in this standard are subject to change. Use of
information contained in this document is at your own risk.
Organization of the Standard
This standard is divided into 6 parts:
-- General, including a statement of scope, problems, objectives, and
conformance requirements. (Section 1)
-- The Filesystem: a statement of some guiding principles. (Section 2)
-- The Root Directory. (Section 3)
-- The /usr Hierarchy. (Section 4)
-- The /var Hierarchy. (Section 5)
-- Issues and Additional Rationale. (Section 6)
Typographical Conventions
It is recommended that a typeset version of this document be read rather
than the ASCII version. In it, the names of files and directories are
set in Courier font.
Components of filenames that vary are represented by a description of
the contents enclosed in "<" and ">" characters, <thus>. Email
addresses are also enclosed in "<" and ">" but are shown in the usual
typeface.
Variable substrings of directory names and filenames are indicated by
"*".
- 1 -
Linux Filesystem Structure March 7, 1994
1. General
1.1 Scope
This document specifies a standard filesystem structure for Linux
systems, including the location of files and directories, and the
contents of some system files.
The filesystem standard has been designed to be used by Linux
distribution developers, package developers, and system implementors.
However, it is intended for reference and is not a tutorial on how to
manage a Linux filesystem or directory hierarchy.
These are some of the fundamental problems that originally motivated
this standardization effort:
o There was no single well accepted Linux directory structure.
Instead, there were many different ones, each incompatible with one
another.
o The most widely used filesystem hierarchies were not well
structured and differed gratuitously from more modern directory
structure "standards" (such as System V, SunOS, BSD, and others).
o The filesystem was unfamiliar and discomforting to experienced UNIX
users and administrators who have experience on more mainstream
UNIX systems.
o The lack of regularity was also confusing for newcomers to Linux,
especially those coming from a non-UNIX background.
o Any incompatibilities between primary Linux distributions and other
software packages were typically solved by methods of a less than
appealing nature.
o Overall, symbolic links were used much too often within the
filesystem to fix problems. (However, there are times when
symbolic links need to be used to ensure backward compatibility or
to allow specific systems to have an individual filesystem
structure.)
It is to be expected that differences in opinion are to arise in any
standardization effort such as this one. However, these differences
should be overshadowed by the need for consensus and common practice
within the Linux community.
This filesystem standard was primarily developed within the FSSTND
mailing list and previously, the FSSTND channel of the Linux-activists
mailing list. Input and comments were received from a great number of
Linux developers, noted Linux programmers, system administrators, and
users. Those volunteers who have contributed extensively to this
standard are listed at the end of this document. This standard
represents the consensus view of those and other contributors.
- 2 -
Linux Filesystem Structure March 7, 1994
This standard seeks to address these problems by describing a well
designed filesystem structure that we hope the Linux community will
voluntarily follow. Although this standard is more comprehensive and
complete than any other previous attempt at standardization, it will
probably never be truly finished. The needs of the Linux community will
continually change in relation to emerging technology. It is also
possible that better solutions to the problems we address will be
discovered or that our solutions will no longer be the best possible
solutions. For these reasons, the FSSTND group plans to release
supplementary drafts in addition to periodic updates to this document.
Any comments related to this standard would be welcomed by the FSSTND
group. Such comments or suggestions for changes should be directed to
the FSSTND coordinator, or if you prefer, any of the listed
contributors. Typographical or grammatical comments should be directed
to the FSSTND coordinator.
Please do not send mail to the mailing list without first contacting the
FSSTND coordinator or a listed contributor. Improper messages will not
be well received on the mailing list.
Questions about how to interpret items in this document may occasionally
arise. If you have need for a clarification, please contact the FSSTND
coordinator. Since this standard represents the consensus of many
participants, it is important to make certain that any interpretation
also represents their collective opinion. For this reason it may not be
possible to provide an immediate response unless the inquiry has been
the subject of previous discussion.
The FSSTND coordinator is Daniel Quinlan <quinlan@bucknell.edu>.
1.2 Specific Problems
Naturally, while standardizing the Linux filesystem structure, there
were some specific problems that we sought to correct. Here are some of
the most obvious and major ones:
o The primary binary directories, /bin and /usr/bin, do not have well
defined divisions between them. As a result, the distribution of
the binaries between these two directories varies greatly between
the Linux distributions.
o Including both binaries and configuration files in /etc makes this
directory more confusing and more difficult to maintain, both for
inexperienced users and for system administrators (especially those
with large systems).
o The division between what is a site-wide configuration file and
what is a machine-local configuration file is difficult to
establish. This makes determining whether a configuration file is
stored in /etc or /usr/etc difficult.
- 3 -
Linux Filesystem Structure March 7, 1994
o Many common implementations of /usr cannot be mounted read-only
because they contain variable files and directories that need to be
written to.
o In a networked environment it is desirable to serve software to
workstations via a NFS mounted filesystem. Such filesystems need
to be mounted read-only so that accidents or malice on one
workstation cannot damage the files on the server. This requires
identification and separation of files that a machine must write to
and of files that are specific to a single machine
o Common implementations of the Linux filesystem are generally not
well suited to networked installations which may require a read-
only /usr partition or involve diskless workstations.
While these are some of the major problems we addressed, there were
numerous additional problems that needed to be solved. This standard
attempts to address many of those other problems, but there may be
something that was overlooked. If you wish to bring something to our
attention, please note there are some things that have been discussed at
length, but were not included in this standard.
1.3 Objectives
In trying to solve the problems above, several objectives were
identified that needed to be achieved in addition to the more technical
matters. These goals comprise the correction of outstanding problems as
well as the validation of this standard.
o Solve the problems listed above while limiting transitional
difficulties while moving away from the former de-facto standards.
o Gain approval distributors, developers, and other important people
in the Linux community, as well as encouraging them to give us
their suggestions.
o Provide a standard that the whole Linux community will choose to
follow because it solves the problems above and provides the most
sensible structure for the filesystems of Linux installations.
Some of these objectives have already been fully or partially met due to
the limited distribution of an advance draft to any developer who
requested one.
1.4 History and Progress
The original message that motivated this effort to restructure the Linux
filesystem was written by Olaf Kirsh <okir@monad.swb.de> on August 2,
1993, to the NORMAL channel of the Linux activists mailing list.
Soon thereafter, it was decided that the best possible way to accomplish
the necessary restructuring of the Linux filesystem would be to create a
- 4 -
Linux Filesystem Structure March 7, 1994
mailing list for the purpose of developing a consensus standard.
After a comprehensive discussion, with surprisingly few flames, a
preliminary draft was written. With the help of several dedicated
people, the draft was finished and the resulting draft submitted to the
FSSTND channel for more discussion. The first draft was submitted to
the channel on September 18, 1993, by Daniel Quinlan.
As the discussion continued and early drafts of FSSTND recommendations
were developed further, contacts were established with accessible Linux
distributors who then offered their input and support to our effort.
Many Linux developers already agree that what we are doing is a good
thing.
These are some of the developers who aim to follow the FSSTND standard
[alphabetical order]:
o Debian Linux
Ian A. Murdock <imurdock@shell.portal.com>
o LILO
Werner Almesberger <almesber@nessie.cs.id.ethz.ch>
o Linux/PRO
Fred N. van Kempen <waltje@uwalt.nl.mugnet.org>
o Slackware Linux
Patrick J. Volkerding <volkerdi@mhd1.moorhead.msus.edu>
o TAMU Linux
Dave Safford <dave.safford@net.tamu.edu>
o util-linux packages
Rik Faith <faith@cs.unc.edu>
1.5 Conformance with this Document
This section defines the meanings of the terms "compliant" and
"compatible" with respect to this standard, and of "partial" compliance
and conformance.
An "implementation" here refers to a distribution, an installed system,
a program, a package (or some similar piece of software or data), or
some component thereof.
An implementation is fully compliant with this standard if every
requirement in this standard is met. Every file or directory which is
part of the implementation must be located as specified in this
document. If the contents of a file are described here the actual
contents must correspond to the description. The implementation must
also attempt to find any files or directories (external to itself)
primarily or exclusively in the location specified in this standard.
- 5 -
Linux Filesystem Structure March 7, 1994
An implementation is fully compatible with this standard if every file
or directory which it contains can be found by looking in the location
specified here and will be found with the contents as specified here,
even if that is not the primary or physical location of the file or
directory in question. The implementation must, when it attempts to
find any files or directories which are not part of it, do so in the
location specified in this standard, though it may also attempt to find
it in other (non-standard) locations.
Note that an implementation does not need to contain all the files and
directories specified in this standard to be compliant or compatible.
It is merely necessary for those files that it does contain to be
located appropriately.
An implementation is partially compliant or compatible if it complies
with or is compatible with a significant subset of this document.
Partial compliance or compatibility is only intended to apply to
distributions and not to separate programs. The phrase "a significant
subset" is admittedly subjective, and in borderline cases, the concerned
party should contact the FSSTND coordinator. It is anticipated that
some variation will be tolerated in borderline cases.
In order to qualify as partially FSSTND compliant or partially FSSTND
compatible an implementation must provide a list of all places at which
it and the FSSTND document differ in addition to a brief explanation of
the reasoning for this difference. This list shall be provided with the
implementation in question, and also made available to the FSSTND
mailing list or the FSSTND coordinator.
The terms "must", "should", "contains", "is" and so forth should be read
as requirements for compliance or compatibility.
Certain portions of this document are optional -- in this case this will
be stated explicitly, or indicated with the use of one or more of "may",
"recommend", or "suggest".
- 6 -
Linux Filesystem Structure March 7, 1994
2. The Filesystem
The UNIX filesystem is characterized by:
o A hierarchical structure
o Consistent treatment of file data
o Protection of file data
This standard on the Linux filesystem follows the same basic principles
that most UNIX filesystems follow. Note that this standard does not
attempt to agree in every possible respect with any particular UNIX
system's implementation. However, many aspects of this standard are
based on ideas found in UNIX and other UNIX-like systems.
This is after careful consideration of other factors, including:
o Common (good) practices in the Linux community
o The existence of other filesystem structures
o Applicable standards
It is possible to define two orthogonal categorizations of files:
shareable vs. unshareable and variable vs. static.
Shareable data is that which can be shared between several different
machines; unshareable is that which must be local to a particular
machine.
Static data includes binaries, libraries, documentation, and anything
that does not change without system administrator intervention; variable
data is anything that does change without system administrator
intervention.
Throughout this document, and in any well planned filesystem, an
understanding of these basic principles will help guide the structure
and lend it additional consistency.
The distinction between shareable and unshareable data is needed for
several reasons:
o In a networked environment (i.e. more than one host at a site),
there is a good deal of data that can be shared between different
machines to save space and ease the task of maintenance.
o In a networked environment, certain filesystems contain information
specific to a single machine. Therefore these filesystems cannot
be shared (without taking special measures).
o The de-facto implementation of /usr cannot be mounted read-only
because it contains files and directories that need to be written
to. This is a factor that must be addressed when /usr is shared on
- 7 -
Linux Filesystem Structure March 7, 1994
a network or mounted read-only because of other considerations such
as safety.
The "shareable" distinction can be used to support, for example:
o A /usr mounted (read-only) through the network (using NFS).
o A /usr mounted from read-only media. (You can think of that CD-ROM
drive as a filesystem that you are sharing with other Linux
systems, using postal mail as a network.)
The "static" versus "variable" distinction affects the filesystem in 2
major ways:
o Since / contains both variable and static data, it needs to be
mounted read-write.
o Since the traditional /usr contains both variable and static data,
and since we want to mount it read-only (see above), it is
necessary to provide a method to have /usr mounted read-only. This
is done through the creation of a /var hierarchy that is mounted
read-write (or is a part of another read-write partition, such as
/), taking over much of the /usr partition's traditional
functionality.
- 8 -
Linux Filesystem Structure March 7, 1994
3. The Root Directory
This section describes the root directory structure. The contents of
the root partition should be adequate to boot, restore, recover, and/or
repair the system:
(1) To boot a system, enough must be present to mount /usr. This
includes utilities, configuration, boot loader information, and
other essential start-up data.
(2) To enable recovery and/or repair of a system, those utilities
needed by an experienced user to diagnose and reconstruct a
damaged system should be present on the root filesystem.
(3) To restore a system, those utilities needed to restore from
system backups (on floppy, tape, etc.) should be present on the
root filesystem.
The primary concern used to balance these considerations, which favor
placing many things on the root filesystem, is the goal of keeping root
as small as reasonably possible. For several reasons it is desirable to
keep the root filesystem small:
(1) It is often mounted from very small media. For example, many
Linux users install and do recovery by mounting root off a RAM
disk which is copied from a single 1.44M or 1.2M floppy disk.
(2) The root partition has many system-specific configuration files
in it. Possible examples include a kernel that is specific to
the system, a different hostname, etc. This means that the root
partition isn't always shareable between networked systems.
Keeping it small on networked systems minimizes the amount of
space lost on servers to unshareable files. It also allows
workstations with smaller local hard drives.
However, with diskless clients, this does not have to be
entirely the case, unless each client has a different root
filesystem image.
(3) While you may have a large root partition, and may be able to
fill it to your heart's content, there will be people with
smaller partitions. If you have more files installed, you may
find incompatibilities with other systems using limited root
partitions. If you are a developer then you may be turning your
assumption into a problem for a large number of users.
(4) Disk errors on the root partition are a greater problem than
errors on any other partition. A small root filesystem is less
prone to corruption as the result of a system crash.
This document as currently drafted requires a writeable root filesystem.
However, this does not necessitate a fully locally stored root. The
root partition doesn't have to be locally stored just to be system
specific -- for example, it might be mounted from an NFS server.
- 9 -
Linux Filesystem Structure March 7, 1994
Software should never create or require special files or subdirectories
in the root directory. This structure provides more than enough
flexibility for any package. Any package that does occupy a directory
directory under the root of the filesystem suffers from sheer arrogance.
/ : the root directory
|
|- bin Essential command binaries
|- boot Static files of the boot loader
|- dev Device files
|- etc Machine-local system configuration
|- home User home directories
|- lib Shared libraries (libc.so.* and ld.so)
|- mnt Mount point of temporary partitions
|- proc Process information pseudo-filesystem
|- root Home directory for root
|- sbin Essential system binaries
|- tmp Temporary files
|- usr Second major permanent mount point
|- var Files that tend to grow or vary in size
+- {kernel image}
Each directory listed will be discussed in detail in a separate
subsection below. /usr and /var each have their own major sections of
this document.
The root directory may contain the current kernel image. The kernel
image name is a matter for local policy, but the we recommend the name
vmlinux which has been used in recent Linux kernel sources. This may or
may not be a link (symbolic or otherwise) to the actual file.
Additional information on kernel placement can be found in the section
regarding /boot, below.
3.1 /bin : Essential command binaries (for use by all users)
/bin contains commands which may be used both by the system
administrator and by users (or indirectly by scripts), but which are
required in single user mode.
All root-only binaries such as daemons, init, getty, update et al should
be placed in /sbin or /usr/sbin, depending on whether they are
essential. For further discussion of the definition of what is
essential on the root filesystem, please read section 6, "Issues and
Additional Rationale".
There should be no subdirectories within /bin.
Command binaries that are not essential enough to place into /bin should
be placed in /usr/bin, instead. Items that are only used by non-root
users (mail, chsh, et al) are not vital to system operation and should
not be placed in the root partition.
- 10 -
Linux Filesystem Structure March 7, 1994
Required files for /bin:
o General commands:
The following commands have been included because they are
essential. A few are present because of their traditional
placement in /bin.
{ arch, cat, chgrp, chmod, chown, cp, date, dd, df, dmesg, echo,
ed, false, kill, ln, loadkeys, login, ls, mkdir, mknod, more,
mount, mv, ps, pwd, rm, rmdir, setserial, sh, stty, su, sync,
true, umount, uname }
If /bin/sh is BASH, then /bin/sh should be a symbolic or hard link
to /bin/bash since BASH behaves differently when called as sh or
bash. The same goes for pdksh, which is often the /bin/sh on
install disks and such (link from /bin/sh to /bin/ksh). The use of
a symbolic link in these cases allows users to easily see that
/bin/sh is not a true Bourne shell.
Both [ and test are built into BASH, pdksh, zsh and recent Korn
shells -- essentially every Bourne shell replacement there is for
Linux. They should be placed into /usr/bin. (They must be
included as separate binaries with any Linux system attempting to
comply with the POSIX.2 standard.)
/bin/arch should produce the same output as uname -m, specifically
i386 or i486 for Intel or Intel-compatible systems.
o Restoration commands:
These commands have been added to make restoration of a system
possible (provided that / is intact).
{ tar, gzip, gunzip (link to gzip), zcat (link to gzip) }
If system backups are made using programs other than gzip and tar,
then the root partition should contain the minimal necessary
restoration components. For instance, many systems should include
cpio as it is the next most commonly used backup utility after tar.
Conversely, if no restoration from the root partition is ever
expected, then these binaries may be omitted (e.g., a ROM chip
root, mounting /usr through NFS). If restoration of a system is
planned through the network, then ftp or tftp (along with
everything necessary to get a ftp connection) should be available
on the root partition.
o Networking commands:
These are the only necessary networking binaries that both root and
users will want or need to execute other than the ones in /usr/bin
or /usr/local/bin.
- 11 -
Linux Filesystem Structure March 7, 1994
{ domainname, hostname, netstat, ping }
3.2 /boot : Static files of the boot loader
This directory contains everything for boot except configuration files
and the map installer. In the simplest sense, /boot is for anything
which is used before the kernel execs /sbin/init. This includes saved
master boot sectors, sector map files, and anything else that is not
directly edited by hand. Programs necessary to arrange for the boot
loader to be able to boot a file (such as the lilo map installer) should
be placed in /sbin. Configuration files for boot loaders should be
placed in /etc.
More specifically, for LILO:
Old location New location
---------------------------------------------
/etc/lilo/config.defines /etc/lilo.defines
/etc/lilo/config /etc/lilo.conf
/etc/lilo/disktab /etc/disktab
/etc/lilo/lilo /sbin/lilo
/etc/lilo/boot.NNNN /boot/boot.NNNN
/etc/lilo/part.NNNN /boot/part.NNNN
/etc/lilo/map /boot/map
/etc/lilo/*.b /boot/*.b
*.b are the first and second stage boot loader, plus the chain loaders.
QuickInst (if it is included) should be placed into /usr/sbin. (The
activate command is left out of this scheme because its future is
uncertain at this time. If a system provides it, and the functionality
is not available in fdisk, it should be in /sbin.)
Kernel images may also be stored in /boot. The main kernel may either
be placed in / or in /boot. If it is placed in /boot, a symbolic or
hard link may be made from / pointing to it.
We recommend that the kernel image in use be present in the root
directory, as a symbolic link at least.
3.3 /dev : Device files
We recommend that /dev also contain a script named MAKEDEV which can
create devices as needed. It may also contain a corresponding
MAKEDEV.local for any local-only devices.
MAKEDEV, if present, should have provisions for creating any device
special file listed in the Linux major/minor numbers list, not just
those that a particular distribution installs.
Symbolic links in /dev should not be distributed with Linux systems, as
- 12 -
Linux Filesystem Structure March 7, 1994
the local setup will often differ from that on the distributor's
development machine. Also, if a distribution install script configures
the symlinks at install time, these symlinks will often not get updated
if local changes are made in hardware. When used responsibly at a local
level, however, they can be put to good use.
This standard incorporates by reference the Linux Device List which is
maintained by Rick Miller <rick@ee.uwm.edu>, the Linux Device Registrar.
All device special files should follow the standard in that document,
which is available by anonymous ftp at sunsite.unc.edu as
/pub/Linux/docs/hardware/DEVICES.
3.4 /etc : Machine-local system configuration
No binaries should go directly into /etc. Binaries that might in the
past have been found in /etc should be placed in /sbin. This includes
such files as init, getty, and update. Binaries such as hostname that
are used by ordinary users as well as the root user should not be placed
in /sbin but in /bin.
/etc : Machine-local system configuration
|
|- X11 Configuration for the X Window system
|- keytables Keyboard translation tables
+- skel Skeleton user configuration
/etc/X11 is the recommended location for all X11 machine-local
configuration. This is necessary to allow local control if /usr is
mounted read only. Files that should be in this directory include
Xconfig, xdm-config, Xmodmap, Xserverrc, the system default Xresources.
Possible subdirectories of /etc/X11 include those for window managers
and xdm.
/etc/keytables contains all keyboard translation tables used by
loadkeys(1). This is required on the root partition so that all
keyboard types can be supported (even in emergencies). Unwanted
keyboard tables may be stored away from the root partition in order to
save space, in which case such keytables should be in
/usr/lib/keytables.
/etc/skel is the location for so-called "skeleton" user files that are
given by default to new users when receiving an account. This directory
may contain subdirectories for different user groups (e.g.,
/etc/skel/staff or /etc/skel/users). Alternatively, skel directories
may be placed each directory which contains contain user home
directories -- see the section on /home, below.
The following section is intended partly to illuminate the description
of the contents of /etc with a number of examples; it is definitely not
an exhaustive list.
- 13 -
Linux Filesystem Structure March 7, 1994
Required files for /etc:
o General files:
These files are needed on most Linux systems.
{ adjtime, csh.login, fdprm, fstab, gettydefs, group, inittab,
issue, ld.so.conf, lilo.conf, magic, motd, mtab, mtools, passwd,
profile, securetty, shells, termcap, ttytype, utmp }
o Networking files:
These files should be installed on most Linux systems.
{ exports, ftpusers, gateways, hosts, host.conf, hosts.equiv,
hosts.lpd, inetd.conf, networks, printcap, protocols,
resolv.conf, rpc, services }
There are two models for setup of the "rc" command scripts which
are invoked by init(8) at boot time, the /etc/rc.* BSD model and
the /etc/rc.d/* System V model. Either model may be used, or a
mixture of the two.
The wtmp log file belongs in /var/adm because it can grow in size
without bound.
Systems that use the shadow password suite will have additional
configuration files in /etc (/etc/shadow and others) and /usr/sbin
(useradd, usermod, et cetera).
Systems that use getty_ps will have a few additional configuration
files which should be placed directly in the /etc directory. Thus
the /etc/default/getty_ps in some current systems should be placed
in /etc/getty_ps.
3.5 /home : User home directories (optional)
/home is a fairly standard concept, but it is clearly a site-specific
filesystem. The setup will differ from machine to machine. This
section describes only a suggested placement for user home directories;
nevertheless we recommend that all Linux distributions use this as the
default location for home directories.
On small systems, each user's directory is typically one of the many
subdirectories of /home such as /home/smith, /home/linus,
/home/operator, etc.
On large systems (especially when the /home directories are shared
amongst many machines using NFS) it is useful to subdivide user home
directories. Subdivision may be accomplished by using subdirectories
such as /home/staff, /home/guests, /home/students, etc.
- 14 -
Linux Filesystem Structure March 7, 1994
Different people prefer to place user accounts in a variety of places.
Therefore, no program should rely on this location. If you want to find
out a user's home directory, you should use the getpwent(3) library
function rather than relying on /etc/passwd because user information may
be stored remotely using systems such as NIS.
The /home directory may also contain the skeleton configuration files
for new user accounts in a skel subdirectory (see the description
/etc/skel above.)
3.6 /lib : Shared libraries (needed to run dynamically linked binaries)
The /lib directory contains those shared library images needed to boot
the system and run the commands in the root filesystem.
This includes /lib/libc.so.* and the shared dynamic linker /lib/ld.so.
Shared libraries that are only necessary for binaries in /usr (such as
any X Window binaries) do not belong in /lib. Only the shared libraries
required to run binaries in /bin and /sbin should be here. The library
libm.so.* may also be placed in /usr/lib if it is not required by
anything in /bin or /sbin.
For compatibility reasons, /lib/cpp needs to exist as a reference to the
C preprocessor installed on the system. The usual placement of this
binary is /usr/lib/gcc-lib/<target>/<version>/cpp. /lib/cpp can either
point at this binary, or at any other reference to this binary which
exists in the filesystem. (For example, /usr/bin/cpp is also often
used.)
3.7 /mnt : Mount point for temporarily mounted filesystems
This directory is provided so that the system administrator may
temporarily mount filesystems as needed. The contents of this directory
is a local issue and should not affect the manner in which any program
is run.
We recommend against the use of this directory by installation programs,
and suggest that a suitable temporary directory not in use by the system
should be used instead.
3.8 /proc : Kernel and process information virtual filesystem
The proc filesystem is becoming the de-facto standard Linux method for
handling process and system information, rather than /dev/kmem and other
similar methods. We strongly encourage this for the storage and
retrieval of process information as well as other kernel and memory
information.
- 15 -
Linux Filesystem Structure March 7, 1994
3.9 /root : Home directory for root (optional)
/ is traditionally the home directory of the root account on UNIX
systems. /root is used on many Linux systems and on some UNIX systems.
The root account's home directory may determined by developer or local
preference. Other possibilities include /, /root, and /home/root.
If root's home directory is not stored on the root partition it will be
necessary to make certain it will default to / if it can not be located.
Note: we recommend against using the root account for mundane things
such as mail and news, but rather to use it solely for systems
administration. For this reason, we recommend that subdirectories such
as Mail and News not appear in the root account's home directory. We
recommend that mail for root and postmaster be forwarded to a more
appropriate user on the same system.
3.10 /sbin : System binaries (binaries once kept in /etc)
Utilities used for system administration (and other root-only commands)
are stored in /sbin, /usr/sbin, and /usr/local/sbin. /sbin typically
contains files essential for the booting phase of starting the system
up. Anything executed after /usr is known to be mounted (when there are
no problems) should be placed into /usr/sbin. Local-only system
administration stuff should now be placed into /usr/local/sbin.
Deciding what things go in sbin directories is simple: If a user will
need to run it, then it should go somewhere else. If it will only be
run by system administrators or as root from system management scripts,
then it should go in /sbin (or in /usr/sbin or /usr/local/sbin if the
item is not vital to system operation).
Files such as chfn which users only occasionally use should still be
placed in /usr/bin. ping, although it is absolutely necessary for root
(network recovery and diagnosis) is often used by users and should live
in /bin for that reason.
Ordinary users should not have to place any of the sbin directories in
their path.
We recommend that users have read and execute permission for everything
in /sbin except, perhaps, certain setuid and setgid programs. The
division between /bin and /sbin was not created for security reasons or
to prevent users from seeing the operating system, but to provide a good
partition between binaries that everyone uses and ones that are
primarily used for administration tasks. There is no inherit security
advantage in making /sbin off-limits for users.
Required files for /sbin:
o General commands:
- 16 -
Linux Filesystem Structure March 7, 1994
{ clock, getty, init, update, mkswap, swapon, swapoff }
o Shutdown commands:
{ halt, reboot, shutdown }
o Filesystem management commands:
{ fdisk, fsck, fsck.*, tunefs (ext2 filesystem only), mkfs, mkfs.*
}
* = one of ext, ext2, minix, msdos, xia
o Bootloader map installer:
{ lilo }
o Networking commands:
{ arp, ifconfig, ifsetup, route }
Optional files for /sbin :
o Static binaries:
Static ln, sln and static sync are useful when things go wrong.
The primary use of sln (to repair hosed symlinks in /lib after a
poorly orchestrated upgrade) is no longer a major factor now that
the ldconfig program exists and can act as a guiding hand in
upgrading the dynamic libraries. Static sync is useful in some
emergency situations. Note that these need not be statically
compiled versions of the standard ln and sync, but may be.
The ldconfig binary is optional for /sbin as well, since if you use
it properly when upgrading the shared libraries in /lib, you won't
need it in root.
{ ldconfig, sln, ssync }
o Miscellaneous:
So as to cope with the fact that some keyboards come up with such a
high repeat rate as to be unusable, kbdrate may be installed in
/sbin on some systems.
{ kbdrate }
- 17 -
Linux Filesystem Structure March 7, 1994
3.11 /tmp : Temporary files
/tmp is used for temporary files, preferably on a fast device (a memory
based filesystem, for instance).
The "persistence" of the data that is stored in /tmp is different from
that which is stored in /var/tmp. /tmp may be cleaned out at boot time
or at relatively frequent intervals. Therefore, data stored in /tmp
should not be expected to remain for any long period.
Programs should use /tmp or /var/tmp (which was originally /usr/tmp)
according to the expected required of the data, but should not rely on
any particular persistence for any temporary storage directories.
/var/tmp and /tmp may be symbolic links to the same directory; if they
are distinct then the persistence of /var/tmp files should be at least
as long as for /tmp.
Beyond that things may be arranged any way that is felt suitable,
perhaps using RAM disks or symlinks.
- 18 -
Linux Filesystem Structure March 7, 1994
4. The /usr Hierarchy
/usr is the second major section of the filesystem. /usr is shareable,
read-only data. That means that /usr should be shareable between
various machines running Linux and should not be written to. Any
information that is machine-local or varies with time is stored
elsewhere.
No large package (such as TeX and GNU Emacs) should use a subdirectory
of /usr. Instead, there should be a subdirectory inside /usr/lib (or
/usr/local/lib if it was installed completely locally).
/usr : Second major mount point (permanent)
|
|- X386 X Window system on x86 platforms
|- bin Most user commands
|- dict Word lists
|- doc Miscellaneous documentation
|- etc Site-wide system configuration
|- games Games and educational binaries
|- include Header files included by C programs
|- info GNU Info system's primary directory
|- lib Libraries
|- local Local directory (empty after main installation)
|- man Online manuals
|- sbin Non-vital system administration binaries
|- share Architecture-independent data
+- src Source code
The following symbolic links to directories should be present. This
requirement is based on the need to preserve compatibility with older
systems until all implementations can be assumed to use the /var
hierarchy.
/usr/adm -> /var/adm
/usr/preserve -> /var/preserve
/usr/spool -> /var/spool
/usr/tmp -> /var/tmp
/var/spool/locks -> /var/lock
The GNU Emacs lock file directory, if Emacs is installed, should be a
symlink pointing to /var/lock/emacs if you want to be able to mount /usr
read-only. It is usually found in /usr/emacs, /usr/lib/emacs, or
/usr/local/lib/emacs (preferably not the first). Further information on
this is located in section 5.3, /var/lock.
- 19 -
Linux Filesystem Structure March 7, 1994
4.1 /usr/X386 : X Window system on x86 platforms
This hierarchy is reserved for the use of XFree86 X11 releases.
/usr/X386 : XFree86 installation directory
|
|- bin
|- doc
|- include
|- lib
+- man
To simplify matters and make XFree86 more compatible with X11 on other
systems, the following symbolic links should be present:
/usr/bin/X11 -> /usr/X386/bin
/usr/lib/X11 -> /usr/X386/lib/X11
/usr/include/X11 -> /usr/X386/include/X11
4.2 /usr/bin : Most user commands
/usr/bin : Binaries that are not needed in single-user mode.
|
|- mh Commands for the MH mail handling system
+- X11 Symlink to /usr/X386/bin
This is the primary directory of executable commands on the system.
4.3 /usr/dict : Word lists
Required files for /usr/dict :
{ words }
Traditionally this directory contains only the English words file, which
is used by look(1) and various spelling programs. words may use either
American or British spelling. Sites that require both may link words to
/usr/dict/american-english or /usr/dict/british-english.
Word lists for other languages may be added using the English name for
that language, e.g., /usr/dict/french, /usr/dict/danish, etc. These
should, if possible, use an ISO 8859 character set which is appropriate
for the language in question; if possible the Latin1 (ISO 8859-1)
character set should be used (this is often not possible).
The rationale behind having only word lists here is that they are the
only files used by all spell checkers. For example, ispell(1) uses a
complicated format for its "hashed dictionaries" that is only useful to
ispell and should thus go in /usr/lib/ispell.
- 20 -
Linux Filesystem Structure March 7, 1994
4.4 /usr/etc : Site-wide system configuration
Storing configuration in /usr/etc for the software found in /usr/bin and
/usr/sbin is a problem. It makes the read-only mounting of /usr through
CD-ROM or NFS delivery very difficult at best.
One possible solution that we considered was to completely eliminate
/usr/etc and specify that all configuration be stored in /etc. A
problem with this approach is that it does not properly anticipate the
possibility that many sites may want to have some configuration files
that are not machine-local.
We eventually decided that /etc should be the only directory that is
actually referenced by programs (that is, everything should look for
configuration in /etc and not in /usr/etc). Any configuration files
that need to be site-wide and are not needed before /usr is mounted (or
in an emergency situation) should then be placed in /usr/etc. Then,
specific files (in /etc) on specific machines may or may not be
symbolically linked to appropriate configuration files located in
/usr/etc. This also means that /usr/etc is technically an optional
directory in the strictest sense, but we still recommend that all Linux
systems incorporate it.
It is not recommended for /usr/etc to contain symbolic links that point
to files in /etc. This is unnecessary and would interfere with local
control on machines that share a /usr directory.
4.5 /usr/include : Directory for standard include files.
This is where all of the system's general-use include files for the C
and C++ programming languages should be placed.
/usr/include : Include files
|- X11 Symlink to /usr/X386/include/X11
|- arpa ARPAnet defined protocol definitions
|- asm Symlink to /usr/src/linux/include/asm
|- bsd BSD compatibility include files
|- g++ GNU C++ include files
|- gnu GNU include files
|- linux Symlink to /usr/src/linux/include/linux
|- net Generic network-related definitions
|- netax25 +AX25 (ARRL AX.25) specific definition
|- netinet TCP/IP specific networking stuff
|- netipx +IPX (Novell IPX/SPX) specific definitions
|- protocols Protocol definitions (mostly INET-based)
|- readline The GNU readline library
|- rpc Sun Microsystems RPC definitions
|- rpcsvc Sun Microsystems RPC service definitions
+- sys System generation include files
The arpa subdirectory contains protocol header definitions and so on for
- 21 -
Linux Filesystem Structure March 7, 1994
the ARPAnet protocols, TCP/IP conversion functions, definitions for ftp,
telnet prototypes, and similar material.
The net subdirectory contains generic network-related definitions. It
defines the system kernel interface, protocol family details, etc.
The netinet subdirectory contains TCP/IP specific networking stuff INET
(DARPA Internet, also known as TCP/IP) specific definitions.
ARRL AX.25 is better known as packet radio and Novell IPX/SPX is better
known as Novell NetWare.
4.6 /usr/lib : Libraries for programming and packages
/usr/lib : Libraries for programming and packages
|
|- X11 Symbolic link to /usr/X386/lib/X11
|- emacs Support files for the GNU Emacs editor
|- groff Libraries/directories for GNU groff
|- gcc-lib System specific files/directories for GCC
|- mh Libraries for the MH mail handling system
|- news Cnews/INN
|- smail Smail
|- terminfo Directories for terminfo database
|- texmf TeX (and LaTeX) data libraries
|- uucp Commands for UUCP
+- zoneinfo Timezone information and configuration
/usr/lib includes object libraries, compiler program binaries, and
static data of various kinds -- both executable code (for example, GCC's
internal binaries are located under /usr/lib/gcc-lib) and other types of
data.
Historically, it has also included some commands such as sendmail and
makewhatis.
Since makewhatis is not referenced by other programs, there is no
problem with moving it to a binary directory. However, since users have
good cause to use makewhatis, /usr/bin is where it belongs.
Note that the catman binary (which replaces the makewhatis script on
many Linux systems) should also be placed in /usr/bin.
The sendmail binary is referenced by many programs by its historical
name, /usr/lib/sendmail. This should be a symbolic link to the standard
location for mail transfer agents with a sendmail-compatible command
line interface, /usr/sbin/sendmail.
Systems using Smail should place Smail in /usr/bin/smail, and
/usr/sbin/sendmail should be a symbolic link to it.
- 22 -
Linux Filesystem Structure March 7, 1994
This arrangement also conforms to the new standard sendmail location as
defined in Sendmail 8.6.x and 4.4BSD. Note that this placement demands
that /usr/sbin and /usr/sbin/sendmail must be executable by normal
users.
smail is stored in /usr/bin because normal users as well as system
administrators may want to use it from the command line.
Any program or package which requires data to itself (and that it does
not need to modify) should store that data in /usr/lib (or in
/usr/local/lib if it is installed locally). It is recommended that a
subdirectory be used in /usr/lib for this purpose.
Note: No host-specific data for the X Window system should be stored in
/usr/lib/X11 (which is really /usr/X386/lib/X11). Host-specific
configuration should be stored in /etc/X11 and host-specific variable
data such as X authorization cookie files should be stored in /var/X11.
4.7 /usr/local : Local directory
/usr/local : Local directory
|
|- bin Local only binaries
|- doc Local Documentation
|- etc Configuration for local only binaries
|- games Locally installed games
|- lib Libraries for /usr/local
|- info Local info pages
|- man Man page hierarchy for /usr/local
|- sbin Local only system administration
+- src Local source code
The /usr/local 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 used for programs and data
that are shareable amongst a group of machines, but not found in /usr.
This directory should always be empty after first installing Linux. No
exceptions to this rule should be made other than the listed directory
stubs.
Locally installed software should be placed within /usr/local rather
than /usr unless it is being installed to replace or upgrade software in
/usr.
Note that software placed in / or /usr may be overwritten by system
upgrades (though we recommend that distributions do not overwrite data
in /etc under these circumstances). For this reason, local software
should not be placed outside of /usr/local without good reason.
- 23 -
Linux Filesystem Structure March 7, 1994
4.8 /usr/man : Manual pages
/usr/man : Manual page hierarchy
|
|- man1 User programs
|- man2 System calls
|- man3 Library functions and subroutines
|- man4 Devices
|- man5 File formats
|- man6 Games
|- man7 Miscellaneous
|- man8 System Administration
+- man9 Kernel internal variables and functions
The cat page sections (cat[1-9]) containing formatted manual page
entries are also found within subdirectories of /usr/man, but are not
required nor should they be distributed in lieu of nroff source manual
pages.
Local and X Windows manual pages should be stored in /usr/local/man and
/usr/X386/man, respectively. These directories have a similar structure
to /usr/man (man[1-9], cat[1-9], empty subdirectories being omitted).
The MH mail handling system manual pages should have mh affixed to all
manual page filenames. X11 manual pages usually have x affixed to all
X11 manual pages.
As Linux is more extensively used in countries where English is not the
primary language, translations of manual pages are often developed.
There is the impending problem that these manual pages will have to be
stored somewhere else. Some German Linux distributions have already
created a manual page system that is placed in /usr/man with the suffix
g. This is likely to cause problems in the long run as other languages
appear, particularly other languages which begin with the same letter,
such as Greek. There is also the additional problem that manual pages
will be formatted in many different character code formats. Even within
the ISO 8859 character code standards, each separate implementation is
incompatible with each other implementation.
Therefore, all non-English manual pages sections should be stored in
subdirectories within /usr/man named according to the language that the
the contained manual pages are written in (lowercase characters). Thus,
for German manual pages:
/usr/man/german/man[1-9] and possibly /usr/man/german/cat[1-9]
Then, German-speaking Linux users can add /usr/man/german to their
manual search path before /usr/man so that German manual pages are
referenced first.
A better scheme would be one such as found on HP-UX systems: a manual
pager that is based on NLS (native language support) or an NLS-like
system which obeys a LANG environment variable. This support is
- 24 -
Linux Filesystem Structure March 7, 1994
currently not available for Linux systems, and therefore what follows is
slightly presumptive.
Under this scheme, if a German manual page is not located for a given
command then the English version may be referenced automatically. This
structure is designed with the intention that it may make a smooth
transition from being supported through the MANPATH environment variable
to support through a LANG environment variable, making the MANPATH
language-independent. It would be good if such software were to possess
the ability to handle various character code standards, but conjecture
on how to implement this handling is not feasible at this time.
Functionality of this form will be needed as the number of foreign (non-
English) manual pages increases. German is the language mentioned here
since it is the only non-English manual page system distributed with any
Linux system at this time. Other languages will probably follow and
they should try to conform to this scheme as well (if it proves to be
adequate).
The practice of placing non-English manual pages in subdirectories of
/usr/man also applies to the other manual page hierarchies, such as
/usr/local/man and /usr/X11/man. (This portion of the FSSTND also
applies later in section 5.3 on the optional /var/catman structure.)
Note: Using the language's own name for itself ("deutsch") rather than
the English ("german") was considered, but this was met with disapproval
from many people, including those who do not speak English as a first
language. The reasons include: simplicity, the difficulty in displaying
many languages' names in ASCII characters, and the fact that everyone
should be able to recognize their language name in English.
A description of each section follows:
o man1: User programs
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.
o man2: System calls
This section describes all of the system calls (requests for the
Linux kernel to perform operations).
o man3: Library functions and subroutines
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.
o man4: Special files
Section 4 describes the special files, related driver functions,
and networking support available in the system. Typically, this
includes the device files found in /dev and the kernel interface to
networking protocol support.
- 25 -
Linux Filesystem Structure March 7, 1994
o man5: File formats
The formats for many nonintuitive data files are documented in the
section 5. This includes various include files, program output
files, and system files.
o man6: Games
This chapter documents games, demos, and generally trivial
programs. Different people have various notions about how
essential this is.
o man7: Miscellaneous
Manual pages that are difficult to classify are designated as being
section 7. The troff and other text processing macro packages are
found here.
o man8: System administration
Documentation for programs used by system administrators for system
operation and maintenance are documented here. Some of these
programs are also occasionally useful for normal users.
o man9: Kernel internal variables and functions
This is used on Linux systems to document the kernel source code.
4.9 /usr/sbin : Non-essential standard system binaries
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 /usr, or other
essential functions should be placed in /sbin instead.
Typically, /usr/sbin contains networking daemons, any non-essential
administration tools, and binaries for non-critical server programs.
These server programs are used when entering the System V states known
as "run level 2" (multi-user state) and "run level 3" (networked state)
or the BSD state known as "multi-user mode". At this point the system
is making services available to users (e.g., printer support) and to
other machines (e.g., NFS exports).
Locally installed system administration programs should be placed in
/usr/local/sbin.
4.10 /usr/share : Architecture-independent data
Any specifications for /usr/share will be included in a supplementary
drafts to the main FSSTND standard. Note that it is the consensus
opinion of FSSTND that /usr/share is not needed on the majority of Linux
systems. At this time, confining ourselves by providing an extensive
definition of this directory would be a bad idea.
Please refer to section 6.2 for more detailed description of /usr/share.
- 26 -
Linux Filesystem Structure March 7, 1994
4.11 /usr/src : Source code
/usr/src : Source code
|
+- linux Source code for Linus' kernel
Any non-local source code should be placed in this subdirectory. The
only source code that should always be placed in a specific location is
the kernel source (when present or linked in part to the /usr/include
structure). Subdirectories may be used here if desired.
The source code for the kernel should always be in place or at least the
include files from the kernel source. Those files are located in these
directories:
/usr/src/linux/include/asm
/usr/src/linux/include/linux
/usr/include should contain links to these directories, named asm and
linux. Since they are needed by the C compiler, at least those include
files should always be distributed with installations which include a C
compiler. They should be distributed in the /usr/src/linux directory so
there are no problems when system administrators upgrade their kernel
version for the first time.
/usr/src/linux may also be a symbolic link to a kernel source code tree.
- 27 -
Linux Filesystem Structure March 7, 1994
5. The /var Hierarchy
/var : Directories of files that tend to grow or vary in size
|
|- X11 Variable files/directories for the X Window System
|- adm System logging and accounting files
|- catman Locally-formatted manual pages
|- domain DNS files, networking only
|- lock Lock files
|- nis Network Information Service (NIS) database files
|- preserve Saved text edited by vi after crash or hang-up
|- spool Directories for queue work to be performed later
+- tmp Temporary files, used to keep /tmp small
/var contains variable data files. This includes spools directories and
files, administrative and logging data, and transient and temporary
files.
/var is specified here in order to make it possible to mount /usr read-
only. Everything that once went into /usr that is written to during
system operation (as opposed to installation and software maintenance)
should be in /var.
5.1 /var/X11 : Variable data for the X Window System
/var/X11 : Host-specific data relevant to X
|
+- xdm X display manager files
Programs such as xdm should store their transient data (X authority
cookie files, for example) here in /var/X11.
xdm binaries such as the chooser should still be placed in the
historical location in /usr/X386/lib/X11/xdm.
5.2 /var/adm : System logging and accounting files
All system logging should be written to this subdirectory and not to
/var/log. wtmp and lastlog should be stored here.
/var/adm is also the appropriate location for all distribution packaging
support. Until there is a common Linux packaging format, package data
should be stored in distribution specific subdirectories of this
directory.
5.3 /var/catman : Locally-formatted manual pages (optional)
This directory provides a standard location for sites that provide a
- 28 -
Linux Filesystem Structure March 7, 1994
read-only /usr partition, but wish to allow caching of locally-formatted
man pages. Sites that mount /usr as writeable (e.g., single-user
installations) may choose not to use /var/catman and write formatted man
pages into the cat[1-9] directories in /usr directly. We recommend that
most sites use one of the following options instead:
o Preformat all manual pages in /usr with the catman program.
o Allow no caching of formatted man pages, and require nroff to be
run each time a man page is brought up.
o Allow local caching of formatted man pages in /var/catman.
The structure of /var/catman needs to reflect both the fact of multiple
man page hierarchies and the possibility of multiple language support.
Given a formatted man page that would normally appear in /usr/<path1>,
the cached formatted version should go in /var/catman/<path2>, where
<path2> is <path1> without the man component. Thus /usr/man/mat1/ls.1
is formatted into /var/catman/cat1/ls.1, and
/usr/X386/man/german/man3/XtClass.3 into
/var/catman/X386/german/cat3/XtClass.3.
Note: current versions of the man program do not support this proposed
standard. Until such support is available, sites must choose between
preformatting cat pages in /usr (or mounting /usr as writeable), and
symlinking the various cat[1-9] directories to the appropriate
subdirectory of /var/catman.
Man pages written to /var/catman/cat[1-9] may eventually be transferred
to /usr/<path>/cat[1-9] or expired; likewise formatted man pages in
/usr/<path>/cat[1-9] may be expired if they are not accessed for a
period of time.
5.4 /var/domain : DNS files
This directory contains all the nameserver's working files. Static
configuration files should be placed in /etc.
5.5 /var/lock : Lock files
Lock files should be stored within the /var/lock directory structure.
/var/lock : Lock files
|
+- emacs Emacs lock files
To preserve the ability to mount /usr read-only, no lock files should be
placed on the /usr partition.
Device lock files, such as the serial device lock files which are
- 29 -
Linux Filesystem Structure March 7, 1994
currently found in either /usr/spool/locks or /usr/spool/uucp, should
now be stored in /var/lock. The naming convention which should be used
is "LCK.." followed by the base name of the device. For example, to
lock /dev/cua0 the file "LCK..cua0" would be created.
The format used for Linux device lock files should be the HDB UUCP lock
file format. The HDB format is to store the process ID as a ten byte
ASCII decimal number, with a trailing newline. For example, if process
1230 holds a lock file, it would contain the eleven characters: space,
space, space, space, space, space, one, two, three, zero, newline.
Then, anything wishing to use /dev/cua0 can observe the lock file and
act accordingly.
Programs with large lock file systems should use a subdirectory of
/var/lock. For instance, GNU Emacs normally stores Emacs lock files in
/usr/lib/emacs/lock. This poses a serious problem if you are trying to
mount /usr read-only. Emacs lock files should instead be placed in
/var/lock/emacs.
If you are a developer/maintainer of an application which uses lock
files in any manner, it is a good idea to contact the FSSTND coordinator
or one of the contributors to discuss the arrangement of your lock
files.
At this time, lock files which are stored in /etc, such as pid lock
files, should remain in /etc.
5.6 /var/nis : Network Information Service (NIS) database files
The Network Information Service (NIS) was formerly known as the Sun
Yellow Pages (YP). The functionality and directory placement of the two
is the same, but the name "Yellow Pages" is a registered trademark in
the United Kingdom, belonging to British Telecommunications plc, and may
not be used without permission.
5.7 /var/spool : Spool directories
/var/spool is traditionally used for machine-local data being spooled to
or from UNIX subsystems. For example, print jobs are spooled here for
delivery to the lineprinter daemon, out-bound mail is spooled for
delivery to remote systems, and UUCP files are spooled for transmission
to UUCP neighbors. In-bound mail and news are spooled here for delivery
to users, and at and cron jobs are spooled for delayed execution by the
cron daemon.
- 30 -
Linux Filesystem Structure March 7, 1994
/var/spool : Spool directories
|
|- at at jobs
|- cron cron jobs
|- lpd Printer spool directory
|- mail Directory for user mailboxes
|- mqueue Outgoing mail queue
|- news News spool directory
|- rwho Rwhod files
+- uucp Spool directory for UUCP
UUCP lock files should be placed in /var/lock. See the above section on
/var/lock.
5.7.1 /var/spool/lpd
/var/spool/lpd : Printer spool directory
|
|- {printer} Spools for a specific printer
+- {printer}/lock Lock file for a specific printer
The lock file for lpd, lpd.lock, should be placed in /var/spool/lpd.
The lock file for each printer should be placed in the spool directory
for that specific printer.
5.8 /var/tmp : temporary files, used to keep /tmp small
Files in /var/tmp are stored for an unspecified duration (please
remember that system temporary directories are not guaranteed to hold
data for any particular duration).
Data stored in /var/tmp is typically cleaned out "in a site-specific
manner", but usually at less frequent intervals than /tmp. More
information on temporary directories is in the section of the standard
devoted to /tmp (above).
There should be a symbolic link from /usr/tmp to /var/tmp, for
compatibility reasons.
- 31 -
Linux Filesystem Structure March 7, 1994
6. Issues and Additional Rationale
This section discusses several areas that may require further
explanation.
6.1 What is Essential?
The answer is: essential to clean, create, prepare, check, find and
mount other filesystems (possibly on remote machines). There are other
definitions, but this is a general definition that most people will at
least incorporate into their own.
6.2 Networking
Networking presented an interesting dilemma. Some people wanted to
separate networking binaries and configuration from other binaries and
configuration. However, we disagree. We feel that networking is not a
"package", but an integral part of most UNIX (and UNIX-like) machines.
Because of this networking should not be placed into a single directory,
but systematically placed in the appropriate directories.
o /bin: anything a user will want to use that is also considered
vital
{ hostname, netstat, ping, etc. }
o /sbin: anything only root needs and is considered vital
{ arp, ifconfig, ifsetup, route }
o /usr/bin: any binaries a user will want to use, and which are not
vital
{ finger, rcp, rlogin, telnet }
o /usr/sbin: any administrator only binaries that are not vital
{ ftpd, inetd, lpd, telnetd, etc. }
While this may seem confusing at first (and it does take a moment to
digest), it does make sense. If you can only mount root for some reason
and you need access to networking to repair your system, you don't need
the files to be off in /usr/etc (as they often are). Files that are
needed to mount /usr in normal (and emergency) situations are placed on
the root subtree and any others are placed in /usr in order to keep the
size of the root filesystem small.
Configuration files for networking belong in /etc.
6.3 Architecture-independent Structures
The directory /usr/share typically contains architecture-independent
files such as man-pages, timezone, terminfo information, et al. As of
this time, there are no different architectures for Linux, but with the
passage of time we should see Linux include other architectures and
- 32 -
Linux Filesystem Structure March 7, 1994
other UNIX-like systems.
One note: no program should ever reference anything in /usr/share. For
instance, a manual page program should never directly look in
/usr/share/man/man1/ls.1, but it should refer to /usr/man/man1/ls.1 at
all times. Anything in /usr/share will be "pointed to" by the use of
symlinks from other areas in the filesystem, such as /usr/man,
/usr/lib/{something}, etc.
The specifications for /usr/share are still being worked on.
6.4 Symbolic Links
There are a wide range of uses for symbolic links (symlinks) in every
filesystem. While symlinks are not encouraged for default setup (found
after installing Linux) in a standard such as this, they are often used
with good purpose on different systems. The point is that symlinks
should be there to keep everything where everyone else expects find it.
Be prepared to accept that certain directories, even those contained on
the root directory, are still going to be symlinks. For instance, on
some systems /home will not be on the root, but symlinked to a /var
directory, or to somewhere else. /home could also have its own physical
partition, of course, and be mounted on its own.
Similarly, because /usr might be on a central file server mounted via
NFS, /usr/local could be symlinked to /var/local. Like
/usr/lib/emacs/lock, this change can be justified by recalling the main
reason for having /var: to separate directories of files that vary with
time and between different systems and machines from those that may be
shared and read-only.
Sometimes systems will also link /tmp to /var/{something} if the root
partition becomes too small (or starts out too small). There are more
examples of "good" uses of symbolic links, but the entire issue boils
down to two things: packages should be able to find things where they
expect them (within reason) and symbolic links can be used to solve the
problem in many cases. However, problems also can arise from using too
many symbolic links. These problems include over-reliance on symbolic
links to solve problems, confusion resulting from overuse of symbolic
links, and the aesthetic preferences of different people.
6.5 Statically linked binaries
Linux is currently running on a wide variety of systems, some single
user with small disks, some as servers in large networked environments.
Because of this variety, this standard sets no rule regarding what
binaries are static or dynamic with the following two exceptions. Both
ln and sync should exist in /bin; any statically linked versions may be
placed in /sbin, or replace those in /bin.
Large Linux systems may wish to include other statically linked binaries
- 33 -
Linux Filesystem Structure March 7, 1994
(sh, init, mkfs, fsck, tunefs, mount, umount, swapon, swapoff, getty,
login, etc.). Developers and/or system administrators are free to
statically/dynamically link these and other binaries as they see fit, as
long as the location of the binaries doesn't change.
Networked systems (especially those of the future which may lack floppy
drives), may want to link ifconfig, route, hostname, and other
networking utilities statically as well. This is usually not needed.
- 34 -
Linux Filesystem Structure March 7, 1994
The FSSTND mailing list
The FSSTND mailing list is located at <linux-fsstnd@ucsd.edu>. This
list was originally located on the <linux-activists@Niksula.hut.fi>
"Mail-Net" as the FSSTND channel. (To subscribe to the list send mail
to <listserv@ucsd.edu> with body "ADD linux-fsstnd".)
Thanks to Network Operations at the University of California at San
Diego who allowed us to use their excellent mailing list server.
As noted in the introduction, please do not send mail to the mailing
list without first contacting the FSSTND coordinator or a listed
contributor.
Acknowledgments
Credit for this text should be given to the FSSTND activists,
developers, system administrators, and users whose input was essential
to this standard. I also wish to thank each of the contributors who
helped me to write, compile, and compose this, a consensus standard.
I also wish to give real credit to those Linux developers who have seen
that giving Linux a common filesystem layout is something that will
further the development of the Linux operating system. I also wish to
note the bravery and perseverance of those Linux developers who started
following this standard before it was completed.
Original contributors
Drew Eckhardt <drew@kinglear.cs.colorado.edu>
Ian Jackson <ijackson@nyx.cs.du.edu>
Ian McCloghrie <ian@ucsd.edu>
Daniel Quinlan <quinlan@bucknell.edu>
Mike Sangrey <mike@sojurn.lns.pa.us>
David H. Silber <dhs@glowworm.firefly.com>
Theodore Ts'o <tytso@athena.mit.edu>
Stephen Tweedie <sct@dcs.ed.ac.uk>
Additional contributors
Brandon S. Allbery <bsa@kf8nh.wariat.org>
Rik Faith <faith@cs.unc.edu>
Stephen Harris <hsw1@papa.attmail.co>
Fred N. van Kempen <waltje@uwalt.nl.mugnet.org>
John A. Martin <jmartin@csc.com>
Chris Metcalf <metcalf@lcs.mit.edu>
Ian Murdock <imurdock@shell.portal.com>
David C. Niemi <niemidc@oasis.gtegsc.com>
- 35 -
CONTENTS
1. General ........................................................... 2
1.1 Scope ........................................................ 2
1.2 Specific Problems ............................................ 3
1.3 Objectives ................................................... 4
1.4 History and Progress ......................................... 4
1.5 Conformance with this Document ............................... 5
2. The Filesystem .................................................... 7
3. The Root Directory ................................................ 9
3.1 /bin : Essential command binaries (for use by all users) .... 10
3.2 /boot : Static files of the boot loader ..................... 12
3.3 /dev : Device files ......................................... 12
3.4 /etc : Machine-local system configuration ................... 13
3.5 /home : User home directories (optional) .................... 14
3.6 /lib : Shared libraries (needed to run dynamically linked
binaries) ................................................... 15
3.7 /mnt : Mount point for temporarily mounted filesystems ...... 15
3.8 /proc : Kernel and process information virtual filesystem ... 15
3.9 /root : Home directory for root (optional) .................. 16
3.10 /sbin : System binaries (binaries once kept in /etc) ........ 16
3.11 /tmp : Temporary files ...................................... 18
4. The /usr Hierarchy ............................................... 19
4.1 /usr/X386 : X Window system on x86 platforms ................ 19
4.2 /usr/bin : Most user commands ............................... 20
4.3 /usr/dict : Word lists ...................................... 20
4.4 /usr/etc : Site-wide system configuration ................... 21
4.5 /usr/include : Directory for standard include files. ........ 21
4.6 /usr/lib : Libraries for programming and packages ........... 22
4.7 /usr/local : Local directory ................................ 23
4.8 /usr/man : Manual pages ..................................... 24
4.9 /usr/sbin : Non-essential standard system binaries .......... 26
4.10 /usr/share : Architecture-independent data .................. 26
4.11 /usr/src : Source code ...................................... 27
5. The /var Hierarchy ............................................... 28
5.1 /var/X11 : Variable data for the X Window System ............ 28
5.2 /var/adm : System logging and accounting files .............. 28
5.3 /var/catman : Locally-formatted manual pages (optional) ..... 28
5.4 /var/domain : DNS files ..................................... 29
5.5 /var/lock : Lock files ...................................... 29
5.6 /var/nis : Network Information Service (NIS) database files . 30
5.7 /var/spool : Spool directories .............................. 30
5.8 /var/tmp : temporary files, used to keep /tmp small ......... 31
6. Issues and Additional Rationale .................................. 32
6.1 What is Essential? .......................................... 32
6.2 Networking .................................................. 32
i
6.3 Architecture-independent Structures ......................... 32
6.4 Symbolic Links .............................................. 33
6.5 Statically linked binaries .................................. 33
ii