473,394 Members | 1,878 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

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.
Oct 13 '07 #1
3 21650
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.
Oct 15 '07 #2
EldonR
1
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).
Dec 11 '07 #3
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.
Mar 6 '08 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: hrishy | last post by:
Hi All I am planning to install oracle collabration suite for testing purposes . Can somebody tell me whats the minimium hardwrae requirement. Is somebody already running OCS for file and...
3
by: Nathan Sokalski | last post by:
When I attempt to run a form created with Oracle9i Forms Builder I receive a dialog box asking for the following info: User Name: Password: Database: I obviously know my User Name and...
1
by: Orhan Aykut | last post by:
Hi, This may be a newbie question though but we're about to start a large s/w project (it will be a scalable "accounting and budget program" in a large scale) and we're planning to develop it in...
1
by: estalol1 | last post by:
I work with oracle 8i and 9i and i have a problem to run form under developer suite 10g. Why there aren't ifrun90?. Thanks for your help
3
by: Mala232 | last post by:
Hi all, I installed Oracle developer suite 10g version 1.0 and I have Oracle 10.2 version Database. My developer suite is not working it is not able to connect to database. My question is, Is...
0
by: Mala232 | last post by:
Hi all, I am facing a problem while trying to run a form in Oracle developer suite 10g when i try to run a form it says FRM : 10142:HTTP Listeneris not running on my computer at port...
1
by: aruneshwar | last post by:
Is there any one here who worked on Oracle Interconnect tool and Oracle SOA Suite..if u have an idea please let me know What is the difference between them and when to use what
1
by: samir pradhan | last post by:
Hi Everybody. I am new in this forum. can anybody help me to explain the connection procedure of oracle9i database and oracle 10g developer suite ? Thanx
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.