/[base]/head/sbin/dumpon/dumpon.8
ViewVC logotype

Log of /head/sbin/dumpon/dumpon.8

Parent Directory Parent Directory | Revision Log Revision Log


Links to HEAD: (view) (download) (annotate)
Sticky Revision:

Revision 360227 - (view) (download) (annotate) - [select for diffs]
Modified Thu Apr 23 18:04:52 2020 UTC (4 years, 2 months ago) by cem
File length: 11529 byte(s)
Diff to previous 348197
dumpon.8: Update minimum key size language

dumpon(8) has not accepted 1024-bit RSA keys since prior to r339784 (2018-10).
The manual page language was not updated at that time (oops).  The minimum
accepted is 2048 bits, which is also a good default choice.

Sponsored by:	Dell EMC Isilon


Revision 348197 - (view) (download) (annotate) - [select for diffs]
Modified Thu May 23 20:12:24 2019 UTC (5 years, 1 month ago) by cem
File length: 11527 byte(s)
Diff to previous 348083
EKCD: Add Chacha20 encryption mode

Add Chacha20 mode to Encrypted Kernel Crash Dumps.

Chacha20 does not require messages to be multiples of block size, so it is
valid to use the cipher on non-block-sized messages without the explicit
padding AES-CBC would require.  Therefore, allow use with simultaneous dump
compression.  (Continue to disallow use of AES-CBC EKCD with compression.)

dumpon(8) gains a -C cipher flag to select between chacha and aes-cbc.
It defaults to chacha if no -C option is provided.  The man page documents this
behavior.

Relnotes:	sure
Sponsored by:	Dell EMC Isilon


Revision 348083 - (view) (download) (annotate) - [select for diffs]
Modified Wed May 22 03:52:39 2019 UTC (5 years, 1 month ago) by markj
File length: 11500 byte(s)
Diff to previous 348082
Update the example added in r348082 to specify a dump device priority.

Event:	Waterloo Hackathon 2019


Revision 348082 - (view) (download) (annotate) - [select for diffs]
Modified Wed May 22 03:49:38 2019 UTC (5 years, 1 month ago) by markj
File length: 11523 byte(s)
Diff to previous 347192
Provide an example of using dhclient-script(5) to configure netdump.

Reviewed by:	cem
MFC after:	1 week
Event:		Waterloo Hackathon 2019
Differential Revision:	https://reviews.freebsd.org/D20345


Revision 347192 - (view) (download) (annotate) - [select for diffs]
Modified Mon May 6 18:24:07 2019 UTC (5 years, 1 month ago) by cem
File length: 10562 byte(s)
Diff to previous 340547
List-ify kernel dump device configuration

Allow users to specify multiple dump configurations in a prioritized list.
This enables fallback to secondary device(s) if primary dump fails.  E.g.,
one might configure a preference for netdump, but fallback to disk dump as a
second choice if netdump is unavailable.

This change does not list-ify netdump configuration, which is tracked
separately from ordinary disk dumps internally; only one netdump
configuration can be made at a time, for now.  It also does not implement
IPv6 netdump.

savecore(8) is already capable of scanning and iterating multiple devices
from /etc/fstab or passed on the command line.

This change doesn't update the rc or loader variables 'dumpdev' in any way;
it can still be set to configure a single dump device, and rc.d/savecore
still uses it as a single device.  Only dumpon(8) is updated to be able to
configure the more complicated configurations for now.

As part of revving the ABI, unify netdump and disk dump configuration ioctl
/ structure, and leave room for ipv6 netdump as a future possibility.
Backwards-compatibility ioctls are added to smooth ABI transition,
especially for developers who may not keep kernel and userspace perfectly
synced.

Reviewed by:	markj, scottl (earlier version)
Relnotes:	maybe
Sponsored by:	Dell EMC Isilon
Differential Revision:	https://reviews.freebsd.org/D19996


Revision 340547 - (view) (download) (annotate) - [select for diffs]
Modified Sun Nov 18 01:58:48 2018 UTC (5 years, 7 months ago) by markj
File length: 9744 byte(s)
Diff to previous 339785
Change dumpon(8)'s handling of -g.

Rather than using a special value to denote "use the default router",
treat the absence of the -g option to mean the same thing.  The
in-kernel netdump client will always attempt to reach the server
directly before falling back to the configured gateway anyway.  This
change makes it cleaner to support a hostname value for -g.

Reviewed by:	cem
MFC after:	3 days
Differential Revision:	https://reviews.freebsd.org/D18025


Revision 339785 - (view) (download) (annotate) - [select for diffs]
Modified Fri Oct 26 20:03:59 2018 UTC (5 years, 8 months ago) by cem
File length: 9750 byte(s)
Diff to previous 339784
dumpon.8: Significantly revamp page

Start with a short summary and cover the options in a standard list style.

Organize sections by common focus and prioritize more useful information
closer to the top.

Flesh out authors, history, caveats, and security considerations sections.

Reviewed by:	markj, eadler (previous version)
Differential Revision:	https://reviews.freebsd.org/D17679


Revision 339784 - (view) (download) (annotate) - [select for diffs]
Modified Fri Oct 26 19:53:59 2018 UTC (5 years, 8 months ago) by cem
File length: 9177 byte(s)
Diff to previous 335046
dumpon(8): Provide seatbelt against weak RSA keys

The premise of dumpon -k foo.pem is that dump contents will be confidential
except to anyone holding the corresponding RSA private key.

This guarantee breaks down when weak RSA keys are used.  Small RSA keys
(e.g. 512 bits) can be broken on a single personal computer in tractible
time.  Marginal RSA keys (768 bits) can be broken by EC2 and a few dollars.
Even 1024 bit keys can probably be broken by sophisticated and wealthy
attackers.

NIST SP800-57 (2016) recommends a minimum of 2048 bit RSA keys, and
estimates this provides 112 bits of security.

It would also be good to protect users from weak values of 'e' (i.e., 3) and
perhaps sanity check that their public key .pem does not accidentally
contain their private key as well.  These considerations are left as future
work.

Reviewed by:	markj, darius AT dons.net.au (previous version)
Discussed with:	bjk
Differential Revision:	https://reviews.freebsd.org/D17678


Revision 335046 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jun 13 09:28:47 2018 UTC (6 years ago) by eadler
File length: 8733 byte(s)
Diff to previous 334089
dumpon(8): improve the examples a bit

While here, remove extraneous extraneous Pp

Reviewed by:	jhb (older version)


Revision 334089 - (view) (download) (annotate) - [select for diffs]
Modified Wed May 23 10:45:32 2018 UTC (6 years, 1 month ago) by eadler
File length: 8680 byte(s)
Diff to previous 333284
dumpon: point to better kernel debug symbols.

The objdir is temporary, and the current example points to GENERIC.
Instead point to the installed location of the debug symbols that are
supposed to match the kernel you are using.

PR:		223993
Submitted by:	Trond.Endrestol@ximalas.info


Revision 333284 - (view) (download) (annotate) - [select for diffs]
Modified Sun May 6 00:42:30 2018 UTC (6 years, 1 month ago) by markj
File length: 8668 byte(s)
Diff to previous 329240
Add netdump support to dumpon(8).

A new usage is added so that parameters for netdump may be specified.
Specifically, one configures an interface for netdump with:

# dumpon -c <client IP> -s <server IP> [-g <gateway IP>] <iface name>

Reviewed by:	bdrewery, cem (earlier versions), sbruno
MFC after:	1 month
Sponsored by:	Dell EMC Isilon
Differential Revision:	https://reviews.freebsd.org/D15254


Revision 329240 - (view) (download) (annotate) - [select for diffs]
Modified Tue Feb 13 19:28:02 2018 UTC (6 years, 4 months ago) by markj
File length: 7704 byte(s)
Diff to previous 324965
Add support for zstd-compressed user and kernel core dumps.

This works similarly to the existing gzip compression support, but
zstd is typically faster and gives better compression ratios.

Support for this functionality must be configured by adding ZSTDIO to
one's kernel configuration file. dumpon(8)'s new -Z option is used to
configure zstd compression for kernel dumps. savecore(8) now recognizes
and saves zstd-compressed kernel dumps with a .zst extension.

Submitted by:	cem (original version)
Relnotes:	yes
Sponsored by:	Dell EMC Isilon
Differential Revision:	https://reviews.freebsd.org/D13101,
			https://reviews.freebsd.org/D13633


Revision 324965 - (view) (download) (annotate) - [select for diffs]
Modified Wed Oct 25 00:51:00 2017 UTC (6 years, 8 months ago) by markj
File length: 7545 byte(s)
Diff to previous 314436
Add support for compressed kernel dumps.

When using a kernel built with the GZIO config option, dumpon -z can be
used to configure gzip compression using the in-kernel copy of zlib.
This is useful on systems with large amounts of RAM, which require a
correspondingly large dump device. Recovery of compressed dumps is also
faster since fewer bytes need to be copied from the dump device.

Because we have no way of knowing the final size of a compressed dump
until it is written, the kernel will always attempt to dump when
compression is configured, regardless of the dump device size. If the
dump is aborted because we run out of space, an error is reported on
the console.

savecore(8) is modified to handle compressed dumps and save them to
vmcore.<index>.gz, as it does when given the -z option.

A new rc.conf variable, dumpon_flags, is added. Its value is added to
the boot-time dumpon(8) invocation that occurs when a dump device is
configured in rc.conf.

Reviewed by:	cem (earlier version)
Discussed with:	def, rgrimes
Relnotes:	yes
Sponsored by:	Dell EMC Isilon
Differential Revision:	https://reviews.freebsd.org/D11723


Revision 314436 - (view) (download) (annotate) - [select for diffs]
Modified Tue Feb 28 23:42:47 2017 UTC (7 years, 4 months ago) by imp
File length: 6842 byte(s)
Diff to previous 309818
Renumber copyright clause 4

Renumber cluase 4 to 3, per what everybody else did when BSD granted
them permission to remove clause 3. My insistance on keeping the same
numbering for legal reasons is too pedantic, so give up on that point.

Submitted by:	Jan Schaumann <jschauma@stevens.edu>
Pull Request:	https://github.com/freebsd/freebsd/pull/96


Revision 309818 - (view) (download) (annotate) - [select for diffs]
Modified Sat Dec 10 16:20:39 2016 UTC (7 years, 6 months ago) by def
File length: 6842 byte(s)
Diff to previous 306601
Add support for encrypted kernel crash dumps.

Changes include modifications in kernel crash dump routines, dumpon(8) and
savecore(8). A new tool called decryptcore(8) was added.

A new DIOCSKERNELDUMP I/O control was added to send a kernel crash dump
configuration in the diocskerneldump_arg structure to the kernel.
The old DIOCSKERNELDUMP I/O control was renamed to DIOCSKERNELDUMP_FREEBSD11 for
backward ABI compatibility.

dumpon(8) generates an one-time random symmetric key and encrypts it using
an RSA public key in capability mode. Currently only AES-256-CBC is supported
but EKCD was designed to implement support for other algorithms in the future.
The public key is chosen using the -k flag. The dumpon rc(8) script can do this
automatically during startup using the dumppubkey rc.conf(5) variable.  Once the
keys are calculated dumpon sends them to the kernel via DIOCSKERNELDUMP I/O
control.

When the kernel receives the DIOCSKERNELDUMP I/O control it generates a random
IV and sets up the key schedule for the specified algorithm. Each time the
kernel tries to write a crash dump to the dump device, the IV is replaced by
a SHA-256 hash of the previous value. This is intended to make a possible
differential cryptanalysis harder since it is possible to write multiple crash
dumps without reboot by repeating the following commands:
# sysctl debug.kdb.enter=1
db> call doadump(0)
db> continue
# savecore

A kernel dump key consists of an algorithm identifier, an IV and an encrypted
symmetric key. The kernel dump key size is included in a kernel dump header.
The size is an unsigned 32-bit integer and it is aligned to a block size.
The header structure has 512 bytes to match the block size so it was required to
make a panic string 4 bytes shorter to add a new field to the header structure.
If the kernel dump key size in the header is nonzero it is assumed that the
kernel dump key is placed after the first header on the dump device and the core
dump is encrypted.

Separate functions were implemented to write the kernel dump header and the
kernel dump key as they need to be unencrypted. The dump_write function encrypts
data if the kernel was compiled with the EKCD option. Encrypted kernel textdumps
are not supported due to the way they are constructed which makes it impossible
to use the CBC mode for encryption. It should be also noted that textdumps don't
contain sensitive data by design as a user decides what information should be
dumped.

savecore(8) writes the kernel dump key to a key.# file if its size in the header
is nonzero. # is the number of the current core dump.

decryptcore(8) decrypts the core dump using a private RSA key and the kernel
dump key. This is performed by a child process in capability mode.
If the decryption was not successful the parent process removes a partially
decrypted core dump.

Description on how to encrypt crash dumps was added to the decryptcore(8),
dumpon(8), rc.conf(5) and savecore(8) manual pages.

EKCD was tested on amd64 using bhyve and i386, mipsel and sparc64 using QEMU.
The feature still has to be tested on arm and arm64 as it wasn't possible to run
FreeBSD due to the problems with QEMU emulation and lack of hardware.

Designed by:	def, pjd
Reviewed by:	cem, oshogbo, pjd
Partial review:	delphij, emaste, jhb, kib
Approved by:	pjd (mentor)
Differential Revision:	https://reviews.freebsd.org/D4712


Revision 306601 - (view) (download) (annotate) - [select for diffs]
Modified Sun Oct 2 23:35:45 2016 UTC (7 years, 9 months ago) by sevan
File length: 4461 byte(s)
Diff to previous 272747
dumpon(8) appears to be present in FreeBSD 2.0.5,
despite initial import of man page listed FreeBSD 2.1.

PR:		212445
Approved by:	bcr (mentor)
MFC after:	4 days
Differential Revision:	https://reviews.freebsd.org/D8105


Revision 272747 - (view) (download) (annotate) - [select for diffs]
Modified Wed Oct 8 12:19:48 2014 UTC (9 years, 8 months ago) by ae
File length: 4459 byte(s)
Diff to previous 250095
Revert r156046. We support setting dumpdev via loader tunable again.
Also change default disk name to ada.

MFC after:	3 weeks


Revision 250095 - (view) (download) (annotate) - [select for diffs]
Modified Tue Apr 30 07:22:03 2013 UTC (11 years, 2 months ago) by joel
File length: 4252 byte(s)
Diff to previous 242486
Adapt to the fact that minidumps are now on by default.

PR:		177188


Revision 242486 - (view) (download) (annotate) - [select for diffs]
Modified Fri Nov 2 17:30:08 2012 UTC (11 years, 8 months ago) by alfred
File length: 3960 byte(s)
Diff to previous 242451
Document that you can use -v along with -l.

Noticed by: pjd


Revision 242451 - (view) (download) (annotate) - [select for diffs]
Modified Thu Nov 1 18:59:19 2012 UTC (11 years, 8 months ago) by alfred
File length: 3951 byte(s)
Diff to previous 156046
Add an option to display the current dump device via dumpon -l.

MFC after:	2 weeks


Revision 156046 - (view) (download) (annotate) - [select for diffs]
Modified Mon Feb 27 00:15:53 2006 UTC (18 years, 4 months ago) by kris
File length: 3819 byte(s)
Diff to previous 154099
It has not been possible to specify a dumpdev in loader.conf since 2002,
so don't raise false hopes here.


Revision 154099 - (view) (download) (annotate) - [select for diffs]
Modified Sat Jan 7 19:17:13 2006 UTC (18 years, 5 months ago) by pav
File length: 4023 byte(s)
Diff to previous 140415
- Mention the size of the additional header

PR:		docs/85867
Submitted by:	dinoex
MFC after:	1 week


Revision 140415 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jan 18 10:09:38 2005 UTC (19 years, 5 months ago) by ru
File length: 4017 byte(s)
Diff to previous 136104
Sort sections.


Revision 136104 - (view) (download) (annotate) - [select for diffs]
Modified Sun Oct 3 23:38:49 2004 UTC (19 years, 9 months ago) by des
File length: 4017 byte(s)
Diff to previous 136103
Verify that the specified device is at least as large as hw.physmem.


Revision 136103 - (view) (download) (annotate) - [select for diffs]
Modified Sun Oct 3 23:35:34 2004 UTC (19 years, 9 months ago) by des
File length: 3846 byte(s)
Diff to previous 132348
Wrap some long lines (no content changes)


Revision 132348 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jul 18 09:57:47 2004 UTC (19 years, 11 months ago) by maxim
File length: 3846 byte(s)
Diff to previous 128073
`off' is a keyword, not a parameter name.

Obtained from:	DragonFly


Revision 128073 - (view) (download) (annotate) - [select for diffs]
Modified Fri Apr 9 19:58:40 2004 UTC (20 years, 2 months ago) by markm
File length: 3846 byte(s)
Diff to previous 114811
Remove advertising clause from University of California Regent's license,
per letter dated July 22, 1999.

Approved by: core, imp


Revision 114811 - (view) (download) (annotate) - [select for diffs]
Modified Wed May 7 19:37:51 2003 UTC (21 years, 2 months ago) by hmp
File length: 4086 byte(s)
Diff to previous 102231
Bring the dumpon(8) man page closer to reality:

    - dumpon utility has not used kern.dumpdev sysctl
      since rev. 1.14 (sbin/dumpon/dumpon.c) when phk@
      updated it to use the DIOCSKERNELDUMP ioctl [1]
    - remove obsolete reference to sysctl(3)

While I am there, fix two style nits:

    - use .Nm instead of `dumpon'
    - change NOTES to IMPLEMENTATION NOTES, to bring
      it in line with recommended section headings in
      mdoc(7)

Original patch by: Martin Faxer <gmh003532brfmasthugget.se> [1]

PR: docs/39293
Approved and Reviewed by: des (mentor), re (scottl, bmah)


Revision 102231 - (view) (download) (annotate) - [select for diffs]
Modified Wed Aug 21 18:11:48 2002 UTC (21 years, 10 months ago) by trhodes
File length: 4022 byte(s)
Diff to previous 101790
s/filesystem/file system/g as discussed on -developers


Revision 101790 - (view) (download) (annotate) - [select for diffs]
Modified Tue Aug 13 11:39:38 2002 UTC (21 years, 10 months ago) by ru
File length: 4019 byte(s)
Diff to previous 99676
Improve wording even more.


Revision 99676 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jul 9 17:27:08 2002 UTC (21 years, 11 months ago) by dillon
File length: 4008 byte(s)
Diff to previous 99501
Replace the 'at least the amount of physical memory + 64K' with a better
explanation in regards to sizing the dump device.


Revision 99501 - (view) (download) (annotate) - [select for diffs]
Modified Sat Jul 6 19:34:18 2002 UTC (22 years ago) by charnier
File length: 3790 byte(s)
Diff to previous 94300
The .Nm utility


Revision 94300 - (view) (download) (annotate) - [select for diffs]
Modified Tue Apr 9 19:51:50 2002 UTC (22 years, 2 months ago) by trhodes
File length: 3785 byte(s)
Diff to previous 89699
Update dumpon manual page to explain single/multi-user usability

PR:	36465
No Objections from:	ru


Revision 89699 - (view) (download) (annotate) - [select for diffs]
Modified Wed Jan 23 09:35:55 2002 UTC (22 years, 5 months ago) by sobomax
File length: 3826 byte(s)
Diff to previous 89671
CG hard sentence breaks.

Submitted by:	ru


Revision 89671 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jan 22 21:11:18 2002 UTC (22 years, 5 months ago) by sobomax
File length: 3827 byte(s)
Diff to previous 89601
Don't use `you'.

Submitted by:	ru


Revision 89601 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jan 21 01:16:11 2002 UTC (22 years, 5 months ago) by sobomax
File length: 3839 byte(s)
Diff to previous 85630
Allow dump device be configured as early as possible using loader(8) tunable.
This allows obtaining crash dumps from the panics occured during late stages
of kernel initialisation before system enters into single-user mode.

MFC after:	2 weeks


Revision 85630 - (view) (download) (annotate) - [select for diffs]
Modified Sun Oct 28 16:47:06 2001 UTC (22 years, 8 months ago) by n_hibma
File length: 3739 byte(s)
Diff to previous 79754
Typo.


Revision 79754 - (view) (download) (annotate) - [select for diffs]
Modified Sun Jul 15 07:53:42 2001 UTC (22 years, 11 months ago) by dd
File length: 3734 byte(s)
Diff to previous 79530
Remove whitespace at EOL.


Revision 79530 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jul 10 11:04:34 2001 UTC (22 years, 11 months ago) by ru
File length: 3740 byte(s)
Diff to previous 70015
mdoc(7) police: removed HISTORY info from the .Os call.


Revision 70015 - (view) (download) (annotate) - [select for diffs]
Modified Thu Dec 14 11:52:05 2000 UTC (23 years, 6 months ago) by ru
File length: 3748 byte(s)
Diff to previous 68960
mdoc(7) police: removed history info from the .Os FreeBSD call.


Revision 68960 - (view) (download) (annotate) - [select for diffs]
Modified Mon Nov 20 16:52:27 2000 UTC (23 years, 7 months ago) by ru
File length: 3752 byte(s)
Diff to previous 63162
mdoc(7) police: use the new features of the Nm macro.


Revision 63162 - (view) (download) (annotate) - [select for diffs]
Modified Fri Jul 14 18:04:39 2000 UTC (23 years, 11 months ago) by ben
File length: 3766 byte(s)
Diff to previous 58746
* Clarify text on choosing a dump device
* Remove the text which states only devices with minor number 1 can be used
  - this is no longer true.
* Mention that dumpon(8) cannot be used to capture dumps from panics during
  kernel initialization.
* /dev/wd -> /dev/ad

PR:		19848
Submitted by:	Udo Erdelhoff <ue@nathan.ruhr.de>
Reviewed by:	sheldonh


Revision 58746 - (view) (download) (annotate) - [select for diffs]
Modified Tue Mar 28 15:54:32 2000 UTC (24 years, 3 months ago) by sheldonh
File length: 3584 byte(s)
Diff to previous 58732
Back out the new advice introduced in the previous commit, which at
least one reviewer is now unhappy with, since it contains incomplete
and misleading advice that is not easy to correct.

The net effect of this commit and the previous commit is to simply
remove all discussion of setting dumpdev to catch crash dumps
prior to entering user mode.


Revision 58732 - (view) (download) (annotate) - [select for diffs]
Modified Tue Mar 28 09:32:38 2000 UTC (24 years, 3 months ago) by sheldonh
File length: 4035 byte(s)
Diff to previous 50476
Update instructions for setting the dump device prior to multi-user
mode.

Reported by:	dcs
Submitted by:	asmodai


Revision 50476 - (view) (download) (annotate) - [select for diffs]
Modified Sat Aug 28 00:22:10 1999 UTC (24 years, 10 months ago) by peter
File length: 3889 byte(s)
Diff to previous 47261
$Id$ -> $FreeBSD$


Revision 47261 - (view) (download) (annotate) - [select for diffs]
Modified Mon May 17 05:23:17 1999 UTC (25 years, 1 month ago) by jkoshy
File length: 3931 byte(s)
Diff to previous 38702
Use current names for swap devices.

PR:		docs/11708
Submitted by:	Matthew D. Fuller <fullermd@over-yonder.net>


Revision 38702 - (view) (download) (annotate) - [select for diffs]
Modified Mon Aug 31 16:41:09 1998 UTC (25 years, 10 months ago) by wosch
File length: 3924 byte(s)
Diff to previous 36999
Sort cross references.


Revision 36999 - (view) (download) (annotate) - [select for diffs]
Modified Mon Jun 15 07:03:47 1998 UTC (26 years ago) by charnier
File length: 3922 byte(s)
Diff to previous 36414
Capitalize at the start of sentence. Add rcsid. Remove unused #includes.
Use `dumpon' instead of argv[0].


Revision 36414 - (view) (download) (annotate) - [select for diffs]
Modified Wed May 27 11:05:59 1998 UTC (26 years, 1 month ago) by jkoshy
File length: 3916 byte(s)
Diff to previous 36365
Correct manual page, based on feedback from Bruce Evans.

Reviewed by: Bruce Evans <bde@freebsd.org>


Revision 36365 - (view) (download) (annotate) - [select for diffs]
Modified Mon May 25 08:54:40 1998 UTC (26 years, 1 month ago) by jkoshy
File length: 3982 byte(s)
Diff to previous 22990
Manual page fix: add cross references, refer to ``dumpdev'' variable in
"/etc/rc.conf".

PR: 6117
Submitted by: Mark Mayo <mark@vmunix.com>


Revision 22990 - (view) (download) (annotate) - [select for diffs]
Modified Sat Feb 22 14:40:44 1997 UTC (27 years, 4 months ago) by peter
File length: 3309 byte(s)
Diff to previous 21673
Revert $FreeBSD$ to $Id$


Revision 21673 - (view) (download) (annotate) - [select for diffs]
Modified Tue Jan 14 07:20:47 1997 UTC (27 years, 5 months ago) by jkh
File length: 3314 byte(s)
Diff to previous 17786
Make the long-awaited change from $Id$ to $FreeBSD$

This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore.  This update would have been
insane otherwise.


Revision 17786 - (view) (download) (annotate) - [select for diffs]
Modified Fri Aug 23 00:57:08 1996 UTC (27 years, 10 months ago) by mpp
File length: 3354 byte(s)
Diff to previous 14042
Use the .Fx macro where appropriate.


Revision 14042 - (view) (download) (annotate) - [select for diffs]
Modified Mon Feb 12 01:20:38 1996 UTC (28 years, 4 months ago) by mpp
File length: 3365 byte(s)
Diff to previous 8478
Fixed some minor formatting problems to silence manck some more.
Corrected some bogus cross references to man pages that we don't/won't
have and either deleted them, or found a more appropriate man page
that we do have.  Various other minor changes to silence manck.

Manck is currently down to about 200 lines of errors, down from
the 500 - 600+ when I started all this.


Revision 8478 - (view) (download) (annotate) - [select for diffs]
Added Fri May 12 19:10:09 1995 UTC (29 years, 1 month ago) by wollman
File length: 3316 byte(s)
My utility to specify where you want crash dumps to go.  More user
and kernel support to follow.


This form allows you to request diffs between any two revisions of this file. For each of the two "sides" of the diff, enter a numeric revision.

  Diffs between and
  Type of Diff should be a

  ViewVC Help
Powered by ViewVC 1.1.27