LinuxQuestions.org
Visit Jeremy's Blog.
Go Back   LinuxQuestions.org > Forums > Linux > Linux - Software
User Name
Password
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

Reply
 
Thread Tools
Old 10-08-2003, 10:08 AM   #1
kublador
Member
 
Registered: Aug 2002
Location: Philippines
Distribution: Slackware 10
Posts: 325
Thanked: 0
how can i decompress this tar.tar file? hmmm sounds new.. tar.tar.. help ;)


[Log in to get rid of this advertisement]
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!
kublador is offline     Reply With Quote
Old 10-08-2003, 10:13 AM   #2
guygriffiths
Member
 
Registered: Jun 2003
Location: Reading, UK
Distribution: Debian 3.0, LFS
Posts: 524
Thanked: 0
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)
guygriffiths is offline     Reply With Quote
Old 10-08-2003, 10:14 AM   #3
guygriffiths
Member
 
Registered: Jun 2003
Location: Reading, UK
Distribution: Debian 3.0, LFS
Posts: 524
Thanked: 0
sorry, I didn't read the first line properly. It's DEFINITELY a bz2 file.
guygriffiths is offline     Reply With Quote
Old 10-08-2003, 10:51 AM   #4
kublador
Member
 
Registered: Aug 2002
Location: Philippines
Distribution: Slackware 10
Posts: 325
Thanked: 0

Original Poster
yes it is a bzip2 ..
and i tried
bunzip2 <filename>

still an error..
hmmmmmmm
kublador is offline     Reply With Quote
Old 10-08-2003, 11:10 AM   #5
guygriffiths
Member
 
Registered: Jun 2003
Location: Reading, UK
Distribution: Debian 3.0, LFS
Posts: 524
Thanked: 0
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
guygriffiths is offline     Reply With Quote
Old 10-08-2003, 12:42 PM   #6
kublador
Member
 
Registered: Aug 2002
Location: Philippines
Distribution: Slackware 10
Posts: 325
Thanked: 0

Original Poster
hmmmmmmm
i still dont get it...
kublador is offline     Reply With Quote
Old 10-08-2003, 01:14 PM   #7
/bin/bash
Senior Member
 
Registered: Jul 2003
Location: Indiana
Distribution: Mandrake Slackware-current QNX4.25
Posts: 1,800
Thanked: 0
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 01:16 PM..
/bin/bash is offline     Reply With Quote
Old 10-09-2003, 02:33 AM   #8
kublador
Member
 
Registered: Aug 2002
Location: Philippines
Distribution: Slackware 10
Posts: 325
Thanked: 0

Original Poster
alright.. i will try that one later.. thank you
kublador is offline     Reply With Quote
Old 09-22-2007, 12:53 PM   #9
arunachalam
Member
 
Registered: Sep 2005
Posts: 53
Thanked: 0
whomever searching this... its working
arunachalam is offline     Reply With Quote
Old 01-14-2008, 08:32 AM   #10
slimm609
Member
 
Registered: May 2007
Location: Chas, SC
Distribution: slackware, gentoo, fedora, LFS, sidewinder G2, solaris, FreeBSD, RHEL, SUSE, Backtrack
Posts: 331
Thanked: 13
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.
slimm609 is offline     Reply With Quote
Old 02-23-2008, 06:40 AM   #11
sohailzpk
LQ Newbie
 
Registered: Feb 2008
Posts: 1
Thanked: 0
Quote:
Originally Posted by guygriffiths View Post
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.
sohailzpk is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
tar tar cvf - . | (cd /root/; tar xvf -) ewt3y Linux - General 8 04-29-2007 10:28 PM
Tar gives error when creating a tar file archive davidas Linux - Newbie 10 04-13-2004 01:35 AM
problem unzipping a tar.bz2 file tar: Error is not recov jyome Linux - Software 4 09-04-2003 02:04 PM
Diferance between rpm, tar, tar.gz, scr.tar, etc mobassir Linux - General 12 08-21-2003 07:30 AM
Unable to use tar -xzvf with a abc.tar.gz file kakultech Linux - Software 5 07-31-2003 08:40 AM


All times are GMT -5. The time now is 01:32 AM.

Main Menu
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration