I'm downloading an engine game file which is compressed as .tar.bz2.
I'm trying this command
tar -zxvf enginsxt.tar.bz2
And it throws an error. I know that command
tar -zxvf
is only for extracting .tar.gz
files, but how can I decompress this one?
Have you checked the
man
page fortar
?Here is the part that I extracted from
man
page oftar
forbz2
:Remove
-z
from your options and (optionally) add-j
to extract your tar archive correctly: