xref: /freebsd/share/man/man5/fstab.5 (revision daf1cffce2e07931f27c6c6998652e90df6ba87e)
1.\" Copyright (c) 1980, 1989, 1991, 1993
2.\"	The Regents of the University of California.  All rights reserved.
3.\"
4.\" Redistribution and use in source and binary forms, with or without
5.\" modification, are permitted provided that the following conditions
6.\" are met:
7.\" 1. Redistributions of source code must retain the above copyright
8.\"    notice, this list of conditions and the following disclaimer.
9.\" 2. Redistributions in binary form must reproduce the above copyright
10.\"    notice, this list of conditions and the following disclaimer in the
11.\"    documentation and/or other materials provided with the distribution.
12.\" 3. All advertising materials mentioning features or use of this software
13.\"    must display the following acknowledgement:
14.\"	This product includes software developed by the University of
15.\"	California, Berkeley and its contributors.
16.\" 4. Neither the name of the University nor the names of its contributors
17.\"    may be used to endorse or promote products derived from this software
18.\"    without specific prior written permission.
19.\"
20.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
21.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
23.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
25.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30.\" SUCH DAMAGE.
31.\"
32.\"     @(#)fstab.5	8.1 (Berkeley) 6/5/93
33.\" $FreeBSD$
34.\"
35.Dd June 5, 1993
36.Dt FSTAB 5
37.Os BSD 4
38.Sh NAME
39.Nm fstab
40.Nd static information about the filesystems
41.Sh SYNOPSIS
42.Fd #include <fstab.h>
43.Sh DESCRIPTION
44The file
45.Nm fstab
46contains descriptive information about the various file
47systems.
48.Nm fstab
49is only read by programs, and not written;
50it is the duty of the system administrator to properly create
51and maintain this file.
52Each filesystem is described on a separate line;
53fields on each line are separated by tabs or spaces.
54The order of records in
55.Nm fstab
56is important because
57.Xr fsck 8 ,
58.Xr mount 8 ,
59and
60.Xr umount 8
61sequentially iterate through
62.Nm fstab
63doing their thing.
64.Pp
65The first field,
66.Pq Fa fs_spec ,
67describes the block special device or
68remote filesystem to be mounted.
69For filesystems of type
70.Em ufs ,
71the special file name is the block special file name,
72and not the character special file name.
73If a program needs the character special file name,
74the program must create it by appending a ``r'' after the
75last ``/'' in the special file name.
76.Pp
77The second field,
78.Pq Fa fs_file ,
79describes the mount point for the filesystem.
80For swap partitions, this field should be specified as ``none''.
81.Pp
82The third field,
83.Pq Fa fs_vfstype ,
84describes the type of the filesystem.
85The system can support various filesystem types.
86Only the root, /usr, and /tmp filesystems need be statically
87compiled into the kernel;
88everything else will be automatically loaded at mount
89time.  (Exception: the UFS family - FFS, MFS, and LFS cannot
90currently be demand-loaded.)  Some people still prefer to statically
91compile other filesystems as well.
92
93.Bl -tag -width indent -offset indent
94.It Em ufs
95a local
96.Tn UNIX
97filesystem
98.It Em mfs
99a local memory-based
100.Tn UNIX
101filesystem
102.It Em nfs
103a Sun Microsystems compatible ``Network File System''
104.It Em swap
105a disk partition to be used for swapping
106.It Em msdos
107a DOS compatible filesystem
108.It Em cd9660
109a CD-ROM filesystem (as per ISO 9660)
110.\" maybe also say Rock Ridge extensions are handled ?
111.It Em procfs
112a file system for accessing process data
113.It Em kernfs
114a file system for accessing kernel parameter
115.El
116.Pp
117The fourth field,
118.Pq Fa fs_mntops ,
119describes the mount options associated with the filesystem.
120It is formatted as a comma separated list of options.
121It contains at least the type of mount (see
122.Fa fs_type
123below) plus any additional options
124appropriate to the filesystem type.  See the options flag
125.Pq Fl o
126in the
127.Xr mount 8
128page and the filesystem specific page, such as
129.Xr mount_nfs 8 ,
130for additional options that may be specified.
131.Pp
132If the options ``userquota'' and/or ``groupquota'' are specified,
133the filesystem is automatically processed by the
134.Xr quotacheck 8
135command, and user and/or group disk quotas are enabled with
136.Xr quotaon 8 .
137By default,
138filesystem quotas are maintained in files named
139.Pa quota.user
140and
141.Pa quota.group
142which are located at the root of the associated filesystem.
143These defaults may be overridden by putting an equal sign
144and an alternative absolute pathname following the quota option.
145Thus, if the user quota file for
146.Pa /tmp
147is stored in
148.Pa /var/quotas/tmp.user ,
149this location can be specified as:
150.Bd -literal -offset indent
151userquota=/var/quotas/tmp.user
152.Ed
153.Pp
154If the option ``noauto'' is specified, the filesystem will not be automatically
155mounted at system startup.
156.Pp
157The type of the mount is extracted from the
158.Fa fs_mntops
159field and stored separately in the
160.Fa fs_type
161field (it is not deleted from the
162.Fa fs_mntops
163field).
164If
165.Fa fs_type
166is ``rw'' or ``ro'' then the filesystem whose name is given in the
167.Fa fs_file
168field is normally mounted read-write or read-only on the
169specified special file.
170If
171.Fa fs_type
172is ``sw'' then the special file is made available as a piece of swap
173space by the
174.Xr swapon 8
175command at the end of the system reboot procedure.
176The fields other than
177.Fa fs_spec
178and
179.Fa fs_type
180are unused.
181If
182.Fa fs_type
183is specified as ``xx'' the entry is ignored.
184This is useful to show disk partitions which are currently unused.
185.Pp
186The fifth field,
187.Pq Fa fs_freq ,
188is used for these filesystems by the
189.Xr dump 8
190command to determine which filesystems need to be dumped.
191If the fifth field is not present, a value of zero is returned and
192.Nm dump
193will assume that the filesystem does not need to be dumped.
194.Pp
195The sixth field,
196.Pq Fa fs_passno ,
197is used by the
198.Xr fsck 8
199program to determine the order in which filesystem checks are done
200at reboot time.
201The root filesystem should be specified with a
202.Fa fs_passno
203of 1, and other filesystems should have a
204.Fa fs_passno
205of 2.
206Filesystems within a drive will be checked sequentially,
207but filesystems on different drives will be checked at the
208same time to utilize parallelism available in the hardware.
209If the sixth field is not present or is zero,
210a value of zero is returned and
211.Xr fsck 8
212will assume that the filesystem does not need to be checked.
213.Bd -literal
214#define	FSTAB_RW	"rw"	/* read/write device */
215#define	FSTAB_RQ	"rq"	/* read/write with quotas */
216#define	FSTAB_RO	"ro"	/* read-only device */
217#define	FSTAB_SW	"sw"	/* swap device */
218#define	FSTAB_XX	"xx"	/* ignore totally */
219
220struct fstab {
221	char	*fs_spec;	/* block special device name */
222	char	*fs_file;	/* filesystem path prefix */
223	char	*fs_vfstype;	/* File system type, ufs, nfs */
224	char	*fs_mntops;	/* Mount options ala -o */
225	char	*fs_type;	/* FSTAB_* from fs_mntops */
226	int	fs_freq;	/* dump frequency, in days */
227	int	fs_passno;	/* pass number on parallel fsck */
228};
229.Ed
230.Pp
231The proper way to read records from
232.Pa fstab
233is to use the routines
234.Xr getfsent 3 ,
235.Xr getfsspec 3 ,
236.Xr getfstype 3 ,
237and
238.Xr getfsfile 3 .
239.Sh FILES
240.Bl -tag -width /etc/fstab -compact
241.It Pa /etc/fstab
242The file
243.Nm fstab
244resides in
245.Pa /etc .
246.El
247.Sh SEE ALSO
248.Xr getfsent 3 ,
249.Xr getvfsbyname 3 ,
250.Xr dump 8 ,
251.Xr fsck 8 ,
252.Xr mount 8 ,
253.Xr quotacheck 8 ,
254.Xr quotaon 8 ,
255.Xr swapon 8 ,
256.Xr umount 8 .
257.Sh HISTORY
258The
259.Nm
260file format appeared in
261.Bx 4.0 .
262