aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuslan Ermilov <ru@FreeBSD.org>2000-12-27 14:40:52 +0000
committerRuslan Ermilov <ru@FreeBSD.org>2000-12-27 14:40:52 +0000
commitd90d7015f9b01a0171112ff744bf1571bd2dddce (patch)
tree43cbcb0e3915cca6631dd756cdaa639f2efd30b0
parent4303e19e3adc80a8a72fe9ea9a1fa11781342a3e (diff)
downloadsrc-d90d7015f9b01a0171112ff744bf1571bd2dddce.tar.gz
src-d90d7015f9b01a0171112ff744bf1571bd2dddce.zip
Prepare for mdoc(7)NG.
Notes
Notes: svn path=/head/; revision=70401
-rw-r--r--sbin/ccdconfig/ccdconfig.85
-rw-r--r--sbin/ipfw/ipfw.85
-rw-r--r--sbin/mount_null/mount_null.84
-rw-r--r--sbin/mount_nullfs/mount_nullfs.84
-rw-r--r--sbin/newfs/newfs.830
-rw-r--r--sbin/slattach/slattach.82
-rw-r--r--sbin/vinum/vinum.82
7 files changed, 26 insertions, 26 deletions
diff --git a/sbin/ccdconfig/ccdconfig.8 b/sbin/ccdconfig/ccdconfig.8
index a23644b9e913..81e59843b75a 100644
--- a/sbin/ccdconfig/ccdconfig.8
+++ b/sbin/ccdconfig/ccdconfig.8
@@ -63,10 +63,7 @@
.Fl g
.Op Fl M Ar core
.Op Fl N Ar system
-.Oo
-.Ar ccd Oo ...
-.Oc
-.Oc
+.Op Ar ccd Op Ar ...
.Sh DESCRIPTION
.Nm Ccdconfig
is used to dynamically configure and unconfigure concatenated disk
diff --git a/sbin/ipfw/ipfw.8 b/sbin/ipfw/ipfw.8
index b68d558522c8..765fb3d3874c 100644
--- a/sbin/ipfw/ipfw.8
+++ b/sbin/ipfw/ipfw.8
@@ -13,10 +13,7 @@
.Oo
.Fl p Ar preproc
.Oo Fl D
-.Sm off
-.Ar macro
-.Op = Ar value
-.Sm on
+.Ar macro Ns Op = Ns Ar value
.Oc
.Op Fl U Ar macro
.Oc
diff --git a/sbin/mount_null/mount_null.8 b/sbin/mount_null/mount_null.8
index 19172652590e..3811bf111bd3 100644
--- a/sbin/mount_null/mount_null.8
+++ b/sbin/mount_null/mount_null.8
@@ -72,9 +72,7 @@ The
filesystem differs from a traditional
loopback file system in two respects: it is implemented using
a stackable layers techniques, and it's
-.Do
-null-node
-.Dc s
+.Do null-node Dc Ns s
stack above
all lower-layer vnodes, not just over directory vnodes.
.Pp
diff --git a/sbin/mount_nullfs/mount_nullfs.8 b/sbin/mount_nullfs/mount_nullfs.8
index 19172652590e..3811bf111bd3 100644
--- a/sbin/mount_nullfs/mount_nullfs.8
+++ b/sbin/mount_nullfs/mount_nullfs.8
@@ -72,9 +72,7 @@ The
filesystem differs from a traditional
loopback file system in two respects: it is implemented using
a stackable layers techniques, and it's
-.Do
-null-node
-.Dc s
+.Do null-node Dc Ns s
stack above
all lower-layer vnodes, not just over directory vnodes.
.Pp
diff --git a/sbin/newfs/newfs.8 b/sbin/newfs/newfs.8
index 8c4634ffc2ce..a54fbb19c0a2 100644
--- a/sbin/newfs/newfs.8
+++ b/sbin/newfs/newfs.8
@@ -32,7 +32,7 @@
.\" @(#)newfs.8 8.6 (Berkeley) 5/3/95
.\" $FreeBSD$
.\"
-.Dd May 3, 1995
+.Dd December 19, 2000
.Dt NEWFS 8
.Os BSD 4.2
.Sh NAME
@@ -190,13 +190,15 @@ for more details on how to set this option.
.It Fl f Ar frag-size
The fragment size of the file system in bytes. It must be a power of two
ranging in value between
-.Ar blocksize/8
+.Ar blocksize Ns /8
and
.Ar blocksize .
The default is 1024 bytes.
.It Fl i Ar number of bytes per inode
Specify the density of inodes in the file system.
-The default is to create an inode for every (4 * frag-size) bytes of data space.
+The default is to create an inode for every
+.Pq 4 * Ar frag-size
+bytes of data space.
If fewer inodes are desired, a larger number should be used;
to create more inodes a smaller number should be given.
One inode is required for each distinct file, so this value effectively
@@ -208,7 +210,7 @@ The default value used is
defined by
.Dv MINFREE
from
-.Ao Pa ufs/ffs/fs.h Ac ,
+.Aq Pa ufs/ffs/fs.h ,
currently 8%.
See
.Xr tunefs 8
@@ -223,13 +225,15 @@ Nowadays this value should be set to 1 (which essentially disables the
rotational position table) because modern drives with read-ahead and
write-behind do better without the rotational position table.
.It Fl o Ar optimization\ preference
-.Pq ``space'' or ``time''
+.Pq Ar space No or Ar time .
The file system can either be instructed to try to minimize the time spent
allocating blocks, or to try to minimize the space fragmentation on the disk.
If the value of minfree (see above) is less than 8%,
-the default is to optimize for space;
+the default is to optimize for
+.Ar space ;
if the value of minfree is greater than or equal to 8%,
-the default is to optimize for time.
+the default is to optimize for
+.Ar time .
See
.Xr tunefs 8
for more details on how to set this option.
@@ -337,7 +341,8 @@ man page for possible options and their meanings.
.Pp
.Dl newfs -b 16384 -f 4096 -c 100 /dev/ad3s1a
.Pp
-Creates a new ufs file system on ad3s1a.
+Creates a new ufs file system on
+.Pa ad3s1a .
.Nm
will use a block size of 16384 bytes, a fragement size of 4096 bytes
and have 100 cylinders per cylinder group rather than the defaults.
@@ -346,9 +351,14 @@ for file systems larger than about 5 gigabytes.
.Pp
.Dl mount_mfs -s 131072 -o nosuid,nodev /dev/da0s1b /tmp
.Pp
-Mount a 64 MB large memory file system on /tmp, with
+Mount a 64 MB large memory file system on
+.Pa /tmp ,
+with
.Xr mount 8
-options nosuid and nodev.
+options
+.Ar nosuid
+and
+.Ar nodev .
.Sh SEE ALSO
.Xr fdformat 1 ,
.Xr disktab 5 ,
diff --git a/sbin/slattach/slattach.8 b/sbin/slattach/slattach.8
index cb458607b97c..a5cc6b917f8d 100644
--- a/sbin/slattach/slattach.8
+++ b/sbin/slattach/slattach.8
@@ -102,7 +102,7 @@ Specify a command to be invoked within a shell
whenever carrier is lost on the modem line.
Empty
.Ar redial-command
-(i.e.
+(i.e.\&
.Fl r Qq "" )
cause connection reestablishing on leased line
without any external command invoked.
diff --git a/sbin/vinum/vinum.8 b/sbin/vinum/vinum.8
index 41def15c32d3..06734c798925 100644
--- a/sbin/vinum/vinum.8
+++ b/sbin/vinum/vinum.8
@@ -37,7 +37,7 @@
.\" $Id: vinum.8,v 1.13 2000/01/03 03:12:56 grog Exp grog $
.\" $FreeBSD$
.\"
-.Dd 20 December 2000
+.Dd December 20, 2000
.Dt vinum 8
.Os
.Sh NAME