Operating System - HP-UX
1752801 Members
5563 Online
108789 Solutions
New Discussion юеВ

unzip oracle files on hpux integrity servers 11.23

 
SOLVED
Go to solution
WilliamSmith11
Super Advisor

unzip oracle files on hpux integrity servers 11.23

I have oracle patch with is .zip file and need to uncompress it on HPUX but when I use gunzip -Sf .zip filename or gunzip -S filename it gives errors . How can I get this file oncompressed with gzip or gunzip on this hpux server?

Regards


W.S
rperez
8 REPLIES 8
Mark McDonald_2
Trusted Contributor

Re: unzip oracle files on hpux integrity servers 11.23

Have you tried unzip or uncompress commands?

I;m pretty sure unzip will handle it.
Dennis Handly
Acclaimed Contributor
Mark McDonald_2
Trusted Contributor

Re: unzip oracle files on hpux integrity servers 11.23

WilliamSmith11
Super Advisor

Re: unzip oracle files on hpux integrity servers 11.23

yes I do

I know that there is a tool that is installed and permit umcompress oracle zip files.

can't remember name


rperez
Steven Schweda
Honored Contributor

Re: unzip oracle files on hpux integrity servers 11.23

> yes I do

Yes, you do _what_?

> I know that there is a tool that is
> installed and permit umcompress oracle zip
> files.

There might be many. What makes you so sure,
if you can't find it?

> can't remember name

I vote for UnZip ("unzip"), but I may be
biased.
sujit kumar singh
Honored Contributor
Solution

Re: unzip oracle files on hpux integrity servers 11.23

Hi
Hi


What u need is to download the unzip utility from the following site,
http://hpux.cs.utah.edu/hppd/hpux/Misc/unzip-5.52/

The file for the HP-UX 11.23 on an Itanium Platform is
unzip-5.52-ia64-11.23.depot.gz


FTP that to the server in the /tmp folder and do an swinstall for that depot file.
#cd /tmp
#gunzip unzip-5.52-ia64-11.23.depot.gz

#swinstall ├в s /tmp/unzip-5.52-ia64-11.23.depot

After the installation do
#whereis unzip
get the path
and
#cp -p /usr/sbin
OR
#cp -p /usr/bin

then get running unzip <.zip_file_that_u_want_to_unzip>


Regards

Sujit
command to
WilliamSmith11
Super Advisor

Re: unzip oracle files on hpux integrity servers 11.23

unzip-5.52-ia64-11.23.depot was the solution

Remember use the complete path for unzip by doing
whereis unzip


Regards

W.S
rperez
sujit kumar singh
Honored Contributor

Re: unzip oracle files on hpux integrity servers 11.23

hi

if u can copy the unzip command from the location to /usr/sbin , u need not give the whole of the path of the command then while running unzip as root.

Regards
Sujit