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-25-2005 04:06 PM
04-25-2005 04:06 PM
GZIP
i am not able to zip the files thats having .bkp extension.
I checked with other files having .log ext, gzip working here fine...but when i run gzip on .bkp ext file its giving -- > inca_one.bkp unknown error # inca_one is a file name which i want to zip..
thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 04:13 PM
04-25-2005 04:13 PM
Re: GZIP
whence gzip
what
You might try a newer version or this may be a feature.
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 05:12 PM
04-25-2005 05:12 PM
Re: GZIP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 06:06 PM
04-25-2005 06:06 PM
Re: GZIP
bacuase the file i am tring to zip is of above 1 GB....
Yogesh
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 06:12 PM
04-25-2005 06:12 PM
Re: GZIP
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 06:28 PM
04-25-2005 06:28 PM
Re: GZIP
1.check as whether the file system supports largefiles.
2.Use gzip latest version above 1.3.1
http://hpux.cs.utah.edu/hppd/hpux/Gnu/gzip-1.3.5/
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 06:44 PM
04-25-2005 06:44 PM
Re: GZIP
First thing to do is to find out what the type of the file is:
# file blah.bkp
If that returns GZIP, BZIP2, PACK, COMPRESSED, or ZIP, you will need the corresponding utility to uncompress it
# gzip -d
# bzip2 -d
# unpack file.bkp (very unlikely)
# uncompress
# unzip -l file.bkp
unzip does compress and archive in one phase, which you cannot split
Now look at the type of file.xxx
# file file.xxx
If it says TAR or CPIO
# tar tvf file.xxx
# cpio -itv
to see what the content of the archive is. If cpio comes with a phase error, try
# cpio -itvc
In all cases it's wise to use the GNU versions of the utilities, because they can deal with non-native or weird formats (other CRC checksums etc) way better than HP's native tar and cpio
Enjoy, Have FUN! H.Merijn
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-25-2005 06:44 PM
04-25-2005 06:44 PM
Re: GZIP
To check largefiles support:
fsadm /path/to/filesystem
To enable largefiles support:
fsadm -o largefiles /path/to/filesystem