Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum. |
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
10-08-2003, 09:08 AM
|
#1
|
Member
Registered: Aug 2002
Location: Philippines
Distribution: Slackware, CentOS, Ubuntu
Posts: 325
Rep:
|
how can i decompress this tar.tar file? hmmm sounds new.. tar.tar.. help ;)
can someone have a look at this...
by the way..
im using redhat 8 kernel 2.4.18-14 and using gnome.. (if that helps)
i have this "skin.tar.tar" file in /root actually this is an mplayer skin downloaded in the official mplayer website.. how can i extract this? even though i double click it in nautilus and then file roller tries to open this file.. it cant.. and i tried to do everything in the command line.. this is my log:
[root@morgan root]# file skin.tar.tar
skin.tar.tar: bzip2 compressed data, block size = 900k
[root@morgan root]# bunzip2 skin.tar.tar
bunzip2: Can't guess original name for skin.tar.tar -- using skin.tar.tar.out
[root@morgan root]#
what should i do?
please help.. thanks!
|
|
|
10-08-2003, 09:13 AM
|
#2
|
Member
Registered: Jun 2003
Location: Reading, UK
Distribution: Debian 3.0, LFS
Posts: 524
Rep:
|
The fact that bunzip2 did not give an error saying that it was in the wrong format probably means it's in bz2 format. If you downloaded in Windows Internet Explorer, tar.tar is the extension it gives tar.bz2 files. So you can just use:
tar xvjf skin.tar.tar
or alternatively, now you have bunzipped it:
mv skin.tar.tar.out skin.tar
tar xvf skin.tar
(the first step's not really necessary, but it helps clarify things in case you want to untar it again later)
|
|
|
10-08-2003, 09:14 AM
|
#3
|
Member
Registered: Jun 2003
Location: Reading, UK
Distribution: Debian 3.0, LFS
Posts: 524
Rep:
|
sorry, I didn't read the first line properly. It's DEFINITELY a bz2 file.
|
|
|
10-08-2003, 09:51 AM
|
#4
|
Member
Registered: Aug 2002
Location: Philippines
Distribution: Slackware, CentOS, Ubuntu
Posts: 325
Original Poster
Rep:
|
yes it is a bzip2 ..
and i tried
bunzip2 <filename>
still an error..
hmmmmmmm
|
|
|
10-08-2003, 10:10 AM
|
#5
|
Member
Registered: Jun 2003
Location: Reading, UK
Distribution: Debian 3.0, LFS
Posts: 524
Rep:
|
What do you mean by "error"?
Quote:
[root@morgan root]# bunzip2 skin.tar.tar
bunzip2: Can't guess original name for skin.tar.tar -- using skin.tar.tar.out
|
Is not an error, it's a warning. It can't guess what the original name is (since it usually is originalname.bz2) so it uses skin.tar.tar.out
Are there more errors? Please post them is so, otherwise the file skin.tar.tar.out should be in tar format.
Or
tar xvjf skin.tar.tar
should work. If not, what is the error?
Guy
|
|
|
10-08-2003, 11:42 AM
|
#6
|
Member
Registered: Aug 2002
Location: Philippines
Distribution: Slackware, CentOS, Ubuntu
Posts: 325
Original Poster
Rep:
|
hmmmmmmm
i still dont get it...
|
|
|
10-08-2003, 12:14 PM
|
#7
|
Senior Member
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,802
Rep:
|
Just rename it.
mv skin.tar.tar skin.tar.bz2
tar xjvf skin.tar.bz2
<edit>Or if you already did unzip it then you should name it this:
mv skin.tar.tar.out skin.tar
tar xvf skin.tar
Last edited by /bin/bash; 10-08-2003 at 12:16 PM.
|
|
|
10-09-2003, 01:33 AM
|
#8
|
Member
Registered: Aug 2002
Location: Philippines
Distribution: Slackware, CentOS, Ubuntu
Posts: 325
Original Poster
Rep:
|
alright.. i will try that one later.. thank you 
|
|
|
09-22-2007, 11:53 AM
|
#9
|
Member
Registered: Sep 2005
Posts: 53
Rep:
|
whomever searching this... its working
|
|
|
01-14-2008, 07:32 AM
|
#10
|
Member
Registered: May 2007
Location: Chas, SC
Distribution: slackware, gentoo, fedora, LFS, sidewinder G2, solaris, FreeBSD, RHEL, SUSE, Backtrack
Posts: 430
Rep:
|
I am guessing that you downloaded the file on a windows box then moved it over to linux.
Windows does not know how to handle tar.gz or tar.bz2 so it labels then whatever.tar.tar you have to just move the file back to whatever it was supposed to be.
|
|
|
02-23-2008, 05:40 AM
|
#11
|
LQ Newbie
Registered: Feb 2008
Posts: 1
Rep:
|
Quote:
Originally Posted by guygriffiths
The fact that bunzip2 did not give an error saying that it was in the wrong format probably means it's in bz2 format. If you downloaded in Windows Internet Explorer, tar.tar is the extension it gives tar.bz2 files. So you can just use:
tar xvjf skin.tar.tar
or alternatively, now you have bunzipped it:
mv skin.tar.tar.out skin.tar
tar xvf skin.tar
(the first step's not really necessary, but it helps clarify things in case you want to untar it again later)
|
yes, I have tried tar xvjf filename.tar.tar and it is working, thank u very much. I was also stucked in this problem. many thanks.
|
|
|
10-24-2016, 09:38 AM
|
#12
|
LQ Newbie
Registered: Oct 2016
Location: Paris
Distribution: Redhat/debian and AIX
Posts: 3
Rep: 
|
other solution for .tar.at
Hello
you can also just move your file toto.tar.tar to toto.tar.gz
and after put
tar -zxvf toto.tar.gz
i think that any file xxx.tar.tar was just remane to be download
Have a good day !!
|
|
|
10-24-2016, 06:29 PM
|
#13
|
LQ Guru
Registered: Sep 2013
Location: Somewhere in my head.
Distribution: Slackware (15 current), Slack15, Ubuntu studio, MX Linux, FreeBSD 13.1, WIn10
Posts: 10,342
|
have all of your zip and unzip programs installed then use ARK and let it decided ...
|
|
|
10-24-2016, 10:45 PM
|
#14
|
LQ Muse
Registered: Aug 2005
Location: A2 area Mi.
Posts: 17,700
|
bsystem
BW-userx
you two do know that this is a thread from 2003
and for the UNSUPPORTED redhat RH8
-- right--
Last edited by John VV; 10-24-2016 at 10:46 PM.
|
|
|
10-25-2016, 02:48 AM
|
#15
|
LQ Newbie
Registered: Oct 2016
Location: Paris
Distribution: Redhat/debian and AIX
Posts: 3
Rep: 
|
yes we know
yes we know
but it can still be used
|
|
|
All times are GMT -5. The time now is 06:40 AM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|