Results 1 to 5 of 5
i have a 2Mg tarball file and i was wondering how long do you think this should take to unzip. i ran it and it was running for every and ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 08-07-2003 #1
tar.bz2
i have a 2Mg tarball file and i was wondering how long do you think this should take to unzip. i ran it and it was running for every and i closed the term window but i was curious how long this should take
BIG K aka Kyle
Programming Forums
www.kylekonline.com
Please don\'t PM me for help-- ask in the forums instead!
- 08-07-2003 #2
Not long depends on hardware. What command did you use?
- 08-07-2003 #3Linux Newbie
- Join Date
- Jul 2003
- Location
- Dayton, OH
- Posts
- 137
i usally just use
bunzip2 <filename.tar.bz2>
and then
tar -xvf <filename.tar>
i know there is some way to do it in one step using tar .. but i just have always done it this way cause sometimes i need to gzip it ... ie for installing new icons that come in .tar.bz2 format.Quickdraw returns ... more news at 11!
I like to try all flavors of the rainbow. Running SuSE 10.1 on my laptop, Windows XP on my desktop, and an Mac OS X on my Mac powerbook.
- 08-07-2003 #4
I think you mean this
.tar.bz2 files ->
.tar.gz files ->Code:tar jxvf filename.tar.bz2
The j means uncompress with bzip2 before untarring. Same thing for gzip. Just do a tar --help for more info.Code:tar zxvf filename.tar.gz
- 08-09-2003 #5
well i got it to work thanks for the help i wasnt doing it right i wont even mention what i was doing as i dont want to embarris my self
but thanks again
BIG K aka Kyle
Programming Forums
www.kylekonline.com
Please don\'t PM me for help-- ask in the forums instead!


Reply With Quote
