- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Uncompress
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
06-13-2006 12:53 PM
06-13-2006 12:53 PM
Would like to uncompress a .Z file present in one filesystem into an another filesystem..
any suggestions pls
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2006 01:01 PM
06-13-2006 01:01 PM
Re: Uncompress
but i dont know how to uncompress files present in one filesystem into an another filesystem..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2006 01:05 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2006 01:11 PM
06-13-2006 01:11 PM
Re: Uncompress
Compress the file named zenith and print compression information to
the terminal:
compress -v zenith
The terminal display shows either a line resembling
zenith: Compression: 23.55% -- replaced with zenith.Z
indicating that the compressed file is 23.55% smaller than the
original, or a line resembling
zenith: Compression: -12.04% -- file unchanged
indicating that an additional 12.04% space must be used to compress
the file.
Undo the compression by typing either of the following commands:
uncompress zenith.Z
compress -d zenith.Z
This restores file zenith.Z to its original uncompressed form and
name.
uncompress will perform on standard input if no files are specified.
For example, to list a compressed tar file:
uncompress -c arch.tar.Z | tar -tvf -
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-13-2006 02:03 PM
06-13-2006 02:03 PM
Re: Uncompress
I used the zcat command but without the filename