aboutsummaryrefslogtreecommitdiff
path: root/sbin/dump/dump.8
Commit message (Collapse)AuthorAgeFilesLines
* Clarify that the -r and -R options can be used only to create level 0 dumps.Kirk McKusick2019-06-141-1/+13
| | | | | | | | Suggested by: phk MFC after: 3 days Notes: svn path=/head/; revision=349032
* Revert size limits.Warner Losh2018-06-111-5/+0
| | | | | | | | | The size limits came from a flawed understanding of dump records. The real issue was that dump was bogusly interpreting c_count sometimes. r334978 fixes that. Notes: svn path=/head/; revision=334980
* Document the newly enforced 524288 inode restriction.Warner Losh2018-06-111-1/+6
| | | | Notes: svn path=/head/; revision=334971
* Renumber copyright clause 4Warner Losh2017-02-281-1/+1
| | | | | | | | | | | | 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 Notes: svn path=/head/; revision=314436
* dump(8) first appeared in V4 UNIXSevan Janiyan2016-10-021-2/+2
| | | | | | | | | | | | | http://minnie.tuhs.org/cgi-bin/utree.pl?file=V4/man/man8 PR: 212444 Approved by: bcr (mentor) Obtained from: TUHS MFC after: 4 days Differential Revision: https://reviews.freebsd.org/D8105 Notes: svn path=/head/; revision=306600
* mdoc: move two sentences from synopsis to description (where they reallyJoel Dahl2012-05-231-10/+8
| | | | | | | belong). With this change, mandoc now formats these manpages properly. Notes: svn path=/head/; revision=235837
* When using dump to generate level 0 dumps which are then rsync'edKirk McKusick2008-05-231-1/+22
| | | | | | | | | | | | | | | to a remote machine, the fact that the dump date is stored with each header (inode) record makes rsync significantly less efficient than necessary. This also applies to inode access times when they are not important data to retain. When implementing an offsite backup solution of this type, these dates in particular are not important, especially if it prevents effective offsite backups. PR: bin/91049 Submitted by: Forrest W Christian <fwc@mt.net> Notes: svn path=/head/; revision=179267
* Markup fixes.Ruslan Ermilov2006-09-181-7/+11
| | | | Notes: svn path=/head/; revision=162395
* Clarify documentation of '-L' command line switch: the snapshot isThomas Quinot2006-08-161-1/+2
| | | | | | | | | | | | unlinked as soon as the dump starts (and removed when the dump is completed, and the dump process exits). Previous wording was confusing because users might expect the snapshot to be visible in the .snap subdirectory while dump is running. MFC after: 1 week Notes: svn path=/head/; revision=161362
* Revert a minor glitch of revision 1.69Giorgos Keramidas2006-02-241-2/+2
| | | | | | | | Submitted by: Andriy Tkachuk <andrit@ukr.net> X-MFC after: RE approval Notes: svn path=/head/; revision=155981
* Add the example that green@ used in his commit log for the dump to aWarner Losh2005-12-231-1/+8
| | | | | | | | pipe functionality. I've done a cvs log main.c about a dozen times now. Maybe others will find this useful. Notes: svn path=/head/; revision=153674
* Correct the description of the TAPE environment variable.Ceri Davies2005-07-311-1/+5
| | | | | | | | | | | Based on: PR: docs/84200 Submitted by: Gary W. Swearingen <garys at opusnet dot com> MFC after: 1 week Notes: svn path=/head/; revision=148600
* Improved error checking for existence of a .snap directory toWes Peters2005-01-211-3/+3
| | | | | | | | | | | generate snapshots in when -L is requested. If the .snap directory does not exist, or is not a directory, issue a warning and revert to the non- live behavior. Obtained from: St. Bernard Software RAPID Notes: svn path=/head/; revision=140602
* Sort sections.Ruslan Ermilov2005-01-181-11/+11
| | | | Notes: svn path=/head/; revision=140415
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Assorted markup, grammar, and spelling fixes.Ruslan Ermilov2004-05-171-14/+24
| | | | Notes: svn path=/head/; revision=129327
* Add -P arguments for dump(8) and restore(8) which allow the user toBrian Feldman2004-04-131-1/+23
| | | | | | | | | | | | | | use backup methods other than files and tapes. The -P argument is a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME defined in the environment, respectively. For example, I can back up my home to three DVD+R[W]s as so: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s2e 40028550 10093140 26733126 27% /home green# dump -0 -L -C16 -B4589840 -P 'growisofs -Z /dev/cd0=/dev/fd/0' /home Notes: svn path=/head/; revision=128175
* Improve the warnings for dump -L and do not bother doing the snapshot ifBrian Feldman2004-04-121-0/+1
| | | | | | | | | | it is specified for read-only filesystems. Submitted by: Jason Young <jyoung8607@hotmail.com> PR: 46672 Notes: svn path=/head/; revision=128166
* Remove advertising clause from University of California Regent's license,Mark Murray2004-04-091-4/+0
| | | | | | | | | per letter dated July 22, 1999. Approved by: core, imp Notes: svn path=/head/; revision=128073
* Add RSH to the list of enviroment variables.Alexander Langer2004-01-151-0/+3
| | | | Notes: svn path=/head/; revision=124551
* Document that the live dump command (`dump -L') creates its snapshotKirk McKusick2003-11-181-1/+12
| | | | | | | | | | in the .snap directory in the root of the filesystem being dumped. Document that if the .snap directory is missing that it must be created manually and that it should be owned by user root and group operator and set to mode 770 before a live dump can be run. Notes: svn path=/head/; revision=122874
* - add explanation of what an active file system isKen Smith2003-11-051-2/+14
| | | | | | | | | | | - explain the reason for permitting 32 read errors for a dump PR: docs/35602 and docs/35607 Reviewed by: jhb Approved by: blackend (mentor) Notes: svn path=/head/; revision=122140
* Remove reference to max block size. dump no longer limits the block size.Greg Lehey2003-07-141-13/+1
| | | | Notes: svn path=/head/; revision=117533
* Add section number to .XrPhilippe Charnier2003-06-081-1/+1
| | | | Notes: svn path=/head/; revision=116035
* Removed all vestiges of KerberosIV.Ruslan Ermilov2003-05-011-1/+1
| | | | Notes: svn path=/head/; revision=114463
* De-Kerberise (KerberosIV). KerberosIV is no longer present, andMark Murray2003-05-011-6/+0
| | | | | | | | remote backups can still be done with Kerberos authentication using SSH and Kerberos 5. Notes: svn path=/head/; revision=114452
* Sort options.Ruslan Ermilov2003-02-231-23/+36
| | | | Notes: svn path=/head/; revision=111287
* Add a caching option to dump. Use -C. Note that NetBSD has a caching optionMatthew Dillon2003-01-131-0/+11
| | | | | | | | | | | | | | | | | | | | | | called -r but it takes 512 byte blocks instead of megabytes, and I felt a megabytes specification would be far more useful so I did not use the same option character. This will *greatly* improve dump performance at the cost of possibly missing filesystem changes that occur between passes, and does a fairly good job making up for the loss of buffered block devices. Caching is disabled by default to retain historical behavior. In tests, dump performance improved by about 40% when dumping / or /usr. Beware that dump forks and the cache may wind up being larger then you specify, but a more complex shared memory implementation would not produce results that are all that much better so I kept it simple for now. MFC after: 3 days Notes: svn path=/head/; revision=109187
* Add TAPE to the ENVIRONMENT section and standardize the section, using aSheldon Hearn2003-01-101-3/+6
| | | | | | | | | list instead of prose. MFC after: 1 month Notes: svn path=/head/; revision=109067
* Fixed the abuses of .Ql visible on stderr in troff mode.Ruslan Ermilov2002-12-231-1/+1
| | | | | | | PR: docs/37176 Notes: svn path=/head/; revision=108221
* Uniformly refer to a file system as "file system".Ruslan Ermilov2002-12-121-2/+2
| | | | | | | Approved by: re Notes: svn path=/head/; revision=107788
* Add the `L' option to dump to notify it that it is dumping aKirk McKusick2002-12-031-1/+10
| | | | | | | | | | | | | | | | | | live filesystem. To obtain a consistent dump image, dump takes a snapshot of the filesystem and then does a dump of the snapshot. The snapshot is removed when the dump is complete. Also add an operator warning that the `L' option should be used if dump is run on a live filesystem without the `L' option being specified. The alternative would be to silently use a snapshot any time that a live filesystem is dumped, but this change in dump semantics seemed too drastic at this time. Sponsored by: DARPA & NAI Labs. Approved by: re Notes: svn path=/head/; revision=107559
* Fix some 'SYNOPSIS' and 'usage' messages.Tom Rhodes2002-08-271-1/+1
| | | | Notes: svn path=/head/; revision=102464
* Fix SynopsisTom Rhodes2002-08-261-1/+1
| | | | Notes: svn path=/head/; revision=102446
* s/filesystem/file system/g as discussed on -developersTom Rhodes2002-08-211-17/+17
| | | | Notes: svn path=/head/; revision=102231
* The .Nm utilityPhilippe Charnier2002-07-061-13/+17
| | | | Notes: svn path=/head/; revision=99501
* mdoc(7) police: nits.Ruslan Ermilov2002-05-291-1/+2
| | | | Notes: svn path=/head/; revision=97474
* dump(8)'s manual page is confusing in its use of records, blocks,Tom Rhodes2002-04-171-13/+26
| | | | | | | | | | | | | | blocksizes, etc does not give the default of -b only mentiones rdump in the NAME section uses both filesystem and file system in similar contexts PR: 34248 Submitted by: Gary W. Swearingen <swear@blarg.net> MFC after: 3 days Notes: svn path=/head/; revision=94911
* mdoc(7) police: tiny fixes.Ruslan Ermilov2002-03-151-2/+3
| | | | Notes: svn path=/head/; revision=92334
* Add a new "-S" flag to dump to allow it just print out dump estimateIan Dowse2002-03-011-2/+5
| | | | | | | | | | | | size and then exit. PR: bin/35450 Submitted by: Mark Hannon <markhannon@optushome.com.au> Obtained from: NetBSD MFC after: 1 week Notes: svn path=/head/; revision=91540
* On receipt of a SIGINFO, schedule an immediate printout of theIan Dowse2002-02-161-1/+2
| | | | | | | | | | percentage complete and remaining time estimate. PR: bin/32138 Submitted by: mi Notes: svn path=/head/; revision=90742
* Make it clear that dump(8)'s honoring of the UF_NODUMP flag is subjectDima Dorfman2002-02-101-12/+6
| | | | | | | | | | to the -h option. While here, xref chflags(1). PR: 33907 Submitted by: Gary W. Swearingen <swear@blarg.net> Notes: svn path=/head/; revision=90492
* Sort options in DESCRIPTION.Dima Dorfman2001-07-151-14/+14
| | | | Notes: svn path=/head/; revision=79762
* Bump date for addition of -D.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79761
* Remove whitespace at EOL.Dima Dorfman2001-07-151-1/+1
| | | | Notes: svn path=/head/; revision=79754
* mdoc(7) police: removed HISTORY info from the .Os call.Ruslan Ermilov2001-07-101-1/+1
| | | | Notes: svn path=/head/; revision=79530
* mdoc(7) police:Ruslan Ermilov2001-07-101-11/+25
| | | | | | | | Restored .Pa for ``dumpdates'' (it's still a file). Also, removed duplicate ``file'' words. Notes: svn path=/head/; revision=79520
* Add manual page and usage for dump -D (supplied by Dima Dorfman) (will alsoMatthew Dillon2001-07-091-8/+21
| | | | | | | | | be MFC'd) Submitted by: Dima Dorfman <dima@unixfreak.org> Notes: svn path=/head/; revision=79442
* bye-bye documented raw devicesDavid E. O'Brien2001-03-091-3/+3
| | | | Notes: svn path=/head/; revision=74028
* Support inheritance of the "nodump" flag down a hierarchy.David E. O'Brien2001-03-031-0/+16
| | | | | | | | Submitted by: Dima Dorfman <dima@unixfreak.org> Obtained from: NetBSD Notes: svn path=/head/; revision=73375