Unzip utility ..

Hi,
instllaing unzip utility on hp ux
Downloaded archive from
http://hpux.connect.org.uk/hppd/cgi-bin/search?package=on&description=on&term=unzip&Search=Search
installtion process?
Regards,
Rahul Reddy

need the installation instructions
Can u let me know the installation instructions of info-zip installation
Regards,
Rahul Reddy

Similar Messages

  • Using UNZIP utility...

    Hi All,
    Getting this error when trying to use unzip..
    unzip_lnx em12_linux_x86_disk1of2.zip
    unzip: cannot find em12_linux_x86_disk1of2.zip, em12_linux_x86_disk1of2.zip.zip or em12_linux_x86_disk1of2.zip.ZIP.
    [root@ipman em12c_sw]# ./unzip_lnx em12_linux_x86_disk1of2.zip
    unzip: cannot find em12_linux_x86_disk1of2.zip, em12_linux_x86_disk1of2.zip.zip or em12_linux_x86_disk1of2.zip
    root root 4096 Apr 30 21:39 ..
    -rwxrwxrwx 1 oracle oracle 2721695356 Dec 20 22:55 em12_linux_x86_disk1of2.zip
    -rwxrwxrwx 1 oracle oracle 2907679610 Dec 20 22:56 em12_linux_x86_disk2of2.zip
    -rwxrwxrwx 1 oracle oracle 100472 Apr 30 21:42 unzip_lnx
    [root@ipman em12c_sw]#
    I followed directions on updates site...
    thanks

    Hi,
    Might be some issues with the unzip,
    Download the unzip utility for the respective platform from
    https://updates.oracle.com/unzips/unzips.html
    Click LINUX Intel (32bit and 64bit - Large file support)
    And then proceed with the steps in the link
    Best Regards,
    Venkat

  • Unzip utility for BI SE one

    Hi,
    I have downloaded two parts for BE SE one from:
    http://www.oracle.com/technology/software/products/ias/htdocs/101321biseone.html
    I have two files in one directory:
    biseone_windows_x86_101321_dvd.zip
    biseone_windows_x86_101321_dvd.z01
    I try unzip from MKS toolkit, unzip from Oracle EBS, native unzip from Windows, WinRar, but I cannot extract the .z01 file.
    I go also to: http://updates.oracle.com/unzips/unzips.html
    and
    http://www.info-zip.org/
    but I cannot find unzip utility for Windows.
    Please help me with which utility I should unzip them?
    Thank you.

    please give that one one more chance...

  • Up-to-date unzip utility for MOPatch

    Hi All,
    SAP Note 1027012 - MOPatch - Install Multiple Oracle Patches in One Run
    mentions  following
    MOPatch requires an up-to-date "unzip" utility. As of version 1.7,
    MOPatch by default uses the "unzip" utility that is located at
    $ORACLE_HOME/bin.
    Does anyone know where do we download the uptodated version of unzip utilty and how to install it?
    Is it just over writing the existing files?
    Thanks

    Rizwan Choudhry wrote:
    Hi Orkun Gedik,
    >
    > Thank your for replying.
    >
    > We are using OS :
    > HP-UX Itanium (64-bit)
    >
    > regards riz
    Hi Riz,
    You can find the unzip pack on the link, below;,
    http://hpux.connect.org.uk/hppd/hpux/Misc/unzip-6.0/
    And follow the installation instructions, on the same page.
    Best regards,
    Orkun Gedik

  • Where do I get unzip utility?

    I downloaded Oracle Enterprise Manager Tuning pack for Windows NT. Instructions suggest to use unzip utility to unzip the zipped file. Where do I get this utility?
    WinZip & pkzip both didn't work...

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by mkera:
    I downloaded Oracle Enterprise Manager Tuning pack for Windows NT. Instructions suggest to use unzip utility to unzip the zipped file. Where do I get this utility?
    WinZip & pkzip both didn't work...<HR></BLOCKQUOTE>
    www.winzip.com
    null

  • Does SL have a built-in zip/unzip utility?

    I was wondering if I can unzip zipped files in SL or if I will need to purchase a utility like Stuffit?

    Yep, it sure does.
    From the help menu:
    To compress items:
    Do any of the following:
    Select the item or items you want to compress and choose File > Compress.
    Control-click an item and choose Compress from the shortcut menu.
    In a Finder window, select one or more items and choose Compress from the Action menu (looks like a gear).
    If you compress a single item, the compressed file has the name of the original item with the .zip extension. If you compress multiple items at once, the compressed file is called Archive.zip.
    To uncompress (expand) an item:
    Double-click the .zip file.
    Basically you can just right click (control click) on a folder or group of files and compress them. To uncompress just a simple double click will do it.
    Hope that helps

  • Protect jar file from unzip utility

    Hi
    I have an application in .jar file and I don't want that the client
    can extract or unzip and see the contents of my .jar file.But still the .jar file
    could run by mouse double click or java -jar command.
    Anyone can give me an idea how to do it.
    Thanks...

    If java can read it on your client's machine, the client can read it. There is no way to prevent this. Here's the general cycle:
    int protectionMode = chooseProtectionMode();
    boolean haveCustomers = true;
    while (haveCustomers)
      switch (protectionMode)
        case OBFUSCATE: 
          //You can obfuscate your code to make it (marginally) harder to
          //reverse-engineer.  If your client is really interested in your
          //code, this won't keep them from figuring out what it does.
          break;
        case ENCRYPT:
          // You can encrypt most of your class files, and build a
          // decrypting classloader, and build a framework that calls
          // the decrypting classloader to get at the rest of the jar. 
          // Of course, your client can just arrange to call your
          // classloader from their own, and write the (decrypted)
          // classfiles to disk, and then reverse engineer them.
          protectionMode = OBFUSCATE;
          break;
        case STATECHECK:
          // You can put some kind of check in your decrypting classloader
          // that calls System.exit() if it discovers it's being called in
          // such an unfriendly way.  Your client will take about 10 minutes
          // to find and remove the check.
          protectionMode = ENCRYPT;
          break;
        case REMOTE:
          // You can keep your code on your server and let the client run
          // something that talks to it.  The client will complain
          // vociferously, and refuse to use your app. 
          haveCustomers = false;
          break;
        default:
          // You can decide to stop stressing over something you can't
          // help, and write code that people will buy
      }(Sorry - in an odd mood, seen this question or one like it too often recently, not enough sleep...)

  • Unzipping with unzip utility

    Can someone tell me how to preserve the file dates when decompressing. I have tryed examples from sun website, but the files lose their original lastmodified property value and are reset to the current date. I'll appreciate any help.. Thanks.

    It's just the underlying file system creating a new file. It has nothing to do zip/unzip or anything.
    New file always gets current timestamp. But fortunately, java.io.File class has setLastModified()
    method with which you could change the timestamp of a file.

  • Recommended zip/unzip utility

    Can someone recommend a good zip/unzip program for the Mac – one that will allow me to unzip password-protected (encrypted) zipfiles that were originally created on a PC?
    (One that’s freeware would be particularly welcome.)
    Thanks.

    I have no idea what going on. Did you launch the Terminal.app in /Applications/Utilities/? If so, if you type the following in the window that pops up and hit the return key:
    unzip
    you should get:
    $ unzip
    UnZip 5.52 of 28 February 2005, by Info-ZIP. Maintained by C. Spieler. Send
    bug reports using http://www.info-zip.org/zip-bug.html; see README for details.
    Usage: unzip [-Z] [-opts[modifiers]] file[.zip] [list] [-x xlist] [-d exdir]
    Default action is to extract files in list, except those in xlist, to exdir;
    file[.zip] may be a wildcard. -Z => ZipInfo mode ("unzip -Z" for usage).
    -p extract files to pipe, no messages -l list files (short format)
    -f freshen existing files, create none -t test compressed archive data
    -u update files, create if necessary -z display archive comment
    -x exclude files that follow (in xlist) -d extract files into exdir
    modifiers: -q quiet mode (-qq => quieter)
    -n never overwrite existing files -a auto-convert any text files
    -o overwrite files WITHOUT prompting -aa treat ALL files as text
    -j junk paths (do not make directories) -v be verbose/print version info
    -C match filenames case-insensitively -L make (some) names lowercase
    -X restore UID/GID info -V retain VMS version numbers
    -K keep setuid/setgid/tacky permissions -M pipe through "more" pager
    Examples (see unzip.txt for more info):
    unzip data1 -x joe => extract all files except joe from zipfile data1.zip
    unzip -p foo | more => send contents of foo.zip via pipe into program more
    unzip -fo foo ReadMe => quietly replace existing ReadMe if archive file newer
    That's the short version. For the long version, type in the following and hit the return key:
    man unzip
    If you didn't type these in the Terminal.app window, I have no idea what you're doing.

  • Unable to unzip oralce 11g files in windows(32 bit) xp sp2

    Database Installation
    i tried to unzip oracle 11g version 2 using 7zip and winzip 15.5..i tried with winrar too...
    WHEN I RIGHT CLICK AND TRY EXTRACT HERE OPTION with all the softwares i am getting errors as "UNEXPECTED END OF ARCHIVE","UNABLE TO OPEN THE FILE"..
    IF I OPEN THE FILE IN ARCHIVE AND CLICK EXTRACT i get error as "THE ARCHIVE IS IN UNKNOWN FORMAT OR DAMAGED.."
    i downloaded 11g version 1 and 2 from oracle site itself..but i faced the same problem with both..
    i couldnt extract both the files where as i am able to extract any other files on my computer...
    why am i facing problem with only these files????

    865053 wrote:
    Database Installation
    i tried to unzip oracle 11g version 2 using 7zip and winzip 15.5..i tried with winrar too...
    WHEN I RIGHT CLICK AND TRY EXTRACT HERE OPTION with all the softwares i am getting errors as "UNEXPECTED END OF ARCHIVE","UNABLE TO OPEN THE FILE"..
    IF I OPEN THE FILE IN ARCHIVE AND CLICK EXTRACT i get error as "THE ARCHIVE IS IN UNKNOWN FORMAT OR DAMAGED.."
    i downloaded 11g version 1 and 2 from oracle site itself..but i faced the same problem with both..
    i couldnt extract both the files where as i am able to extract any other files on my computer...
    why am i facing problem with only these files????Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (32-bit)
    win32_11gR2_database_1of2.zip (1,625,721,289 bytes)
    win32_11gR2_database_2of2.zip (631,934,821 bytes)
    Directions
    1. All files are in the .zip format. There is an unzip utility here if you need one.
    2. Download and unzip both files to the same directory.
    3. Installation guides and general Oracle Database 11g documentation are here.
    4. Review the certification matrix for this product here.
    refer the linK:-http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win32soft-098987.html
    as mentioned earlier, check size of the download zip file with above mentioned bytes. else try to download again.
    while downloading, do not pause the download in the middle and continue it will corrupt the oracle software.
    if you use any download manager dont pause/stop.
    Good Luck.

  • Unzipping Oracle 11g R2 for Windows Download

    I downloaded Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (x64) from here:
    http://www.oracle.com/technetwork/database/enterprise-edition/downloads/112010-win64soft-094461.html
    Here are the instructions right off of the website:
    1. All files are in the .zip format. There is an unzip utility here if you need one.
    2. Download and unzip both files to the same directory...
    When I extract the files both have the same basic structure:
    c:\shared\win64_11gR2_1\
    c:\shared\win64_11gR2_2\
    The two folders contain a database folder with a stage folder inside:
    c:\shared\win64_11gR2_1\database\stage\components - other folders DO exist in this stage folder
    c:\shared\win64_11gR2_2\database\stage\components - other folders DO NOT exist in this stage folder
    If I try to extract the files to the same directory (as indicated in step 2 above), the two stage\components folders cannot exist in the same folder at the same time...
    c:\shared\win64_11gR2_extracted\database\stage
    c:\shared\win64_11gR2_extracted\database\stage
    I am not sure if the second file of the download is even needed. What am I missing?
    Thanks for any help. :) Thomas

    So two files you downloaded
    win64_11gR2_database_1of2.zip
    win64_11gR2_database_2of2.zip
    unzip tools at the download page are for other operation systems not for windows.
    with e.g. 7zip I can easily un-extract both files in the same directory. (using right click extract here)
    Both files are required. Because the second file has additional components which will be extracted into/under "database/stage/Components" dir...

  • Unzipping Oracle8i Lite???

    I downloaded the 5 files needed, and the batch file, ran the batch, it says o8ilite.zip was merged. But I can't find the file anywhere in order to unzip it, what am I doing wrong?

    It sounds to me like you aren't familiar with
    what zip files are. You need an "unzip" utility. The original is PKWares' zip utility. Currently, on a 32 bit winblows environment you will need pkzip25.exe to open the file.. (or a clone unzip utility). Check www.shareware.com to get this tool
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Jefums:
    I downloaded the 5 files needed, and the batch file, ran the batch, it says o8ilite.zip was merged. But I can't find the file anywhere in order to unzip it, what am I doing wrong?<HR></BLOCKQUOTE>
    null

  • Unzip problem for psoracle816nt.zip (PO8i)

    i downloaded psoracle816nt.zip (Personal Oracle 8i) to install on my win2000 machine. when i tried to unzip the file with WinZip, it told me that the file may be corrupted and to dl it again. after i downloaded the file again, i encountered the same problem.
    does anyone know if winzip is the right unzip utility? Thanks, Jason.

    Hii Guys ,one more prb,
    I need to develop a file uploading utility in struts to upload ZIP files(only ZIP), and i sucseeded to do it using the commons.fileupload which comes along with the WSAD5.1(examples), but the prb is i need to chek for the MIME type and need to reject if its not a zip file, if i do this in actionclass, its waiting till the uploading process of the file is finished and finally its displaying file is not the a ZIP, i need to do this validation as the request comes to the server side, i cant not do this in clint side cause my design should not allow me to use any java script..so please let me know is there any way to specify in the controller it self .
    thanx in advance

  • Unable to UNZIP file...

    Hi All,
    I downloaded the UNZIP utility on update.oracle.com and getting this error:
    EM12c]$ unzip_lnx -t em12_linux_x86_disk1of2.zip
    unzip: cannot find em12_linux_x86_disk1of2.zip, em12_linux_x86_disk1of2.zip.zip or em12_linux_x86_disk1of2.zip.ZIP.
    any ideas?

    Permissions are 777 all across the files.
    92164
    drwxr-xr-x 2 root root 4096 Dec 20 22:56 .
    drwxr-x--- 18 root root 4096 Dec 19 20:44 ..
    -rwxrwxrwx 1 root root 2721695356 Dec 20 22:55 em12_linux_x86_disk1of2.zip
    -rwxrwxrwx 1 root root 2907679610 Dec 20 22:56 em12_linux_x86_disk2of2.zip
    -rwxr-x--x 1 root root 100472 Dec 6 11:15 unzip_lnx
    -rwxrwxrwx 1 root root 398173821 Dec 19 20:43 V26017-01.zip
    [root@ipman Desktop]#
    root@ipman Desktop]# unzip_lnx em12_linux_x86_disk1of2.zip
    unzip: cannot find em12_linux_x86_disk1of2.zip, em12_linux_x86_disk1of2.zip.zip or em12_linux_x86_disk1of2.zip.ZIP.
    what else is going on?

  • How do i unzip this ?

    okay, all.
    here's a good one for ya - i have downloaded aix.ppc64_11gR2_database_1of2.zip and aix.ppc64_11gR2_database_2of2.zip.
    i've moved them over onto my aix 5l machine and used unzip on the 1st one ( 1of2 - unzip aix.ppc64_11gR2_database_1of2.zip)
    it did NOT - as i expected - create a "Disk1" subdirectory and expand the .zip file into it.
    it DID create a "database" subdirectory and expand the .zip file into IT !
    how should i handle the 2of2? , unzip it right over the files that are already in the "database" subdirectory? was "unzip" even the right thing to do - it expanded the .zip file just fine, no errors, and there are lots of files under the "database" subdirectory !
    wondering,
    greg

    gregory_gorman wrote:
    here's a good one for ya - i have downloaded aix.ppc64_11gR2_database_1of2.zip and aix.ppc64_11gR2_database_2of2.zip.
    how should i handle the 2of2? , unzip it right over the files that are already in the "database" subdirectory? was "unzip" even the right thing to do - it expanded the .zip file just fine, no errors, and there are lots of files under the "database" subdirectory ! Gee, I dunno. Maybe I'd follow the instructions on the download pages at http://www.oracle.com/technology/software/products/database/oracle11g/112010_aixsoft.html
         Directions
              1. All files are in the .zip format. There is an unzip utility here if you need one.
              2. Download and unzip both files to the same directory.
              3. Installation guides and general Oracle Database 11g documentation are here.
              4. Review the certification matrix for this product here.
    But different peoples might have other ideas

Maybe you are looking for

  • Header not getting  displayed in the next page in the second table

    Dear Experts , I have a query regarding Header not getting  displayed in the next page in the second table of the main window. .Let me elobrate the issue. I have a smartform in which there are  2 tables TABLE 1 and TABLE 2 in the smartform MAIN windo

  • Syncing ID3 T

    Hello, I have a question about the functionality of the Mediasource software. I've got a Zen Micro and when I first got it, it put a bunch of MP3's on it. These MP3's didn't all have complete ID3 tags. By now I have edited all the tags, so now they a

  • Where exactly do I find drivers for my ThinkPad Yoga?

    I'm trying to find the exact driver download page for my device. According to the label on the bottom, my device has the type 20C0-S0AX00. Searching for this on the driver download page does not find that model - but I'm pretty sure that my device re

  • Sntp configuration in SF500 seems not working

    I am experiencing the following issue: SF500 switch is configured at the office and installed at remote location.   I check the clock setting (with CLI) after installing and see that the clock is NOT synchronized with the sntp server. Then i go into

  • Using Hint in Update or Select Statement...

    Hi , I had an update statement that will get the data from the inline select statement,now where can i can keep the hint ,either in update statement or in Select statement... Please let me know if my sample script is wrong or any better way to approa