dump (8) Linux Manual Page
dump – ext2/3/4 filesystem backup
Synopsis
dump [–level#] [-ackMnqSuv] [-A file] [-B records] [-b blocksize] [-d density] [-D file] [-e inode numbers] [-E file] [-f file] [-F script] [-h level] [-I nr errors] [-jcompression level] [-L label] [-Q file] [-s feet] [-T date] [-y] [-zcompression level] files-to-dump
dump [-W | -w]
Description
Dump examines files on an ext2/3/4 filesystem and determines which files need to be backed up. These files are copied to the given disk, tape or other storage medium for safe keeping (see the -f option below for doing remote backups). A dump that is larger than the output medium is broken into multiple volumes. On most media the size is determined by writing until an end-of-media indication is returned.
On media that cannot reliably return an end-of-media indication (such as some cartridge tape drives), each volume is of a fixed size; the actual size is determined by specifying cartridge media, or via the tape size, density and/or block count options below. By default, the same output file name is used for each volume after prompting the operator to change media.
files-to-dump is either a mountpoint of a filesystem or a list of files and directories to be backed up as a subset of a filesystem. In the former case, either the path to a mounted filesystem or the device of an unmounted filesystem can be used. In the latter case, certain restrictions are placed on the backup: -u is not allowed, the only dump level that is supported is 0 and all the files and directories must reside on the same filesystem.
Options
The following options are supported by dump:
-level#- The dump level (any integer). A level 0, full backup, specified by
-0guarantees the entire file system is copied (but see also the-hoption below). A level number above 0, incremental backup, tellsdumpto copy all files new or modified since the last dump of a lower level. The default level is 0. Historically only levels 0 to 9 were usable in dump, this version is able to understand any integer as a dump level. -a- “auto-size”. Bypass all tape length calculations, and write until an end-of-media indication is returned. This works best for most modern tape drives, and is the default. Use of this option is particularly recommended when appending to an existing tape, or using a tape drive with hardware compression (where you can never be sure about the compression ratio).
-Aarchive_file- Archive a dump table-of-contents in the specified archive_file to be used by
restore(8) to determine whether a file is in the dump file that is being restored. -bblocksize- The number of kilobytes per dump record. The default blocksize is 10, unless the
-doption has been used to specify a tape density of 6250BPI or more, in which case the default blocksize is 32. Th maximal value is 1024. Note however that, since the IO system slices all requests into chunks ofMAXBSIZE(which can be as low as 64kB), you can experience problems withdump(8) andrestore(8) when using a higher value, depending on your kernel and/or libC versions. -Brecords- The number of 1 kB blocks per volume. Not normally required, as
dumpcan detect end-of-media. When the specified size is reached,dumpwaits for you to change the volume. This option overrides the calculation of tape size based on length and density. If compression is on this limits the size of the compressed output per volume. Multiple values may be given as a single argument separated by commas. Each value will be used for one dump volume in the order listed; ifdumpcreates more volumes than the number of values given, the last value will be used for the remaining volumes. This is useful for filling up already partially filled media (and then continuing with full size volumes on empty media) or mixing media of different sizes. -c- Change the defaults for use with a cartridge tape drive, with a density of 8000 bpi, and a length of 1700 feet. Specifying a cartridge drive overrides the end-of-media detection.
-ddensity- Set tape density to density. The default is 1600BPI. Specifying a tape density overrides the end-of-media detection.
-Dfile- Set the path name of the file storing the information about the previous full and incremental dumps. The default location is /etc/dumpdates.
-einodes- Exclude inodes from the dump. The inodes parameter is a comma separated list of inode numbers (you can use
stat(1) to find the inode number for a file or directory). -Efile- Read list of inodes to be excluded from the dump from the text file file. The file file should be an ordinary file containing inode numbers separated by newlines.
-ffile- Write the backup to file; file may be a special device file like /dev/st0 (a tape drive), /dev/rsd1c (a floppy disk drive), an ordinary file, or – (the standard output). Multiple file names may be given as a single argument separated by commas. Each file will be used for one dump volume in the order listed; if the dump requires more volumes than the number of names given, the last file name will used for all remaining volumes after prompting for media changes. If the name of the file is of the form host:file or user [at] host:file
dumpwrites to the named file on the remote host (which should already exist, dump doesn’t create a new remote file) usingrmt(8). The default path name of the remotermt(8) program is /etc/rmt; this can be overridden by the environment variableRMT. -Fscript- Run script at the end of each tape (except for the last one). The device name and the current volume number are passed on the command line. The script must return 0 if
dumpshould continue without asking the user to change the tape, 1 ifdumpshould continue but ask the user to change the tape. Any other exit code will causedumpto abort. For security reasons,dumpreverts back to the real user ID and the real group ID before running the script. -hlevel- Honor the user
nodumpflagUF_NODUMPonly for dumps at or above the given level. The default honor level is 1, so that incremental backups omit such files but full backups retain them. -Inr errors- By default,
dumpwill ignore the first 32 read errors on the file system before asking for operator intervention. You can change this using this flag to any value. This is useful when runningdumpon an active filesystem where read errors simply indicate an inconsistency between the mapping and dumping passes.- A value of 0 means that all read errors will be ignored.
-jcompression level- Compress every block to be written on the tape using bzlib library. This option will work only when dumping to a file or pipe or, when dumping to a tape drive, if the tape drive is capable of writing variable length blocks. You will need at least the 0.4b24 version of
restorein order to extract compressed tapes. Tapes written using compression will not be compatible with the BSD tape format. The (optional) parameter specifies the compression level bzlib will use. The default compression level is 2. If the optional parameter is specified, there should be no white space between the option letter and the parameter. -k- Use Kerberos authentication to talk to remote tape servers. (Only available if this option was enabled when
dumpwas compiled.) -Llabel- The user-supplied text string label is placed into the dump header, where tools like
restore(8) andfile(8) can access it. Note that this label is limited to be at mostLBLSIZE(currently 16) characters, which must include the terminating
