xref: /freebsd/sbin/mount/mount.8 (revision c6ec7d31830ab1c80edae95ad5e4b9dba10c47ac)
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.\" 4. Neither the name of the University nor the names of its contributors
13.\"    may be used to endorse or promote products derived from this software
14.\"    without specific prior written permission.
15.\"
16.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26.\" SUCH DAMAGE.
27.\"
28.\"     @(#)mount.8	8.8 (Berkeley) 6/16/94
29.\" $FreeBSD$
30.\"
31.Dd July 12, 2012
32.Dt MOUNT 8
33.Os
34.Sh NAME
35.Nm mount
36.Nd mount file systems
37.Sh SYNOPSIS
38.Nm
39.Op Fl adflpruvw
40.Op Fl F Ar fstab
41.Op Fl o Ar options
42.Op Fl t Cm ufs | Ar external_type
43.Nm
44.Op Fl dfpruvw
45.Ar special | node
46.Nm
47.Op Fl dfpruvw
48.Op Fl o Ar options
49.Op Fl t Cm ufs | Ar external_type
50.Ar special node
51.Sh DESCRIPTION
52The
53.Nm
54utility calls the
55.Xr nmount 2
56system call to prepare and graft a
57.Ar special
58device or the remote node (rhost:path) on to the file system tree at the point
59.Ar node .
60If either
61.Ar special
62or
63.Ar node
64are not provided, the appropriate information is taken from the
65.Xr fstab 5
66file.
67.Pp
68The system maintains a list of currently mounted file systems.
69If no arguments are given to
70.Nm ,
71this list is printed.
72.Pp
73The options are as follows:
74.Bl -tag -width indent
75.It Fl a
76All the file systems described in
77.Xr fstab 5
78are mounted.
79Exceptions are those marked as
80.Dq Li noauto ,
81those marked as
82.Dq Li late
83(unless the
84.Fl l
85option was specified),
86those excluded by the
87.Fl t
88flag (see below), or if they are already mounted (except the
89root file system which is always remounted to preserve
90traditional single user mode behavior).
91.It Fl d
92Causes everything to be done except for the actual system call.
93This option is useful in conjunction with the
94.Fl v
95flag to
96determine what the
97.Nm
98command is trying to do.
99.It Fl F Ar fstab
100Specify the
101.Pa fstab
102file to use.
103.It Fl f
104Forces the revocation of write access when trying to downgrade
105a file system mount status from read-write to read-only.
106Also
107forces the R/W mount of an unclean file system (dangerous; use with
108caution).
109.It Fl l
110When used in conjunction with the
111.Fl a
112option, also mount those file systems which are marked as
113.Dq Li late .
114.It Fl o
115Options are specified with a
116.Fl o
117flag followed by a comma separated string of options.
118In case of conflicting options being specified, the rightmost option
119takes effect.
120The following options are available:
121.Bl -tag -width indent
122.It Cm acls
123Enable POSIX.1e Access Control Lists, or ACLs, which can be customized via the
124.Xr setfacl 1
125and
126.Xr getfacl 1
127commands.
128This flag is mutually exclusive with
129.Cm nfsv4acls
130flag.
131.It Cm async
132All
133.Tn I/O
134to the file system should be done asynchronously.
135This is a
136.Em dangerous
137flag to set, since it does not guarantee that the file system structure
138on the disk will remain consistent.
139For this reason, the
140.Cm async
141flag should be used sparingly, and only when some data recovery
142mechanism is present.
143.It Cm current
144When used with the
145.Fl u
146flag, this is the same as specifying the options currently in effect for
147the mounted file system.
148.It Cm failok
149If this option is specified,
150.Nm
151will return 0 even if an error occurs
152during the mount of the filesystem.
153.It Cm force
154The same as
155.Fl f ;
156forces the revocation of write access when trying to downgrade
157a file system mount status from read-write to read-only.
158Also
159forces the R/W mount of an unclean file system (dangerous; use with caution).
160.It Cm fstab
161When used with the
162.Fl u
163flag, this is the same as specifying all the options listed in the
164.Xr fstab 5
165file for the file system.
166.It Cm late
167This file system should be skipped when
168.Nm
169is run with the
170.Fl a
171flag but without the
172.Fl l
173flag.
174.It Cm mountprog Ns = Ns Aq Ar program
175Force
176.Nm
177to use the specified program to mount the file system, instead of calling
178.Xr nmount 2
179directly.
180For example:
181.Bd -literal
182mount -t foofs -o mountprog=/mydir/fooprog /dev/acd0 /mnt
183.Ed
184.It Cm multilabel
185Enable multi-label Mandatory Access Control, or MAC, on the specified file
186system.
187If the file system supports multilabel operation, individual labels will
188be maintained for each object in the file system, rather than using a
189single label for all objects.
190An alternative to the
191.Fl l
192flag in
193.Xr tunefs 8 .
194See
195.Xr mac 4
196for more information, which cause the multilabel mount flag to be set
197automatically at mount-time.
198.It Cm nfsv4acls
199Enable NFSv4 ACLs, which can be customized via the
200.Xr setfacl 1
201and
202.Xr getfacl 1
203commands.
204This flag is mutually exclusive with
205.Cm acls
206flag.
207.It Cm noasync
208Metadata I/O should be done synchronously, while data I/O should be done
209asynchronously.
210This is the default.
211.It Cm noatime
212Do not update the file access time when reading from a file.
213This option
214is useful on file systems where there are large numbers of files and
215performance is more critical than updating the file access time (which is
216rarely ever important).
217This option is currently only supported on local file systems.
218.It Cm noauto
219This file system should be skipped when
220.Nm
221is run with the
222.Fl a
223flag.
224.It Cm noclusterr
225Disable read clustering.
226.It Cm noclusterw
227Disable write clustering.
228.It Cm noexec
229Do not allow execution of any binaries on the mounted file system.
230This option is useful for a server that has file systems containing
231binaries for architectures other than its own.
232Note: This option was not designed as a security feature and no
233guarantee is made that it will prevent malicious code execution; for
234example, it is still possible to execute scripts which reside on a
235.Cm noexec
236mounted partition.
237.It Cm nosuid
238Do not allow set-user-identifier or set-group-identifier bits to take effect.
239Note: this option is worthless if a public available suid or sgid
240wrapper like
241.Xr suidperl 1
242is installed on your system.
243It is set automatically when the user does not have super-user privileges.
244.It Cm nosymfollow
245Do not follow symlinks
246on the mounted file system.
247.It Cm ro
248The same as
249.Fl r ;
250mount the file system read-only (even the super-user may not write it).
251.It Cm snapshot
252This option allows a snapshot of the specified file system to be taken.
253The
254.Fl u
255flag is required with this option.
256Note that snapshot files must be created in the file system that is being
257snapshotted.
258You may create up to 20 snapshots per file system.
259Active snapshots are recorded in the superblock, so they persist across unmount
260and remount operations and across system reboots.
261When you are done with a snapshot, it can be removed with the
262.Xr rm 1
263command.
264Snapshots may be removed in any order, however you may not get back all the
265space contained in the snapshot as another snapshot may claim some of the blocks
266that it is releasing.
267Note that the schg flag is set on snapshots to ensure that not even the root
268user can write to them.
269The unlink command makes an exception for snapshot files in that it allows them
270to be removed even though they have the schg flag set, so it is not necessary to
271clear the schg flag before removing a snapshot file.
272.Pp
273Once you have taken a snapshot, there are three interesting things that you can
274do with it:
275.Pp
276.Bl -enum -compact
277.It
278Run
279.Xr fsck 8
280on the snapshot file.
281Assuming that the file system was clean when it was mounted, you should always
282get a clean (and unchanging) result from running fsck on the snapshot.
283This is essentially what the background fsck process does.
284.Pp
285.It
286Run
287.Xr dump 8
288on the snapshot.
289You will get a dump that is consistent with the file system as of the timestamp
290of the snapshot.
291.Pp
292.It
293Mount the snapshot as a frozen image of the file system.
294To mount the snapshot
295.Pa /var/snapshot/snap1 :
296.Bd -literal
297mdconfig -a -t vnode -f /var/snapshot/snap1 -u 4
298mount -r /dev/md4 /mnt
299.Ed
300.Pp
301You can now cruise around your frozen
302.Pa /var
303file system at
304.Pa /mnt .
305Everything will be in the same state that it was at the time the snapshot was
306taken.
307The one exception is that any earlier snapshots will appear as zero length
308files.
309When you are done with the mounted snapshot:
310.Bd -literal
311umount /mnt
312mdconfig -d -u 4
313.Ed
314.El
315.It Cm suiddir
316A directory on the mounted file system will respond to the SUID bit
317being set, by setting the owner of any new files to be the same
318as the owner of the directory.
319New directories will inherit the bit from their parents.
320Execute bits are removed from
321the file, and it will not be given to root.
322.Pp
323This feature is designed for use on fileservers serving PC users via
324ftp, SAMBA, or netatalk.
325It provides security holes for shell users and as
326such should not be used on shell machines, especially on home directories.
327This option requires the SUIDDIR
328option in the kernel to work.
329Only UFS file systems support this option.
330See
331.Xr chmod 2
332for more information.
333.It Cm sync
334All
335.Tn I/O
336to the file system should be done synchronously.
337.It Cm update
338The same as
339.Fl u ;
340indicate that the status of an already mounted file system should be changed.
341.It Cm union
342Causes the namespace at the mount point to appear as the union
343of the mounted file system root and the existing directory.
344Lookups will be done in the mounted file system first.
345If those operations fail due to a non-existent file the underlying
346directory is then accessed.
347All creates are done in the mounted file system.
348.El
349.Pp
350Any additional options specific to a file system type that is not
351one of the internally known types (see the
352.Fl t
353option) may be passed as a comma separated list; these options are
354distinguished by a leading
355.Dq \&-
356(dash).
357For example, the
358.Nm
359command:
360.Bd -literal -offset indent
361mount -t cd9660 -o -e /dev/cd0 /cdrom
362.Ed
363.Pp
364causes
365.Nm
366to execute the equivalent of:
367.Bd -literal -offset indent
368/sbin/mount_cd9660 -e /dev/cd0 /cdrom
369.Ed
370.Pp
371Options that take a value are specified using the -option=value syntax:
372.Bd -literal -offset indent
373mount -t msdosfs -o -u=fred,-g=wheel /dev/da0s1 /mnt
374.Ed
375.Pp
376is equivalent to
377.Bd -literal -offset indent
378/sbin/mount_msdosfs -u fred -g wheel /dev/da0s1 /mnt
379.Ed
380.Pp
381Additional options specific to file system types
382which are not internally known
383(see the description of the
384.Fl t
385option below)
386may be described in the manual pages for the associated
387.Pa /sbin/mount_ Ns Sy XXX
388utilities.
389.It Fl p
390Print mount information in
391.Xr fstab 5
392format.
393Implies also the
394.Fl v
395option.
396.It Fl r
397The file system is to be mounted read-only.
398Mount the file system read-only (even the super-user may not write it).
399The same as the
400.Cm ro
401argument to the
402.Fl o
403option.
404.It Fl t Cm ufs | Ar external_type
405The argument following the
406.Fl t
407is used to indicate the file system type.
408The type
409.Cm ufs
410is the default.
411The
412.Fl t
413option can be used
414to indicate that the actions should only be taken on
415file systems of the specified type.
416More than one type may be specified in a comma separated list.
417The list of file system types can be prefixed with
418.Dq Li no
419to specify the file system types for which action should
420.Em not
421be taken.
422For example, the
423.Nm
424command:
425.Bd -literal -offset indent
426mount -a -t nonfs,nullfs
427.Ed
428.Pp
429mounts all file systems except those of type
430.Tn NFS
431and
432.Tn NULLFS .
433.Pp
434The default behavior of
435.Nm
436is to pass the
437.Fl t
438option directly to the
439.Xr nmount 2
440system call in the
441.Li fstype
442option.
443.Pp
444However, for the following file system types:
445.Cm cd9660 ,
446.Cm mfs ,
447.Cm msdosfs ,
448.Cm nfs ,
449.Cm nullfs ,
450.Cm oldnfs ,
451.Cm udf ,
452and
453.Cm unionfs .
454.Nm
455will not call
456.Xr nmount 2
457directly and will instead attempt to execute a program in
458.Pa /sbin/mount_ Ns Sy XXX
459where
460.Sy XXX
461is replaced by the file system type name.
462For example, nfs file systems are mounted by the program
463.Pa /sbin/mount_nfs .
464.Pp
465Most file systems will be dynamically loaded by the kernel
466if not already present, and if the kernel module is available.
467.It Fl u
468The
469.Fl u
470flag indicates that the status of an already mounted file
471system should be changed.
472Any of the options discussed above (the
473.Fl o
474option)
475may be changed;
476also a file system can be changed from read-only to read-write
477or vice versa.
478An attempt to change from read-write to read-only will fail if any
479files on the file system are currently open for writing unless the
480.Fl f
481flag is also specified.
482The set of options is determined by applying the options specified
483in the argument to
484.Fl o
485and finally applying the
486.Fl r
487or
488.Fl w
489option.
490.It Fl v
491Verbose mode.
492If the
493.Fl v
494is used alone, show all file systems, including those that were mounted with the
495.Dv MNT_IGNORE
496flag and show additional information about each file system (including fsid
497when run by root).
498.It Fl w
499The file system object is to be read and write.
500.El
501.Sh ENVIRONMENT
502.Bl -tag -width ".Ev PATH_FSTAB"
503.It Ev PATH_FSTAB
504If the environment variable
505.Ev PATH_FSTAB
506is set, all operations are performed against the specified file.
507.Ev PATH_FSTAB
508will not be honored if the process environment or memory address space is
509considered
510.Dq tainted .
511(See
512.Xr issetugid 2
513for more information.)
514.El
515.Sh FILES
516.Bl -tag -width /etc/fstab -compact
517.It Pa /etc/fstab
518file system table
519.El
520.Sh DIAGNOSTICS
521Various, most of them are self-explanatory.
522.Pp
523.Dl XXXXX file system is not available
524.Pp
525The kernel does not support the respective file system type.
526Note that
527support for a particular file system might be provided either on a static
528(kernel compile-time), or dynamic basis (loaded as a kernel module by
529.Xr kldload 8 ) .
530.Sh SEE ALSO
531.Xr getfacl 1 ,
532.Xr setfacl 1 ,
533.Xr nmount 2 ,
534.Xr acl 3 ,
535.Xr mac 4 ,
536.Xr devfs 5 ,
537.Xr ext2fs 5 ,
538.Xr fstab 5 ,
539.Xr procfs 5 ,
540.Xr kldload 8 ,
541.Xr mount_cd9660 8 ,
542.Xr mount_msdosfs 8 ,
543.Xr mount_nfs 8 ,
544.Xr mount_nullfs 8 ,
545.Xr mount_udf 8 ,
546.Xr mount_unionfs 8 ,
547.Xr umount 8 ,
548.Xr zfs 8 ,
549.Xr zpool 8
550.Sh HISTORY
551A
552.Nm
553utility appeared in
554.At v1 .
555.Sh CAVEATS
556After a successful
557.Nm ,
558the permissions on the original mount point determine if
559.Pa ..\&
560is accessible from the mounted file system.
561The minimum permissions for
562the mount point for traversal across the mount point in both
563directions to be possible for all users is 0111 (execute for all).
564.Pp
565Use of the
566.Nm
567is preferred over the use of the file system specific
568.Pa mount_ Ns Sy XXX
569commands.
570In particular,
571.Xr mountd 8
572gets a
573.Dv SIGHUP
574signal (that causes an update of the export list)
575only when the file system is mounted via
576.Nm .
577.Sh BUGS
578It is possible for a corrupted file system to cause a crash.
579