- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Downloading Patches and using gunzip
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 06:24 AM
01-02-2003 06:24 AM
Downloading Patches and using gunzip
This is the first time I am doing this and therefore the stupid question!!!
I require patch PHCO_23854 and I downloaded this as a zip file and then as a gzip file. I do not have ftp access to the server so I have copied the patches to a cd and then from cd to the server. When mounting the cd I userd "mount -o cdcase /dev/dsk/c3t2d0 /cdrom"
I cannot unzip the .zip cos I do not have this on HP-UX 11.0.B
When I try and use gunzip I get the following:
gunzip -d patche~1.gz
gunzip: patche~1.gz: unexpected end of file
What am I doing wrong?
Many thanks
Vinesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 06:28 AM
01-02-2003 06:28 AM
Re: Downloading Patches and using gunzip
first - try downloading the patch one more time.
second - try downloading in a not compressed format (tar) - it should work.
cheers,
Mariusz
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 06:31 AM
01-02-2003 06:31 AM
Re: Downloading Patches and using gunzip
# getpatch.sh PHCO_23854
--8<--- getpatch.sh
#!/usr/bin/sh
OS=11
if [ "${1:--11}" = "-10" ]; then
shift
OS=10
fi
for p in $@ ; do
wget --passive-ftp ftp://ftp.itrc.hp.com/hp-ux_patches/s700_800/$OS.X/$p
sh $p
echo "swinstall -s `pwd`/$p.depot $p"
done
-->8---
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 06:33 AM
01-02-2003 06:33 AM
Re: Downloading Patches and using gunzip
copy it to CD-ROM, copy the patch to /tmp
run "sh PHCO_23854" this will produce two files the patch and a patchname.text file (read it)
fire up swinstall and use appropriate syntax as per PHCO_23854.text to intall it.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 06:37 AM
01-02-2003 06:37 AM
Re: Downloading Patches and using gunzip
Down load the patch again in .txt format(don't use gzip format). since you have to install this patch, without the root access you can't install. you should be having root password for that machine.
ftp the patch from your PC to HP machine
#sh
#swinstall -s
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-02-2003 06:40 AM
01-02-2003 06:40 AM