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 one 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:
# zgetdump /dev/mapper/36005076303ffd40100000000000020c01 | gzip | split -b 1G
- For an NVMe
dump:
# zgetdump /dev/nvme0n1p1 | gzip | split -b 1G
This 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 support organization) must do the
following:
- Verify md5 sums:
# cd dumpdir
# md5sum -c dump.md5
xaa: OK
xab: OK
...
- Merge parts and uncompress the dump:
# cat x* | gunzip -c > dump