decompress in HPUX11 by Gunzip and gzip


 
Thread Tools Search this Thread
Operating Systems HP-UX decompress in HPUX11 by Gunzip and gzip
# 1  
Old 08-23-2004
Network decompress in HPUX11 by Gunzip and gzip

Hello evrebody ,
I have HPUX-11, i try to install "Mozilla" and "unzip utillity"
I cannot decompress file (F.tar.gz) or file(F.gz) by commandes:

gunzip -dv F.tar.gz | tar -xvf
gunzip F.tar.gz

or

gzip -dv F.tar.gz |tar -xvf
gzip F.gz

maybe someone know What's the reason?
maybe i must install the PATHS for HPUX11????
or maybe someone can send me Mozilla and Unzip utiliy please????

Could someone suggest a solution?

My messages was ....


1. gunzip -dv ./mozilla-hppa2.0w-hp-hpux11.00-1.7.tar.gz
message: gunzip: ./mozilla-hppa2.0w-hp-hpux11.00-
1.7.tar.gz: invalid compressed data--format
violated

2. gunzip ./mozilla-hppa2.0w-hp-hpux11.00-1.7.tar.gz
message: gunzip: ./mozilla-hppa2.0w-hp-hpux11.00-
1.7.tar.gz: invalid compressed data--format
violated

3. gunzip ./unzip-5.51-sd-11.00.depot.gz
message: incomplete literal tree
gunzip: ./unzip-5.51-sd-11.00.depot.gz:
invalid compressed data--format violated

4. gunzip -dv ./unzip-5.51-sd-11.00.depot.gz
message: ./unzip-5.51-sd-11.00.depot.gz:
incomplete literal tree
gunzip: ./unzip-5.51-sd-11.00.depot.gz:
invalid compressed data--format violated

5. gzip ./unzip-5.51-sd-11.00.depot.gz
message: gzip: ./unzip-5.51-sd-11.00.depot.gz already
has .gz suffix -- unchanged


6. gzip -dv ./unzip-5.51-sd-11.00.depot.gz
message: ./unzip-5.51-sd-11.00.depot.gz:
incomplete literal tree
gzip: ./unzip-5.51-sd-11.00.depot.gz:
invalid compressed data--format violated


Thanks in advance

bosher
# 2  
Old 08-23-2004
It`s work !!

To DRIVER

Hi Driver .....

Your solution with Unzip worked !!!


Thank you vey much !!!!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to decompress files using gunzip?

I have compressed files under directory '/root/data' and i need the uncompressed files in another directory '/root/uncom'. I running a shell script below shell script from directory '/root/' gunzip /root/data/*.gz -d /root/uncom But this is failing with : gunzip: /root/uncom is a directory... (2 Replies)
Discussion started by: hoyanet
2 Replies

2. Shell Programming and Scripting

Extracting logs using gunzip awk and gzip

Hi All I am trying to use a hard coded script into shell scripting but I am unable to . Kindly find the Script below along with the command Please help gunzip -c FilePath/FileName_*.gz | awk '$0 > "" && $0 < ""'|\ gzip >> FilePath/Outputfile.log.gz I Am trying to use this... (9 Replies)
Discussion started by: pulkitbahl
9 Replies

3. Shell Programming and Scripting

How to decompress files using gunzip?

I have compressed files under directory '/root/data' and i need the uncompressed files in another directory '/root/uncom'. I running a shell script below shell script from directory '/root/' gunzip /root/data/*.gz -d /root/uncom But this is failing with gunzip: /root/uncom is a directory... (2 Replies)
Discussion started by: vel4ever
2 Replies

4. Shell Programming and Scripting

Decompress (with gunzip) recursively, but do not delete original gz file

Hi all, I have a folder hierarchy with many gz files in them. I would like to recursively decompress them, but keep the original files. I would also like to move all the decompressed files (these are very large HDF5 files with .CP12 extension) to another data folder. Currently I am using four... (3 Replies)
Discussion started by: gansvv
3 Replies

5. UNIX for Dummies Questions & Answers

gzip-gunzip a problem

Hi all, i have a gzipped file. <file_name>.gz . when i try gunzip this file i get, invalid compressed data--format violated this file gzipped like gzip -f -S <file_name> 2 > <error_log_file> there is no error in log. it seems that the file gzipped properly. how this ... (3 Replies)
Discussion started by: dummydba
3 Replies

6. Solaris

doubt reg gzip,gunzip

Hi, Can anyone let me explain the difference between tar , uncompress,gzip and gunzip commands. both gzip and gunzip are same i think correct me if am wrong. (1 Reply)
Discussion started by: rogerben
1 Replies

7. UNIX for Dummies Questions & Answers

Cloning OracleHome (gzip/gunzip Help)

Environment: ServerA - IBM AIX 5.2 ServerB - IBM AIX 5.2 I want to clone one of my oracle installation. The easiest way is to ZIP(possibly use gzip) the installed folder from the ServerA (Here Oracle is installed and working fine) , FTP to the ServerB(Here I want to have the installation... (4 Replies)
Discussion started by: aixhp
4 Replies

8. UNIX for Dummies Questions & Answers

Using gunzip to decompress .zip file

Hi, I have a zipped Oralce software (linux.x64_11gR1_database.zip) and I need to unzip it. On the Linux server, I only see the gunzip utility listed: $ ls -ltr *zip* -rwxr-xr-x 3 root root 60320 Jan 15 2008 gzip -rwxr-xr-x 3 root root 60320 Jan 15 2008 gunzip Can I use the command... (1 Reply)
Discussion started by: syang68
1 Replies

9. UNIX for Dummies Questions & Answers

gunzip error - not in gzip format

Hi, I am getting this error gunzip file1.tar.Z gunzip: file1.tar.Z: not in gzip format Any clues? This goes bad only in some recent installations of ids (5 Replies)
Discussion started by: eagercyber
5 Replies

10. UNIX for Dummies Questions & Answers

Decompress directory using Gzip

Hey there... Just has a query. I have been trying to zip and unzip a directory. I used gzip -c -r <directory> to recursively search the directory and zip it Now is want to unzip the directory, by gunzip -r <filename>.gz The problem is that the unzip creates on file with the contents... (1 Reply)
Discussion started by: jinxor
1 Replies
Login or Register to Ask a Question