Hi
I have downloaded a set of zip files from https://edelivery.oracle.com.
They form the Informatica Powercenter tool that runs an older version of OBIEE.
I chose the Linux x86-64 as my OS.
Can you suggest what I am doing wrong as I combine / extract from the downloaded files?
The steps I have taken are listed below.
# This is an x86_64 Oracle linux VM.
$ uname -a
Linux bigdatalite.localdomain 2.6.32-642.4.2.el6.x86_64 #1 SMP Tue Aug 23 10:42:14 PDT 2016 x86_64 x86_64 x86_64 GNU/Linux
#MD5s of the 4 downloaded files all check out ok:
453436559ef071568c07df9517166115 V76291-01_1of4.zip
bedfa4581197e83e98e1d6afc6238b2d V76291-01_2of4.zip
4263fd81d9054a36fca8e8bbf3eb7f69 V76291-01_3of4.zip
d0fd3408093e929f774eec8f3783aa55 V76291-01_4of4.zip
# I unzip the downloaded files to get the 4 dac_win_11g_infa_linux_64bit_961.z* files:
$ for ii in `ls V*.zip`; do unzip $ii; done
#File sizes look 'sensible'. 3 big ones all the same size, plus the 4th one.
$ ls -l dac*
-rw-r--r--. 1 oracle oinstall 2097152000 May 13 2015 dac_win_11g_infa_linux_64bit_961.z01
-rw-r--r--. 1 oracle oinstall 2097152000 May 13 2015 dac_win_11g_infa_linux_64bit_961.z02
-rw-r--r--. 1 oracle oinstall 2097152000 May 13 2015 dac_win_11g_infa_linux_64bit_961.z03
-rw-r--r--. 1 oracle oinstall 1004365477 May 13 2015 dac_win_11g_infa_linux_64bit_961.zip
#Combine the 4 into one zip archive
$ zip -s=0 dac_win_11g_infa_linux_64bit_961.zip --out infa.zip
#unzip my archive, and it all goes horribly wrong:
$ unzip infa.zip
Archive: infa.zip
extracting: 961_Client_Installer_win32-x86.zip bad CRC 3f03050d (should be b9bc663d)
inflating: 961_Server_Installer_linux-x64.tar
error: invalid compressed data to inflate
bad CRC cc1b8617 (should be f4687d5a)
extracting: DAC11gInstaller.zip
extracting: Infa961Docs.zip
inflating: Oracle_All_OS_Prod.key
# Try to extract from tar, in spite of previous error. Unsurprisingly, it failed:
$ tar -xvf 961_Server_Installer_linux-x64.tar
./
./source/
./source/infa_native_esd.jar
tar: Unexpected EOF in archive
tar: rmtlseek not stopped at a record boundary
tar: Error is not recoverable: exiting now
This leaves me stuck!
Are there any unzip options I might have missed?
Thanks, Paul