Oracle OS Question: SolarisX86 or RH Linux?

I could pose this question on either RH or Sun site, but I am unsure whether or not I would get an unbiased answer.
I have a choice of running RH or SolarisX86 with Oracle (Sparc is not debatable - Vendor Relationship issue)
I am interested in hearing from DBAs who handle/maintain/administer large DB/mission critical/hi-volume transactions and what your comfort level would be with respect to Oracle/Solaris X86 vs Oracle/Linux in the area of
1. OS patch maintenance/sys admin (drivers, kernels, etc..)
2. OS compatibilities (hardware drivers)
3. Oracle performance on each OS
4. OS specific issues (both pros and cons) (related to Oracle only please)
5 Commercial Support Programs (Sun or RH) : cost/ responsiveness etc..
6. and lastly, if you were in this seat, would you bet your job on Solaris86 or RH Linux?
Thanks in advance.
PS: Please keep Sparc vs. X86 off this thread.

You should not only consider using RH,but also Enterprise Linux Ref. http://www.oracle.com/technology/tech/linux/index.html.
RedHat is a very good Operating system, but I would not consider it to be ready for mission critical systems. Ref. http://www.ecommercetimes.com/story/31586.html, http://weblog.infoworld.com/dickerson/000691.html, http://searchopensource.techtarget.com/originalContent/0,289142,sid39_gci1068311,00.html

Similar Messages

  • Error while accessing Oracle E-Business Suite 11i from Linux/firefox

    error while accessing Oracle E-Business Suite 11i from Linux/firefox
    OS: SUSE Linux Desktop 11(SLED11)
    Web browser: firefox 3.x
    Java versions:
    # rpm -qa |grep java
    java-1_6_0-sun-plugin-1.6.0.u18-0.1.1
    java-1_6_0-sun-1.6.0.u18-0.1.1
    # java -version
    java version "1.6.0_18"
    Java(TM) SE Runtime Environment (build 1.6.0_18-b07)
    Java HotSpot(TM) Server VM (build 16.0-b13, mixed mode)
    when I access the url firefox says
    "Additional plugins are required to display all the media on this page"
    then I clicked on "Install Missing Plugin" button
    then I got the following message
    No Suitable Plugins were found
    Unknown Plugin (application/x-java-applet;jpi-version=1.4.1)
    please help/suggest
    Regards

    Hi user;
    Its not certified to login EBS from linux client
    Please check:
    Linux-cleint (ebs) certification
    pluggins
    Hope it helps
    Regard
    Helios

  • Can I install Oracle 8.1.6 on RH LINUX 7.1

    Can i Install Oracle 8.1.6 on Redhat Linux 7.1

    Yes, of course. Both versions works but you have to be prepared for lots of RAM.

  • Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto

    h2. Install Oracle 11gR2 Express Edition on Ubuntu Linux 11.04 (64-bit) Howto
    Version: B
    Author: Dude, 24. May 2011
    The following are step by step instructions how to install Oracle 11gR2 Express Edition (Beta) under Linux Ubuntu 11.04, 64-bit.
    Access to the Internet is required.
    The instructions cover the following additional topics:
    - Converting Red Hat based Oracle XE installer to Ubuntu.
    - Work-around for missing /sbin/chkconfig tool.
    - Install Oracle XE into a different directory or disk volume.
    - Relocate and configure the Oracle user and default login directory.
    - Uninstall, reconfigure and perform first database backup.
    - Notes and web links.
    - Troubleshooting
    h3. A) System Setup and Prerequisites
    h4. A.1. System Access
    You will need terminal command line, root and system console access to perform the setup tasks.
    To open a Terminal at the system console:
    Menu Applications > Accessories > TerminalThe following commands will enable remote ssh login with root access:
    sudo apt-get install openssh-server
    sudo passwd root
    Verify:
    ssh root@xe_server_host_nameh4. A.2. Software Prerequisites
    The following is required in order to install Oracle 11gR2 XE:
    sudo apt-get install alien libaio1 unixodbcThe following is not required, but it will fix backspace and arrow keys in case you prefer using the vi-editor:
    sudo apt-get install vimh4. A.3. System Swap space
    Minimum swap space required is 2 GB. You can increase swap space if necessary using a swap file:
    To analyze current swap space and memory configuration:
    sudo cat /proc/meminfo
    To install a 1 GB swapfile named swapfile in /, for example:
    sudo dd if=/dev/zero of=/swapfile bs=1024 count=1048576
    (this may take a while)
    sudo mkswap /swapfile
    sudo swapon /swapfile
    sudo cp /etc/fstab /etc/fstab.orig
    sudo echo '/swapfile swap swap defaults 0 0' >> /etc/fstab
    Verify:
    sudo swapon -a
    sudo swapon -sh4. A.4. Kernel Parameters
    Oracle 11g XE requires the following additional kernel parameters:
    sudo nano /etc/sysctl.d/60-oracle.conf
    (Enter the following)
    # Oracle 11g XE kernel parameters
    fs.file-max=6815744
    net.ipv4.ip_local_port_range=9000 65000
    kernel.sem=250 32000 100 128
    kernel.shmmax=536870912
    (Save the file)
    Note: kernel.shmmax = max possible value, e.g. size of physical RAM.
    Verify: sudo cat /etc/sysctl.d/60-oracle.conf
    Load new kernel parameters:
    sudo service procps start
    Verify:
    sudo sysctl -q fs.file-max
    -> fs.file-max = 6815744h4. A.5. Oracle Installation Directory
    The current Oracle Installation Guide uses the same directory like in previous versions: /usr/lib/oracle/xe/app/oracle/product/11.2.0/server. However, the current Beta installation uses Oracle Flexible Architecture (OFA) and installs into /u01/app/oracle/product/11.2.0/xe. Due to size limitations of Oracle XE it may not be necessary to store the installation to a specific directory or separate volume, but it is possible:
    Install Oracle XE to separate disk volume:
    From the system console menu: System > Administration > Disk Utility
    Select "ext3" filesystem for Oracle compatibility and specify a Volume label, e.g. Oracle.
    Notice the device name e.g. /dev/sdb
    Get the drive UUID:
    sudo blkid
    e.g. /dev/sdb: UUID="d19a2d8f-da43-4802-8bdb-0703c855e23a"
    Modify /etc/fstab to automatically mount the volume at system startup:
    sudo cp /etc/fstab /etc/fstab.original
    sudo nano /etc/fstab
    (Add the following, using determined UUID, for exmple)
    UUID=d19a2d8f-da43-4802-8bdb-0703c855e23a /u01 ext3 defaults,errors=remount-ro 0 1
    (Save the file)
    Create the mount-point, mount the new volume and set ownership and privileges:
    sudo mkdir /u01
    sudo mount -a
    sudo chown root:root /u01
    sudo chmod 755 /u01
    Verify:
    df -h
    or restart the systemYou can also install Oracle XE into a specific directory:
    Create a symbolic link to store the installation into an existing directory, for instance:
    sudo mkdir /home/oracle-xe
    sudo ln -s /home/oracle-xe /u01h3. C) Oracle 11g XE Download and Installation
    h4. C.1. Download and convert the Installer from Red Hat to Ubuntu
    Please see section E.3. to download the Oracle 11gR2 XE installer.
    Select the version listed for Linux x64.
    sudo unzip linux.x64_11gR2_OracleXE.zip
    sudo alien --to-deb --scripts oracle-xe-11.2.0-0.5.x86_64.rpm
    (This may take a while)h4. C.2. Create a special chkconfig script
    The Red Hat based installer of Oracle XE 11gR2 beta relies on +/sbin/chkconfig+, which is not used in Ubuntu. The chkconfig package available for the current version of Ubuntu produces errors and my not be safe to use. Below is a simple trick to get around the problem and install Oracle XE successfully:
    Create /sbin/chconfig:
    sudo nano /sbin/chkconfig
    (Cut and paste the following)
    #!/bin/bash
    # Oracle 11gR2 XE installer chkconfig hack for Debian by Dude
    file=/etc/init.d/oracle-xe
    if [[ ! `tail -n1 $file | grep INIT` ]]; then
       echo >> $file
       echo '### BEGIN INIT INFO' >> $file
       echo '# Provides:             OracleXE' >> $file
       echo '# Required-Start:       $remote_fs $syslog' >> $file
       echo '# Required-Stop:        $remote_fs $syslog' >> $file
       echo '# Default-Start:        2 3 4 5' >> $file
       echo '# Default-Stop:         0 1 6' >> $file
       echo '# Short-Description:    Oracle 11g Express Edition' >> $file
       echo '### END INIT INFO' >> $file
    fi
    update-rc.d oracle-xe defaults 80 01
    (Save the file)
    Set appropriate execute privileges:
    chmod 755 /sbin/chkconfig
    Note: You should remove the /sbin/chkconfig file after successful installation of Oracle XE.
    h4. C.3. Install and configure Oracle XE
    sudo dpkg --install ./oracle-xe_11.2.0-1.5_amd64.deb
    /etc/init.d/oracle-xe configure
    (This will take a while)
    Remove the /sbin/chkconfig script, which is no longer needed.
    sudo rm /sbin/chkconfigh4. C.4. Relocate and Configure the Oracle user login
    The Oracle XE installer specifies /u01/app/oracle as the login directory for the Oracle user. Although not really necessary, the following will relocate the Oracle user $HOME to a standard location and create standard /etc/skel login files:
    Exit all Oracle user sessions:
    sudo /etc/init.d/oracle-xe stop
    sudo kill -9 `ps -ef | grep oracle | grep -v grep | awk '{print $2}'`
    sudo userdel oracle
    sudo useradd -s /bin/bash -G dba -g dba -m oracle
    sudo passwd oracle
    Verify:
    sudo id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba)h4. C.5. Setup Oracle environment variables
    In order to use sqlplus and other tools, the Oracle account requires certain environment variables. The following will set these variables automatically at every interactive Oracle login:
    sudo echo '. /u01/app/oracle/product/11.2.0/xe/bin/oracle_env.sh' >> /home/oracle/.bashrch4. C.6. Oracle sudo root access
    It is not essential to allow the Oracle user to use sudo, but it is convenient:
    usermod -G admin oracle
    Verify:
    id oracle
    -> uid=1001(oracle) gid=1001(dba) groups=1001(dba),120(admin)
    sudo su -
    -> Enter Oracle account passwordh4. C.7. Oracle 11g XE Post-installation
    After you install Oracle Database XE, its graphical user interface is only available from the local server, but not remotely.
    The following will correct the problem if necessary:
    Login as user Oracle or use:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following command:
    EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
    exith3. D) Unintstall, Reconfigure and Troubleshooting
    h4. D.1. Uninstall Oracle 11g XE
    The following will completely uninstall and remove Oracle 11g XE:
    Login as user root:
    sudo su -
    /etc/init.d/oracle-xe stop
    dpkg --purge oracle-xe
    rm -r /u01/app
    rm /etc/default/oracle-xe
    update-rc.d -f oracle-xe removeh4. D.2. Reconfigure Oracle 11g XE
    Type the following in a terminal window:
    /etc/init.d/oracle-xe stop
    sudo rm /etc/default/oracle-xe
    /etc/init.d/oracle-xe configureh4. D.3. Enable Archivelog mode and perform a database backup
    Login as user Oracle:
    su - oracle
    sqlplus / as sysdba
    At the SQL prompt, enter the following commands:
    shutdown immediate
    startup mount
    alter database archivelog;
    alter database open;
    exit
    Login to system console of the Oracle user account:
    Select Applications > Oracle Database 11g Express Edition > Backup Databaseh3. E) Notes
    h4. E.1. Oracle 11g XE limitiations overview
    - It will consume, at most, processing resources equivalent to one CPU.
    - Only one installation of Oracle Database XE can be performed on a single computer.
    - The maximum amount of user data in an Oracle Database XE database cannot exceed 11 GB.
    - The maximum amount of RAM that Oracle XE uses cannot exceed 1 GB, even if more is available.
    - HTTPS is not supported natively with the HTTP listener built into Oracle Database XE.
    h4. E.2. Documentation and Links
    Official documentation for Oracle 11gR2 XE can be found at:
    http://www.oracle.com/pls/xe112/homepage
    h4. E.3. Oracle 11g XE downloads
    The Installer is available from the Oracle Technology Network at:
    http://www.oracle.com/technology/products/database/xe
    http://www.oracle.com/technetwork/database/express-edition/downloads/index.html
    h4. E.4 APEX links and archives
    The APEX archives can be found at:
    http://www.oracle.com/technetwork/developer-tools/apex/application-express/all-archives-099381.html
    The APEX download site is:
    http://www.oracle.com/technetwork/developer-tools/apex/downloads/index.html
    h3. F) Troubleshooting
    ... in progress
    Regards and best of luck!
    Edited by: Dude on May 25, Version B: various corrections. chkconfig package (A.2.) not required.

    even though I am admin user.Admin user is a MS Windows term, that does not apply to Linux or Unix in the same fashion.
    The configuration script tells you "You must be root user to run the configure script. Login as root user and
    then run the configure script."
    This is most likely correct because your account is not root and does not have UID 0. What you can do is to login as root e.g. sudo su -, as the message suggest, or use "sudo /etc/init.d/oracle-xe configure", provided your account is defined in the /etc/sudoers file to perform root/admin actions.
    Btw, do not modify /etc/passwd and /etc/group to give you admin privileges or try to create a another root account under a different name. That's not the way it works and usually leads to nasty problems.

  • Error installing Oracle 9.02.0.1 on Linux

    I'm trying, without success, install Oracle on my personal computer (a stand-alone pc). I'm a beginning on Linux.
    When I run the runInstaller file, this occurs:
    Initializing Virtual Java Machine.............
    - X11TransSocketINETConnect: Can't get address will be CARIRI
    Exception in thread "main" java.lang.Internal Error: Can't connect you the X11 window server using 'CARIRI:0.0' the value of the variable DISPLAY.
    My setting are:
    Linux Conectiva 8.
    RAM 256 MB
    SWAP SPACE 900 MB (a temporary swap file)
    JRE 1.1.7
    hostname: CARIRI.localdomain
    As root I did this:
    cd /proc/sys/kernel
    echo 100 32000 100 100 > sem
    echo 2147483648 > shmmax
    echo 4096 > shmmni
    echo 2097152 > shmall
    echo >/proc/sys/fs/file-max
    ulimit -n 65536
    echo 1024 65000 > /proc/sys/net/ipv4/ip_local_port_range
    ulimit -u 16384
    I did the download of jdk 1.1.7 from http://www.blackdown.org and extracted in /usr/local/jdk117_v3. I don't know if this means that jdk was installed and how check this.
    ln -s/usr/local/jdk117_v3 /usr/local/java
    groupadd dba
    groupadd oinstall
    useradd -g oinstall -G dba -u 1007 oracle
    mkdir/opt/oracle
    mkdir/opt/oracle/product
    mkdir/opt/oracle/product/9.2.0
    chown -R oracle.oinstall/opt/oracle
    mkdir /var/opt/oracle
    chown oracle.dba /var/opt/oracle
    chmod 755 /var/opt/oracle
    # Oracle Environment
    export ORACLE_BASE=/opt/oracle
    export ORACLE_HOME=/opt/oracle/product/9.2.0
    export ORACLE_SID=orcl
    export ORACLE_TERM=xterm                (I don't know what this means, but whatever...)
    export TNS_ADMIN=$ORACLE_HOME/network/admin
    export NLS_LANG=AMERICAN;
    export ORA_NLS33=$ORACLE_HOME/ocommon/nls/admin/data
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib
    LD_LIBRARY_PATH=D_LIBRARY_PATH:/usr/local/lib
    export LD_LIBRARY_PATH
    # Set shell search paths export
    PATH=$PATH:$ORACLE_HOME/bin
    CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib
    CLASSPATH=$CLASSPATH:$ORACLE_HOME/network/jlib
    unset LANG
    su - oracle
    export DISPLAY=CARIRI:0.0
    cd /app/oracle/Disk1
    ./runInstaller
    Finally, the Linux was likely installed with problems on Video Card. I can use the KDE environment, but the colors are misadjusted. I don't know if this has some relation with the Oracle installation.
    Regards

    I started under xwindow and now it is working.
    Thanks,
    Flavio

  • Oracle 8.1.6 on Corel Linux

    Hello!
    Can`t install 8.1.6 on Corel Linux 1.0.
    The runInstaller can`t start. It terminates
    with an "Memory Access Failure". Do I have the wrong distribution?
    Monika

    Hi,
    I tried the same too. And got the installation to some way. But later realised that oracle needs glibc2.1. Corel Linux is running with glibc2.0.7(if I remember correctly). So, if u need to install oracle 8i u'll have to upgrade ur glibc to 2.1 or above.
    U can check which version of glibc u have by typing this command
    ls /lib/libc-*
    HTH
    Gopal

  • Install of oracle 8.1.6 on redhat linux

    i installed oracle 8.1.6 on redhat linux 7.0
    after installation while creating a default
    database it is taking lot of time,
    i tried to create one more database using database assistant it is also taking lot of time initialize i don't know how to set virtual memaory which we will set in win-nt
    please write me anyone who know the problem...
    null

    Dear:
    My English is bad, but I think you will understand me what I
    saying.I show what i did in my computer system.
    First: I download i386-glibc-2.1-linux.tar.bz2,
    readme.oracle8i from
    ftp://ftp.ca.kernel.org/pub/software/libs/glibc/hjl/sdk/2.1
    and
    Second : I read the file readme.oracle8i,and do what it
    said.
    It's ok to solve the problem.
    Good Luck.

  • Problems in Pro*C installation for Oracle 8.1.7 on Redhat Linux 6.2

    Hello,
    I have installed Oracle 8.1.7 on Redhat Linux 6.2. After installing Proc and doing necessary changes in pcscfg.cfg file. I tried to compile demo programs. But I am getting following error while compiling.
    Syntax error at line 368, column 19, file /usr/include/libio.h:
    Error at line 368, column 19 in file /usr/include/libio.h
    extern IOsize_t IOsgetn __P ((_IO_FILE *, void *, IOsize_t));
    ..................1
    PCC-S-02201, Encountered the symbol "_IO_sgetn" when expecting one of the follow
    ing:
    ; , = ( [
    The symbol ";" was substituted for "_IO_sgetn" to continue.
    I have tried changing paths, but still the error persists. If I do following change in sample file. The program is getting compiled.
    #ifndef ORA_PROC
    #include <stdio.h>
    #include <string.h>
    #include <stdlib.h>
    #include <sqlda.h>
    #include <sqlcpr.h>
    #endif
    Can anyone suggest how can I get successful compilation without ORA_PROC usage.
    Thanks & Best Regards,
    Swati Deval.

    Hello,
    I tried to install Oracle 8.1.7 on Redhat Linux WS 2.1 and here is the make.log
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome1
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome1/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome1/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome1/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome1/lib/libn8.a /home/oracle/OraHome1/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    Any idea?

  • ODBC connect to SQL Server 2005 from Oracle 10.2.0.3 32bit Linux

    I’m unable to establish a connection from Oracle 10.2.0.3 32bit Linux to SQL Server 2005.
    The ODBC driver is the 32bit DataDirect 5.3 drivers and when I do a status on the listener it does have a handler for SQLDB
    Any help is appreciated.
    Received the following error:
    SQL> select count(*) from columns@SQLDB;
    select count(*) from columns@SQLDB
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    [Generic Connectivity Using ODBC]DRV_InitTdp: DB_ODBC_INTERFACE (718): ; [C077]
    Could not find symbol 'SQLAllocConnect' in dynamic library
    DB_ODBC_INTERFACE (722): ; [C079] Failed to load dynamic library
    '/app/DataDirect/lib/libodbc.so'
    ORA-02063: preceding 3 lines from SQLDB
    -----Contents of trace file------------------
    Oracle Corporation --- THURSDAY JUL 10 2008 10:17:16.251
    Version 10.2.0.3.0
    hoagprd (2): ; hoagprd Entered.
    HOACONN.C (244): ; [Generic Connectivity Using ODBC] version: 4.8.2.0.0080
    HOACONN.C (288): ; Class version: 250
    hoagprd (2): ; hoagprd Exited with retcode = 0.
    hoainit (3): ; hoainit Entered.
    (0): ; connect string is: defTdpName=SQLDB;SYNTAX=(ORACLE8_HOA, BASED_ON=
    ORACLE8, IDENTIFIER_QUOTE_CHAR="", CASE_SENSITIVE=CASE_SENSITIVE_QUOTE);
    BINDING=<navobj><binding><datasources><datasource name='SQLDB' type='GENERIC_
    ODBC_FOR_HS' connect='SQLDB'><driverProperties/></datasource></datasources><
    remoteMachines/><environment><optimizer noFlattener='true'/><misc
    year2000Policy='-1' consumerApi='1' sessionBehavior='4'/><queryProcessor
    parserDepth='2000' tokenSize='1000' noInsertParameterization='true'
    noThreadedReadAhead='true' noCommandReuse='true'/><debug driverTrace='true'
    generalTrace='true'/></environment></binding></navobj>
    ORACLE GENERIC GATEWAY Log File Started at 2008-07-10T10:17:16
    hoainit (3): ; hoainit Exited with retcode = 0.
    hoalgon (7): ; hoalgon Entered. name = dbuser.
    sysbase.c (677): ; libodbcinst.so: cannot open shared object file: No such
    file or directory
    DB_ODBC_INTERFACE (718): ; [C077] Could not find symbol 'SQLAllocConnect' in
    dynamic library
    DB_ODBC_INTERFACE (722): ; [C079] Failed to load dynamic library '/app/
    DataDirect/lib/libodbc.so'
    DB_ODBC_INTERFACE (727): ; [C077] Could not find symbol 'SQLAllocConnect' in
    dynamic library
    DRV_InitTdp: DB_ODBC_INTERFACE (718): ; [C077] Could not find symbol '
    SQLAllocConnect' in dynamic library
    DB_ODBC_INTERFACE (722): ; [C079] Failed to load dynamic library '/app/
    DataDirect/lib/libodbc.so'
    nvRETURN (./drv_bind.c 230): -2220
    nvRETURN (./nav_bind.c 298): -2220
    hoalgon (7): ; hoalgon Exited with retcode = 28500.
    hoaexit (6): ; hoaexit Entered.
    hoaexit (6): ; hoaexit Exited with retcode = 0.
    (0): ; Closing log file at THU JUL 10 10:17:16 2008.
    --------------end of trace file ---------------
    --------TNS entry ----------
    SQLDB=
    (DESCRIPTION =
    (ADDRESS =(PROTOCOL = TCP)
    (Host = oracledbhost)
    (Port = 1521)
    (CONNECT_DATA = (SID =SQLDB)
    (HS=OK)
    -------Listener.ora entry----------
    (SID_DESC=
    (SID_NAME=SQLDB)
    (ORACLE_HOME=/app/oracle10g/product/10.2)
    (PROGRAM=hsodbc)
    -------initSQLDB.ora----------
    # This is a sample agent init file that contains the HS parameters that are
    # needed for an ODBC Agent.
    # HS init parameters
    HS_FDS_CONNECT_INFO = SQLDB
    HS_FDS_TRACE_LEVEL = 4
    HS_FDS_TRACE_FILE_NAME=/app/DataDirect/SQLDB.trc
    HS_FDS_SHAREABLE_NAME=/app/DataDirect/lib/libodbc.so
    # ODBC specific environment variables
    set ODBCINI=/app/DataDirect/odbc.ini
    ------odbc.ini entry------------
    [SQLDB]
    Driver=/app/DataDirect/lib/ivmsss23.so
    Description=DataDirect 5.2 SQL Server Wire Protocol
    Address=SQLServerhost,1401
    AlternateServers=
    AnsiNPW=Yes
    ConnectionRetryCount=0
    ConnectionRetryDelay=3
    Database=SQLServerDB
    LoadBalancing=0
    LogonID=
    Password=
    QuotedId=No
    SnapshotSerializable=0

    The error message is indicating problems loading the driver manager.
    A common issue on Linux (especially on Suse Linux) is related to library caching. First of all make sure you add the LD_LIBRARY_PATH to your listener.ora file to guarantee the correct libraries will be loaded. Your SID section will then look like:
    (SID_DESC=
    (SID_NAME=SQLDB)
    (ORACLE_HOME=/app/oracle10g/product/10.2)
    (ENVS=LD_LIBRARY_PATH=/app/oracle10g/product/10.2/lib:/app/DataDirect/lib)
    (PROGRAM=hsodbc)
    After changing the listener.ora file stop and start the listener.
    Details about the set up can be found in Metalink note:
    Note.264567.1 P216. How To Setup Generic Connectivity - HSODBC - on Linux
    If this does not help enable strace and check out from which location libodbc.so is being loaded.
    Please be also aware HSODBC has been desupported 15th of March. As you start a new project you should proceed with the follow up product DG4ODBC.

  • Where can I download Oracle 8.1.6 Client for Linux?

    I only found Oracle 8.1.6 Server for Linux on the download section of oracle.com, but I need the Client, to use with Cold Fusion Server 4.5.1 SP1 on my Linux box...
    Where can I get it?
    Thanks in advance.
    Marco Di Folco.
    [email protected]

    It is the same file, download it and when you run the installer it will ask you if you are installing th eclient or the server.
    Todd

  • Installation of Oracle 8.1.17 on Redhat Linux Enterprise Edition 2.4

    dear all
    I have tried to Oracle 8.1.17 on Redhat Linux Enterprise Edition 2.4 but it gives an error "Error in invoking target make file .."
    I tried using retries it failed each time to prorceed.
    I checked for my binutils ( binutils-2.14.90.0.4-26 ) but mine are higher than binutils-2.11.90.0.8-13.i386.rpm required ..
    do i need to down grade my binutils for 8.1.7
    abhi

    Hi Abhi!
    If I remember correctly (817 is stone age) the binutils used a strange debug flag in the 2.11.90.0.8-13 (something with -z).
    If this is not present in your newer version of the binutils the make will fail.
    Try downgrading the binutils during the installation.
    cu
    Andreas

  • I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0

    I met problem when installing Oracle 8.1.6 on Turbo Linux 7.0.
    After setting up environment variables, and successfully
    accessed KDE interface, everything was going on well.
    The process of installation blocked at 80% in "Database Creation
    Process" dialog window.
    I have tried two times and got the same result.
    The error message is:
    Warning: Cannot convert string "-*-Kochi Gothic-medium-r-normal-
    *-*100...
    Help!

    I have done some oracle installations over RedHat 7.0 (not certificated):
    Let's check some things:
    1- You must have changed very few parameters on your shm.h sem.h files which are in /usr/include/linux directory.
    2- You need to upgrade the glibc and libstdc libraries (.rpm)
    3- You must have installed the jre116_v5 on /usr/jre and made a symbolic link like this
    ln -s /usr/jre/jre116_v5 /usr/local/jre
    4- You must include in the CLASSPATH parameter the jre116_v5 directory. It should look something like this
    CLASSPATH=/usr/jre/jre116_v5:$ORACLE_HOME/jlib
    5- Be sure to create and export all the parameters in your .bash_profile.
    6- Run the ./runInstaller.sh in a terminal window inside the Xwindow.
    You can find the jre116_v5 in www.backdown.org
    I hope these tips help you
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by xx:
    Hi every body
    when I run ./runInstaller from cdrom
    I get this messages :
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre.Please wait ...
    Error in CreateOUIProcess ():-1
    : Bad Address
    I use JDK-1-1-6.
    Thx<HR></BLOCKQUOTE>
    null

  • Installing Oracle 8.1.7 on RedHat Linux WS 2.1

    Hello,
    I am trying to install Oracle 8.1.7 on Linux WS 2.1 and I am getting an error saying Error in invoking target ´ntcontab.o´ of makefile
    and if I try to ignore I am getting a whole of error along these lines .. Please let me know how to resolve this issue. see below for my make.log file
    Your help is highly appreciated!
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_net_client.mk nnfgt.o ORACLE_HOME =/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennfgt > nnfgt.c ;\
    cc -c nnfgt.c ;\
    rm -f /home/oracle/OraHome2/lib/nnfgt.o ;\
    mv nnfgt.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/nnfgt.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `nnfgt.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [nnfgt.o] Error 127
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome2/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    /usr/bin/make -f ins_precomp.mk links
    (cd /home/oracle/OraHome2/precomp/public ; rm -f SQLCA.H)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f ORACA.H)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f SQLDA.H)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f SQLCA.COB)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f ORACA.COB)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f SQLCA.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f ORACA.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f BNDDSC.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; rm -f SELDSC.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s sqlca.h SQLCA.H)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s oraca.h ORACA.H)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s sqlda.h SQLDA.H)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s sqlca.cob SQLCA.COB)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s oraca.cob ORACA.COB)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s sqlca.for SQLCA.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s oraca.for ORACA.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s bnddsc.for BNDDSC.FOR)
    (cd /home/oracle/OraHome2/precomp/public ; ln -s seldsc.for SELDSC.FOR)
    /usr/bin/make -f ins_net_client.mk nnfgt.o ORACLE_HOME =/home/oracle/OraHome2
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/gennfgt > nnfgt.c ;\
    cc -c nnfgt.c ;\
    rm -f /home/oracle/OraHome2/lib/nnfgt.o ;\
    mv nnfgt.o /home/oracle/OraHome2/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome2/lib/libn8.a /home/oracle/OraHome2/lib/nnfgt.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `nnfgt.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [nnfgt.o] Error 127
    /usr/bin/make -f ins_nau.mk nautab.o ORACLE_HOME=/home/oracle/OraHome2 NAU_ADAPTERS="KERBEROS5 IDENTIX SECURID RADIUS "
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome2/bin/genautab "KERBEROS5 IDENTIX SECURID RADIUS " > nautab.c ;\
    cc -c nautab.c ;\
    rm -f /home/oracle/OraHome2/lib/nautab.o ;\
    mv nautab.o /home/oracle/OraHome2/lib ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `nautab.o': No such file or directory
    make: *** [nautab.o] Error 1
    /usr/bin/make -f ins_rdbms.mk part_on ORACLE_HOME=/home/oracle/OraHome2
    /bin/sh: /usr/bin/ar: No such file or directory
    /usr/bin/ar cr /home/oracle/OraHome2/rdbms/lib/libknlopt.a /home/oracle/OraHome2/rdbms/lib/kkpoban.o
    make: /usr/bin/ar: Command not found
    make: *** [part_on] Error 127
    /usr/bin/make -f ins_rdbms.mk sdo_on ORACLE_HOME=/home/oracle/OraHome2
    /bin/sh: /usr/bin/ar: No such file or directory
    /usr/bin/ar cr /home/oracle/OraHome2/rdbms/lib/libknlopt.a /home/oracle/OraHome2/rdbms/lib/kxmwsd.o
    make: /usr/bin/ar: Command not found
    make: *** [sdo_on] Error 127
    /usr/bin/make -f ins_rdbms.mk ctx_on ORACLE_HOME=/home/oracle/OraHome2
    /bin/sh: /usr/bin/ar: No such file or directory
    /usr/bin/ar cr /home/oracle/OraHome2/rdbms/lib/libknlopt.a /home/oracle/OraHome2/rdbms/lib/kciwcx.o
    make: /usr/bin/ar: Command not found
    make: *** [ctx_on] Error 127
    /usr/bin/make -f ins_net_client.mk mkldflags ORACLE_HOME=/home/oracle/OraHome2
    /usr/bin/make -f ins_net_client.mk client_sharedlib ORACLE_HOME=/home/oracle/OraHome2
    /home/oracle/OraHome2/bin/genclntsh
    /home/oracle/OraHome2/bin/genclntsh: ld: command not found
    genclntst: error: could not locate /home/oracle/OraHome2/lib/clntsh.map
    please generate the client shared library first
    /home/oracle/OraHome2/bin/genagtsh /home/oracle/OraHome2/lib/libagtsh.so 1.0
    /home/oracle/OraHome2/bin/genagtsh: ld: command not found
    /usr/bin/make -f ins_sqlplus.mk install ORACLE_HOME=/home/oracle/OraHome2
    rm -f sqlplus
    Linking sqlplus
    rm -f sqlplus
    gcc -o sqlplus -L/home/oracle/OraHome2/sqlplus/lib/ -L/home/oracle/OraHome2/lib/ /home/oracle/OraHome2/sqlplus/lib/s0afimai.o -lsqlplus -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib -lm -lpthread `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -lpthread
    /bin/sh: gcc: command not found
    make: *** [sqlplus] Error 127
    /usr/bin/make -f ins_oemagent.mk install ORACLE_HOME=/home/oracle/OraHome2
    chmod 755 /home/oracle/OraHome2/bin
    gcc -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib -L/home/oracle/OraHome2/network/lib -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib -L/home/oracle/OraHome2/network/lib -o dbsnmp s0nmi.o -lclntsh -lvppdc \
    -lnmi -lnmd -lnms -lnmsp -lpeer \
    /home/oracle/OraHome2/network/lib/libtcl.a /home/oracle/OraHome2/rdbms/lib/defopt.o /home/oracle/OraHome2/rdbms/lib/ssdbaed.o -lclient8 \
    -ltrace8 -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib -lm `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -lcrypt -ldl -lm -lm
    /bin/sh: gcc: command not found
    make: *** [dbsnmp] Error 127
    /usr/bin/make -f ins_precomp.mk relink ORACLE_HOME=/home/oracle/OraHome2 EXENAME=ott
    Linking ott
    /bin/sh: gcc: command not found
    /bin/chmod: getting attributes of `ott': No such file or directory
    make: *** [ott] Error 1
    /usr/bin/make -f ins_net_client.mk install ORACLE_HOME=/home/oracle/OraHome2
    chmod 755 /home/oracle/OraHome2/bin
    /home/oracle/OraHome2/bin/echodo gcc -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib -L/home/oracle/OraHome2/network/lib -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib -L/home/oracle/OraHome2/network/lib -o trcasst /home/oracle/OraHome2/network/lib/s0nue.o -lntal8 \
    -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -lnonc8 -lnl8 -ln8 -lnlsnr8 -lnlsnrc8 -lnsgr8 -lnmd -lnms -lncm8 -lnmsp -lpeer -lnro8 -ln8 -ltrace8 -lnl8 -lnonc8 -lnlsnr8 -lnlsnrc8 -lnmd -lnms -lncm8 -lnmsp -ln8 -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib /home/oracle/OraHome2/rdbms/lib/defopt.o
    gcc -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib -L/home/oracle/OraHome2/network/lib -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib -L/home/oracle/OraHome2/network/lib -o trcasst /home/oracle/OraHome2/network/lib/s0nue.o -lntal8 -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -ldl -lm -lpthread -ldl -lm -lnonc8 -lnl8 -ln8 -lnlsnr8 -lnlsnrc8 -lnsgr8 -lnmd -lnms -lncm8 -lnmsp -lpeer -lnro8 -ln8 -ltrace8 -lnl8 -lnonc8 -lnlsnr8 -lnlsnrc8 -lnmd -lnms -lncm8 -lnmsp -ln8 -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib /home/oracle/OraHome2/rdbms/lib/defopt.o
    /home/oracle/OraHome2/bin/echodo: gcc: command not found
    make: *** [trcasst] Error 127
    /usr/bin/make -f ins_plsql.mk install ORACLE_HOME=/home/oracle/OraHome2
    chmod 755 /home/oracle/OraHome2/bin
    rm -f wrap
    Linking wrap
    gcc -o wrap -L/home/oracle/OraHome2/plsql/lib/ -L/home/oracle/OraHome2/lib/ /home/oracle/OraHome2/plsql/lib/s0plsw.o -lpsa8 -lpls8 -lplp8 -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm /home/oracle/OraHome2/lib/libplc8.a -lpls8 -lclient8 -lnl8 -lnro8 -ln8 /home/oracle/OraHome2/rdbms/lib/kpudfo.o -lmm -ltrace8 -lgeneric8 -lcommon8 -lslax8 -lcore8 -lnls8 -ldbicx8 -lcore8 -lsql8 `cat /home/oracle/OraHome2/lib/sysliblist` -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib -lm `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm
    /bin/sh: gcc: command not found
    make: *** [wrap] Error 127
    /usr/bin/make -f ins_ldap.mk toolsinstall ORACLE_HOME=/home/oracle/OraHome2
    rm -f ldapadd ldapbind ldapcompare ldapdelete ldapmodify ldapsearch ldapmoddn ldifwrite oidpasswd oidreconcile ldapaddmt ldapmodifymt
    rm -f datagen bulkmodify
    Building client shared library libclntsh.so ...
    Call script /home/oracle/OraHome2/bin/genclntsh ...
    /home/oracle/OraHome2/bin/genclntsh
    /home/oracle/OraHome2/bin/genclntsh: ld: command not found
    genclntst: error: could not locate /home/oracle/OraHome2/lib/clntsh.map
    please generate the client shared library first
    Built /home/oracle/OraHome2/lib/libclntsh.so ... DONE
    gcc -o ldapadd -L/home/oracle/OraHome2/ldap/lib/ -L/home/oracle/OraHome2/lib/ -o ldapadd -L/home/oracle/OraHome2/ldap/lib/ -L/home/oracle/OraHome2/lib/ /home/oracle/OraHome2/ldap/lib/s0gslmod.o -lncrypt8 -lldapclnt8 -lncrypt8 -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    /bin/sh: gcc: command not found
    make: *** [ldapadd] Error 127
    /usr/bin/make -f ins_net_server.mk install ORACLE_HOME=/home/oracle/OraHome2
    chmod 755 /home/oracle/OraHome2/bin
    /home/oracle/OraHome2/bin/echodo gcc -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib/ -L/home/oracle/OraHome2/network/lib/ -Wl,-rpath,/home/oracle/OraHome2/lib -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib/ -L/home/oracle/OraHome2/network/lib/ -o tnslsnr /home/oracle/OraHome2/network/lib/s0nsgl.o /home/oracle/OraHome2/network/lib/snsglp.o \
    -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -lnonc8 -lnl8 -ln8 -lnlsnr8 -lnlsnrc8 -lnsgr8 -lnmd -lnms -lncm8 -lnmsp -lpeer -lnro8 -ln8 -ltrace8 -lnl8 -lnonc8 -lnlsnr8 -lnlsnrc8 -lnmd -lnms -lncm8 -lnmsp -ln8 -lpeer -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    gcc -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib/ -L/home/oracle/OraHome2/network/lib/ -Wl,-rpath,/home/oracle/OraHome2/lib -L/home/oracle/OraHome2/lib/ -L/home/oracle/OraHome2/rdbms/lib/ -L/home/oracle/OraHome2/network/lib/ -o tnslsnr /home/oracle/OraHome2/network/lib/s0nsgl.o /home/oracle/OraHome2/network/lib/snsglp.o -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -ldl -lm -lpthread -ldl -lm -lnonc8 -lnl8 -ln8 -lnlsnr8 -lnlsnrc8 -lnsgr8 -lnmd -lnms -lncm8 -lnmsp -lpeer -lnro8 -ln8 -ltrace8 -lnl8 -lnonc8 -lnlsnr8 -lnlsnrc8 -lnmd -lnms -lncm8 -lnmsp -ln8 -lpeer -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    /home/oracle/OraHome2/bin/echodo: gcc: command not found
    make: *** [tnslsnr] Error 127
    /usr/bin/make -f ins_rdbms.mk install ORACLE_HOME=/home/oracle/OraHome2
    chmod 755 /home/oracle/OraHome2/bin
    rm -f oracle mig dbv tstshm maxmem orapwd dbfsize cursize svrmgrl extproc hsalloci hsots hsdepxa osh sbttest imp exp sqlldr rman kgmgr loadpsp /home/oracle/OraHome2/rdbms/lib/ksms.s /home/oracle/OraHome2/rdbms/lib/ksms.o
    rm -f /home/oracle/OraHome2/rdbms/lib/nmliblist
    /bin/sh: /usr/bin/ar: No such file or directory
    /bin/sh: cc: command not found
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [home/oracle/OraHome2/rdbms/lib/config.o] Error 127
    /usr/bin/make -f ins_nau.mk install ORACLE_HOME=/home/oracle/OraHome2
    chmod 755 /home/oracle/OraHome2/bin
    rm -f oklist okinit okdstry
    /home/oracle/OraHome2/bin/echodo gcc -o oklist -L/home/oracle/OraHome2/network/lib/ -L/home/oracle/OraHome2/lib/ -o oklist -L/home/oracle/OraHome2/network/lib/ -L/home/oracle/OraHome2/lib/ -o oklist snauk5pt.o s0nauk5l.o nauk5zl.o -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    gcc -o oklist -L/home/oracle/OraHome2/network/lib/ -L/home/oracle/OraHome2/lib/ -o oklist -L/home/oracle/OraHome2/network/lib/ -L/home/oracle/OraHome2/lib/ -o oklist snauk5pt.o s0nauk5l.o nauk5zl.o -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 -lnbeq8 -lnhost8 -ln8 -lncrypt8 -lnidx8 -ln8 -lncrypt8 -lnus8 -ln8 -lncrypt8 -lnk58 -ln8 -lncrypt8 -lnldap8 -lldapclnt8 -lnsslb8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnoname8 -ln8 -lncrypt8 -lnrad8 -ln8 -lncrypt8 -ln8 -lncrypt8 -lnsid8 -ln8 -lncrypt8 -lntcp8 -lntcps8 -lnsslb8 -lnent8 -lntcp8 -lntns8 -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -ldl -lm -lpthread -ldl -lm -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    /home/oracle/OraHome2/bin/echodo: gcc: command not found
    make: *** [oklist] Error 127
    /usr/bin/make -f ins_otrace.mk install ORACLE_HOME=/home/oracle/OraHome2
    - Linking otrcfmt
    rm -f otrcfmt;
    gcc -o otrcfmt -L/home/oracle/OraHome2/otrace/lib/ -L/home/oracle/OraHome2/lib/ -o otrcfmt -L/home/oracle/OraHome2/otrace/lib/ -L/home/oracle/OraHome2/lib/ /home/oracle/OraHome2/otrace/lib/otrcfmt.o -ltracefe8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 \
    `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -ltracept8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 /home/oracle/OraHome2/rdbms/lib/defopt.o \
    -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm /home/oracle/OraHome2/rdbms/lib/libknlopt.a -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    /bin/sh: gcc: command not found
    make: *** [otrcfmt] Error 127
    /usr/bin/make -f ins_rdbms.mk utilities ORACLE_HOME=/home/oracle/OraHome2
    - Linking Import utility (imp)
    rm -f /home/oracle/OraHome2/rdbms/lib/imp
    gcc -o /home/oracle/OraHome2/rdbms/lib/imp -L/home/oracle/OraHome2/rdbms/lib/ -L/home/oracle/OraHome2/lib/ /home/oracle/OraHome2/rdbms/lib/impdrv.o /home/oracle/OraHome2/rdbms/lib/ssdbaed.o /home/oracle/OraHome2/rdbms/lib/defopt.o /home/oracle/OraHome2/rdbms/lib/libdbtools8.a -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` `if [ -f /usr/lib/libsched.so ] ; then echo -lsched ; else true; fi` -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib -lm `cat /home/oracle/OraHome2/lib/sysliblist` `if [ -f /usr/lib/libsched.so ] ; then echo -lsched ; else true; fi` -ldl -lm -ldl `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lsql8 -lsql8
    /bin/sh: gcc: command not found
    make: *** [home/oracle/OraHome2/rdbms/lib/imp] Error 127
    /usr/bin/make -f ins_rdbms.mk ioracle ORACLE_HOME=/home/oracle/OraHome2
    /bin/sh: cc: command not found
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [home/oracle/OraHome2/rdbms/lib/config.o] Error 127
    /usr/bin/make -f ins_ctx.mk install ORACLE_HOME=/home/oracle/OraHome2
    gcc -o ctxload -L/home/oracle/OraHome2/ctx/lib/ -L/home/oracle/OraHome2/lib/ -o ctxload -L/home/oracle/OraHome2/ctx/lib/ -L/home/oracle/OraHome2/lib/ drz.o -lctxs8 -lctx8 -lzx8 -lgx8 -lctx8 -lzx8 -lgx8 /home/oracle/OraHome2/rdbms/lib/defopt.o -lclntsh /home/oracle/OraHome2/rdbms/lib/kpuadef.o `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lwtc8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `cat /home/oracle/OraHome2/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtc8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /home/oracle/OraHome2/lib/sysliblist` -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib -lm `cat /home/oracle/OraHome2/lib/sysliblist` -ldl -lm -Wl,-rpath,/home/oracle/OraHome2/lib:/lib:/usr/lib
    /bin/sh: gcc: command not found
    make: *** [ctxload] Error 127

    Hello,
    I tried to install Oracle 8.1.7 on Redhat Linux WS 2.1 and here is the make.log
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/home/oracle/OraHome1
    (if [ "compile" = "compile" ] ; then \
    /home/oracle/OraHome1/bin/gennttab > ntcontab.c ;\
    cc -c ntcontab.c ;\
    rm -f /home/oracle/OraHome1/lib/ntcontab.o ;\
    mv ntcontab.o /home/oracle/OraHome1/lib ;\
    /usr/bin/ar rv /home/oracle/OraHome1/lib/libn8.a /home/oracle/OraHome1/lib/ntcontab.o ; fi)
    /bin/sh: cc: command not found
    mv: cannot stat `ntcontab.o': No such file or directory
    /bin/sh: /usr/bin/ar: No such file or directory
    make: *** [ntcontab.o] Error 127
    Any idea?

  • Oracle 8.1.7.3 on Linux 7.2 linking problem.

    I am installing Oracle 8.1.7.3 on Linux.
    I successfully get the installer to run and can install Oracle.
    However, when I perform the link part of the install it fails.
    I am following the procedure of changing the compatibility libraries for Linux.
    I think the reason the link fails is because /usr/i386-glibc21-linux/bin/i386-glibc21-linux-env.sh doesn't exist.
    Where does this script come from ?

    I don't remember excet, something like compat*--, but you can find it. In RedHat installation dir (where *.rpm are stored) use this command:
    rpm -qpil *.rpm | grep -A N -B N <filename> | more\
    Change N and you will see all information (package name, files in it) about rpm. May be it's not a best way, but I always use this command to find something in rpms.

  • How to install oracle 11g and 10g on same linux server.

    how can i install oracle 10g and 11g on same linux server ????
    10g database is already installed , i want to installed 11g on the same machine. How can i do this???

    Hi;
    how can i install oracle 10g and 11g on same linux server ????
    10g database is already installed , i want to installed 11g on the same machine. How can i do this???You may go wiht different mount point like to create /oracle11g and /oracle10g and you can choose related path for your installation.
    Please read:
    Managing multiple oracle home
    http://docs.oracle.com/cd/B12037_01/em.101/b12140/3_oui_oracle_homes.htm#i1005615
    http://docs.oracle.com/cd/B12037_01/em.101/b12140/3_oui_oracle_homes.htm
    Regard
    Helios

Maybe you are looking for

  • Changed computer platforms and want to sync with itunes on my new mac

    I have had an iphone for about 8 months and had a Dell pc which I used to sync the phone with itunes. Just purchased my imac and have been trying to transfer my iphone contacts, addresses, music, photos, etc and my ipod music to the mac computer itun

  • System copy from SAP R/3 47x110 with Oracle 10.2 to Oracle 11.2

    Hello, I want to do a system copy from SAP R/3 4.7 Enterprise 47x110 with Oracle 10.2 to a new machine with same SAP version but with oracle 11.2. (After this I will upgrade to ERP 6.0) I will do this with export/import but I don't find any documenta

  • Where does form execution continue after executing NEW-FORM-INSTANCE triggr

    I am debugging a form and trying to find where a certain Procedure is being called. I'm unable to locate the procedure by searching in the "Find and Replace in Program Units". I cannot execute the form in Debug mode because of the Oracle environment.

  • No sound signal into the film

    Hello, everyone I am using iMac i52.8 RAM 12g, I recently editing canon 5d movie, found that more than 2 minutes movie clip audio signal loss will occur, but the original film with Quick Time Preview is normal, the film into Premiere Pro CS5.5.2 edit

  • Wrong Xorg resolution+wicd error.

    Hey fellas. I'm kidna new in arch. I got my system up and running with kde 4.3 but yet I'm having a few issues. 1. The system doesn't detect the correct screen resolution. it's a 1280x800 screen toshiba laptop with intel X4500mhd. I've tried tweaking