- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: compressing 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
08-30-2005 12:16 AM
08-30-2005 12:16 AM
compressing files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 12:17 AM
08-30-2005 12:17 AM
Re: compressing files
compress
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 12:19 AM
08-30-2005 12:19 AM
Re: compressing files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 12:21 AM
08-30-2005 12:21 AM
Re: compressing files
There are also 3rd party utils like zip & bzip.
Rgds,
Jeff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 12:25 AM
08-30-2005 12:25 AM
Re: compressing files
# tar -cvf test.tar
It will created test.tar file.
# Compress it as,
# gzip test.tar
It will create, test.tar.gz
If you have bzip then it is more good.
hth.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-30-2005 12:26 AM
08-30-2005 12:26 AM
Re: compressing files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 01:08 AM
08-31-2005 01:08 AM
Re: compressing files
you can download a depot-file from
http://hpux.asknet.de/hppd/hpux/Misc/zip-2.31/
Add the product to your system via swinstall and then you can compress your tar files.
Note, that you can pipe a tar-output directly to zip:
tar cf - . | zip mybackup.tar.zip -
mfG Peter
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 01:36 AM
08-31-2005 01:36 AM
Re: compressing files
To compress files :
You can use
1. compress filename [ output filename.Z ]
2. tar -cvf file.tar * [ output file.tar ]
3. gzip filename [ output filename.gz ]
cheers ,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-31-2005 01:42 AM
08-31-2005 01:42 AM
Re: compressing files
Go to the following site and enter zip in the search criteria
http://gatekeep.cs.utah.edu/hppd/hpux/
You will get a list of tools that compress files. Choose the one you want, download and install it. They all have instructions/man pages.
This is an excellent site for getting all sorts of tools to help you manage your systems