Prepare for mdoc(7)NG.

This commit is contained in:
Ruslan Ermilov 2000-12-27 14:40:52 +00:00
parent 4303e19e3a
commit d90d7015f9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=70401
7 changed files with 26 additions and 26 deletions

View File

@ -63,10 +63,7 @@
.Fl g .Fl g
.Op Fl M Ar core .Op Fl M Ar core
.Op Fl N Ar system .Op Fl N Ar system
.Oo .Op Ar ccd Op Ar ...
.Ar ccd Oo ...
.Oc
.Oc
.Sh DESCRIPTION .Sh DESCRIPTION
.Nm Ccdconfig .Nm Ccdconfig
is used to dynamically configure and unconfigure concatenated disk is used to dynamically configure and unconfigure concatenated disk

View File

@ -13,10 +13,7 @@
.Oo .Oo
.Fl p Ar preproc .Fl p Ar preproc
.Oo Fl D .Oo Fl D
.Sm off .Ar macro Ns Op = Ns Ar value
.Ar macro
.Op = Ar value
.Sm on
.Oc .Oc
.Op Fl U Ar macro .Op Fl U Ar macro
.Oc .Oc

View File

@ -72,9 +72,7 @@ The
filesystem differs from a traditional filesystem differs from a traditional
loopback file system in two respects: it is implemented using loopback file system in two respects: it is implemented using
a stackable layers techniques, and it's a stackable layers techniques, and it's
.Do .Do null-node Dc Ns s
null-node
.Dc s
stack above stack above
all lower-layer vnodes, not just over directory vnodes. all lower-layer vnodes, not just over directory vnodes.
.Pp .Pp

View File

@ -72,9 +72,7 @@ The
filesystem differs from a traditional filesystem differs from a traditional
loopback file system in two respects: it is implemented using loopback file system in two respects: it is implemented using
a stackable layers techniques, and it's a stackable layers techniques, and it's
.Do .Do null-node Dc Ns s
null-node
.Dc s
stack above stack above
all lower-layer vnodes, not just over directory vnodes. all lower-layer vnodes, not just over directory vnodes.
.Pp .Pp

View File

@ -32,7 +32,7 @@
.\" @(#)newfs.8 8.6 (Berkeley) 5/3/95 .\" @(#)newfs.8 8.6 (Berkeley) 5/3/95
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd May 3, 1995 .Dd December 19, 2000
.Dt NEWFS 8 .Dt NEWFS 8
.Os BSD 4.2 .Os BSD 4.2
.Sh NAME .Sh NAME
@ -190,13 +190,15 @@ for more details on how to set this option.
.It Fl f Ar frag-size .It Fl f Ar frag-size
The fragment size of the file system in bytes. It must be a power of two The fragment size of the file system in bytes. It must be a power of two
ranging in value between ranging in value between
.Ar blocksize/8 .Ar blocksize Ns /8
and and
.Ar blocksize . .Ar blocksize .
The default is 1024 bytes. The default is 1024 bytes.
.It Fl i Ar number of bytes per inode .It Fl i Ar number of bytes per inode
Specify the density of inodes in the file system. 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; If fewer inodes are desired, a larger number should be used;
to create more inodes a smaller number should be given. to create more inodes a smaller number should be given.
One inode is required for each distinct file, so this value effectively One inode is required for each distinct file, so this value effectively
@ -208,7 +210,7 @@ The default value used is
defined by defined by
.Dv MINFREE .Dv MINFREE
from from
.Ao Pa ufs/ffs/fs.h Ac , .Aq Pa ufs/ffs/fs.h ,
currently 8%. currently 8%.
See See
.Xr tunefs 8 .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 rotational position table) because modern drives with read-ahead and
write-behind do better without the rotational position table. write-behind do better without the rotational position table.
.It Fl o Ar optimization\ preference .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 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. allocating blocks, or to try to minimize the space fragmentation on the disk.
If the value of minfree (see above) is less than 8%, 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%, 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 See
.Xr tunefs 8 .Xr tunefs 8
for more details on how to set this option. for more details on how to set this option.
@ -337,7 +341,8 @@ man page for possible options and their meanings.
.Pp .Pp
.Dl newfs -b 16384 -f 4096 -c 100 /dev/ad3s1a .Dl newfs -b 16384 -f 4096 -c 100 /dev/ad3s1a
.Pp .Pp
Creates a new ufs file system on ad3s1a. Creates a new ufs file system on
.Pa ad3s1a .
.Nm .Nm
will use a block size of 16384 bytes, a fragement size of 4096 bytes 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. and have 100 cylinders per cylinder group rather than the defaults.
@ -346,9 +351,14 @@ for file systems larger than about 5 gigabytes.
.Pp .Pp
.Dl mount_mfs -s 131072 -o nosuid,nodev /dev/da0s1b /tmp .Dl mount_mfs -s 131072 -o nosuid,nodev /dev/da0s1b /tmp
.Pp .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 .Xr mount 8
options nosuid and nodev. options
.Ar nosuid
and
.Ar nodev .
.Sh SEE ALSO .Sh SEE ALSO
.Xr fdformat 1 , .Xr fdformat 1 ,
.Xr disktab 5 , .Xr disktab 5 ,

View File

@ -102,7 +102,7 @@ Specify a command to be invoked within a shell
whenever carrier is lost on the modem line. whenever carrier is lost on the modem line.
Empty Empty
.Ar redial-command .Ar redial-command
(i.e. (i.e.\&
.Fl r Qq "" ) .Fl r Qq "" )
cause connection reestablishing on leased line cause connection reestablishing on leased line
without any external command invoked. without any external command invoked.

View File

@ -37,7 +37,7 @@
.\" $Id: vinum.8,v 1.13 2000/01/03 03:12:56 grog Exp grog $ .\" $Id: vinum.8,v 1.13 2000/01/03 03:12:56 grog Exp grog $
.\" $FreeBSD$ .\" $FreeBSD$
.\" .\"
.Dd 20 December 2000 .Dd December 20, 2000
.Dt vinum 8 .Dt vinum 8
.Os .Os
.Sh NAME .Sh NAME