Tape device in linux

Chapter 24. Managing tape devices

A tape device is a magnetic tape where data is stored and accessed sequentially. Data is written to this tape device with the help of a tape drive. There is no need to create a file system in order to store data on a tape device. Tape drives can be connected to a host computer with various interfaces like, SCSI, FC, USB, SATA, and other interfaces.

24.1. Types of tape devices

The following is a list of the different types of tape devices:

  • /dev/st0 is a rewinding tape device.
  • /dev/nst0 is a non-rewinding tape device. Use non-rewinding devices for daily backups.

There are several advantages to using tape devices. They are cost efficient and stable. Tape devices are also resilient against data corruption and are suitable for data retention.

24.2. Installing tape drive management tool

Use the mt command to wind the data back and forth. The mt utility controls magnetic tape drive operations and the st utility is used for SCSI tape driver. This procedure describes how to install the mt-st package for tape drive operations.

Additional resources

24.3. Writing to rewinding tape devices

A rewind tape device rewinds the tape after every operation. To back up data, you can use the tar command. By default, in tape devices the block size is 10KB ( bs=10k ). You can set the TAPE environment variable using the export TAPE= /dev/st0 attribute. Use the -f device option instead, to specify the tape device file. This option is useful when you use more than one tape device.

Читайте также:  Gpg command in linux

Prerequisites

  1. You have installed the mt-st package. For more information, see Installing tape drive management tool.
  2. Load the tape drive:
# mt -f /dev/st0 status SCSI 2 tape drive: File number=-1, block number=-1, partition=0. Tape block size 0 bytes. Density code 0x0 (default). Soft error count since last status=0 General status bits on (50000): DR_OPEN IM_REP_EN
  • the current file number is -1.
  • the block number defines the tape head. By default, it is set to -1.
  • the block size 0 indicates that the tape device does not have a fixed block size.
  • the Soft error count indicates the number of encountered errors after executing the mt status command.
  • the General status bits explains the stats of the tape device.
  • DR_OPEN indicates that the door is open and the tape device is empty. IM_REP_EN is the immediate report mode.
# tar -czf /dev/st0 _/source/directory
# tar -czf /dev/st0 _/source/directory tar: Removing leading `/' from member names /source/directory /source/directory/man_db.conf /source/directory/DIR_COLORS /source/directory/rsyslog.conf [. ]

Verification steps

    View the list of all files on the tape device:

# tar -tzf /dev/st0 /source/directory/ /source/directory/man_db.conf /source/directory/DIR_COLORS /source/directory/rsyslog.conf [. ]

Additional resources

  • mt(1) , st(4) , and tar(1) man pages
  • Tape drive media detected as write protected Red Hat Knowlegebase article
  • How to check if tape drives are detected in the system Red Hat Knowlegebase article

24.4. Writing to non-rewinding tape devices

A non-rewinding tape device leaves the tape in its current status, after completing the execution of a certain command. For example, after a backup, you could append more data to a non-rewinding tape device. You can also use it to avoid any unexpected rewinds.

Prerequisites

  1. You have installed the mt-st package. For more information, see Installing tape drive management tool.
  2. Load the tape drive:

    Check the tape head of the non-rewinding tape device /dev/nst0 :

# mt -f /dev/nst0 eod # tar -czf /dev/nst0 /source/directory/
# tar -czf /dev/nst0 /source/directory/ tar: Removing leading `/' from member names /source/directory/ /source/directory/man_db.conf /source/directory/DIR_COLORS /source/directory/rsyslog.conf [. ]

Verification steps

    View the list of all files on the tape device:

# tar -tzf /dev/nst0 /source/directory/ /source/directory/man_db.conf /source/directory/DIR_COLORS /source/directory/rsyslog.conf [. ]

Additional resources

  • mt(1) , st(4) , and tar(1) man pages
  • Tape drive media detected as write protected Red Hat Knowlegebase article
  • How to check if tape drives are detected in the system Red Hat Knowlegebase article

24.5. Switching tape head in tape devices

Use the following procedure to switch the tape head in the tape device.

Prerequisites

  1. You have installed the mt-st package. For more information, see Installing tape drive management tool.
  2. Data is written to the tape device. Fore more information, see Writing to rewinding tape devices or Writing to non-rewinding tape devices.

    To view the current position of the tape pointer:

Additional resources

24.6. Restoring data from tape devices

To restore data from a tape device, use the tar command.

Prerequisites

  1. You have installed the mt-st package. For more information, see Installing tape drive management tool.
  2. Data is written to the tape device. For more information, see Writing to rewinding tape devices or Writing to non-rewinding tape devices.

    For rewinding tape devices /dev/st0 :

# tar -xzf /dev/st0 /source/directory/
# tar -xzf /dev/nst0 /source/directory/

Additional resources

24.7. Erasing data from tape devices

To erase data from a tape device, use the erase option.

Prerequisites

  1. You have installed the mt-st package. For more information, see Installing tape drive management tool.
  2. Data is written to the tape device. For more information, see Writing to rewinding tape devices or Writing to non-rewinding tape devices.

    Erase data from the tape device:

Additional resources

24.8. Tape commands

The following are the common mt commands:

Table 24.1. mt commands

Displays the status of the tape device.

Switches the tape head to the forward record. Here, n is an optional file count. If a file count is specified, tape head skips n records.

Switches the tape head to the previous record.

Switches the tape head to the end of the data.

Источник

Оцените статью
Adblock
detector