- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: command to uncompress the depot files
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
04-17-2006 03:58 PM
04-17-2006 03:58 PM
I am trying to unzip a file having extension
abc_depot.gz. I gave the command $gzip -d abc_depot.gz
I am executing the above command on hpux 11.00.
But it is me giving error.
Is there some other command to uncompresss the above compressed depot files ?
Thanks,
Shiv
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 04:03 PM
04-17-2006 04:03 PM
Re: command to uncompress the depot files
BUT, chances are that the download did not complete successfully. The first thing I would try is to download the depot again. The site you downloaded from should give byte counts and possibly checksums for the files. Verify that those are correct after the download.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 04:28 PM
04-17-2006 04:28 PM
Re: command to uncompress the depot files
file "your_file"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 04:41 PM
04-17-2006 04:41 PM
Re: command to uncompress the depot files
try gunzip filename.gz
or you can unzip using winrar or winzip the file from windows and ftp to server.
-sysadm-
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 05:09 PM
04-17-2006 05:09 PM
Re: command to uncompress the depot files
[sksonkar@bigguy:/home/sksonkar]$ gzip -d tusc-7.8-hppa-11.11.depot.gz
gzip: tusc-7.8-hppa-11.11.depot.gz: not in gzip format
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 05:16 PM
04-17-2006 05:16 PM
Re: command to uncompress the depot files
1. The downloaded file is not a complete file (try downloading it again)
2. The file is not a zip file, do
file "file_name" to see the fowmat of the file. Sometimes the file is already in depot format but named as .gz in which case you could just rename the file and start your installation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 05:35 PM
04-17-2006 05:35 PM
Re: command to uncompress the depot files
Check the file format using the 'file' command. If it lists as a gzip format , you can uncompress it.
# gunzip filename.gz
or
# gzip -d filenma.gz
Else you need to re-download if its seems to be corrupt or broken gzip.
Cheers,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 05:46 PM
04-17-2006 05:46 PM
Re: command to uncompress the depot files
tusc-7.8-hppa-11.11.depot.gz: tar file
Is it a depot file ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 05:58 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-17-2006 06:49 PM
04-17-2006 06:49 PM
Re: command to uncompress the depot files
#mv abc_depot.gz abc_depot.depot
then install it
#swinstall -s $PWD/abc_depot.depot
That's all
HTH