
Bad 'tar' in busybox
Bs0Dd opened this issue ยท 7 comments
invalid tar magic
likely means it thinks file header is invalid. Not certain, but likely. Has this worked with different tar files?
Has this worked with different tar files?
Yes, i tried to unpack some archives with sources. I can unpack all by custom tar, but standard tar always returns tar: invalid tar magic
It looks like tar
has no compression features there. I got around it using gunzip
.
cat yourarchive.tar.gz | gunzip | tar -x
I'll have to see how much extra disk space enabling that feature would eat. May possibly be something we'll just live with as a quirk.
Can't find an option to enable this in busybox, so the above is what it is, I'm afraid.
Found the setting after all, will work as of 7797c06.