...
When loading a SCSI tape device, the parameter device has the format MK DDXnnn.
Div | ||
---|---|---|
| ||
A tape device name has the following components:
...
The following example adds a SCSI tape device with device path 0/0/1/0.6.0 (controller A, SCSI target ID 6, LUN 0) to the configuration:
|
Div | ||
---|---|---|
| ||
Using Tapes on MPE/iX Guest Systems
Displaying Tape Characteristics on MPE/iX Systems
You can use the SYSGEN > IO to display tape characteristics as shown in the following example for LDev 7:
Using :DEVCTRL in HP3000 to Load and Eject a Tape on MPE/iX Systems
:DEVCTRL is an HP-supplied script that allows several aspects of physical tape devices to be controlled: in-drive data compression, tape loading, and automatic tape eject. This script is also used with Charon-HPA to load virtual tape image files. When :DEVCTRL is used to load a virtual tape file, it causes Charon-HPA to create (if necessary) and open the virtual tape file configured in the Charon-HPA configuration file.
The :DEVCTRL syntax is show below:
|
...
To read and write tapes under MPE/iX, the :STORE and :RESTORE commands are used. Please contact your Stromasys representative or partner if you need support with data backup and restore under MPE/iX.
Div | ||
---|---|---|
| ||
Using Tapes on HP-UX Guest Systems
Displaying the Tape Configuration in HP-UX
After booting HP-UX with the virtual tape device configuration, you can use the command ioscan -C tape -fun
to verify if the device has been found and the driver has been loaded. The follwoing image shows an example:
The example shows two type devices and their associated special devices.
The lssf
command can be used to verify that the special files point to the correct device paths, SCSI target ID and LUN.
|
Loading and Ejecting the Virtual Tape in HP-UX
Using the autoload Configuration Option
If autoload has been enabled in the configuration, the virtual tape is "loaded" and the container file created, if required, when the tape device is accessed.
Multi-volume backup does not work correctly when autoload is enabled. If a new tape is requested by the software, it will not wait for a new tape to load but overwrite the existing file. If data is to be written to several tapes, this needs to be configured manually or by a customized script.
For example, the following command will cause the container file for device /dev/rmt/0mnb (default tape device) to be created and opened:
# mt status Drive: HP C1537A Format: Status: [41114701] BOT online compression immediate-report-mode File: 0 Block: 0 |
The tape can be "ejected" by setting it to offline (device-name is the full path to the special file):
# mt -f <device-name> offl |
After the offline command, the container file can be removed (i.e., the tape can be archived).
To simultate the "swapping" of tapes, use the sequence:
- Release a loaded tape so its container file can be moved away:
mt -f <devicename> offl
- Write to the tape as required (this will create a new container file, if needed).
- Release the loaded tape so its container file can be moved away:
mt -f <devicename> offl
Using Manual Tape Loading from the hp9k Console
In some cases it may be useful to load/unload tapes manually from the hp9k console instead of using autoload. This is achieved by the following command:
Load a tape:
hp9k> device.load |
Unload a tape:
hp9k> device.unload |
Where device stands for the virtual tape configuration name, for example, MKA500.
If no tape is "loaded" in the virtual tape device, the command
mt -f <device-name> status
will show a status of 0.
Reading and Writing Tapes in HP-UX
There are several commands that can be used to write data to / read data from the virtual tapes, for example,
- tar
- fbackup/frecover
- dump/restore
- vxdump/vxrestore
Please refer to your HP-UX documentation for details about the usage of these utilities.
Div | ||
---|---|---|
| ||
...