summaryrefslogtreecommitdiffstats
path: root/sbin/dump
Commit message (Collapse)AuthorAgeFilesLines
* mdoc(7) police: use the new features of the Nm macro.ru2000-11-201-4/+4
|
* Avoid use of direct troff requests in mdoc(7) manual pages.ru2000-11-101-1/+0
|
* Update device name.kris2000-05-071-1/+1
|
* Add include of errno.h where needed, remove extern int errno where not.imp2000-04-142-2/+2
| | | | These commits were inspired by a similar commit to netbsd.
* Avoid rawname() stupidly prepending an `r' before the device name evenjoerg2000-04-022-6/+14
| | | | | | | | | | | in cases where the supplied name was already pointing to a character special device. This fixes the breakage that occured when trying to dump a filesystem by name (e. g. /usr), with an fstab already mentioning the raw device name (like /dev/rda0g) where dump attempted to use /dev/rrda0g then. Also removed the now obsolete remark that fstab were carrying block special names.
* Remove single-space hard sentence breaks. These degrade the qualitysheldonh2000-03-011-1/+2
| | | | | of the typeset output, tend to make diffs harder to read and provide bad examples for new-comers to mdoc.
* Remove xrefs to obsolete ft driver.nik2000-03-011-1/+0
| | | | | PR: docs/17080 Submitted by: Udo Erdelhoff <ue@nathan.ruhr.de>
* Use libcrypto instead of libdes.markm2000-02-241-1/+2
|
* Fix various man pages to stop abusing the .Bx macro to generatempp2000-01-231-1/+1
| | | | | the strings "FreeBSD" and "NetBSD". Use the .Fx or .Nx macro instead.
* Add `.Nm rdump' to NAME section.phantom2000-01-101-1/+2
|
* vsprintf -> vsnprintf in msg().imp1999-11-101-1/+1
|
* Prepare for K5.markm1999-09-201-1/+1
|
* Fix for new KerberosFix for new Kerberos44markm1999-09-191-0/+1
|
* $Id$ -> $FreeBSD$peter1999-08-289-9/+9
|
* Fix nested if/else within an ifbillf1999-07-081-2/+3
|
* Fix time of last dump handling.jkh1999-07-021-6/+11
| | | | Submittted by: Richard Wiwatowski <rjwiwat@ozemail.com.au>
* Fix typo in dump reportingjmz1999-05-241-3/+4
| | | | | PR: bin/10573 Submitted by: Christian Weisgerber <naddy@mips.rhein-neckar.de>
* temporary workaround for bin/11464mjacob1999-05-031-1/+5
|
* The attached patch to /usr/src/sbin/dump/optr.c changes the comparisonjkh1999-03-211-5/+5
| | | | | | | | | | | | so that dumps are treated by dump -w as having been done on midnight of the day they were actually run. This makes dump -w behave as expected for regularly scheduled daily dumps - if they all run the same day. It makes dump -w behave strangely if you dump late in the day and check again after midnight, but that is the lesser of two evils. Submitted by: Mike Meyer <mwm@phone.net> PR: 9429
* 64bit fixes.dima1998-10-271-4/+4
| | | | | | | (Note: ``dump'' doesn't work on alpha yet. Apparently there's a problem somewhere is the physio() area) Submitted by: myself && Matt Dillon.
* Change rst0 into rsa0.roberto1998-09-222-5/+5
|
* Remove useless `BINOWN=root' now that it is the default.obrien1998-09-191-2/+1
|
* checked, that new sa CAM driver takes care of using buffer sizesandreas1998-09-161-15/+1
| | | | | | | | <= 64 KB. Was able to dump/restore with block sizes of 96, 128 and 200. using systat -vmstat I noticed transfer blocksizes <= 64KB, so physio's limits aren't touched. Since this check was originally from me, I feels safe now to back it out.
* Add support for dealing with ENOSPC as the error code returned by a tapegibbs1998-09-152-16/+17
| | | | device hitting EOM on a write.
* Fix LIBDIR (for aout/ELF).markm1998-08-061-1/+2
|
* Make `dump' exit codes confirm to manual page.jkoshy1998-07-143-16/+17
| | | | | PR: 5346 Style-check-by: bde
* Correct use of .Nm. Add rcsid. Remove unused #includes.charnier1998-06-158-40/+53
|
* Turn on TCP_NODELAY on the remote socket, to turn off sender silly windowfenner1998-05-171-6/+3
| | | | | | | | | syndrome avoidance. The combination of SWS avoidance and ack-every-other causes low throughput if the block size divided by the MSS is odd (which is true with the default block size and MSS). Turning on TCP_NODELAY disables the Nagle algorithm and sender SWS avoidance. The rdump request/response protocol can not invoke Nagle and cannot cause SWS, so this has no negative effects.
* Fix minor typo.steve1998-05-101-2/+2
| | | | | PR: 6571 Submitted by: Stephen J. Roznowski <sjr@home.net>
* read() and write() return ssize_t not int, so the first arg to atomic()jb1998-01-251-2/+3
| | | | should be ssize_t too.
* The default dumplevel is 0.steve1998-01-031-2/+2
| | | | | PR: 5413 Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp>
* Make this part of the 'krb' distribution.markm1997-10-241-0/+1
|
* Fix the man page description about what will go into an incrementaljoerg1997-10-191-2/+2
| | | | | | | backup. PR: docs/4785 Submitted by: Matthew Dillon
* Do not account the tape change time for ETA estimations.joerg1997-10-121-0/+6
| | | | | PR: bin/4369 Submitted by: blank@fox.uni-trier.de (Sascha Blank)
* The unit for the B option is 1 KB, not `dump records'.joerg1997-10-121-2/+2
| | | | PR: docs/4223
* Changes for the new KTH KerberosIV.markm1997-09-281-4/+8
|
* Remove the reference to the nonexistant dump(5) manpage.steve1997-08-231-2/+1
| | | | PR: docs/3704
* Add Id. Cosmetic in usage string.charnier1997-06-101-3/+6
|
* Fix a long-standing bug with dump not treating errors correctly. Theyjoerg1997-05-061-2/+4
| | | | | | | were mishandled as an EOF, which became fatal if your first tape was accidentally write-protected. PR: bin/850 dump treats write-protect as an EOT...
* Implement Kerberized rcmd for rdump/rrestore. This is lacking thewollman1997-04-294-11/+50
| | | | | | | options one would normally expect to set the realm, enable encryption, and whatnot, but this actually is able to contact the remote server, so at least it's a start. (As a bonus, the stripped static binary is unquestionably exportable.)
* Document the -a option in .Fl form instead of .Cm form to be consistantpeter1997-03-151-2/+2
| | | | | with the rest of the manpage. (Lite2 documents it in getopt form, Lite1 did it in old-style arg format)
* The -a option (autosize) option got mangled during the Lite2 merge.peter1997-03-151-3/+2
| | | | Pointed out by: Tom Jackson <tom@peeper.jackson.org>
* Merge Lite2 changes (rather bigish, the dump/restore folks should check)peter1997-03-116-181/+229
|
* This commit was generated by cvs2svn to compensate for changes in r23669,peter1997-03-111-54/+3
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import some CSRG 4.4BSD-Lite2 components for sbin onto vendor branch.peter1997-03-117-256/+239
| | | | | | | | (note that some of these have already been imported, this is a no-op)
* | Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
| |
* | Update CHANGEDSINCE macro to conform to -current dinode.hjkh1997-02-161-5/+0
| |
* | Removed default setuid and added a comment to the manpage explaining this.eivind1997-02-092-1/+7
| |
* | Add the `a' option (``auto-size'') to bypass all tape lengthjoerg1997-02-014-15/+44
| | | | | | | | considerations, and dump right to the end of medium.
* | Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | | | | | | | | | 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.
OpenPOWER on IntegriCloud