]> git.wh0rd.org - dump.git/blame_incremental - dump/dump.8.in
Added the DT_* constants again, old libc sucks
[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.3 1999/10/13 09:57:19 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 0123456789acknu
44.Op Fl B Ar records
45.Op Fl b Ar blocksize
46.Op Fl d Ar density
47.Op Fl f Ar file
48.Op Fl h Ar level
49.Op Fl L Ar label
50.Op Fl s Ar feet
51.Op Fl T Ar date
52.Ar filesystem
53.Nm dump
54.Op Fl 0123456789acknu
55.Op Fl B Ar records
56.Op Fl b Ar blocksize
57.Op Fl d Ar density
58.Op Fl f Ar file
59.Op Fl h Ar level
60.Op Fl L Ar label
61.Op Fl s Ar feet
62.Op Fl T Ar date
63.Ar directory
64.Nm dump
65.Op Fl W Li \&| Fl w
66.Pp
67.in
68(The
69.Bx 4.3
70option syntax is implemented for backward compatibility but
71is not documented here.)
72.Sh DESCRIPTION
73.Nm Dump
74examines files
75on an ext2 filesystem
76and determines which files
77need to be backed up. These files
78are copied to the given disk, tape or other
79storage medium for safe keeping (see the
80.Fl f
81option below for doing remote backups).
82A dump that is larger than the output medium is broken into
83multiple volumes.
84On most media the size is determined by writing until an
85end-of-media indication is returned. This can be enforced
86by using the
87.Fl a
88option.
89.Pp
90On media that cannot reliably return an end-of-media indication
91(such as some cartridge tape drives),
92each volume is of a fixed size;
93the actual size is determined by the tape size, density and/or
94block count options below.
95By default, the same output file name is used for each volume
96after prompting the operator to change media.
97.Pp
98The following options are supported by
99.Nm Ns :
100.Bl -tag -width Ds
101.It Fl 0\-9
102Dump levels.
103A level 0, full backup,
104guarantees the entire file system is copied
105(but see also the
106.Fl h
107option below).
108A level number above 0,
109incremental backup,
110tells
111.Nm dump
112to
113copy all files new or modified since the
114last dump of the same or lower level.
115The default level is 9.
116.It Fl B Ar records
117The number of 1 KB blocks per volume.
118This option overrides the calculation of tape size
119based on length and density.
120.It Fl a
121.Dq auto-size .
122Bypass all tape length considerations, and enforce writing
123until an end-of-media indication is returned. This fits best
124for most modern tape drives. Use of this option is particularly
125recommended when appending to an existing tape, or using a tape
126drive with hardware compression (where you can never be sure about
127the compression ratio).
128.It Fl b Ar blocksize
129The number of kilobytes per dump record.
130Since the IO system slices all requests into chunks of MAXBSIZE
131(typically 64KB), it is not possible to use a larger blocksize
132without having problems later with
133.Xr restore 8 .
134Therefore
135.Nm dump
136will constrain writes to MAXBSIZE.
137.It Fl c
138Change the defaults for use with a cartridge tape drive, with a density
139of 8000 bpi, and a length of 1700 feet.
140.It Fl h Ar level
141Honor the user
142.Dq nodump
143flag
144.Dp Dv UF_NODUMP
145only for dumps at or above the given
146.Ar level .
147The default honor level is 1,
148so that incremental backups omit such files
149but full backups retain them.
150.It Fl d Ar density
151Set tape density to
152.Ar density .
153The default is 1600BPI.
154.It Fl f Ar file
155Write the backup to
156.Ar file ;
157.Ar file
158may be a special device file
159like
160.Pa /dev/st0
161(a tape drive),
162.Pa /dev/rsd1c
163(a floppy disk drive),
164an ordinary file,
165or
166.Ql Fl
167(the standard output).
168Multiple file names may be given as a single argument separated by commas.
169Each file will be used for one dump volume in the order listed;
170if the dump requires more volumes than the number of names given,
171the last file name will used for all remaining volumes after prompting
172for media changes.
173If the name of the file is of the form
174.Dq host:file
175or
176.Dq user@host:file
177.Nm
178writes to the named file on the remote host using
179.Xr rmt 8 .
180The default path name of the remote
181.Xr rmt 8
182program is
183.\" rmt path, is the path on the remote host
184.Pa /etc/rmt ;
185this can be overridden by the environment variable
186.Ev RMT .
187.It Fl k
188Use Kerberos authentication to talk to remote tape servers. (Only
189available if this option was enabled when
190.Nm
191was compiled.)
192.It Fl L Ar label
193The user-supplied text string
194.Ar label
195is placed into the dump header, where tools like
196.Xr restore 8
197and
198.Xr file 1
199can access it.
200Note that this label is limited
201to be at most LBLSIZE (currently 16) characters, which must include
202the terminating
203.Ql \e0 .
204.It Fl n
205Whenever
206.Nm
207requires operator attention,
208notify all operators in the group
209.Dq operator
210by means similar to a
211.Xr wall 1 .
212.It Fl s Ar feet
213Attempt to calculate the amount of tape needed
214at a particular density.
215If this amount is exceeded,
216.Nm
217prompts for a new tape.
218It is recommended to be a bit conservative on this option.
219The default tape length is 2300 feet.
220.ne 1i
221.It Fl T Ar date
222Use the specified date as the starting time for the dump
223instead of the time determined from looking in
224.Pa __DUMPDATES__ .
225The format of
226.Ar date
227is the same as that of
228.Xr ctime 3 .
229This option is useful for automated dump scripts that wish to
230dump over a specific period of time.
231The
232.Fl T
233option is mutually exclusive from the
234.Fl u
235option.
236.It Fl u
237Update the file
238.Pa __DUMPDATES__
239after a successful dump.
240The format of
241.Pa __DUMPDATES__
242is readable by people, consisting of one
243free format record per line:
244filesystem name,
245increment level
246and
247.Xr ctime 3
248format dump date.
249There may be only one entry per filesystem at each level.
250The file
251.Pa __DUMPDATES__
252may be edited to change any of the fields,
253if necessary.
254.It Fl W
255.Nm Dump
256tells the operator what file systems need to be dumped.
257This information is gleaned from the files
258.Pa __DUMPDATES__
259and
260.Pa /etc/fstab .
261The
262.Fl W
263option causes
264.Nm
265to print out, for each file system in
266.Pa __DUMPDATES__ ,
267the most recent dump date and level,
268and highlights those file systems that should be dumped.
269If the
270.Fl W
271option is set, all other options are ignored, and
272.Nm
273exits immediately.
274.It Fl w
275Is like
276.Fl W ,
277but prints only those filesystems which need to be dumped.
278.El
279.Pp
280.Nm Dump
281requires operator intervention on these conditions:
282end of tape,
283end of dump,
284tape write error,
285tape open error or
286disk read error (if there is more than a threshold of 32).
287In addition to alerting all operators implied by the
288.Fl n
289key,
290.Nm
291interacts with the operator on
292.Em dump's
293control terminal at times when
294.Nm
295can no longer proceed,
296or if something is grossly wrong.
297All questions
298.Nm
299poses
300.Em must
301be answered by typing
302.Dq yes
303or
304.Dq no ,
305appropriately.
306.Pp
307Since making a dump involves a lot of time and effort for full dumps,
308.Nm
309checkpoints itself at the start of each tape volume.
310If writing that volume fails for some reason,
311.Nm
312will,
313with operator permission,
314restart itself from the checkpoint
315after the old tape has been rewound and removed,
316and a new tape has been mounted.
317.Pp
318.Nm Dump
319tells the operator what is going on at periodic intervals,
320including usually low estimates of the number of blocks to write,
321the number of tapes it will take, the time to completion, and
322the time to the tape change.
323The output is verbose,
324so that others know that the terminal
325controlling
326.Nm
327is busy,
328and will be for some time.
329.Pp
330In the event of a catastrophic disk event, the time required
331to restore all the necessary backup tapes or files to disk
332can be kept to a minimum by staggering the incremental dumps.
333An efficient method of staggering incremental dumps
334to minimize the number of tapes follows:
335.Bl -bullet -offset indent
336.It
337Always start with a level 0 backup, for example:
338.Bd -literal -offset indent
339/sbin/dump -0u -f /dev/st0 /usr/src
340.Ed
341.Pp
342This should be done at set intervals, say once a month or once every two months,
343and on a set of fresh tapes that is saved forever.
344.It
345After a level 0, dumps of active file
346systems are taken on a daily basis,
347using a modified Tower of Hanoi algorithm,
348with this sequence of dump levels:
349.Bd -literal -offset indent
3503 2 5 4 7 6 9 8 9 9 ...
351.Ed
352.Pp
353For the daily dumps, it should be possible to use a fixed number of tapes
354for each day, used on a weekly basis.
355Each week, a level 1 dump is taken, and
356the daily Hanoi sequence repeats beginning with 3.
357For weekly dumps, another fixed set of tapes per dumped file system is
358used, also on a cyclical basis.
359.El
360.Pp
361After several months or so, the daily and weekly tapes should get
362rotated out of the dump cycle and fresh tapes brought in.
363.Sh ENVIRONMENT
364.Bl -tag -width Fl
365.It Ev TAPE
366If no -f option was specified,
367.Nm
368will use the device specified via
369.Ev TAPE
370as the dump device.
371.Ev TAPE
372may be of the form
373.Qq tapename ,
374.Qq host:tapename ,
375or
376.Qq user@host:tapename .
377.It Ev RMT
378The environment variable
379.Ev RMT
380will be used to determine the pathname of the remote
381.Xr rmt 8
382program.
383.Sh FILES
384.Bl -tag -width __DUMPDATES__ -compact
385.It Pa /dev/st0
386default tape unit to dump to
387.It Pa __DUMPDATES__
388dump date records
389.It Pa /etc/fstab
390dump table: file systems and frequency
391.It Pa /etc/group
392to find group
393.Em operator
394.El
395.Sh SEE ALSO
396.Xr fstab 5 ,
397.Xr restore 8 ,
398.Xr rmt 8
399.Sh DIAGNOSTICS
400Many, and verbose.
401.Pp
402.Nm Dump
403exits with zero status on success.
404Startup errors are indicated with an exit code of 1;
405abnormal termination is indicated with an exit code of 3.
406.Sh BUGS
407It might be considered a bug that this version of dump can only handle ext2
408filesystems. Specifically, it does not work with FAT filesystems.
409.Pp
410Fewer than 32 read errors on the filesystem are ignored. If noticing
411read errors is important, the output from dump can be parsed to look for lines
412that contain the text 'read error'.
413.Pp
414Each reel requires a new process, so parent processes for
415reels already written just hang around until the entire tape
416is written.
417.Pp
418.Nm Dump
419with the
420.Fl W
421or
422.Fl w
423option does not report filesystems that have never been recorded
424in
425.Pa __DUMPDATES__ ,
426even if listed in
427.Pa /etc/fstab .
428.Pp
429It would be nice if
430.Nm
431knew about the dump sequence,
432kept track of the tapes scribbled on,
433told the operator which tape to mount when,
434and provided more assistance
435for the operator running
436.Xr restore .
437.Pp
438.Nm Dump
439cannot do remote backups without being run as root, due to its
440security history. This will be fixed in a later version of
441.Bx Free .
442Presently, it works if you set it setuid (like it used to be), but this
443might constitute a security risk.
444.Sh AUTHOR
445The
446.Nm dump/restore
447backup suit was ported to Linux's Second Extended File System
448by Remy Card <card@Linux.EU.Org>. He maintained the initial versions
449of dump (up and including 0.4b4, released in january 1997).
450.Pp
451Starting with 0.4b5, the new maintainer is Stelian Pop
452.br
453<pop@cybercable.fr>.
454.Sh AVAILABILITY
455The
456.Nm dump/restore
457backup suit is available for anonymous ftp from tsx-11.mit.edu
458in /pub/linux/ALPHA/ext2fs (development versions) or
459/pub/linux/packages/ext2fs (stable versions).
460.Pp
461An alternate downloading location is http://perso.cybercable.fr/pop/dump.
462.Sh HISTORY
463A
464.Nm
465command appeared in
466.At v6 .