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