diff options
author | trhodes <trhodes@FreeBSD.org> | 2002-08-21 18:11:48 +0000 |
---|---|---|
committer | trhodes <trhodes@FreeBSD.org> | 2002-08-21 18:11:48 +0000 |
commit | 136be46680c6e4a18cc827da991d4f9a0de29cba (patch) | |
tree | b5ee0aba66633a4e0e47097e4f383c253a87887a /sbin/fsirand | |
parent | 9618da3e35435c433d8086d65af15f716ffe32ec (diff) | |
download | FreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.zip FreeBSD-src-136be46680c6e4a18cc827da991d4f9a0de29cba.tar.gz |
s/filesystem/file system/g as discussed on -developers
Diffstat (limited to 'sbin/fsirand')
-rw-r--r-- | sbin/fsirand/fsirand.8 | 16 | ||||
-rw-r--r-- | sbin/fsirand/fsirand.c | 8 |
2 files changed, 12 insertions, 12 deletions
diff --git a/sbin/fsirand/fsirand.8 b/sbin/fsirand/fsirand.8 index 9d89579..1d7e56e 100644 --- a/sbin/fsirand/fsirand.8 +++ b/sbin/fsirand/fsirand.8 @@ -46,9 +46,9 @@ The .Nm utility installs random generation numbers on all the inodes for -each filesystem specified on the command line by +each file system specified on the command line by .Ar special . -This increases the security of NFS-exported filesystems by making +This increases the security of NFS-exported file systems by making it difficult to ``guess'' filehandles. .Pp .Em Note : @@ -58,18 +58,18 @@ now does the equivalent of itself so it is no longer necessary to run .Nm -by hand on a new filesystem. It is only used to -re-randomize or report on an existing filesystem. +by hand on a new file system. It is only used to +re-randomize or report on an existing file system. .Pp The .Nm -utility should only be used on an unmounted filesystem that +utility should only be used on an unmounted file system that has been checked with .Xr fsck 8 -or a filesystem that is mounted read-only. +or a file system that is mounted read-only. The .Nm -utility may be used on the root filesystem in single-user mode +utility may be used on the root file system in single-user mode but the system should be rebooted via ``reboot -n'' afterwards. .Sh OPTIONS .Bl -tag -width indent @@ -80,7 +80,7 @@ of the value gleaned from the disklabel. .It Fl f Force .Nm -to run even if the filesystem on +to run even if the file system on .Ar special is not marked as clean. .It Fl p diff --git a/sbin/fsirand/fsirand.c b/sbin/fsirand/fsirand.c index 2e555be..a4d922b 100644 --- a/sbin/fsirand/fsirand.c +++ b/sbin/fsirand/fsirand.c @@ -159,18 +159,18 @@ fsirand(char *device) break; } if (sblock_try[i] == -1) { - fprintf(stderr, "Cannot find filesystem superblock\n"); + fprintf(stderr, "Cannot find file system superblock\n"); return (1); } maxino = sblock->fs_ncg * sblock->fs_ipg; if (sblock->fs_magic == FS_UFS1_MAGIC && sblock->fs_old_inodefmt < FS_44INODEFMT) { - warnx("filesystem format is too old, sorry"); + warnx("file system format is too old, sorry"); return (1); } if (!force && !printonly && sblock->fs_clean != 1) { - warnx("filesystem is not clean, fsck %s first", device); + warnx("file system is not clean, fsck %s first", device); return (1); } @@ -217,7 +217,7 @@ fsirand(char *device) sblock->fs_id[1]); } - /* Randomize fs_id unless old 4.2BSD filesystem */ + /* Randomize fs_id unless old 4.2BSD file system */ if (!printonly) { /* Randomize fs_id and write out new sblock and backups */ sblock->fs_id[0] = (u_int32_t)time(NULL); |