Use the gzip and split commands
to compress the dump and split it into parts. Alternatively, you can
use the makedumpfile command.
Procedure
-
Compress the dump and split it into parts of 1 GB by using the gzip
and split commands.
- For a DASD dump:
# zgetdump /dev/dasdd1 | gzip | split -b 1G
- For a tape
dump:
# mt -f /dev/ntibm0 rewind
# mt -f /dev/ntibm0 fsf
# zgetdump /dev/ntibm0 | gzip | split -b 1G
- For a SCSI
dump:
# cat /dumps/mydumps/dump.0 | gzip | split -b 1G
The split creates several compressed files in your current
directory:
# ls
# xaa xab xac xad xae
- Create md5 sums of parts:
- Upload the parts together with the MD5 information to the support organization.
- The receiver (the service organization) must do the following:
- Verify md5 sums:
# cd dumpdir
# md5sum -c dump.md5
xaa: OK
xab: OK
...
- Merge parts and extract the dump:
# cat x* | gunzip -c > dump