Wayne Petherick wrote: > How do I unpack a file with a .tar.bz2 extension? > Quickly, you can do it one of two ways. $ bzcat file.tar.bz2 | tar x or $ tar yxf file.tar.bz2 The first way uses "bzcat" to print out the uncompressed contents of the .tar.bz2 file. Meaning that it's printing a tar file to standard out. You're then piping the the output to tar, which extracts the contents of the tar file. The second method uses the "y" option of tar, which tells tar to use "bunzip2" to decompress the archive before un-tarring it. Mandrake compiled tar with built-in support for bzip2 archives, which is why you can use the "y" option. This will not work in all systems. -Matt Stegman <[EMAIL PROTECTED]>
- [expert] Unzipping a file Wayne Petherick
- Re: [expert] Unzipping a file kaygee
- Re: [expert] Unzipping a file Jean-Louis Debert
- Re: [expert] Unzipping a file Vic
- Re: [expert] Unzipping a file John Aldrich
- Re: [expert] Unzipping a file Mike Corbeil
- Re: [expert] Unzipping a file Matt Stegman
- Re: [expert] Unzipping a file Jean-Louis Debert
- Re: [expert] Unzipping a file Matt Stegman
- Re: [expert] Unzipping a file Brian T. Schellenberger
- Re: [expert] Unzipping a file Brian T. Schellenberger
- Re: [expert] Unzipping a file Wolfgang Bornath
- Re: [expert] Unzipping a file Mike Corbeil
- Re: [expert] Unzipping a fil... Brian T. Schellenberger
- Re: [expert] Unzipping a... Mike Corbeil
- Re: [expert] Unzipping a file Ron Stodden
- Re: [expert] Unzipping a file Mike Corbeil
