ubuntu安装oracle 11gr2遇到的问题

ERROR 1

INFO: Exception thrown from action: make
Exception Name: MakefileException
INFO: make: *** [client_sharedlib] 
解决办法:
sudo mkdir /usr/lib64
ln -s /usr/lib/x86_64-linux-gnu/libpthread_nonshared.a /usr/lib64/libpthread_nonshared.a


ERROR 2

INFO: /ld: cannot find /usr/lib64/libc_nonshared.a
INFO: make: *** [libc_nonshared

解决办法:
sudo mkdir /usr/lib64
ln --s /lib/x86_64-linux-gnu/libc_nonshared.a /usr/lib64/libc_nonshared.a


ERROR 3

INFO: Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'idg4odbc' of makefile '/opt/app/oracle/product/11.2/db_1/rdbms/lib/ins_rdbms.mk'. See '/opt/app/oraInventory/logs/installActions2012-11-02_12-00-26PM.log' for details.
Exception Severity: 1
INFO: Adding ExitStatus STOP_INSTALL to the exit status set
INFO: Finding the most appropriate exit status for the current application
INFO: Exit Status is -4
INFO: Shutdown Oracle Database 11g Release 2 Installer
INFO: Unloading Setup Driver

解决办法:

sudo apt-get install gcc++

ln -s /usr/bin/basename /bin/basename



ERROR 4

INFO: make: *** [ctxhx] 


INFO: End output from spawned process.
INFO: ----------------------------------
INFO: Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'install' of makefile '/opt/app/oracle/product/11.2/db_1/ctx/lib/ins_ctx.mk'. See '/opt/app/oraInventory/logs/installActions2012-11-02_12-26-30PM.log' for details.
Exception Severity: 1


sudo apt-get install gcc-multilib

sudo apt-get install libstdc++5


ERROR 5

make: *** [emdctl] 


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 '/opt/app/oracle/product/11.2/db_1/sysman/lib/ins_emagent.mk'. See '/opt/app/oraInventory/logs/installActions2012-11-02_12-26-30PM.log' for details.
Exception Severity: 1





ERROR 6

INFO: make: *** [liborasdkbase] 


INFO: End output from spawned process.
INFO: ----------------------------------
INFO: Exception thrown from action: make
Exception Name: MakefileException
Exception String: Error in invoking target 'all_no_orcl' of makefile '/opt/app/oracle/product/11.2/db_1/rdbms/lib/ins_rdbms.mk'. See '/opt/app/oraInventory/logs/installActions2012-11-02_12-26-30PM.log' for details.
Exception Severity: 1

你可能感兴趣的:(ubuntu安装oracle 11gr2遇到的问题)