vote up 0 vote down star

I tar a directory full of JPEG images: tar cvfz myarchive.tar.gz mydirectory

When I untar the archive: tar xvfz myarchive.tar.gz I get an error

tar: Unexpected EOF in archive

Looking at the output, it fails in the middle of one particular JPEG image.

What am I doing wrong?

flag
Did you run out of space when creating archive? – Eugene Aug 25 at 3:29

3 Answers

vote up 0 vote down check

Interesting. I have a few questions which may point out the problem.

1/ Are you untarring on the same platform as you're tarring on? They may be different versions of tar (e.g., GNU and old-unix)? If they're different, can you untar on the same box you tarred on?

2/ What happens when you simply gunzip myarchive.tar.gz? Does that work? Maybe your file is being corrupted/truncated. I'm assuming you would notice if the compression generated errors, yes?

Based on the GNU tar source, it will only print that message if find_next_block() returns 0 prematurely which is usually caused by truncated archive.

link|flag
Thanks for your quick answer 1/ same machine (for testing purposes): Ubuntu. Eventually, I want to untar on Mac OS X (the error is the same there...) 2/ gunzip works fine No error when the archive is created... – Cyrille Aug 25 at 4:10
Okay, remove the offending JPEG temporarily and see what happens. This will let you know if it's that specific JPEG or tar itself. Also try without the zip option. – paxdiablo Aug 25 at 4:26
Ah, you put me on the right track here: the tar archive is truncated. I didn't see any errors in my syslog (the archive is created by a cron job), but something must go wrong. There is plenty of space on the disk (when I create the archive "by hand", it is not truncated)... I'll dig deeper now, thanks for your replies. – Cyrille Aug 25 at 4:39
How big is the tar file? You may be hitting your ulimit file size limit. In addition, your cron jobs should always send stdout/stderr to /tmp/some-file-or-other (cleaned up with yet another cron job) to aid debugging. Perhaps change your script to run ulimit as its first command, then change the cron job to capture output (e.g., in your crontab, change "/mypath/myprog" to "/mypath/myprog >/tmp/myprog.out 2>&1". – paxdiablo Aug 25 at 7:45
Hi there, the tar file is about 8M. I added logging to the cron job and... it solved the problem! My guess is that adding logging slows down the archiving and makes it work... For the record, I have only 243 files in the archive and ulimit -n gives me 1024, so it shouldn't be a problem. Anyway, thank you very much for your help, very appreciated. – Cyrille Aug 25 at 21:36
show 1 more comment
vote up 1 vote down

I had a similar problem with truncated tar files being produced by a cron job and redirecting standard out to a file fixed the issue.

From talking to a colleague, cron creates a pipe and limits the amount of output that can be sent to standard out. I fixed mine by removing -v from my tar command, making it much less verbose and keeping the error output in the same spot as the rest of my cron jobs. If you need the verbose tar output, you'll need to redirect to a file, though.

link|flag
vote up 0 vote down

May be you have ftped the file in ascii mode instead of binary mode ? If not, this might help.

$gunzip myarchive.tar.gz

And then untar the resulting tar file using

$tar xvf myarchive.tar

Hope this helps.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.