LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   Not successful in opening *.tar.gz files (https://www.linuxquestions.org/questions/linux-newbie-8/not-successful-in-opening-%2A-tar-gz-files-328869/)

Erik_the_Red 05-31-2005 09:04 AM

Not successful in opening *.tar.gz files
 
I downloaded the source for Avida.

I tried to "tar -xvf [filename]", yet it gave me the error message saying:

1. This does not look like a tar archive.
2. Skipping to next header.
3. Archive contains obsolescent base-64 headers.

This has happened before.

slackist 05-31-2005 09:12 AM

Try tar -xvzf filename.tar.gz

HTH

naimslim89 05-31-2005 09:31 AM

It's a g-zipped tar archive, so first you must gunzip it, and then untar it. Chefmark is correct.

To get this concept, consider:

gzip -d *.tar.gz | tar -xvf

This shows that the archive is un-gzipped first, and then extracted.

Erik_the_Red 05-31-2005 10:04 AM

Merci beaucoup
 
Danke. :)


All times are GMT -5. The time now is 06:43 AM.