From: Sascha Wildner Date: Fri, 17 Feb 2006 19:33:33 +0000 (+0000) Subject: Sweep-fix man page section order to match mdoc(7), part 1/5. X-Git-Url: https://gitweb.dragonflybsd.org/~syl/dragonfly.git/commitdiff_plain/d600454b58e1cafa8900e6b693298ba8de4779f8 Sweep-fix man page section order to match mdoc(7), part 1/5. Note: I haven't touched the few man pages that are still using the old man(7) macros. They will be converted to mdoc later. --- diff --git a/bin/cat/cat.1 b/bin/cat/cat.1 index c4515a2c30..ae80e6ff40 100644 --- a/bin/cat/cat.1 +++ b/bin/cat/cat.1 @@ -34,7 +34,7 @@ .\" .\" @(#)cat.1 8.3 (Berkeley) 5/2/95 .\" $FreeBSD: src/bin/cat/cat.1,v 1.10.2.9 2001/12/14 14:22:08 ru Exp $ -.\" $DragonFly: src/bin/cat/cat.1,v 1.4 2005/07/31 11:53:46 asmodai Exp $ +.\" $DragonFly: src/bin/cat/cat.1,v 1.5 2006/02/17 19:33:30 swildner Exp $ .\" .Dd September 15, 2001 .Dt CAT 1 @@ -109,8 +109,6 @@ characters (with the high bit set) are printed as .Ql M- (for meta) followed by the character for the low 7 bits. .El -.Sh DIAGNOSTICS -.Ex -std .Sh EXAMPLES The command: .Bd -literal -offset indent @@ -161,6 +159,8 @@ would have already been read and printed by when it encountered the first .Ql \&- operand. +.Sh DIAGNOSTICS +.Ex -std .Sh SEE ALSO .Xr head 1 , .Xr more 1 , diff --git a/bin/chio/chio.1 b/bin/chio/chio.1 index fee94c7d48..319d3377e3 100644 --- a/bin/chio/chio.1 +++ b/bin/chio/chio.1 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/bin/chio/chio.1,v 1.10.2.8 2003/05/16 22:43:15 keramida Exp $ -.\" $DragonFly: src/bin/chio/chio.1,v 1.2 2003/06/17 04:22:49 dillon Exp $ +.\" $DragonFly: src/bin/chio/chio.1,v 1.3 2006/02/17 19:33:30 swildner Exp $ .\" .Dd May 14, 1998 .Dt CHIO 1 @@ -256,6 +256,11 @@ Element supports passing media (exporting) to an outside human operator. .It INENAB Element supports receiving media (importing) from an outside human operator. .El +.Sh FILES +.Bl -tag -width /dev/ch0 -compact +.It Pa /dev/ch0 +default changer device +.El .Sh EXAMPLES .Bl -tag -width indent .It Li chio move slot 3 drive 0 @@ -268,11 +273,6 @@ location in the rack. .It Li chio setpicker 2 Configure the changer to use picker 2 (third picker) for operations. .El -.Sh FILES -.Bl -tag -width /dev/ch0 -compact -.It Pa /dev/ch0 -default changer device -.El .Sh SEE ALSO .Xr mt 1 , .Xr mount 8 diff --git a/bin/chmod/chmod.1 b/bin/chmod/chmod.1 index 8d904c1a5f..a27947dce4 100644 --- a/bin/chmod/chmod.1 +++ b/bin/chmod/chmod.1 @@ -34,7 +34,7 @@ .\" .\" @(#)chmod.1 8.4 (Berkeley) 3/31/94 .\" $FreeBSD: src/bin/chmod/chmod.1,v 1.17.2.16 2003/02/24 03:01:00 trhodes Exp $ -.\" $DragonFly: src/bin/chmod/chmod.1,v 1.2 2003/06/17 04:22:49 dillon Exp $ +.\" $DragonFly: src/bin/chmod/chmod.1,v 1.3 2006/02/17 19:33:30 swildner Exp $ .\" .Dd March 31, 1994 .Dt CHMOD 1 @@ -104,6 +104,33 @@ command's actions are determined by the last one specified. .Pp Only the owner of a file or the super-user is permitted to change the mode of a file. +.Sh EXAMPLES +.Bl -tag -width "u=rwx,go=u-w" -compact +.It Li 644 +make a file readable by anyone and writable by the owner only. +.Pp +.It Li go-w +deny write permission to group and others. +.Pp +.It Li =rw,+X +set the read and write permissions to the usual defaults, but +retain any execute permissions that are currently set. +.Pp +.It Li +X +make a directory or file searchable/executable by everyone if it is +already searchable/executable by anyone. +.Pp +.It Li 755 +.It Li u=rwx,go=rx +.It Li u=rwx,go=u-w +make a file readable/executable by everyone and writable by the owner only. +.Pp +.It Li go= +clear all mode bits for group and others. +.Pp +.It Li g=u-w +set the group bits equal to the user bits, but clear the group write bit. +.El .Sh DIAGNOSTICS .Ex -std .Sh MODES @@ -277,37 +304,6 @@ Operations upon the other permissions only (specified by the symbol ``o'' by itself), in combination with the .Ar perm symbols ``s'' or ``t'', are ignored. -.Sh EXAMPLES -.Bl -tag -width "u=rwx,go=u-w" -compact -.It Li 644 -make a file readable by anyone and writable by the owner only. -.Pp -.It Li go-w -deny write permission to group and others. -.Pp -.It Li =rw,+X -set the read and write permissions to the usual defaults, but -retain any execute permissions that are currently set. -.Pp -.It Li +X -make a directory or file searchable/executable by everyone if it is -already searchable/executable by anyone. -.Pp -.It Li 755 -.It Li u=rwx,go=rx -.It Li u=rwx,go=u-w -make a file readable/executable by everyone and writable by the owner only. -.Pp -.It Li go= -clear all mode bits for group and others. -.Pp -.It Li g=u-w -set the group bits equal to the user bits, but clear the group write bit. -.El -.Sh BUGS -There's no -.Ar perm -option for the naughty bits. .Sh COMPATIBILITY The .Fl v @@ -339,3 +335,7 @@ A .Nm command appeared in .At v1 . +.Sh BUGS +There's no +.Ar perm +option for the naughty bits. diff --git a/bin/df/df.1 b/bin/df/df.1 index 18ae9ecbfb..47f984798f 100644 --- a/bin/df/df.1 +++ b/bin/df/df.1 @@ -31,7 +31,7 @@ .\" .\" @(#)df.1 8.3 (Berkeley) 5/8/95 .\" $FreeBSD: src/bin/df/df.1,v 1.18.2.9 2003/05/07 23:56:14 trhodes Exp $ -.\" $DragonFly: src/bin/df/df.1,v 1.2 2003/06/17 04:22:49 dillon Exp $ +.\" $DragonFly: src/bin/df/df.1,v 1.3 2006/02/17 19:33:30 swildner Exp $ .\" .Dd May 8, 1995 .Dt DF 1 @@ -146,12 +146,6 @@ If the environment variable .Ev BLOCKSIZE is set, the block counts will be displayed in units of that size block. .El -.Sh BUGS -The -.Fl n -and -.Fl t -flags are ignored if a file or file system is specified. .Sh SEE ALSO .Xr lsvfs 1 , .Xr quota 1 , @@ -167,3 +161,9 @@ A .Nm command appeared in .At v1 . +.Sh BUGS +The +.Fl n +and +.Fl t +flags are ignored if a file or file system is specified. diff --git a/bin/ed/ed.1 b/bin/ed/ed.1 index 1be5745378..4dbe271b78 100644 --- a/bin/ed/ed.1 +++ b/bin/ed/ed.1 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/bin/ed/ed.1,v 1.17.2.13 2003/05/16 22:45:18 keramida Exp $ -.\" $DragonFly: src/bin/ed/ed.1,v 1.2 2003/06/17 04:22:49 dillon Exp $ +.\" $DragonFly: src/bin/ed/ed.1,v 1.3 2006/02/17 19:33:30 swildner Exp $ .Dd May 21, 1993 .Dt ED 1 .Os @@ -922,39 +922,6 @@ the file to which .Nm attempts to write the buffer if the terminal hangs up .El -.Sh SEE ALSO -.Xr bdes 1 , -.Xr sed 1 , -.Xr sh 1 , -.Xr vi 1 , -.Xr regex 3 -.Pp -USD:12-13 -.Rs -.%A B. W. Kernighan -.%A P. J. Plauger -.%B Software Tools in Pascal -.%O Addison-Wesley -.%D 1981 -.Re -.Sh LIMITATIONS -The -.Nm -utility processes -.Ar file -arguments for backslash escapes, i.e., in a filename, -any characters preceded by a backslash (\\) are -interpreted literally. -.Pp -If a text (non-binary) file is not terminated by a newline character, -then -.Nm -appends one on reading/writing it. -In the case of a binary file, -.Nm -does not append a newline on reading/writing. -.Pp -per line overhead: 4 ints .Sh DIAGNOSTICS When an error occurs, .Nm @@ -995,6 +962,39 @@ or edit another file before writing a modified buffer results in an error. If the command is entered a second time, it succeeds, but any changes to the buffer are lost. +.Sh SEE ALSO +.Xr bdes 1 , +.Xr sed 1 , +.Xr sh 1 , +.Xr vi 1 , +.Xr regex 3 +.Pp +USD:12-13 +.Rs +.%A B. W. Kernighan +.%A P. J. Plauger +.%B Software Tools in Pascal +.%O Addison-Wesley +.%D 1981 +.Re +.Sh LIMITATIONS +The +.Nm +utility processes +.Ar file +arguments for backslash escapes, i.e., in a filename, +any characters preceded by a backslash (\\) are +interpreted literally. +.Pp +If a text (non-binary) file is not terminated by a newline character, +then +.Nm +appends one on reading/writing it. +In the case of a binary file, +.Nm +does not append a newline on reading/writing. +.Pp +per line overhead: 4 ints .Sh HISTORY An .Nm diff --git a/bin/ln/ln.1 b/bin/ln/ln.1 index 060b26b2b4..549447fff2 100644 --- a/bin/ln/ln.1 +++ b/bin/ln/ln.1 @@ -34,7 +34,7 @@ .\" .\" @(#)ln.1 8.2 (Berkeley) 12/30/93 .\" $FreeBSD: src/bin/ln/ln.1,v 1.11.2.8 2003/02/04 07:31:59 keramida Exp $ -.\" $DragonFly: src/bin/ln/ln.1,v 1.5 2005/12/10 00:22:28 swildner Exp $ +.\" $DragonFly: src/bin/ln/ln.1,v 1.6 2006/02/17 19:33:30 swildner Exp $ .\" .Dd December 30, 1993 .Dt LN 1 @@ -211,14 +211,6 @@ echo 'Goodbye' > ayyb varsym fubar=xx; cat test varsym fubar=yy; cat test .Ed -.Sh SEE ALSO -.Xr link 2 , -.Xr lstat 2 , -.Xr readlink 2 , -.Xr stat 2 , -.Xr symlink 2 , -.Xr symlink 7 , -.Xr varsym 1 .Sh COMPATIBILITY The .Fl h , @@ -233,6 +225,14 @@ implementations. .Pp Variant symlinks are unique (among BSDs) to .Dx . +.Sh SEE ALSO +.Xr link 2 , +.Xr lstat 2 , +.Xr readlink 2 , +.Xr stat 2 , +.Xr symlink 2 , +.Xr symlink 7 , +.Xr varsym 1 .Sh STANDARDS The .Nm diff --git a/bin/mkdir/mkdir.1 b/bin/mkdir/mkdir.1 index 01406814f3..e28c638daa 100644 --- a/bin/mkdir/mkdir.1 +++ b/bin/mkdir/mkdir.1 @@ -34,7 +34,7 @@ .\" .\" @(#)mkdir.1 8.2 (Berkeley) 1/25/94 .\" $FreeBSD: src/bin/mkdir/mkdir.1,v 1.12.2.5 2002/07/14 21:42:14 keramida Exp $ -.\" $DragonFly: src/bin/mkdir/mkdir.1,v 1.2 2003/06/17 04:22:50 dillon Exp $ +.\" $DragonFly: src/bin/mkdir/mkdir.1,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd January 25, 1994 .Dt MKDIR 1 @@ -90,12 +90,12 @@ Be verbose when creating directories, listing them as they are created. The user must have write permission in the parent directory. .Sh DIAGNOSTICS .Ex -std -.Sh SEE ALSO -.Xr rmdir 1 .Sh COMPATIBILITY The .Fl v option is non-standard and its use in scripts is not recommended. +.Sh SEE ALSO +.Xr rmdir 1 .Sh STANDARDS The .Nm diff --git a/bin/mv/mv.1 b/bin/mv/mv.1 index 632035a011..5b8a913426 100644 --- a/bin/mv/mv.1 +++ b/bin/mv/mv.1 @@ -34,7 +34,7 @@ .\" .\" @(#)mv.1 8.1 (Berkeley) 5/31/93 .\" $FreeBSD: src/bin/mv/mv.1,v 1.15.2.5 2003/01/24 02:29:13 keramida Exp $ -.\" $DragonFly: src/bin/mv/mv.1,v 1.2 2003/06/17 04:22:50 dillon Exp $ +.\" $DragonFly: src/bin/mv/mv.1,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd July 9, 2002 .Dt MV 1 @@ -144,16 +144,16 @@ rm -rf source_file .Ed .Sh DIAGNOSTICS .Ex -std -.Sh SEE ALSO -.Xr cp 1 , -.Xr rm 1 , -.Xr symlink 7 .Sh COMPATIBILITY The .Fl n and .Fl v options are non-standard and their use in scripts is not recommended. +.Sh SEE ALSO +.Xr cp 1 , +.Xr rm 1 , +.Xr symlink 7 .Sh STANDARDS The .Nm diff --git a/bin/pax/pax.1 b/bin/pax/pax.1 index 047866b682..eac652f824 100644 --- a/bin/pax/pax.1 +++ b/bin/pax/pax.1 @@ -35,7 +35,7 @@ .\" .\" @(#)pax.1 8.4 (Berkeley) 4/18/94 .\" $FreeBSD: src/bin/pax/pax.1,v 1.12.2.10 2003/02/23 17:46:34 keramida Exp $ -.\" $DragonFly: src/bin/pax/pax.1,v 1.2 2003/06/17 04:22:50 dillon Exp $ +.\" $DragonFly: src/bin/pax/pax.1,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd April 18, 1994 .Dt PAX 1 @@ -1103,48 +1103,6 @@ will update (and list) only those files in the destination directory which are older (less recent inode change or file modification times) than files with the same name found in the source file tree .Pa home . -.Sh STANDARDS -The -.Nm -utility is a superset of the -.St -p1003.2 -standard. -The options -.Fl z , -.Fl B , -.Fl D , -.Fl E , -.Fl G , -.Fl H , -.Fl L , -.Fl P , -.Fl T , -.Fl U , -.Fl Y , -.Fl Z , -the archive formats -.Ar bcpio , -.Ar sv4cpio , -.Ar sv4crc , -.Ar tar , -and the flawed archive handling during -.Ar list -and -.Ar read -operations are extensions to the -.Tn POSIX -standard. -.Sh SEE ALSO -.Xr cpio 1 , -.Xr tar 1 -.Sh HISTORY -The -.Nm -utility appeared in -.Bx 4.4 . -.Sh AUTHORS -.An Keith Muller -at the University of California, San Diego .Sh DIAGNOSTICS The .Nm @@ -1191,3 +1149,45 @@ a diagnostic message is written to and when .Nm completes it will exit with a non-zero exit status. +.Sh SEE ALSO +.Xr cpio 1 , +.Xr tar 1 +.Sh STANDARDS +The +.Nm +utility is a superset of the +.St -p1003.2 +standard. +The options +.Fl z , +.Fl B , +.Fl D , +.Fl E , +.Fl G , +.Fl H , +.Fl L , +.Fl P , +.Fl T , +.Fl U , +.Fl Y , +.Fl Z , +the archive formats +.Ar bcpio , +.Ar sv4cpio , +.Ar sv4crc , +.Ar tar , +and the flawed archive handling during +.Ar list +and +.Ar read +operations are extensions to the +.Tn POSIX +standard. +.Sh HISTORY +The +.Nm +utility appeared in +.Bx 4.4 . +.Sh AUTHORS +.An Keith Muller +at the University of California, San Diego diff --git a/bin/pwd/pwd.1 b/bin/pwd/pwd.1 index 922ae32c6e..5c6d1b22bf 100644 --- a/bin/pwd/pwd.1 +++ b/bin/pwd/pwd.1 @@ -34,7 +34,7 @@ .\" .\" @(#)pwd.1 8.2 (Berkeley) 4/28/95 .\" $FreeBSD: src/bin/pwd/pwd.1,v 1.10.2.5 2002/06/17 11:04:22 tjr Exp $ -.\" $DragonFly: src/bin/pwd/pwd.1,v 1.2 2003/06/17 04:22:50 dillon Exp $ +.\" $DragonFly: src/bin/pwd/pwd.1,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd February 4, 2002 .Dt PWD 1 @@ -78,17 +78,17 @@ Logical current working directory. .El .Sh DIAGNOSTICS .Ex -std -.Sh STANDARDS -The -.Nm -utility conforms to -.St -p1003.1-2001 . .Sh SEE ALSO .Xr builtin 1 , .Xr cd 1 , .Xr csh 1 , .Xr sh 1 , .Xr getcwd 3 +.Sh STANDARDS +The +.Nm +utility conforms to +.St -p1003.1-2001 . .Sh BUGS In .Xr csh 1 diff --git a/bin/rm/rm.1 b/bin/rm/rm.1 index 55c1d06568..449bf7893b 100644 --- a/bin/rm/rm.1 +++ b/bin/rm/rm.1 @@ -34,7 +34,7 @@ .\" .\" @(#)rm.1 8.5 (Berkeley) 12/5/94 .\" $FreeBSD: src/bin/rm/rm.1,v 1.19.2.6 2003/02/04 22:10:42 trhodes Exp $ -.\" $DragonFly: src/bin/rm/rm.1,v 1.6 2005/06/03 16:00:23 dillon Exp $ +.\" $DragonFly: src/bin/rm/rm.1,v 1.7 2006/02/17 19:33:31 swildner Exp $ .\" .Dd January 28, 1999 .Dt RM 1 @@ -166,22 +166,6 @@ The same behavior can be obtained by using an absolute or relative path reference. For example: .Dl rm /home/user/-filename .Dl rm ./-filename -.Sh SEE ALSO -.Xr chflags 1 , -.Xr rmdir 1 , -.Xr undelete 2 , -.Xr unlink 2 , -.Xr fts 3 , -.Xr getopt 3 , -.Xr symlink 7 -.Sh BUGS -The -.Fl P -option assumes that the underlying file system is a fixed-block file -system. -UFS is a fixed-block file system, LFS is not. -In addition, only regular files are overwritten, other types of files -are not. .Sh COMPATIBILITY The .Nm @@ -197,6 +181,14 @@ Also, historical .Bx implementations prompted on the standard output, not the standard error output. +.Sh SEE ALSO +.Xr chflags 1 , +.Xr rmdir 1 , +.Xr undelete 2 , +.Xr unlink 2 , +.Xr fts 3 , +.Xr getopt 3 , +.Xr symlink 7 .Sh STANDARDS The .Nm @@ -212,3 +204,11 @@ A .Nm command appeared in .At v1 . +.Sh BUGS +The +.Fl P +option assumes that the underlying file system is a fixed-block file +system. +UFS is a fixed-block file system, LFS is not. +In addition, only regular files are overwritten, other types of files +are not. diff --git a/games/dm/dm.8 b/games/dm/dm.8 index 81b50ffa38..2526d9a0fa 100644 --- a/games/dm/dm.8 +++ b/games/dm/dm.8 @@ -31,7 +31,7 @@ .\" .\" @(#)dm.8 8.1 (Berkeley) 5/31/93 .\" $FreeBSD: src/games/dm/dm.8,v 1.3.2.1 2000/12/08 13:40:03 ru Exp $ -.\" $DragonFly: src/games/dm/dm.8,v 1.2 2003/06/17 04:25:23 dillon Exp $ +.\" $DragonFly: src/games/dm/dm.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd May 31, 1993 .Dt DM 8 @@ -86,6 +86,11 @@ game logging file .El .Sh SEE ALSO .Xr dm.conf 5 +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.3 tahoe . .Sh BUGS Two problems result from .Nm @@ -104,8 +109,3 @@ so that compromising a game will result only in the user's ability to play games at will. Secondly, games which previously had no reason to run setuid and which accessed user files may have to be modified. -.Sh HISTORY -The -.Nm -command appeared in -.Bx 4.3 tahoe . diff --git a/games/fortune/strfile/strfile.8 b/games/fortune/strfile/strfile.8 index 88808c8285..9c493627e5 100644 --- a/games/fortune/strfile/strfile.8 +++ b/games/fortune/strfile/strfile.8 @@ -35,7 +35,7 @@ .\" .\" @(#)strfile.8 8.1 (Berkeley) 6/9/93 .\" $FreeBSD: src/games/fortune/strfile/strfile.8,v 1.5.2.3 2001/08/16 10:08:23 ru Exp $ -.\" $DragonFly: src/games/fortune/strfile/strfile.8,v 1.2 2003/06/17 04:25:24 dillon Exp $ +.\" $DragonFly: src/games/fortune/strfile/strfile.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd June 9, 1993 .Dt STRFILE 8 @@ -143,14 +143,14 @@ when is run and then using .Nm unstr to dump them out in the table order. -.Sh SEE ALSO -.Xr byteorder 3 , -.Xr fortune 6 .Sh FILES .Bl -tag -width strfile.dat -compact .It Pa strfile.dat default output file. .El +.Sh SEE ALSO +.Xr byteorder 3 , +.Xr fortune 6 .Sh HISTORY The .Nm diff --git a/games/larn/larn.6 b/games/larn/larn.6 index e2786edfce..47ae23f21f 100644 --- a/games/larn/larn.6 +++ b/games/larn/larn.6 @@ -31,7 +31,7 @@ .\" .\" @(#)larn.6 5.5 (Berkeley) 12/30/93 .\" $FreeBSD: src/games/larn/larn.6,v 1.6.2.3 2001/07/22 11:01:22 dd Exp $ -.\" $DragonFly: src/games/larn/larn.6,v 1.2 2003/06/17 04:25:24 dillon Exp $ +.\" $DragonFly: src/games/larn/larn.6,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd December 30, 1993 .Dt LARN 6 @@ -147,8 +147,6 @@ When casting a spell, if you need a list of spells you can cast, type \fBD\fP as the first letter of your spell. The available list of spells will be shown, after which you may enter the spell code. This only works on the 1st letter of the spell you are casting. -.Sh AUTHORS -.An Noah Morgan .Sh FILES .Bl -tag -width "/var/games/larn/lscore12.0" -compact .It Pa /var/games/larn/lscore12.0 @@ -158,3 +156,5 @@ Log file. .It Pa ~/.larnopts Options file. .El +.Sh AUTHORS +.An Noah Morgan diff --git a/games/morse/morse.6 b/games/morse/morse.6 index c22dd1fb38..ed4e1951e8 100644 --- a/games/morse/morse.6 +++ b/games/morse/morse.6 @@ -32,7 +32,7 @@ .\" .\" @(#)bcd.6 8.1 (Berkeley) 5/31/93 .\" $FreeBSD: src/games/morse/morse.6,v 1.4.2.7 2003/01/26 02:57:27 keramida Exp $ -.\" $DragonFly: src/games/morse/morse.6,v 1.2 2003/06/17 04:25:24 dillon Exp $ +.\" $DragonFly: src/games/morse/morse.6,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd December 7, 2000 .Dt MORSE 6 @@ -133,11 +133,6 @@ by grounding the key input line). A capacitor (some nanofarads) between base and ground is advisable to keep stray RF away, and to suppress the minor glitch that is generated during program startup. -.Sh FILES -.Bl -tag -width /dev/speaker -compact -.It Pa /dev/speaker -speaker device file -.El .Sh ENVIRONMENT If your .Ev LC_CTYPE @@ -153,6 +148,11 @@ they are interpreted as belonging to the .Ql ISO-8859-1 character set. +.Sh FILES +.Bl -tag -width /dev/speaker -compact +.It Pa /dev/speaker +speaker device file +.El .Sh SEE ALSO .Xr speaker 4 .Sh HISTORY diff --git a/games/rogue/rogue.6 b/games/rogue/rogue.6 index 21c8399841..ee8c7ff72e 100644 --- a/games/rogue/rogue.6 +++ b/games/rogue/rogue.6 @@ -31,7 +31,7 @@ .\" .\" @(#)rogue.6 8.1 (Berkeley) 5/31/93 .\" $FreeBSD: src/games/rogue/rogue.6,v 1.4.2.3 2001/12/14 14:26:32 ru Exp $ -.\" $DragonFly: src/games/rogue/rogue.6,v 1.2 2003/06/17 04:25:25 dillon Exp $ +.\" $DragonFly: src/games/rogue/rogue.6,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd December 7, 2000 .Dt ROGUE 6 @@ -89,11 +89,6 @@ For more detailed directions, read the document .Rs .%B A Guide to the Dungeons of Doom .Re -.Sh AUTHORS -.An Timothy Stoehr , -.An Michael C. Toy , -.An Kenneth C. R. C. Arnold , -.An Glenn Wichman .Sh FILES .Bl -tag -width /var/games/rogue.scoresXX -compact .It Pa /var/games/rogue.scores @@ -108,6 +103,11 @@ default save file .%B A Guide to the Dungeons of Doom .%O (see /usr/share/doc/usd/30.rogue/) .Re +.Sh AUTHORS +.An Timothy Stoehr , +.An Michael C. Toy , +.An Kenneth C. R. C. Arnold , +.An Glenn Wichman .Sh BUGS Probably infinite, although none are known. However, that Ice Monsters sometimes transfix you permanently is diff --git a/libexec/bootpd/bootpd.8 b/libexec/bootpd/bootpd.8 index e60dde19c8..298882ff1e 100644 --- a/libexec/bootpd/bootpd.8 +++ b/libexec/bootpd/bootpd.8 @@ -1,7 +1,7 @@ .\" Copyright (c) 1988, 1989, 1991 Carnegie Mellon University .\" .\" $FreeBSD: src/libexec/bootpd/bootpd.8,v 1.10.2.5 2001/07/22 12:07:21 dd Exp $ -.\" $DragonFly: src/libexec/bootpd/bootpd.8,v 1.3 2005/08/05 22:35:10 swildner Exp $ +.\" $DragonFly: src/libexec/bootpd/bootpd.8,v 1.4 2006/02/17 19:33:31 swildner Exp $ .\" .Dd November 6, 1993 .Dt BOOTPD 8 @@ -246,6 +246,20 @@ Internet service numbers. Current directory typically used by the TFTP server and .Nm . .El +.Sh "SEE ALSO" +.Xr bootptab 5 , +.Xr inetd 8 , +.Xr tftpd 8 +.Pp +DARPA Internet Request For Comments: +.Bl -tag -width RFC1533 -compact +.It RFC951 +Bootstrap Protocol +.It RFC1532 +Clarifications and Extensions for the Bootstrap Protocol +.It RFC1533 +DHCP Options and BOOTP Vendor Extensions +.El .Sh BUGS Individual host entries must not exceed 1024 characters. .Sh CREDITS @@ -277,17 +291,3 @@ Enhancements and bug-fixes have been contributed by: .An Jim McKim Aq mckim@lerc.nasa.gov .An Gordon W. Ross Aq gwr@mc.com .An Jason Zions Aq jazz@hal.com . -.Sh "SEE ALSO" -.Xr bootptab 5 , -.Xr inetd 8 , -.Xr tftpd 8 -.Pp -DARPA Internet Request For Comments: -.Bl -tag -width RFC1533 -compact -.It RFC951 -Bootstrap Protocol -.It RFC1532 -Clarifications and Extensions for the Bootstrap Protocol -.It RFC1533 -DHCP Options and BOOTP Vendor Extensions -.El diff --git a/libexec/bootpd/tools/bootptest/bootptest.8 b/libexec/bootpd/tools/bootptest/bootptest.8 index 45cb33692b..1dddb1ab73 100644 --- a/libexec/bootpd/tools/bootptest/bootptest.8 +++ b/libexec/bootpd/tools/bootptest/bootptest.8 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/libexec/bootpd/tools/bootptest/bootptest.8,v 1.2.2.1 2001/01/16 13:14:38 ru Exp $ -.\" $DragonFly: src/libexec/bootpd/tools/bootptest/bootptest.8,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/bootpd/tools/bootptest/bootptest.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .\" bootptest.8 .Dd June 10, 1993 @@ -45,6 +45,16 @@ may be specified, in which case uses the (binary) contents of this file to initialize the .Em options area of the request packet. +.Sh SEE ALSO +.Xr bootpd 8 +.Rs +.%O RFC951 +.%T "BOOTSTRAP PROTOCOL (BOOTP)" +.Re +.Rs +.%O RFC1048 +.%T "BOOTP Vendor Information Extensions" +.Re .Sh AUTHORS The .Nm @@ -65,13 +75,3 @@ This program includes software developed by the University of California, Lawrence Berkeley Laboratory and its contributors. (See the copyright notice in .Pa print\-bootp.c . ) -.Sh SEE ALSO -.Xr bootpd 8 -.Rs -.%O RFC951 -.%T "BOOTSTRAP PROTOCOL (BOOTP)" -.Re -.Rs -.%O RFC1048 -.%T "BOOTP Vendor Information Extensions" -.Re diff --git a/libexec/comsat/comsat.8 b/libexec/comsat/comsat.8 index 0e561f900f..261b4a0718 100644 --- a/libexec/comsat/comsat.8 +++ b/libexec/comsat/comsat.8 @@ -31,7 +31,7 @@ .\" .\" @(#)comsat.8 8.1 (Berkeley) 6/4/93 .\" $FreeBSD: src/libexec/comsat/comsat.8,v 1.6.2.4 2002/08/18 17:30:53 johan Exp $ -.\" $DragonFly: src/libexec/comsat/comsat.8,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/comsat/comsat.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd August 9, 2002 .Dt COMSAT 8 @@ -93,6 +93,11 @@ standard mailbox .Sh SEE ALSO .Xr biff 1 , .Xr inetd 8 +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.2 . .Sh BUGS The message header filtering is prone to error. The density of the information presented is near the theoretical minimum. @@ -102,8 +107,3 @@ machines than the one to which they are currently logged in. .Pp The notification should appear in a separate window so it does not mess up the screen. -.Sh HISTORY -The -.Nm -command appeared in -.Bx 4.2 . diff --git a/libexec/fingerd/fingerd.8 b/libexec/fingerd/fingerd.8 index bf82c226ed..ed47f6bcce 100644 --- a/libexec/fingerd/fingerd.8 +++ b/libexec/fingerd/fingerd.8 @@ -31,7 +31,7 @@ .\" .\" @(#)fingerd.8 8.1 (Berkeley) 6/4/93 .\" $FreeBSD: src/libexec/fingerd/fingerd.8,v 1.4.2.3 2001/08/16 10:44:15 ru Exp $ -.\" $DragonFly: src/libexec/fingerd/fingerd.8,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/fingerd/fingerd.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd June 4, 1993 .Dt FINGERD 8 @@ -122,6 +122,11 @@ provided to remote sites. .Sh SEE ALSO .Xr finger 1 , .Xr inetd 8 +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.3 . .Sh BUGS Connecting directly to the server from a .Tn TIP @@ -137,8 +142,3 @@ and perhaps even respond negatively .Pq Tn IAC WON'T to all option commands received. -.Sh HISTORY -The -.Nm -command appeared in -.Bx 4.3 . diff --git a/libexec/ftpd/ftpd.8 b/libexec/ftpd/ftpd.8 index c888ad6830..2b0f899eaa 100644 --- a/libexec/ftpd/ftpd.8 +++ b/libexec/ftpd/ftpd.8 @@ -31,7 +31,7 @@ .\" .\" @(#)ftpd.8 8.2 (Berkeley) 4/19/94 .\" $FreeBSD: src/libexec/ftpd/ftpd.8,v 1.31.2.18 2003/02/11 14:28:28 yar Exp $ -.\" $DragonFly: src/libexec/ftpd/ftpd.8,v 1.3 2005/10/28 18:06:57 joerg Exp $ +.\" $DragonFly: src/libexec/ftpd/ftpd.8,v 1.4 2006/02/17 19:33:31 swildner Exp $ .\" .Dd January 27, 2000 .Dt FTPD 8 @@ -545,6 +545,12 @@ Log file for anonymous transfers. .Xr login.conf 5 , .Xr inetd 8 , .Xr syslogd 8 +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.2 . +IPv6 support was added in WIDE Hydrangea IPv6 stack kit. .Sh BUGS The server must run as the super-user to create sockets with privileged port numbers. It maintains @@ -552,9 +558,3 @@ an effective user id of the logged in user, reverting to the super-user only when binding addresses to sockets. The possible security holes have been extensively scrutinized, but are possibly incomplete. -.Sh HISTORY -The -.Nm -command appeared in -.Bx 4.2 . -IPv6 support was added in WIDE Hydrangea IPv6 stack kit. diff --git a/libexec/getty/getty.8 b/libexec/getty/getty.8 index a52ca1ce3e..6377f790d9 100644 --- a/libexec/getty/getty.8 +++ b/libexec/getty/getty.8 @@ -31,7 +31,7 @@ .\" .\" from: @(#)getty.8 8.1 (Berkeley) 6/4/93 .\" $FreeBSD: src/libexec/getty/getty.8,v 1.10.2.3 2001/08/16 10:44:15 ru Exp $ -.\" $DragonFly: src/libexec/getty/getty.8,v 1.3 2004/12/26 12:37:08 swildner Exp $ +.\" $DragonFly: src/libexec/getty/getty.8,v 1.4 2006/02/17 19:33:31 swildner Exp $ .\" " .Dd June 4, 1993 .Dt GETTY 8 @@ -97,6 +97,11 @@ program can be set to timeout after some interval, which will cause dial up lines to hang up if the login name is not entered reasonably quickly. +.Sh FILES +.Bl -tag -width /etc/gettytab -compact +.It Pa /etc/gettytab +.It Pa /etc/ttys +.El .Sh DIAGNOSTICS .Bl -diag .It "ttyxx: No such device or address." @@ -112,11 +117,6 @@ or the special file in .Pa /dev does not exist. .El -.Sh FILES -.Bl -tag -width /etc/gettytab -compact -.It Pa /etc/gettytab -.It Pa /etc/ttys -.El .Sh SEE ALSO .Xr login 1 , .Xr ioctl 2 , diff --git a/libexec/getty/gettytab.5 b/libexec/getty/gettytab.5 index 5512eb742d..3578f5d3b6 100644 --- a/libexec/getty/gettytab.5 +++ b/libexec/getty/gettytab.5 @@ -31,7 +31,7 @@ .\" .\" from: @(#)gettytab.5 8.4 (Berkeley) 4/19/94 .\" $FreeBSD: src/libexec/getty/gettytab.5,v 1.21.2.10 2003/02/06 11:45:31 sobomax Exp $ -.\" $DragonFly: src/libexec/getty/gettytab.5,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/getty/gettytab.5,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" " .Dd April 19, 1994 .Dt GETTYTAB 5 @@ -494,6 +494,11 @@ which all of the connection data has been sent by the modem. .Xr termcap 5 , .Xr getty 8 , .Xr telnetd 8 +.Sh HISTORY +The +.Nm +file format appeared in +.Bx 4.2 . .Sh BUGS The special characters (erase, kill, etc.) are reset to system defaults by @@ -516,8 +521,3 @@ The .Xr termcap 5 format is horrid, something more rational should have been chosen. -.Sh HISTORY -The -.Nm -file format appeared in -.Bx 4.2 . diff --git a/libexec/getty/ttys.5 b/libexec/getty/ttys.5 index 229c31dcc3..e6d5883165 100644 --- a/libexec/getty/ttys.5 +++ b/libexec/getty/ttys.5 @@ -31,7 +31,7 @@ .\" .\" from: @(#)ttys.5 8.1 (Berkeley) 6/4/93 .\" $FreeBSD: src/libexec/getty/ttys.5,v 1.11.2.3 2001/08/16 10:44:15 ru Exp $ -.\" $DragonFly: src/libexec/getty/ttys.5,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/getty/ttys.5,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" " .Dd November 17, 1996 .Dt TTYS 5 @@ -136,6 +136,10 @@ Words are separated by any combinations of tabs and spaces. Arguments containing whitespace should be enclosed in single quotes .Pq Li ' . Note that no shell-style globbing or other variable substitution occurs. +.Sh FILES +.Bl -tag -width /etc/ttys -compact +.It Pa /etc/ttys +.El .Sh EXAMPLES .Bd -literal # root login on console at 1200 baud @@ -152,10 +156,6 @@ ttyv0 "/usr/new/xterm -L :0" vs100 on window="/usr/new/Xvs100 0" ttyp0 none network group=pty ttyp1 none network off group=pty .Ed -.Sh FILES -.Bl -tag -width /etc/ttys -compact -.It Pa /etc/ttys -.El .Sh SEE ALSO .Xr login 1 , .Xr getttyent 3 , diff --git a/libexec/mknetid/netid.5 b/libexec/mknetid/netid.5 index 9e3090a5af..4d231a54e0 100644 --- a/libexec/mknetid/netid.5 +++ b/libexec/mknetid/netid.5 @@ -28,7 +28,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/libexec/mknetid/netid.5,v 1.1.2.2 2002/02/01 15:51:17 ru Exp $ -.\" $DragonFly: src/libexec/mknetid/netid.5,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/mknetid/netid.5,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd January 13, 1996 .Dt NETID 5 @@ -73,18 +73,18 @@ The second type contains information about hosts: The third type refers to records from a .Xr netid 5 file other than the two types above. -.Sh EXAMPLES -A configuration file might look like the following: -.Bd -literal -unix.10714@kaka 10714:400,10 -unix.jodie@kaka 0:jodie -.Ed .Sh FILES .Bl -tag -width ".Pa /etc/netid" -compact .It Pa /etc/netid for lines not generated automatically by .Xr mknetid 8 .El +.Sh EXAMPLES +A configuration file might look like the following: +.Bd -literal +unix.10714@kaka 10714:400,10 +unix.jodie@kaka 0:jodie +.Ed .Sh SEE ALSO .Xr mknetid 8 , .Xr yp 8 diff --git a/libexec/pppoed/pppoed.8 b/libexec/pppoed/pppoed.8 index 24ad896a0f..5d8a7e4e6b 100644 --- a/libexec/pppoed/pppoed.8 +++ b/libexec/pppoed/pppoed.8 @@ -24,7 +24,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/libexec/pppoed/pppoed.8,v 1.2.6.11 2002/03/26 11:40:37 brian Exp $ -.\" $DragonFly: src/libexec/pppoed/pppoed.8,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/pppoed/pppoed.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd November 8, 1999 .Dt PPPOED 8 @@ -201,6 +201,13 @@ and the following to .Xr syslog.conf 5 , .Xr ppp 8 , .Xr syslogd 8 +.Sh HISTORY +The +.Nm +program was written by +.An Brian Somers Aq brian@Awfulhak.org +and first appeared in +.Fx 3.4 . .Sh BUGS If another netgraph node is using the given interface, .Nm @@ -209,10 +216,3 @@ This is because .Xr netgraph 4 does not currently allow node chaining. This may change in the future. -.Sh HISTORY -The -.Nm -program was written by -.An Brian Somers Aq brian@Awfulhak.org -and first appeared in -.Fx 3.4 . diff --git a/libexec/rexecd/rexecd.8 b/libexec/rexecd/rexecd.8 index 3e80471d88..a46c9d3fd9 100644 --- a/libexec/rexecd/rexecd.8 +++ b/libexec/rexecd/rexecd.8 @@ -31,7 +31,7 @@ .\" .\" @(#)rexecd.8 8.2 (Berkeley) 12/11/93 .\" $FreeBSD: src/libexec/rexecd/rexecd.8,v 1.9.2.4 2001/08/16 10:44:16 ru Exp $ -.\" $DragonFly: src/libexec/rexecd/rexecd.8,v 1.2 2003/06/17 04:27:07 dillon Exp $ +.\" $DragonFly: src/libexec/rexecd/rexecd.8,v 1.3 2006/02/17 19:33:31 swildner Exp $ .\" .Dd September 23, 1994 .Dt REXECD 8 @@ -151,11 +151,11 @@ and is not preceded by a flag byte. .El .Sh SEE ALSO .Xr rexec 3 -.Sh BUGS -A facility to allow all data and password exchanges to be encrypted should be -present. .Sh HISTORY The .Nm command appeared in .Bx 4.2 . +.Sh BUGS +A facility to allow all data and password exchanges to be encrypted should be +present. diff --git a/libexec/rlogind/rlogind.8 b/libexec/rlogind/rlogind.8 index a06bd6e42c..1936f9800b 100644 --- a/libexec/rlogind/rlogind.8 +++ b/libexec/rlogind/rlogind.8 @@ -31,7 +31,7 @@ .\" .\" @(#)rlogind.8 8.1 (Berkeley) 6/4/93 .\" $FreeBSD: src/libexec/rlogind/rlogind.8,v 1.13.2.4 2001/08/16 10:44:17 ru Exp $ -.\" $DragonFly: src/libexec/rlogind/rlogind.8,v 1.3 2004/07/08 01:21:11 hmp Exp $ +.\" $DragonFly: src/libexec/rlogind/rlogind.8,v 1.4 2006/02/17 19:33:31 swildner Exp $ .\" .Dd June 4, 1993 .Dt RLOGIND 8 @@ -158,6 +158,13 @@ Transport-level keepalive messages are enabled unless the option is present. The use of keepalive messages allows sessions to be timed out if the client crashes or becomes unreachable. +.Sh FILES +.Bl -tag -width /etc/hostsxxxxxxxx -compact +.It Pa /etc/hosts +.It Pa /etc/hosts.equiv +.It Ev $HOME Ns Pa /.rhosts +.It Pa /var/run/nologin +.El .Sh DIAGNOSTICS All initial diagnostic messages are indicated by a leading byte with a value of 1, @@ -180,13 +187,13 @@ by the server failed. .Xr nologin 5 , .Xr services 5 , .Xr rshd 8 -.Sh FILES -.Bl -tag -width /etc/hostsxxxxxxxx -compact -.It Pa /etc/hosts -.It Pa /etc/hosts.equiv -.It Ev $HOME Ns Pa /.rhosts -.It Pa /var/run/nologin -.El +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.2 . +.Pp +IPv6 support was added by WIDE/KAME project. .Sh BUGS The authentication procedure used here assumes the integrity of each client machine and the connecting medium. This is @@ -198,10 +205,3 @@ A facility to allow all data exchanges to be encrypted should be present. .Pp A more extensible protocol should be used. -.Sh HISTORY -The -.Nm -command appeared in -.Bx 4.2 . -.Pp -IPv6 support was added by WIDE/KAME project. diff --git a/libexec/rpc.rquotad/rpc.rquotad.8 b/libexec/rpc.rquotad/rpc.rquotad.8 index 585650183e..de3508cff6 100644 --- a/libexec/rpc.rquotad/rpc.rquotad.8 +++ b/libexec/rpc.rquotad/rpc.rquotad.8 @@ -28,7 +28,7 @@ .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" .\" $FreeBSD: src/libexec/rpc.rquotad/rpc.rquotad.8,v 1.7.2.2 2001/08/16 10:44:17 ru Exp $ -.\" $DragonFly: src/libexec/rpc.rquotad/rpc.rquotad.8,v 1.3 2004/03/11 12:28:53 hmp Exp $ +.\" $DragonFly: src/libexec/rpc.rquotad/rpc.rquotad.8,v 1.4 2006/02/17 19:33:31 swildner Exp $ .\" .Dd June 22, 1994 .Dt RPC.RQUOTAD 8 @@ -55,11 +55,11 @@ uses an .Tn RPC protocol defined in .Pa /usr/include/rpcsvc/rquota.x . +.Sh SEE ALSO +.Xr quota 1 .Sh BUGS .Bx 4.4 Ns , .Dx Ns , and .Fx support group quotas but the rquota protocol does not. -.Sh SEE ALSO -.Xr quota 1 diff --git a/libexec/rshd/rshd.8 b/libexec/rshd/rshd.8 index b15f46e486..09c10ea558 100644 --- a/libexec/rshd/rshd.8 +++ b/libexec/rshd/rshd.8 @@ -31,7 +31,7 @@ .\" .\" @(#)rshd.8 8.1 (Berkeley) 6/4/93 .\" $FreeBSD: src/libexec/rshd/rshd.8,v 1.18.2.5 2001/08/16 10:44:18 ru Exp $ -.\" $DragonFly: src/libexec/rshd/rshd.8,v 1.3 2003/11/22 19:30:55 asmodai Exp $ +.\" $DragonFly: src/libexec/rshd/rshd.8,v 1.4 2006/02/17 19:33:31 swildner Exp $ .\" .Dd June 4, 1993 .Dt RSHD 8 @@ -176,6 +176,14 @@ file for authentication, unless the user is the superuser. Turn off transport level keepalive messages. This will prevent sessions from timing out if the client crashes or becomes unreachable. .El +.Sh FILES +.Bl -tag -width /var/run/nologin -compact +.It Pa /etc/hosts +.It Pa /etc/hosts.equiv +.It Pa /etc/login.conf +.It Ev $HOME Ns Pa /.rhosts +.It Pa /var/run/nologin +.El .Sh DIAGNOSTICS Except for the last one listed below, all diagnostic messages @@ -235,14 +243,8 @@ and is not preceded by a flag byte. .Xr named 8 , .Xr rlogind 8 , .Xr syslogd 8 -.Sh FILES -.Bl -tag -width /var/run/nologin -compact -.It Pa /etc/hosts -.It Pa /etc/hosts.equiv -.It Pa /etc/login.conf -.It Ev $HOME Ns Pa /.rhosts -.It Pa /var/run/nologin -.El +.Sh HISTORY +IPv6 support was added by WIDE/KAME project. .Sh BUGS The authentication procedure used here assumes the integrity of each client machine and the connecting medium. This is @@ -254,5 +256,3 @@ A facility to allow all data exchanges to be encrypted should be present. .Pp A more extensible protocol (such as Telnet) should be used. -.Sh HISTORY -IPv6 support was added by WIDE/KAME project. diff --git a/libexec/telnetd/telnetd.8 b/libexec/telnetd/telnetd.8 index af29a3cdf2..735e2b5bc5 100644 --- a/libexec/telnetd/telnetd.8 +++ b/libexec/telnetd/telnetd.8 @@ -31,7 +31,7 @@ .\" .\" @(#)telnetd.8 8.3 (Berkeley) 3/1/94 .\" $FreeBSD: src/libexec/telnetd/telnetd.8,v 1.16.2.7 2001/08/16 10:44:21 ru Exp $ -.\" $DragonFly: src/libexec/telnetd/telnetd.8,v 1.2 2003/06/17 04:27:08 dillon Exp $ +.\" $DragonFly: src/libexec/telnetd/telnetd.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd March 1, 1994 .Dt TELNETD 8 @@ -605,6 +605,8 @@ Telnet Environment Option Interoperability Issues .It Cm RFC-1572 Telnet Environment Option .El +.Sh HISTORY +IPv6 support was added by WIDE/KAME project. .Sh BUGS Some .Tn TELNET @@ -631,5 +633,3 @@ never sends .Tn TELNET .Dv IAC GA (go ahead) commands. -.Sh HISTORY -IPv6 support was added by WIDE/KAME project. diff --git a/libexec/xtend/xtend.8 b/libexec/xtend/xtend.8 index 28e42393d5..97b826da94 100644 --- a/libexec/xtend/xtend.8 +++ b/libexec/xtend/xtend.8 @@ -28,7 +28,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/libexec/xtend/xtend.8,v 1.11.2.4 2001/08/16 10:44:22 ru Exp $ -.\" $DragonFly: src/libexec/xtend/xtend.8,v 1.2 2003/06/17 04:27:08 dillon Exp $ +.\" $DragonFly: src/libexec/xtend/xtend.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd October 30, 1993 .Dt XTEND 8 @@ -148,9 +148,6 @@ perform X-10 transmissions. .El .Sh OPTIONS None. -.Sh SEE ALSO -.Xr xten 1 , -.Xr tw 4 .Sh FILES .Bl -tag -width /var/spool/xten/status.out -compact .It Pa /dev/tw0 @@ -167,6 +164,11 @@ device status file (binary) .Tn ASCII dump of device status .El +.Sh SEE ALSO +.Xr xten 1 , +.Xr tw 4 +.Sh AUTHORS +.An Eugene W. Stark Aq stark@cs.sunysb.edu .Sh BUGS There is currently no timeout on client socket connections, so a hung client program can prevent other clients from accessing the daemon. @@ -176,5 +178,3 @@ does the best it can at trying to track device status, but there is usually no way it can tell when a device has been operated manually. This is due to the fact that most X-10 devices are not able to respond to queries about their status. -.Sh AUTHORS -.An Eugene W. Stark Aq stark@cs.sunysb.edu diff --git a/sbin/adjkerntz/adjkerntz.8 b/sbin/adjkerntz/adjkerntz.8 index 75ded11fc1..6fe4696f55 100644 --- a/sbin/adjkerntz/adjkerntz.8 +++ b/sbin/adjkerntz/adjkerntz.8 @@ -23,7 +23,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/sbin/adjkerntz/adjkerntz.8,v 1.18.2.5 2002/08/21 18:58:00 trhodes Exp $ -.\" $DragonFly: src/sbin/adjkerntz/adjkerntz.8,v 1.3 2004/03/11 12:28:53 hmp Exp $ +.\" $DragonFly: src/sbin/adjkerntz/adjkerntz.8,v 1.4 2006/02/17 19:33:32 swildner Exp $ .\" .Dd April 4, 1996 .Dt ADJKERNTZ 8 @@ -172,6 +172,13 @@ Empty file. Its presence indicates that the machine's CMOS clock is set to local time, while its absence indicates a UTC CMOS clock. .El +.Sh DIAGNOSTICS +No diagnostics. +If an error occurs, +.Nm +logs an error message via +.Xr syslog 3 +and exits with a nonzero return code. .Sh SEE ALSO .Xr tzset 3 , .Xr crontab 5 , @@ -180,17 +187,10 @@ time, while its absence indicates a UTC CMOS clock. .Xr sysctl 8 , .Xr tzsetup 8 , .Xr zic 8 -.Sh DIAGNOSTICS -No diagnostics. -If an error occurs, -.Nm -logs an error message via -.Xr syslog 3 -and exits with a nonzero return code. -.Sh AUTHORS -.An Andrey A. Chernov Aq ache@astral.msk.su .Sh HISTORY The .Nm utility appeared in .Fx 1.0 . +.Sh AUTHORS +.An Andrey A. Chernov Aq ache@astral.msk.su diff --git a/sbin/atm/fore_dnld/fore_dnld.8 b/sbin/atm/fore_dnld/fore_dnld.8 index 32a49c9866..e90638312d 100644 --- a/sbin/atm/fore_dnld/fore_dnld.8 +++ b/sbin/atm/fore_dnld/fore_dnld.8 @@ -23,7 +23,7 @@ .\" notice must be reproduced on all copies. .\" .\" @(#) $FreeBSD: src/sbin/atm/fore_dnld/fore_dnld.8,v 1.4.2.2 2002/08/21 18:58:03 trhodes Exp $ -.\" @(#) $DragonFly: src/sbin/atm/fore_dnld/fore_dnld.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" @(#) $DragonFly: src/sbin/atm/fore_dnld/fore_dnld.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .\" .Dd December 3, 1996 @@ -93,8 +93,6 @@ adapters. .It Pa ~harp/doc/Install HARP installation instructions. .El -.Sh BUGS -None known. .Sh COPYRIGHT Copyright (c) 1994-1998, Network Computing Services, Inc. .Sh AUTHORS @@ -108,3 +106,5 @@ Minnesota Supercomputer Center, Inc. This software was developed under the sponsorship of the Defense Advanced Research Projects Agency (DARPA) under contract numbers F19628-92-C-0072 and F19628-95-C-0215. +.Sh BUGS +None known. diff --git a/sbin/atm/ilmid/ilmid.8 b/sbin/atm/ilmid/ilmid.8 index d24a4c2ec0..dea667dd89 100644 --- a/sbin/atm/ilmid/ilmid.8 +++ b/sbin/atm/ilmid/ilmid.8 @@ -23,7 +23,7 @@ .\" notice must be reproduced on all copies. .\" .\" @(#) $FreeBSD: src/sbin/atm/ilmid/ilmid.8,v 1.3.2.2 2002/08/21 18:58:05 trhodes Exp $ -.\" @(#) $DragonFly: src/sbin/atm/ilmid/ilmid.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" @(#) $DragonFly: src/sbin/atm/ilmid/ilmid.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .\" .Dd September 14, 1998 @@ -95,9 +95,6 @@ The ATM Forum, .%T "ATM User-Network Interface, Version 3.1 (UNI 3.1) Specification" for details on the ILMI protocols and address registration procedures. -.Sh BUGS -Please report any bugs to -.Aq harp\-bugs@magic.net . .Sh COPYRIGHT Copyright (c) 1994-1998, Network Computing Services, Inc. .Sh AUTHORS @@ -110,3 +107,6 @@ Network Computing Services, Inc. .Sh ACKNOWLEDGMENTS This software was developed with the support of the Defense Advanced Research Projects Agency (DARPA). +.Sh BUGS +Please report any bugs to +.Aq harp\-bugs@magic.net . diff --git a/sbin/badsect/badsect.8 b/sbin/badsect/badsect.8 index 64177cb644..bc23d9c694 100644 --- a/sbin/badsect/badsect.8 +++ b/sbin/badsect/badsect.8 @@ -31,7 +31,7 @@ .\" .\" @(#)badsect.8 8.1 (Berkeley) 6/5/93 .\" $FreeBSD: src/sbin/badsect/badsect.8,v 1.10.2.6 2002/08/21 18:58:06 trhodes Exp $ -.\" $DragonFly: src/sbin/badsect/badsect.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" $DragonFly: src/sbin/badsect/badsect.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd June 5, 1993 .Dt BADSECT 8 @@ -114,22 +114,22 @@ it will ask A positive response will cause .Xr fsck 8 to convert the inode to a regular file containing the bad block. -.Sh SEE ALSO -.Xr fsck 8 .Sh DIAGNOSTICS The .Nm utility refuses to attach a block that resides in a critical area or is out of range of the file system. A warning is issued if the block is already in use. +.Sh SEE ALSO +.Xr fsck 8 +.Sh HISTORY +The +.Nm +utility appeared in +.Bx 4.1 . .Sh BUGS If more than one sector which comprise a file system fragment are bad, you should specify only one of them to .Nm , as the blocks in the bad sector files actually cover all the sectors in a file system fragment. -.Sh HISTORY -The -.Nm -utility appeared in -.Bx 4.1 . diff --git a/sbin/ccdconfig/ccdconfig.8 b/sbin/ccdconfig/ccdconfig.8 index afba66dce5..bf37284c9a 100644 --- a/sbin/ccdconfig/ccdconfig.8 +++ b/sbin/ccdconfig/ccdconfig.8 @@ -31,7 +31,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/sbin/ccdconfig/ccdconfig.8,v 1.9.2.10 2003/01/26 03:38:39 keramida Exp $ -.\" $DragonFly: src/sbin/ccdconfig/ccdconfig.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" $DragonFly: src/sbin/ccdconfig/ccdconfig.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd July 17, 1995 .Dt CCDCONFIG 8 @@ -143,6 +143,24 @@ The component devices need to name partitions of type .Dq 4.2BSD as shown by .Xr disklabel 8 ) . +.Sh RECOVERY +An error on a ccd disk is usually unrecoverable unless you are using the +mirroring option. But mirroring has its own perils: It assumes that +both copies of the data at any given sector are the same. This holds true +until a write error occurs or until you replace either side of the mirror. +This is a poor-man's mirroring implementation. It works well enough that if +you begin to get disk errors you should be able to backup the ccd disk, +replace the broken hardware, and then regenerate the ccd disk. If you need +more than this you should look into external hardware RAID SCSI boxes, +RAID controllers such as the +.Xr dpt 4 +controller, or software RAID systems such as +.Xr vinum 8 . +.Sh FILES +.Bl -tag -width /etc/ccd.conf -compact +.It Pa /etc/ccd.conf +default ccd configuration file +.El .Sh EXAMPLES A number of .Nm @@ -191,24 +209,6 @@ Beware that changing any ccd parameters: interleave, flags, or the device list making up the ccd disk, will usually destroy any prior data on that ccd disk. If this occurs it is usually a good idea to reinitialize the label before [re]constructing your ccd disk. -.Sh RECOVERY -An error on a ccd disk is usually unrecoverable unless you are using the -mirroring option. But mirroring has its own perils: It assumes that -both copies of the data at any given sector are the same. This holds true -until a write error occurs or until you replace either side of the mirror. -This is a poor-man's mirroring implementation. It works well enough that if -you begin to get disk errors you should be able to backup the ccd disk, -replace the broken hardware, and then regenerate the ccd disk. If you need -more than this you should look into external hardware RAID SCSI boxes, -RAID controllers such as the -.Xr dpt 4 -controller, or software RAID systems such as -.Xr vinum 8 . -.Sh FILES -.Bl -tag -width /etc/ccd.conf -compact -.It Pa /etc/ccd.conf -default ccd configuration file -.El .Sh SEE ALSO .Xr dd 1 , .Xr ccd 4 , diff --git a/sbin/comcontrol/comcontrol.8 b/sbin/comcontrol/comcontrol.8 index 4037a20220..d85ebe3645 100644 --- a/sbin/comcontrol/comcontrol.8 +++ b/sbin/comcontrol/comcontrol.8 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/sbin/comcontrol/comcontrol.8,v 1.15.2.7 2002/08/21 18:58:13 trhodes Exp $ -.\" $DragonFly: src/sbin/comcontrol/comcontrol.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" $DragonFly: src/sbin/comcontrol/comcontrol.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .Dd May 15, 1994 .Dt COMCONTROL 8 .Os @@ -46,9 +46,6 @@ The standard way to use is to put invocations of it in the .Pa /etc/rc.serial startup script. -.Sh SEE ALSO -.Xr stty 1 , -.Xr sio 4 .Sh FILES .Bl -tag -width /dev/ttyd? -compact .It Pa /dev/ttyd? @@ -56,10 +53,13 @@ dialin devices, hardwired terminals .It Pa /dev/cuaa? dialout devices .El -.Sh AUTHORS -.An Christopher G. Demetriou +.Sh SEE ALSO +.Xr stty 1 , +.Xr sio 4 .Sh HISTORY Originally part of cgd's com package patches, version 0.2.1, to .Bx 386 0.1 . Once controlled bidirectional capabilities. Little is left to control now that these capabilities are standard. +.Sh AUTHORS +.An Christopher G. Demetriou diff --git a/sbin/disklabel/disklabel.8 b/sbin/disklabel/disklabel.8 index fb2bf034b3..6f6090b0a4 100644 --- a/sbin/disklabel/disklabel.8 +++ b/sbin/disklabel/disklabel.8 @@ -34,7 +34,7 @@ .\" .\" @(#)disklabel.8 8.2 (Berkeley) 4/19/94 .\" $FreeBSD: src/sbin/disklabel/disklabel.8,v 1.15.2.22 2003/04/17 17:56:34 trhodes Exp $ -.\" $DragonFly: src/sbin/disklabel/disklabel.8,v 1.6 2006/02/10 19:01:09 swildner Exp $ +.\" $DragonFly: src/sbin/disklabel/disklabel.8,v 1.7 2006/02/17 19:33:32 swildner Exp $ .\" .Dd July 30, 1999 .Dt DISKLABEL 8 @@ -867,13 +867,6 @@ drivedata: 0 f: 5g * 4.2BSD g: * * 4.2BSD .Ed -.Sh SEE ALSO -.Xr ccd 4 , -.Xr disklabel 5 , -.Xr disktab 5 , -.Xr boot0cfg 8 , -.Xr fdisk 8 , -.Xr vinum 8 .Sh DIAGNOSTICS The kernel device drivers will not allow the size of a disk partition to be decreased or the offset of a partition to be changed while it is open. @@ -904,6 +897,13 @@ utility will disallow creation of file systems on FS_BOOT partitions. Conversely, if a partition has a type other than FS_UNUSED or FS_BOOT, .Nm will not install bootstrap code that overlaps it. +.Sh SEE ALSO +.Xr ccd 4 , +.Xr disklabel 5 , +.Xr disktab 5 , +.Xr boot0cfg 8 , +.Xr fdisk 8 , +.Xr vinum 8 .Sh BUGS When a disk name is given without a full pathname, the constructed device name uses the diff --git a/sbin/dump/dump.8 b/sbin/dump/dump.8 index d54a4bb1dd..2d9e574181 100644 --- a/sbin/dump/dump.8 +++ b/sbin/dump/dump.8 @@ -32,7 +32,7 @@ .\" .\" @(#)dump.8 8.3 (Berkeley) 5/1/95 .\" $FreeBSD: src/sbin/dump/dump.8,v 1.27.2.18 2003/02/23 19:58:23 trhodes Exp $ -.\" $DragonFly: src/sbin/dump/dump.8,v 1.3 2004/03/11 12:28:54 hmp Exp $ +.\" $DragonFly: src/sbin/dump/dump.8,v 1.4 2006/02/17 19:33:32 swildner Exp $ .\" .Dd March 1, 2002 .Dt DUMP 8 @@ -417,17 +417,22 @@ dump table: file systems and frequency to find group .Em operator .El -.Sh SEE ALSO -.Xr chflags 1 , -.Xr fstab 5 , -.Xr restore 8 , -.Xr rmt 8 .Sh DIAGNOSTICS Many, and verbose. .Pp Dump exits with zero status on success. Startup errors are indicated with an exit code of 1; abnormal termination is indicated with an exit code of 3. +.Sh SEE ALSO +.Xr chflags 1 , +.Xr fstab 5 , +.Xr restore 8 , +.Xr rmt 8 +.Sh HISTORY +A +.Nm +utility appeared in +.At v6 . .Sh BUGS Fewer than 32 read errors on the file system are ignored. .Pp @@ -473,8 +478,3 @@ This may be fixed in a later version of .Dx . Presently, it works if you set it setuid (like it used to be), but this might constitute a security risk. -.Sh HISTORY -A -.Nm -utility appeared in -.At v6 . diff --git a/sbin/dumpon/dumpon.8 b/sbin/dumpon/dumpon.8 index 1da2f3a65b..f7830e3f4a 100644 --- a/sbin/dumpon/dumpon.8 +++ b/sbin/dumpon/dumpon.8 @@ -31,7 +31,7 @@ .\" .\" From: @(#)swapon.8 8.1 (Berkeley) 6/5/93 .\" $FreeBSD: src/sbin/dumpon/dumpon.8,v 1.11.2.12 2003/01/26 03:12:04 keramida Exp $ -.\" $DragonFly: src/sbin/dumpon/dumpon.8,v 1.3 2004/07/17 18:21:18 cpressey Exp $ +.\" $DragonFly: src/sbin/dumpon/dumpon.8,v 1.4 2006/02/17 19:33:32 swildner Exp $ .\" .Dd May 12, 1995 .Dt DUMPON 8 @@ -108,6 +108,13 @@ variable of .Xr loader 8 must be used to enable dumps for system panics which occur during kernel initialization. +.Sh FILES +.Bl -tag -width "/dev/{ad,da}?s?b" -compact +.It Pa /dev/{ad,da}?s?b +standard swap areas +.It Pa /etc/rc.conf +boot-time system configuration +.El .Sh SEE ALSO .Xr sysctl 3 , .Xr fstab 5 , @@ -119,18 +126,11 @@ during kernel initialization. .Xr savecore 8 , .Xr swapon 8 , .Xr panic 9 -.Sh FILES -.Bl -tag -width "/dev/{ad,da}?s?b" -compact -.It Pa /dev/{ad,da}?s?b -standard swap areas -.It Pa /etc/rc.conf -boot-time system configuration -.El -.Sh BUGS -Because the file system layer is already dead by the time a crash dump -is taken, it is not possible to send crash dumps directly to a file. .Sh HISTORY The .Nm utility appeared in .Fx 2.1 . +.Sh BUGS +Because the file system layer is already dead by the time a crash dump +is taken, it is not possible to send crash dumps directly to a file. diff --git a/sbin/ffsinfo/ffsinfo.8 b/sbin/ffsinfo/ffsinfo.8 index 9a5da07e17..63eb9e7729 100644 --- a/sbin/ffsinfo/ffsinfo.8 +++ b/sbin/ffsinfo/ffsinfo.8 @@ -36,7 +36,7 @@ .\" .\" $TSHeader: src/sbin/ffsinfo/ffsinfo.8,v 1.3 2000/12/12 19:30:55 tomsoft Exp $ .\" $FreeBSD: /repoman/r/ncvs/src/sbin/ffsinfo/ffsinfo.8,v 1.6.2.6 2004/01/29 15:48:26 cperciva Exp $ -.\" $DragonFly: src/sbin/ffsinfo/ffsinfo.8,v 1.4 2004/07/08 17:59:01 cpressey Exp $ +.\" $DragonFly: src/sbin/ffsinfo/ffsinfo.8,v 1.5 2006/02/17 19:33:32 swildner Exp $ .\" .Dd September 8, 2000 .Dt FSINFO 8 @@ -126,18 +126,6 @@ is provided, output will be sent to stdout. will dump .Pa /dev/vinum/testvol with all available information. -.Sh BUGS -Currently -.Nm -can only dump unmounted file systems. -Do not try dumping a mounted file system, your system may panic and you will -not be able to use the file system any longer. -.Pp -Also snapshots are handled like plain files. -They should get their own level to provide for independent control of the -amount of what gets dumped. -It probably also makes sense to some extend to dump the snapshot as a -file system. .Sh SEE ALSO .Xr disklabel 8 , .Xr dumpfs 8 , @@ -146,12 +134,24 @@ file system. .Xr newfs 8 , .Xr tunefs 8 , .Xr vinum 8 -.Sh AUTHORS -.An Christoph Herrmann Aq chm@FreeBSD.org -.An Thomas-Henning von Kamptz Aq tomsoft@FreeBSD.org -.An The GROWFS team Aq growfs@Tomsoft.COM .Sh HISTORY The .Nm utility first appeared in .Fx 4.4 . +.Sh AUTHORS +.An Christoph Herrmann Aq chm@FreeBSD.org +.An Thomas-Henning von Kamptz Aq tomsoft@FreeBSD.org +.An The GROWFS team Aq growfs@Tomsoft.COM +.Sh BUGS +Currently +.Nm +can only dump unmounted file systems. +Do not try dumping a mounted file system, your system may panic and you will +not be able to use the file system any longer. +.Pp +Also snapshots are handled like plain files. +They should get their own level to provide for independent control of the +amount of what gets dumped. +It probably also makes sense to some extend to dump the snapshot as a +file system. diff --git a/sbin/fsck_msdosfs/fsck_msdosfs.8 b/sbin/fsck_msdosfs/fsck_msdosfs.8 index 4444498957..aeaf5f0317 100644 --- a/sbin/fsck_msdosfs/fsck_msdosfs.8 +++ b/sbin/fsck_msdosfs/fsck_msdosfs.8 @@ -1,6 +1,6 @@ .\" $NetBSD: fsck_msdos.8,v 1.9 1997/10/17 11:19:58 ws Exp $ .\" $FreeBSD: src/sbin/fsck_msdosfs/fsck_msdosfs.8,v 1.3.2.2 2003/01/26 03:19:48 keramida Exp $ -.\" $DragonFly: src/sbin/fsck_msdosfs/fsck_msdosfs.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" $DragonFly: src/sbin/fsck_msdosfs/fsck_msdosfs.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .\" Copyright (C) 1995 Wolfgang Solfrank .\" Copyright (c) 1995 Martin Husemann @@ -115,13 +115,13 @@ as the answer to all operator questions. .Xr fsck 8 , .Xr fsck_ffs 8 , .Xr mount_msdos 8 -.Sh BUGS -The -.Nm -utility is -.Ud . .Sh HISTORY The .Nm utility first appeared in .Fx 4.4 . +.Sh BUGS +The +.Nm +utility is +.Ud . diff --git a/sbin/fsdb/fsdb.8 b/sbin/fsdb/fsdb.8 index 82e59eef01..65bf2287f5 100644 --- a/sbin/fsdb/fsdb.8 +++ b/sbin/fsdb/fsdb.8 @@ -27,7 +27,7 @@ .\" POSSIBILITY OF SUCH DAMAGE. .\" .\" $FreeBSD: src/sbin/fsdb/fsdb.8,v 1.12.2.8 2003/02/23 20:17:15 trhodes Exp $ -.\" $DragonFly: src/sbin/fsdb/fsdb.8,v 1.2 2003/06/17 04:27:32 dillon Exp $ +.\" $DragonFly: src/sbin/fsdb/fsdb.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd September 14, 1995 .Dt FSDB 8 @@ -218,15 +218,6 @@ Exit the program. .Xr fs 5 , .Xr clri 8 , .Xr fsck 8 -.Sh BUGS -Manipulation of ``short'' symlinks doesn't work (in particular, don't -try changing a symlink's type). -.Pp -You must specify modes as numbers rather than symbolic names. -.Pp -There are a bunch of other things that you might want to do which -.Nm -doesn't implement. .Sh HISTORY The .Nm @@ -247,3 +238,12 @@ Use this tool with extreme caution--you can damage an FFS file system beyond what .Xr fsck 8 can repair. +.Sh BUGS +Manipulation of ``short'' symlinks doesn't work (in particular, don't +try changing a symlink's type). +.Pp +You must specify modes as numbers rather than symbolic names. +.Pp +There are a bunch of other things that you might want to do which +.Nm +doesn't implement. diff --git a/sbin/growfs/growfs.8 b/sbin/growfs/growfs.8 index f813d82444..721a90ba50 100644 --- a/sbin/growfs/growfs.8 +++ b/sbin/growfs/growfs.8 @@ -36,7 +36,7 @@ .\" .\" $TSHeader: src/sbin/growfs/growfs.8,v 1.3 2000/12/12 19:31:00 tomsoft Exp $ .\" $FreeBSD: src/sbin/growfs/growfs.8,v 1.6.2.6 2003/01/26 03:30:25 keramida Exp $ -.\" $DragonFly: src/sbin/growfs/growfs.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/growfs/growfs.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd September 8, 2000 .Dt GROWFS 8 @@ -117,6 +117,24 @@ will enlarge .Pa /dev/vinum/testvol up to 2GB if there is enough space in .Pa /dev/vinum/testvol . +.Sh SEE ALSO +.Xr disklabel 8 , +.Xr dumpfs 8 , +.Xr fdisk 8 , +.Xr ffsinfo 8 , +.Xr fsck 8 , +.Xr newfs 8 , +.Xr tunefs 8 , +.Xr vinum 8 +.Sh HISTORY +The +.Nm +utility first appeared in +.Fx 4.4 . +.Sh AUTHORS +.An Christoph Herrmann Aq chm@FreeBSD.org +.An Thomas-Henning von Kamptz Aq tomsoft@FreeBSD.org +.An The GROWFS team Aq growfs@Tomsoft.COM .Sh BUGS The .Nm @@ -176,21 +194,3 @@ This read operation will provide unexpected data when using .Fl N . Therefore, this part cannot really be simulated and will be skipped in test mode. -.Sh SEE ALSO -.Xr disklabel 8 , -.Xr dumpfs 8 , -.Xr fdisk 8 , -.Xr ffsinfo 8 , -.Xr fsck 8 , -.Xr newfs 8 , -.Xr tunefs 8 , -.Xr vinum 8 -.Sh AUTHORS -.An Christoph Herrmann Aq chm@FreeBSD.org -.An Thomas-Henning von Kamptz Aq tomsoft@FreeBSD.org -.An The GROWFS team Aq growfs@Tomsoft.COM -.Sh HISTORY -The -.Nm -utility first appeared in -.Fx 4.4 . diff --git a/sbin/i386/cxconfig/cxconfig.8 b/sbin/i386/cxconfig/cxconfig.8 index 8bca6351df..ed707031da 100644 --- a/sbin/i386/cxconfig/cxconfig.8 +++ b/sbin/i386/cxconfig/cxconfig.8 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/sbin/i386/cxconfig/cxconfig.8,v 1.5.2.4 2001/08/16 11:35:43 ru Exp $ -.\" $DragonFly: src/sbin/i386/cxconfig/cxconfig.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/i386/cxconfig/cxconfig.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .Dd December 2, 1994 .Dt CXCONFIG 8 .Os @@ -280,6 +280,11 @@ Send sync pattern. .It "rfar1=#, rfar2=#, rfar3=#, rfar4=# Frame address registers for address recognition. .El +.Sh FILES +.Bl -tag -width /dev/cronyx -compact +.It Pa /dev/cronyx +the special device file for adapter options management +.El .Sh EXAMPLES Set up the channel 7 of the adapter Sigma-400 under .Fx . @@ -321,10 +326,5 @@ LCP and IPCP protocols (see RFC-1548 and RFC-1332) debug tracing enabled: cxconfig cx0 hdlc 64000 port=rs232 ppp +keepalive -extclock +cts ifconfig cx0 100.0.0.2 100.0.0.1 debug up .Ed -.Sh FILES -.Bl -tag -width /dev/cronyx -compact -.It Pa /dev/cronyx -the special device file for adapter options management -.El .Sh SEE ALSO .Xr cx 4 diff --git a/sbin/ifconfig/ifconfig.8 b/sbin/ifconfig/ifconfig.8 index 8545e74f41..1913083ff3 100644 --- a/sbin/ifconfig/ifconfig.8 +++ b/sbin/ifconfig/ifconfig.8 @@ -27,7 +27,7 @@ .\" .\" From: @(#)ifconfig.8 8.3 (Berkeley) 1/5/94 .\" $FreeBSD: src/sbin/ifconfig/ifconfig.8,v 1.85 2004/07/27 09:51:49 yar Exp $ -.\" $DragonFly: src/sbin/ifconfig/ifconfig.8,v 1.8 2005/10/13 10:57:50 swildner Exp $ +.\" $DragonFly: src/sbin/ifconfig/ifconfig.8,v 1.9 2006/02/17 19:33:32 swildner Exp $ .\" .Dd July 26, 2004 .Dt IFCONFIG 8 @@ -831,19 +831,6 @@ it (or have need for it). Messages indicating the specified interface does not exist, the requested address is unknown, or the user is not privileged and tried to alter an interface's configuration. -.Sh BUGS -Basic IPv6 node operation requires a link-local address on each -interface configured for IPv6. -Normally, such an address is automatically configured by the -kernel on each interface added to the system; this behaviour may -be disabled by setting the sysctl MIB variable -.Va net.inet6.ip6.auto_linklocal -to 0. -.Pp -If you delete such an address using -.Nm , -the kernel may act very oddly. -Do this at your own risk. .Sh SEE ALSO .Xr netstat 1 , .Xr netintro 4 , @@ -857,3 +844,16 @@ The .Nm utility appeared in .Bx 4.2 . +.Sh BUGS +Basic IPv6 node operation requires a link-local address on each +interface configured for IPv6. +Normally, such an address is automatically configured by the +kernel on each interface added to the system; this behaviour may +be disabled by setting the sysctl MIB variable +.Va net.inet6.ip6.auto_linklocal +to 0. +.Pp +If you delete such an address using +.Nm , +the kernel may act very oddly. +Do this at your own risk. diff --git a/sbin/init/init.8 b/sbin/init/init.8 index 2e551e4b3a..637a145839 100644 --- a/sbin/init/init.8 +++ b/sbin/init/init.8 @@ -34,7 +34,7 @@ .\" .\" @(#)init.8 8.3 (Berkeley) 4/18/94 .\" $FreeBSD: src/sbin/init/init.8,v 1.22.2.11 2003/05/03 22:19:20 keramida Exp $ -.\" $DragonFly: src/sbin/init/init.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/init/init.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd April 18, 1994 .Dt INIT 8 @@ -337,23 +337,6 @@ as follows: .Xr ttys 5 file .El -.Sh DIAGNOSTICS -.Bl -diag -.It "getty repeating too quickly on port %s, sleeping." -A process being started to service a line is exiting quickly -each time it is started. -This is often caused by a ringing or noisy terminal line. -.Bf -emphasis -Init will sleep for 30 seconds, -then continue trying to start the process. -.Ef -.It "some processes would not die; ps axl advised." -A process -is hung and could not be killed when the system was shutting down. -This condition is usually caused by a process -that is stuck in a device driver because of -a persistent device error condition. -.El .Sh FILES .Bl -tag -width /etc/rc.shutdown -compact .It Pa /dev/console @@ -372,6 +355,23 @@ system startup commands .It Pa /etc/rc.shutdown system shutdown commands .El +.Sh DIAGNOSTICS +.Bl -diag +.It "getty repeating too quickly on port %s, sleeping." +A process being started to service a line is exiting quickly +each time it is started. +This is often caused by a ringing or noisy terminal line. +.Bf -emphasis +Init will sleep for 30 seconds, +then continue trying to start the process. +.Ef +.It "some processes would not die; ps axl advised." +A process +is hung and could not be killed when the system was shutting down. +This condition is usually caused by a process +that is stuck in a device driver because of +a persistent device error condition. +.El .Sh SEE ALSO .Xr kill 1 , .Xr login 1 , diff --git a/sbin/ip6fw/ip6fw.8 b/sbin/ip6fw/ip6fw.8 index 3aa58e5be2..033ea16c00 100644 --- a/sbin/ip6fw/ip6fw.8 +++ b/sbin/ip6fw/ip6fw.8 @@ -1,6 +1,6 @@ .\" .\" $FreeBSD: src/sbin/ip6fw/ip6fw.8,v 1.3.2.12 2003/02/23 20:17:15 trhodes Exp $ -.\" $DragonFly: src/sbin/ip6fw/ip6fw.8,v 1.3 2003/08/08 04:18:38 dillon Exp $ +.\" $DragonFly: src/sbin/ip6fw/ip6fw.8,v 1.4 2006/02/17 19:33:32 swildner Exp $ .\" .\" $KAME$ .\" @@ -542,6 +542,21 @@ or in short form without timestamps: .Xr reboot 8 , .Xr sysctl 8 , .Xr syslogd 8 +.Sh HISTORY +A +.Nm +utility first appeared in +.Fx 4.0 . +.Sh AUTHORS +.An Ugen J. S. Antsilevich , +.An Poul-Henning Kamp , +.An Alex Nash , +.An Archie Cobbs . +.Pp +.An -nosplit +API based upon code written by +.An Daniel Boulet +for BSDI. .Sh BUGS .Em WARNING!!WARNING!!WARNING!!WARNING!!WARNING!!WARNING!!WARNING!! .Pp @@ -554,18 +569,3 @@ do anything you don't understand. .Pp When manipulating/adding chain entries, service and protocol names are not accepted. -.Sh AUTHORS -.An Ugen J. S. Antsilevich , -.An Poul-Henning Kamp , -.An Alex Nash , -.An Archie Cobbs . -.Pp -.An -nosplit -API based upon code written by -.An Daniel Boulet -for BSDI. -.Sh HISTORY -A -.Nm -utility first appeared in -.Fx 4.0 . diff --git a/sbin/ipfw/ipfw.8 b/sbin/ipfw/ipfw.8 index e6427b8c62..85b35d3a02 100644 --- a/sbin/ipfw/ipfw.8 +++ b/sbin/ipfw/ipfw.8 @@ -1,6 +1,6 @@ .\" .\" $FreeBSD: src/sbin/ipfw/ipfw.8,v 1.63.2.33 2003/02/04 01:36:02 brueffer Exp $ -.\" $DragonFly: src/sbin/ipfw/ipfw.8,v 1.5 2005/08/05 22:35:10 swildner Exp $ +.\" $DragonFly: src/sbin/ipfw/ipfw.8,v 1.6 2006/02/17 19:33:32 swildner Exp $ .\" .Dd August 13, 2002 .Dt IPFW 8 @@ -2010,6 +2010,33 @@ the sleep terminates thus restoring the previous situation. .Xr reboot 8 , .Xr sysctl 8 , .Xr syslogd 8 +.Sh HISTORY +The +.Nm +utility first appeared in +.Fx 2.0 . +.Xr dummynet 4 +was introduced in +.Fx 2.2.8 . +Stateful extensions were introduced in +.Fx 4.0 . +.Nm ipfw2 +was introduced in Summer 2002. +.Sh AUTHORS +.An Ugen J. S. Antsilevich , +.An Poul-Henning Kamp , +.An Alex Nash , +.An Archie Cobbs , +.An Luigi Rizzo . +.Pp +.An -nosplit +API based upon code written by +.An Daniel Boulet +for BSDI. +.Pp +Work on +.Xr dummynet 4 +traffic shaper supported by Akamba Corp. .Sh BUGS The syntax has grown over the years and sometimes it might be confusing. Unfortunately, backward compatibility prevents cleaning up mistakes @@ -2043,30 +2070,3 @@ If a packet is reinserted in this manner, later rules may be incorrectly applied, making the order of .Cm divert rules in the rule sequence very important. -.Sh AUTHORS -.An Ugen J. S. Antsilevich , -.An Poul-Henning Kamp , -.An Alex Nash , -.An Archie Cobbs , -.An Luigi Rizzo . -.Pp -.An -nosplit -API based upon code written by -.An Daniel Boulet -for BSDI. -.Pp -Work on -.Xr dummynet 4 -traffic shaper supported by Akamba Corp. -.Sh HISTORY -The -.Nm -utility first appeared in -.Fx 2.0 . -.Xr dummynet 4 -was introduced in -.Fx 2.2.8 . -Stateful extensions were introduced in -.Fx 4.0 . -.Nm ipfw2 -was introduced in Summer 2002. diff --git a/sbin/kget/kget.8 b/sbin/kget/kget.8 index 2c1740afdf..cc8117c40a 100644 --- a/sbin/kget/kget.8 +++ b/sbin/kget/kget.8 @@ -23,7 +23,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/sbin/kget/kget.8,v 1.3.2.5 2001/08/16 11:35:45 ru Exp $ -.\" $DragonFly: src/sbin/kget/kget.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/kget/kget.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd February 20, 1999 .Dt KGET 8 @@ -60,8 +60,6 @@ where .Ar filename is either a regular file (which is overwritten) or -, indicating that standard output should be used. -.Sh BUGS -Sure to be some. .Sh SEE ALSO .Xr sysctl 3 .Sh HISTORY @@ -71,3 +69,5 @@ command appeared in .Fx 3.1 , as part of the PicoBSD distribution by .An Andrzej Bialecki +.Sh BUGS +Sure to be some. diff --git a/sbin/mount/mount.8 b/sbin/mount/mount.8 index f56fdf1f75..52ed5f24b4 100644 --- a/sbin/mount/mount.8 +++ b/sbin/mount/mount.8 @@ -31,7 +31,7 @@ .\" .\" @(#)mount.8 8.8 (Berkeley) 6/16/94 .\" $FreeBSD: src/sbin/mount/mount.8,v 1.31.2.12 2003/02/23 21:17:42 trhodes Exp $ -.\" $DragonFly: src/sbin/mount/mount.8,v 1.3 2004/02/06 22:11:48 joerg Exp $ +.\" $DragonFly: src/sbin/mount/mount.8,v 1.4 2006/02/17 19:33:32 swildner Exp $ .\" .Dd June 16, 1994 .Dt MOUNT 8 @@ -345,6 +345,11 @@ Verbose mode. .It Fl w The file system object is to be read and write. .El +.Sh FILES +.Bl -tag -width /etc/fstab -compact +.It Pa /etc/fstab +file system table +.El .Sh DIAGNOSTICS Various, most of them are self-explanatory. .Pp @@ -362,11 +367,6 @@ it has not been configured statically, using .Xr vfsload 3 . In this case, the above error message can also mean that you did not have permission to load the module. -.Sh FILES -.Bl -tag -width /etc/fstab -compact -.It Pa /etc/fstab -file system table -.El .Sh SEE ALSO .Xr mount 2 , .Xr vfsload 3 , @@ -390,8 +390,6 @@ file system table .Xr mount_union 8 , .Xr sysctl 8 , .Xr umount 8 -.Sh BUGS -It is possible for a corrupted file system to cause a crash. .Sh CAVEATS After a successful .Nm , @@ -406,3 +404,5 @@ A .Nm utility appeared in .At v1 . +.Sh BUGS +It is possible for a corrupted file system to cause a crash. diff --git a/sbin/mount_cd9660/mount_cd9660.8 b/sbin/mount_cd9660/mount_cd9660.8 index 52c86f21a0..c897ecc25d 100644 --- a/sbin/mount_cd9660/mount_cd9660.8 +++ b/sbin/mount_cd9660/mount_cd9660.8 @@ -35,7 +35,7 @@ .\" .\" @(#)mount_cd9660.8 8.3 (Berkeley) 3/27/94 .\" $FreeBSD: src/sbin/mount_cd9660/mount_cd9660.8,v 1.12.2.6 2003/02/24 00:56:41 trhodes Exp $ -.\" $DragonFly: src/sbin/mount_cd9660/mount_cd9660.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/mount_cd9660/mount_cd9660.8,v 1.3 2006/02/17 19:33:32 swildner Exp $ .\" .Dd March 27, 1994 .Dt MOUNT_CD9660 8 @@ -137,6 +137,11 @@ The following command can be used to mount a Kodak Photo-CD: .Xr unmount 2 , .Xr fstab 5 , .Xr mount 8 +.Sh HISTORY +The +.Nm +utility first appeared in +.Bx 4.4 . .Sh BUGS POSIX device node mapping is currently not supported. .Pp @@ -146,8 +151,3 @@ version numbers gets the one with the lowest version number and not the one with the highest. .Pp There is no ECMA support. -.Sh HISTORY -The -.Nm -utility first appeared in -.Bx 4.4 . diff --git a/sbin/mount_null/mount_null.8 b/sbin/mount_null/mount_null.8 index 8db1f1884c..ee5e465426 100644 --- a/sbin/mount_null/mount_null.8 +++ b/sbin/mount_null/mount_null.8 @@ -36,7 +36,7 @@ .\" .\" @(#)mount_null.8 8.6 (Berkeley) 5/1/95 .\" $FreeBSD: src/sbin/mount_null/mount_null.8,v 1.11.2.6 2001/12/20 16:40:00 ru Exp $ -.\" $DragonFly: src/sbin/mount_null/mount_null.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/mount_null/mount_null.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd May 1, 1995 .Dt MOUNT_NULL 8 @@ -229,6 +229,11 @@ is that vnode arguments must be manually mapped. .Pp UCLA Technical Report CSD-910056, .Em "Stackable Layers: an Architecture for File System Development" . +.Sh HISTORY +The +.Nm +utility first appeared in +.Bx 4.4 . .Sh BUGS THIS FILESYSTEM TYPE IS NOT YET FULLY SUPPORTED (READ: IT DOESN'T WORK) AND USING IT MAY, IN FACT, DESTROY DATA ON YOUR SYSTEM. USE AT YOUR @@ -239,8 +244,3 @@ hackers can apply by sending mail to .Aq hackers@FreeBSD.org and announcing their intent to take it over. -.Sh HISTORY -The -.Nm -utility first appeared in -.Bx 4.4 . diff --git a/sbin/mount_nwfs/mount_nwfs.8 b/sbin/mount_nwfs/mount_nwfs.8 index e9fcfd4965..bb35a8b0dc 100644 --- a/sbin/mount_nwfs/mount_nwfs.8 +++ b/sbin/mount_nwfs/mount_nwfs.8 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/sbin/mount_nwfs/mount_nwfs.8,v 1.7.2.8 2003/02/23 21:17:43 trhodes Exp $ -.\" $DragonFly: src/sbin/mount_nwfs/mount_nwfs.8,v 1.3 2004/03/11 12:28:54 hmp Exp $ +.\" $DragonFly: src/sbin/mount_nwfs/mount_nwfs.8,v 1.4 2006/02/17 19:33:33 swildner Exp $ .Dd October 14, 1999 .Dt MOUNT_NWFS 8 .Os @@ -205,8 +205,6 @@ The .Nm utility first appeared in .Fx 4.0 . -.Sh BUGS -to number a few .Sh CREDITS In development of NetWare client for .Fx , @@ -229,3 +227,5 @@ directory. .Sh AUTHORS .An Boris Popov Aq bp@butya.kz , .Aq rbp@chat.ru +.Sh BUGS +to number a few diff --git a/sbin/mount_umap/mount_umap.8 b/sbin/mount_umap/mount_umap.8 index f3ce2fafbd..32dfdf7695 100644 --- a/sbin/mount_umap/mount_umap.8 +++ b/sbin/mount_umap/mount_umap.8 @@ -35,7 +35,7 @@ .\" .\" @(#)mount_umap.8 8.4 (Berkeley) 5/1/95 .\" $FreeBSD: src/sbin/mount_umap/mount_umap.8,v 1.10.2.3 2001/12/20 16:44:17 ru Exp $ -.\" $DragonFly: src/sbin/mount_umap/Attic/mount_umap.8,v 1.2 2003/06/17 04:27:33 dillon Exp $ +.\" $DragonFly: src/sbin/mount_umap/Attic/mount_umap.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd May 1, 1995 .Dt MOUNT_UMAP 8 @@ -124,6 +124,11 @@ sophisticated. .Sh SEE ALSO .Xr mount 8 , .Xr mount_null 8 +.Sh HISTORY +The +.Nm +utility first appeared in +.Bx 4.4 . .Sh BUGS THIS FILESYSTEM TYPE IS NOT YET FULLY SUPPORTED (READ: IT DOESN'T WORK) AND USING IT MAY, IN FACT, DESTROY DATA ON YOUR SYSTEM. USE AT YOUR @@ -134,8 +139,3 @@ hackers can apply by sending mail to .Aq hackers@FreeBSD.org and announcing their intent to take it over. -.Sh HISTORY -The -.Nm -utility first appeared in -.Bx 4.4 . diff --git a/sbin/mount_union/mount_union.8 b/sbin/mount_union/mount_union.8 index 574585b776..5092e553a8 100644 --- a/sbin/mount_union/mount_union.8 +++ b/sbin/mount_union/mount_union.8 @@ -34,7 +34,7 @@ .\" .\" @(#)mount_union.8 8.6 (Berkeley) 3/27/94 .\" $FreeBSD: src/sbin/mount_union/mount_union.8,v 1.6.2.2 2001/12/20 16:46:05 ru Exp $ -.\" $DragonFly: src/sbin/mount_union/mount_union.8,v 1.4 2004/09/13 13:30:11 asmodai Exp $ +.\" $DragonFly: src/sbin/mount_union/mount_union.8,v 1.5 2006/02/17 19:33:33 swildner Exp $ .\" .Dd March 27, 1994 .Dt MOUNT_UNION 8 @@ -187,6 +187,13 @@ accessible via .Xr fstab 5 , .Xr mount 8 , .Xr mount_null 8 +.Sh HISTORY +The +.Nm +command first appeared in +.Bx 4.4 . +It first worked in +.Fx Ns -(fill this in) . .Sh BUGS THIS FILESYSTEM TYPE IS NOT YET FULLY SUPPORTED (READ: IT DOESN'T WORK) AND USING IT MAY, IN FACT, DESTROY DATA ON YOUR SYSTEM. USE AT YOUR @@ -210,10 +217,3 @@ Running .Xr find 1 over a union tree has the side-effect of creating a tree of shadow directories in the upper layer. -.Sh HISTORY -The -.Nm -command first appeared in -.Bx 4.4 . -It first worked in -.Fx Ns -(fill this in) . diff --git a/sbin/mountctl/mountctl.8 b/sbin/mountctl/mountctl.8 index d0d3eed736..9161c52e2d 100644 --- a/sbin/mountctl/mountctl.8 +++ b/sbin/mountctl/mountctl.8 @@ -31,7 +31,7 @@ .\" OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.\" $DragonFly: src/sbin/mountctl/mountctl.8,v 1.8 2005/12/10 00:22:29 swildner Exp $ +.\" $DragonFly: src/sbin/mountctl/mountctl.8,v 1.9 2006/02/17 19:33:33 swildner Exp $ .\" .Dd January 8, 2005 .Dt MOUNTCTL 8 @@ -252,7 +252,6 @@ time the flush was issued. .Sh SEE ALSO .Xr mount 2 , .Xr jscan 8 -.Sh BUGS .Sh CAVEATS This utility is currently under construction and not all features have been implemented yet. In fact, most have not. @@ -261,3 +260,4 @@ The .Nm utility first appeared in .Dx . +.Sh BUGS diff --git a/sbin/mountd/netgroup.5 b/sbin/mountd/netgroup.5 index 6ac1bec58a..86a66dccba 100644 --- a/sbin/mountd/netgroup.5 +++ b/sbin/mountd/netgroup.5 @@ -31,7 +31,7 @@ .\" .\" @(#)netgroup.5 8.2 (Berkeley) 12/11/93 .\" $FreeBSD: src/sbin/mountd/netgroup.5,v 1.10.2.2 2001/07/22 11:32:30 dd Exp $ -.\" $DragonFly: src/sbin/mountd/netgroup.5,v 1.3 2004/03/11 12:28:54 hmp Exp $ +.\" $DragonFly: src/sbin/mountd/netgroup.5,v 1.4 2006/02/17 19:33:33 swildner Exp $ .\" .Dd December 11, 1993 .Dt NETGROUP 5 @@ -171,12 +171,12 @@ database is large. .It Pa /etc/netgroup the netgroup database .El -.Sh SEE ALSO -.Xr getnetgrent 3 , -.Xr exports 5 .Sh COMPATIBILITY The file format is compatible with that of various vendors, however it appears that not all vendors use an identical format. +.Sh SEE ALSO +.Xr getnetgrent 3 , +.Xr exports 5 .Sh BUGS The interpretation of access restrictions based on the member tuples of a netgroup is left up to the various network applications. diff --git a/sbin/newfs_msdos/newfs_msdos.8 b/sbin/newfs_msdos/newfs_msdos.8 index 14af872281..d023e2c7c3 100644 --- a/sbin/newfs_msdos/newfs_msdos.8 +++ b/sbin/newfs_msdos/newfs_msdos.8 @@ -24,7 +24,7 @@ .\" IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. .\" .\" $FreeBSD: src/sbin/newfs_msdos/newfs_msdos.8,v 1.7.2.7 2003/02/24 00:56:42 trhodes Exp $ -.\" $DragonFly: src/sbin/newfs_msdos/newfs_msdos.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/newfs_msdos/newfs_msdos.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd July 6, 1998 .Dt NEWFS_MSDOS 8 @@ -169,13 +169,13 @@ Create a standard 1.44M file system, with volume label .Ar foo , on .Pa /dev/fd0 . +.Sh DIAGNOSTICS +Exit status is 0 on success and 1 on error. .Sh SEE ALSO .Xr disktab 5 , .Xr disklabel 8 , .Xr fdisk 8 , .Xr newfs 8 -.Sh DIAGNOSTICS -Exit status is 0 on success and 1 on error. .Sh HISTORY The .Nm diff --git a/sbin/nos-tun/nos-tun.8 b/sbin/nos-tun/nos-tun.8 index a6e4e48cd6..d4808a6690 100644 --- a/sbin/nos-tun/nos-tun.8 +++ b/sbin/nos-tun/nos-tun.8 @@ -7,7 +7,7 @@ .\" ---------------------------------------------------------------------------- .\" .\" $FreeBSD: src/sbin/nos-tun/nos-tun.8,v 1.6.2.6 2003/02/23 20:53:46 trhodes Exp $ -.\" $DragonFly: src/sbin/nos-tun/nos-tun.8,v 1.3 2004/03/11 12:28:54 hmp Exp $ +.\" $DragonFly: src/sbin/nos-tun/nos-tun.8,v 1.4 2006/02/17 19:33:33 swildner Exp $ .\" .Dd April 11, 1998 .Dt NOS-TUN 8 @@ -79,8 +79,6 @@ tunnel mode nos tunnel destination 192.168.59.34 tunnel source 192.168.56.45 .Ed -.Sh BUGS -We don't allow for setting our source address for multihomed machines. .Sh AUTHORS .An -nosplit .An Nickolay N. Dudorov Aq nnd@itfs.nsk.su @@ -89,3 +87,5 @@ wrote the program, wrote the man-page. .An Isao SEKI Aq iseki@gongon.com added a new flag, IP protocol number. +.Sh BUGS +We don't allow for setting our source address for multihomed machines. diff --git a/sbin/ping6/ping6.8 b/sbin/ping6/ping6.8 index 8b5f0dd05a..337a6a2ce3 100644 --- a/sbin/ping6/ping6.8 +++ b/sbin/ping6/ping6.8 @@ -28,7 +28,7 @@ .\" SUCH DAMAGE. .\" .\" $FreeBSD: src/sbin/ping6/ping6.8,v 1.3.2.12 2003/02/24 00:56:42 trhodes Exp $ -.\" $DragonFly: src/sbin/ping6/ping6.8,v 1.3 2005/08/01 01:49:17 swildner Exp $ +.\" $DragonFly: src/sbin/ping6/ping6.8,v 1.4 2006/02/17 19:33:33 swildner Exp $ .\" .Dd May 17, 1998 .Dt PING6 8 @@ -456,6 +456,19 @@ ping6 -a agl dst.foo.com .%D August 2000 .%O work in progress material .Re +.Sh HISTORY +The +.Xr ping 8 +command appeared in +.Bx 4.3 . +The +.Nm +utility with IPv6 support first appeared in WIDE Hydrangea IPv6 protocol stack +kit. +.Pp +IPv6 and IPsec support based on the KAME Project (http://www.kame.net/) stack +was initially integrated into +.Fx 4.0 .Sh BUGS There have been many discussions on why we separate .Nm @@ -485,16 +498,3 @@ or .Fl 4 option (or something like those) to specify the particular address family. This essentially means that we have two different commands. -.Sh HISTORY -The -.Xr ping 8 -command appeared in -.Bx 4.3 . -The -.Nm -utility with IPv6 support first appeared in WIDE Hydrangea IPv6 protocol stack -kit. -.Pp -IPv6 and IPsec support based on the KAME Project (http://www.kame.net/) stack -was initially integrated into -.Fx 4.0 diff --git a/sbin/reboot/boot_i386.8 b/sbin/reboot/boot_i386.8 index ecc1afe977..7afdf26ff3 100644 --- a/sbin/reboot/boot_i386.8 +++ b/sbin/reboot/boot_i386.8 @@ -39,7 +39,7 @@ .\" @(#)boot_i386.8 8.2 (Berkeley) 4/19/94 .\" .\" $FreeBSD: src/sbin/reboot/boot_i386.8,v 1.23.2.11 2002/04/24 17:47:58 rnordier Exp $ -.\" $DragonFly: src/sbin/reboot/Attic/boot_i386.8,v 1.4 2004/06/25 05:38:00 dillon Exp $ +.\" $DragonFly: src/sbin/reboot/Attic/boot_i386.8,v 1.5 2006/02/17 19:33:33 swildner Exp $ .\" .Dd April 19, 1994 .Dt BOOT 8 i386 @@ -249,17 +249,6 @@ default kernel .It Pa /kernel.old typical non-default kernel (optional) .El -.Sh SEE ALSO -.Xr ddb 4 , -.Xr ttys 5 , -.Xr boot0cfg 8 , -.Xr btxld 8 , -.Xr config 8 , -.Xr disklabel 8 , -.Xr halt 8 , -.Xr loader 8 , -.Xr reboot 8 , -.Xr shutdown 8 .Sh DIAGNOSTICS When disk-related errors occur, these are reported by the second-stage bootstrap using the same error codes returned by the BIOS, for example @@ -298,6 +287,17 @@ BIOS understands the geometry). When a .Dq Disk error 0x1 is reported by the second-stage bootstrap, it generally means that this requirement has not been adhered to. +.Sh SEE ALSO +.Xr ddb 4 , +.Xr ttys 5 , +.Xr boot0cfg 8 , +.Xr btxld 8 , +.Xr config 8 , +.Xr disklabel 8 , +.Xr halt 8 , +.Xr loader 8 , +.Xr reboot 8 , +.Xr shutdown 8 .Sh BUGS The .Xr disklabel 5 diff --git a/sbin/reboot/boot_pc32.8 b/sbin/reboot/boot_pc32.8 index 8f806b1b86..3218ff9ac6 100644 --- a/sbin/reboot/boot_pc32.8 +++ b/sbin/reboot/boot_pc32.8 @@ -39,7 +39,7 @@ .\" @(#)boot_i386.8 8.2 (Berkeley) 4/19/94 .\" .\" $FreeBSD: src/sbin/reboot/boot_i386.8,v 1.23.2.11 2002/04/24 17:47:58 rnordier Exp $ -.\" $DragonFly: src/sbin/reboot/boot_pc32.8,v 1.4 2004/06/25 05:38:00 dillon Exp $ +.\" $DragonFly: src/sbin/reboot/boot_pc32.8,v 1.5 2006/02/17 19:33:33 swildner Exp $ .\" .Dd April 19, 1994 .Dt BOOT 8 i386 @@ -249,17 +249,6 @@ default kernel .It Pa /kernel.old typical non-default kernel (optional) .El -.Sh SEE ALSO -.Xr ddb 4 , -.Xr ttys 5 , -.Xr boot0cfg 8 , -.Xr btxld 8 , -.Xr config 8 , -.Xr disklabel 8 , -.Xr halt 8 , -.Xr loader 8 , -.Xr reboot 8 , -.Xr shutdown 8 .Sh DIAGNOSTICS When disk-related errors occur, these are reported by the second-stage bootstrap using the same error codes returned by the BIOS, for example @@ -298,6 +287,17 @@ BIOS understands the geometry). When a .Dq Disk error 0x1 is reported by the second-stage bootstrap, it generally means that this requirement has not been adhered to. +.Sh SEE ALSO +.Xr ddb 4 , +.Xr ttys 5 , +.Xr boot0cfg 8 , +.Xr btxld 8 , +.Xr config 8 , +.Xr disklabel 8 , +.Xr halt 8 , +.Xr loader 8 , +.Xr reboot 8 , +.Xr shutdown 8 .Sh BUGS The .Xr disklabel 5 diff --git a/sbin/restore/restore.8 b/sbin/restore/restore.8 index caeaef2834..4c85ea13ba 100644 --- a/sbin/restore/restore.8 +++ b/sbin/restore/restore.8 @@ -31,7 +31,7 @@ .\" .\" @(#)restore.8 8.4 (Berkeley) 5/1/95 .\" $FreeBSD: src/sbin/restore/restore.8,v 1.20.2.15 2003/02/23 22:47:13 trhodes Exp $ -.\" $DragonFly: src/sbin/restore/restore.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/restore/restore.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd May 1, 1995 .Dt RESTORE 8 @@ -356,6 +356,24 @@ preceded by its file type. Do not ask the user whether to abort the restore in the event of an error. Always try to skip over the bad block(s) and continue. .El +.Sh ENVIRONMENT +.Bl -tag -width ".Ev TMPDIR" +.It Ev TAPE +Device from which to read backup. +.It Ev TMPDIR +Name of directory where temporary files are to be created. +.El +.Sh FILES +.Bl -tag -width "./restoresymtable" -compact +.It Pa /dev/sa0 +the default tape drive +.It Pa /tmp/rstdir* +file containing directories on the tape. +.It Pa /tmp/rstmode* +owner, mode, and time stamps for directories. +.It Pa \&./restoresymtable +information passed between incremental restores. +.El .Sh DIAGNOSTICS The .Nm @@ -427,29 +445,16 @@ After a dump read error, may have to resynchronize itself. This message lists the number of blocks that were skipped over. .El -.Sh FILES -.Bl -tag -width "./restoresymtable" -compact -.It Pa /dev/sa0 -the default tape drive -.It Pa /tmp/rstdir* -file containing directories on the tape. -.It Pa /tmp/rstmode* -owner, mode, and time stamps for directories. -.It Pa \&./restoresymtable -information passed between incremental restores. -.El -.Sh ENVIRONMENT -.Bl -tag -width ".Ev TMPDIR" -.It Ev TAPE -Device from which to read backup. -.It Ev TMPDIR -Name of directory where temporary files are to be created. -.El .Sh SEE ALSO .Xr dump 8 , .Xr mount 8 , .Xr newfs 8 , .Xr rmt 8 +.Sh HISTORY +The +.Nm +utility appeared in +.Bx 4.2 . .Sh BUGS The .Nm @@ -489,8 +494,3 @@ be the same across different processes. In all other cases, the files are unique because it is possible to have two different dumps started at the same time, and separate operations shouldn't conflict with each other. -.Sh HISTORY -The -.Nm -utility appeared in -.Bx 4.2 . diff --git a/sbin/routed/routed.8 b/sbin/routed/routed.8 index c65903c01e..a66685fe5b 100644 --- a/sbin/routed/routed.8 +++ b/sbin/routed/routed.8 @@ -1,5 +1,5 @@ .\" $FreeBSD: src/sbin/routed/routed.8,v 1.15.2.9 2002/02/17 08:37:54 schweikh Exp $ -.\" $DragonFly: src/sbin/routed/routed.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/routed/routed.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .\" Copyright (c) 1983, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -675,11 +675,11 @@ for distant gateways .%R XSIS 028112 .%Q Xerox System Integration Standard .Re -.Sh BUGS -It does not always detect unidirectional failures in network interfaces, -for example, when the output side fails. .Sh HISTORY The .Nm command appeared in .Bx 4.2 . +.Sh BUGS +It does not always detect unidirectional failures in network interfaces, +for example, when the output side fails. diff --git a/sbin/savecore/savecore.8 b/sbin/savecore/savecore.8 index 510b9258a2..ff934d733a 100644 --- a/sbin/savecore/savecore.8 +++ b/sbin/savecore/savecore.8 @@ -31,7 +31,7 @@ .\" .\" From: @(#)savecore.8 8.1 (Berkeley) 6/5/93 .\" $FreeBSD: src/sbin/savecore/savecore.8,v 1.8.2.6 2002/06/20 23:09:09 charnier Exp $ -.\" $DragonFly: src/sbin/savecore/savecore.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/savecore/savecore.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd September 23, 1994 .Dt SAVECORE 8 @@ -119,8 +119,6 @@ is meant to be called near the end of the initialization file .Pa /etc/rc (see .Xr rc 8 ) . -.Sh BUGS -The minfree code does not consider the effect of compression. .Sh SEE ALSO .Xr gzip 1 , .Xr getbootfile 3 , @@ -131,3 +129,5 @@ The .Nm utility appeared in .Bx 4.1 . +.Sh BUGS +The minfree code does not consider the effect of compression. diff --git a/sbin/shutdown/shutdown.8 b/sbin/shutdown/shutdown.8 index 62772d6768..8b18504700 100644 --- a/sbin/shutdown/shutdown.8 +++ b/sbin/shutdown/shutdown.8 @@ -31,7 +31,7 @@ .\" .\" @(#)shutdown.8 8.2 (Berkeley) 4/27/95 .\" $FreeBSD: src/sbin/shutdown/shutdown.8,v 1.12.2.5 2003/02/23 21:17:43 trhodes Exp $ -.\" $DragonFly: src/sbin/shutdown/shutdown.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/shutdown/shutdown.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd December 11, 1998 .Dt SHUTDOWN 8 @@ -173,6 +173,9 @@ created will be removed automatically. .It Pa /var/run/nologin tells login not to let anyone log in .El +.Sh BACKWARD COMPATIBILITY +The hours and minutes in the second time format may be separated by +a colon (``:'') for backward compatibility. .Sh SEE ALSO .Xr kill 1 , .Xr login 1 , @@ -181,9 +184,6 @@ tells login not to let anyone log in .Xr halt 8 , .Xr init 8 , .Xr reboot 8 -.Sh BACKWARD COMPATIBILITY -The hours and minutes in the second time format may be separated by -a colon (``:'') for backward compatibility. .Sh HISTORY The .Nm diff --git a/sbin/slattach/slattach.8 b/sbin/slattach/slattach.8 index beb310380f..fa25f19b04 100644 --- a/sbin/slattach/slattach.8 +++ b/sbin/slattach/slattach.8 @@ -32,7 +32,7 @@ .\" @(#)slattach.8 6.4 (Berkeley) 3/16/91 .\" .\" $FreeBSD: src/sbin/slattach/slattach.8,v 1.16.2.6 2003/02/23 21:17:43 trhodes Exp $ -.\" $DragonFly: src/sbin/slattach/slattach.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/slattach/slattach.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd April 4, 1993 .Dt SLATTACH 8 @@ -226,6 +226,19 @@ If you use a hard-wired connection rather than a modem, invoke with the .Fl l option in order to ignore carrier on the slip line. +.Sh FILES +.Bl -tag -width /usr/share/examples/slattach/* -compact +.It Pa /var/run/slattach..pid +with +.Ar tty +replaced by the terminal path name component of +.Ar ttyname . +This file contains the numerical process ID of the +.Nm +process and can be examined by scripts in order to send a signal to +.Nm +.It Pa /usr/share/examples/slattach/* +.El .Sh EXAMPLES .Bd -literal -offset indent -compact slattach ttyd8 @@ -247,19 +260,6 @@ utility also logs failure to set the controlling terminal or failure to install signal handlers. Upon connection and redial the ttyname and baud rate are logged and on shutdown the ttyname is logged. -.Sh FILES -.Bl -tag -width /usr/share/examples/slattach/* -compact -.It Pa /var/run/slattach..pid -with -.Ar tty -replaced by the terminal path name component of -.Ar ttyname . -This file contains the numerical process ID of the -.Nm -process and can be examined by scripts in order to send a signal to -.Nm -.It Pa /usr/share/examples/slattach/* -.El .Sh SEE ALSO .Xr netstat 1 , .Xr startslip 1 , diff --git a/sbin/swapon/swapon.8 b/sbin/swapon/swapon.8 index 064aa48810..e25886dea0 100644 --- a/sbin/swapon/swapon.8 +++ b/sbin/swapon/swapon.8 @@ -31,7 +31,7 @@ .\" .\" @(#)swapon.8 8.1 (Berkeley) 6/5/93 .\" $FreeBSD: src/sbin/swapon/swapon.8,v 1.15.2.2 2001/12/14 15:17:56 ru Exp $ -.\" $DragonFly: src/sbin/swapon/swapon.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/swapon/swapon.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd June 5, 1993 .Dt SWAPON 8 @@ -69,13 +69,6 @@ are made available unless their ``noauto'' option is also set. The second form gives individual block devices as given in the system swap configuration table. The call makes only this space available to the system for swap allocation. -.Sh SEE ALSO -.Xr swapon 2 , -.Xr fstab 5 , -.Xr init 8 , -.Xr pstat 8 , -.Xr rc 8 , -.Xr vnconfig 8 .Sh FILES .Bl -tag -width "/dev/{ad,da}?s?b" -compact .It Pa /dev/{ad,da}?s?b @@ -87,12 +80,19 @@ ASCII filesystem description table .It Pa /etc/vntab ASCII vnode file table .El -.Sh BUGS -There is no way to stop paging and swapping on a device. -It is therefore not possible to dismount swap devices which are -mounted during system operation. +.Sh SEE ALSO +.Xr swapon 2 , +.Xr fstab 5 , +.Xr init 8 , +.Xr pstat 8 , +.Xr rc 8 , +.Xr vnconfig 8 .Sh HISTORY The .Nm command appeared in .Bx 4.0 . +.Sh BUGS +There is no way to stop paging and swapping on a device. +It is therefore not possible to dismount swap devices which are +mounted during system operation. diff --git a/sbin/sysctl/sysctl.8 b/sbin/sysctl/sysctl.8 index ca14ee3662..6975d53e20 100644 --- a/sbin/sysctl/sysctl.8 +++ b/sbin/sysctl/sysctl.8 @@ -31,7 +31,7 @@ .\" .\" From: @(#)sysctl.8 8.1 (Berkeley) 6/6/93 .\" $FreeBSD: src/sbin/sysctl/sysctl.8,v 1.23.2.17 2003/05/19 07:49:34 brueffer Exp $ -.\" $DragonFly: src/sbin/sysctl/sysctl.8,v 1.3 2005/08/05 22:35:10 swildner Exp $ +.\" $DragonFly: src/sbin/sysctl/sysctl.8,v 1.4 2006/02/17 19:33:33 swildner Exp $ .\" .Dd March 10, 2002 .Dt SYSCTL 8 @@ -227,6 +227,25 @@ denote .It "user.stream_max integer no .It "user.tzname_max integer no .El +.Sh FILES +.Bl -tag -width ".Aq Pa netinet/icmp_var.h" -compact +.It Aq Pa sys/sysctl.h +definitions for top level identifiers, second level kernel and hardware +identifiers, and user level identifiers +.It Aq Pa sys/socket.h +definitions for second level network identifiers +.It Aq Pa sys/gmon.h +definitions for third level profiling identifiers +.It Aq Pa vm/vm_param.h +definitions for second level virtual memory identifiers +.It Aq Pa netinet/in.h +definitions for third level Internet identifiers and +fourth level IP identifiers +.It Aq Pa netinet/icmp_var.h +definitions for fourth level ICMP identifiers +.It Aq Pa netinet/udp_var.h +definitions for fourth level UDP identifiers +.El .Sh EXAMPLES For example, to retrieve the maximum number of processes allowed in the system, one would use the following request: @@ -257,25 +276,6 @@ Information about the load average history may be obtained with: More variables than these exist, and the best and likely only place to search for their deeper meaning is undoubtedly the source where they are defined. -.Sh FILES -.Bl -tag -width ".Aq Pa netinet/icmp_var.h" -compact -.It Aq Pa sys/sysctl.h -definitions for top level identifiers, second level kernel and hardware -identifiers, and user level identifiers -.It Aq Pa sys/socket.h -definitions for second level network identifiers -.It Aq Pa sys/gmon.h -definitions for third level profiling identifiers -.It Aq Pa vm/vm_param.h -definitions for second level virtual memory identifiers -.It Aq Pa netinet/in.h -definitions for third level Internet identifiers and -fourth level IP identifiers -.It Aq Pa netinet/icmp_var.h -definitions for fourth level ICMP identifiers -.It Aq Pa netinet/udp_var.h -definitions for fourth level UDP identifiers -.El .Sh COMPATIBILITY The .Fl w @@ -285,13 +285,6 @@ option has been deprecated and is silently ignored. .Xr loader.conf 5 , .Xr sysctl.conf 5 , .Xr loader 8 -.Sh BUGS -The -.Nm -utility presently exploits an undocumented interface to the kernel -sysctl facility to traverse the sysctl tree and to retrieve format -and name information. -This correct interface is being thought about for the time being. .Sh HISTORY A .Nm @@ -302,3 +295,10 @@ In .Fx 2.2 , .Nm was significantly remodeled. +.Sh BUGS +The +.Nm +utility presently exploits an undocumented interface to the kernel +sysctl facility to traverse the sysctl tree and to retrieve format +and name information. +This correct interface is being thought about for the time being. diff --git a/sbin/tunefs/tunefs.8 b/sbin/tunefs/tunefs.8 index 6dad57a048..4f700b0d9b 100644 --- a/sbin/tunefs/tunefs.8 +++ b/sbin/tunefs/tunefs.8 @@ -31,7 +31,7 @@ .\" .\" @(#)tunefs.8 8.2 (Berkeley) 12/11/93 .\" $FreeBSD: src/sbin/tunefs/tunefs.8,v 1.11.2.6 2003/01/23 11:14:02 maxim Exp $ -.\" $DragonFly: src/sbin/tunefs/tunefs.8,v 1.2 2003/06/17 04:27:34 dillon Exp $ +.\" $DragonFly: src/sbin/tunefs/tunefs.8,v 1.3 2006/02/17 19:33:33 swildner Exp $ .\" .Dd December 11, 1993 .Dt TUNEFS 8 @@ -151,6 +151,11 @@ specified mount point. .%D August 1984 .%O "(reprinted in the BSD System Manager's Manual, SMM:5)" .Re +.Sh HISTORY +The +.Nm +command appeared in +.Bx 4.2 . .Sh BUGS This program should work on mounted and active filesystems. Because the super-block is not kept in the buffer cache, @@ -162,8 +167,3 @@ after the filesystem is tuned. .\" the time_t's wrap around. .Pp You can tune a filesystem, but you can't tune a fish. -.Sh HISTORY -The -.Nm -command appeared in -.Bx 4.2 . diff --git a/sbin/vinum/vinum.8 b/sbin/vinum/vinum.8 index b6561dfccc..91eb33a9de 100644 --- a/sbin/vinum/vinum.8 +++ b/sbin/vinum/vinum.8 @@ -36,7 +36,7 @@ .\" .\" $Id: vinum.8,v 1.48 2001/01/15 22:15:05 grog Exp $ .\" $FreeBSD: src/sbin/vinum/vinum.8,v 1.33.2.10 2002/12/29 16:35:38 schweikh Exp $ -.\" $DragonFly: src/sbin/vinum/vinum.8,v 1.3 2004/03/11 12:28:55 hmp Exp $ +.\" $DragonFly: src/sbin/vinum/vinum.8,v 1.4 2006/02/17 19:33:33 swildner Exp $ .\" .Dd December 20, 2000 .Dt VINUM 8 @@ -2579,7 +2579,18 @@ and the arguments must be disk slices, such as not partitions such as .Pa /dev/da0e . .El -.\"XXX.Sh BUGS +.Sh ENVIRONMENT +.Bl -tag -width VINUM_DATEFORMAT +.It Ev VINUM_HISTORY +The name of the log file, by default +.Pa /var/log/vinum_history . +.It Ev VINUM_DATEFORMAT +The format of dates in the log file, by default +.Qq Li %e %b %Y %H:%M:%S . +.It Ev EDITOR +The name of the editor to use for editing configuration files, by default +.Nm vi . +.El .Sh FILES .Bl -tag -width /dev/vinum/control -compact .It Pa /dev/vinum @@ -2598,18 +2609,6 @@ directory containing device nodes for .Nm subdisks .El -.Sh ENVIRONMENT -.Bl -tag -width VINUM_DATEFORMAT -.It Ev VINUM_HISTORY -The name of the log file, by default -.Pa /var/log/vinum_history . -.It Ev VINUM_DATEFORMAT -The format of dates in the log file, by default -.Qq Li %e %b %Y %H:%M:%S . -.It Ev EDITOR -The name of the editor to use for editing configuration files, by default -.Nm vi . -.El .Sh SEE ALSO .Xr strftime 3 , .Xr vinum 4 , @@ -2618,8 +2617,6 @@ The name of the editor to use for editing configuration files, by default .Pp .Pa http://www.vinumvm.org/vinum/ , .Pa http://www.vinumvm.org/vinum/how-to-debug.html . -.Sh AUTHORS -.An Greg Lehey Aq grog@lemis.com .Sh HISTORY The .Nm @@ -2630,3 +2627,6 @@ The RAID-5 component of was developed for Cybernet Inc.\& .Pq Pa www.cybernet.com for its NetMAX product. +.Sh AUTHORS +.An Greg Lehey Aq grog@lemis.com +.\"XXX.Sh BUGS