- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- unzip windows .zip files on HPUX 11.00
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
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
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
тАО02-01-2005 01:09 AM
тАО02-01-2005 01:09 AM
unzip windows .zip files on HPUX 11.00
I am trying to unzip a .zip file generated on a windows platform. The zip file contains a number of files, some bigger than 2Gb.
I have tried unzip (5.51) and gunzip (1.2.4), both either a problem with multiple files or file size.
Any ideas?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 01:18 AM
тАО02-01-2005 01:18 AM
Re: unzip windows .zip files on HPUX 11.00
"unzip" handles multiple files.
And you do have largefiles turned on for the required filesystem(s)?
regards,
Thierry.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 01:31 AM
тАО02-01-2005 01:31 AM
Re: unzip windows .zip files on HPUX 11.00
http://hpux.connect.org.uk/hppd/hpux/Misc/unzip-5.51/
You are current.
Make sure the target filesystem has largefiles enabled or use fsadm to convert it.
If it still does not work, question the source, because I've used unzip on windows zip files, made by winzip. Its worked 95% of the time for me. The rest of the time it failed because the files were not zipped properly or other tools were used.
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
тАО02-01-2005 01:42 AM
тАО02-01-2005 01:42 AM
Re: unzip windows .zip files on HPUX 11.00
prompt> file
otherwise, you may have a corrupted file.
SEP: .zip files are compressed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 01:44 AM
тАО02-01-2005 01:44 AM
Re: unzip windows .zip files on HPUX 11.00
However unzip returns an error unzipping the 2Gb file "write error (disk full?)" and the disk is not full.
So unzip has a problem with > 2Gb files.
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 02:12 AM
тАО02-01-2005 02:12 AM
Re: unzip windows .zip files on HPUX 11.00
compressed size of a single file : 4 GB
In practice, the real limit may be 2 GB on many systems, due to UnZip's use of the fseek() function to jump around within an archive. Because's fseek's offset argument is usually a signed long integer, on 32-bit systems UnZip will not find any file that is more than 2 GB from the beginning of the archive. And on 64-bit systems, UnZip won't find any file that's more than 4 GB from the beginning (since the zipfile format can only store offsets that big). So the last file in the archive can potentially be arbitrarily large (in theory, anyway--we haven't tested this), but the combined total of all the rest must be less than 2 GB or 4 GB, respectively.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 02:13 AM
тАО02-01-2005 02:13 AM
Re: unzip windows .zip files on HPUX 11.00
ditto for uncompresed files
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 02:01 PM
тАО02-01-2005 02:01 PM
Re: unzip windows .zip files on HPUX 11.00
fsadm /mp
Most backup/compression utilities: tar, fbackup, cpio, pax. do not support files larger then 2gig because of header standards.
http://docs.hp.com/en/940/lgfiles4.pdf
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 10:17 PM
тАО02-01-2005 10:17 PM
Re: unzip windows .zip files on HPUX 11.00
I have made sure that the fileystem is largefiles and OS is 64bit.unzip is also 64bit version.
The zip file is 400Mb in size, contains 7 files sized 35Mb,5Mb,2200Mb,11Mb,700Kb,5Mb and 8Mb.
The first two files extract fine then the message about the disk being full appears and whether to continue.
The final message is "warning:
Regards
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 10:20 PM
тАО02-01-2005 10:20 PM
Re: unzip windows .zip files on HPUX 11.00
Perhaps i got a hint for you.
We use to unzip files larger than 2 GB this way :
cat filename | unzip ... > /whatsoever
Rgds
Alexander M. Ermes
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 10:44 PM
тАО02-01-2005 10:44 PM
Re: unzip windows .zip files on HPUX 11.00
this may work with zip.
When I run the command:
cat a.zip |unzip > x
File x just shows the unzip help screen.
Any other ideas out there?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 10:58 PM
тАО02-01-2005 10:58 PM
Re: unzip windows .zip files on HPUX 11.00
Revert
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 11:05 PM
тАО02-01-2005 11:05 PM
Re: unzip windows .zip files on HPUX 11.00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 11:08 PM
тАО02-01-2005 11:08 PM
Re: unzip windows .zip files on HPUX 11.00
Try this on a unzip which is compiled on a 64 bit mode ,this should work##
Thanks,,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 11:20 PM
тАО02-01-2005 11:20 PM
Re: unzip windows .zip files on HPUX 11.00
running as root
64 bit version
Closing thread. Have abandoned the unzip way and am getting the files indivdually transferred.
So my solution is not to use unzip.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО02-01-2005 11:21 PM
тАО02-01-2005 11:21 PM
Re: unzip windows .zip files on HPUX 11.00
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО07-24-2006 12:59 AM
тАО07-24-2006 12:59 AM
Re: unzip windows .zip files on HPUX 11.00
unzip -p a.zip > x