Error in invoking target install of Oracle

Asked By 10 points N/A Posted on -
qa-featured

Hi experts,

This Error appears when I want to install Oracle on my PC. I have downloaded the installer from the official Oracle website and is not working. If the installer from the official website is not working I don’t think that another installer will work. Can you provide me a good installer of Oracle. Why this one is not working? Thanks!

Oracle Universal Installer: Install

Error

Error in invoking target install of makefile/u01/app/oracle/product/9.2.0/ctx/lib/ins_ctx.mk

Press ‘Help’ for more information.

Press ‘Retry’ to try again.

Press ‘Ignore’ to ignore this error and go on.

Press ‘Cancel’ to stop this installation

Help Retry Ignore

SHARE
Answered By points N/A #176013

Error in invoking target install of Oracle

qa-featured

Hello,

This error comes when you execute this command line:
/usr/bin/make -f ins_ctx.mk install ORACLE_HOME=/u01/app/oracle/product/9.2.0

You have to edit a file in order to fix this issue.

1. Open the “$ORACLE_HOME/ctx/lib/env_ctx.mk” file for editing.

2. Go to the line “INSO_LINK =”.

3. Add “$(LDLIBFLAG)dl” to the line. The whole text will look like the following:
INSO_LINK = -L$(CTXLIB) $(LDLIBFLAG)m $(LDLIBFLAG)dl$(LDLIBFLAG)sc_ca $(LDLIBFLAG)sc_fa $(LDLIBFLAG)sc_ex $(LDLIBFLAG)sc_da $(LDLIBFLAG)sc_ut $(LDLIBFLAG)sc_ch $(LDLIBFLAG)sc_fi $(LLIBCTXHX) $(LDLIBFLAG)c -Wl,-rpath,$(CTXHOME)lib $(CORELIBS) $(COMPEOBJS)

4. Hit “Retry” button in the error message.

If still the problem persists,

1. Open “$ORACLE_HOME/ctx/lib/env_ctx.mk” file for editing.

2. Go to “INSO_LINK =” line.

3. Remove what you added before.

4. Add “`cat $(LIBHOME)/sysliblist`” this line. The whole text will look like:
INSO_LINK = -L$(CTXLIB) $(LDLIBFLAG)m `cat $(LIBHOME)/sysliblist` $(LDLIBFLAG)sc_ca $(LDLIBFLAG)sc_fa $(LDLIBFLAG)sc_ex $(LDLIBFLAG)sc_da $(LDLIBFLAG)sc_ut $(LDLIBFLAG)sc_ch $(LDLIBFLAG)sc_fi $(LLIBCTXHX) $(LDLIBFLAG)c -Wl,-rpath,$(CTXHOME)lib $(CORELIBS) $(COMPEOBJS)

Now no more error will come out.

Related Questions