Sunday, December 6, 2009

Create HP-UX Depot

What happens if you try to download some patchs recommended for Java 1.4 on HP-UX 11i, but when you got the zip or tar file the script "create_depot_hp-ux_11" is not included. Lot of people 've had this dissapointing experience. But it's easy to create this by yourself

Try it...

Copy the patches to a directory (/tmp/patch)
#cd /tmp/patch
#tar xvf file.tar
#for i in PH*
>do
>sh $i
>done


All your patches are unshared now

#mkdir depot
#for i in PH*.depot
>do
>swcopy -s ${PWD}/$i \* @ /tmp/patch/depot
>done


Ok you had a new depot so install it...

# swinstall -s /tmp/patch/depot

Ref:http://itrc.hp.com

How to use DiskSpd to simulate Veeam Backup & Replication disk actions

This HOW-TO contains information on how to use Microsoft© DiskSpd to simulate Veeam Backup & Replication disk actions to measure disk pe...