]> git.ipfire.org Git - thirdparty/util-linux.git/blob - sys-utils/mount.8
Merge branch '2019wk33' of https://github.com/kerolasa/util-linux
[thirdparty/util-linux.git] / sys-utils / mount.8
1 .\" Copyright (c) 1996-2004 Andries Brouwer
2 .\" Copyright (C) 2006-2012 Karel Zak <kzak@redhat.com>
3 .\"
4 .\" This page is somewhat derived from a page that was
5 .\" (c) 1980, 1989, 1991 The Regents of the University of California
6 .\" and had been heavily modified by Rik Faith and myself.
7 .\" (Probably no BSD text remains.)
8 .\" Fragments of text were written by Werner Almesberger, Remy Card,
9 .\" Stephen Tweedie and Eric Youngdale.
10 .\"
11 .\" This is free documentation; you can redistribute it and/or
12 .\" modify it under the terms of the GNU General Public License as
13 .\" published by the Free Software Foundation; either version 2 of
14 .\" the License, or (at your option) any later version.
15 .\"
16 .\" The GNU General Public License's references to "object code"
17 .\" and "executables" are to be interpreted as the output of any
18 .\" document formatting or typesetting system, including
19 .\" intermediate and printed output.
20 .\"
21 .\" This manual is distributed in the hope that it will be useful,
22 .\" but WITHOUT ANY WARRANTY; without even the implied warranty of
23 .\" MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 .\" GNU General Public License for more details.
25 .\"
26 .\" You should have received a copy of the GNU General Public License along
27 .\" with this program; if not, write to the Free Software Foundation, Inc.,
28 .\" 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
29 .\"
30 .TH MOUNT 8 "August 2015" "util-linux" "System Administration"
31 .SH NAME
32 mount \- mount a filesystem
33 .SH SYNOPSIS
34 .B mount
35 .RB [ \-l | \-h | \-V ]
36 .LP
37 .B mount \-a
38 .RB [ \-fFnrsvw ]
39 .RB [ \-t
40 .IR fstype ]
41 .RB [ \-O
42 .IR optlist ]
43 .LP
44 .B mount
45 .RB [ \-fnrsvw ]
46 .RB [ \-o
47 .IR options ]
48 .IR device | dir
49 .LP
50 .B mount
51 .RB [ \-fnrsvw ]
52 .RB [ \-t
53 .IB fstype ]
54 .RB [ \-o
55 .IR options ]
56 .I device dir
57 .SH DESCRIPTION
58 All files accessible in a Unix system are arranged in one big
59 tree, the file hierarchy, rooted at
60 .IR / .
61 These files can be spread out over several devices. The
62 .B mount
63 command serves to attach the filesystem found on some device
64 to the big file tree. Conversely, the
65 .BR umount (8)
66 command will detach it again. The filesystem is used to control how data is
67 stored on the device or provided in a virtual way by network or another services.
68
69 The standard form of the
70 .B mount
71 command is:
72 .RS
73
74 .br
75 .BI "mount \-t" " type device dir"
76 .br
77
78 .RE
79 This tells the kernel to attach the filesystem found on
80 .I device
81 (which is of type
82 .IR type )
83 at the directory
84 .IR dir .
85 The option \fB\-t \fItype\fR is optional. The
86 .B mount
87 command is usually able to detect a filesystem. The root permissions are necessary
88 to mount a filesystem by default. See section "Non-superuser mounts" below for more details.
89 The previous contents (if any) and owner and mode of
90 .I dir
91 become invisible, and as long as this filesystem remains mounted,
92 the pathname
93 .I dir
94 refers to the root of the filesystem on
95 .IR device .
96
97 If only the directory or the device is given, for example:
98 .RS
99 .sp
100 .B mount /dir
101 .sp
102 .RE
103 then \fBmount\fR looks for a mountpoint (and if not found then for a device) in the
104 .I /etc/fstab
105 file. It's possible to use the
106 .B \-\-target
107 or
108 .B \-\-source
109 options to avoid ambivalent interpretation of the given argument. For example:
110 .RS
111 .sp
112 .B mount \-\-target /mountpoint
113 .sp
114 .RE
115
116 The same filesystem may be mounted more than once, and in some cases (e.g.
117 network filesystems) the same filesystem may be mounted on the same
118 mountpoint more times. The mount command does not implement any policy to
119 control this behavior. All behavior is controlled by the kernel and it is usually
120 specific to the filesystem driver. The exception is \fB\-\-all\fR, in this case
121 already mounted filesystems are ignored (see \fB\-\-all\fR below for more details).
122
123 .SS Listing the mounts
124 The listing mode is maintained for backward compatibility only.
125
126 For more robust and customizable output use
127 .BR findmnt (8),
128 \fBespecially in your scripts\fP. Note that control characters in the
129 mountpoint name are replaced with '?'.
130
131 The following command lists all mounted filesystems (of type
132 .IR type ):
133 .RS
134 .sp
135 .BR "mount " [ \-l "] [" "\-t \fItype\/\fP" ]
136 .sp
137 .RE
138 The option \fB\-l\fR adds labels to this listing. See below.
139
140 .SS Indicating the device and filesystem
141 Most devices are indicated by a filename (of a block special device), like
142 .IR /dev/sda1 ,
143 but there are other possibilities. For example, in the case of an NFS mount,
144 .I device
145 may look like
146 .IR knuth.cwi.nl:/dir .
147 It is also possible to indicate a block special device using its filesystem label
148 or UUID (see the \fB\-L\fR and \fB\-U\fR options below), or its partition label
149 or UUID. Partition identifiers are supported for example for GUID Partition
150 Tables (GPT).
151
152 The device name of disk partitions are unstable; hardware reconfiguration,
153 adding or removing a device can cause change in names. This is reason why it's
154 strongly recommended to use filesystem or partition identificators like UUID or
155 LABEL.
156
157 The command \fBlsblk --fs\fR provides overview of filesystems, LABELs and UUIDs
158 on available block devices. The command \fBblkid -p <device>\fR provides details about
159 a filesystem on the specified device.
160
161 Don't forget that there is no guarantee that UUIDs and labels are really
162 unique, especially if you move, share or copy the device. Use
163 .B "lsblk \-o +UUID,PARTUUID"
164 to verify that the UUIDs are really unique in your system.
165
166 The recommended setup is to use tags (e.g.\& \fBUUID=\fIuuid\fR) rather than
167 .I /dev/disk/by-{label,uuid,partuuid,partlabel}
168 udev symlinks in the
169 .I /etc/fstab
170 file. Tags are
171 more readable, robust and portable. The
172 .BR mount (8)
173 command internally uses udev
174 symlinks, so the use of symlinks in /etc/fstab has no advantage over tags.
175 For more details see
176 .BR libblkid (3).
177
178 Note that
179 .BR mount (8)
180 uses UUIDs as strings. The UUIDs from the command line or from
181 .BR fstab (5)
182 are not converted to internal binary representation. The string representation
183 of the UUID should be based on lower case characters.
184
185 The
186 .I proc
187 filesystem is not associated with a special device, and when
188 mounting it, an arbitrary keyword, such as
189 .I proc
190 can be used instead of a device specification.
191 (The customary choice
192 .I none
193 is less fortunate: the error message `none already mounted' from
194 .B mount
195 can be confusing.)
196
197 .SS The files /etc/fstab, /etc/mtab and /proc/mounts
198 The file
199 .I /etc/fstab
200 (see
201 .BR fstab (5)),
202 may contain lines describing what devices are usually
203 mounted where, using which options. The default location of the
204 .BR fstab (5)
205 file can be overridden with the
206 .BI \-\-fstab " path"
207 command-line option (see below for more details).
208 .LP
209 The command
210 .RS
211 .sp
212 .B mount \-a
213 .RB [ \-t
214 .IR type ]
215 .RB [ \-O
216 .IR optlist ]
217 .sp
218 .RE
219 (usually given in a bootscript) causes all filesystems mentioned in
220 .I fstab
221 (of the proper type and/or having or not having the proper options)
222 to be mounted as indicated, except for those whose line contains the
223 .B noauto
224 keyword. Adding the
225 .B \-F
226 option will make \fBmount\fR fork, so that the
227 filesystems are mounted simultaneously.
228 .LP
229 When mounting a filesystem mentioned in
230 .I fstab
231 or
232 .IR mtab ,
233 it suffices to specify on the command line only the device, or only the mount point.
234 .sp
235 The programs
236 .B mount
237 and
238 .B umount
239 traditionally maintained a list of currently mounted filesystems in the file
240 .IR /etc/mtab .
241 The support for regular classic
242 .I /etc/mtab
243 is completely disabled in compile time by default, because on current Linux
244 systems it is better to make it a symlink to
245 .I /proc/mounts
246 instead. The regular mtab file maintained in userspace cannot reliably
247 work with namespaces, containers and other advanced Linux features.
248 If the regular mtab support is enabled than it's possible to
249 use the file as well as the symlink.
250 .sp
251 If no arguments are given to
252 .BR mount ,
253 the list of mounted filesystems is printed.
254 .sp
255 If you want to override mount options from
256 .I /etc/fstab
257 you have to use the \fB\-o\fR option:
258 .RS
259 .sp
260 .BI mount " device" \fR| "dir " \-o " options"
261 .sp
262 .RE
263 and then the mount options from the command line will be appended to
264 the list of options from
265 .IR /etc/fstab .
266 This default behaviour is possible to change by command line
267 option \fB\-\-options\-mode\fR.
268 The usual behavior is that the last option wins if there are conflicting
269 ones.
270 .sp
271 The
272 .B mount
273 program does not read the
274 .I /etc/fstab
275 file if both
276 .I device
277 (or LABEL, UUID, PARTUUID or PARTLABEL) and
278 .I dir
279 are specified. For example, to mount device
280 .BR foo " at " /dir :
281 .RS
282 .sp
283 .B "mount /dev/foo /dir"
284 .sp
285 .RE
286 This default behaviour is possible to change by command line option
287 \fB\-\-options\-source\-force\fR to always read configuration from fstab. For
288 non-root users
289 .B mount
290 always read fstab configuration.
291
292 .SS Non-superuser mounts
293 Normally, only the superuser can mount filesystems.
294 However, when
295 .I fstab
296 contains the
297 .B user
298 option on a line, anybody can mount the corresponding filesystem.
299 .LP
300 Thus, given a line
301 .RS
302 .sp
303 .B "/dev/cdrom /cd iso9660 ro,user,noauto,unhide"
304 .sp
305 .RE
306 any user can mount the iso9660 filesystem found on an inserted CDROM
307 using the command:
308 .RS
309 .B "mount /cd"
310 .sp
311 .RE
312 Note that \fBmount\fR is very strict about non-root users and all paths
313 specified on command line are verified before fstab is parsed or a helper
314 program is executed. It's strongly recommended to use a valid mountpoint to
315 specify filesystem, otherwise \fBmount\fR may fail. For example it's bad idea
316 to use NFS or CIFS source on command line.
317 .PP
318 For more details, see
319 .BR fstab (5).
320 Only the user that mounted a filesystem can unmount it again.
321 If any user should be able to unmount it, then use
322 .B users
323 instead of
324 .B user
325 in the
326 .I fstab
327 line.
328 The
329 .B owner
330 option is similar to the
331 .B user
332 option, with the restriction that the user must be the owner
333 of the special file. This may be useful e.g.\& for
334 .I /dev/fd
335 if a login script makes the console user owner of this device.
336 The
337 .B group
338 option is similar, with the restriction that the user must be
339 member of the group of the special file.
340
341 .SS Bind mount operation
342 Remount part of the file hierarchy somewhere else. The call is:
343
344 .RS
345 .br
346 .B mount \-\-bind
347 .I olddir newdir
348 .RE
349
350 or by using this fstab entry:
351
352 .RS
353 .br
354 .BI / olddir
355 .BI / newdir
356 .B none bind
357 .RE
358
359 After this call the same contents are accessible in two places.
360
361 It is important to understand that "bind" does not to create any second-class
362 or special node in the kernel VFS. The "bind" is just another operation to
363 attach a filesystem. There is nowhere stored information that the filesystem
364 has been attached by "bind" operation. The \fIolddir\fR and \fInewdir\fR are
365 independent and the \fIolddir\fR may be umounted.
366
367 One can also remount a single file (on a single file). It's also
368 possible to use the bind mount to create a mountpoint from a regular
369 directory, for example:
370
371 .RS
372 .br
373 .B mount \-\-bind foo foo
374 .RE
375
376 The bind mount call attaches only (part of) a single filesystem, not possible
377 submounts. The entire file hierarchy including submounts is attached
378 a second place by using:
379
380 .RS
381 .br
382 .B mount \-\-rbind
383 .I olddir newdir
384 .RE
385
386 Note that the filesystem mount options maintained by kernel will remain the same as those
387 on the original mount point. The userspace mount options (e.g. _netdev) will not be copied
388 by
389 .BR mount (8)
390 and it's necessary explicitly specify the options on mount command line.
391
392 .BR mount (8)
393 since v2.27 allows to change the mount options by passing the
394 relevant options along with
395 .BR \-\-bind .
396 For example:
397
398 .RS
399 .br
400 .B mount -o bind,ro foo foo
401 .RE
402
403 This feature is not supported by the Linux kernel; it is implemented in userspace
404 by an additional \fBmount\fR(2) remounting system call.
405 This solution is not atomic.
406
407 The alternative (classic) way to create a read-only bind mount is to use the remount
408 operation, for example:
409
410 .RS
411 .br
412 .B mount \-\-bind
413 .I olddir newdir
414 .br
415 .B mount \-o remount,bind,ro
416 .I olddir newdir
417 .RE
418
419 Note that a read-only bind will create a read-only mountpoint (VFS entry),
420 but the original filesystem superblock will still be writable, meaning that the
421 .I olddir
422 will be writable, but the
423 .I newdir
424 will be read-only.
425
426 It's also possible to change nosuid, nodev, noexec, noatime, nodiratime and
427 relatime VFS entry flags by "remount,bind" operation. The another (for example
428 filesystem specific flags) are silently ignored. It's impossible to change mount
429 options recursively (for example with \fB-o rbind,ro\fR).
430
431 .BR mount (8)
432 since v2.31 ignores the \fBbind\fR flag from
433 .I /etc/fstab
434 on
435 .B remount operation
436 (if "-o remount" specified on command line). This is necessary to fully control
437 mount options on remount by command line. In the previous versions the bind
438 flag has been always applied and it was impossible to re-define mount options
439 without interaction with the bind semantic. This
440 .BR mount (8)
441 behavior does not affect situations when "remount,bind" is specified in the
442 .I /etc/fstab
443 file.
444
445 .SS The move operation
446 Move a
447 .B mounted tree
448 to another place (atomically). The call is:
449
450 .RS
451 .br
452 .B mount \-\-move
453 .I olddir newdir
454 .RE
455
456 This will cause the contents which previously appeared under
457 .I olddir
458 to now be accessible under
459 .IR newdir .
460 The physical location of the files is not changed.
461 Note that
462 .I olddir
463 has to be a mountpoint.
464
465 Note also that moving a mount residing under a shared mount is invalid and
466 unsupported. Use
467 .B findmnt \-o TARGET,PROPAGATION
468 to see the current propagation flags.
469
470 .SS Shared subtree operations
471 Since Linux 2.6.15 it is possible to mark a mount and its submounts as shared,
472 private, slave or unbindable. A shared mount provides the ability to create mirrors
473 of that mount such that mounts and unmounts within any of the mirrors propagate
474 to the other mirror. A slave mount receives propagation from its master, but
475 not vice versa. A private mount carries no propagation abilities. An
476 unbindable mount is a private mount which cannot be cloned through a bind
477 operation. The detailed semantics are documented in
478 .I Documentation/filesystems/sharedsubtree.txt
479 file in the kernel source tree.
480
481 Supported operations are:
482
483 .RS
484 .nf
485 .BI "mount \-\-make\-shared " mountpoint
486 .BI "mount \-\-make\-slave " mountpoint
487 .BI "mount \-\-make\-private " mountpoint
488 .BI "mount \-\-make\-unbindable " mountpoint
489 .fi
490 .RE
491
492 The following commands allow one to recursively change the type of all the
493 mounts under a given mountpoint.
494
495 .RS
496 .nf
497 .BI "mount \-\-make\-rshared " mountpoint
498 .BI "mount \-\-make\-rslave " mountpoint
499 .BI "mount \-\-make\-rprivate " mountpoint
500 .BI "mount \-\-make\-runbindable " mountpoint
501 .fi
502 .RE
503
504 .BR mount (8)
505 .B does not read
506 .BR fstab (5)
507 when a \fB\-\-make-\fR* operation is requested. All necessary information has to be
508 specified on the command line.
509
510 Note that the Linux kernel does not allow to change multiple propagation flags
511 with a single
512 .BR mount (2)
513 system call, and the flags cannot be mixed with other mount options and operations.
514
515 Since util-linux 2.23 the \fBmount\fR command allows to do more propagation
516 (topology) changes by one mount(8) call and do it also together with other
517 mount operations. This feature is EXPERIMENTAL. The propagation flags are applied
518 by additional \fBmount\fR(2) system calls when the preceding mount operations
519 were successful. Note that this use case is not atomic. It is possible to
520 specify the propagation flags in
521 .BR fstab (5)
522 as mount options
523 .RB ( private ,
524 .BR slave ,
525 .BR shared ,
526 .BR unbindable ,
527 .BR rprivate ,
528 .BR rslave ,
529 .BR rshared ,
530 .BR runbindable ).
531
532 For example:
533
534 .RS
535 .nf
536 .B mount \-\-make\-private \-\-make\-unbindable /dev/sda1 /foo
537 .fi
538 .RE
539
540 is the same as:
541
542 .RS
543 .nf
544 .B mount /dev/sda1 /foox
545 .B mount \-\-make\-private /foo
546 .B mount \-\-make\-unbindable /foo
547 .fi
548 .RE
549
550 .SH COMMAND-LINE OPTIONS
551 The full set of mount options used by an invocation of
552 .B mount
553 is determined by first extracting the
554 mount options for the filesystem from the
555 .I fstab
556 table, then applying any options specified by the
557 .B \-o
558 argument, and finally applying a
559 .BR \-r " or " \-w
560 option, when present.
561
562 The command \fBmount\fR does not pass all command-line options to the
563 \fB/sbin/mount.\fIsuffix\fR mount helpers. The interface between \fBmount\fR
564 and the mount helpers is described below in the section \fBEXTERNAL HELPERS\fR.
565 .sp
566 Command-line options available for the
567 .B mount
568 command are:
569 .TP
570 .BR \-a , " \-\-all"
571 Mount all filesystems (of the given types) mentioned in
572 .I fstab
573 (except for those whose line contains the
574 .B noauto
575 keyword). The filesystems are mounted following their order in
576 .IR fstab .
577 The mount command compares filesystem source, target (and fs root for bind
578 mount or btrfs) to detect already mounted filesystems. The kernel table with
579 already mounted filesystems is cached during \fBmount \-\-all\fR. It means
580 that all duplicated fstab entries will be mounted.
581 .sp
582 The option \fB\-\-all\fR is possible to use for remount operation too. In this
583 case all filters (\fB\-t\fR and \fB\-O\fR) are applied to the table of already
584 mounted filesystems.
585 .sp
586 Note that it is a bad practice to use \fBmount \-a\fR for
587 .I fstab
588 checking. The recommended solution is \fBfindmnt \-\-verify\fR.
589 .TP
590 .BR \-B , " \-\-bind"
591 Remount a subtree somewhere else (so that its contents are available
592 in both places). See above, under \fBBind mounts\fR.
593 .TP
594 .BR \-c , " \-\-no\-canonicalize"
595 Don't canonicalize paths. The mount command canonicalizes all paths
596 (from command line or fstab) by default. This option can be used
597 together with the
598 .B \-f
599 flag for already canonicalized absolute paths. The option is designed for mount
600 helpers which call \fBmount -i\fR. It is strongly recommended to not use this
601 command-line option for normal mount operations.
602 .sp
603 Note that \fBmount\fR(8) does not pass this option to the
604 \fB/sbin/mount.\fItype\fR helpers.
605 .TP
606 .BR \-F , " \-\-fork"
607 (Used in conjunction with
608 .BR \-a .)
609 Fork off a new incarnation of \fBmount\fR for each device.
610 This will do the mounts on different devices or different NFS servers
611 in parallel.
612 This has the advantage that it is faster; also NFS timeouts go in
613 parallel. A disadvantage is that the mounts are done in undefined order.
614 Thus, you cannot use this option if you want to mount both
615 .I /usr
616 and
617 .IR /usr/spool .
618 .IP "\fB\-f, \-\-fake\fP"
619 Causes everything to be done except for the actual system call; if it's not
620 obvious, this ``fakes'' mounting the filesystem. This option is useful in
621 conjunction with the
622 .B \-v
623 flag to determine what the
624 .B mount
625 command is trying to do. It can also be used to add entries for devices
626 that were mounted earlier with the \fB\-n\fR option. The \fB\-f\fR option
627 checks for an existing record in /etc/mtab and fails when the record already
628 exists (with a regular non-fake mount, this check is done by the kernel).
629 .IP "\fB\-i, \-\-internal\-only\fP"
630 Don't call the \fB/sbin/mount.\fIfilesystem\fR helper even if it exists.
631 .TP
632 .BR \-L , " \-\-label " \fIlabel
633 Mount the partition that has the specified
634 .IR label .
635 .TP
636 .BR \-l , " \-\-show\-labels"
637 Add the labels in the mount output. \fBmount\fR must have
638 permission to read the disk device (e.g.\& be set-user-ID root) for this to work.
639 One can set such a label for ext2, ext3 or ext4 using the
640 .BR e2label (8)
641 utility, or for XFS using
642 .BR xfs_admin (8),
643 or for reiserfs using
644 .BR reiserfstune (8).
645 .TP
646 .BR \-M , " \-\-move"
647 Move a subtree to some other place. See above, the subsection
648 \fBThe move operation\fR.
649 .TP
650 .BR \-n , " \-\-no\-mtab"
651 Mount without writing in
652 .IR /etc/mtab .
653 This is necessary for example when
654 .I /etc
655 is on a read-only filesystem.
656 .TP
657 .BR \-N , " \-\-namespace " \fIns
658 Perform mount in namespace specified by \fIns\fR.
659 \fIns\fR is either PID of process running in that namespace
660 or special file representing that namespace.
661 .sp
662 .BR mount (8)
663 switches to the namespace when it reads /etc/fstab, writes /etc/mtab (or writes to /run/mount) and calls
664 .BR mount (2)
665 system call, otherwise it runs in the original namespace. It means that the target namespace does not have
666 to contain any libraries or another requirements necessary to execute
667 .BR mount (2)
668 command.
669 .sp
670 See \fBnamespaces\fR(7) for more information.
671 .TP
672 .BR \-O , " \-\-test\-opts " \fIopts
673 Limit the set of filesystems to which the
674 .B \-a
675 option applies. In this regard it is like the
676 .B \-t
677 option except that
678 .B \-O
679 is useless without
680 .BR \-a .
681 For example, the command:
682 .RS
683 .RS
684 .sp
685 .B "mount \-a \-O no_netdev"
686 .sp
687 .RE
688 mounts all filesystems except those which have the option
689 .I _netdev
690 specified in the options field in the
691 .I /etc/fstab
692 file.
693
694 It is different from
695 .B \-t
696 in that each option is matched exactly; a leading
697 .B no
698 at the beginning of one option does not negate the rest.
699
700 The
701 .B \-t
702 and
703 .B \-O
704 options are cumulative in effect; that is, the command
705 .RS
706 .sp
707 .B "mount \-a \-t ext2 \-O _netdev"
708 .sp
709 .RE
710 mounts all ext2 filesystems with the _netdev option, not all filesystems
711 that are either ext2 or have the _netdev option specified.
712 .RE
713 .TP
714 .BR \-o , " \-\-options " \fIopts
715 Use the specified mount options. The \fIopts\fR argument is
716 a comma-separated list. For example:
717 .RS
718 .RS
719 .sp
720 .B "mount LABEL=mydisk \-o noatime,nodev,nosuid"
721 .sp
722 .RE
723
724 For more details, see the
725 .B FILESYSTEM-INDEPENDENT MOUNT OPTIONS
726 and
727 .B FILESYSTEM-SPECIFIC MOUNT OPTIONS
728 sections.
729 .RE
730
731 .TP
732 .BR "\-\-options\-mode " \fImode
733 Controls how to combine options from fstab/mtab with options from command line.
734 \fImode\fR can be one of
735 .BR ignore ", " append ", " prepend " or " replace .
736 For example \fBappend\fR means that options from fstab are appended to options from command line.
737 Default value is \fBprepend\fR -- it means command line options are evaluated after fstab options.
738 Note that the last option wins if there are conflicting ones.
739
740 .TP
741 .BR "\-\-options\-source " \fIsource
742 Source of default options.
743 \fIsource\fR is comma separated list of
744 .BR fstab ", " mtab " and " disable .
745 \fBdisable\fR disables
746 .BR fstab " and " mtab
747 and disables \fB\-\-options\-source\-force\fR.
748 Default value is \fBfstab,mtab\fR.
749
750 .TP
751 .B \-\-options\-source\-force
752 Use options from fstab/mtab even if both \fIdevice\fR and \fIdir\fR are specified.
753
754 .TP
755 .BR \-R , " \-\-rbind"
756 Remount a subtree and all possible submounts somewhere else (so that its
757 contents are available in both places). See above, the subsection
758 \fBBind mounts\fR.
759 .TP
760 .BR \-r , " \-\-read\-only"
761 Mount the filesystem read-only. A synonym is
762 .BR "\-o ro" .
763 .sp
764 Note that, depending on the filesystem type, state and kernel behavior, the
765 system may still write to the device. For example, ext3 and ext4 will replay the
766 journal if the filesystem is dirty. To prevent this kind of write access, you
767 may want to mount an ext3 or ext4 filesystem with the \fBro,noload\fR mount
768 options or set the block device itself to read-only mode, see the
769 .BR blockdev (8)
770 command.
771 .TP
772 .B \-s
773 Tolerate sloppy mount options rather than failing. This will ignore mount
774 options not supported by a filesystem type. Not all filesystems support this
775 option. Currently it's supported by the \fBmount.nfs\fR mount helper only.
776 .TP
777 .BI \-\-source " device"
778 If only one argument for the mount command is given then the argument might be
779 interpreted as target (mountpoint) or source (device). This option allows to
780 explicitly define that the argument is the mount source.
781 .TP
782 .BI \-\-target " directory"
783 If only one argument for the mount command is given then the argument might be
784 interpreted as target (mountpoint) or source (device). This option allows to
785 explicitly define that the argument is the mount target.
786 .TP
787 .BR \-T , " \-\-fstab " \fIpath
788 Specifies an alternative fstab file. If \fIpath\fP is a directory then the files
789 in the directory are sorted by
790 .BR strverscmp (3);
791 files that start with "."\& or without an \&.fstab extension are ignored. The option
792 can be specified more than once. This option is mostly designed for initramfs
793 or chroot scripts where additional configuration is specified beyond standard
794 system configuration.
795 .sp
796 Note that \fBmount\fR(8) does not pass the option \fB\-\-fstab\fP to the
797 \fB/sbin/mount.\fItype\fR helpers, meaning that the alternative fstab files will be
798 invisible for the helpers. This is no problem for normal mounts, but user
799 (non-root) mounts always require fstab to verify the user's rights.
800 .TP
801 .BR \-t , " \-\-types " \fIfstype
802 The argument following the
803 .B \-t
804 is used to indicate the filesystem type. The filesystem types which are
805 currently supported depend on the running kernel. See
806 .I /proc/filesystems
807 and
808 .I /lib/modules/$(uname -r)/kernel/fs
809 for a complete list of the filesystems. The most common are ext2, ext3, ext4,
810 xfs, btrfs, vfat, sysfs, proc, nfs and cifs.
811 .sp
812 The programs
813 .B mount
814 and
815 .B umount
816 support filesystem subtypes. The subtype is defined by a '.subtype' suffix. For
817 example 'fuse.sshfs'. It's recommended to use subtype notation rather than add
818 any prefix to the mount source (for example 'sshfs#example.com' is
819 deprecated).
820
821 If no
822 .B \-t
823 option is given, or if the
824 .B auto
825 type is specified, mount will try to guess the desired type.
826 Mount uses the blkid library for guessing the filesystem
827 type; if that does not turn up anything that looks familiar,
828 mount will try to read the file
829 .IR /etc/filesystems ,
830 or, if that does not exist,
831 .IR /proc/filesystems .
832 All of the filesystem types listed there will be tried,
833 except for those that are labeled "nodev" (e.g.\&
834 .IR devpts ,
835 .I proc
836 and
837 .IR nfs ).
838 If
839 .I /etc/filesystems
840 ends in a line with a single *, mount will read
841 .I /proc/filesystems
842 afterwards. While trying, all filesystem types will be
843 mounted with the mount option \fBsilent\fR.
844 .sp
845 The
846 .B auto
847 type may be useful for user-mounted floppies.
848 Creating a file
849 .I /etc/filesystems
850 can be useful to change the probe order (e.g., to try vfat before msdos
851 or ext3 before ext2) or if you use a kernel module autoloader.
852 .sp
853 More than one type may be specified in a comma-separated
854 list, for option
855 .B \-t
856 as well as in an
857 .I /etc/fstab
858 entry. The list of filesystem types for option
859 .B \-t
860 can be prefixed with
861 .B no
862 to specify the filesystem types on which no action should be taken.
863 The prefix
864 .B no
865 has no effect when specified in an
866 .I /etc/fstab
867 entry.
868 .sp
869 The prefix
870 .B no
871 can be meaningful with the
872 .B \-a
873 option. For example, the command
874 .RS
875 .RS
876 .sp
877 .B "mount \-a \-t nomsdos,smbfs"
878 .sp
879 .RE
880 mounts all filesystems except those of type
881 .I msdos
882 and
883 .IR smbfs .
884 .sp
885 For most types all the
886 .B mount
887 program has to do is issue a simple
888 .BR mount (2)
889 system call, and no detailed knowledge of the filesystem type is required.
890 For a few types however (like nfs, nfs4, cifs, smbfs, ncpfs) an ad hoc code is
891 necessary. The nfs, nfs4, cifs, smbfs, and ncpfs filesystems
892 have a separate mount program. In order to make it possible to
893 treat all types in a uniform way, \fBmount\fR will execute the program
894 .BI /sbin/mount. type
895 (if that exists) when called with type
896 .IR type .
897 Since different versions of the
898 .B smbmount
899 program have different calling conventions,
900 .B /sbin/mount.smbfs
901 may have to be a shell script that sets up the desired call.
902 .RE
903 .TP
904 .BR \-U , " \-\-uuid " \fIuuid
905 Mount the partition that has the specified
906 .IR uuid .
907 .TP
908 .BR \-v , " \-\-verbose"
909 Verbose mode.
910 .TP
911 .BR \-w , " \-\-rw" , " \-\-read\-write"
912 Mount the filesystem read/write. The read-write is kernel default. A synonym is
913 .BR "\-o rw" .
914
915 Note that specify \fB\-w\fR on command line forces \fBmount\fR command
916 to never try read-only mount on write-protected devices. The default is
917 try read-only if the previous mount syscall with read-write flags failed.
918 .TP
919 .BR \-V , " \-\-version"
920 Display version information and exit.
921 .TP
922 .BR \-h , " \-\-help"
923 Display help text and exit.
924
925 .SH FILESYSTEM-INDEPENDENT MOUNT OPTIONS
926 Some of these options are only useful when they appear in the
927 .I /etc/fstab
928 file.
929
930 Some of these options could be enabled or disabled by default
931 in the system kernel. To check the current setting see the options
932 in /proc/mounts. Note that filesystems also have per-filesystem
933 specific default mount options (see for example \fBtune2fs \-l\fP
934 output for extN filesystems).
935
936 The following options apply to any filesystem that is being
937 mounted (but not every filesystem actually honors them \(en e.g.\&, the
938 .B sync
939 option today has an effect only for ext2, ext3, ext4, fat, vfat, ufs and xfs):
940
941 .TP
942 .B async
943 All I/O to the filesystem should be done asynchronously. (See also the
944 .B sync
945 option.)
946 .TP
947 .B atime
948 Do not use the \fBnoatime\fR feature, so the inode access time is controlled
949 by kernel defaults. See also the descriptions of the \fB\%relatime\fR and
950 .B strictatime
951 mount options.
952 .TP
953 .B noatime
954 Do not update inode access times on this filesystem (e.g.\& for faster
955 access on the news spool to speed up news servers). This works for all
956 inode types (directories too), so it implies \fB\%nodiratime\fR.
957 .TP
958 .B auto
959 Can be mounted with the
960 .B \-a
961 option.
962 .TP
963 .B noauto
964 Can only be mounted explicitly (i.e., the
965 .B \-a
966 option will not cause the filesystem to be mounted).
967 .TP
968 .na
969 .BR context=\fIcontext ", " fscontext=\fIcontext ", " defcontext=\fIcontext ", and " \%rootcontext=\fIcontext
970 .ad
971 The
972 .B context=
973 option is useful when mounting filesystems that do not support
974 extended attributes, such as a floppy or hard disk formatted with VFAT, or
975 systems that are not normally running under SELinux, such as an ext3 or ext4 formatted
976
977 disk from a non-SELinux workstation. You can also use
978 .B context=
979 on filesystems you do not trust, such as a floppy. It also helps in compatibility with
980 xattr-supporting filesystems on earlier 2.4.<x> kernel versions. Even where
981 xattrs are supported, you can save time not having to label every file by
982 assigning the entire disk one security context.
983
984 A commonly used option for removable media is
985 .BR \%context="system_u:object_r:removable_t" .
986
987 Two other options are
988 .B fscontext=
989 and
990 .BR defcontext= ,
991 both of which are mutually exclusive of the context option. This means you
992 can use fscontext and defcontext with each other, but neither can be used with
993 context.
994
995 The
996 .B fscontext=
997 option works for all filesystems, regardless of their xattr
998 support. The fscontext option sets the overarching filesystem label to a
999 specific security context. This filesystem label is separate from the
1000 individual labels on the files. It represents the entire filesystem for
1001 certain kinds of permission checks, such as during mount or file creation.
1002 Individual file labels are still obtained from the xattrs on the files
1003 themselves. The context option actually sets the aggregate context that
1004 fscontext provides, in addition to supplying the same label for individual
1005 files.
1006
1007 You can set the default security context for unlabeled files using
1008 .B defcontext=
1009 option. This overrides the value set for unlabeled files in the policy and requires a
1010 filesystem that supports xattr labeling.
1011
1012 The
1013 .B rootcontext=
1014 option allows you to explicitly label the root inode of a FS being mounted
1015 before that FS or inode becomes visible to userspace. This was found to be
1016 useful for things like stateless linux.
1017
1018 Note that the kernel rejects any remount request that includes the context
1019 option, \fBeven\fP when unchanged from the current context.
1020
1021 .BR "Warning: the \fIcontext\fP value might contain commas" ,
1022 in which case the value has to be properly quoted, otherwise
1023 .BR mount (8)
1024 will interpret the comma as a separator between mount options. Don't forget that
1025 the shell strips off quotes and thus
1026 .BR "double quoting is required" .
1027 For example:
1028 .RS
1029 .RS
1030 .sp
1031 .nf
1032 .B mount \-t tmpfs none /mnt \-o \e
1033 .B \ \ 'context="system_u:object_r:tmp_t:s0:c127,c456",noexec'
1034 .fi
1035 .sp
1036 .RE
1037 For more details, see
1038 .BR selinux (8).
1039 .RE
1040
1041 .TP
1042 .B defaults
1043 Use the default options:
1044 .BR rw ", " suid ", " dev ", " exec ", " auto ", " nouser ", and " async .
1045
1046 Note that the real set of all default mount options depends on kernel
1047 and filesystem type. See the beginning of this section for more details.
1048 .TP
1049 .B dev
1050 Interpret character or block special devices on the filesystem.
1051 .TP
1052 .B nodev
1053 Do not interpret character or block special devices on the file
1054 system.
1055 .TP
1056 .B diratime
1057 Update directory inode access times on this filesystem. This is the default.
1058 (This option is ignored when \fBnoatime\fR is set.)
1059 .TP
1060 .B nodiratime
1061 Do not update directory inode access times on this filesystem.
1062 (This option is implied when \fBnoatime\fR is set.)
1063 .TP
1064 .B dirsync
1065 All directory updates within the filesystem should be done synchronously.
1066 This affects the following system calls: creat, link, unlink, symlink,
1067 mkdir, rmdir, mknod and rename.
1068 .TP
1069 .B exec
1070 Permit execution of binaries.
1071 .TP
1072 .B noexec
1073 Do not permit direct execution of any binaries on the mounted filesystem.
1074 .TP
1075 .B group
1076 Allow an ordinary user to mount the filesystem if one
1077 of that user's groups matches the group of the device.
1078 This option implies the options
1079 .BR nosuid " and " nodev
1080 (unless overridden by subsequent options, as in the option line
1081 .BR group,dev,suid ).
1082 .TP
1083 .B iversion
1084 Every time the inode is modified, the i_version field will be incremented.
1085 .TP
1086 .B noiversion
1087 Do not increment the i_version inode field.
1088 .TP
1089 .B mand
1090 Allow mandatory locks on this filesystem. See
1091 .BR fcntl (2).
1092 .TP
1093 .B nomand
1094 Do not allow mandatory locks on this filesystem.
1095 .TP
1096 .B _netdev
1097 The filesystem resides on a device that requires network access
1098 (used to prevent the system from attempting to mount these filesystems
1099 until the network has been enabled on the system).
1100 .TP
1101 .B nofail
1102 Do not report errors for this device if it does not exist.
1103 .TP
1104 .B relatime
1105 Update inode access times relative to modify or change time. Access
1106 time is only updated if the previous access time was earlier than the
1107 current modify or change time. (Similar to \fB\%noatime\fR, but it doesn't
1108 break \fBmutt\fR or other applications that need to know if a file has been
1109 read since the last time it was modified.)
1110
1111 Since Linux 2.6.30, the kernel defaults to the behavior provided by this
1112 option (unless
1113 .B \%noatime
1114 was specified), and the
1115 .B \%strictatime
1116 option is required to obtain traditional semantics. In addition, since Linux
1117 2.6.30, the file's last access time is always updated if it is more than 1
1118 day old.
1119 .TP
1120 .B norelatime
1121 Do not use the
1122 .B relatime
1123 feature. See also the
1124 .B strictatime
1125 mount option.
1126 .TP
1127 .B strictatime
1128 Allows to explicitly request full atime updates. This makes it
1129 possible for the kernel to default to
1130 .B \%relatime
1131 or
1132 .B \%noatime
1133 but still allow userspace to override it. For more details about the default
1134 system mount options see /proc/mounts.
1135 .TP
1136 .B nostrictatime
1137 Use the kernel's default behavior for inode access time updates.
1138 .TP
1139 .B lazytime
1140 Only update times (atime, mtime, ctime) on the in-memory version of the file inode.
1141
1142 This mount option significantly reduces writes to the inode table for
1143 workloads that perform frequent random writes to preallocated files.
1144
1145 The on-disk timestamps are updated only when:
1146 .sp
1147 .RS
1148 - the inode needs to be updated for some change unrelated to file timestamps
1149 .sp
1150 - the application employs
1151 .BR fsync (2),
1152 .BR syncfs (2),
1153 or
1154 .BR sync (2)
1155 .sp
1156 - an undeleted inode is evicted from memory
1157 .sp
1158 - more than 24 hours have passed since the i-node was written to disk.
1159 .RE
1160 .sp
1161 .TP
1162 .B nolazytime
1163 Do not use the lazytime feature.
1164 .TP
1165 .B suid
1166 Honor set-user-ID and set-group-ID bits or file capabilities when
1167 executing programs from this filesystem.
1168 .TP
1169 .B nosuid
1170 Do not honor set-user-ID and set-group-ID bits or file capabilities when
1171 executing programs from this filesystem.
1172 .TP
1173 .B silent
1174 Turn on the silent flag.
1175 .TP
1176 .B loud
1177 Turn off the silent flag.
1178 .TP
1179 .B owner
1180 Allow an ordinary user to mount the filesystem if that
1181 user is the owner of the device.
1182 This option implies the options
1183 .BR nosuid " and " nodev
1184 (unless overridden by subsequent options, as in the option line
1185 .BR owner,dev,suid ).
1186 .TP
1187 .B remount
1188 Attempt to remount an already-mounted filesystem. This is commonly
1189 used to change the mount flags for a filesystem, especially to make a
1190 readonly filesystem writable. It does not change device or mount point.
1191
1192 The remount operation together with the
1193 .B bind
1194 flag has special semantic. See above, the subsection \fBBind mounts\fR.
1195
1196 The remount functionality follows the standard way the mount command works
1197 with options from fstab. This means that \fBmount\fR does not
1198 read fstab (or mtab) only when both
1199 .I device
1200 and
1201 .I dir
1202 are specified.
1203 .sp
1204 .in +4
1205 .B "mount \-o remount,rw /dev/foo /dir"
1206 .in
1207 .sp
1208 After this call all old mount options are replaced and arbitrary stuff from
1209 fstab (or mtab) is ignored, except the loop= option which is internally
1210 generated and maintained by the mount command.
1211 .sp
1212 .in +4
1213 .B "mount \-o remount,rw /dir"
1214 .in
1215 .sp
1216 After this call, mount reads fstab and merges these options with
1217 the options from the command line (\fB\-o\fR).
1218 If no mountpoint is found in fstab, then a remount with unspecified source is
1219 allowed.
1220 .sp
1221 mount(8) allows to use \fB\-\-all\fR to remount all already mounted filesystems
1222 which match a specified filter (\fB\-O\fR and \fB\-t\fR). For example:
1223 .sp
1224 .in +4
1225 .B "mount \-\-all \-o remount,ro -t vfat"
1226 .in
1227 .sp
1228 remounts all already mounted vfat filesystems in read-only mode. The each of the
1229 filesystems is remounted by "mount \-o remount,ro /dir" semantic. It means the
1230 mount command reads fstab or mtab and merges these options with the options
1231 from the command line.
1232 .TP
1233 .B ro
1234 Mount the filesystem read-only.
1235 .TP
1236 .B rw
1237 Mount the filesystem read-write.
1238 .TP
1239 .B sync
1240 All I/O to the filesystem should be done synchronously. In the case of
1241 media with a limited number of write cycles
1242 (e.g.\& some flash drives), \fBsync\fR may cause life-cycle shortening.
1243 .TP
1244 .B user
1245 Allow an ordinary user to mount the filesystem.
1246 The name of the mounting user is written to the mtab file (or to the private
1247 libmount file in /run/mount on systems without a regular mtab) so that this
1248 same user can unmount the filesystem again.
1249 This option implies the options
1250 .BR noexec ", " nosuid ", and " nodev
1251 (unless overridden by subsequent options, as in the option line
1252 .BR user,exec,dev,suid ).
1253 .TP
1254 .B nouser
1255 Forbid an ordinary user to mount the filesystem.
1256 This is the default; it does not imply any other options.
1257 .TP
1258 .B users
1259 Allow any user to mount and to unmount the filesystem, even
1260 when some other ordinary user mounted it.
1261 This option implies the options
1262 .BR noexec ", " nosuid ", and " nodev
1263 (unless overridden by subsequent options, as in the option line
1264 .BR users,exec,dev,suid ).
1265 .TP
1266 .B X-*
1267 All options prefixed with "X-" are interpreted as comments or as userspace
1268 application-specific options. These options are not stored in the user space (e.g. mtab file),
1269 nor sent to the mount.\fItype\fR helpers nor to the
1270 .BR mount (2)
1271 system call. The suggested format is \fBX-\fIappname\fR.\fIoption\fR.
1272 .TP
1273 .B x-*
1274 The same as \fBX-*\fR options, but stored permanently in the user space. It
1275 means the options are also available for umount or another operations. Note
1276 that maintain mount options in user space is tricky, because it's necessary use
1277 libmount based tools and there is no guarantee that the options will be always
1278 available (for example after a move mount operation or in unshared namespace).
1279
1280 Note that before util-linux v2.30 the x-* options have not been maintained by
1281 libmount and stored in user space (functionality was the same as have X-* now),
1282 but due to growing number of use-cases (in initrd, systemd etc.) the
1283 functionality have been extended to keep existing fstab configurations usable
1284 without a change.
1285 .TP
1286 .BR X-mount.mkdir [ = \fImode\fR ]
1287 Allow to make a target directory (mountpoint). The optional argument
1288 .I mode
1289 specifies the filesystem access mode used for
1290 .BR mkdir (2)
1291 in octal notation. The default mode is 0755. This functionality is supported
1292 only for root users. The option is also supported as x-mount.mkdir, this notation
1293 is deprecated for mount.mkdir since v2.30.
1294
1295 .SH "FILESYSTEM-SPECIFIC MOUNT OPTIONS"
1296 You should consult the respective man page for the filesystem first.
1297 If you want to know what options the ext4 filesystem supports, then check the
1298 .BR ext4 (5)
1299 man page.
1300 If that doesn't exist, you can also check the corresponding mount page like
1301 .BR mount.cifs (8).
1302 Note that you might have to install the respective userland tools.
1303 .sp
1304 The following options apply only to certain filesystems.
1305 We sort them by filesystem. They all follow the
1306 .B \-o
1307 flag.
1308 .sp
1309 What options are supported depends a bit on the running kernel.
1310 More info may be found in the kernel source subdirectory
1311 .IR Documentation/filesystems .
1312
1313 .SS "Mount options for adfs"
1314 .TP
1315 \fBuid=\fP\,\fIvalue\fP and \fBgid=\fP\,\fIvalue\fP
1316 Set the owner and group of the files in the filesystem (default: uid=gid=0).
1317 .TP
1318 \fBownmask=\fP\,\fIvalue\fP and \fBothmask=\fP\,\fIvalue\fP
1319 Set the permission mask for ADFS 'owner' permissions and 'other' permissions,
1320 respectively (default: 0700 and 0077, respectively).
1321 See also
1322 .IR /usr/src/linux/Documentation/filesystems/adfs.txt .
1323
1324 .SS "Mount options for affs"
1325 .TP
1326 \fBuid=\fP\,\fIvalue\fP and \fBgid=\fP\,\fIvalue\fP
1327 Set the owner and group of the root of the filesystem (default: uid=gid=0,
1328 but with option
1329 .B uid
1330 or
1331 .B gid
1332 without specified value, the UID and GID of the current process are taken).
1333 .TP
1334 \fBsetuid=\fP\,\fIvalue\fP and \fBsetgid=\fP\,\fIvalue\fP
1335 Set the owner and group of all files.
1336 .TP
1337 .BI mode= value
1338 Set the mode of all files to
1339 .IR value " & 0777"
1340 disregarding the original permissions.
1341 Add search permission to directories that have read permission.
1342 The value is given in octal.
1343 .TP
1344 .B protect
1345 Do not allow any changes to the protection bits on the filesystem.
1346 .TP
1347 .B usemp
1348 Set UID and GID of the root of the filesystem to the UID and GID
1349 of the mount point upon the first sync or umount, and then
1350 clear this option. Strange...
1351 .TP
1352 .B verbose
1353 Print an informational message for each successful mount.
1354 .TP
1355 .BI prefix= string
1356 Prefix used before volume name, when following a link.
1357 .TP
1358 .BI volume= string
1359 Prefix (of length at most 30) used before '/' when following a symbolic link.
1360 .TP
1361 .BI reserved= value
1362 (Default: 2.) Number of unused blocks at the start of the device.
1363 .TP
1364 .BI root= value
1365 Give explicitly the location of the root block.
1366 .TP
1367 .BI bs= value
1368 Give blocksize. Allowed values are 512, 1024, 2048, 4096.
1369 .TP
1370 .BR grpquota | noquota | quota | usrquota
1371 These options are accepted but ignored.
1372 (However, quota utilities may react to such strings in
1373 .IR /etc/fstab .)
1374
1375 .SS "Mount options for debugfs"
1376 The debugfs filesystem is a pseudo filesystem, traditionally mounted on
1377 .IR /sys/kernel/debug .
1378 .\" or just /debug
1379 .\" present since 2.6.11
1380 As of kernel version 3.4, debugfs has the following options:
1381 .TP
1382 .BI uid= n ", gid=" n
1383 Set the owner and group of the mountpoint.
1384 .TP
1385 .BI mode= value
1386 Sets the mode of the mountpoint.
1387
1388 .SS "Mount options for devpts"
1389 The devpts filesystem is a pseudo filesystem, traditionally mounted on
1390 .IR /dev/pts .
1391 In order to acquire a pseudo terminal, a process opens
1392 .IR /dev/ptmx ;
1393 the number of the pseudo terminal is then made available to the process
1394 and the pseudo terminal slave can be accessed as
1395 .IR /dev/pts/ <number>.
1396 .TP
1397 \fBuid=\fP\,\fIvalue\fP and \fBgid=\fP\,\fIvalue\fP
1398 This sets the owner or the group of newly created PTYs to
1399 the specified values. When nothing is specified, they will
1400 be set to the UID and GID of the creating process.
1401 For example, if there is a tty group with GID 5, then
1402 .B gid=5
1403 will cause newly created PTYs to belong to the tty group.
1404 .TP
1405 .BI mode= value
1406 Set the mode of newly created PTYs to the specified value.
1407 The default is 0600.
1408 A value of
1409 .B mode=620
1410 and
1411 .B gid=5
1412 makes "mesg y" the default on newly created PTYs.
1413 .TP
1414 \fBnewinstance
1415 Create a private instance of devpts filesystem, such that
1416 indices of ptys allocated in this new instance are
1417 independent of indices created in other instances of devpts.
1418
1419 All mounts of devpts without this
1420 .B newinstance
1421 option share the same set of pty indices (i.e. legacy mode).
1422 Each mount of devpts with the
1423 .B newinstance
1424 option has a private set of pty indices.
1425
1426 This option is mainly used to support containers in the
1427 linux kernel. It is implemented in linux kernel versions
1428 starting with 2.6.29. Further, this mount option is valid
1429 only if CONFIG_DEVPTS_MULTIPLE_INSTANCES is enabled in the
1430 kernel configuration.
1431
1432 To use this option effectively,
1433 .I /dev/ptmx
1434 must be a symbolic link to
1435 .I pts/ptmx.
1436 See
1437 .I Documentation/filesystems/devpts.txt
1438 in the linux kernel source tree for details.
1439 .TP
1440 .BI ptmxmode= value
1441
1442 Set the mode for the new
1443 .I ptmx
1444 device node in the devpts filesystem.
1445
1446 With the support for multiple instances of devpts (see
1447 .B newinstance
1448 option above), each instance has a private
1449 .I ptmx
1450 node in the root of the devpts filesystem (typically
1451 .IR /dev/pts/ptmx ).
1452
1453 For compatibility with older versions of the kernel, the
1454 default mode of the new
1455 .I ptmx
1456 node is 0000.
1457 .BI ptmxmode= value
1458 specifies a more useful mode for the
1459 .I ptmx
1460 node and is highly recommended when the
1461 .B newinstance
1462 option is specified.
1463
1464 This option is only implemented in linux kernel versions
1465 starting with 2.6.29. Further, this option is valid only if
1466 CONFIG_DEVPTS_MULTIPLE_INSTANCES is enabled in the kernel
1467 configuration.
1468
1469 .SS "Mount options for fat"
1470 (Note:
1471 .I fat
1472 is not a separate filesystem, but a common part of the
1473 .IR msdos ,
1474 .I umsdos
1475 and
1476 .I vfat
1477 filesystems.)
1478 .TP
1479 .BR blocksize= { 512 | 1024 | 2048 }
1480 Set blocksize (default 512). This option is obsolete.
1481 .TP
1482 \fBuid=\fP\,\fIvalue\fP and \fBgid=\fP\,\fIvalue\fP
1483 Set the owner and group of all files.
1484 (Default: the UID and GID of the current process.)
1485 .TP
1486 .BI umask= value
1487 Set the umask (the bitmask of the permissions that are
1488 .B not
1489 present). The default is the umask of the current process.
1490 The value is given in octal.
1491 .TP
1492 .BI dmask= value
1493 Set the umask applied to directories only.
1494 The default is the umask of the current process.
1495 The value is given in octal.
1496 .TP
1497 .BI fmask= value
1498 Set the umask applied to regular files only.
1499 The default is the umask of the current process.
1500 The value is given in octal.
1501 .TP
1502 .BI allow_utime= value
1503 This option controls the permission check of mtime/atime.
1504 .RS
1505 .TP
1506 .B 20
1507 If current process is in group of file's group ID, you can change timestamp.
1508 .TP
1509 .B 2
1510 Other users can change timestamp.
1511 .PP
1512 The default is set from `dmask' option. (If the directory is writable,
1513 .BR utime (2)
1514 is also allowed. I.e.\& \s+3~\s0dmask & 022)
1515
1516 Normally
1517 .BR utime (2)
1518 checks current process is owner of the file, or it has
1519 CAP_FOWNER capability. But FAT filesystem doesn't have UID/GID on disk, so
1520 normal check is too inflexible. With this option you can relax it.
1521 .RE
1522 .TP
1523 .BI check= value
1524 Three different levels of pickiness can be chosen:
1525 .RS
1526 .TP
1527 .BR r [ elaxed ]
1528 Upper and lower case are accepted and equivalent, long name parts are
1529 truncated (e.g.\&
1530 .I verylongname.foobar
1531 becomes
1532 .IR verylong.foo ),
1533 leading and embedded spaces are accepted in each name part (name and extension).
1534 .TP
1535 .BR n [ ormal ]
1536 Like "relaxed", but many special characters (*, ?, <, spaces, etc.) are
1537 rejected. This is the default.
1538 .TP
1539 .BR s [ trict ]
1540 Like "normal", but names that contain long parts or special characters
1541 that are sometimes used on Linux but are not accepted by MS-DOS
1542 (+, =, etc.) are rejected.
1543 .RE
1544 .TP
1545 .BI codepage= value
1546 Sets the codepage for converting to shortname characters on FAT
1547 and VFAT filesystems. By default, codepage 437 is used.
1548 .TP
1549 .BI conv= mode
1550 This option is obsolete and may fail or being ignored.
1551 .TP
1552 .BI cvf_format= module
1553 Forces the driver to use the CVF (Compressed Volume File) module
1554 .RI cvf_ module
1555 instead of auto-detection. If the kernel supports kmod, the
1556 cvf_format=xxx option also controls on-demand CVF module loading.
1557 This option is obsolete.
1558 .TP
1559 .BI cvf_option= option
1560 Option passed to the CVF module. This option is obsolete.
1561 .TP
1562 .B debug
1563 Turn on the
1564 .I debug
1565 flag. A version string and a list of filesystem parameters will be
1566 printed (these data are also printed if the parameters appear to be
1567 inconsistent).
1568 .TP
1569 .B discard
1570 If set, causes discard/TRIM commands to be issued to the block device
1571 when blocks are freed. This is useful for SSD devices and
1572 sparse/thinly-provisioned LUNs.
1573 .TP
1574 .B dos1xfloppy
1575 If set, use a fallback default BIOS Parameter Block configuration, determined
1576 by backing device size. These static parameters match defaults assumed by DOS
1577 1.x for 160 kiB, 180 kiB, 320 kiB, and 360 kiB floppies and floppy images.
1578 .TP
1579 .BR errors= { panic | continue | remount-ro }
1580 Specify FAT behavior on critical errors: panic, continue without doing
1581 anything, or remount the partition in read-only mode (default behavior).
1582 .TP
1583 .BR fat= { 12 | 16 | 32 }
1584 Specify a 12, 16 or 32 bit fat. This overrides
1585 the automatic FAT type detection routine. Use with caution!
1586 .TP
1587 .BI iocharset= value
1588 Character set to use for converting between 8 bit characters
1589 and 16 bit Unicode characters. The default is iso8859-1.
1590 Long filenames are stored on disk in Unicode format.
1591 .TP
1592 .BR nfs= { stale_rw | nostale_ro }
1593 Enable this only if you want to export the FAT filesystem over NFS.
1594
1595 .BR stale_rw :
1596 This option maintains an index (cache) of directory inodes which is used by the
1597 nfs-related code to improve look-ups. Full file operations (read/write) over
1598 NFS are supported but with cache eviction at NFS server, this could result in
1599 spurious
1600 .B ESTALE
1601 errors.
1602
1603 .BR nostale_ro :
1604 This option bases the inode number and file handle
1605 on the on-disk location of a file in the FAT directory entry.
1606 This ensures that
1607 .B ESTALE
1608 will not be returned after a file is
1609 evicted from the inode cache. However, it means that operations
1610 such as rename, create and unlink could cause file handles that
1611 previously pointed at one file to point at a different file,
1612 potentially causing data corruption. For this reason, this
1613 option also mounts the filesystem readonly.
1614
1615 To maintain backward compatibility, '-o nfs' is also accepted,
1616 defaulting to
1617 .BR stale_rw .
1618 .TP
1619 .B tz=UTC
1620 This option disables the conversion of timestamps
1621 between local time (as used by Windows on FAT) and UTC
1622 (which Linux uses internally). This is particularly
1623 useful when mounting devices (like digital cameras)
1624 that are set to UTC in order to avoid the pitfalls of
1625 local time.
1626 .TP
1627 .BI time_offset= minutes
1628 Set offset for conversion of timestamps from local time used by FAT to UTC.
1629 I.e.,
1630 .I minutes
1631 will be subtracted from each timestamp to convert it to UTC used
1632 internally by Linux. This is useful when the time zone set in the kernel via
1633 .BR settimeofday (2)
1634 is not the time zone used by the filesystem. Note
1635 that this option still does not provide correct time stamps in all cases in
1636 presence of DST - time stamps in a different DST setting will be off by one
1637 hour.
1638 .TP
1639 .B quiet
1640 Turn on the
1641 .I quiet
1642 flag. Attempts to chown or chmod files do not return errors,
1643 although they fail. Use with caution!
1644 .TP
1645 .B rodir
1646 FAT has the ATTR_RO (read-only) attribute. On Windows, the ATTR_RO of the
1647 directory will just be ignored, and is used only by applications as a flag
1648 (e.g.\& it's set for the customized folder).
1649
1650 If you want to use ATTR_RO as read-only flag even for the directory, set this
1651 option.
1652 .TP
1653 .B showexec
1654 If set, the execute permission bits of the file will be allowed only if
1655 the extension part of the name is \&.EXE, \&.COM, or \&.BAT. Not set by default.
1656 .TP
1657 .B sys_immutable
1658 If set, ATTR_SYS attribute on FAT is handled as IMMUTABLE flag on Linux.
1659 Not set by default.
1660 .TP
1661 .B flush
1662 If set, the filesystem will try to flush to disk more early than normal.
1663 Not set by default.
1664 .TP
1665 .B usefree
1666 Use the "free clusters" value stored on FSINFO. It'll
1667 be used to determine number of free clusters without
1668 scanning disk. But it's not used by default, because
1669 recent Windows don't update it correctly in some
1670 case. If you are sure the "free clusters" on FSINFO is
1671 correct, by this option you can avoid scanning disk.
1672 .TP
1673 .BR dots ", " nodots ", " dotsOK= [ yes | no ]
1674 Various misguided attempts to force Unix or DOS conventions
1675 onto a FAT filesystem.
1676
1677 .SS "Mount options for hfs"
1678 .TP
1679 .BI creator= cccc ", type=" cccc
1680 Set the creator/type values as shown by the MacOS finder
1681 used for creating new files. Default values: '????'.
1682 .TP
1683 .BI uid= n ", gid=" n
1684 Set the owner and group of all files.
1685 (Default: the UID and GID of the current process.)
1686 .TP
1687 .BI dir_umask= n ", file_umask=" n ", umask=" n
1688 Set the umask used for all directories, all regular files, or all
1689 files and directories. Defaults to the umask of the current process.
1690 .TP
1691 .BI session= n
1692 Select the CDROM session to mount.
1693 Defaults to leaving that decision to the CDROM driver.
1694 This option will fail with anything but a CDROM as underlying device.
1695 .TP
1696 .BI part= n
1697 Select partition number n from the device.
1698 Only makes sense for CDROMs.
1699 Defaults to not parsing the partition table at all.
1700 .TP
1701 .B quiet
1702 Don't complain about invalid mount options.
1703
1704 .SS "Mount options for hpfs"
1705 .TP
1706 \fBuid=\fP\,\fIvalue\fP and \fBgid=\fP\,\fIvalue\fP
1707 Set the owner and group of all files. (Default: the UID and GID
1708 of the current process.)
1709 .TP
1710 .BI umask= value
1711 Set the umask (the bitmask of the permissions that are
1712 .B not
1713 present). The default is the umask of the current process.
1714 The value is given in octal.
1715 .TP
1716 .BR case= { lower | asis }
1717 Convert all files names to lower case, or leave them.
1718 (Default:
1719 .BR case=lower .)
1720 .TP
1721 .BI conv= mode
1722 This option is obsolete and may fail or being ignored.
1723 .TP
1724 .B nocheck
1725 Do not abort mounting when certain consistency checks fail.
1726
1727 .SS "Mount options for iso9660"
1728 ISO 9660 is a standard describing a filesystem structure to be used
1729 on CD-ROMs. (This filesystem type is also seen on some DVDs. See also the
1730 .I udf
1731 filesystem.)
1732
1733 Normal
1734 .I iso9660
1735 filenames appear in an 8.3 format (i.e., DOS-like restrictions on filename
1736 length), and in addition all characters are in upper case. Also there is
1737 no field for file ownership, protection, number of links, provision for
1738 block/character devices, etc.
1739
1740 Rock Ridge is an extension to iso9660 that provides all of these UNIX-like
1741 features. Basically there are extensions to each directory record that
1742 supply all of the additional information, and when Rock Ridge is in use,
1743 the filesystem is indistinguishable from a normal UNIX filesystem (except
1744 that it is read-only, of course).
1745 .TP
1746 .B norock
1747 Disable the use of Rock Ridge extensions, even if available. Cf.\&
1748 .BR map .
1749 .TP
1750 .B nojoliet
1751 Disable the use of Microsoft Joliet extensions, even if available. Cf.\&
1752 .BR map .
1753 .TP
1754 .BR check= { r [ elaxed ]| s [ trict ]}
1755 With
1756 .BR check=relaxed ,
1757 a filename is first converted to lower case before doing the lookup.
1758 This is probably only meaningful together with
1759 .B norock
1760 and
1761 .BR map=normal .
1762 (Default:
1763 .BR check=strict .)
1764 .TP
1765 \fBuid=\fP\,\fIvalue\fP and \fBgid=\fP\,\fIvalue\fP
1766 Give all files in the filesystem the indicated user or group id,
1767 possibly overriding the information found in the Rock Ridge extensions.
1768 (Default:
1769 .BR uid=0,gid=0 .)
1770 .TP
1771 .BR map= { n [ ormal ]| o [ ff ]| a [ corn ]}
1772 For non-Rock Ridge volumes, normal name translation maps upper
1773 to lower case ASCII, drops a trailing `;1', and converts `;' to `.'.
1774 With
1775 .B map=off
1776 no name translation is done. See
1777 .BR norock .
1778 (Default:
1779 .BR map=normal .)
1780 .B map=acorn
1781 is like
1782 .B map=normal
1783 but also apply Acorn extensions if present.
1784 .TP
1785 .BI mode= value
1786 For non-Rock Ridge volumes, give all files the indicated mode.
1787 (Default: read and execute permission for everybody.)
1788 Octal mode values require a leading 0.
1789 .TP
1790 .B unhide
1791 Also show hidden and associated files.
1792 (If the ordinary files and the associated or hidden files have
1793 the same filenames, this may make the ordinary files inaccessible.)
1794 .TP
1795 .BR block= { 512 | 1024 | 2048 }
1796 Set the block size to the indicated value.
1797 (Default:
1798 .BR block=1024 .)
1799 .TP
1800 .BI conv= mode
1801 This option is obsolete and may fail or being ignored.
1802 .TP
1803 .B cruft
1804 If the high byte of the file length contains other garbage,
1805 set this mount option to ignore the high order bits of the file length.
1806 This implies that a file cannot be larger than 16\ MB.
1807 .TP
1808 .BI session= x
1809 Select number of session on multisession CD.
1810 .TP
1811 .BI sbsector= xxx
1812 Session begins from sector xxx.
1813 .LP
1814 The following options are the same as for vfat and specifying them only makes
1815 sense when using discs encoded using Microsoft's Joliet extensions.
1816 .TP
1817 .BI iocharset= value
1818 Character set to use for converting 16 bit Unicode characters on CD
1819 to 8 bit characters. The default is iso8859-1.
1820 .TP
1821 .B utf8
1822 Convert 16 bit Unicode characters on CD to UTF-8.
1823
1824 .SS "Mount options for jfs"
1825 .TP
1826 .BI iocharset= name
1827 Character set to use for converting from Unicode to ASCII. The default is
1828 to do no conversion. Use
1829 .B iocharset=utf8
1830 for UTF8 translations. This requires CONFIG_NLS_UTF8 to be set in
1831 the kernel
1832 .I ".config"
1833 file.
1834 .TP
1835 .BI resize= value
1836 Resize the volume to
1837 .I value
1838 blocks. JFS only supports growing a volume, not shrinking it. This option
1839 is only valid during a remount, when the volume is mounted read-write. The
1840 .B resize
1841 keyword with no value will grow the volume to the full size of the partition.
1842 .TP
1843 .B nointegrity
1844 Do not write to the journal. The primary use of this option is to allow
1845 for higher performance when restoring a volume from backup media. The
1846 integrity of the volume is not guaranteed if the system abnormally ends.
1847 .TP
1848 .B integrity
1849 Default. Commit metadata changes to the journal. Use this option to remount
1850 a volume where the
1851 .B nointegrity
1852 option was previously specified in order to restore normal behavior.
1853 .TP
1854 .BR errors= { continue | remount-ro | panic }
1855 Define the behavior when an error is encountered.
1856 (Either ignore errors and just mark the filesystem erroneous and continue,
1857 or remount the filesystem read-only, or panic and halt the system.)
1858 .TP
1859 .BR noquota | quota | usrquota | grpquota
1860 These options are accepted but ignored.
1861
1862 .SS "Mount options for msdos"
1863 See mount options for fat.
1864 If the
1865 .I msdos
1866 filesystem detects an inconsistency, it reports an error and sets the file
1867 system read-only. The filesystem can be made writable again by remounting
1868 it.
1869
1870 .SS "Mount options for ncpfs"
1871 Just like
1872 .IR nfs ", the " ncpfs
1873 implementation expects a binary argument (a
1874 .IR "struct ncp_mount_data" )
1875 to the mount system call. This argument is constructed by
1876 .BR ncpmount (8)
1877 and the current version of
1878 .B mount
1879 (2.12) does not know anything about ncpfs.
1880
1881 .SS "Mount options for ntfs"
1882 .TP
1883 .BI iocharset= name
1884 Character set to use when returning file names.
1885 Unlike VFAT, NTFS suppresses names that contain
1886 nonconvertible characters. Deprecated.
1887 .TP
1888 .BI nls= name
1889 New name for the option earlier called
1890 .IR iocharset .
1891 .TP
1892 .B utf8
1893 Use UTF-8 for converting file names.
1894 .TP
1895 .BR uni_xlate= { 0 | 1 | 2 }
1896 For 0 (or `no' or `false'), do not use escape sequences
1897 for unknown Unicode characters.
1898 For 1 (or `yes' or `true') or 2, use vfat-style 4-byte escape sequences
1899 starting with ":". Here 2 give a little-endian encoding
1900 and 1 a byteswapped bigendian encoding.
1901 .TP
1902 .B posix=[0|1]
1903 If enabled (posix=1), the filesystem distinguishes between
1904 upper and lower case. The 8.3 alias names are presented as
1905 hard links instead of being suppressed. This option is obsolete.
1906 .TP
1907 \fBuid=\fP\,\fIvalue\fP, \fBgid=\fP\,\fIvalue\fP and \fBumask=\fP\,\fIvalue\fP
1908 Set the file permission on the filesystem.
1909 The umask value is given in octal.
1910 By default, the files are owned by root and not readable by somebody else.
1911
1912 .SS "Mount options for overlay"
1913 Since Linux 3.18 the overlay pseudo filesystem implements a union mount for
1914 other filesystems.
1915
1916 An overlay filesystem combines two filesystems - an \fBupper\fR filesystem and
1917 a \fBlower\fR filesystem. When a name exists in both filesystems, the object
1918 in the upper filesystem is visible while the object in the lower filesystem is
1919 either hidden or, in the case of directories, merged with the upper object.
1920
1921 The lower filesystem can be any filesystem supported by Linux and does not need
1922 to be writable. The lower filesystem can even be another overlayfs. The upper
1923 filesystem will normally be writable and if it is it must support the creation
1924 of trusted.* extended attributes, and must provide a valid d_type in readdir
1925 responses, so NFS is not suitable.
1926
1927 A read-only overlay of two read-only filesystems may use any filesystem type.
1928 The options \fBlowerdir\fR and \fBupperdir\fR are combined into a merged
1929 directory by using:
1930
1931 .RS
1932 .br
1933 .nf
1934 .B "mount \-t overlay overlay \e"
1935 .B " \-olowerdir=/lower,upperdir=/upper,workdir=/work /merged"
1936 .fi
1937 .br
1938 .RE
1939
1940 .TP
1941 .BI lowerdir= directory
1942 Any filesystem, does not need to be on a writable filesystem.
1943 .TP
1944 .BI upperdir= directory
1945 The upperdir is normally on a writable filesystem.
1946 .TP
1947 .BI workdir= directory
1948 The workdir needs to be an empty directory on the same filesystem as upperdir.
1949
1950 .SS "Mount options for reiserfs"
1951 Reiserfs is a journaling filesystem.
1952 .TP
1953 .B conv
1954 Instructs version 3.6 reiserfs software to mount a version 3.5 filesystem,
1955 using the 3.6 format for newly created objects. This filesystem will no
1956 longer be compatible with reiserfs 3.5 tools.
1957 .TP
1958 .BR hash= { rupasov | tea | r5 | detect }
1959 Choose which hash function reiserfs will use to find files within directories.
1960 .RS
1961 .TP
1962 .B rupasov
1963 A hash invented by Yury Yu.\& Rupasov. It is fast and preserves locality,
1964 mapping lexicographically close file names to close hash values.
1965 This option should not be used, as it causes a high probability of hash
1966 collisions.
1967 .TP
1968 .B tea
1969 A Davis-Meyer function implemented by Jeremy Fitzhardinge.
1970 It uses hash permuting bits in the name. It gets high randomness
1971 and, therefore, low probability of hash collisions at some CPU cost.
1972 This may be used if EHASHCOLLISION errors are experienced with the r5 hash.
1973 .TP
1974 .B r5
1975 A modified version of the rupasov hash. It is used by default and is
1976 the best choice unless the filesystem has huge directories and
1977 unusual file-name patterns.
1978 .TP
1979 .B detect
1980 Instructs
1981 .I mount
1982 to detect which hash function is in use by examining
1983 the filesystem being mounted, and to write this information into
1984 the reiserfs superblock. This is only useful on the first mount of
1985 an old format filesystem.
1986 .RE
1987 .TP
1988 .B hashed_relocation
1989 Tunes the block allocator. This may provide performance improvements
1990 in some situations.
1991 .TP
1992 .B no_unhashed_relocation
1993 Tunes the block allocator. This may provide performance improvements
1994 in some situations.
1995 .TP
1996 .B noborder
1997 Disable the border allocator algorithm invented by Yury Yu.\& Rupasov.
1998 This may provide performance improvements in some situations.
1999 .TP
2000 .B nolog
2001 Disable journaling. This will provide slight performance improvements in
2002 some situations at the cost of losing reiserfs's fast recovery from crashes.
2003 Even with this option turned on, reiserfs still performs all journaling
2004 operations, save for actual writes into its journaling area. Implementation
2005 of
2006 .I nolog
2007 is a work in progress.
2008 .TP
2009 .B notail
2010 By default, reiserfs stores small files and `file tails' directly into its
2011 tree. This confuses some utilities such as
2012 .BR LILO (8).
2013 This option is used to disable packing of files into the tree.
2014 .TP
2015 .B replayonly
2016 Replay the transactions which are in the journal, but do not actually
2017 mount the filesystem. Mainly used by
2018 .IR reiserfsck .
2019 .TP
2020 .BI resize= number
2021 A remount option which permits online expansion of reiserfs partitions.
2022 Instructs reiserfs to assume that the device has
2023 .I number
2024 blocks.
2025 This option is designed for use with devices which are under logical
2026 volume management (LVM).
2027 There is a special
2028 .I resizer
2029 utility which can be obtained from
2030 .IR ftp://ftp.namesys.com/pub/reiserfsprogs .
2031 .TP
2032 .B user_xattr
2033 Enable Extended User Attributes. See the
2034 .BR attr (1)
2035 manual page.
2036 .TP
2037 .B acl
2038 Enable POSIX Access Control Lists. See the
2039 .BR acl (5)
2040 manual page.
2041 .TP
2042 .BR barrier=none " / " barrier=flush "
2043 This disables / enables the use of write barriers in the journaling code.
2044 barrier=none disables, barrier=flush enables (default). This also requires an
2045 IO stack which can support barriers, and if reiserfs gets an error on a barrier
2046 write, it will disable barriers again with a warning. Write barriers enforce
2047 proper on-disk ordering of journal commits, making volatile disk write caches
2048 safe to use, at some performance penalty. If your disks are battery-backed in
2049 one way or another, disabling barriers may safely improve performance.
2050
2051 .SS "Mount options for ubifs"
2052 UBIFS is a flash filesystem which works on top of UBI volumes. Note that
2053 \fBatime\fR is not supported and is always turned off.
2054 .TP
2055 The device name may be specified as
2056 .RS
2057 .B ubiX_Y
2058 UBI device number
2059 .BR X ,
2060 volume number
2061 .B Y
2062 .TP
2063 .B ubiY
2064 UBI device number
2065 .BR 0 ,
2066 volume number
2067 .B Y
2068 .TP
2069 .B ubiX:NAME
2070 UBI device number
2071 .BR X ,
2072 volume with name
2073 .B NAME
2074 .TP
2075 .B ubi:NAME
2076 UBI device number
2077 .BR 0 ,
2078 volume with name
2079 .B NAME
2080 .RE
2081 Alternative
2082 .B !
2083 separator may be used instead of
2084 .BR : .
2085 .TP
2086 The following mount options are available:
2087 .TP
2088 .B bulk_read
2089 Enable bulk-read. VFS read-ahead is disabled because it slows down the file
2090 system. Bulk-Read is an internal optimization. Some flashes may read faster if
2091 the data are read at one go, rather than at several read requests. For
2092 example, OneNAND can do "read-while-load" if it reads more than one NAND page.
2093 .TP
2094 .B no_bulk_read
2095 Do not bulk-read. This is the default.
2096 .TP
2097 .B chk_data_crc
2098 Check data CRC-32 checksums. This is the default.
2099 .TP
2100 .BR no_chk_data_crc .
2101 Do not check data CRC-32 checksums. With this option, the filesystem does not
2102 check CRC-32 checksum for data, but it does check it for the internal indexing
2103 information. This option only affects reading, not writing. CRC-32 is always
2104 calculated when writing the data.
2105 .TP
2106 .BR compr= { none | lzo | zlib }
2107 Select the default compressor which is used when new files are written. It is
2108 still possible to read compressed files if mounted with the
2109 .B none
2110 option.
2111
2112 .SS "Mount options for udf"
2113 UDF is the "Universal Disk Format" filesystem defined by OSTA, the Optical
2114 Storage Technology Association, and is often used for DVD-ROM, frequently
2115 in the form of a hybrid UDF/ISO-9660 filesystem. It is, however,
2116 perfectly usable by itself on disk drives, flash drives and other block devices.
2117 See also
2118 .IR iso9660 .
2119 .TP
2120 .B uid=
2121 Make all files in the filesystem belong to the given user.
2122 uid=forget can be specified independently of (or usually in
2123 addition to) uid=<user> and results in UDF
2124 not storing uids to the media. In fact the recorded uid
2125 is the 32-bit overflow uid -1 as defined by the UDF standard.
2126 The value is given as either <user> which is a valid user name or the corresponding
2127 decimal user id, or the special string "forget".
2128 .TP
2129 .B gid=
2130 Make all files in the filesystem belong to the given group.
2131 gid=forget can be specified independently of (or usually in
2132 addition to) gid=<group> and results in UDF
2133 not storing gids to the media. In fact the recorded gid
2134 is the 32-bit overflow gid -1 as defined by the UDF standard.
2135 The value is given as either <group> which is a valid group name or the corresponding
2136 decimal group id, or the special string "forget".
2137 .TP
2138 .B umask=
2139 Mask out the given permissions from all inodes read from the filesystem.
2140 The value is given in octal.
2141 .TP
2142 .B mode=
2143 If mode= is set the permissions of all non-directory inodes read from the
2144 filesystem will be set to the given mode. The value is given in octal.
2145 .TP
2146 .B dmode=
2147 If dmode= is set the permissions of all directory inodes read from the
2148 filesystem will be set to the given dmode. The value is given in octal.
2149 .TP
2150 .B bs=
2151 Set the block size. Default value prior to kernel version 2.6.30 was
2152 2048. Since 2.6.30 and prior to 4.11 it was logical device block size with
2153 fallback to 2048. Since 4.11 it is logical block size with fallback to
2154 any valid block size between logical device block size and 4096.
2155
2156 For other details see the \fBmkudffs\fP(8) 2.0+ manpage, sections
2157 \fBCOMPATIBILITY\fP and \fBBLOCK SIZE\fP.
2158 .TP
2159 .B unhide
2160 Show otherwise hidden files.
2161 .TP
2162 .B undelete
2163 Show deleted files in lists.
2164 .TP
2165 .B adinicb
2166 Embed data in the inode. (default)
2167 .TP
2168 .B noadinicb
2169 Don't embed data in the inode.
2170 .TP
2171 .B shortad
2172 Use short UDF address descriptors.
2173 .TP
2174 .B longad
2175 Use long UDF address descriptors. (default)
2176 .TP
2177 .B nostrict
2178 Unset strict conformance.
2179 .TP
2180 .B iocharset=
2181 Set the NLS character set. This requires kernel compiled with CONFIG_UDF_NLS option.
2182 .TP
2183 .B utf8
2184 Set the UTF-8 character set.
2185 .SS Mount options for debugging and disaster recovery
2186 .TP
2187 .B novrs
2188 Ignore the Volume Recognition Sequence and attempt to mount anyway.
2189 .TP
2190 .B session=
2191 Select the session number for multi-session recorded optical media. (default= last session)
2192 .TP
2193 .B anchor=
2194 Override standard anchor location. (default= 256)
2195 .TP
2196 .B lastblock=
2197 Set the last block of the filesystem.
2198 .SS Unused historical mount options that may be encountered and should be removed
2199 .TP
2200 .B uid=ignore
2201 Ignored, use uid=<user> instead.
2202 .TP
2203 .B gid=ignore
2204 Ignored, use gid=<group> instead.
2205 .TP
2206 .B volume=
2207 Unimplemented and ignored.
2208 .TP
2209 .B partition=
2210 Unimplemented and ignored.
2211 .TP
2212 .B fileset=
2213 Unimplemented and ignored.
2214 .TP
2215 .B rootdir=
2216 Unimplemented and ignored.
2217
2218 .SS "Mount options for ufs"
2219 .TP
2220 .BI ufstype= value
2221 UFS is a filesystem widely used in different operating systems.
2222 The problem are differences among implementations. Features of some
2223 implementations are undocumented, so its hard to recognize the
2224 type of ufs automatically.
2225 That's why the user must specify the type of ufs by mount option.
2226 Possible values are:
2227 .RS
2228 .TP
2229 .B old
2230 Old format of ufs, this is the default, read only.
2231 (Don't forget to give the \-r option.)
2232 .TP
2233 .B 44bsd
2234 For filesystems created by a BSD-like system (NetBSD, FreeBSD, OpenBSD).
2235 .TP
2236 .B ufs2
2237 Used in FreeBSD 5.x supported as read-write.
2238 .TP
2239 .B 5xbsd
2240 Synonym for ufs2.
2241 .TP
2242 .B sun
2243 For filesystems created by SunOS or Solaris on Sparc.
2244 .TP
2245 .B sunx86
2246 For filesystems created by Solaris on x86.
2247 .TP
2248 .B hp
2249 For filesystems created by HP-UX, read-only.
2250 .TP
2251 .B nextstep
2252 For filesystems created by NeXTStep (on NeXT station) (currently read only).
2253 .TP
2254 .B nextstep-cd
2255 For NextStep CDROMs (block_size == 2048), read-only.
2256 .TP
2257 .B openstep
2258 For filesystems created by OpenStep (currently read only).
2259 The same filesystem type is also used by Mac OS X.
2260 .RE
2261
2262 .TP
2263 .BI onerror= value
2264 Set behavior on error:
2265 .RS
2266 .TP
2267 .B panic
2268 If an error is encountered, cause a kernel panic.
2269 .TP
2270 .RB [ lock | umount | repair ]
2271 These mount options don't do anything at present;
2272 when an error is encountered only a console message is printed.
2273 .RE
2274
2275 .SS "Mount options for umsdos"
2276 See mount options for msdos.
2277 The
2278 .B dotsOK
2279 option is explicitly killed by
2280 .IR umsdos .
2281
2282 .SS "Mount options for vfat"
2283 First of all, the mount options for
2284 .I fat
2285 are recognized.
2286 The
2287 .B dotsOK
2288 option is explicitly killed by
2289 .IR vfat .
2290 Furthermore, there are
2291 .TP
2292 .B uni_xlate
2293 Translate unhandled Unicode characters to special escaped sequences.
2294 This lets you backup and restore filenames that are created with any
2295 Unicode characters. Without this option, a '?' is used when no
2296 translation is possible. The escape character is ':' because it is
2297 otherwise invalid on the vfat filesystem. The escape sequence
2298 that gets used, where u is the Unicode character,
2299 is: ':', (u & 0x3f), ((u>>6) & 0x3f), (u>>12).
2300 .TP
2301 .B posix
2302 Allow two files with names that only differ in case.
2303 This option is obsolete.
2304 .TP
2305 .B nonumtail
2306 First try to make a short name without sequence number,
2307 before trying
2308 .IR name\s+3~\s0num.ext .
2309 .TP
2310 .B utf8
2311 UTF8 is the filesystem safe 8-bit encoding of Unicode that is used by the
2312 console. It can be enabled for the filesystem with this option or disabled
2313 with utf8=0, utf8=no or utf8=false. If `uni_xlate' gets set, UTF8 gets
2314 disabled.
2315 .TP
2316 .BI shortname= mode
2317 Defines the behavior for creation and display of filenames which fit into
2318 8.3 characters. If a long name for a file exists, it will always be the
2319 preferred one for display. There are four \fImode\fRs:
2320 .RS
2321 .TP
2322 .B lower
2323 Force the short name to lower case upon display; store a long name when
2324 the short name is not all upper case.
2325 .TP
2326 .B win95
2327 Force the short name to upper case upon display; store a long name when
2328 the short name is not all upper case.
2329 .TP
2330 .B winnt
2331 Display the short name as is; store a long name when the short name is
2332 not all lower case or all upper case.
2333 .TP
2334 .B mixed
2335 Display the short name as is; store a long name when the short name is not
2336 all upper case. This mode is the default since Linux 2.6.32.
2337 .RE
2338
2339 .SS "Mount options for usbfs"
2340 .TP
2341 \fBdevuid=\fP\,\fIuid\fP and \fBdevgid=\fP\,\fIgid\fP and \fBdevmode=\fP\,\fImode\fP
2342 Set the owner and group and mode of the device files in the usbfs filesystem
2343 (default: uid=gid=0, mode=0644). The mode is given in octal.
2344 .TP
2345 \fBbusuid=\fP\,\fIuid\fP and \fBbusgid=\fP\,\fIgid\fP and \fBbusmode=\fP\,\fImode\fP
2346 Set the owner and group and mode of the bus directories in the usbfs
2347 filesystem (default: uid=gid=0, mode=0555). The mode is given in octal.
2348 .TP
2349 \fBlistuid=\fP\,\fIuid\fP and \fBlistgid=\fP\,\fIgid\fP and \fBlistmode=\fP\,\fImode\fP
2350 Set the owner and group and mode of the file
2351 .I devices
2352 (default: uid=gid=0, mode=0444). The mode is given in octal.
2353
2354 .SH "THE LOOP DEVICE"
2355 One further possible type is a mount via the loop device. For example,
2356 the command
2357 .RS
2358 .sp
2359 .B "mount /tmp/disk.img /mnt \-t vfat \-o loop=/dev/loop3"
2360 .sp
2361 .RE
2362 will set up the loop device
2363 .I /dev/loop3
2364 to correspond to the file
2365 .IR /tmp/disk.img ,
2366 and then mount this device on
2367 .IR /mnt .
2368
2369 If no explicit loop device is mentioned
2370 (but just an option `\fB\-o loop\fP' is given), then
2371 .B mount
2372 will try to find some unused loop device and use that, for example
2373 .RS
2374 .sp
2375 .B "mount /tmp/disk.img /mnt \-o loop"
2376 .sp
2377 .RE
2378 The mount command
2379 .B automatically
2380 creates a loop device from a regular file if a filesystem type is
2381 not specified or the filesystem is known for libblkid, for example:
2382 .RS
2383 .sp
2384 .B "mount /tmp/disk.img /mnt"
2385 .sp
2386 .B "mount \-t ext4 /tmp/disk.img /mnt"
2387 .sp
2388 .RE
2389 This type of mount knows about three options, namely
2390 .BR loop ", " offset " and " sizelimit ,
2391 that are really options to
2392 .BR \%losetup (8).
2393 (These options can be used in addition to those specific
2394 to the filesystem type.)
2395
2396 Since Linux 2.6.25 auto-destruction of loop devices is supported,
2397 meaning that any loop device allocated by
2398 .B mount
2399 will be freed by
2400 .B umount
2401 independently of
2402 .IR /etc/mtab .
2403
2404 You can also free a loop device by hand, using
2405 .BR "losetup \-d " or " umount \-d" .
2406
2407 Since util-linux v2.29 mount command re-uses the loop device rather than
2408 initialize a new device if the same backing file is already used for some loop
2409 device with the same offset and sizelimit. This is necessary to avoid
2410 a filesystem corruption.
2411
2412 .SH RETURN CODES
2413 .B mount
2414 has the following return codes (the bits can be ORed):
2415 .TP
2416 .B 0
2417 success
2418 .TP
2419 .B 1
2420 incorrect invocation or permissions
2421 .TP
2422 .B 2
2423 system error (out of memory, cannot fork, no more loop devices)
2424 .TP
2425 .B 4
2426 internal
2427 .B mount
2428 bug
2429 .TP
2430 .B 8
2431 user interrupt
2432 .TP
2433 .B 16
2434 problems writing or locking /etc/mtab
2435 .TP
2436 .B 32
2437 mount failure
2438 .TP
2439 .B 64
2440 some mount succeeded
2441
2442 The command \fBmount \-a\fR returns 0 (all succeeded), 32 (all failed), or 64 (some
2443 failed, some succeeded).
2444
2445 .SH "EXTERNAL HELPERS"
2446 The syntax of external mount helpers is:
2447 .sp
2448 .in +4
2449 .BI /sbin/mount. suffix
2450 .I spec dir
2451 .RB [ \-sfnv ]
2452 .RB [ \-N
2453 .IR namespace ]
2454 .RB [ \-o
2455 .IR options ]
2456 .RB [ \-t
2457 .IR type \fB. subtype ]
2458 .in
2459 .sp
2460 where the \fIsuffix\fR is the filesystem type and the \fB\-sfnvoN\fR options have
2461 the same meaning as the normal mount options. The \fB\-t\fR option is used for
2462 filesystems with subtypes support (for example
2463 .BR "/sbin/mount.fuse \-t fuse.sshfs" ).
2464
2465 The command \fBmount\fR does not pass the mount options
2466 .BR unbindable ,
2467 .BR runbindable ,
2468 .BR private ,
2469 .BR rprivate ,
2470 .BR slave ,
2471 .BR rslave ,
2472 .BR shared ,
2473 .BR rshared ,
2474 .BR auto ,
2475 .BR noauto ,
2476 .BR comment ,
2477 .BR x-* ,
2478 .BR loop ,
2479 .B offset
2480 and
2481 .B sizelimit
2482 to the mount.<suffix> helpers. All other options are used in a
2483 comma-separated list as argument to the \fB\-o\fR option.
2484
2485 .SH FILES
2486 See also "\fBThe files /etc/fstab, /etc/mtab and /proc/mounts\fR" section above.
2487 .TP 18n
2488 .I /etc/fstab
2489 filesystem table
2490 .TP
2491 .I /run/mount
2492 libmount private runtime directory
2493 .TP
2494 .I /etc/mtab
2495 table of mounted filesystems or symlink to /proc/mounts
2496 .TP
2497 .I /etc/mtab\s+3~\s0
2498 lock file (unused on systems with mtab symlink)
2499 .TP
2500 .I /etc/mtab.tmp
2501 temporary file (unused on systems with mtab symlink)
2502 .TP
2503 .I /etc/filesystems
2504 a list of filesystem types to try
2505 .SH ENVIRONMENT
2506 .IP LIBMOUNT_FSTAB=<path>
2507 overrides the default location of the fstab file (ignored for suid)
2508 .IP LIBMOUNT_MTAB=<path>
2509 overrides the default location of the mtab file (ignored for suid)
2510 .IP LIBMOUNT_DEBUG=all
2511 enables libmount debug output
2512 .IP LIBBLKID_DEBUG=all
2513 enables libblkid debug output
2514 .IP LOOPDEV_DEBUG=all
2515 enables loop device setup debug output
2516 .SH "SEE ALSO"
2517 .na
2518 .BR mount (2),
2519 .BR umount (2),
2520 .BR umount (8),
2521 .BR fstab (5),
2522 .BR nfs (5),
2523 .BR xfs (5),
2524 .BR e2label (8),
2525 .BR findmnt (8),
2526 .BR losetup (8),
2527 .BR mke2fs (8),
2528 .BR mountd (8),
2529 .BR nfsd (8),
2530 .BR swapon (8),
2531 .BR tune2fs (8),
2532 .BR xfs_admin (8)
2533 .ad
2534 .SH BUGS
2535 It is possible for a corrupted filesystem to cause a crash.
2536 .PP
2537 Some Linux filesystems don't support
2538 .BR "\-o sync " nor " \-o dirsync"
2539 (the ext2, ext3, ext4, fat and vfat filesystems
2540 .I do
2541 support synchronous updates (a la BSD) when mounted with the
2542 .B sync
2543 option).
2544 .PP
2545 The
2546 .B "\-o remount"
2547 may not be able to change mount parameters (all
2548 .IR ext2fs -specific
2549 parameters, except
2550 .BR sb ,
2551 are changeable with a remount, for example, but you can't change
2552 .B gid
2553 or
2554 .B umask
2555 for the
2556 .IR fatfs ).
2557 .PP
2558 It is possible that the files
2559 .I /etc/mtab
2560 and
2561 .I /proc/mounts
2562 don't match on systems with a regular mtab file. The first file is based only on
2563 the mount command options, but the content of the second file also depends on
2564 the kernel and others settings (e.g.\& on a remote NFS server -- in certain cases
2565 the mount command may report unreliable information about an NFS mount point
2566 and the /proc/mounts file usually contains more reliable information.) This is
2567 another reason to replace the mtab file with a symlink to the
2568 .I /proc/mounts
2569 file.
2570 .PP
2571 Checking files on NFS filesystems referenced by file descriptors (i.e.\& the
2572 .B fcntl
2573 and
2574 .B ioctl
2575 families of functions) may lead to inconsistent results due to the lack of
2576 a consistency check in the kernel even if noac is used.
2577 .PP
2578 The
2579 .B loop
2580 option with the
2581 .B offset
2582 or
2583 .B sizelimit
2584 options used may fail when using older kernels if the
2585 .B mount
2586 command can't confirm that the size of the block device has been configured
2587 as requested. This situation can be worked around by using
2588 the
2589 .B losetup
2590 command manually before calling
2591 .B mount
2592 with the configured loop device.
2593 .SH HISTORY
2594 A
2595 .B mount
2596 command existed in Version 5 AT&T UNIX.
2597 .SH AUTHORS
2598 .nf
2599 Karel Zak <kzak@redhat.com>
2600 .fi
2601 .SH AVAILABILITY
2602 The mount command is part of the util-linux package and is available from
2603 https://www.kernel.org/pub/linux/utils/util-linux/.