📄 mount.8
字号:
.\" Copyright (c) 1980, 1989, 1991, 1993.\" The Regents of the University of California. All rights reserved..\".\" Redistribution and use in source and binary forms, with or without.\" modification, are permitted provided that the following conditions.\" are met:.\" 1. Redistributions of source code must retain the above copyright.\" notice, this list of conditions and the following disclaimer..\" 2. Redistributions in binary form must reproduce the above copyright.\" notice, this list of conditions and the following disclaimer in the.\" documentation and/or other materials provided with the distribution..\" 3. All advertising materials mentioning features or use of this software.\" must display the following acknowledgement:.\" This product includes software developed by the University of.\" California, Berkeley and its contributors..\" 4. Neither the name of the University nor the names of its contributors.\" may be used to endorse or promote products derived from this software.\" without specific prior written permission..\".\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION).\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF.\" SUCH DAMAGE..\".\" @(#)mount.8 8.7 (Berkeley) 3/27/94.\".Dd March 27, 1994.Dt MOUNT 8.Os BSD 4.Sh NAME.Nm mount.Nd mount file systems.Sh SYNOPSIS.Nm mount.Op Fl adfruvw.Op Fl t Ar ufs | lfs | external_type.Nm mount.Op Fl dfruvw.Ar special | node.Nm mount.Op Fl dfruvw.Op Fl o Ar options.Op Fl t Ar ufs | lfs | external_type.Ar special node.Sh DESCRIPTIONThe.Nm mountcommandcalls the.Xr mount 2system call to prepare and graft a.Ar "special device"or the remote node (rhost:path) on to the file system tree at the point.Ar node .If either.Ar specialor.Ar nodeare not provided, the appropriate information is taken from the.Xr fstab 5file..PpThe system maintains a list of currently mounted file systems.If no arguments are given to.Nm mount,this list is printed..PpThe options are as follows:.Bl -tag -width indent.It Fl dCauses everything to be done except for the actual system call.This option is useful in conjunction with the.Fl vflag todetermine what the.Nm mountcommand is trying to do..It Fl fForces the revocation of write access when trying to downgradea filesystem mount status from read-write to read-only..It Fl oOptions are specified with a.Fl oflag followed by a comma separated string of options.The following options are available:.Bl -tag -width indent.It asyncAll.Tn I/Oto the file system should be done asynchronously.This is a.Em dangerousflag to set,and should not be used unless you are prepared to recreate the filesystem should your system crash..It forceThe same as.Fl f ;forces the revocation of write access when trying to downgradea filesystem mount status from read-write to read-only..It nodevDo not interpret character or block special devices on the file system.This option is useful for a server that has file systems containingspecial devices for architectures other than its own..It noexecDo not allow execution of any binaries on the mounted file system.This option is useful for a server that has file systems containingbinaries for architectures other than its own..It nosuidDo not allow set-user-identifier or set-group-identifier bits to take effect..It rdonlyThe same as.Fl r ;mount the file system read-only (even the super-user may not write it)..It syncAll.Tn I/Oto the file system should be done synchronously..It updateThe same as.Fl u ;indicate that the status of an already mounted file system should be changed..It unionCauses the namespace at the mount point to appear as the unionof the mounted filesystem root and the existing directory.Lookups will be done in the mounted filesystem first.If those operations fail due to a non-existent file the underlyingdirectory is then accessed.All creates are done in the mounted filesystem..El.PpAny additional options specific to a filesystem type that is notone of the internally known types (see the.Fl toption) may be passed as a comma separated list; these options aredistinguished by a leading.Dq \&-(dash).Options that take a value are specified using the syntax -option=value.For example, the mount command:.Bd -literal -offset indentmount -t mfs -o nosuid,-N,-s=4000 /dev/dk0b /tmp.Ed.Ppcauses.Nm mountto execute the equivalent of:.Bd -literal -offset indent/sbin/mount_mfs -o nosuid -N -s 4000 /dev/dk0b /tmp.Ed.It Fl rThe file system is to be mounted read-only.Mount the file system read-only (even the super-user may not write it).The same as the.Dq rdonlyargument to the.Fl ooption..It Fl t Ar "ufs \\*(Ba lfs \\*(Ba external type"The argument following the.Fl tis used to indicate the file system type.The type.Ar ufsis the default.The \fI-t\fP option can be usedto indicate that the actions should only be taken onfilesystems 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.Dq noto specify the filesystem types for which action should.Em notbe taken.For example, the.Nm mountcommand:.Bd -literal -offset indentmount -a -t nonfs,mfs.Ed.Ppmounts all filesystems except those of type.Tn NFSand.Tn MFS ..PpIf the type is not one of the internally known types,mount will attempt to execute a program in.Pa /sbin/mount_ Ns Em XXXwhere.Em XXXis replaced by the type name.For example, nfs filesystems are mounted by the program.Pa /sbin/mount_nfs ..It Fl uThe.Fl uflag indicates that the status of an already mounted filesystem should be changed.Any of the options discussed above (the.Fl ooption)may be changed;also a file system can be changed from read-only to read-writeor vice versa.An attempt to change from read-write to read-only will fail if anyfiles on the filesystem are currently open for writing unless the.Fl fflag is also specified.The set of options is determined by first extracting the optionsfor the file system from the.Xr fstabtable,then applying any options specified by the.Fl oargument,and finally applying the.Fl ror.Fl woption..It Fl vVerbose mode..It Fl wThe file system object is to be read and write..PpThe options specific to NFS filesystems are described in the.Xr mount_nfs 8manual page..Sh FILES.Bl -tag -width /etc/fstab -compact.It Pa /etc/fstabfile system table.El.Sh SEE ALSO.Xr mount 2 ,.Xr fstab 5 ,.Xr mount_cd9660 8 ,.Xr mount_fdesc 8 ,.Xr mount_kernfs 8 ,.Xr mount_lfs 8 ,.Xr mount_lofs 8 ,.Xr mount_mfs 8 ,.Xr mount_nfs 8 ,.Xr mount_null 8 ,.Xr mount_portal 8 ,.Xr mount_procfs 8 ,.Xr mount_umap 8 ,.Xr mount_union 8 ,.Xr umount 8.Sh BUGSIt is possible for a corrupted file system to cause a crash..Sh HISTORYA.Nm mountcommand appeared in.At v6 .
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -