forked from Stichting-MINIX-Research-Foundation/minix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfstab.5
More file actions
89 lines (89 loc) · 1.33 KB
/
Copy pathfstab.5
File metadata and controls
89 lines (89 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
.TH FSTAB 5
.SH NAME
fstab, mtab \- list of file systems to mount, mounted file system table.
.SH SYNOPSIS
.B /etc/fstab
.sp
.B /etc/mtab
.SH DESCRIPTION
.B /etc/fstab
is a table of file system to mount at boot time,
.B /etc/mtab
is a table of currently mounted file systems as maintained by
.B mount
and
.BR umount .
.PP
.B /etc/fstab
is not read by
.B mount
as it should be. It is instead a simple shell script listing the
three devices that MINIX 3 needs to operate: the device names of the root
file system, the file system for
.BR /home ,
and the file system for
.BR /usr .
.PP
.B /etc/mtab
contains lines of four fields. The layout is:
.sp
.RS
.nf
.ft B
.ta +10n +13n +8n
device directory type options
.ft P
.fi
.RE
.PP
These fields may be explained as follows:
.sp
.B device
.br
.RS
A block special device.
.RE
.sp
.B directory
.br
.RS
Mount point.
.RE
.sp
.B type
.br
.RS
Either
.BR 1 ,
.BR 2 ,
or
.BR 3 ,
indicating a V1, a V2, or a V3 file system.
.RE
.sp
.B options
.br
.RS
Either
.BR ro ,
or
.BR rw ,
indicating a read-only or read-write mounted file system.
.RE
.SH FILES
.TP 15n
.B /etc/fstab
Shell script naming three important file systems.
.TP
.B /etc/mtab
List of mounted file systems.
.SH "SEE ALSO"
.BR printroot (8),
.BR mount (1),
.BR fsck (1),
.BR mkfs (1).
.SH BUGS
.B /etc/fstab
is a joke.
.SH AUTHOR
Kees J. Bot (kjb@cs.vu.nl)