
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.funtoo.org/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.funtoo.org/index.php?title=The_Root_Filesystem&amp;feed=atom&amp;action=history</id>
		<title>The Root Filesystem - Revision history</title>
		<link rel="self" type="application/atom+xml" href="http://www.funtoo.org/index.php?title=The_Root_Filesystem&amp;feed=atom&amp;action=history"/>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/index.php?title=The_Root_Filesystem&amp;action=history"/>
		<updated>2013-05-24T20:05:00Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.20.6</generator>

	<entry>
		<id>http://www.funtoo.org/index.php?title=The_Root_Filesystem&amp;diff=2135&amp;oldid=prev</id>
		<title>Brantgurga: Split out the root filesystem section into its own page.</title>
		<link rel="alternate" type="text/html" href="http://www.funtoo.org/index.php?title=The_Root_Filesystem&amp;diff=2135&amp;oldid=prev"/>
				<updated>2010-11-07T05:05:38Z</updated>
		
		<summary type="html">&lt;p&gt;Split out the root filesystem section into its own page.&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;The contents of the root filesystem must be adequate to boot, restore, recover, and/or repair the system.&lt;br /&gt;
&lt;br /&gt;
* To boot a system, enough must be present on the root partition to mount other filesystems. This includes utilities, configuration, boot loader information, and other essential start-up data. /usr, /opt, and /var are designed such that they may be located on other partitions or filesystems.&lt;br /&gt;
* To enable recovery and/or repair of a system, those utilities needed by an experienced maintainer to diagnose and reconstruct a damaged system must be present on the root filesystem.&lt;br /&gt;
* To restore a system, those utilities needed to restore from system backups (on floppy, tape, etc.) must be present on the root filesystem.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
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:&lt;br /&gt;
&lt;br /&gt;
* It is occasionally mounted from very small media.&lt;br /&gt;
* The root filesystem contains many system-specific configuration files. Possible examples include a kernel that is specific to the system, a specific hostname, etc. This means that the root filesystem isn't always shareable between networked systems. Keeping it small on servers in networked systems minimizes the amount of lost space for areas of unshareable files. It also allows workstations with smaller local hard drives.&lt;br /&gt;
* While you may have the root filesystem on a large 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 root filesystems on smaller partitions. If you are a developer then you may be turning your assumption into a problem for a large number of users.&lt;br /&gt;
* Disk errors that corrupt data on the root filesystem 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.&lt;br /&gt;
&lt;br /&gt;
Applications must never create or require special files or subdirectories in the root directory. Other locations in the FHS hierarchy provide more than enough flexibility for any package.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
There are several reasons why creating a new subdirectory of the root filesystem is prohibited:&lt;br /&gt;
&lt;br /&gt;
* It demands space on a root partition which the system administrator may want kept small and simple for either performance or security reasons.&lt;br /&gt;
* It evades whatever discipline the system administrator may have set up for distributing standard file hierarchies across mountable volumes.&lt;br /&gt;
&lt;br /&gt;
Distributions should not create new directories in the root hierarchy without extremely careful consideration of the consequences including for application portability.&lt;br /&gt;
&lt;br /&gt;
== Requirements ==&lt;br /&gt;
&lt;br /&gt;
The following directories, or symbolic links to directories, are required in /.&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
!Directory!!Description&lt;br /&gt;
|-&lt;br /&gt;
|bin||Essential command binaries&lt;br /&gt;
|-&lt;br /&gt;
|boot||Static files of the boot loader&lt;br /&gt;
|-&lt;br /&gt;
|dev||Device files&lt;br /&gt;
|-&lt;br /&gt;
|etc||Host-specific system configuration&lt;br /&gt;
|-&lt;br /&gt;
|lib||Essential shared libraries and kernel modules&lt;br /&gt;
|-&lt;br /&gt;
|media||Mount point for removeable media&lt;br /&gt;
|-&lt;br /&gt;
|mnt||Mount point for mounting a filesystem temporarily&lt;br /&gt;
|-&lt;br /&gt;
|opt||Add-on application software packages&lt;br /&gt;
|-&lt;br /&gt;
|sbin||Essential system binaries&lt;br /&gt;
|-&lt;br /&gt;
|srv||Data for services provided by this system&lt;br /&gt;
|-&lt;br /&gt;
|tmp||Temporary files&lt;br /&gt;
|-&lt;br /&gt;
|usr||Secondary hierarchy&lt;br /&gt;
|-&lt;br /&gt;
|var||Variable data&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
Each directory listed above is specified in detail in separate subsections below. /usr and /var each have a complete section in this document due to the complexity of those directories.&lt;br /&gt;
== Specific Options ==&lt;br /&gt;
&lt;br /&gt;
The following directories, or symbolic links to directories, must be in /, if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
Directory	Description&lt;br /&gt;
home	User home directories (optional)&lt;br /&gt;
lib&amp;lt;qual&amp;gt;	Alternate format essential shared libraries (optional)&lt;br /&gt;
root	Home directory for the root user (optional)&lt;br /&gt;
&lt;br /&gt;
Each directory listed above is specified in detail in separate subsections below.&lt;br /&gt;
== /bin : Essential user command binaries (for use by all users) ==&lt;br /&gt;
/bin contains commands that may be used by both the system administrator and by users, but which are required when no other filesystems are mounted (e.g. in single user mode). It may also contain commands which are used indirectly by scripts. &amp;lt;ref&amp;gt;Command binaries that are not essential enough to place into /bin must be placed in /usr/bin, instead. Items that are required only by non-root users (the X Window System, chsh, etc.) are generally not essential enough to be placed into the root partition.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
There must be no subdirectories in /bin.&lt;br /&gt;
&lt;br /&gt;
The following commands, or symbolic links to commands, are required in /bin.&lt;br /&gt;
&lt;br /&gt;
Command	Description&lt;br /&gt;
cat	Utility to concatenate files to standard output&lt;br /&gt;
chgrp	Utility to change file group ownership&lt;br /&gt;
chmod	Utility to change file access permissions&lt;br /&gt;
chown	Utility to change file owner and group&lt;br /&gt;
cp	Utility to copy files and directories&lt;br /&gt;
date	Utility to print or set the system data and time&lt;br /&gt;
dd	Utility to convert and copy a file&lt;br /&gt;
df	Utility to report filesystem disk space usage&lt;br /&gt;
dmesg	Utility to print or control the kernel message buffer&lt;br /&gt;
echo	Utility to display a line of text&lt;br /&gt;
false	Utility to do nothing, unsuccessfully&lt;br /&gt;
hostname	Utility to show or set the system's host name&lt;br /&gt;
kill	Utility to send signals to processes&lt;br /&gt;
ln	Utility to make links between files&lt;br /&gt;
login	Utility to begin a session on the system&lt;br /&gt;
ls	Utility to list directory contents&lt;br /&gt;
mkdir	Utility to make directories&lt;br /&gt;
mknod	Utility to make block or character special files&lt;br /&gt;
more	Utility to page through text&lt;br /&gt;
mount	Utility to mount a filesystem&lt;br /&gt;
mv	Utility to move/rename files&lt;br /&gt;
ps	Utility to report process status&lt;br /&gt;
pwd	Utility to print name of current working directory&lt;br /&gt;
rm	Utility to remove files or directories&lt;br /&gt;
rmdir	Utility to remove empty directories&lt;br /&gt;
sed	The `sed' stream editor&lt;br /&gt;
sh	The Bourne command shell&lt;br /&gt;
stty	Utility to change and print terminal line settings&lt;br /&gt;
su	Utility to change user ID&lt;br /&gt;
sync	Utility to flush filesystem buffers&lt;br /&gt;
true	Utility to do nothing, successfully&lt;br /&gt;
umount	Utility to unmount file systems&lt;br /&gt;
uname	Utility to print system information&lt;br /&gt;
&lt;br /&gt;
If /bin/sh is not a true Bourne shell, it must be a hard or symbolic link to the real shell command.&lt;br /&gt;
&lt;br /&gt;
The [ and test commands must be placed together in either /bin or /usr/bin.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
For example bash behaves differently when called as sh or bash. The use of a symbolic link also allows users to easily see that /bin/sh is not a true Bourne shell.&lt;br /&gt;
&lt;br /&gt;
The requirement for the [ and test commands to be included as binaries (even if implemented internally by the shell) is shared with the POSIX.2 standard.&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
The following programs, or symbolic links to programs, must be in /bin if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
Command	Description&lt;br /&gt;
csh	The C shell (optional)&lt;br /&gt;
ed	The `ed' editor (optional)&lt;br /&gt;
tar	The tar archiving utility (optional)&lt;br /&gt;
cpio	The cpio archiving utility (optional)&lt;br /&gt;
gzip	The GNU compression utility (optional)&lt;br /&gt;
gunzip	The GNU uncompression utility (optional)&lt;br /&gt;
zcat	The GNU uncompression utility (optional)&lt;br /&gt;
netstat	The network statistics utility (optional)&lt;br /&gt;
ping	The ICMP network test utility (optional)&lt;br /&gt;
&lt;br /&gt;
If the gunzip and zcat programs exist, they must be symbolic or hard links to gzip. /bin/csh may be a symbolic link to /bin/tcsh or /usr/bin/tcsh.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
The tar, gzip and cpio commands have been added to make restoration of a system possible (provided that / is intact).&lt;br /&gt;
&lt;br /&gt;
Conversely, if no restoration from the root partition is ever expected, then these binaries might 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 an ftp connection) must be available on the root partition.&lt;br /&gt;
== /boot : Static files of the boot loader ==&lt;br /&gt;
This directory contains everything required for the boot process except configuration files not needed at boot time and the map installer. Thus /boot stores data that is used before the kernel begins executing user-mode programs. This may include saved master boot sectors and sector map files. &amp;lt;ref&amp;gt;Programs necessary to arrange for the boot loader to be able to boot a file must be placed in /sbin. Configuration files for boot loaders must be placed in /etc.&lt;br /&gt;
&lt;br /&gt;
The GRUB bootloader reads its configurations file before booting, so that must be placed in /boot. However, it is a configuration file, so should be in /etc. The answer here is a symbolic link such as /etc/grub/menu.lst -&amp;gt; /boot/menu.lst.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
The operating system kernel must be located in either / or /boot. &amp;lt;ref&amp;gt;On some i386 machines, it may be necessary for /boot to be located on a separate partition located completely below cylinder 1024 of the boot device due to hardware constraints.&lt;br /&gt;
&lt;br /&gt;
Certain MIPS systems require a /boot partition that is a mounted MS-DOS filesystem or whatever other filesystem type is accessible for the firmware. This may result in restrictions with respect to usable filenames within /boot (only for affected systems).&amp;lt;/ref&amp;gt;&lt;br /&gt;
== /dev : Device files ==&lt;br /&gt;
&lt;br /&gt;
The /dev directory is the location of special or device files.&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
If it is possible that devices in /dev will need to be manually created, /dev must contain a command named MAKEDEV, which can create devices as needed. It may also contain a MAKEDEV.local for any local devices.&lt;br /&gt;
&lt;br /&gt;
If required, MAKEDEV must have provisions for creating any device that may be found on the system, not just those that a particular implementation installs.&lt;br /&gt;
== /etc : Host-specific system configuration ==&lt;br /&gt;
&lt;br /&gt;
The /etc hierarchy contains configuration files. A &amp;quot;configuration file&amp;quot; is a local file used to control the operation of a program; it must be static and cannot be an executable binary. &amp;lt;ref&amp;gt;The setup of command scripts invoked at boot time may resemble System V, BSD or other models. Further specification in this area may be added to a future version of this standard.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
No binaries may be located under /etc. &amp;lt;ref&amp;gt;It is recommended that files be stored in subdirectories of /etc rather than directly in /etc.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The following directories, or symbolic links to directories are required in /etc:&lt;br /&gt;
{|&lt;br /&gt;
!Directory||Description&lt;br /&gt;
|+&lt;br /&gt;
|opt||Configuration for /opt&lt;br /&gt;
|+&lt;br /&gt;
|X11||Configuration for the X Window system (optional)&lt;br /&gt;
|+&lt;br /&gt;
|sgml||Configuration for SGML (optional)&lt;br /&gt;
|+&lt;br /&gt;
|xml||Configuration for XML (optional)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
The following directories, or symbolic links to directories must be in /etc, if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
Directory	Description&lt;br /&gt;
opt	Configuration for /opt&lt;br /&gt;
&lt;br /&gt;
The following files, or symbolic links to files, must be in /etc if the corresponding subsystem is installed: &amp;lt;ref&amp;gt;Systems that use the shadow password suite will have additional configuration files in /etc (/etc/shadow and others) and programs in /usr/sbin (useradd, usermod, and others).&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
File	Description&lt;br /&gt;
csh.login	Systemwide initialization file for C shell logins (optional)&lt;br /&gt;
exports	NFS filesystem access control list (optional)&lt;br /&gt;
fstab	Static information about filesystems (optional)&lt;br /&gt;
ftpusers	FTP daemon user access control list (optional)&lt;br /&gt;
gateways	File which lists gateways for routed (optional)&lt;br /&gt;
gettydefs	Speed and terminal settings used by getty (optional)&lt;br /&gt;
group	User group file (optional)&lt;br /&gt;
host.conf	Resolver configuration file (optional)&lt;br /&gt;
hosts	Static information about host names (optional)&lt;br /&gt;
hosts.allow	Host access file for TCP wrappers (optional)&lt;br /&gt;
hosts.deny	Host access file for TCP wrappers (optional)&lt;br /&gt;
hosts.equiv	List of trusted hosts for rlogin, rsh, rcp (optional)&lt;br /&gt;
hosts.lpd	List of trusted hosts for lpd (optional)&lt;br /&gt;
inetd.conf	Configuration file for inetd (optional)&lt;br /&gt;
inittab	Configuration file for init (optional)&lt;br /&gt;
issue	Pre-login message and identification file (optional)&lt;br /&gt;
ld.so.conf	List of extra directories to search for shared libraries (optional)&lt;br /&gt;
motd	Post-login message of the day file (optional)&lt;br /&gt;
mtab	Dynamic information about filesystems (optional)&lt;br /&gt;
mtools.conf	Configuration file for mtools (optional)&lt;br /&gt;
networks	Static information about network names (optional)&lt;br /&gt;
passwd	The password file (optional)&lt;br /&gt;
printcap	The lpd printer capability database (optional)&lt;br /&gt;
profile	Systemwide initialization file for sh shell logins (optional)&lt;br /&gt;
protocols	IP protocol listing (optional)&lt;br /&gt;
resolv.conf	Resolver configuration file (optional)&lt;br /&gt;
rpc	RPC protocol listing (optional)&lt;br /&gt;
securetty	TTY access control for root login (optional)&lt;br /&gt;
services	Port names for network services (optional)&lt;br /&gt;
shells	Pathnames of valid login shells (optional)&lt;br /&gt;
syslog.conf	Configuration file for syslogd (optional)&lt;br /&gt;
&lt;br /&gt;
mtab does not fit the static nature of /etc: it is excepted for historical reasons. &amp;lt;ref&amp;gt;On some Linux systems, this may be a symbolic link to /proc/mounts, in which case this exception is not required.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== /etc/opt : Configuration files for /opt ===&lt;br /&gt;
&lt;br /&gt;
Host-specific configuration files for add-on application software packages must be installed within the directory /etc/opt/&amp;lt;subdir&amp;gt;, where &amp;lt;subdir&amp;gt; is the name of the subtree in /opt where the static data from that package is stored.&lt;br /&gt;
==== Requirements ====&lt;br /&gt;
&lt;br /&gt;
No structure is imposed on the internal arrangement of /etc/opt/&amp;lt;subdir&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
If a configuration file must reside in a different location in order for the package or system to function properly, it may be placed in a location other than /etc/opt/&amp;lt;subdir&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
Refer to the rationale for /opt.&lt;br /&gt;
=== /etc/X11 : Configuration for the X Window System (optional) ===&lt;br /&gt;
&lt;br /&gt;
/etc/X11 is the location for all X11 host-specific configuration. This directory is necessary to allow local control if /usr is mounted read only.&lt;br /&gt;
==== Specific Options ====&lt;br /&gt;
&lt;br /&gt;
The following files, or symbolic links to files, must be in /etc/X11 if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
File	Description&lt;br /&gt;
Xconfig	The configuration file for early versions of XFree86 (optional)&lt;br /&gt;
XF86Config	The configuration file for XFree86 versions 3 and 4 (optional)&lt;br /&gt;
Xmodmap	Global X11 keyboard modification file (optional)&lt;br /&gt;
&lt;br /&gt;
Subdirectories of /etc/X11 may include those for xdm and for any other programs (some window managers, for example) that need them. &amp;lt;ref&amp;gt;/etc/X11/xdm holds the configuration files for xdm. These are most of the files previously found in /usr/lib/X11/xdm. Some local variable data for xdm is stored in /var/lib/xdm.&amp;lt;/ref&amp;gt; We recommend that window managers with only one configuration file which is a default .*wmrc file must name it system.*wmrc (unless there is a widely-accepted alternative name) and not use a subdirectory. Any window manager subdirectories must be identically named to the actual window manager binary.&lt;br /&gt;
=== /etc/sgml : Configuration files for SGML (optional) ===&lt;br /&gt;
&lt;br /&gt;
Generic configuration files defining high-level parameters of the SGML systems are installed here. Files with names *.conf indicate generic configuration files. File with names *.cat are the DTD-specific centralized catalogs, containing references to all other catalogs needed to use the given DTD. The super catalog file catalog references all the centralized catalogs.&lt;br /&gt;
/etc/xml : Configuration files for XML (optional)&lt;br /&gt;
Purpose&lt;br /&gt;
&lt;br /&gt;
Generic configuration files defining high-level parameters of the XML systems are installed here. Files with names *.conf indicate generic configuration files. The super catalog file catalog references all the centralized catalogs.&lt;br /&gt;
== /home : User home directories (optional) ==&lt;br /&gt;
&lt;br /&gt;
/home is a fairly standard concept, but it is clearly a site-specific filesystem. &amp;lt;ref&amp;gt;Different people prefer to place user accounts in a variety of places. This section describes only a suggested placement for user home directories; nevertheless we recommend that all FHS-compliant distributions use this as the default location for home directories.&lt;br /&gt;
&lt;br /&gt;
On small systems, each user's directory is typically one of the many subdirectories of /home such as /home/smith, /home/torvalds, /home/operator, etc. On large systems (especially when the /home directories are shared amongst many hosts 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.&amp;lt;/ref&amp;gt; The setup will differ from host to host. Therefore, no program should rely on this location. &amp;lt;ref&amp;gt;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.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
User specific configuration files for applications are stored in the user's home directory in a file that starts with the '.' character (a &amp;quot;dot file&amp;quot;). If an application needs to create more than one dot file then they should be placed in a subdirectory with a name starting with a '.' character, (a &amp;quot;dot directory&amp;quot;). In this case the configuration files should not start with the '.' character. &amp;lt;ref&amp;gt;It is recommended that apart from autosave and lock files programs should refrain from creating non dot files or directories in a home directory without user intervention.&amp;lt;/ref&amp;gt;&lt;br /&gt;
== /lib : Essential shared libraries and kernel modules ==&lt;br /&gt;
&lt;br /&gt;
The /lib directory contains those shared library images needed to boot the system and run the commands in the root filesystem, ie. by binaries in /bin and /sbin. &amp;lt;ref&amp;gt;Shared libraries that are only necessary for binaries in /usr (such as any X Window binaries) must not be in /lib. Only the shared libraries required to run binaries in /bin and /sbin may be here. In particular, the library libm.so.* may also be placed in /usr/lib if it is not required by anything in /bin or /sbin.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
At least one of each of the following filename patterns are required (they may be files, or symbolic links):&lt;br /&gt;
&lt;br /&gt;
File	Description&lt;br /&gt;
libc.so.*	The dynamically-linked C library (optional)&lt;br /&gt;
ld*	The execution time linker/loader (optional)&lt;br /&gt;
&lt;br /&gt;
If a C preprocessor is installed, /lib/cpp must be a reference to it, for historical reasons. &amp;lt;ref&amp;gt;The usual placement of this binary is /usr/bin/cpp.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
The following directories, or symbolic links to directories, must be in /lib, if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
Directory	Description&lt;br /&gt;
modules	Loadable kernel modules (optional)&lt;br /&gt;
&lt;br /&gt;
== /lib&amp;lt;qual&amp;gt; : Alternate format essential shared libraries (optional) ==&lt;br /&gt;
&lt;br /&gt;
There may be one or more variants of the /lib directory on systems which support more than one binary format requiring separate libraries. &amp;lt;ref&amp;gt;This is commonly used for 64-bit or 32-bit support on systems which support multiple binary formats, but require libraries of the same name. In this case, /lib32 and /lib64 might be the library directories, and /lib a symlink to one of them.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
If one or more of these directories exist, the requirements for their contents are the same as the normal /lib directory, except that /lib&amp;lt;qual&amp;gt;/cpp is not required. &amp;lt;ref&amp;gt;/lib&amp;lt;qual&amp;gt;/cpp is still permitted: this allows the case where /lib and /lib&amp;lt;qual&amp;gt; are the same (one is a symbolic link to the other).&amp;lt;/ref&amp;gt;&lt;br /&gt;
== /media : Mount point for removeable media ==&lt;br /&gt;
&lt;br /&gt;
This directory contains subdirectories which are used as mount points for removeable media such as floppy disks, cdroms and zip disks.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
Historically there have been a number of other different places used to mount removeable media such as /cdrom, /mnt or /mnt/cdrom. Placing the mount points for all removeable media directly in the root directory would potentially result in a large number of extra directories in /. Although the use of subdirectories in /mnt as a mount point has recently been common, it conflicts with a much older tradition of using /mnt directly as a temporary mount point.&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
The following directories, or symbolic links to directories, must be in /media, if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
Directory	Description&lt;br /&gt;
floppy	Floppy drive (optional)&lt;br /&gt;
cdrom	CD-ROM drive (optional)&lt;br /&gt;
cdrecorder	CD writer (optional)&lt;br /&gt;
zip	Zip drive (optional)&lt;br /&gt;
&lt;br /&gt;
On systems where more than one device exists for mounting a certain type of media, mount directories can be created by appending a digit to the name of those available above starting with '0', but the unqualified name must also exist. &amp;lt;ref&amp;gt;A compliant implementation with two CDROM drives might have /media/cdrom0 and /media/cdrom1 with /media/cdrom a symlink to either of these.&amp;lt;/ref&amp;gt;&lt;br /&gt;
== /mnt : Mount point for a temporarily mounted filesystem ==&lt;br /&gt;
&lt;br /&gt;
This directory is provided so that the system administrator may temporarily mount a filesystem as needed. The content of this directory is a local issue and should not affect the manner in which any program is run.&lt;br /&gt;
&lt;br /&gt;
This directory must not be used by installation programs: a suitable temporary directory not in use by the system must be used instead.&lt;br /&gt;
== /opt : Add-on application software packages ==&lt;br /&gt;
&lt;br /&gt;
/opt is reserved for the installation of add-on application software packages.&lt;br /&gt;
&lt;br /&gt;
A package to be installed in /opt must locate its static files in a separate /opt/&amp;lt;package&amp;gt; or /opt/&amp;lt;provider&amp;gt; directory tree, where &amp;lt;package&amp;gt; is a name that describes the software package and &amp;lt;provider&amp;gt; is the provider's LANANA registered name.&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
Directory	Description&lt;br /&gt;
&amp;lt;package&amp;gt;	Static package objects&lt;br /&gt;
&amp;lt;provider&amp;gt;	LANANA registered provider name&lt;br /&gt;
&lt;br /&gt;
The directories /opt/bin, /opt/doc, /opt/include, /opt/info, /opt/lib, and /opt/man are reserved for local system administrator use. Packages may provide &amp;quot;front-end&amp;quot; files intended to be placed in (by linking or copying) these reserved directories by the local system administrator, but must function normally in the absence of these reserved directories.&lt;br /&gt;
&lt;br /&gt;
Programs to be invoked by users must be located in the directory /opt/&amp;lt;package&amp;gt;/bin or under the /opt/&amp;lt;provider&amp;gt; hierarchy. If the package includes UNIX manual pages, they must be located in /opt/&amp;lt;package&amp;gt;/share/man or under the /opt/&amp;lt;provider&amp;gt; hierarchy, and the same substructure as /usr/share/man must be used.&lt;br /&gt;
&lt;br /&gt;
Package files that are variable (change in normal operation) must be installed in /var/opt. See the section on /var/opt for more information.&lt;br /&gt;
&lt;br /&gt;
Host-specific configuration files must be installed in /etc/opt. See the section on /etc for more information.&lt;br /&gt;
&lt;br /&gt;
No other package files may exist outside the /opt, /var/opt, and /etc/opt hierarchies except for those package files that must reside in specific locations within the filesystem tree in order to function properly. For example, device lock files must be placed in /var/lock and devices must be located in /dev.&lt;br /&gt;
&lt;br /&gt;
Distributions may install software in /opt, but must not modify or delete software installed by the local system administrator without the assent of the local system administrator.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
The use of /opt for add-on software is a well-established practice in the UNIX community. The System V Application Binary Interface [AT&amp;amp;T 1990], based on the System V Interface Definition (Third Edition), provides for an /opt structure very similar to the one defined here.&lt;br /&gt;
&lt;br /&gt;
The Intel Binary Compatibility Standard v. 2 (iBCS2) also provides a similar structure for /opt.&lt;br /&gt;
&lt;br /&gt;
Generally, all data required to support a package on a system must be present within /opt/&amp;lt;package&amp;gt;, including files intended to be copied into /etc/opt/&amp;lt;package&amp;gt; and /var/opt/&amp;lt;package&amp;gt; as well as reserved directories in /opt.&lt;br /&gt;
&lt;br /&gt;
The minor restrictions on distributions using /opt are necessary because conflicts are possible between distribution-installed and locally-installed software, especially in the case of fixed pathnames found in some binary software.&lt;br /&gt;
&lt;br /&gt;
The structure of the directories below /opt/&amp;lt;provider&amp;gt; is left up to the packager of the software, though it is recommended that packages are installed in /opt/&amp;lt;provider&amp;gt;/&amp;lt;package&amp;gt; and follow a similar structure to the guidelines for /opt/package. A valid reason for diverging from this structure is for support packages which may have files installed in /opt/&amp;lt;provider&amp;gt;/lib or /opt/&amp;lt;provider&amp;gt;/bin.&lt;br /&gt;
== /root : Home directory for the root user (optional) ==&lt;br /&gt;
&lt;br /&gt;
The root account's home directory may be determined by developer or local preference, but this is the recommended default location. &amp;lt;ref&amp;gt;If the home directory of the root account is not stored on the root partition it will be necessary to make certain it will default to / if it can not be located.&lt;br /&gt;
&lt;br /&gt;
We recommend against using the root account for tasks that can be performed as an unprivileged user, and that it be used solely for system administration. For this reason, we recommend that subdirectories for mail and other applications not appear in the root account's home directory, and that mail for administration roles such as root, postmaster, and webmaster be forwarded to an appropriate user.&amp;lt;/ref&amp;gt;&lt;br /&gt;
== /sbin : System binaries ==&lt;br /&gt;
&lt;br /&gt;
Utilities used for system administration (and other root-only commands) are stored in /sbin, /usr/sbin, and /usr/local/sbin. /sbin contains binaries essential for booting, restoring, recovering, and/or repairing the system in addition to the binaries in /bin. &amp;lt;ref&amp;gt;Originally, /sbin binaries were kept in /etc.&amp;lt;/ref&amp;gt; Programs executed after /usr is known to be mounted (when there are no problems) are generally placed into /usr/sbin. Locally-installed system administration programs should be placed into /usr/local/sbin. &amp;lt;ref&amp;gt;Deciding what things go into &amp;quot;sbin&amp;quot; directories is simple: if a normal (not a system administrator) user will ever run it directly, then it must be placed in one of the &amp;quot;bin&amp;quot; directories. Ordinary users should not have to place any of the sbin directories in their path.&lt;br /&gt;
&lt;br /&gt;
For example, files such as chfn which users only occasionally use must still be placed in /usr/bin. ping, although it is absolutely necessary for root (network recovery and diagnosis) is often used by users and must live in /bin for that reason.&lt;br /&gt;
&lt;br /&gt;
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 inherent security advantage in making /sbin off-limits for users.&amp;lt;/ref&amp;gt;&lt;br /&gt;
=== Requirements ===&lt;br /&gt;
&lt;br /&gt;
The following commands, or symbolic links to commands, are required in /sbin.&lt;br /&gt;
&lt;br /&gt;
Command	Description&lt;br /&gt;
shutdown	Command to bring the system down.&lt;br /&gt;
&lt;br /&gt;
=== Specific Options ===&lt;br /&gt;
&lt;br /&gt;
The following files, or symbolic links to files, must be in /sbin if the corresponding subsystem is installed:&lt;br /&gt;
&lt;br /&gt;
Command	Description&lt;br /&gt;
fastboot	Reboot the system without checking the disks (optional)&lt;br /&gt;
fasthalt	Stop the system without checking the disks (optional)&lt;br /&gt;
fdisk	Partition table manipulator (optional)&lt;br /&gt;
fsck	File system check and repair utility (optional)&lt;br /&gt;
fsck.*	File system check and repair utility for a specific filesystem (optional)&lt;br /&gt;
getty	The getty program (optional)&lt;br /&gt;
halt	Command to stop the system (optional)&lt;br /&gt;
ifconfig	Configure a network interface (optional)&lt;br /&gt;
init	Initial process (optional)&lt;br /&gt;
mkfs	Command to build a filesystem (optional)&lt;br /&gt;
mkfs.*	Command to build a specific filesystem (optional)&lt;br /&gt;
mkswap	Command to set up a swap area (optional)&lt;br /&gt;
reboot	Command to reboot the system (optional)&lt;br /&gt;
route	IP routing table utility (optional)&lt;br /&gt;
swapon	Enable paging and swapping (optional)&lt;br /&gt;
swapoff	Disable paging and swapping (optional)&lt;br /&gt;
update	Daemon to periodically flush filesystem buffers (optional)&lt;br /&gt;
&lt;br /&gt;
== /srv : Data for services provided by this system ==&lt;br /&gt;
&lt;br /&gt;
/srv contains site-specific data which is served by this system.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
This main purpose of specifying this is so that users may find the location of the data files for particular service, and so that services which require a single tree for readonly data, writable data and scripts (such as cgi scripts) can be reasonably placed. Data that is only of interest to a specific user should go in that users' home directory.&lt;br /&gt;
&lt;br /&gt;
The methodology used to name subdirectories of /srv is unspecified as there is currently no consensus on how this should be done. One method for structuring data under /srv is by protocol, eg. ftp, rsync, www, and cvs. On large systems it can be useful to structure /srv by administrative context, such as /srv/physics/www, /srv/compsci/cvs, etc. This setup will differ from host to host. Therefore, no program should rely on a specific subdirectory structure of /srv existing or data necessarily being stored in /srv. However /srv should always exist on FHS compliant systems and should be used as the default location for such data.&lt;br /&gt;
&lt;br /&gt;
Distributions must take care not to remove locally placed files in these directories without administrator permission. &amp;lt;ref&amp;gt;This is particularly important as these areas will often contain both files initially installed by the distributor, and those added by the administrator.&amp;lt;/ref&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== /tmp : Temporary files ==&lt;br /&gt;
&lt;br /&gt;
The /tmp directory must be made available for programs that require temporary files.&lt;br /&gt;
&lt;br /&gt;
Programs must not assume that any files or directories in /tmp are preserved between invocations of the program.&lt;br /&gt;
&lt;br /&gt;
Tip	Rationale&lt;br /&gt;
 	&lt;br /&gt;
&lt;br /&gt;
IEEE standard P1003.2 (POSIX, part 2) makes requirements that are similar to the above section.&lt;br /&gt;
&lt;br /&gt;
Although data stored in /tmp may be deleted in a site-specific manner, it is recommended that files and directories located in /tmp be deleted whenever the system is booted.&lt;br /&gt;
&lt;br /&gt;
FHS added this recommendation on the basis of historical precedent and common practice, but did not make it a requirement because system administration is not within the scope of this standard.&lt;br /&gt;
&lt;br /&gt;
= Notes =&lt;br /&gt;
&amp;lt;references/&amp;gt;&lt;/div&gt;</summary>
		<author><name>Brantgurga</name></author>	</entry>

	</feed>