]> git.wh0rd.org - dump.git/blame_incremental - dump/dump.8.in
Do not put an extra space between the -j/-z parameter and the value.
[dump.git] / dump / dump.8.in
... / ...
CommitLineData
1.\" Copyright (c) 1980, 1991, 1993
2.\" Regents of the University of California.
3.\" All rights reserved.
4.\"
5.\" Redistribution and use in source and binary forms, with or without
6.\" modification, are permitted provided that the following conditions
7.\" are met:
8.\" 1. Redistributions of source code must retain the above copyright
9.\" notice, this list of conditions and the following disclaimer.
10.\" 2. Redistributions in binary form must reproduce the above copyright
11.\" notice, this list of conditions and the following disclaimer in the
12.\" documentation and/or other materials provided with the distribution.
13.\" 3. All advertising materials mentioning features or use of this software
14.\" must display the following acknowledgement:
15.\" This product includes software developed by the University of
16.\" California, Berkeley and its contributors.
17.\" 4. Neither the name of the University nor the names of its contributors
18.\" may be used to endorse or promote products derived from this software
19.\" without specific prior written permission.
20.\"
21.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31.\" SUCH DAMAGE.
32.\"
33.\" $Id: dump.8.in,v 1.38 2002/02/21 14:07:15 stelian Exp $
34.\"
35.Dd __DATE__
36.Dt DUMP 8
37.Os "dump __VERSION__"
38.Sh NAME
39.Nm dump
40.Nd ext2 filesystem backup
41.Sh SYNOPSIS
42.Nm dump
43.Op Fl 0123456789ackMnqSu
44.Op Fl A Ar file
45.Op Fl B Ar records
46.Op Fl b Ar blocksize
47.Op Fl d Ar density
48.Op Fl e Ar inode numbers
49.Op Fl E Ar file
50.Op Fl f Ar file
51.Op Fl F Ar script
52.Op Fl h Ar level
53.Op Fl I Ar nr errors
54.Op Fl j Ar compression level
55.Op Fl L Ar label
56.Op Fl Q Ar file
57.Op Fl s Ar feet
58.Op Fl T Ar date
59.Op Fl z Ar compression level
60.Ar files-to-dump
61.Nm dump
62.Op Fl W Li \&| Fl w
63.Pp
64.in
65(The
66.Bx 4.3
67option syntax is implemented for backward compatibility but
68is not documented here.)
69.Sh DESCRIPTION
70.Nm Dump
71examines files
72on an ext2 filesystem
73and determines which files
74need to be backed up. These files
75are copied to the given disk, tape or other
76storage medium for safe keeping (see the
77.Fl f
78option below for doing remote backups).
79A dump that is larger than the output medium is broken into
80multiple volumes.
81On most media the size is determined by writing until an
82end-of-media indication is returned.
83.Pp
84On media that cannot reliably return an end-of-media indication
85(such as some cartridge tape drives), each volume is of a fixed size;
86the actual size is determined by specifying cartridge media, or via the
87tape size, density and/or block count options below.
88By default, the same output file name is used for each volume
89after prompting the operator to change media.
90.Pp
91.Ar files-to-dump
92is either a mountpoint of a filesystem
93or a list of files and directories to be backed up as a subset of a
94filesystem.
95In the former case, either the path to a mounted filesystem
96or the device of an unmounted filesystem can be used.
97In the latter case, certain restrictions are placed on the backup:
98.Fl u
99is not allowed, the only dump level that is supported is
100.Fl 0
101and all the files and directories must reside on the same filesystem.
102.Pp
103The following options are supported by
104.Nm Ns :
105.Bl -tag -width Ds
106.It Fl 0\-9
107Dump levels.
108A level 0, full backup,
109guarantees the entire file system is copied
110(but see also the
111.Fl h
112option below).
113A level number above 0,
114incremental backup,
115tells
116.Nm dump
117to
118copy all files new or modified since the
119last dump of a lower level.
120The default level is 9.
121.It Fl a
122.Dq auto-size .
123Bypass all tape length calculations, and write
124until an end-of-media indication is returned. This works best
125for most modern tape drives, and is the default.
126Use of this option is particularly recommended when appending to an
127existing tape, or using a tape drive with hardware compression
128(where you can never be sure about the compression ratio).
129.It Fl A Ar archive_file
130Archive a dump table-of-contents in the
131specified
132.Ar archive_file
133to be used by
134.Xr restore 8
135to determine whether a file is in the dump file that is being restored.
136.It Fl b Ar blocksize
137The number of kilobytes per dump record.
138Since the IO system slices all requests into chunks of MAXBSIZE
139(typically 64kB), it is not possible to use a larger blocksize
140without having problems later with
141.Xr restore 8 .
142Therefore
143.Nm dump
144will constrain writes to MAXBSIZE.
145The default blocksize is 10.
146.It Fl B Ar records
147The number of 1 kB blocks per volume.
148This option overrides the end-of-media detection, and calculation
149of tape size based on length and density. If compression is on this
150limits the size of the compressed output per volume.
151.It Fl c
152Change the defaults for use with a cartridge tape drive, with a density
153of 8000 bpi, and a length of 1700 feet. Specifying a cartridge drive
154overrides the end-of-media detection.
155.It Fl d Ar density
156Set tape density to
157.Ar density .
158The default is 1600BPI. Specifying a tape density overrides the
159end-of-media detection.
160.It Fl e Ar inodes
161Exclude
162.Ar inodes
163from the dump. The
164.Ar inodes
165parameter is a comma separated list of inode numbers (you can use
166.Ar stat
167to find the inode number for a file or directory).
168.It Fl E Ar file
169Read list of inodes to be excluded from the dump from the text file
170.Ar file .
171The file
172.Ar file
173should be an ordinary file containing inode numbers separated by
174newlines.
175.It Fl f Ar file
176Write the backup to
177.Ar file ;
178.Ar file
179may be a special device file
180like
181.Pa /dev/st0
182(a tape drive),
183.Pa /dev/rsd1c
184(a floppy disk drive),
185an ordinary file,
186or
187.Ql Fl
188(the standard output).
189Multiple file names may be given as a single argument separated by commas.
190Each file will be used for one dump volume in the order listed;
191if the dump requires more volumes than the number of names given,
192the last file name will used for all remaining volumes after prompting
193for media changes.
194If the name of the file is of the form
195.Dq host:file
196or
197.Dq user@host:file
198.Nm
199writes to the named file on the remote host using
200.Xr rmt 8 .
201The default path name of the remote
202.Xr rmt 8
203program is
204.\" rmt path, is the path on the remote host
205.Pa /etc/rmt ;
206this can be overridden by the environment variable
207.Ev RMT .
208.It Fl F Ar script
209Run script at the end of each tape. The device name and the
210current volume number are passed on the command line.
211The script must return 0 if
212.Nm
213should continue without asking the user to change the tape, 1 if
214.Nm
215should continue but ask the user to change the tape.
216Any other exit code will cause
217.Nm
218to abort.
219For security reasons,
220.Nm
221reverts back to the real user ID and the real group ID before
222running the script.
223.It Fl h Ar level
224Honor the user
225.Dq nodump
226flag
227.Dp Dv UF_NODUMP
228only for dumps at or above the given
229.Ar level .
230The default honor level is 1,
231so that incremental backups omit such files
232but full backups retain them.
233.It Fl I Ar nr errors
234By default,
235.Nm
236will ignore the first 32 read errors on the file
237system before asking for operator intervention. You can change this
238using this flag to any value. This is useful when running
239.Nm
240on an active filesystem where read errors simply indicate an
241inconsistency between the mapping and dumping passes.
242.It Fl j Ar compression level
243Compress every block to be written on the tape using bzlib library. This
244option will work only when dumping to a file or pipe or, when dumping
245to a tape drive, if the tape drive is capable of writing variable
246length blocks. You will need at least the 0.4b24 version of restore in
247order to extract compressed tapes. Tapes written using compression will
248not be compatible with the BSD tape format. The (optional) parameter
249specifies the compression level bzlib will use. The default compression
250level is 2. If the optional parameter is specified, there should be no
251white space between the option letter and the parameter.
252.It Fl k
253Use Kerberos authentication to talk to remote tape servers. (Only
254available if this option was enabled when
255.Nm
256was compiled.)
257.It Fl L Ar label
258The user-supplied text string
259.Ar label
260is placed into the dump header, where tools like
261.Xr restore 8
262and
263.Xr file 1
264can access it.
265Note that this label is limited
266to be at most LBLSIZE (currently 16) characters, which must include
267the terminating
268.Ql \e0 .
269.It Fl M
270Enable the multi-volume feature. The name specified with
271.Fl f
272is treated as a prefix and
273.Nm
274writes in sequence to <prefix>001, <prefix>002 etc. This can be
275useful when dumping to files on an ext2 partition, in order to bypass
276the 2GB file size limitation.
277.It Fl n
278Whenever
279.Nm
280requires operator attention,
281notify all operators in the group
282.Dq operator
283by means similar to a
284.Xr wall 1 .
285.It Fl q
286Make
287.Nm
288abort immediately whenever operator attention is required,
289without prompting in case of write errors, tape changes etc.
290.It Fl Q Ar file
291Enable the Quick File Access support. Tape positions for each
292inode are stored into the file
293.Ar file
294which is used by restore (if called with parameter Q and the filename)
295to directly position the tape at the file restore is currently working
296on. This saves hours when restoring single files from large backups,
297saves the tapes and the drive's head.
298.Pp
299It is recommended to set up the st driver to return logical tape
300positions rather than physical before calling dump/restore with
301parameter Q. Since not all tape devices support physical tape
302positions those tape devices return an error during dump/restore when
303the st driver is set to the default physical setting.
304Please see the st man page, option MTSETDRVBUFFER, or the mt man
305page, on how to set the driver to return logical tape positions.
306.Pp
307Before calling restore with parameter Q, always make sure the st
308driver is set to return the same type of tape position used during the
309call to dump. Otherwise restore may be confused.
310.Pp
311This option can be used when dumping to local tapes (see above)
312or to local files.
313.It Fl s Ar feet
314Attempt to calculate the amount of tape needed at a particular density.
315If this amount is exceeded,
316.Nm
317prompts for a new tape.
318It is recommended to be a bit conservative on this option.
319The default tape length is 2300 feet. Specifying the tape size
320overrides end-of-media detection.
321.ne 1i
322.It Fl S
323Size estimate. Determine the amount of space
324that is needed to perform the dump without
325actually doing it, and display the estimated
326number of bytes it will take. This is useful
327with incremental dumps to determine how many
328volumes of media will be needed.
329.It Fl T Ar date
330Use the specified date as the starting time for the dump
331instead of the time determined from looking in
332.Pa __DUMPDATES__ .
333The format of
334.Ar date
335is the same as that of
336.Xr ctime 3 .
337This option is useful for automated dump scripts that wish to
338dump over a specific period of time.
339The
340.Fl T
341option is mutually exclusive from the
342.Fl u
343option.
344.It Fl u
345Update the file
346.Pa __DUMPDATES__
347after a successful dump.
348The format of
349.Pa __DUMPDATES__
350is readable by people, consisting of one
351free format record per line:
352filesystem name,
353increment level
354and
355.Xr ctime 3
356format dump date.
357There may be only one entry per filesystem at each level.
358The file
359.Pa __DUMPDATES__
360may be edited to change any of the fields,
361if necessary.
362.It Fl W
363.Nm Dump
364tells the operator what file systems need to be dumped.
365This information is gleaned from the files
366.Pa __DUMPDATES__
367and
368.Pa /etc/fstab .
369The
370.Fl W
371option causes
372.Nm
373to print out, for all file systems in
374.Pa __DUMPDATES__ ,
375and regognized file systems in
376.Pa /etc/fstab .
377the most recent dump date and level,
378and highlights those that should be dumped.
379If the
380.Fl W
381option is set, all other options are ignored, and
382.Nm
383exits immediately.
384.It Fl w
385Is like
386.Fl W ,
387but prints only recognized filesystems in
388.Pa /etc/fstab
389which need to be dumped.
390.It Fl z Ar compression level
391Compress every block to be written on the tape using zlib library. This
392option will work only when dumping to a file or pipe or, when dumping
393to a tape drive, if the tape drive is capable of writing variable
394length blocks. You will need at least the 0.4b22 version of restore in
395order to extract compressed tapes. Tapes written using compression will
396not be compatible with the BSD tape format. The (optional) parameter
397specifies the compression level zlib will use. The default compression
398level is 2. If the optional parameter is specified, there should be no
399white space between the option letter and the parameter.
400.El
401.Pp
402.Nm Dump
403requires operator intervention on these conditions:
404end of tape,
405end of dump,
406tape write error,
407tape open error or
408disk read error (if there is more than a threshold of nr errors).
409In addition to alerting all operators implied by the
410.Fl n
411key,
412.Nm
413interacts with the operator on
414.Em dump's
415control terminal at times when
416.Nm
417can no longer proceed,
418or if something is grossly wrong.
419All questions
420.Nm
421poses
422.Em must
423be answered by typing
424.Dq yes
425or
426.Dq no ,
427appropriately.
428.Pp
429Since making a dump involves a lot of time and effort for full dumps,
430.Nm
431checkpoints itself at the start of each tape volume.
432If writing that volume fails for some reason,
433.Nm
434will,
435with operator permission,
436restart itself from the checkpoint
437after the old tape has been rewound and removed,
438and a new tape has been mounted.
439.Pp
440.Nm Dump
441tells the operator what is going on at periodic intervals,
442including usually low estimates of the number of blocks to write,
443the number of tapes it will take, the time to completion, and
444the time to the tape change.
445The output is verbose,
446so that others know that the terminal
447controlling
448.Nm
449is busy,
450and will be for some time.
451.Pp
452In the event of a catastrophic disk event, the time required
453to restore all the necessary backup tapes or files to disk
454can be kept to a minimum by staggering the incremental dumps.
455An efficient method of staggering incremental dumps
456to minimize the number of tapes follows:
457.Bl -bullet -offset indent
458.It
459Always start with a level 0 backup, for example:
460.Bd -literal -offset indent
461/sbin/dump -0u -f /dev/st0 /usr/src
462.Ed
463.Pp
464This should be done at set intervals, say once a month or once every two months,
465and on a set of fresh tapes that is saved forever.
466.It
467After a level 0, dumps of active file
468systems are taken on a daily basis,
469using a modified Tower of Hanoi algorithm,
470with this sequence of dump levels:
471.Bd -literal -offset indent
4723 2 5 4 7 6 9 8 9 9 ...
473.Ed
474.Pp
475For the daily dumps, it should be possible to use a fixed number of tapes
476for each day, used on a weekly basis.
477Each week, a level 1 dump is taken, and
478the daily Hanoi sequence repeats beginning with 3.
479For weekly dumps, another fixed set of tapes per dumped file system is
480used, also on a cyclical basis.
481.El
482.Pp
483After several months or so, the daily and weekly tapes should get
484rotated out of the dump cycle and fresh tapes brought in.
485.Sh ENVIRONMENT
486.Bl -tag -width Fl
487.It Ev TAPE
488If no -f option was specified,
489.Nm
490will use the device specified via
491.Ev TAPE
492as the dump device.
493.Ev TAPE
494may be of the form
495.Qq tapename ,
496.Qq host:tapename ,
497or
498.Qq user@host:tapename .
499.It Ev RMT
500The environment variable
501.Ev RMT
502will be used to determine the pathname of the remote
503.Xr rmt 8
504program.
505.It Ev RSH
506.Nm Dump
507uses the contents of this variable to determine the name of the
508remote shell command to use when doing remote backups (rsh, ssh etc.).
509If this variable is not set,
510.Xr rcmd 3
511will be used, but only root will be able to do remote backups.
512.El
513.Sh FILES
514.Bl -tag -width __DUMPDATES__ -compact
515.It Pa /dev/st0
516default tape unit to dump to
517.It Pa __DUMPDATES__
518dump date records
519.It Pa /etc/fstab
520dump table: file systems and frequency
521.It Pa /etc/group
522to find group
523.Em operator
524.El
525.Sh SEE ALSO
526.Xr fstab 5 ,
527.Xr restore 8 ,
528.Xr rmt 8
529.Sh DIAGNOSTICS
530Many, and verbose.
531.Pp
532.Nm Dump
533exits with zero status on success.
534Startup errors are indicated with an exit code of 1;
535abnormal termination is indicated with an exit code of 3.
536.Sh BUGS
537It might be considered a bug that this version of dump can only handle ext2
538filesystems. Specifically, it does not work with FAT filesystems.
539.Pp
540Fewer than 32 read errors (change this with -I)
541on the filesystem are ignored. If noticing
542read errors is important, the output from dump can be parsed to look for lines
543that contain the text 'read error'.
544.Pp
545Each reel requires a new process, so parent processes for
546reels already written just hang around until the entire tape
547is written.
548.Pp
549The estimated number of tapes is not correct if compression is on.
550.Pp
551It would be nice if
552.Nm
553knew about the dump sequence,
554kept track of the tapes scribbled on,
555told the operator which tape to mount when,
556and provided more assistance
557for the operator running
558.Xr restore .
559.Pp
560.Nm Dump
561cannot do remote backups without being run as root, due to its
562security history.
563Presently, it works if you set it setuid (like it used to be), but this
564might constitute a security risk. Note that you can set RSH to use
565a remote shell program instead.
566.Sh AUTHOR
567The
568.Nm dump/restore
569backup suite was ported to Linux's Second Extended File System
570by Remy Card <card@Linux.EU.Org>. He maintained the initial versions
571of dump (up and including 0.4b4, released in january 1997).
572.Pp
573Starting with 0.4b5, the new maintainer is Stelian Pop
574.br
575<stelian@popies.net>.
576.Sh AVAILABILITY
577The
578.Nm dump/restore
579backup suite is available from
580.br
581http://dump.sourceforge.net
582.Sh HISTORY
583A
584.Nm
585command appeared in
586.At v6 .