I am trying to open the following tar file.

the tar file is actually is a netcat utility and this netcat fit for unixware OS

but as we see the results from the following "curl" is "not in compressed format

Someone have an idea why?

 curl http://www.aljex.com/bkw/sco/rlpnc.tar.Z |uncompress |tar xvf -


 % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
 Dload  Upload   Total   Spent    Left  Speed
 32  7865   32  2560    0     0   2517 0  0:00:03  0:00:01  0:00:02 10448stdin:    
  not in compressed format
 100  7865  100  7865    0     0   6224      0  0:00:01  0:00:01 --:--:-- 15985
link|improve this question

40% accept rate
If it's not in compressed format, you won't need to uncompress it, correct? So why not try just untarring it? – marcusw Jan 31 '11 at 19:13
Is there a reason you're piping to uncompress before tar? – Matthieu Cartier Jan 31 '11 at 19:14
OK but after I remove the uncompress I get : tar: This does not look like a tar archive tar: Skipping to next header tar: Error exit delayed from previous errors – yael Jan 31 '11 at 19:16
@marcusw: According to GNU file, the file served at that URL is compressed ("SCO compress -H (LZH) data") – grawity Jan 31 '11 at 19:18
@neurolysis: Because the input is `compress`ed, and must be uncompressed before giving it to tar. (Some implementations of tar can recognize compressed tarballs, but not all of them.) – grawity Jan 31 '11 at 19:20
show 3 more comments
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.