- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- error when unzipping
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
01-03-2006 04:46 AM
01-03-2006 04:46 AM
error when unzipping
system:/u01/oradata/VIMC_DEV/AP# unzip paf1.zip
Archive: paf1.zip
inflating: paf.txt
paf.txt: write error (disk full?). Continue? (y/n/^C)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 04:50 AM
01-03-2006 04:50 AM
Re: error when unzipping
Look for another file system to unzip the file on.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 04:52 AM
01-03-2006 04:52 AM
Re: error when unzipping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 04:56 AM
01-03-2006 04:56 AM
Re: error when unzipping
Seems you have no space on /u01/oradata/VIMC_DEV/AP.
Check it once again.
Also try to unzip the file in a different filesystem. How big is the file ?
You can use also use the preview option of unzip to see the zip file contenet.
hth,
Raj.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 04:57 AM
01-03-2006 04:57 AM
Re: error when unzipping
videv01:/u01/oradata/VIMC_DEV/AP# ls -ltr
total 957376
-rwxrwxrwx 1 oracle dba 490171306 Jan 3 17:15 paf1.zip
videv01:/u01/oradata/VIMC_DEV/AP# bdf .
Filesystem kbytes used avail %used Mounted on
/dev/vgBS23/lvVIMCDEV
54001664 41449072 12455296 77% /u01/oradata/VIMC_DEV
videv01:/u01/oradata/VIMC_DEV/AP#
Then trying unzip:
videv01:/u01/oradata/VIMC_DEV/AP# unzip paf1.zip
Archive: paf1.zip
inflating: paf.txt
paf.txt: write error (disk full?). Continue? (y/n/^C)
After:
-rwxrwxrwx 1 oracle dba 490171306 Jan 3 17:15 paf1.zip
-rw-r--r-- 1 root sys 2147483647 Jan 3 17:56 paf.txt
videv01:/u01/oradata/VIMC_DEV/AP# bdf .
Filesystem kbytes used avail %used Mounted on
/dev/vgBS23/lvVIMCDEV
54001664 43546232 10374520 81% /u01/oradata/VIMC_DEV
When it gives the error and asks if I want to cancel or continue...should i continue? what will this cause to happen?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 05:05 AM
01-03-2006 05:05 AM
Re: error when unzipping
you need to have largefiles enabled to create a file larger than 2GB in the Filesystem. The file that you are extracting "paf.txt" is more than 2GB in size and while inflating the file extraction stops after extracting 2GB of it.
You need to enable "largefiles" for the Filesystem.
To chekk if you have largefiles enabled, try,
fsadm -v /mount_point
If this says "nolargefiles", enable largefiles to proceed with this FS, else use another one that has largefiles enabled.
Hope this helps.
Regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 05:30 AM
01-03-2006 05:30 AM
Re: error when unzipping
You need to use the unzip utility which supports more that 2GB, we had the same issue and put the unzip which can do more than 2GB.
Rgds
HGN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 05:32 AM
01-03-2006 05:32 AM
Re: error when unzipping
You can also check the following threads
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=803569
http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=923051
Rgds
HGN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 09:50 PM
01-03-2006 09:50 PM
Re: error when unzipping
i have read around and been told if the unzip tool used was compiled with 32bit mode, it will not support files greater then 2gb.
Also please note largefiles is enabled.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 09:55 PM
01-03-2006 09:55 PM
Re: error when unzipping
# fsadm -v /mount_point
2)You can use jar utility which comes with Java, # /opt/java1.4/bin/jar -xvf
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:01 PM
01-03-2006 10:01 PM
Re: error when unzipping
/opt/java1.4/bin/PA_RISC2.0/jar
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:03 PM
01-03-2006 10:03 PM
Re: error when unzipping
to check whether you have 32 or 64 bit version of unzip:
which unzip
cd to the directory returned from the first command
file unzip
if PA-RISC then its 32bit, if ELF then 64bit
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:21 PM
01-03-2006 10:21 PM
Re: error when unzipping
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:41 PM
01-03-2006 10:41 PM
Re: error when unzipping
copy of output on my box:
$ which unzip
/usr/contrib/bin/unzip
$ cd /usr/contrib/bin
$ file unzip
unzip: PA-RISC1.1 shared executable dynamically linked
$
This would indicate to me my version of unzip is a 32 bit executable.
I think for large file extract you will require 64bit version
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:42 PM
01-03-2006 10:42 PM
Re: error when unzipping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:45 PM
01-03-2006 10:45 PM
Re: error when unzipping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:46 PM
01-03-2006 10:46 PM
Re: error when unzipping
That should be fine. (Java 1.2 or 1.3)
-Arun
http://forums1.itrc.hp.com/service/forums/helptips.do?#28
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:58 PM
01-03-2006 10:58 PM
Re: error when unzipping
/opt/java1.3/bin/jar -xvf paf1.zip
or
/opt/java1.3/bin/PA_RISC2.0/jar -xvf paf1.zip
??
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 10:59 PM
01-03-2006 10:59 PM
Re: error when unzipping
will be OK
-Arun
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 11:02 PM
01-03-2006 11:02 PM
Re: error when unzipping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 11:07 PM
01-03-2006 11:07 PM
Re: error when unzipping
any suggestions?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 11:37 PM
01-03-2006 11:37 PM
Re: error when unzipping
not work with 64bit?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-03-2006 11:44 PM
01-03-2006 11:44 PM
Re: error when unzipping
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2006 12:18 AM
01-04-2006 12:18 AM
Re: error when unzipping
videv01:/u01/oradata/VIMC_DEV/AP# SC2.0/native_threads/jar -xvf paf1.zip <
/usr/lib/dld.sl: Can't open shared library: ../../../build/HP_UX/lib/PA_RISC2.0/server/libjvm.sl
/usr/lib/dld.sl: No such file or directory
Abort(coredump)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-04-2006 12:25 AM
01-04-2006 12:25 AM
Re: error when unzipping
videv01:/usr/lib# ls -ltr | grep dld
-r-xr-xr-x 1 bin bin 188416 Jul 17 2002 dld.sl
-r-xr-xr-x 1 bin bin 12334 Jul 17 2002 libdld.1
-r-xr-xr-x 1 bin bin 24576 Jul 17 2002 libdld.2
lrwxr-xr-x 1 root sys 10 Sep 20 2002 libdld.sl -> ./libdld.2
lrwxr-xr-x 1 root sys 10 Sep 20 2002 libdld.0 -> ./libdld.1