Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Problem during extracting TAZ file

Status
Not open for further replies.

shweta_vlsi

Newbie level 6
Joined
May 25, 2007
Messages
14
Helped
0
Reputation
0
Reaction score
0
Trophy points
1,281
Activity points
1,393
extract taz file

Hi all,
I have some software which is in format file.TAZ, i want extract this using uz command but when ever i do this it gives an error saying the file is not in specified compressed format. But as i know this is .TAZ file i tried all uncopressors but it failed. can any body tell how to extract.
The properties file says its application/octet stream
 

how extract taz file

may be your file have been corrupted
 

how to extract taz file in aix

You can use command
file filename
to get the file's information.
it will show which format is compressed, this will help you to choose suitable decompression command.
 

how to extract taz file

Thanks for your answers

I tried all possible methods, but still same problem. The data is not corrupted i think becoz downloaded many times. becoz the system is not recognizing the format only.
 

how to extract taz

Assuming that TAZ is tar.Z, use command:
tar tvZf filename.TAZ to see the content and tar xvZf filename to expand. Pay attention that you MUST specify upper case letter Z and not lower case z.

Good luck.
 

extracting taz files

Thanks cfant,
I tried with that also it is not working, I checked the file type using
$ file filename.taz
it indicayes data type not compressed format, how to overcome this problem
 

Try this command
$ zcat < filename.taz | tar -vxf
Maybe it can work. I search this on the internet but I have not test it.
 

What is the output of the file command? If you file is not compressed, than:
tar tvf filename.taz should give you list of the files in the archive, and
tar xvf filename.taz should extract files into current directory.
 

Status
Not open for further replies.

Similar threads

Part and Inventory Search

Welcome to EDABoard.com

Sponsor

Back
Top