mount

Name

mount -- mount a file system

Synopsis

mount [-hV]
mount -a [-fFnrsvw] [-t vfstype]
mount [-fnrsvw] [-o options [,...]] device | dir
mount [-fnrsvw] [-t vfstype] [-o options] device dir

Description

All files accessible in a UNIX system are arranged in one big tree, the file hierarchy, rooted at /. These files can be spread out over several devices. mount serves to attach the file system found on some device to the big file tree. Conversely, umount(8) will detach it again.

Standard Options

-V

outputs version.

-v

invokes verbose mode.

-a

mounts all filesystems (of the given types) mentioned in fstab.

-F

combines with -a. to fork off a new incarnation of mount for each device. This will do the mounts on different devices or different NFS servers in parallel.

-f

causes everything to be done except for the actual system call; if it's not obvious, this `fakes' mounting the file system.

-n

mounts without writing in /etc/mtab. This is necessary for example when /etc is on a read-only file system.

-s

tolerates sloppy mount options rather than failing. This will ignore mount options not supported by a filesystem type. Not all filesystems support this option.

-r

mounts the file system read-only. A synonym is -o ro.

-w

mounts the file system read/write. (default) A synonym is -o rw.

-L label

mounts the partition that has the specified label.

-U uuid

mounts the partition that has the specified uuid. These two options require the file /proc/partitions to exist.

-t vfstype

indicates a file system type of vfstype.

More than one type may be specified in a comma separated list. The list of file system types can be prefixed with no to specify the file system types on which no action should be taken.

-o

options are specified with a -o flag followed by a comma-separated string of options. Some of these options are only useful when they appear in the /etc/fstab file. The following options apply to any file system that is being mounted:

async

does all I/O to the file system asynchronously.

atime

updates inode access time for each access. (default)

auto

is mountable with -a.

defaults

uses default options: rw, suid, dev, exec, auto, nouser, and async.

dev

interprets character or block special devices on the file system.

exec

permits execution of binaries.

noatime

does not update inode access times on this file system.

noauto

is only explicitly mountable.

nodev

does not interpret character or block special devices on the file system.

noexec

does not allow execution of any binaries on the mounted file system.

nosuid

does not allow set-user-identifier or set-group-identifier bits to take effect.

nouser

forbids an ordinary (i.e., non-root) user to mount the file system. (default)

remount

attempts to remount an already-mounted file system. This is commonly used to change the mount flags for a file system, especially to make a read-only file system writable.

ro

mounts the file system read-only.

rw

mounts the file system read-write.

suid

allows set-user-identifier or set-group-identifier bits to take effect.

sync

does all I/O to the file system synchronously.

user

allows an ordinary user to mount the file system. This option implies the options noexec, nosuid, and nodev (unless overridden by subsequent options, as in the option line user,exec,dev,suid).