Hey! Did you see what Marc Mutz wrote on Jul 30 ?

MM> Although the problem seems solved, I want to comment that this solution
MM> is none, because this fault had resulted in another error message:
MM> # cat /proc/meminfo > mem.gz
MM> # gunzip mem.gz
MM> 
MM> gunzip: mem.gz: not in gzip format

This is because it is not a compressed gzip file.  Just nameing a file
with a gz extention doesn't make it a compressed file.  Now if you had
done...
        cat /proc/meminfo > mem
        gzip mem
        gunzip mem.gz

Then you wouldn't have a problem.


Regards, Steve Youngs <[EMAIL PROTECTED]> ICQ: 34307457
------------------------------------------------------------
|                                 __                       |
| Isn't it good to know that     / /   __ ___  __ ____  __ |
| There _IS_ an alternative!    / /__ / // _ \/ // /\ \/ / |
|                              /____//_//_//_/\_,_/ /_/\_\ |
------------------------------------------------------------

Reply via email to