ok, so tar -zxvf doesn't unzip a tar.bz2. I figured that out. So how do I unzip this monster?
tar.bz2
Started by Hektor, Oct 09 2007 10:34 AM
6 replies to this topic
#1
Posted 09 October 2007 - 10:34 AM
|
|
|
#2
Guest_Jordan_*
Posted 10 October 2007 - 11:07 AM
Guest_Jordan_*
For .tar.bz2
For just .bz2 files use:
tar -xjvf <filename>.tar.bz2
For just .bz2 files use:
bunzip2 <filename>.bz2
#3
Posted 11 October 2007 - 02:35 PM
Works perfect. How do I zip with bz2 now?
#4
Guest_Jordan_*
Posted 12 October 2007 - 05:34 AM
Guest_Jordan_*
Just replace the "x" with a "c". X means extract and C means compress.
tar -cjvf <filename>.tar.bz2 <dir>
#5
Guest_powerspike_*
Posted 15 October 2007 - 02:03 PM
Guest_powerspike_*
ok so you know what the options do (feed a man a fish, teach a man to fish .. you know the saying !)
j = bzip
z = gz
c = create
x = extract
v = verbose (it prints the files to the screen)
f = i'm not use, i just know to always use it lol (i think this creates the tar for compression?)
also you can only use c or x , not both at the same time.
j = bzip
z = gz
c = create
x = extract
v = verbose (it prints the files to the screen)
f = i'm not use, i just know to always use it lol (i think this creates the tar for compression?)
also you can only use c or x , not both at the same time.
#6
Posted 23 October 2007 - 10:18 AM
lol, thx guys.
#7
Guest_powerspike_*
Posted 23 October 2007 - 05:23 PM
Guest_powerspike_*
no worries Hektor, hopefully you found the information providied usefull.


Sign In
Create Account


Back to top









