Hi,
It´s very unlike to have RAID4, it is not used generally. Anyway, you´ll need an array manager software to obtain your lun configuration. As Tully said, RAID is not done in hp-ux, but in hardware. The only RAID like you can have in hp-ux software is LVM Mirror, equivalent to RAID1. Also, full VxVM over hp-ux gives you the RAID5, RAID1, RAID1+0 and RAID0+1 capabilities.
If you post the array hardware model, it´s going to be easier to say what tool you should use. If this array was configured with sam, and it is patched acordingly, you can see array configuration in some array models through sam.
the commands i know to see array configuration, if you have the software installed, are:
amdsp -i # for FC´s
amdsp -a
# for FC´s
armdsp -i # for VA´s
armdsp -a # for VA´s
You can look for them with this command:
swlist -l file | grep -e amdsp -e armdsp
Concerning cpio:
backup
------
for relative paths
find . | cpio -ovB > /dev/rmt/0m
for absolute paths
find /usr | cpio -ovB > /dev/rmt/0mn
Restore
-------
cpio -ivdB < /dev/rmt/0m
Verify
------
cpio -ivtB < /dev/rmt/0m
Copy disk-to-disk(tree copy)
----------------------------
find . | cpio -pvdum /destination_dir
Regards,
God bless pessimists, they did the backup!