27 February 2013

ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.

ld.so: object '/lib/libcwait.so' from /etc/ld.so.preload cannot be preloaded: ignored.

Changes
Check compat-libcwait-2.1-1.i386.rpm was installed  if yes


Solution:-
Workaround
~~~~~~~~~~

1- It's possible to workaround the problem by moving the "libcwait.so" library from "/usr/lib" to "/lib", and modifying the path given  in the file "/etc/ld.so.preload" to point to the new location.

2- Install compat-libcwait-2.1-2 of 64 bit.

[root@prodbi11g /]# rpm -e compat-libcwait-2.1-1.i386

[root@prodbi11g /]# rpm -ivh compat-libcwait-2.1-2.x86_64.rpm

Error in CreateOUIProcess(): 13 : Permission denied

[root@prodbi11g /]#./runinstaller
INFO: Checking swap space: must be greater than 500 MB. Actual 2172 MB Passed
INFO: Error in CreateOUIProcess(): 13
INFO: : Permission denied
INFO: Preparing to launch Oracle Universal Installer from /tmp/OraInstall2012-06-30_01-38-33AM. Please wait ...



Cause:-

There was "noexec' set on /tmp dir.

LABEL=/tmp    /tmp type ext3 (rw,noexec,nosuid,nodev)

Solution :-

Remove "noexec" on /tmp folder.

vi /etc/fstab

LABEL=/tmp    /tmp type ext3 (rw,nosuid,nodev)

[root@prodbi11g /]# mount -o remount,exec /tmp