Jump to content

Unzip tar.bz2

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
1 reply to this topic

#1
Guest_Wanch_*

Guest_Wanch_*
  • Guests
How do I unzip/extract a .bz2 file in Linux? What does bz2 even stand for. I've never heard of this compression format.

#2
v0id

v0id

    Retired

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,936 posts
$ tar jxvf archive.tar.bz2
j - The actual bz2-part. In older versions you might have you use a lowercase 'i', I.
x - Extract
v - Verbose mode
f - File (which in our case is, archive.tar.bz2)