473,769 Members | 6,187 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Oracle Developer Suite 10.1.2.0.2 installation on Fedora 5

2 New Member
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@G LIBC_2.3.4 »
/usr/lib/libXtst.so.6: undefined reference to « __stack_chk_fai l@GLIBC_2.4 »
/usr/lib/libXtst.so.6: undefined reference to « __sprintf_chk@G LIBC_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=21474836 48 ; result : shmmax=21474836 48. Passed
Checking hardnofiles=655 36 ; result : hardnofiles=163 84. 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=409 6 ; result : softnofiles=163 84. 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 21692
oracleBugZilla
2 New Member
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 New Member
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
longjon
1 New Member
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
1578
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 email. If so how many users and whats the hardware and configuration like have you installed mail server and file server on different databases and on different servers.
3
10985
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 Password, and I assume that the value I use for Database is the value found in the tnsnames.ora file (in my case, ORCL). However, when I do this I receive the following error:
1
2776
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 C#, while our customer is leaning towards Oracle Developer because their IT dept.'s past experience has on it. They have also mentioned to us in a meeting to benefit from Oracle's Finance Tools. Would you please give me strong arguments to...
1
7293
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
2753
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 there any way to connect to Oracle 10.2 DB from Oracle Dev suite 10.1.? Suggest me the correct answer. Thank you, Mala
0
1165
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 :8889..please start the listener or check runtime preferences. I tried to start the services but I still face it. Please any one help me. Thanks mala
1
1865
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
4400
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
9589
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9423
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10211
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10045
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
9863
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6673
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3959
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
3562
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2815
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.