arm: protect state after signal handler
[minix.git] / man / man1 / mount.1
blob9f680738459d257d7c2bddc3aa8c87164c7bcf7f
1 .TH MOUNT 1
2 .SH NAME
3 mount \- mount a file system
4 .SH SYNOPSIS
5 \fBmount [\fB\-r\fR] [\fB\-t \fItype\fR] [\fB\-o \fIoptions\fR] \fIspecial \fIfile\fR
6 .br
7 .de FL
8 .TP
9 \\fB\\$1\\fR
10 \\$2
12 .de EX
13 .TP 20
14 \\fB\\$1\\fR
15 # \\$2
17 .SH OPTIONS
18 .TP 5
19 .B \-a
20 # All file systems in /etc/fstab except \/ are mounted. File systems marked 'noauto' are skipped
21 .TP 5
22 .B \-r
23 # File system is mounted read-only
24 .TP 5
25 .B \-t
26 # File system type
27 .TP 5
28 .B \-n
29 # Don't update mtab
30 .TP 5
31 .B \-o
32 # Options passed to FS server
33 .SH EXAMPLES
34 .TP 20
35 .B mount /dev/fd1 /user
36 # Mount diskette 1 on \fI/user\fP
37 .TP 20
38 .B mount \-t procfs none /proc
39 # Mount proc file system on \fI/proc\fP
40 .TP 20
41 .B mount \-a
42 # Mount all file systems listed in /etc/fstab except \/.
43 .SH DESCRIPTION
44 .PP
45 The file system contained on the special file \fIspecial\fP is mounted on
46 \fIfile\fP. If the value of "\fBnone\fP" is given for \fIspecial\fP,
47 the file system is mounted without a block special device underneath it.
48 In the first example above, the root directory of the file system in drive 1
49 can be accessed as
50 .B /user
51 after the mount.
52 When the file system is no longer needed, it must be unmounted before being
53 removed from the drive.
54 .PP
55 The
56 .B \-t
57 parameter may be used to mount a file system of a type other than the default.
58 The
59 .B \-o
60 flag may be used to pass options to the file system server.
61 The interpretation of these options is up to the server.
62 .PP
63 If \fBmount\fP is invoked without any parameters, it will print the list of
64 currently mounted file systems according to
65 .BR mtab (5).
66 .SH "SEE ALSO"
67 .BR df (1),
68 .BR mkfs (1),
69 .BR fsck (1),
70 .BR umount (1),
71 .BR mount (2),
72 .BR fstab (5).