file.tgz.1of2 & file.tgz.2of2


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers file.tgz.1of2 & file.tgz.2of2
# 1  
Old 10-21-2008
file.tgz.1of2 & file.tgz.2of2

Hi all,

Need help. Anybody seen this kind of file before?
file.tgz.1of2
file.tgz.2of2

how to extract this tgz file? Any help?
Tq
# 2  
Old 10-21-2008
Try:

Code:
cat file.tgz.1of2 file.tgz.2of2 > all.tgz && tar xfz all.tgz

If your tar does not support -z use two separate commands.
# 3  
Old 10-21-2008
looks like tarred gzipped files.

Code:
 gunzip -c <tgz_file> | tar -xvf

should suffice...

or just gunzip them, then check contents with tar -tf...
# 4  
Old 10-21-2008
Hi Rudoulov,

Thanks for the quick reply... but I got this error
-bash: -xfz: command not found
Any help? Thanks again
# 5  
Old 10-21-2008
Hm, try:

1.

Code:
cat file.tgz.1of2 file.tgz.2of2 > all.tgz

2.

Code:
gzip -dc all.tgz|tar -xvf

I suppose the archive was split ...
Did you try the commands Tytalus posted?
# 6  
Old 10-21-2008
Thanks radoulov & Tytalus.... u all are great...
Thanks again
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. AIX

How to install .tar.tgz file in AIX 6.1?

Hello, I have openssl.0.9.8.1103.tar.tgz file which I have downloaded from https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=aixbp&S_PKG=openssl siteThe website says that the file name is openssl.0.9.8.1103.tar.z but when downloaded I get openssl.0.9.8.1103.tar.tgz as the... (2 Replies)
Discussion started by: gaugeta
2 Replies

2. UNIX for Dummies Questions & Answers

How to create .tgz file without creating .tar file?

Hi, Could anyone help me in providing command to generate .tgz file without creating .tar file? currently i am using below command for doing the same but if tar file has big size and there is no space in drive then tgz file will not be generated. I want to generate tgz file directly without... (4 Replies)
Discussion started by: Pawan Kumar
4 Replies

3. Shell Programming and Scripting

How to create tgz file for all the directories in one time?

Hi, On server there is an one folder . which contains sub folder Eg - TEST folder contains test1, test2, execr ,tt (folder). also includes some text file like abc.txt psp.txt gg.log. here iwant to create tgz file for all the folders and file in one time. I know the command... (1 Reply)
Discussion started by: aish11
1 Replies

4. Shell Programming and Scripting

How to move files to existing .tgz file?

Hi, I have already created the tar files. which consist of some log files and Audit.csv plz see the below code for that ================================================ tar -Pczf ARCH/${arc_date}.tgz $LOG/*.log $REYE/CEP/FiAdapter/Audit.${arc_date}.csv ... (3 Replies)
Discussion started by: pspriyanka
3 Replies

5. AIX

Unable to gunzip .tgz file in AIX6.1

Hi guys, This is my 1st post here. I tried to Google around but failed to get my solution. So I hope you guys could help me. (I have just a basic unix background for 2years so I'm sorry if im asking stupid questions) OS - Aix 6.1, 64 bits. Server - currently I only have telnet access to a... (12 Replies)
Discussion started by: pilotHans
12 Replies

6. UNIX for Advanced & Expert Users

how to grep/read a file inside compressed tgz without extract?

Hi all, I would like to ask whether in Unix shell/perl have any functions or command to allow grep/cat/read a file inside compressed .tgz without extract it? I know we can tar tvf a compressed tgz but this only allow we read the path/filename contained inside the tarball. If we want to read... (3 Replies)
Discussion started by: mayshy
3 Replies

7. Programming

Looking for baseqrts tgz

Hi, I have searched google and some ftp, but I couldn't find it. If you have this source or know where I can download it, please send it to me or leave a message, thank you! (2 Replies)
Discussion started by: HOUSCOUS
2 Replies

8. Windows & DOS: Issues & Discussions

*.tgz file on WinXP

Could anyone of y'all gurus tell me of how to open *.tgz files in WinXP....which program should i use to open it...i have tried going online to open it ut all in vain...please help Gerry... (5 Replies)
Discussion started by: gerald_agoi
5 Replies

9. UNIX for Dummies Questions & Answers

how do you install text.tgz

need to know how to install the text.tgz i have already downloaded it and need to know the commands to get it set up thank sting34:confused: :confused: (2 Replies)
Discussion started by: sting34
2 Replies

10. UNIX for Dummies Questions & Answers

unzip .tgz files

hi all How to unzip .tgz files waiting for suggestions Praful (5 Replies)
Discussion started by: Prafulla
5 Replies
Login or Register to Ask a Question