成人免费xxxxx在线视频软件_久久精品久久久_亚洲国产精品久久久_天天色天天色_亚洲人成一区_欧美一级欧美三级在线观看

umount 中文man頁(yè)面

系統(tǒng)
umount可卸除目前掛在Linux目錄中的文件系統(tǒng)。

功能說(shuō)明:卸除文件系統(tǒng)。

語(yǔ)法:umount[-ahnrvV][-t<文件系統(tǒng)類(lèi)型>][文件系統(tǒng)]

補(bǔ)充說(shuō)明:umount可卸除目前掛在Linux目錄中的文件系統(tǒng)。

參數(shù)

-a卸除/etc/mtab中記錄的所有文件系統(tǒng)。

-h顯示幫助。

-n卸除時(shí)不要將信息存入/etc/mtab文件中。

-r若無(wú)法成功卸除,則嘗試以只讀的方式重新掛入文件系統(tǒng)。

-t<文件系統(tǒng)類(lèi)型>僅卸除選項(xiàng)中所指定的文件系統(tǒng)。

-v執(zhí)行時(shí)顯示詳細(xì)的信息。

-V顯示版本信息。

[文件系統(tǒng)]除了直接指定文件系統(tǒng)外,也可以用設(shè)備名稱(chēng)或掛入點(diǎn)來(lái)表示文件系統(tǒng)。

#p#

NAME

mount, umount - mount and unmount filesystems  

SYNOPSIS

#include <sys/mount.h>

int mount(const char *source, const char *target, const char *filesystemtype, unsigned long mountflags, const void *data);

int umount(const char *target);

int umount2(const char *target, int flags);  

DESCRIPTION

mount attaches the filesystem specified by source (which is often a device name, but can also be a directory name or a dummy) to the directory specified by target.

umount and umount2 remove the attachment of the (topmost) filesystem mounted on target.

Only the super-user may mount and unmount filesystems. Since Linux 2.4 a single filesystem can be visible at multiple mount points, and multiple mounts can be stacked on the same mount point.

Values for the filesystemtype argument supported by the kernel are listed in /proc/filesystems (like "minix", "ext2", "msdos", "proc", "nfs", "iso9660" etc.). Further types may become available when the appropriate modules are loaded.

The mountflags argument may have the magic number 0xC0ED (MS_MGC_VAL) in the top 16 bits (this was required in kernel versions prior to 2.4, but is no longer required and ignored if specified), and various mount flags (as defined in <linux/fs.h> for libc4 and libc5 and in <sys/mount.h> for glibc2) in the low order 16 bits:

MS_BIND
(Linux 2.4 onwards) Perform a bind mount, making a file or a directory subtree visible at another point within a file system. Bind mounts may cross file system boundaries and span chroot(2) jails. The filesystemtype, mountflags, and data arguments are ignored.
MS_DIRSYNC
(Since Linux 2.5.19.) Make directory changes on this file system synchronous. (This property can be obtained for individual directories or subtrees using chattr(8).)
MS_MANDLOCK
Permit mandatory locking on files in this file system. (Mandatory locking must still be enabled on a per-file basis, as described in fcntl(2).)
MS_MOVE
Move a subtree. source specifies an existing mount point and target specifies the new location. The move is atomic: at no point is the subtree unmounted. The filesystemtype, mountflags, and data arguments are ignored.
MS_NOATIME
Do not update access times for (all types of) files on this file system.
MS_NODEV
Do not allow access to devices (special files) on this file system.
MS_NODIRATIME
Do not update access times for directories on this file system.
MS_NOEXEC
Do not allow programs to be executed from this file system.
MS_NOSUID
Do not honour set-UID and set-GID bits when executing programs from this file system.
MS_RDONLY
Mount file system read-only.
MS_REMOUNT
Remount an existing mount. This is allows you to change the mountflags and data of an existing mount without having to unmount and remount the file system. source and target should be the same values specified in the initial mount() call; filesystemtype is ignored.
MS_SYNCHRONOUS
Make writes on this file system synchronous (as though the O_SYNC flag to open(2) was specified for all file opens to this file system).

From Linux 2.4 onwards, the MS_NODEV, MS_NOEXEC, and MS_NOSUID flags are settable on a per-mount point basis.

The data argument is interpreted by the different file systems. Typically it is a string of comma-separated options understood by this file system. See mount(8) for details of the options available for each filesystem type.

Linux 2.1.116 added the umount2() system call, which, like umount(), unmounts a target, but allows additional flags controlling the behaviour of the operation:

MNT_FORCE
Force unmount even if busy. (Since 2.1.116. Only for NFS mounts.)
MNT_DETACH
Perform a lazy unmount: make the mount point unavailable for new accesses, and actually perform the unmount when the mount point ceases to be busy. (Since 2.4.11.)

RETURN VALUE

On success, zero is returned. On error, -1 is returned, and errno is set appropriately.  

ERRORS

The error values given below result from filesystem type independent errors. Each filesystem type may have its own special errors and its own special behavior. See the kernel source code for details.

EPERM
The user is not the super-user.
ENODEV
Filesystemtype not configured in the kernel.
ENOTBLK
Source is not a block device (and a device was required).
EBUSY
Source is already mounted. Or, it cannot be remounted read-only, because it still holds files open for writing. Or, it cannot be mounted on target because target is still busy (it is the working directory of some task, the mount point of another device, has open files, etc.). Or, it could not be unmounted because it is busy.
EINVAL
Source had an invalid superblock. Or, a remount was attempted, while source was not already mounted on target. Or, a move was attempted, while source was not a mount point, or was '/'. Or, an umount was attempted, while target was not a mount point.
ENOTDIR
The second argument, or a prefix of the first argument, is not a directory.
EFAULT
One of the pointer arguments points outside the user address space.
ENOMEM
The kernel could not allocate a free page to copy filenames or data into.
ENAMETOOLONG
A pathname was longer than MAXPATHLEN.
ENOENT
A pathname was empty or had a nonexistent component.
ELOOP
Too many link encountered during pathname resolution. Or, a move was attempted, while target is a descendant of source.
EACCES
A component of a path was not searchable.
Or, mounting a read-only filesystem was attempted without giving the MS_RDONLY flag.
Or, the block device Source is located on a filesystem mounted with the MS_NODEV option.
ENXIO
The major number of the block device source is out of range.
EMFILE
(In case no block device is required:) Table of dummy devices is full.

CONFORMING TO

These functions are Linux-specific and should not be used in programs intended to be portable.  

HISTORY

The original umount function was called as umount(device) and would return ENOTBLK when called with something other than a block device. In Linux 0.98p4 a call umount(dir) was added, in order to support anonymous devices. In Linux 2.3.99-pre7 the call umount(device) was removed, leaving only umount(dir) (since now devices can be mounted in more than one place, so specifying the device does not suffice).

The original MS_SYNC flag was renamed MS_SYNCHRONOUS in 1.1.69 when a different MS_SYNC was added to <mman.h>.

Before Linux 2.4 an attempt to execute a set-UID or set-GID program on a filesystem mounted with MS_NOSUID would fail with EPERM. Since Linux 2.4 the set-UID and set-GID bits are just silently ignored in this case.  

SEE ALSO

mount(8), umount(8)

責(zé)任編輯:韓亞珊 來(lái)源: 互聯(lián)網(wǎng)
相關(guān)推薦

2011-08-23 17:18:44

umount中文man

2011-08-15 10:21:09

man中文man

2011-08-24 16:48:36

man中文man

2011-08-11 16:11:49

at中文man

2011-08-25 10:21:56

man.conf中文man

2011-08-11 15:03:21

ACCESS中文man

2011-08-11 15:28:43

ali中文man

2011-08-11 16:31:49

biff中文man

2011-08-11 17:16:43

cce中文man

2011-08-11 18:05:04

chvt中文man

2011-08-11 18:13:07

clear中文man

2011-08-12 09:13:02

df中文man

2011-08-12 09:38:06

dircolors中文man

2011-08-12 09:44:37

dirname中文man

2011-08-12 10:20:02

echo中文man

2011-08-12 10:25:55

eject中文man

2011-08-12 11:07:19

git中文man

2011-08-12 13:18:19

head中文man

2011-08-12 13:49:23

hostid中文man

2011-08-12 13:54:46

hostname中文man
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)

主站蜘蛛池模板: 成人h片在线观看 | 成人国产精品久久 | 成人欧美 | 九九热在线视频观看这里只有精品 | 精品国产区 | 日韩在线中文字幕 | 二区欧美 | 91精品国产91久久久久久不卞 | 一级黄色毛片 | 欧美一级大片 | 男女羞羞视频免费 | 九九久久国产 | 国产精品久久久久久久久久久久久 | 精品国产乱码久久久久久蜜退臀 | 亚洲精品www久久久久久广东 | 国产精品久久一区二区三区 | 国产第1页 | 国产a视频 | 羞羞视频在线观看免费观看 | 亚洲第一成人av | 国产69精品久久久久777 | 91国产精品在线 | 国产精品欧美一区二区三区不卡 | 成人国产精品久久 | 欧美日韩高清一区二区三区 | 久久青草av | 日韩中文电影 | 亚洲一级在线 | 精品三级在线观看 | 欧美精品在线播放 | 精品少妇一区二区三区在线播放 | 欧美日韩综合视频 | 最近中文字幕在线视频1 | 波多野结衣中文视频 | 91九色porny首页最多播放 | 国产午夜精品一区二区 | 国产精品久久久久久久久久久久久 | 91麻豆产精品久久久久久 | 欧美国产亚洲一区二区 | 欧美精品一区二区三区四区五区 | 国产精品成人一区二区三区 |