Re: problem with gunzip

2008-09-04 Thread Paul Eggert
"Biradar, Prabhulingamma (Prabha)" <[EMAIL PROTECTED]> writes: > write(4, " 4 4 _ 2 S e n d e r ".., 24576) Err#28 ENOSPC This indicates that gzip ran out of disk space, and a write() system call failed. gzip does not check for disk space in advance; it merely checks as it writes. So I don

RE: problem with gunzip

2008-09-04 Thread Biradar, Prabhulingamma (Prabha)
Hi Paul, We saw that the free space on the disk partition is 139Mb and the uncompressed file size was 81Mb, we used below command to get these numbers. Disk partition free space - > df -kh /partition_name Uncompressed file size - > gunzip -l tarname.tar.gz We are not able to understand even thou