LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   How to unzip/uncompress .tar.bz2 (https://www.linuxquestions.org/questions/linux-software-2/how-to-unzip-uncompress-tar-bz2-475497/)

rajeshsfo 08-19-2006 08:47 PM

How to unzip/uncompress .tar.bz2
 
Which program to use to unzip/uncompress the file with extension abc.tar.bz2

Thank You

KenJackson 08-19-2006 08:50 PM

$ tar xfj abc.tar.bz2

Add a 'v' if you want to see all the names go scrolling by:

$ tar xvfj abc.tar.bz2

isuck@linux 08-19-2006 08:52 PM

tar xvjf whateverfile

ciotog 08-20-2006 12:48 AM

No need to specify the compression type with tar now, so you can just use
Code:

tar xvf whatever.tar.bz2
or
Code:

tar xvf whatever.tar.gz


All times are GMT -5. The time now is 09:24 AM.