summaryrefslogtreecommitdiffstats
path: root/sbin/umount
diff options
context:
space:
mode:
authortrhodes <trhodes@FreeBSD.org>2002-08-21 18:11:48 +0000
committertrhodes <trhodes@FreeBSD.org>2002-08-21 18:11:48 +0000
commit136be46680c6e4a18cc827da991d4f9a0de29cba (patch)
treeb5ee0aba66633a4e0e47097e4f383c253a87887a /sbin/umount
parent9618da3e35435c433d8086d65af15f716ffe32ec (diff)
downloadFreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.zip
FreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.tar.gz
s/filesystem/file system/g as discussed on -developers
Diffstat (limited to 'sbin/umount')
-rw-r--r--sbin/umount/umount.828
-rw-r--r--sbin/umount/umount.c10
2 files changed, 19 insertions, 19 deletions
diff --git a/sbin/umount/umount.8 b/sbin/umount/umount.8
index d990f61..8d75508 100644
--- a/sbin/umount/umount.8
+++ b/sbin/umount/umount.8
@@ -37,7 +37,7 @@
.Os
.Sh NAME
.Nm umount
-.Nd unmount filesystems
+.Nd unmount file systems
.Sh SYNOPSIS
.Nm
.Op Fl fv
@@ -54,7 +54,7 @@ utility calls the
.Xr unmount 2
system call to remove a
.Ar "special device"
-or the remote node (rhost:path) from the filesystem tree at the point
+or the remote node (rhost:path) from the file system tree at the point
.Ar node .
If either
.Ar special
@@ -67,19 +67,19 @@ file.
The options are as follows:
.Bl -tag -width indent
.It Fl a
-All the filesystems described in
+All the file systems described in
.Xr fstab 5
are unmounted.
.It Fl A
-All the currently mounted filesystems except
+All the currently mounted file systems except
the root are unmounted.
.It Fl f
-The filesystem is forcibly unmounted.
+The file system is forcibly unmounted.
Active special devices continue to work,
but all other files return errors if further accesses are attempted.
-The root filesystem cannot be forcibly unmounted.
+The root file system cannot be forcibly unmounted.
.It Fl h Ar host
-Only filesystems mounted from the specified host will be
+Only file systems mounted from the specified host will be
unmounted.
This option implies the
.Fl A
@@ -87,14 +87,14 @@ option and, unless otherwise specified with the
.Fl t
option, will only unmount
.Tn NFS
-filesystems.
+file systems.
.It Fl t Ar type
Is used to indicate the actions should only be taken on
-filesystems of the specified type.
+file systems 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
+The list of file system types can be prefixed with
.Dq no
-to specify the filesystem types for which action should
+to specify the file system types for which action should
.Em not
be taken.
For example, the
@@ -104,7 +104,7 @@ command:
umount -a -t nfs,nullfs
.Ed
.Pp
-unmounts all filesystems of the type
+unmounts all file systems of the type
.Tn NFS
and
.Tn NULLFS
@@ -112,13 +112,13 @@ that are listed in the
.Xr fstab 5
file.
.It Fl v
-Verbose, additional information is printed out as each filesystem
+Verbose, additional information is printed out as each file system
is unmounted.
.El
.Sh FILES
.Bl -tag -width /etc/fstab -compact
.It Pa /etc/fstab
-filesystem table
+file system table
.El
.Sh SEE ALSO
.Xr unmount 2 ,
diff --git a/sbin/umount/umount.c b/sbin/umount/umount.c
index 0406d28..a376ceb 100644
--- a/sbin/umount/umount.c
+++ b/sbin/umount/umount.c
@@ -224,14 +224,14 @@ umountall(char **typelist)
strcmp(fs->fs_type, FSTAB_RO) &&
strcmp(fs->fs_type, FSTAB_RQ))
continue;
- /* Ignore unknown filesystem types. */
+ /* Ignore unknown file system types. */
if (getvfsbyname(fs->fs_vfstype, &vfc) == -1)
continue;
if (checkvfsname(fs->fs_vfstype, typelist))
continue;
/*
- * We want to unmount the filesystems in the reverse order
+ * We want to unmount the file systems in the reverse order
* that they were mounted. So, we save off the file name
* in some allocated memory, and then call recursively.
*/
@@ -507,13 +507,13 @@ getmntname(const char *fromname, const char *onname,
err(1, "calloc");
}
/*
- * We want to get the filesystems in the reverse order
- * that they were mounted. Mounted and unmounted filesystems
+ * We want to get the file systems in the reverse order
+ * that they were mounted. Mounted and unmounted file systems
* are marked or unmarked in a table called 'mntcheck'.
* Unmount(const char *dir, int flags) does only take the
* mountpoint as argument, not the destination. If we don't pay
* attention to the order, it can happen that a overlaying
- * filesystem get's unmounted instead of the one the user
+ * file system get's unmounted instead of the one the user
* has choosen.
*/
switch (mark) {
OpenPOWER on IntegriCloud