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