Installation error in invoking target 'agent nmhs'

Dear All,
I am new to this forum and I would like to inquire about the reasons behind a specific installation error of Oracle 11gR2 on Fedora 13 and the way to fix it. The error led to a weired behavior for the EM. I am going to explain everything precisely to flap the correspondence time so please please please bare with me.
I have followed precisely all the pre-requisites for preparing the installation environment (Fedora 13 Linux OS) by following the instructions in the manual that comes on the source installation Disk-1of Oracle 11g R2, like assigning the environment variables, setting kernel parameters, installation of all the required and necessary packages, creating the necessary directories and changing the owner ship, in addition to creation the user 'oracle' and the necessary groups. This installation ends up with a successful working database that can be accessed using sqlplus locally and remotely from another machine. My EM also worked but for a limited period of time for only about 10 to 15 min then after that I cannot access it due to a problem in the agent background process or daemon that is resulted from the error happened during the installation, and need to restart my machine. Here is what happened.
My installation is a stand alone database (database control / console database). Everything went smoothly during the installation except the following error that I couldn't get rid of or fix it, and I just continued the installation by clicking on the continue button of the OUI alert window. The error message on the alert window is:
Error in invoking target 'agent nmhs' of makefile '/u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk'. See '/u01/app/oraInventory/logs/installActions2010-06-24_03-22-15PM.log' for details.
and here is the contenets (error part) of the installActions2010-06-24_03-22-15PM.log file
INFO: /usr/bin/ld: /u01/app/oracle/product/carried(nmectlt.o): undefined reference to symbol 'B_DestroyKeyObject'
*/usr/bin/ld: note: 'B_DestroyKeyObject' is defined in DSO /u01/app/oracle/product/11.2.0/dbhome_1/lib/libnnz11.so so try adding it to the linker command line*
*/u01/app/oracle/product/11.2.0/dbhome_1/lib/libnnz11.so: could not read symbols: Invalid operation*
INFO: collect2: ld returned 1 exit status
*INFO: make[1]: --- [u01/app/oracle/product/carried] Error 1*
INFO: make[1]: Leaving directory `/u01/app/oracle/product/carried'
*INFO: make: --- [emdctl] Error 2*
INFO: End output from spawned process.
INFO: ----------------------------------
INFO: Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'agent nmhs' of makefile '/u01/app/oracle/product/11.2.0/dbhome_1/sysman/lib/ins_emagent.mk'. See '/u01/app/oraInventory/logs/installActions2010-06-24_03-22-15PM.log' for details.
Exception Severity: 1
INFO: Calling Action unixActions10.2.0.3.0 ; make
registerOnly = false
installMakePath = /usr/bin/make
installMakeFileName = /u01/app/oracle/product/11.2.0/dbhome_1/rdbms/lib/ins_rdbms.mk
installTarget = all_no_orcl
undoMakeFileName =
installArguments = ORACLE_HOME=/u01/app/oracle/product/11.2.0/dbhome_1
logFile = /u01/app/oracle/product/11.2.0/dbhome_1/install/make.log
undoTarget =
progMsg = Linking RDBMS Executables
After all the above, I am going to explain here how this error affected the EM. Here is the output of starting the dbconsole:
$ emctl start dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
http://bassam-desktop:1158/em/console/aboutApplication
Starting Oracle Enterprise Manager 11g Database Control .... started.
Logs are generated in directory /u01/app/oracle/product/carried-desktop_orcl/sysman/log
and here is the output of the status of the dbconsole
$ emctl status dbconsole
Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
http://bassam-desktop:1158/em/console/aboutApplication
EM Daemon is not running.
Logs are generated in directory /u01/app/oracle/product/carried-desktop_orcl/sysman/log
notice the EM Daemon (agent background process) is not running
Becuase of this error, the actual status of the database is not shown up in the EM. For example, if I try to startup my database through the EM, it starts successfully, but its status will not be shown, same thing happens for the listener. Clicking the View Details link in the EM after starting up the database shows up the following:
SQL*Plus: Release 11.2.0.1.0 Production on Sat Jun 26 03:43:36 2010
Copyright (c) 1982, 2009, Oracle. All rights reserved.
SQL> Connected to an idle instance.
SQL> SQL> ORACLE instance started.
Total System Global Area 1489829888 bytes
Fixed Size          1336624 bytes
Variable Size          922749648 bytes
Database Buffers     553648128 bytes
Redo Buffers          12095488 bytes
Database mounted.
Database opened.
SQL> Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
Oracle Enterprise Manager 11g Database Control Release 11.2.0.1.0
Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
Agent is Not Running
again notice the last line of the message Agent is not running.
After all the above, I beleive that the installation error is the cause of all that. I would appreciate it if you could help me solving this problem. Thanks.
Bassam A. Al-Khaffaf

Hi,
I have successfully installed Oracle 11g R2 after some manual intervention to solve this linker error.
The linker error actually gave the useful hint to solve this problem:
INFO: /usr/bin/ld: /home/akos/app/akos/product/11.2.0/dbhome_1/sysman/lib//libnmectl.a(nmectlt.o): undefined reference to symbol 'B_DestroyKeyObject'
/usr/bin/ld: note: 'B_DestroyKeyObject' is defined in DSO /home/akos/app/akos/product/11.2.0/dbhome_1/lib/libnnz11.so so try adding it to the linker command line
/home/akos/app/akos/product/11.2.0/dbhome_1/lib/libnnz11.so: could not read symbols: Invalid operation
collect2: ld returned 1 exit status
This means that the gcc linker phase lacked an option for "-lnnz11". I run "make agent nmhs" manually,
so the last command that gave an error can be copy&pasted to the command line. Adding "-lnnz11"
after "-lcore11" to the command made it run successfully, and also re-running "make agent nmhs"
on the command line didn't fail now. Then I chose the "Retry" button in the installer GUI and it proceeded.
This change in the Fedora 13 linker was announced at
http://docs.fedoraproject.org/en-US/Fedora/13/html/Release_Notes/sect-Release_Notes-The_GCC_Compiler_Collection.html
In Fedora 12 and earlier it was allowed to an app with library A and the app was able to use symbols
from every other libraries (B, C, ...) that library A was linked with. In Fedora 13 this is not allowed anymore,
your app needs to be linked explicitely with library B, C, etc.
Later, there was another problem with SELinux not allowing text relocation in .../product/11.2.0/dbhome_1/lib/libclntsh.so.11.1
which was solved by running:
chcon -t textrel_shlib_t '.../product/11.2.0/dbhome_1/lib/libclntsh.so.11.1'
and re-running configuration of "Oracle Net Configuration Assistant". This allows keeping SELinux on.
After that, installation and setup of the first database succeeded on Fedora 13.

Similar Messages

  • Error in invoking target 'agent nmhs' of makefile - during 11g Installation

    Hi guys~
    I've just installed 11g (x64) on Fedora 13 (x64)
    but during the installation there was an error.
    Error in invoking target 'agent nmhs' of makefile
    *'/u01/app/.../sysman/lib/ins_emagent.mk'*
    This is the log file
    [http://lyh913.tistory.com/attachment/[email protected]]
    When oracle checked prerequisite packages, there was 8 failed packages such as libaio(i386), libgcc(i386) etc. I installed all of them (i686) with yum, but failed status didn't change. so I ignore them.
    And then Error in invoking target 'agent nmhs' of makefile occured
    Acturally I was able to excute sqlplus successfully but I'm curious that it is okay with this error.
    I think there gonna be a problem sooner or later.
    Is there anybody who can help me out? Please~ :-)
    Anyway thanks for reading and sorry for my poor English(English isn't my mother tongue)

    Satish Kandi wrote:
    The pre-requisite check has to succeed for the setup to complete successfully (with exceptions).
    Have you tried installing the packages without yum?Thank you Satish Kandi~
    I tried to download rpm packages and install them after your reply.
    But Fedora said that they are already installed.
    Failed prerequisite packages were
    libaio-0.3.105, compat-libstdc++-33-3.2.3, libaio-devel-0.3.105, libgcc-3.4.6
    libstdc++-3.46, unixODBC-2.2.11, unixODBC-devel-2.2.11, pdksh-5.2.14
    And I've got these packages.
    [root@localhost ~]# rpm -qa | grep i686
    nss-softokn-freebl-3.12.4-17.fc13.i686
    libtool-ltdl-2.2.6-20.fc13.i686
    numactl-devel-2.0.3-8.fc13.i686
    libgcc-4.4.4-2.fc13.i686
    ksh-20100309-3.fc13.i686
    compat-libstdc++-33-3.2.3-68.i686
    readline-6.1-2.fc13.i686
    libaio-devel-0.3.109-2.fc13.i686
    libstdc++-4.4.4-2.fc13.i686
    unixODBC-2.2.14-11.fc13.i686
    numactl-2.0.3-8.fc13.i686
    libaio-0.3.109-2.fc13.i686
    unixODBC-devel-2.2.14-11.fc13.i686
    glibc-2.12-1.i686
    ncurses-libs-5.7-7.20100130.fc13.i686
    At first 'glibc(it requires i686)' was failed status but after I installed glibc-2.12-1.i686, it became succeed.
    The other packages require i386. Does this mean I should install i386 packages?
    Edited by: user10406944 on 2010. 6. 1 오전 3:52
    Edited by: user10406944 on 2010. 6. 1 오전 3:52

  • Error in invoking target 'agent nmb nmo nmhs' of makefile ins_emagent.mk

    Hi,
    I am installing Oracle 11g R 2 on AIX 6.1. I have met all the pre reqs according to installation document, but at 69% of installation process i am getting the following error
    Error in invoking target 'agent nmb nmo nmhs' of makefile '/ora/product/v112/sysman/lib/ins_emagent.mk'
    Any help????????
    Regards,

    you have interim fix and APAR for other technology level too like below. Hope this will help guys want to fix oracle installation on aix 6.1
    https://www-304.ibm.com/support/docview.wss?uid=isg1IZ89304&crawler=1
    https://www-304.ibm.com/support/docview.wss?uid=isg1IZ89300
    https://www-304.ibm.com/support/docview.wss?uid=isg1IZ88711

  • Error in invoking target 'agent emsubagent nmo nmb' of makefile '/

    I am trying to cofugure 10.1.0.3 RAC on rh3 update 3.
    kernal version is 2.4.21-20.ELsmp.
    I am able to install CRS sucessfully. But while installing RAC database software i got the make file link error.
    Error in invoking target 'agent emsubagent nmo nmb' of makefile '/u01/app/oracle/product/10.1.0.3/db_1/sysman/lib/ins_sysman.mk'
    Any one else ran in to the same issue?
    Here is the log..
    Start output from spawned process:
    make -f /u01/app/oracle/product/10.1.0.3/db_1/sysman/lib/ins_sysman.mk relink_sharedobj SHAREDOBJ=libnmemso
    make[1]: Entering directory `/u01/app/oracle/product/10.1.0.3/db_1/sysman/lib'
    gcc -o /u01/app/oracle/product/10.1.0.3/db_1/sysman/lib/libnmemso.so -m32 -Wl,--whole-archive -shared -L/u01/app/oracle/product/10.1.0.3/db_1/lib32/ -L/u01/app/oracle/product/10.1.0.3/db_1/lib32/stubs/ -L/u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/ -L/u01/app/oracle/product/10.1.0.3/db_1/lib/ -L/u01/app/oracle/product/10.1.0.3/db_1/lib -L/u01/app/oracle/product/10.1.0.3/db_1/sysman/lib/ -Wl,-rpath,/u01/app/oracle/product/10.1.0.3/db_1/lib32/:/u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/ /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmem.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmer.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmeu.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmt.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnml.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmee.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmefmgr.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmevr.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmehu.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmehl.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmepm.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmedc.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmedt.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmedm.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmedr.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmeb.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmec.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmesched.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmectl.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmejc.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmej.a -L/u01/app/oracle/product/10.1.0.3/db_1/jdk/jre//lib/i386/client -L/u01/app/oracle/product/10.1.0.3/db_1/jdk/jre//lib/i386 -z lazyload -ljava -ljvm -lverify -z nolazyload -Wl,-rpath,/u01/app/oracle/product/10.1.0.3/db_1/lib32/:/u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/:/u01/app/oracle/product/10.1.0.3/db_1/jdk/jre//lib/i386/client:/u01/app/oracle/product/10.1.0.3/db_1/jdk/jre//lib/i386 /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmeclumgr.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmecluster.a /u01/app/oracle/product/10.1.0.3/db_1/sysman//lib32/libnmexml.a -Wl,--no-whole-archive -lxml10 -lcore10 -lnls10 -lunls10 -lclntsh -lnnz10 -lpthread -lnsl -lm -ldl -Wl,-rpath,/u01/app/oracle/product/10.1.0.3/db_1/lib32 `cat /u01/app/oracle/product/10.1.0.3/db_1/lib32/sysliblist` -ldl -lm
    /usr/bin/ld: cannot open crti.o: No such file or directory
    collect2: ld returned 1 exit status
    make[1]: *** [u01/app/oracle/product/10.1.0.3/db_1/sysman/lib/libnmemso.so] Error 1
    make[1]: Leaving directory `/u01/app/oracle/product/10.1.0.3/db_1/sysman/lib'
    make: *** [libnmemso] Error 2
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'agent emsubagent nmo nmb' of makefile '/u01/app/oracle/product/10.1.0.3/db_1/sysman/lib/ins_sysman.mk'. See '/u01/app/oracle/oraInventory/logs/installActions2004-12-08_11-47-04AM.log' for details.
    Exception Severity: 1
    The output of this make operation is also available at: '/u01/app/oracle/product/10.1.0.3/db_1/install/make.log'

    1. install 32-bit glibc libraries (e.g. in my case glibc-devel-2.3.3-74.i386.rpm in Fedora Core 3)
    2. test if you can compile programs in 32 bit mode using '-m32' flag
    3. run the installer again.

  • Error in invoking target 'agent nmo nmb emsubagent'

    I'm working on 10gR2 installation on HP-UX 11.23.
    Installer gives the following error: Error in invoking target 'agent nmo nmb emsubagent' of
    makefile '/opt/app/oracle/product/10.2.0/db_1/sysman/lib/ins_sysman.mk'.
    In the log file
    INFO: Calling Action unixActions10.2.0.1.0 make
         registerOnly = false
         installMakePath = /bin/make
         installMakeFileName = /opt/app/oracle/product/10.2.0/db_1/sysman/lib/ins_sysman.mk
         installTarget = agent nmo nmb emsubagent
         undoMakeFileName =
         installArguments = ORACLE_HOME=/opt/app/oracle/product/10.2.0/db_1,
         logFile = /opt/app/oracle/product/10.2.0/db_1/install/make.log
         undoTarget =
         progMsg = Building Agent libraries
    INFO: The output of this make operation is also available at: '/opt/app/oracle/product/10.2.0/db_1/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO:      /usr/ccs/bin/make -f /opt/app/oracle/product/10.2.0/db_1/sysman/lib/ins_sysman.mk relink_sharedobj SHAREDOBJ=libnmemso LIBDIR=lib32
    INFO:      ld s -G -b -o /opt/app/oracle/product/10.2.0/db_1/sysman/lib/libnmemso.sl -c /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmemso.def -L/opt/app/oracle/product/10.2.0/db_1/lib32/  -L/opt/app/oracle/product/10.2.0/db_1/lib32  -L/opt/app/oracle/product/10.2.0/db_1/sysman/lib32/  b /opt/app/oracle/product/10.2.0/db_1/lib32/:/opt/app/oracle/product/10.2.0/db_1/lib/:/opt/app/oracle/product/10.2.0/db_1/sysman/lib32/ /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmem.a /opt/app/oracle/product/10.2
    INFO: .0/db_1/sysman/lib32/libnmer.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmeu.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmt.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnml.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmee.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmefmgr.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmevr.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmehu.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmehl
    INFO: .a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmepm.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmedc.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmedt.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmedm.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmedr.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmeb.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmec.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmesched.a /opt/app/oracle/prod
    INFO: uct/10.2.0/db_1/sysman/lib32/libnmectl.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmejc.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmej.a -L/opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/PA_RISC2.0/hotspot -L/opt/app/oracle/product/10.2.0/db_1/jdk/jre/lib/PA_RISC2.0 -ljava -ljvm /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmeclumgr.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmecluster.a /opt/app/oracle/product/10.2.0/db_1/sysman/lib32/libnmexml.a -lxml10 -lcore
    INFO: 10 -lnls10 -lcore10 -lnls10 -lcore10 -lunls10 -lclntsh -lnnz10 -lpthread -lnsl -lm `cat /opt/app/oracle/product/10.2.0/db_1/lib32/sysliblist` -lm -lpthread
    INFO: ld:
    INFO: Can't fi
    INFO: n
    INFO: d librar
    INFO: y
    INFO: : "jvm"
    INFO:
    INFO: *** Error exit code 1
    INFO:
    Stop.
    INFO: *** Error exit code 1
    INFO:
    Stop.
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'agent nmo nmb emsubagent' of makefile '/opt/app/oracle/product/10.2.0/db_1/sysman/lib/ins_sysman.mk'. See '/opt/app/oracle/oraInventory/logs/installActions2005-11-16_10-37-35AM.log' for details.
    Exception Severity: 1
    Can anyone help?
    regards
    César.-

    Did you ever figure this problem out. I am experiencing the same thing.

  • Problem during installation(error in invoking target 'ntcontab.o' of make f

    Hi,
    Operating System:Enterprise Linux Release 5 Update 2 for x86 (32 Bit)
    Database:Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86
    When I am trying to installt database on the VMware virtaul machine i am getting the following error durig the linking phase of installation(at 62%)
    error in invoking target 'ntcontab.o' of make file.
    I have googled for this error,but i didn't find any solution which fits my requirement.
    I am hoping a expert advice from this forum for my problem.
    Thank You all..

    Please post your Installation problems on under the Installation Topic => Database Installation

  • Error invoking target 'agent emsubagent nmo nmb' on Mac OS X

    Hello, I'm working on trying to install Oracle 10g on Mac OS X 10.3.7 (The test server I am using is just OS X, not OS X Server. Right now I'm just doing an install with pretty much all defaults just to get it to install. Only thing I did was make the install go to /usr/local/ora10g and the data goes to /var/oradata. The install stops at 51% at "Building Agent Libraries" and above it says "Linking 'Oracle Database 10g 10.1.0.3.0'. This is the error that comes up:
    Error in invoking target 'agent emsubagent nmo
    nmb' of makefile
    '/usr/local/ora10g/sysman/lib/ins_sysman.mk'.
    Here's the last few lines from the log file:
    make -f /usr/local/ora10g/sysman/lib/ins_sysman.mk emtgtctl2
    gcc -o emtgtctl2 -L/usr/local/ora10g/lib/ -L/usr/local/ora10g/sysman/lib/ `cat /usr/local/ora10g/lib/sysliblist` -L/usr/local/ora10g/lib -lm `cat /usr/local/ora10g/lib/sysliblist` -L/usr/local/ora10g/lib -lm /usr/local/ora10g/sysman/lib//s0nmetgctl.o -lnmectl -lclntsh -lnmemso -lcore10 -framework JavaVM
    rm -f /usr/local/ora10g/bin/emtgtctl2
    mv emtgtctl2 /usr/local/ora10g/bin/emtgtctl2
    /bin/chmod 6751 /usr/local/ora10g/bin/emtgtctl2
    chmod: /usr/local/ora10g/bin/emtgtctl2: Operation not permitted
    make: *** [iemtgtctl] Error 1
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'agent emsubagent nmo nmb' of makefile '/usr/local/ora10g/sysman/lib/ins_sysman.mk'. See '/Users/teddy/oraInventory/logs/installActions2005-02-14_01-19-03PM.log' for details.
    Exception Severity: 1
    I can tell it seems to be an error with chmod, but what that problem is I'm having trouble trying to figure out. I checked the permissions of the file and it seems fine. Thanks for any help.

    1. install 32-bit glibc libraries (e.g. in my case glibc-devel-2.3.3-74.i386.rpm in Fedora Core 3)
    2. test if you can compile programs in 32 bit mode using '-m32' flag
    3. run the installer again.

  • 'error in invoking target 'client_sharedlib' of makefile'   for help

    I am installing oracle 10g(10202_database_soxl86)on solaris 10 (sol-10-u10-ga2-x86-dvd.iso) throgh VMware workstation 7.1.4
    I fellowing the steps below:
    1、 # pkgadd -R /cdrom/Solaris_10/Product SUNWarc SUNWbtool SUNWhea SUNWlibm SUNWlibms SUNWsprot SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt SUNWgcc
    2、 # mkdir -p /export/home/app/oracle
    # chown -R oracle:oinstall /export/home/app/oracle
    3、 # groupadd oinstall
    # groupadd dba
    # useradd -g oinstall -G dba -s /usr/bin/bash -d /export/home/app/oracle oracle
    # passwd oracle
    4、$vi .profile
    export ORACLE_BASE=/export/home/app
    export ORACLE_HOME=$ORACLE_BASE/oracle
    export ORACLE_SID=sun
    export PATH=$ORACLE_HOME/bin:$PATH
    export DISPLAY=192.168.0.1:0.0
    stty erase ^h
    $ env | grep ORA
    results: ORACLE_BASE=/export/home/app
    ORACLE_HOME=/export/home/app/oracle
    ORACLE_SID=sun
    $ env | grep DIS
    results:DISPLAY=192.168.0.1:0.0
    5、# uname -a
    result:SunOS solaris10 5.10 Generic_147441-01 i86pc i386 i86pc
    # isainfo -v
    result:32-bit i386 applications
    pclmulqdq aes sse4.2 sse4.1 ssse3 popcnt tscp sse3 sse2 sse fxsr mmx
    cmov sep cx8 tsc fpu
    6、# df -k
    Filesystem kbytes used avail capacity Mounted on
    swap 2437932 112 2437820 1% /tmp
    7 、# cd /tmp
    # unzip / 10202_database_soxl86.zip
    # chown -R oracle:oinstall database/
    8、 # su - oracle
    $ cd /tmp/database
    $ ./runInstaller
    Error information:
    1、error in invoking target 'client_sharedlib' of makefile
    2、Error in invoking target 'relink' of makefile
    3、Error in invoking target 'ioracle' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    4、Error in invoking target 'nnfgt.o mkldflags client_sharedlib' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk'
    5、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/sqlplus/lib/ins_sqlplus.mk'.
    6、Error in invoking target 'irman' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    7、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk'.
    Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/plsql/lib/ins_plsql.mk'.
    8、Error in invoking target 'ioklist iokinit iokdstry' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_nau.mk'.
    9、Error in invoking target 'utilities ctx_on' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    10、Error in invoking target 'agent nmo nmb' of makefile '/export/home/oracle/product/10.2.2/sysman/lib/ins_sysman.mk'.
    11、Error in invoking target 'clientonlyinstall' of makefile '/export/home/oracle/product/10.2.2/ldap/lib/ins_ldap.mk'.
    12、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/srvm/lib/ins_srvm.mk'.
    13、Error in invoking target 'racg_install' of makefile '/export/home/oracle/product/10.2.2/racg/lib/ins_has.mk'.
    14、Error in invoking target 'install' of makefile '/export/home/oracle/product/10.2.2/network/lib/ins_net_server.mk'.
    15、Error in invoking target 'all_no_orcl ipc_g' of makefile '/export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk'.
    16、Error in invoking target 'collector' of makefile '/export/home/oracle/product/10.2.2/sysman/lib/ins_emdb.mk'.
    details:
    Checking installer requirements...
    INFO:
    INFO: Checking operating
    system version: must be 5.10. Actual 5.10
    INFO:
    Passed
    INFO:
    INFO: Checking Temp space: must be
    greater than 250 MB. Actual 2403 MB Passed
    INFO: Checking swap
    space: must be greater than 500 MB. Actual 2805 MB Passed
    INFO:
    Checking monitor: must be configured to display at least 256 colors.
    Actual 16777216 Passed
    INFO:
    INFO: All installer requirements
    met.
    Exception String: Error
    in invoking target 'client_sharedlib' of makefile
    '/export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk'.
    See '/export/home/oracle/oraInventory/logs/installActions2011-11-
    04_08-21-57PM.log' for details.
    Exception Severity: 1
    INFO: Exception
    handling set to prompt user with options to Retry Ignore
    User
    Choice: Ignore
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Enterprise Manager Agent DB
    INFO: 11/4/11 8:37:54
    PM CST: Starting install Link Phase of component Enterprise Manager
    Common Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Oracle Display Fonts
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Oracle Extended Windowing
    Toolkit
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Oracle UIX
    INFO: 11/4/11 8:37:54 PM CST: Starting install
    Link Phase of component SQL*Plus Required Support Files
    INFO: 11/4/11
    8:37:54 PM CST: Starting install Link Phase of component DBJAVA
    Required Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install
    Link Phase of component Oracle OLAP RDBMS Files
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Unlinking oracle
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = olap_on
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = olap_off
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    null
    INFO: The output of this make operation is also available at:
    '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO:
    Start output from spawned process:
    INFO:
    INFO:
    INFO: /usr/ccs/bin/ar d
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a xsnoolap.o
    INFO: /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/xsyeolap.o
    INFO: End
    output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking Oracle
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Oracle OLAP API
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component XDK Required Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component RDBMS Required Support Files for Instant Client
    INFO:
    11/4/11 8:37:54 PM CST: Starting install Link Phase of component
    RDBMS Required Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting
    install Link Phase of component Oracle JFC Extended Windowing
    Toolkit
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Agent Required Support Files
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Parser Generator Required
    Support Files
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link
    Phase of component Sample Schema Data
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Oracle Starter Database
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Oracle Message Gateway Common Files
    INFO: 11/4/11 8:37:54
    PM CST: Starting install Link Phase of component XML Parser for
    Oracle JVM
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase
    of component Precompiler Required Support Files
    INFO: 11/4/11 8:37:54
    PM CST: Starting install Link Phase of component XML Parser for
    Java
    INFO: 11/4/11 8:37:54 PM CST: Starting install Link Phase of
    component Oracle Help for the Web
    INFO: 11/4/11 8:37:54 PM CST:
    Starting install Link Phase of component Oracle Ice Browser
    INFO:
    11/4/11 8:37:54 PM CST: Starting install Link Phase of component
    Enterprise Manager Baseline
    INFO: 11/4/11 8:37:54 PM CST: Starting
    install Link Phase of component Oracle Data Mining RDBMS Files
    INFO:
    Calling Action unixActions10.2.0.1.0 registerForMake
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Unlinking oracle
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = dm_on
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = dm_off
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking Label Security Option
    INFO: The output of this make operation
    is also available at:
    '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO:
    Start output from spawned process:
    INFO:
    INFO:
    INFO: /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/dmndmse.o      
    INFO:
    /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/dmwdm.o
    INFO: End
    output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Unlinking oracle
    INFO: 11/4/11 8:37:55 PM CST: Starting install Link
    Phase of component Oracle Database 10g interMedia Files
    INFO: 11/4/11
    8:37:55 PM CST: Starting install Link Phase of component Oracle
    interMedia Java Advanced Imaging
    INFO: 11/4/11 8:37:55 PM CST:
    Starting install Link Phase of component SQLJ Runtime
    INFO: 11/4/11
    8:37:55 PM CST: Starting install Link Phase of component Oracle
    interMedia Annotator
    INFO: 11/4/11 8:37:55 PM CST: Starting install
    Link Phase of component Oracle JDBC/OCI Instant Client
    INFO: 11/4/11
    8:37:55 PM CST: Starting install Link Phase of component Oracle
    interMedia Locator RDBMS Files
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking oracle
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = sdo_on
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = sdo_off
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking sdo options
    INFO: The output of this make operation is also
    available at: '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO:
    INFO:
    INFO: /usr/ccs/bin/ar cr
    /export/home/oracle/product/10.2.2/rdbms/lib/libknlopt.a
    /export/home/oracle/product/10.2.2/rdbms/lib/kxmwsd.o
    INFO: End
    output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = ioracle
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    undoTarget = ioracle
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking Oracle
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link
    Phase of component Platform Required Support Files
    INFO: 11/4/11
    8:37:56 PM CST: Starting install Link Phase of component Oracle Core
    Required Support Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Database Workspace Manager
    INFO: 11/4/11
    8:37:56 PM CST: Starting install Link Phase of component Oracle
    Containers for Java
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle Help For Java
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component JDBC Common Files
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Perl Interpreter
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link
    Phase of component Oracle Code Editor
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component Oracle Notification
    Service
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component Oracle interMedia Client Option
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component Oracle JDBC Thin
    Driver for JDK 1.2
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle JDBC Thin Driver for JDK 1.4
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Enterprise Manager plugin Common Files
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component LDAP Required Support
    Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component Character Set Migration Utility
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component Oracle Locale Builder
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component PL/SQL Embedded Gateway
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component OLAP SQL Scripts
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Database SQL Scripts
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle Globalization Support
    INFO: 11/4/11
    8:37:56 PM CST: Starting install Link Phase of component Required
    Support Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link
    Phase of component Secure Socket Layer
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk
    installTarget = nnfgt.o
         installArguments = ORACLE_HOME
    =/export/home/oracle/product/10.2.2
         undoMakeFileName = null
    undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking nnfgt
    INFO: Calling Action unixActions10.2.0.1.0
    registerForMake
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk
    installTarget = mkldflags
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking ldflags
    INFO: Calling Action unixActions10.2.0.1.0
    registerForMake
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/network/lib/ins_net_client.mk
    installTarget = client_sharedlib
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Building client shared library
    INFO: 11/4/11 8:37:56 PM CST: Starting
    install Link Phase of component Oracle Database User Interface
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Enterprise Manager Minimal Integration
    INFO: 11/4/11 8:37:56 PM CST:
    Starting install Link Phase of component Oracle Wallet Manager
    INFO:
    11/4/11 8:37:56 PM CST: Starting install Link Phase of component
    Oracle Clusterware RDBMS Files
    INFO: 11/4/11 8:37:56 PM CST: Starting
    install Link Phase of component Oracle RAC Required Support Files-
    HAS
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component SQL*Plus
    INFO: Calling Action unixActions10.2.0.1.0
    registerForMake
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/sqlplus/lib/ins_sqlplus.mk
    installTarget = install
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking SQLPLUS executables
    INFO: 11/4/11 8:37:56 PM CST: Starting
    install Link Phase of component Enterprise Manager plugin Common
    Files
    INFO: 11/4/11 8:37:56 PM CST: Starting install Link Phase of
    component iSQL*Plus
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component Oracle Recovery Manager
    INFO: Calling Action
    unixActions10.2.0.1.0 registerForMake
         installMakePath =
    /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/rdbms/lib/ins_rdbms.mk
    installTarget = irman
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    null
         undoTarget = null
         undoArguments = null
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking RMAN utility
    INFO: 11/4/11 8:37:56 PM CST: Starting install
    Link Phase of component HAS Common Files
    INFO: 11/4/11 8:37:56 PM
    CST: Starting install Link Phase of component Precompiler Common
    Files
    INFO: Calling Action unixActions10.2.0.1.0 make
    installMakePath = /usr/ccs/bin/make
         installMakeFileName =
    /export/home/oracle/product/10.2.2/precomp/lib/ins_precomp.mk
    installTarget = links
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         undoMakeFileName =
    /export/home/oracle/product/10.2.2/precomp/lib/ins_precomp.mk
    undoTarget = rmlinks
         undoArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2
         logFile =
    /export/home/oracle/product/10.2.2/install/make.log
         progMsg =
    Linking links
    INFO: The output of this make operation is also
    available at: '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO: Start output from spawned process:
    INFO:
    INFO:
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f SQLCA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    ORACA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public
    ; rm -f SQLDA.H)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f SQLCA.COB)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    ORACA.COB)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f SQLCA.FOR)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    ORACA.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    BNDDSC.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; rm -f
    SELDSC.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s sqlca.h
    SQLCA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public
    ; ln -s oraca.h ORACA.H)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s sqlda.h
    SQLDA.H)
    INFO: (cd /export/home/oracle/product/10.2.2/precomp/public
    ; ln -s sqlca.cob SQLCA.COB)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s oraca.cob
    ORACA.COB)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s sqlca.for
    SQLCA.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s oraca.for
    ORACA.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s bnddsc.for
    BNDDSC.FOR)
    INFO: (cd
    /export/home/oracle/product/10.2.2/precomp/public ; ln -s seldsc.for
    SELDSC.FOR)
    INFO: End output from spawned process.
    INFO:
    INFO: Calling Action
    unixActions10.2.0.1.0 make
         installMakePath = /usr/ccs/bin/make
    installMakeFileName =
    /export/home/oracle/product/10.2.2/precomp/lib/ins_precomp.mk
    installTarget = relink
         installArguments =
    ORACLE_HOME=/export/home/oracle/product/10.2.2,EXENAME=proc
    undoMakeFileName = null
         undoTarget = null
         undoArguments = null
    logFile = /export/home/oracle/product/10.2.2/install/make.log
    progMsg = Linking proc
    INFO: The output of this make operation is
    also available at:
    '/export/home/oracle/product/10.2.2/install/make.log'
    INFO:
    INFO:
    Start output from spawned process:
    INFO:
    INFO:
    INFO: Linking
    /export/home/oracle/product/10.2.2/precomp/lib/proc
    INFO: ld:
    INFO:
    fatal:
    INFO: library -l
    INFO: clntsh
    INFO: : not found
    INFO:
    INFO: ld:
    INFO: fatal:
    INFO: file processing errors. No output written to
    INFO: /export/home/oracle/product/10.2.2/precomp/lib/proc
    INFO:
    INFO:
    *** Error code 1
    The following command caused the error:
    echo "Linking
    /export/home/oracle/product/10.2.2/precomp/lib/proc"; \
    rm -f
    /export/home/oracle/product/10.2.2/precomp/lib/proc; \
    /usr/ccs/bin/ld -o
    /export/home/oracle/product/10.2.2/precomp/lib/proc -
    L/export/home/oracle/product/10.2.2/precomp/lib/ -
    L/export/home/oracle/product/10.2.2/lib/ -dy
    /export/home/oracle/product/10.2.2/lib/prod/lib/crti.o
    /export/home/oracle/product/10.2.2/lib/prod/lib/crt1.o
    /export/home/oracle/product/10.2.2/lib/s0m
    INFO: ain.o
    /export/home/oracle/product/10.2.2/precomp/lib/pdc.o
    /export/home/oracle/product/10.2.2/precomp/lib/pds.o
    /export/home/oracle/product/10.2.2/precomp/lib/libproc2.a
    /export/home/oracle/product/10.2.2/lib/libslax10.a
    /export/home/oracle/product/10.2.2/precomp/lib/libpgp.a -lpls10 -
    lplp10 /export/home/oracle/product/10.2.2/lib/libplc10.a -lsnls10 -
    lunls10 -lnls10
    /export/home/oracle/product/10.2.2/rdbms/lib/kpudfo.o -lclntsh `cat
    /export/home/oracle/product/10.2.2/lib/ldflags` -lnsslb10 -
    lncrypt10
    INFO: -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat
    /export/home/oracle/product/10.2.2/lib/ldflags` -lnsslb10 -
    lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -
    lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lmm -lsnls10 -lnls10 -
    lcore10 -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -
    lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat
    /export/home/oracle/product/10.2.2/lib/ldflags` -lnsslb10 -
    lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lnro10 `cat
    /export/home/oracle/product/1
    INFO: 0.2.2/lib/ldflags` -lnsslb10
    -lncrypt10 -lnsgr10 -lnzjs10 -ln10 -lnnz10 -lnl10 -lclient10 -
    lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lpls10 -lsnls10 -lnls10
    -lcore10 -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -
    lcore10 -lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 -lclient10 -
    lnnetd10 -lvsn10 -lcommon10 -lgeneric10 -lsnls10 -lnls10 -lcore10
    -lsnls10 -lnls10 -lcore10 -lsnls10 -lnls10 -lxml10 -lcore10 -
    lunls10 -lsnls10 -lnls10 -lcore10 -lnls10 `cat
    /export/home/oracle/product/10.2.2/lib/sy
    INFO: sliblist` -R
    /opt/SUNWcluster/lib:/export/home/oracle/product/10.2.2/lib:/opt/ORC
    Lcluster/lib/ -Y
    P,:/opt/SUNWcluster/lib:/opt/ORCLcluster/lib/:/usr/ccs/lib:/usr/lib
    -Qy -lc -lrt -laio -lposix4 -lm
    /export/home/oracle/product/10.2.2/lib/prod/lib/crtn.o; \
    /bin/chmod
    755 /export/home/oracle/product/10.2.2/precomp/lib/proc
    INFO: make:
    Fatal error: Command failed for target
    `/export/home/oracle/product/10.2.2/precomp/lib/proc'
    INFO: End
    output from spawned process.
    INFO:
    INFO: Exception thrown from
    action: make
    Exception Name: MakefileException

    895824 wrote:
    I am installing oracle 10g(10202_database_soxl86)on solaris 10 (sol-10-u10-ga2-x86-dvd.iso) throgh VMware workstation 7.1.4
    I fellowing the steps below:
    1、 # pkgadd -R /cdrom/Solaris_10/Product SUNWarc SUNWbtool SUNWhea SUNWlibm SUNWlibms SUNWsprot SUNWtoo SUNWi1of SUNWi1cs SUNWi15cs SUNWxwfnt SUNWgcc
    2、 # mkdir -p /export/home/app/oracle
    # chown -R oracle:oinstall /export/home/app/oracle
    3、 # groupadd oinstall
    # groupadd dba
    # useradd -g oinstall -G dba -s /usr/bin/bash -d /export/home/app/oracle oracle
    # passwd oracle
    4、$vi .profile
    export ORACLE_BASE=/export/home/app
    export ORACLE_HOME=$ORACLE_BASE/oracle
    export ORACLE_SID=sun
    export PATH=$ORACLE_HOME/bin:$PATH
    export DISPLAY=192.168.0.1:0.0
    stty erase ^h
    $ env | grep ORA
    results: ORACLE_BASE=/export/home/app
    ORACLE_HOME=/export/home/app/oracle
    ORACLE_SID=sun
    $ env | grep DIS
    results:DISPLAY=192.168.0.1:0.0
    5、# uname -a
    result:SunOS solaris10 5.10 Generic_147441-01 i86pc i386 i86pc
    # isainfo -v
    result:32-bit i386 applications
    pclmulqdq aes sse4.2 sse4.1 ssse3 popcnt tscp sse3 sse2 sse fxsr mmx
    cmov sep cx8 tsc fpu
    6、# df -k
    Filesystem kbytes used avail capacity Mounted on
    swap 2437932 112 2437820 1% /tmp
    7 、# cd /tmp
    # unzip / 10202_database_soxl86.zip
    # chown -R oracle:oinstall database/
    8、 # su - oracleLook no further. You modified your .profile to set the environment, but you did that as root, then did an su to oracle. That oracle session never saw the environment changes (ORACLE_HOME, etc) you did to your (root) profile. All Oracle specific tasks should be done logged on as the oracle software owner - oracle. Once root made the necessary prereqs at the OS level (pkgadd, groupadd, useradd) you should have logged off as root and logged on as oracle, THEN proceeded to fix your .profile, etc., and run the installer. NEVER act as a dba while logged on as root. NEVER log on as root to do ANYTHING that does not REQUIRE root access.
    $ cd /tmp/database
    $ ./runInstaller
    <snip>

  • Please reply.Error in invoking target 'install' of ..../ins_ctx.mk'

    Hi,
    I am trying to install Oracle 10.2.0.1(64 bit) on RHEL 4.0(2.6.9-5.ELsmp). When installation was on linking stage i got three error messages which are given below.
    (1)Error in invoking target 'install' of makefile '/oracle/app/oracle/product/10.2.0/db_2/ctx/lib/ins_ctx.mk'.
    (2)Error in invoking target 'agent nmo nmb' of makefile '/oracle/app/oracle/product/10.2.0/db_2/sysman/lib/ins_sysman.mk'.
    (3)Error in invoking target 'all_no_orcl' of makefile '/oracle/app/oracle/product/10.2.0/db_2/rdbms/lib/ins_rdbms.mk'
    Due to this errors, installation of Oracle was not successfull. Can you please tell me what is causing this errors?
    I have followed all steps given on following link eventhough it is throwing these errors.
    http://www.oracle.com/technology/pub/articles/smiley_10gdb_install.html#rhel4
    Please help in this matter as soon as possible.
    Regards,
    RJ.
    Message was edited by:
    RJiv

    Make sure you have followed all steps according to the platform's install guide and you have met all prerequisites (verify all required install packages and in case you have done so, don't skip the prerequisites warning). It could also be an issue with the 64 bit library path.
    ~ Madrid

  • Error in invoking target 'ntcontab.o' of make file. 11g x32 on x64 machine.

    Hello all,
    We have Red Hat 5.8 x86_64 and we have requirement to install WebTier x32 on our system. As per Oracle documentation it is possible if we apply linux32 bash before installation and do step 2.1.1.2 described in this document -> http://docs.oracle.com/cd/E14571_01/doc.1111/e14260/install.htm
    During installation of FMW 11g x32 11.1.1.6.0 we have error on 92% (see attachement).
    All installation prerequirements are sucsessfull.
    We are applying only HTTP server for Siebel.
    ######ERROR we are reciewing during installation:
    Error in invoking target 'ntcontab.o' of makefile '/app/middleware4/ohs/network/lib/ins_net_client.mk'. See '/app/ora11/oraInventory/logs/install2012-06-28_01-19-16PM.log' for details.
    ######And this is output from make.log:
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/app/middleware2/ohs2/rm -f ntcontab.*
    (if [ "compile" = "compile" ] ; then \
    /app/middleware2/ohs2/bin/gennttab > ntcontab.c ;\
    /usr/bin/gcc -c ntcontab.c ;\
    rm -f /app/middleware2/ohs2/lib/ntcontab.o ;\
    mv ntcontab.o /app/middleware2/ohs2/lib/ ;\
    /usr/bin/ar rv /app/middleware2/ohs2/lib/libn11.a /app/middleware2/ohs2/lib/ntcontab.o ; fi)
    gcc.orig: no input files
    mv: cannot stat `ntcontab.o': No such file or directory
    /usr/bin/ar: /app/middleware2/ohs2/lib/ntcontab.o: No such file or directory
    make: *** [ntcontab.o] Error 1
    ######These are packages we got on our system:
    automake14-1.4p6-13.el5.1.noarch
    automake15-1.5-16.el5.2.noarch
    automake16-1.6.3-8.el5.1.noarch
    automake17-1.7.9-7.el5.2.noarch
    automake-1.9.6-2.3.el5.noarch
    binutils-2.17.50.0.6-20.el5.x86_64
    compat-db-4.2.52-5.1.x86_64
    compat-gcc-34-3.4.6-4.1.x86_64
    compat-gcc-34-c++-3.4.6-4.1.x86_64
    compat-gcc-34-g77-3.4.6-4.1.x86_64
    compat-glibc-2.3.4-2.26.i386
    compat-glibc-2.3.4-2.26.x86_64
    compat-glibc-headers-2.3.4-2.26.x86_64
    compat-libcom_err-1.0-7.i386
    compat-libcom_err-1.0-7.x86_64
    compat-libf2c-34-3.4.6-4.1.x86_64
    compat-libgcc-296-2.96-138.i386
    compat-libstdc++-296-2.96-138.i386
    compat-libstdc++-33-3.2.3-61.i386
    compat-libstdc++-33-3.2.3-61.x86_64
    cpp-4.1.2-52.el5.x86_64
    elfutils-libelf-0.137-3.el5.i386
    elfutils-libelf-0.137-3.el5.x86_64
    elfutils-libelf-devel-0.137-3.el5.x86_64
    elfutils-libelf-devel-static-0.137-3.el5.x86_64
    gcc-4.1.2-52.el5.x86_64
    gcc-c++-4.1.2-52.el5.x86_64
    gcc-gfortran-4.1.2-52.el5.x86_64
    glibc-2.5-81.el5_8.2.i686
    glibc-2.5-81.el5_8.2.x86_64
    glibc-common-2.5-81.el5_8.2.x86_64
    glibc-devel-2.5-81.el5_8.2.i386
    glibc-devel-2.5-81.el5_8.2.x86_64
    glibc-headers-2.5-81.el5_8.2.x86_64
    imake-1.0.2-3.x86_64
    java-1.4.2-gcj-compat-1.4.2.0-40jpp.115.x86_64
    ksh-20100621-5.el5_8.1.x86_64
    libaio-0.3.106-5.i386
    libaio-0.3.106-5.x86_64
    libaio-devel-0.3.106-5.x86_64
    libgcc-4.1.2-52.el5.i386
    libgcc-4.1.2-52.el5.x86_64
    libstdc++-4.1.2-52.el5.i386
    libstdc++-4.1.2-52.el5.x86_64
    libstdc++-devel-4.1.2-52.el5.i386
    libstdc++-devel-4.1.2-52.el5.x86_64
    make-3.81-3.el5.x86_64
    openmotif-2.3.1-6.1.el5_8.i386
    openmotif-2.3.1-6.1.el5_8.x86_64
    sysstat-7.0.2-11.el5.x86_64
    Please help with some ideas.
    Thank You,
    aspx

    Solved.
    heh...2.1.1.2 must be in one line...
    aspx

  • Error in invoking target install of makefile $ORACLE_HOME/sqlplus/lib/ins_sqlplus.mk

    I am installing oracle 8.1.6 on Red Hat linux 7.2
    I made following entries in .bashrc file of oracle
    export ORACLE_BASE="/oracle"
    export ORACLE_HOME="$ORACLE_BASE/product/9i"
    export LD_LIBRARY_PATH="$ORACLE_HOME/lib:/lib:/usr/lib:/usr/openwin/lib"
    export ORA_NLS33="$ORACLE_HOME/ocommon/nls/admin/data"
    export ORACLE_SID="ORCL"
    export
    CLASSPATH="$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib:$ORACLE_HOME/network/jlib"
    export
    PATH="/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/usr/games:/u01/app/oracle/product/8.1.6/bin:/oracle/jdk/bin:.:/opt/gnome/bin:/opt/www/htdig/bin:/opt/kde/bin:/usr/share/texmf/bin:/usr/openwin/bin
    I am geting following error while installation
    "Error in invoking target install of makefile $ORACLE_HOME/sqlplus/lib/ins_sqlplus.mk"
    Please help me. I have set necessary file permissions also.
    Hemant

    Hi
    Having just done this myself on Suse 8, are you sure that the make package is installed? Also make sure that the cc/gcc packages are installed. HTH
    Dave

  • Error in invoking target 'install' after extproc32 in x86_64 installation

    Hi
    I am trying to install patch p4547809 (9.2.0.8) however when it gets to 99% of the installation I get this error:
    Error in invoking target 'install' of makefile '/u01/oracle/9ir2db/rdbms/lib/ins_rdbms.mk'
    According to the log file the error is as follows:
    Linking external procedure agent (/u01/oracle/9ir2db/rdbms/lib/extproc32)
    rm -f /u01/oracle/9ir2db/rdbms/lib/extproc32
    gcc -m32 -o /u01/oracle/9ir2db/rdbms/lib/extproc32 -L/u01/oracle/9ir2db/rdbms/lib32/ -L/u01/oracle/9ir2db/lib32/ -L/u01/oracle/9ir2db/lib32/stubs/ /u01/oracle/9ir2db/rdbms/lib32/hormc.o /u01/oracle/9ir2db/rdbms/lib32/defopt.o /u01/oracle/9ir2db/rdbms/lib32/homts.o -lagtsh -lpls9 -lplp9 -lclntsh -lnls9 -lcore9 -lnls9 -lcore9 -lnls9 -lxml9 -lcore9 -lunls9 -lnls9 /u01/oracle/9ir2db/lib32/libgeneric9.a `cat /u01/oracle/9ir2db/lib32/sysliblist` -Wl,-rpath,/u01/oracle/9ir2db/lib:/lib:/usr/lib -lm `cat /u01/oracle/9ir2db/lib32/sysliblist` -ldl -lm -lvsn9
    /usr/lib/gcc/x86_64-redhat-linux/3.4.6/libgcc_s_32.so: undefined reference to `dl_iterate_phdr@GLIBC_2.2.4'
    collect2: ld returned 1 exit status
    make[1]: *** [u01/oracle/9ir2db/rdbms/lib/extproc32] Error 1
    make[1]: Leaving directory `/u01/oracle/9ir2db/rdbms/lib'
    make: *** [extproc32] Error 2
    End output from spawned process.
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'install' of makefile '/u01/oracle/9ir2db/rdbms/lib/ins_rdbms.mk'. See '/u01/oracle/oraInventory/logs/installActions2006-12-07_12-11-52PM.log' for details.
    Exception Severity: 1
    *** Cancel Dialog: ***
    User Selected: Stop installation of all products.
    Here are some additional details:
    rpm -q binutils gcc gcc-c++ glibc gnome-libs libstdc++ libstdc++-devel make \ pdksh sysstat xscreensaver libaio binutils-2.15.92.0.2-21gcc-3.4.6-3
    gcc-c++-3.4.6-3
    glibc-2.3.4-2.25
    gnome-libs-1.4.1.2.90-44.1
    libstdc++-3.4.6-3
    libstdc++-devel-3.4.6-3
    make-3.80-6.EL4
    sysstat-5.0.5-11.rhel4
    xscreensaver-4.18-5.rhel4.11
    libaio-0.3.105-2
    >
    I would appreciate any assistance on this. Thanks

    Problem is the compiler version. You need to use gcc 3.2 instead of 3.4.

  • Oracle Installation on linux Error in invoking target ntcontab.o

    Hi All,
    During installing Oracle 8i EE on mandrake Linux 7.0, at the point of linking oracle protocol support 8.1.6.1.0 ,while Linking in progress I got the following message box
    "Error in invoking target ntcontab.o of make file /home/network/lib/ins_net_client.mk.
    ==================
    ABORT,RETRY,IGNORE
    ==================
    If I select igmore and continue , even after successfull installation ,when try to run svrmgr or sqlplus at the shell $
    I am getting error in loading shared libraries.
    Thanks a lot for the help
    Anant Kuslekar
    null

    hi,i got the some problem too.
    but maybe below could do some help:
    ================================================
    Instructions for Existing Oracle8i Installations
    Place the tar file glibc-2.1.3-stubs.tar.gz in $ORACLE_HOME.
    Make sure ORACLE_HOME is set in your environment. Then carry out
    the following steps:
    cd $ORACLE_HOME
    tar xvfz glibc-2.1.3-stubs.tar.gz
    ./setup_stubs.sh
    You should now be able to use Oracle as usual.
    ================
    Warning
    Make sure the directory $ORACLE_HOME/lib is not listed in your
    /etc/ld.so.conf. The system could potentially become unstable
    after applying this patch in that case. If $ORACLE_HOME/lib is
    currently listed in /etc/ld.so.conf, remove it and run ldconfig
    before applying this patch.
    ================================
    Notes for Application Developers
    If your application does not require linking at install sites,
    then no additional steps are required for your application to be
    compatible with glibc or the Oracle8i client shared library
    after the installation of this patch. This is true regardless of
    whether your application was compiled using glibc-2.1.3 or a
    later version.
    If your application is compiled using glibc-2.1.3 and requires
    linking at install-time using the Oracle8i client shared ibrary,
    then you may also need to link your application using the stub
    libraries provided in this patch. For example, an application
    which might typically be linked as follows on a glibc-2.1.3
    based system:
    gcc -o app app.o -L$ORACLE_HOME/lib -lclntsh
    should now be linked as follows on systems with a newer version
    of glibc,in order to ensure compatibility:
    gcc -o app app.o -L$ORACLE_HOME/lib -L$ORACLE_HOME/lib/stubs -
    lclntsh
    If your application is compiled using a version of glibc later
    than 2.1.3 and requires linking at install-time using the acle8i
    client shared library, then you must NOT link your application
    with the stub libraries provided in this patch. Doing so may
    either cause the link to fail or the resulting executables to be
    invalid.
    Note that the stub libraries provided in this patch only cover
    the shared objects that make up glibc. If your application must
    be linked at install-time with other shared objects which were
    built to have dependencies on the locally installed version of
    glibc (e.g., X11), then your application must be compiled using
    the same version of glibc that was used by those other
    components. For example, on a system with glibc-2.2, linking your
    application with libX11.so will fail if you attempt to use the
    glibc-2.1.3stub libraries, since libX11.so on that system will
    have been compiled and linked using glibc-2.2.

  • Installation error - Error in invoking target 'ntcontab.o'

    OS: RHEL 5 64bit
    Oracle 10g (10.2.0.1.0)
    Error in invoking target 'ntcontab.o' of makefile '/u01/app/oracle/product/10.2.0/db_1/network/lib/ins_net_client.mk'. See '/u01/app/oracle/oraInventory/logs/installActions2010-07-27_07-58-23AM.log' for details.
    INFO: Start output from spawned process:
    INFO: ----------------------------------
    INFO:
    INFO: rm -f ntcontab.*
    INFO: (if [ "compile" = "compile" ] ; then \
         /u01/app/oracle/product/10.2.0/db_1/bin/gennttab > ntcontab.c ;\
         gcc -c ntcontab.c ;\
         rm -f /u01/app/oracle/product/10.2.0/db_1/lib/ntcontab.o ;\
         mv ntcontab.o /u01/app/oracle/product/10.2.0/db_1/lib/ ;\
    /usr/bin/ar rv /u01/app/oracle/product/10.2.0/db_1/lib/libn10.a /u01/app/oracle/product/10.2.0/db_1/lib/ntcontab.o ; fi)
    INFO: /bin/sh: line 2: /usr/bin/gcc: Permission denied
    INFO: mv: cannot stat `ntcontab.o'
    INFO: : No such file or directory
    INFO: /usr/bin/ar: /u01/app/oracle/product/10.2.0/db_1/lib/ntcontab.o: No such file or directory
    INFO: make: *** [ntcontab.o] Error 1
    INFO: End output from spawned process.
    INFO: ----------------------------------
    INFO: Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target 'ntcontab.o' of makefile '/u01/app/oracle/product/10.2.0/db_1/network/lib/ins_net_client.mk'. See '/u01/app/oracle/oraInventory/logs/installActions2010-07-27_07-58-23AM.log' for details.
    Exception Severity: 1

    Checking Packages (RPMs)
    You will need some RPM development packages for the Oracle installer to build the Oracle modules, otherwise you will get error messages similar to this one:
    Error in invoking target ntcontab.o of makefile
    /u01/app/oracle/product/9.2.0/network/lib/ins_net_client.mk
    NOTE: Always ensure to use the latest RPM versions!
    Packages (RPMs) for RH 7.1, 7.2, and RH AS 2.1:
    To see if these development packages are installed on your server, run the following command:
    rpm -q gcc cpp compat-libstdc++ glibc-devel kernel-headers binutils
    For instance, most of these packages will be missing when you installed RedHat 2.1 Advanced Server and if you did not select the "Software Development" package. For the RedHat 2.1 Advanced Server I executed the following commands to install the missing RPMs from the two CDs:
    su - root
    rpm -ivh cpp-2.96-108.1.i386.rpm \
    glibc-devel-2.2.4-26.i386.rpm \
    kernel-headers-2.4.9-e.3.i386.rpm \
    gcc-2.96-108.1.i386.rpm \
    binutils-2.11.90.0.8-12.i386.rpm

  • Error in invoking target 'dm_on ioracle' with EM installation....

    Error installing Oracle 10g EM Grid Control Release 2 for Linux x86 (looks like Oracle doesn't have a specific one for the 64-bit Linux. The thought was our 64-bit Linux should be able to support both 64-bit and 32-bit applications)
    Encountered error 'Error in invoking target 'dm_on ioracle' of makefile '/u01/app/oracle/OracleHomes/db10g/rdbms/lib/ins_rdbms.mk' during the linking stage.
    Any ideas/ suggestions? Thanks,

    I have this same problem when trying to install OEM Grid Control 10gR2 in Red Hat Enterprise Linux 4:
    # gcc -v
    Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.6/specs
    Configured with: ../configure prefix=/usr mandir=/usr/share/man infodir=/usr/share/info enable-shared enable-threads=posix disable-checking with-system-zlib enable-__cxa_atexit disable-libunwind-exceptions enable-java-awt=gtk --host=i386-redhat-linux
    Thread model: posix
    gcc version 3.4.6 20060404 (Red Hat 3.4.6-8)
    # g++ -v
    Reading specs from /usr/lib/gcc/i386-redhat-linux/3.4.6/specs
    Configured with: ../configure prefix=/usr mandir=/usr/share/man infodir=/usr/share/info enable-shared enable-threads=posix disable-checking with-system-zlib enable-__cxa_atexit disable-libunwind-exceptions enable-java-awt=gtk --host=i386-redhat-linux
    Thread model: posix
    gcc version 3.4.6 20060404 (Red Hat 3.4.6-8)
    # rpm -qa |grep gcc
    compat-gcc-32-c++-3.2.3-47.3.i386
    gcc-c++-3.4.6-8.i386
    gcc-3.4.6-8.i386
    gcc-java-3.4.6-8.i386
    libgcc-3.4.6-8.i386
    gcc-g77-3.4.6-8.i386
    compat-libgcc-296-2.96-132.7.2.i386
    compat-gcc-32-3.2.3-47.3.i386
    # uname -a
    Linux myoracle.host.com 2.6.9-55.0.12.ELsmp #1 SMP Wed Oct 17 08:19:30 EDT 2007 i686 i686 i386 GNU/Linux
    # ll -a /usr/bin/gcc
    -rwxr-xr-x 2 root root 96344 Mar 2 2007 /usr/bin/gcc
    # ll -a /usr/bin/g++
    -rwxr-xr-x 4 root root 98896 Mar 2 2007 /usr/bin/g++
    What else can I look for?
    Thank you.

Maybe you are looking for

  • T/X power malfunction

    My T/X will not turn on.  I have tried to charge it multiple ways without success.  I have done both a soft and hard reset without success.  I think my battery is dead.  Any suggestions?  I need to back up my data and not sure how to do this without

  • No more Wifi from my iMac after switching to Lion

    Hello. I just switched my iMac 24 from 10.6.8 to 10.7.3 with the latest updates. My iMac is connected to the Internet using an Ethernet cable. The Internet connection works fine. I used to use my iMac as a Wifi router so that my iphone and my air can

  • Compaq - Presario Laptop / AMD V-Series Processor / 15.6" Display / Basic Black CQ56-115DX

    Can anyone tell me if this lap top has a webcam? Thank you

  • ? BOX WHAT IS THAT

    When I try to log onto to account to listen to sirius on there website, also sites with flashing pictures I get a blue box with a Question mark in it how do I get the app to make it work.

  • Compress Multiple iso Images

    I have a lot of iso images that I want to compress. When imaging a disk, in Toast 10, I have the option to compress it which then gives me a smaller, .dmg file. This is fine with me, however, I do not want to go through each image individually. Is th