Installation of oracle 10g on RedHat Linux EE 3

Hi,
I am going to Install of oracle 10g on RedHat Linux EE 3, rigth now i am running oracle 9i on windows platform. I need following things:
-I want to export all my data from oracle 9i on windows. For this what is the best way should i transport my tablespace and install oracle 10g on linux and import them after creating db or should i simply export and import it from there.
-Is there any issues that i should look at before i transfer my database.
-We are a Industrial Laboratory and use scientific notation in our database. Would this import export can takecare of all the things or should i set some character set setting before import/export.
-Any thing else if you thing that i should take care.
Thanks & Regard
Rashid K.K

You cannot use transportable tablespace. Platform independent transportable tablespace run only on newer versions (10g). You have to create the tablespaces on you linux machine and than exp/imp (full=y).
Bye, Aron

Similar Messages

  • Error While Installing ORACLE 10g in Redhat Linux 5.0

    Hi all,
    Anybody please guide me regarding the posted error.
    I'm trying to install ORACLE 10g in Redhat Linux 5.0 and finding error as "Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2009-10-15_09-20-56PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    I tired a lot to sort it out but unable to resolve.So please tell me the possible ways.
    I appreciate all types of clarifications...
    Thanks in Advance
    Sajeev George

    Sajeevcmc wrote:
    Hi,
    Thanks for the reply.
    Could you please tell me the rpm full name and where i can download the same?
    Thanks in Advance
    SAJEEV GEORGEYou need to have the following packages installed already before starting Oracle installation
    http://download.oracle.com/docs/cd/B19306_01/install.102/b15669/pre_install.htm#sthref80
    binutils-2.15.92.0.2-10.EL4
    compat-db-4.1.25-9
    control-center-2.8.0-12
    gcc-3.4.3-9.EL4
    gcc-c++-3.4.3-9.EL4
    glibc-2.3.4-2
    glibc-common-2.3.4-2
    gnome-libs-1.4.1.2.90-44.1
    libstdc++-3.4.3-9.EL4
    libstdc++-devel-3.4.3-9.EL4
    make-3.80-5
    pdksh-5.2.14-30
    sysstat-5.0.5-1
    xscreensaver-4.18-5.rhel4.2
    And from the following link, you can get the same list:
    http://www.puschitz.com/InstallingOracle10g.shtml (Go to Checking Software Packages (RPMs))
    And from my installation guide you can easily install Oracle on Linux by following step by step instruction
    [Step by Step Installing Oracle Database 10g Release 2 on Linux (CentOS) and AUTOMATE the installation using Linux Shell Script|http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Can you install Oracle 10g on REDHAT LINUX ENTERPRISE WS?

    According to oracle documentation, it says you can install oracle10g on Redhat enterprise version 3 or 4, but it doesn't specify whether its Red Hat Enterprise Linux AS or WS. Can you install oracle 10g on Rehat Linux Enterprise WS?

    Oracle Certificaction Matrices says only RedHat AS/ES is supported for database. AFAIK WS means workstation.
    Also this link is very clear: http://kbase.redhat.com/faq/FAQ_61_1135.shtm
    Besides the above sentences... If the WS installation is providing all required packages (listed in installtion prerequisites) I belive that Oracle DB could be installed on WS but as I (and the above link) said it is not officialy supported.

  • Installation of Oracle 9i on Redhat Linux 7.3

    Hi.
    I'm trying to install oracle 9i on Redhat Linux an facing some problems. To start with I had no problem in installing and creating the database, The listener.ora and tsnname.ora files created are similar to what i have on windows 2000( Since i was not able to make oracle working on linux, i tried installing on windows, so as to check and create database for temporary work.), But when i go to the console and type the commands: sqlplus /nolog it says bash: sqlplus:command not found.
    2. When i try clicking sqlplus executable file in the bin directory, i get a message that 'Could'nt find the program'.
    3. Where can i find the bash_profile file.
    4.I'm able to run the database configuration assistant and create new databases without any error.
    I would appreciate if some one can help me out.Also are there any special commands, for this is my first experience on linux.
    Thanks
    Pranav

    If your shell is bash (which I guess it is) you need to set the environment variables either per user in a file called ~/.bash_profile (probably /home/oracle/.bash_profile) or globally by making a file /etc/profile.d/oracle.sh
    you can list .files with ls -la
    for now you can either type /opt/oracle/product/9.2.0/bin/sqlplus or type
    export PATH=${PATH}:/opt/oracle/product/9.2.0/bin
    to add oracle to the path in your current session

  • Fast installation for oracle db under redhat linux 4 update 3

    dear sirs...
    i know little about linux, however, i create a simple script that will preform pre-installation operations for linux 4 update 3. it will update the files, create oracle user, and so on. you will find its source. if possible i hope someone can upgrade this script such that there it will check the OS packages, and stop the changes if any of the packages is missing.
    thanks for any help and best regards.
    notes:
    1- to use this script, type the text in linux gedit. save it in a file and put the file in a safe place so that every time you want to install the db, you can find it ready.
    2- do not use notepad to create the file, it will not work.
    3- before you run the script, be sure that all packages needed by the db exists.
    4- the script assumes that you have just installed linux for running the database only.
    5- to run the script in linux , login as root user, and type . scriptfilename
    6- the script should be executed only once.
    /usr/sbin/groupadd oinstall
    /usr/sbin/groupadd dba
    /usr/sbin/useradd -m -g oinstall -G dba oracle
    passwd oracle
    mkdir -p /home/oracle
    chown -R oracle:oinstall /home/oracle
    chmod -R 775 /home/oracle
    cat >> /etc/sysctl.conf <<EOF
    # the following lines are added by a script
    kernel.shmall = 2097152
    kernel.shmmax = 536870912
    kernel.shmmni = 4096
    kernel.sem = 250 32000 100 128
    fs.file-max = 65536
    net.ipv4.ip_local_port_range = 1024 65000
    net.core.rmem_default = 262144
    net.core.wmem_default = 262144
    net.core.rmem_max = 262144
    net.core.wmem_max = 262144
    EOF
    /sbin/sysctl -p
    cat >> /etc/security/limits.conf <<EOF
    # the following lines are added by a script
    oracle soft nproc 2047
    oracle hard nproc 16384
    oracle soft nofile 1024
    oracle hard nofile 65536
    EOF
    cat >> /etc/pam.d/login <<EOF
    # the following lines are added by a script
    session required /lib/security/pam_limits.so
    EOF
    cat >> /etc/profile <<EOF
    # the following lines are added by a script
    if [ \$USER = "oracle" ]; then
    if [ \$SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
    else
    ulimit -u 16384 -n 65536
    fi
    umask 022
    fi
    EOF
    cat >> /etc/csh.login <<EOF
    # the following lines are added by a script
    if ( \$USER == "oracle" ) then
    limit maxproc 16384
    limit descriptors 65536
    umask 022
    endif
    EOF

    Nice.
    A fair chunk of additional work would go into this to ensure that existing settings are not clobbered, but it should be OK on a new install of Linux.
    Why not require that they use the DVD (so you have all RPMs on one media), cd to the RPMS directory and simply 'rpm -i' all the prereq packages? Then you don't need to 'rpm -q' and inspect the status.

  • Error while installing oracle 10g in redhat Server

    Hi experts,
    I installed Oracle 10g in RedHat Linux server. After the installation Oracle will work smoothly. After restarting the server we try to start the listener service manually but it is not starting. I configured listener.ora file using GUI interface and also set Oracle HOME and Oracle SID. But still it’s not starting.
    when Try to start the listener the following error comes.
    Tns-12537:TNS:Connection closed
    Tns-12560:TNS:PROTOCOL ADAPTER ERROR
    Tns-00507:TNS:Connection closed
    Linux error 29:illegal Seek.
    Please help me

    Thanks for the answer it was helpful and i successfully started the oracle database.
    and i am trying to import dump file to tha database by creating the new schema when i try this i used the command like
    imp userid=username/password@servicename file=C:\filename.dmp fromuser=username touser=username but i got error as no such command.pls help

  • Error while Installation database  ... in redhat linux 4.8

    Hi,
    i am trying to install oracle 10g in redhat linux 4.8
    i am getting error at 62%
    Error in invoking target 'ntcontb.o' of makefile   so please can any body tell me what is the issue I downloaded oracle from oracle website itself .
    product prerequisite
    Checking operating system requirements ...
    Expected result: One of redhat-3,redhat-4,SuSE-9,asianux-1,asianux-2
    Actual Result: redhat-4
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking operating system package requirements ...
    Checking for make-3.79; found make-1:3.80-7.EL4. Passed
    Checking for binutils-2.14; found binutils-2.15.92.0.2-25. Passed
    Checking for gcc-3.2; found Not found. Failed <<<<
    Checking for libaio-0.3.96; found libaio-0.3.105-2. Passed
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Some packages required for the Oracle Database 10g to
    function properly are missing (see above).
    Recommendation: Install the required packages before continuing with
    the installation.
    =======================================================================
    Checking kernel parameters
    Checking for semmsl=250; found semmsl=250.      Passed
    Checking for semmns=32000; found semmns=32000.  Passed
    Checking for semopm=100; found semopm=100.      Passed
    Checking for semmni=128; found semmni=128.      Passed
    Checking for shmmax=536870912; found shmmChecking operating system
    requirements ...
    Expected result: One of redhat-3,redhat-4,SuSE-9,asianux-1,asianux-2
    Actual Result: redhat-4
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking operating system package requirements ...
    Checking for make-3.79; found make-1:3.80-7.EL4.        Passed
    Checking for binutils-2.14; found binutils-2.15.92.0.2-25.      Passed
    Checking for gcc-3.2; found Not found.  Failed <<<<
    Checking for libaio-0.3.96; found libaio-0.3.105-2.     Passed
    Check complete. The overall result of this check is: Failed <<<<
    Problem: Some packages required for the Oracle Database 10g to
    function properly are missing (see above).
    Recommendation: Install the required packages before continuing with
    the installation.
    =======================================================================
    Checking kernel parameters
    Checking for semmsl=250; found semmsl=250.      Passed
    Checking for semmns=32000; found semmns=32000.  Passed
    Checking for semopm=100; found semopm=100.      Passed
    Checking for semmni=128; found semmni=128.      Passed
    Checking for shmmax=536870912; found shmmax=536870912.  Passed
    Checking for shmmni=4096; found shmmni=4096.    Passed
    Checking for shmall=2097152; found shmall=2097152.      Passed
    Checking for file-max=65536; found file-max=202024.     Passed
    Checking for VERSION=2.6.9; found VERSION=2.6.9-89.ELsmp.       Passed
    Checking for ip_local_port_range=1024 - 65000; found
    ip_local_port_range=32768 - 61000.      Failed <<<<
    Checking for rmem_default=262144; found rmem_default=110592.    Failed <<<<
    Checking for rmem_max=262144; found rmem_max=131071.    Failed <<<<
    Checking for wmem_default=262144; found wmem_default=110592.    Failed <<<<
    Checking for wmem_max=262144; found wmem_max=131071.    Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    Recommendation: Perform operating system specific instructions to
    update the kernel parameters.
    =======================================================================
    Checking Recommended glibc version
    Expected result: ATLEAST=2.3.2-95.27
    Actual Result: 2.3.4-2.43
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking physical memory requirements ...
    Expected result: 922MB
    Actual Result: 1988MB
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking available swap space requirements ...
    Expected result: 2982MB
    Actual Result: 1983MB
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The system does not have the required swap space.
    Recommendation: Make more swap space available to perform the install.
    =======================================================================
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    Recommendation: Oracle supports installations on systems with
    DHCP-assigned public IP addresses.  However, the primary network
    interface on the system should be configured with a static IP address
    in order for the Oracle Software to function properly.  See the
    Installation Guide for more details on installing the software on
    systems configured with DHCP.
    =======================================================================
    Validating ORACLE_BASE location (if set) ...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking Oracle Home path for spaces...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking for proper system clean-up....
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking for Oracle Home incompatibilities ....
    Actual Result: NEW_HOME
    Check complete. The overall result of this check is: Passed
    =======================================================================ax=536870912.    Passed
    Checking for shmmni=4096; found shmmni=4096.    Passed
    Checking for shmall=2097152; found shmall=2097152.      Passed
    Checking for file-max=65536; found file-max=202024.     Passed
    Checking for VERSION=2.6.9; found VERSION=2.6.9-89.ELsmp.       Passed
    Checking for ip_local_port_range=1024 - 65000; found
    ip_local_port_range=32768 - 61000.      Failed <<<<
    Checking for rmem_default=262144; found rmem_default=110592.    Failed <<<<
    Checking for rmem_max=262144; found rmem_max=131071.    Failed <<<<
    Checking for wmem_default=262144; found wmem_default=110592.    Failed <<<<
    Checking for wmem_max=262144; found wmem_max=131071.    Failed <<<<
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The kernel parameters do not meet the minimum requirements (see above).
    Recommendation: Perform operating system specific instructions to
    update the kernel parameters.
    =======================================================================
    Checking Recommended glibc version
    Expected result: ATLEAST=2.3.2-95.27
    Actual Result: 2.3.4-2.43
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking physical memory requirements ...
    Expected result: 922MB
    Actual Result: 1988MB
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking available swap space requirements ...
    Expected result: 2982MB
    Actual Result: 1983MB
    Check complete. The overall result of this check is: Failed <<<<
    Problem: The system does not have the required swap space.
    Recommendation: Make more swap space available to perform the install.
    =======================================================================
    Checking Network Configuration requirements ...
    Check complete. The overall result of this check is: Not executed <<<<
    Recommendation: Oracle supports installations on systems with
    DHCP-assigned public IP addresses.  However, the primary network
    interface on the system should be configured with a static IP address
    in order for the Oracle Software to function properly.  See the
    Installation Guide for more details on installing the software on
    systems configured with DHCP.
    =======================================================================
    Validating ORACLE_BASE location (if set) ...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking Oracle Home path for spaces...
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking for proper system clean-up....
    Check complete. The overall result of this check is: Passed
    =======================================================================
    Checking for Oracle Home incompatibilities ....
    Actual Result: NEW_HOME
    Check complete. The overall result of this check is: Passed---chetan
    Edited by: CHETAN YADAV on Oct 6, 2010 3:27 PM
    Edited by: CHETAN YADAV on Oct 6, 2010 3:28 PM

    >
    so please can any body tell me what is the issue I downloaded oracle from oracle website itself .Yes. The issue is your assumption.
    Why do you assume that the o/s is automatically configured with the required s/w components for running Oracle 10g? Should the o/s have a clairvoyant module that "knows" it needs to prep itself when it is installed for supporting Oracle 10g? And not as a Weblogic server? Or mySQL? Or Postgress? Or JBoss? Or Oracle 11g?
    Be glad that Oracle s/w actually tells you exactly what it needs from the o/s that is missing or needs correction. As this is exactly how a robust s/w stack should behave.

  • Oracle 10g instal on linux exception unsatisfied link erro

    I am trying to instal oracle 10g on redhat linux am getting an error like this how to solve this
    [oracle@localhost ~]$ pwd
    /home/oracle
    [oracle@localhost ~]$ ../database/runInstaller
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-3, SuSE-9, redhat-4, UnitedLinux-1.0, asianux-1 or asianux-2
    Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2009-07-10_01-53-31PM. Please wait ...[oracle@localhost ~]$ Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2009-07-10_01-53-31PM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    at java.lang.ClassLoader$NativeLibrary.load(Native Method)
    at java.lang.ClassLoader.loadLibrary0(Unknown Source)
    at java.lang.ClassLoader.loadLibrary(Unknown Source)
    at java.lang.Runtime.loadLibrary0(Unknown Source)
    at java.lang.System.loadLibrary(Unknown Source)
    at sun.security.action.LoadLibraryAction.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at sun.awt.NativeLibLoader.loadLibraries(Unknown Source)
    at sun.awt.DebugHelper.<clinit>(Unknown Source)
    at java.awt.Component.<clinit>(Unknown Source)
    [oracle@localhost ~]$

    according to mr Ivan Kartik at his blog http://ivan.kartik.sk/oracle/install_ora10gR2_redhat.html
    Exception java.lang.UnsatisfiedLinkError: /tmp/OraInstall2005-07-07_09-40-45AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory occurred.. java.lang.UnsatisfiedLinkError: /tmp/OraInstall2005-07-07_09-40-45AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    Solution: RH 3, WB 3, Centos 3 - Install the XFree86-libs-4.3.0-81.EL.i386.rpm and dependent packages.
    RH 4, WB 4, Centos 4 - Install the xorg-x11-deprecated-libs-6.8.2-1.EL.13.6.i386.rpm package.
    RH 5, OEL 5, Centos 5 - Install the libXp-1.0.0-8.1.el5.i386.rpm package.
    I've tried to follow this suggestion and work nice.
    thanks

  • Oracle 10G R2 on Linux ES4

    hello all
    please provide me the installation of oracle 10G R2 on linux 32 bit ....PDF or link
    please let me also know pre requistes for this and also list of packages needed to install before installing databaase and detail step by step installation process please ....

    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b15660/toc.htm
    http://www.puschitz.com

  • Installation: Oracle 10g on SUSE Linux 10.1

    Can this be? I sat for hours preparing my all new clean SUSE Linux 10.1 server for the installation of Oracle 10g (Standard Edition)... and when running the installer it simply tells me that SUSE 9 is needed...
    I've found others here in the forum having experienced the same.
    Maybe I just downloaded the wrong version of Oracle?
    The main download page is at:
    http://www.oracle.com/technology/software/products/database/oracle10g/index.html
    I selected entry "Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86" (the one directly below the Windows version):
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10201linuxsoft.html
    The size of the file^^ is 668,734,007 bytes.
    Or should i have downloaded entry "Oracle Database 10g Release 2 (10.2.0.2) for z/Linux":
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10202zlinuxsoft.html
    The size of the file^^ is 838,518,746 bytes.
    By the way, all these versions on the main page should have some kind of description, something like "This is the Linux Version for most standard 32Bit single and multiprocessor Intel compatible servers."
    Well, since I'm completely stuck now with SUSE 10.1, is there any way to make the Oracle installer go on that SUSE version? Maybe SUSE can pretend to be version 9... but how do I achieve something freaky as this?
    Thanks for any help, comments, suggestions...
    Karsten

    BTW, I think it's bad practice by Oracle not supporting SUSE 10.1.Actually, I think it is good practise for Oracle not to certify the public beta versions of an operating system.
    Please remember that Fedora and SuSE Linux are cycled every 6-8 months, making then truly unstable for commercial purposes. IN addition, they are often desupported by the comminuty within 2-3 years, forcing upgrades. And finally, Both Red Hat and SuSE/Novell publically state that these are 'proving grounds for new features' (meaning they are beta).
    Certification means that Oracle will invest heavily and train people on the specific operating system and work with the operating system supplier, 24x7 if needed, to make sure that customers will continue in production. I am not aware that the SuSE Linux or Fedora supporters are willing to put in 24x7 support they way the Red Hat and SuSE Enterprise groups are.
    This does not imply the public OSs are bad. It just means that Oracle (and I) believe they are unsuited for commercial, business mission critical, immediate support required, environments.
    By the way, I have the combination of Oracle10g and SuSE Linux 10.1 working, and it works well. However, I did need to make sure that the libraries to which Oracle10g was compiled are available in the OS.
    Or maybe Sybase does better.... ;-pNot if the [glibc] libraries are incompatible. Nor does PostgreSQL nor MySQL.

  • Error in Installing Oracle 9i on RedHat LINUX 8.0

    When I am trying to install Oracle 9i on RedHat LINUX 8.0 I am getting the Error message " CANNOT COPY INTO THE FILE aurora.zip". I just ignored this and i continued the Installation. But after some time (During installation in LINKING part) i am getting the error message ERROR IN INVOKING TARGET ctx_on OF MAKEFILE /u01/app/oracle/product/9.2.0/rdbms/lib/ins_rdbms.mk
    What shall i do for this?

    are u sure that u can load Oracle 9i on Linux 8.0? i am aware that the three Linux distributions certified for Oracle 10g are:
    Red Hat Enterprise Linux 2.1
    Red Hat Enterprise Linux 3
    Novell SUSE Linux Enterprise Server 8

  • Unable to Install Oracle 9i on redhat linux 9

    Hi everybody,
    I had been trying to install Oracle 9i on redhat linux 9 since last month and I am not able to succeed in installing the same. In fact I do not get to see even the OUI screen . I give below the steps I followed.
    1) Setting of env varibles pertinent to oracle., say ORACLE_HOME,NLS_LANG etc.
    2) PATH=$PATH:/usr/local/jdk1.3.1/bin:.
    3) export LD_ASSUME_KERNEL=2.4.1
    I have a set of 3 CD's for installation. As soon as I load the first CD. the runInstaller would run for sometime and stop, while I do the installation in the graphic mode.
    When I try to install the same in the command line mode, I get to see something like the one below
    Initializing java jre from /tmp/OraInstall0/... please wait.. and then it would come back to the command prompt.
    I then invoke ps -ef | grep -i oracle to check if some process is running and I do get to see something. But ultimately nothing happens.
    Please help me with this.

    At Oracle Site we have a very good manual for 9i installation. Follow the manual step-by-step.
    Your problem seems as a java or permissions issue.
    good luck
    Eduardo

  • Can I run 32 bit version of Oracle 10g grid  on Linux x86-64?

    Since Oracle did not release 64 bit version of Oracle 10g grid for Linux X86-64. Can I run 32 bit version of Oracle 10g grid on Linux x86-64? If so did anyone tried this? and also any known issues?

    All I had to do was use the 32bit version of "/usr/bin/gcc" and "/usr/bin/g++" to run the installation
    That is:
    bin]# cp -p /usr/bin/gcc /usr/bin/gcc_old
    bin]# mv /usr/bin/gcc /usr/bin/gcc323
    mv: overwrite `/usr/bin/gcc323'? y
    bin]# ln -s /usr/bin/gcc296 /usr/bin/gcc
    bin]# cp -p /usr/bin/g++ /usr/bin/g++_old
    bin]# mv /usr/bin/g++ /usr/bin/g++323
    mv: overwrite `/usr/bin/g++323'? y
    bin]# ln -s /usr/bin/g++296 /usr/bin/g++
    AFTER INSTALLATION REMEMBER TO
    move back the 64bit files to their former state.
    bin]#rm /usr/bin/g++
    bin]#rm /usr/bin/gcc
    bin]#mv /usr/bin/gcc_old /usr/bin/gcc
    bin]#mv /usr/bin/g++_old /usr/bin/g++                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Installation of  oracle 10g rac on open solaris  for X86 Machine

    Hi
    Can you please let me know the advantages of installation of oracle 10g rac on open solaris on x86 machine.And also let me know the detail steps involved in instatllation of oracle 10g rac on open solaris on x86. please suggest the recommdendation for the installation
    Thanks
    Saiprasath

    If by "advantages of installation of oracle 10g rac on open solaris on x86 machine" you mean advantages over RAC on Linux or AIX or HP/UX there aren't any.
    If you want to know the advantages of RAC over stand-alone they generally relate to:
    1. Eliminating the server as a single point of failure
    2. Transparent fail-over
    2. Incremental horizontal scalability

  • This problem appears while installing oracle 10g on enterprise linux

    Hi All,
    While installing oracle 10g on enterprise linux 5 this message apear:
    http://img134.imageshack.us/my.php?image=problemqy2.png
    More Info:
    Oracle 10g supports redhat 4 and Enterprise Linux is redhat 5 so I changed the redhat-release to 4 to countinue setup but the above error appears, also I tried this configuration on SuSE 10 I changed the SuSE-release to 9 and went good.

    The packeges are already installedIf you execute runInstaller again is the error message the same as before?
    If yes can you post output for this command?
    rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}\n'|grep -i 'libxp'

Maybe you are looking for

  • HR iviews Error (app integrator)

    Dear SDN, Please help me with the following issue, we have integrated HR portal ESS iviews using appintegrator approach in our central SAP portal, have created a R3 load balancing system object and used the system in the appintegrator iviews. unfortu

  • FlashPaper hangs when converting PowerPoint t to Flash swf

    I tried a very simple one page powerpoint with the word test. I hit FlashPaper-convert to Flash SWF; the dialog box appears and indicates it is converting but it never finished. Is this also a bug and is there a fix? Thx, Dave

  • Project Siena download

    Hi. I'm trying to download the Project Siena app to install but I can't find where to download it. I've been here; http://apps.microsoft.com/windows/en-us/app/5ae47651-e8f3-4e41-aab7-e19ab1b80180,and here; http://www.microsoft.com/en-us/projectsiena/

  • Lean kernel on minimal hardware?

    Hi, I would like to boot as small kernel as possible on very limited hardware. How to do it? Can we disable MMU or DMA in SUN Ultra? If we can is there any jumper setting on motherboard? Can we remove devices from OpenBoot prom device tree? Which dri

  • MacBook Shuts Down After Unplugging Powercord Although Battery is Installed

    Hi, Whenever I disconnect the power cord of my MacBook, the OS shuts down within 2-5 seconds. The battery is installed and it has a 80% health and it has 185 charge cycles. I've been experiencing this strange behavior after two days of installing (Se