MOUNT(8) | System Manager's Manual | MOUNT(8) |
mount
— mount file
systems
mount |
[-adfFrkuvw ] [-t
lfs | external_type] |
mount |
[-dfFrkuvw ] special |
mount_point |
mount |
[-dfFrkuvw ] [-o
options] [-t
lfs | external_type]
special mount_point |
The mount
command calls the
mount(2) system call to prepare and
graft a special device or the remote node (rhost:path)
on to the file system tree at the point mount_point,
which must be a directory. If either special or
mount_point are not provided, the appropriate
information is obtained via the
getfsent(3) library routines.
The system maintains a list of currently mounted file systems. If
no arguments are given to mount,
this list is
printed.
The options are as follows:
-a
-t
flag (see below); entries that are neither ``ro,'' ``rw,'' or ``rq;''
``nfs'' entries that also have ``net'' as an option; and already-mounted
``nfs'' entries.-d
-v
flag
to determine what the mount
command is trying to
do.-f
-F
-k
-o
-o
flag followed by a
comma separated string of options. The following options are available:
-f
; forces the revocation of write
access when trying to downgrade a filesystem mount status from
read-write to read-only.-a
flag.-r
; mount the file system
read-only (even the super-user may not write it).-u
; indicate that the status of an
already mounted file system should be changed.-k
option.Any additional options specific to a filesystem type that is
not one of the internally known types (see the
-t
option) may be passed as a comma separated
list; these options are distinguished by a leading “-”
(dash). Options that take a value are specified using the syntax
-option=value. For example, the mount command:
mount -t hfs -o nosuid,-w,-m=755 /dev/disk2s9 /tmp
causes mount
to execute the equivalent
of:
/sbin/mount_hfs -o nosuid -w -m 755 /dev/disk2s9 /tmp
-r
-o
option.-t
lfs | external type-t
is used to indicate
the file system type. There is no default local file system for use with
mount. A type must be specified in order to mount a non-NFS filesystem.
The -t option can be used to indicate that the actions should only
be taken on filesystems of the specified type. More than one type may be
specified in a comma separated list. The list of filesystem types can be
prefixed with “no” to specify the filesystem types for which
action should
not be
taken. For example, the mount
command:
mount -a -t nonfs,hfs
mounts all filesystems except those of type NFS and HFS.
If the type is not one of the internally known types, mount will attempt to execute a program in /sbin/mount_XXX where XXX is replaced by the type name. For example, nfs filesystems are mounted by the program /sbin/mount_nfs.
-u
-u
flag indicates that the status of an
already mounted file system should be changed. Any of the options
discussed above (the -o
option) may be changed;
also a file system can be changed from read-only to read-write or vice
versa. An attempt to change from read-write to read-only will fail if any
files on the filesystem are currently open for writing unless the
-f
flag is also specified. The set of options is
determined by first extracting the options for the file system from the
filesystem table (see getfsent(3))
then applying any options specified by the -o
argument, and finally applying the -r
or
-w
option.-v
-w
The options specific to NFS filesystems are described in the mount_nfs(8) manual page.
mount(2), getfsent(3), mount_afp(8), mount_cd9660(8), mount_cddafs(8), mount_fdesc(8), mount_hfs(8), mount_apfs(8), mount_msdos(8), mount_nfs(8), mount_smbfs(8), mount_udf(8), mount_webdav(8), umount(8)
It is possible for a corrupted file system to cause a crash.
A mount
command appeared in
Version 6 AT&T UNIX.
December 20, 2023 | macOS 15 |