Home » Infrastructure » Linux » Installation problem...install/unzip: No such file or directory (11g (11.1.0.6) on 64-bit Ubuntu 8.04)
Installation problem...install/unzip: No such file or directory [message #397115] Thu, 09 April 2009 01:37 Go to next message
cmerry
Messages: 109
Registered: November 2005
Location: Idaho
Senior Member
I am attempting to install Oracle 11g (11.1.0.6) on Ubuntu 64-bit server (8.04). Before you start, I know Oracle does not support this version (which is why I'm asking in the forum), but I have seen several posts indicating others have successfully installed Oracle on this OS.

I am receiving the following error message:

./runInstaller -ignoreSysPrereqs
Starting Oracle Universal Installer...

Checking Temp space: must be greater than 120 MB.   Actual 216368 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 5875 MB    Passed
Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-04-09_02-18-52AM. Please wait ...sh: /home/oracle/database/install/unzip: No such file or directory




The installation log doesn't seem to offer much assistance:


Using paramFile: /home/oracle/database/install/oraparam.ini


Checking Temp space: must be greater than 120 MB.   Actual 216368 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 5875 MB    Passed
Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed

The commandline for unzip:
/home/oracle/database/install/unzip -qqqo ../stage/Components/oracle.jdk/1.5.0.11.0/1/DataFiles/\*.jar -d /tmp/OraInstall2009-04-09_02-18-52AM 
Using the umask value '022' available from oraparam.ini



The unzip executable is located in the appropriate place. Here is the contents of the "database" directory from which the install is taking place:

ls -al
total 40
drwxr-xr-x  6 oracle oinstall 4096 2008-10-06 05:57 .
drwxr-xr-x  4 oracle dba      4096 2009-04-09 01:49 ..
drwxr-xr-x 11 oracle oinstall 4096 2008-10-06 05:57 doc
drwxr-xr-x  5 oracle oinstall 4096 2008-10-06 05:57 install
-rw-r--r--  1 oracle oinstall  123 2008-10-06 05:58 README
drwxr-xr-x  2 oracle oinstall 4096 2008-10-06 05:57 response
-rwxr-xr-x  1 oracle oinstall 3226 2008-10-06 05:35 runInstaller
drwxr-xr-x 14 oracle oinstall 4096 2008-10-06 05:57 stage
-rw-r--r--  1 oracle oinstall 4835 2008-10-06 05:35 welcome.html


And as you can see, unzip is found in the install directory:

ls -al
total 388
drwxr-xr-x 5 oracle oinstall   4096 2008-10-06 05:57 .
drwxr-xr-x 6 oracle oinstall   4096 2008-10-06 05:57 ..
-rwxr-xr-x 1 oracle oinstall     28 2008-10-06 05:35 addLangs.sh
-rwxr-xr-x 1 oracle oinstall     76 2008-10-06 05:35 addNode.sh
-rwxr-xr-x 1 oracle oinstall    276 2008-10-06 05:35 attachHome.sh
-rwxr-xr-x 1 oracle oinstall    182 2008-10-06 05:35 detachHome.sh
drwxr-xr-x 2 oracle oinstall   4096 2008-10-06 05:35 images
-rwxr-xr-x 1 oracle oinstall  47926 2008-10-06 05:35 lsnodes
-rwxr-xr-x 1 oracle oinstall   2818 2008-10-06 05:35 oneclick.properties
-rwxr-xr-x 1 oracle oinstall   1798 2008-10-06 05:35 oraparam.ini
-rwxr-xr-x 1 oracle oinstall   6437 2008-10-06 05:35 oraparamsilent.ini
-rwxr-xr-x 1 oracle oinstall 152162 2008-10-06 05:35 .oui
drwxr-xr-x 2 oracle oinstall   4096 2008-10-06 05:35 resource
drwxr-xr-x 2 oracle oinstall   4096 2008-10-06 05:35 response
-rwxr-xr-x 1 oracle oinstall  21642 2008-10-06 05:35 runSSHSetup.sh
-rwxr-xr-x 1 oracle oinstall 102612 2008-10-06 05:35 unzip



I have read through the Oracle install guide, as well as a great guide specifically for Ubuntu, http://www.pythian.com/news/968/installing-oracle-11g-on-ubuntu-804-lts-hardy-heron

Thank you for the help.
Re: Installation problem...install/unzip: No such file or directory [message #397177 is a reply to message #397115] Thu, 09 April 2009 05:34 Go to previous messageGo to next message
babuknb
Messages: 1736
Registered: December 2005
Location: NJ
Senior Member

Quote:

I am receiving the following error message:


./runInstaller -ignoreSysPrereqs
Starting Oracle Universal Installer...

Checking Temp space: must be greater than 120 MB.   Actual 216368 MB    Passed
Checking swap space: must be greater than 150 MB.   Actual 5875 MB    Passed
Checking monitor: must be configured to display at least 256 colors.    Actual 16777216    Passed
Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-04-09_02-18-52AM. Please wait ...sh: /home/oracle/database/install/unzip: No such file or directory

Where is Error message ??
Re: Installation problem...install/unzip: No such file or directory [message #397189 is a reply to message #397115] Thu, 09 April 2009 05:55 Go to previous messageGo to next message
Mahesh Rajendran
Messages: 10707
Registered: March 2002
Location: oracleDocoVille
Senior Member
Account Moderator
>>sh: /home/oracle/database/install/unzip: No such file or directory
Known issue.
Try creating a symlink to /usr/bin/unzip.
If unzip in /home/oracle/install/unzip still gets invoked, rename that to something else
or
call /usr/bin in profile appropriately so it overrides the other unzip.
Re: Installation problem...install/unzip: No such file or directory [message #397251 is a reply to message #397189] Thu, 09 April 2009 10:31 Go to previous message
cmerry
Messages: 109
Registered: November 2005
Location: Idaho
Senior Member
Thank you for the reply. Based on your suggestion, I performed the following and the installation was able to continue.

cd ~/database
mv install/unzip install/unzip.backup
ln -s `which unzip` install/unzip
Previous Topic: Linux auto start database/listener
Next Topic: Can not call rc.loca on startup
Goto Forum:
  


Current Time: Thu Mar 28 09:17:51 CDT 2024