Connecting Tech Pros Worldwide Help | Site Map

Oracle Developer Suite 10.1.2.0.2 installation on Fedora 5

 
LinkBack Thread Tools Search this Thread
  #1  
Old October 13th, 2007, 08:42 AM
Newbie
 
Join Date: Oct 2007
Posts: 2
Default Oracle Developer Suite 10.1.2.0.2 installation on Fedora 5

Hi everybody!
It seems like I don't have much luck with Oracle!
I've installed Oracle database 9i on my fedora box,
I've also successfully installed the most difficult Oracle AS 10.1.3.1 (or something)
on the same linux host.
Now I'm struggling to install Oracle Developer Suite, but I always
come across the same error:
/usr/lib/libXtst.so.6: undefined reference to« __fprintf_chk@GLIBC_2.3.4 »
/usr/lib/libXtst.so.6: undefined reference to « __stack_chk_fail@GLIBC_2.4 »
/usr/lib/libXtst.so.6: undefined reference to « __sprintf_chk@GLIBC_2.3.4 »
This occurs during the compilation of rwbuilder in the ins_reports.mk make file.
I should also mention that the preinstallation gcc checp up was successfull:
Here is the log for pre-installation check up:
KERNEL CHECP -UP RETURNS THIS:
---------------------------Security
This is a prerequisite condition to test whether the required system security parameters is set in the kernel configuration.
Checking shmall=2097152 ; result : shmall=2097152. Passed
Checking msgmnb=65535 ; result : msgmnb=16384. Failed <<<<
Checking semmns=32000 ; result: semmns=32000. Passed
Checking semopm=100 ; result : semopm=100. Passed
Checking msgmni=2878 ; result : msgmni=16. Failed <<<<
Checking shmmax=2147483648 ; result : shmmax=2147483648. Passed
Checking hardnofiles=65536 ; result : hardnofiles=16384. Failed <<<<
Checking VERSION=2.4.21-20.EL ; result : VERSION=2.6.18-prep. Passed
Checking file-max=131072 ; result : file-max=65536. Failed <<<<
Checking semmsl=256 ; result : semmsl=250. Failed <<<<
Checking semmni=142 ; result : semmni=128. Failed <<<<
Checking msgmax=8192 ; result : msgmax=8192. Failed
Checking shmmni=4096 ; result : shmmni=128. Failed <<<<
Checking softnofiles=4096 ; result : softnofiles=16384. Passed
----------------------------------------------------------------------------------------------------
SOFTWARE CHECK-UP RETURNS THIS
--------------------------------------
Vérification de gcc-3.2.3-42 ; résultat : gcc-4.1.0-3. Passed
Vérification de gcc-c++-3.2.3-42 ; résultat : gcc-c++-4.1.0-3. Passed
Vérification de openmotif21-2.1.30-8 ; résultat : openmotif21-2.1.30-8. Passed
Vérification de setarch-1.3-1 ; résultat : setarch-1.8-1.2.1. Passed
Vérification de pdksh-5.2.14-21 ; résultat : Introuvable. Failed <<<<
Vérification de sysstat-4.0.7-4.EL3.3 ; résultat : sysstat-5.0.5-1. Passed
Vérification de gnome-libs-1:1.4.1.2.90-34.1 ; résultat : gnome-libs-1:1.4.1.2.90-46. Passed
Vérification de libstdc++-3.2.3-42 ; résultat : libstdc++-4.1.0-3. Passed
Vérification de libstdc++-devel-3.2.3-42 ; résultat : libstdc++-devel-4.1.0-3. Passed
Vérification de compat-libstdc++-devel-7.3-2.96.128. résultat : compat-libstdc++-devel-7.3-2.96.128. Passed
Vérification de compat-glibc-7.x-2.2.4.32.6 ; résultat : compat-glibc-7.x-2.2.4.32.6. Passed
Vérification de compat-libstdc++-7.3-2.96.128 ; résultat : compat-libstdc++-7.3-2.96.128. Passed
Vérification de glibc-common-2.3.2-95.27 ; résultat : glibc-common-2.4-4.
Passed
Vérification de compat-libstdc++-devel-7.3-2.96.128 ; résultat : compat-libstdc++-devel-7.3-2.96.128. Passed
Vérification de compat-glibc-7.x-2.2.4.32.6 ; résultat : compat-glibc-7.x-2.2.4.32.6. Passed
Vérification de compat-libstdc++-7.3-2.96.128 ; résultat : compat-libstdc++-7.3-2.96.128. Passed
Vérification de glibc-common-2.3.2-95.27 ; résultat : glibc-common-2.4-4.
Passed
Vérification de binutils-2.14.90.0.4-35 ; résultat : binutils-2.16.91.0.6-4.
Passed
Vérification de make-1:3.79.1-17 ; résultat : make-1:3.80-10.2. Passed

--------------------------------------------------------------------------------GLIBC
This is a prerequisite condition to test whether the minimum recommended glibc is available on the system.
Expected result : 2.3.2-95.27
Actual result : 2.4-4
-----------------------------------------------------------------------------------------------------------------------------------
(I hope you won't be confused with the english/french mixup, since the actual output was in french, and I had to translate it).

So is there any guru out there who can sort this out?
I've found the same error posted on different forums, but no answer, It is not
a Developer Suite bug?
Thanks for all.
Reply
  #2  
Old October 15th, 2007, 02:02 PM
Newbie
 
Join Date: Oct 2007
Posts: 2
Default

Hi!
I think I've got the solution to the above problem.
It has something to do with the xorg-x11-libs libraries.
So what I did was as follows:
- downloaded and install xorg-x11-libs-6.8.1-12.i386.rpm (from Fedora 3 CD repository).
#>rpm -Uvh xorg-x11-libs-6.8.1-12.i386.rpm
- redirected current libXtst.so to the new libXtst.so* installed in /usr/X11R6/lib, but didn't delete the files for possible backup:
#>mv /usr/lib/libXtst.so.6.1 /usr/lib/libXtst_so_6_1 # replaced '.' with '_'
#>ln -s /usr/X11R6/lib/libXtst.so.6.1 /usr/lib/libXtst.so.6.1
- Gone to $ORACLE_HOME/bin (home where oracle dev is installed), and executed:
#>./relink all &> ../install/make.log
- Read the make.log file to detect any possible errors
- And the libXtst.so.6 linking problem was gone!!!
I hope this will help anybody with the same problem.
Reply
  #3  
Old December 11th, 2007, 06:24 AM
Newbie
 
Join Date: Dec 2007
Posts: 1
Default

Hey, that was just what I needed - thanks!

I am using RHEL5, and I got the latest xorg-x11-libs package from RHEL4 and applied your fix to get this to work for me. The only thing I had to change was the version number of the actual libXtst library file in /usr/lib, which was 6.1.0 instead of just 6.1.

I was mid-way through the install of Oracle Developer Suite, and I just left the error message on the screen while I applied the fix, then used the "Retry" button. That seems to have worked (compilation and installation continued without errors but I've yet to properly test the developer tools).
Reply
  #4  
Old March 6th, 2008, 04:38 PM
Newbie
 
Join Date: Mar 2008
Posts: 1
Default

Quote:
Originally Posted by oracleBugZilla
Hi!
I think I've got the solution to the above problem.
Nice one oracleBugZilla - you saved me hours!

This fix works for OAS 10.2.0.2 also - I got the same error while linking the reports libraries, mid-tier install.
Reply
Reply

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search


Popular Articles

What is Bytes?

We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights. Get the best answers to your questions from over 220,662 network members.