38.5.2. Backing Up to Tape
Assuming you know
what files or directories to back up,
you're ready to roll. The tar
command can be used directly, as we saw in Section 39.2, to make a backup. For example, the command:
tar cvf /dev/rft0 /usr/src /etc /home
archives all of the files from /usr/src,
/etc, and /home to
/dev/rft0. /dev/rft0 is the
first "floppy-tape"
device -- that is, for the type of tape drive that hangs off of
the floppy controller. Many popular tape drives for the PC use this
interface. If you have a SCSI tape drive, the device names are
/dev/st0, /dev/st1, and so
on, based on the drive number. Those tape drives with another type of
interface have their own device names; you can determine these by
looking at the documentation for the device driver in the kernel.
You can then read the archive back from the tape using a command such
as:
tar xvf /dev/rft0
This is exactly as if you were dealing with a tar file on disk, as in
Section 39.2.
When you use the tape drive, the tape is seen as a stream that may be
read from or written to in one direction only. Once
tar is done, the tape device will be closed, and
the tape will rewind (if you're using the default
tape device; see below on how to prevent this). You
don't create a filesystem on a tape, nor do you
mount it or attempt to access the data on it as files. You simply
treat the tape device itself as a single
"file" to create or extract
archives from.
Be sure your tapes are formatted before
you use them if you are using a tape drive that needs it. This
ensures that the beginning-of-tape marker and bad-blocks information
has been written to the tape. At the time of this writing, no tools
exist for formatting QIC-80 tapes (those used with
floppy tape drivers) under Linux; you'll have to
format tapes under MS-DOS or use preformatted
tapes.
Creating one tar file per tape might be wasteful if the archive
requires a fraction of the capacity of the tape. To place more than
one file on a tape, you must first prevent the tape from rewinding
after each use, and you must have a way to position the tape to the
next "file marker," both for tar
file creation and for extraction.
The way to do this is to use the
nonrewinding tape devices, which are named
/dev/nrft0, /dev/nrft1, and
so on for floppy-tape drivers, and /dev/nrst0,
/dev/nrst1, and so on for SCSI tapes. When this
device is used for reading or writing, the tape will not be rewound
when the device is closed (that is, once tar has
completed). You can then use tar again to add
another archive to the tape. The two tar files on the tape
won't have anything to do with each other. Of
course, if you later overwrite the first tar file, you may overwrite
the second file or leave an undesirable gap between the first and
second files (which may be interpreted as garbage). In general,
don't attempt to replace just one file on a tape
that has multiple files on it.
Using the nonrewinding tape device, you can add as many files to the
tape as space permits. To rewind the tape after use, use the
mt command. mt is a
general-purpose command that performs a number of functions with the
tape drive. For example, the command:
mt /dev/nrft0 rewind
rewinds the tape in the first floppy-tape device. (In this case, you
can use the corresponding rewinding tape device as well; however, the
tape will rewind just as a side effect of the tape device being
closed.)
Similarly, the command:
mt /dev/nrft0 reten
retensions the tape by winding it to the end and then rewinding it.
When reading
files on a multiple-file tape, you must use the nonrewinding tape
device with tar and the mt
command to position the tape to the appropriate file.
For example, to skip to the next file on the tape, use the command:
mt /dev/nrft0 fsf 1
This skips over one file on the tape. Similarly, to skip over two
files, use:
mt /dev/nrft0 fsf 2
Be sure to use the appropriate nonrewinding tape device with
mt. Note that this command does not move to
"file number two" on the tape; it
skips over the next two files based on the current tape position.
Just use mt to rewind the tape if
you're not sure where the tape is currently
positioned. You can also skip back; see the mt
manual page for a complete list of options.
You need to use mt every time you read a multifile
tape. Using tar twice in succession to read two
archive files usually won't work; this is because
tar doesn't recognize the file
marker placed on the tape between files. Once the first
tar finishes, the tape is positioned at the
beginning of the file marker. Using tar
immediately will give you an error message, because
tar will attempt to read the file marker. After
reading one file from a tape, just use:
mt device fsf 1
to move to the next file.