On Fri, 3 Oct 2008 09:33:50 -0500, Chase, John <[EMAIL PROTECTED]> wrote:

>Hi, All,
>
>Got the new SMP/E downloaded, but so far haven't been able to complete
>the RECEIVE.  The job keeps running out of space in the HFS for the
>unpack operation.  4,000 cylinders is too small.
>
>Anybody know just how much space it will eventually need?
>
>TIA,
>
>    -jc-

I cannot tell you because I haven't done this. However, the following UNIX
commands should give you a somewhat close estimate of the number of K bytes
needed. Unfortunately, it does tend to underestimate. That's because I
cannot easily figure out how big a subdirectory will become.

pax -lvf smpe-archive.pax | \
awk 'BEGIN {sum=0};sum=sum+$5/1024+1;END {print "total=" sum;}'

The pax command lists the files in the pax with their sizes. The awk program
then divides the size by 1024 (to get K) and adds 1 "just for fun".

--
John

----------------------------------------------------------------------
For IBM-MAIN subscribe / signoff / archive access instructions,
send email to [EMAIL PROTECTED] with the message: GET IBM-MAIN INFO
Search the archives at http://bama.ua.edu/archives/ibm-main.html

Reply via email to