- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: how to speed up decompress process ?
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
10-08-2001 10:24 AM
10-08-2001 10:24 AM
I am trying to decompress( to the same directory) a file dc.dmp.Z
it is taking long time.
any suggestions to speedup .thnx in advance.
here is my case.
$compress -d dc.dmp.Z
dc.dmp already exists; do you wish to overwrite dc.dmp (y or n)? y
-- here is taking long time.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:47 AM
10-08-2001 10:47 AM
Re: how to speed up decompress process ?
This may sound silly..
Did you try uncompress instead compress -d
Or if the file was compressed in some other format like gunzip then using gunzip option to de-compress would be better.
How big is the file..??
Good Luck
-USA...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:48 AM
10-08-2001 10:48 AM
Re: how to speed up decompress process ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:49 AM
10-08-2001 10:49 AM
Re: how to speed up decompress process ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-08-2001 10:59 AM
10-08-2001 10:59 AM
SolutionTo do this, first create a pipe file:
mkfifo {PIPE FILE}
then run gzip -d on the pipe (gzip can handle both .gz and .Z files natively)
gzip -dc dc.dmp.Z > {PIPE FILE} &
then start your import
imp file={PIPE FILE} other options.
This will uncompress the file into the pipe where the import utility is waiting to receive the file.
-Santosh