need to fetch report for all images on a Data domain with size details
Hi All, We have Solaris master server and using netbackup 7.6.2 version. backups are writing to Data domain which later getting duplicated to Tape drives.
one of our Data domain exceeded threshhold limit and now we want to clean some data from it in order to release some space on Data Domain.
My managment wants a report which can show them list of all images resides on DD with their respective sizes. So that later they can decide what should be deleted from DD and what should not.
I tried to fetch some data from catalog but its not providing me size detail. Also we have opscenter analytic for reporting and i tried to fetch relevant reports from that but didnt get success.
Please help me and let me know how i can fetch such report.
Regards
Nikhil Garg
Give this a try
bpimmedia -dp DiskPoolName -stype DataDomain -l -legacy | awk '{ if ( $1 == "IMAGE" ) print "bpimagelist -backupid "$4" -l" }'|sh | awk '{ if ( $1 == "IMAGE" ) print $6,$19 }'
I hope you have linux/unix :p