Prepare for mdoc(7)NG.
This commit is contained in:
parent
4303e19e3a
commit
d90d7015f9
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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 ,
|
||||
|
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user