umountのヘルプ・マニュアル
日本語 英語
umount --help
使い方: umount -h | -V
umount -a [-d] [-f] [-r] [-n] [-v] [-t vfsタイプ] [-O オプション]
umount [-d] [-f] [-r] [-n] [-v] special | node...
Usage: umount -h | -V
umount -a [-d] [-f] [-r] [-n] [-v] [-t vfstypes] [-O opts]
umount [-d] [-f] [-r] [-n] [-v] special | node...
man umount
UMOUNT(8) Linux Programmer’s Manual UMOUNT(8)
名前
umount - ファイルシステムをアンマウントする
書式
umount [-hV]
umount -a [-dflnrv] [-t vfstype] [-O options]
umount [-dflnrv] dir | device [...]
説明
umount コマンドは、ファイルの階層構造から指定したファイルシステムを切り
離す。ファイルシステムの指定には、システムをマウントしたディレクトリ を
与 える。またファイルシステムの実体が存在するスペシャルデバイスを与える
こともできるが、このやり方は古く、デバイスが 2 つ以上のディレクトリにマ
ウントされている場合に失敗するだろう。
フ ァイルシステムが ‘busy’ である時にはアンマウントは実行できない。例え
ばそのファイルシステム上で、ファイルがオープンされている (あるいはス ワ
ッ プファイルが使用中である) 場合や、あるプロセスのワーキングディレクト
リがそこにある場合などが該当する。この原因となるプロセスが umount 自 身
の 場合もありうる。 umount は libc をオープンするし、 libc はまた多くの
ファイル (locale ファイルなど) をオープンする可能性がある。 lazy アンマ
ウントにより、この問題は回避できる。
umount コマンドのオプションは以下の通り:
-V バージョンを表示して終了する。
-h ヘルプメッセージを表示して終了する。
-v 詳細表示モード。
-n アンマウントの際、 /etc/mtab への書き込みを行わない。
-r アンマウントが失敗した場合、リードオンリーでの再マウントを試みる
。
-d アンマウント対象のデバイスが loop デバイスの場合、 loop デバイス
の解放も行う。
-i /sbin/umount. ヘルパがあっても、呼び出さない。デフォ
ルトでは /sbin/umount. ヘルパがある場合は、それが 呼
び出される。
-a /etc/mtab に記述されているすべてのファイルシステムをアンマウント
する。 (umount バージョン 2.7 以降では、 proc ファイルシステムは
アンマウントされない。)
-t vfstype
指定したタイプのファイルシステムにのみに対して動作を行う。複数の
ファイルシステムをコンマで区切ったリストで指定することもできる。
ファイルシステムのリストに no を前置することもでき、この場合は動
作を行わないファイルシステムのタイプを指定したことになる。
-O options
このオプションが /etc/fstab で指定されているファイルシステムにつ
い てのみ動作を行う。コンマで区切ることで 2 つ以上のオプションを
指定できる。オプションに no を前置することもでき、この場合は動作
を行わないオプションを指定したことになる。
-f 強制的にアンマウントする (到達不可能な NFS システムの場合)。 (カ
ーネル 2.1.116 以降である必要がある。)
-l lazy アンマウント。現在のファイルシステムの階層構造から指定さ れ
た フ ァイルシステムを切り離し、ファイルシステムへの全ての参照が
busy でなくなった時点ですぐに整理する。 (カーネル 2.4.11 以降 で
ある必要がある。)
LOOP デバイス
umount コマンドはマウントされている loop デバイスがあれば、それを解放し
ようとする。これが行われるのは、 /etc/mtab 中に ‘loop=..." というオプシ
ョ ンが記述されている場合か、オプションとして -d が与えられた場合である
。マウントされていない loop デバイスは ‘losetup -d’ によって解放する こ
とができる。詳細は losetup(8) を見よ。
ファイル
/etc/mtab マウントされているファイルシステムの一覧
関連項目
umount(2), mount(8), losetup(8)
履歴
umount コマンドは Version 6 の AT&T UNIX から導入された。
Linux 2.0 26 July 1997 UMOUNT(8)
UMOUNT(8) Linux Programmer’s Manual UMOUNT(8)
NAME
umount - unmount file systems
SYNOPSIS
umount [-hV]
umount -a [-dflnrv] [-t vfstype] [-O options]
umount [-dflnrv] {dir|device}...
DESCRIPTION
The umount command detaches the file system(s) mentioned from the file
hierarchy. A file system is specified by giving the directory where it
has been mounted. Giving the special device on which the file system
lives may also work, but is obsolete, mainly because it will fail in
case this device was mounted on more than one directory.
Note that a file system cannot be unmounted when it is ‘busy’ - for
example, when there are open files on it, or when some process has its
working directory there, or when a swap file on it is in use. The
offending process could even be umount itself - it opens libc, and libc
in its turn may open for example locale files. A lazy unmount avoids
this problem.
Options for the umount command:
-V Print version and exit.
-h Print help message and exit.
-v Verbose mode.
-n Unmount without writing in /etc/mtab.
-r In case unmounting fails, try to remount read-only.
-d In case the unmounted device was a loop device, also free this
loop device.
-i Don’t call the /sbin/umount. helper even if it
exists. By default /sbin/umount. helper is called if
one exists.
-a All of the file systems described in /etc/mtab are unmounted.
(With umount version 2.7 and later: the proc filesystem is not
unmounted.)
-t vfstype
Indicate that the actions should only be taken on file systems
of the specified type. More than one type may be specified in a
comma separated list. The list of file system types can be pre-
fixed with no to specify the file system types on which no
action should be taken.
-O options
Indicate that the actions should only be taken on file systems
with the specified options in /etc/fstab. More than one option
type may be specified in a comma separated list. Each option
can be prefixed with no to specify options for which no action
should be taken.
-f Force unmount (in case of an unreachable NFS system). (Requires
kernel 2.1.116 or later.)
-l Lazy unmount. Detach the filesystem from the filesystem hierar-
chy now, and cleanup all references to the filesystem as soon as
it is not busy anymore. (Requires kernel 2.4.11 or later.)
--no-canonicalize
Don’t canonicalize paths. For more details about this option see
the mount(8) man page.
--fake Causes everything to be done except for the actual system call
or umount helper execution; this ‘‘fakes’’ unmounting the
filesystem. It can be used to remove entries from /etc/mtab
that were unmounted earlier with the -n option.
THE LOOP DEVICE
The umount command will free the loop device (if any) associated with
the mount, in case it finds the option ‘loop=...’ in /etc/mtab, or when
the -d option was given. Any pending loop devices can be freed using
‘losetup -d’, see losetup(8).
NOTES
The syntax of external umount helpers is:
/sbin/umount. {dir|device} [-nlfvr] [-t type.subtype]
where the is filesystem type or a value from "uhelper=" mtab
option. The -t option is used for filesystems with subtypes support
(for example /sbin/mount.fuse -t fuse.sshfs).
The uhelper (unprivileged umount helper) is possible to used when non-
root user wants to umount a mountpoint which is not defined in the
/etc/fstab file (e.g devices mounted by HAL).
FILES
/etc/mtab table of mounted file systems
SEE ALSO
umount(2), mount(8), losetup(8).
HISTORY
A umount command appeared in Version 6 AT&T UNIX.
AVAILABILITY
The umount command is part of the util-linux-ng package and is avail-
able from ftp://ftp.kernel.org/pub/linux/utils/util-linux-ng/.
Linux 2.0 26 July 1997 UMOUNT(8)