9i installation on Mandrake 8.1

Hi everyone!
I'm trying to install 9i DB on Mandrake Linux 8.1 and it gives an
error when tries to make ins_plsql.mk.
I changed to that directory and mtried to make it by hand:
[oracle@tux lib]$ make -f ins_plsql.mk
Building client shared library libclntsh.so ...
Call script /mnt/part1/oracle/product/9.0.1/bin/genclntsh ...
/mnt/part1/oracle/product/9.0.1/bin/genclntsh
/mnt/part1/oracle/product/9.0.1/lib/libgeneric9.a(skgfr.o): In
function `skgfrpini':
skgfr.o(.text+0x125): undefined reference to `__cmpdi2'
/lib/libc.so.6: undefined reference to `_dl_lazy@GLIBC_2.1.1'
/lib/libc.so.6: undefined reference to
`_dl_dst_substitute@GLIBC_2.1.1'
/lib/libc.so.6: undefined reference to `_dl_out_of_memory@GLIBC_2.2'
/lib/libc.so.6: undefined reference to
`_dl_relocate_object@GLIBC_2.0'
/lib/libc.so.6: undefined reference to `_dl_clktck@GLIBC_2.2'
/lib/libc.so.6: undefined reference to
`__libc_enable_secure@GLIBC_2.0'
/lib/libc.so.6: undefined reference to `_dl_catch_error@GLIBC_2.0'
/lib/libc.so.6: undefined reference to `_dl_platformlen@GLIBC_2.1.1'
/lib/libc.so.6: undefined reference to
`_dl_lookup_versioned_symbol_skip@GLIBC_2.0'
/lib/libc.so.6: undefined reference to
`_dl_lookup_versioned_symbol@GLIBC_2.0'
/lib/libc.so.6: undefined reference to `_dl_mcount@GLIBC_2.1'
Is this a glibc problem?
Any ideas?
Thank you for your help!
Jorge

Hola Jorge.
Asumo que hablas espaqol :). Yo me encontre con el mismo
problema pero en Red Hat 7.1. Definitivamente es un problema con
la glibc. Tanto Mandrake 8.1 y Redhat 7.* traen una glibc mas
nueva (glibc-2.*.*.). Las versiones anteriores como Mandrake 7.2
que trane la glibc-2.1.3 no tiene este problema. Para comprobar
esto puedes ver que Oracle tiene un "work-around" pero para la
version de Oracle 8.1.*.*. Baja el tar de la glibc que esta en
ese mismo directorio y comprobaras lo que te digo.
Para la version 9 de Oracle no he sabido nada todavia, yo por lo
tanto sigo tratando de encontrar un Work-around para esto. Si
sabes algo por favor avisame.
Saludos.
Alejandro.

Similar Messages

  • Oracle 8.1.7 installation on Mandrake 8.1 (New)

    Has anybody tried installing ORACLE 8.1.7 on the new release
    Mandrake 8.1 distro? I did try to install but it freezes at
    start of installer, though it worked perfectly with the earlier
    distro (mandrake 8.0)
    any comments or suggestions ?

    You can try the oracle9i solution to the link problem and see if it fixes the 8i link problem. It can't hurt to try and it only takes a second. See the following url and look at the 9i on 8.1 instructions. There is a section about a link error on disk two. This fix may work in 8.1.6 as well. Please let me know if it works. I can make a note in my page.
    http://members.home.net/joseph.j.flynn/oracle.htm

  • Oracle 8.1.7 installation on Mandrake 9.2 Linux

    Hello Oracle Linux experts,
    I've got problem with installation of Oracle 8.1.7 on Mandrake 9.2 linux... I know that Mandrake not certified for running Oracle 8i - but may be someone could help ? I managed to install it successfully on 8.x and 9.0 versions
    of Mandrake - but 9.2 (currently installed one giving me problems). I could finish the installation - but unfortunately not all oracle modules (including oracle binary) built successfully. And I've got some errors on a linking stage (even if I run setup_stubs.sh - and according to log file generated by this script all modules have been rebuild) Any suggestions ? Am I missing something ? This are the steps that I was using for Mandrake 9.0 and now I am trying the same ones on 9.2:
    ---cut---
    This is what I've done:
    1. Create oracle installation account (in my case 'ora817' and use 'dba' as primary group) As shell for this account I used 'bash'
    2. Create all required directory structure for Oracle installation i.e.
    ORACLE_BASE=/apps/ora_817
    ORACLE_HOME=${ORACLE_BASE}/product/8.1.7
    3. In home directory of ora817 use create / update file .bash_profile:
    ---.bash_profile---
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
    . ~/.bashrc
    fi
    # User specific environment and startup programs
    # PATH=$PATH:$HOME/bin
    # export PATH
    # unset USERNAME
    JAVA_HOME=/usr/local/java; export JAVA_HOME
    ORACLE_BASE=/apps/ora_817; export ORACLE_BASE
    ORACLE_HOME=${ORACLE_BASE}/product/8.1.7; export ORACLE_HOME
    PATH=${PATH}:${ORACLE_HOME}/bin; export PATH
    if [${LD_LIBRARY_PATH} == ""]
    then
    LD_LIBRARY_PATH=${ORACLE_HOME}/lib:/usr/lib:/usr/local/lib
    else
    LD_LIBRARY_PATH=${ORACLE_HOME}/lib:${LD_LIBRARY_PATH}
    fi
    export LD_LIBRARY_PATH
    export LD_ASSUME_KERNEL=2.2.5
    umask 002
    unset LANG
    unset LANGUAGE
    ---.bash_profile---
    4. Update / create .bashrc file in the same directory:
    ---.bashrc---
    # .bashrc
    # User specific aliases and functions
    # Source global definitions
    if [ -f /etc/bashrc ]; then
    . /etc/bashrc
    fi
    unset LANG
    unset LANGUAGE
    unset LC_MONETARY
    unset LC_NUMERIC
    unset LC_MESSAGES
    unset LC_COLLATE
    unset LC_CTYPE
    unset LC_TIME
    unset NLS_LANG
    ---.bashrc---
    Then you would have to logout and login back so that changes take place and that's it - your Oracle Universal Installer will start !!!
    Few other notes:
    Before installation you would have to make sure that you got Java JDK-1.1.8 - file should be called:
    jdk118_v3-glibc-2.1.3.tar.bz2
    You could find it on the net.
    During installation there will be step when you would have to run file $ORACLE_HOME/root.sh - make sure that you edit this file before execution:
    Line 102:
    RMF=/bin/rm -f
    is changed into
    RMF="/bin/rm -f"
    and line 156
    RUID=`/usr/bin/id|$AWK -F\( '{print $2}'|$AWK -F\) '{print $1}`
    is changed into
    RUID=`/bin/id|$AWK -F\( '{print $2}'|$AWK -F\) '{print $1}'`
    Please note that id command in Mandrake 9.0 linux located in /bin directory and not in /usr/bin !
    Also path for 'sed' module should be changed from /usr/local/bin to just /bin
    After installation I suggest to unset LD_ASSUME_KERNEL
    env variable and install and run glibc-2.1.3-stubs.tar.gz package that will relink modules for use with newer version of glibc. Copy this package to $ORACLE_HOME directory, untar it - i.e.
    tar -xvzf ./glibc-2.1.3-stubs.tar.gzand then run ./setup_stubs.sh script. (make sure that you do so by the same user that was used during oracle installation)
    This file you could get from oracle OTN web site.
    ---cut---
    Regards,
    Alex

    Just some additional information - I think that I found the problem - but no solution so far:
    When I am trying to rebuild (relink) oracle (using relink script from $ORACLE_HOME/bin - it worked for all other options apart from 'oracle' and as a result oracle binary in
    $ORACLE_HOME/bin is missing....) this is kind of error that I've got:
    ---cut---
    - Linking Oracle
    rm -f /apps/oracle/product/8.1.7/rdbms/lib/oracle
    gcc -o /apps/oracle/product/8.1.7/rdbms/lib/oracle -L/apps/oracle/product/8.1.7/rdbms/lib/ -L/apps/oracle/product/8.1.7/lib/ -L/apps/oracle/product/8.1.7/lib//stubs/ -Wl,-E /apps/oracle/product/8.1.7/rdbms/lib/opimai.o /apps/oracle/product/8.1.7/rdbms/lib/ssoraed.o /apps/oracle/product/8.1.7/rdbms/lib/ttcsoi.o /apps/oracle/product/8.1.7/rdbms/lib/kpuasvr.o /apps/oracle/product/8.1.7/lib/nautab.o /apps/oracle/product/8.1.7/lib/naeet.o /apps/oracle/product/8.1.7/lib/naect.o /apps/oracle/product/8.1.7/lib/naedhs.o /apps/oracle/product/8.1.7/rdbms/lib/config.o -lserver8 -lskgxp8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 /apps/oracle/product/8.1.7/rdbms/lib/defopt.o -lknlopt -lslax8 -lpls8 -lplp8 -lserver8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -lknlopt -lslax8 -lpls8 -lplp8 `cat /apps/oracle/product/8.1.7/rdbms/lib/nmliblist` -ldbicx8 -ldbicx8 -ljox8 -lserver8 -lwwg8 -lobk `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -lmm -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -ltrace8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lclient8 -lvsn8 -lwtcserver8 -lcommon8 -lgeneric8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 -lserver8 `if /usr/bin/ar tv /apps/oracle/product/8.1.7/rdbms/lib/libknlopt.a | grep "kxmnsd.o" > /dev/null 2>&1 ; then echo " " ; else echo "-lordsdo8"; fi` -lordts8 -lctxc8 -lctx8 -lzx8 -lgx8 -lctx8 -lzx8 -lgx8 -lordvirt8 -lnls8 -lcore8 -lnls8 -lcore8 -lnls8 `cat /apps/oracle/product/8.1.7/lib/sysliblist` `if [ -f /usr/lib/libsched.so ] ; then echo -lsched ; else true; fi` -Wl,-rpath,/apps/oracle/product/8.1.7/lib:/lib:/usr/lib -lm `cat /apps/oracle/product/8.1.7/lib/sysliblist` `if [ -f /usr/lib/libsched.so ] ; then echo -lsched ; else true; fi` -ldl -lm -ldl `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lnro8 `sed -e 's/-ljava//g' /apps/oracle/product/8.1.7/lib/ldflags` -lnsgr8 -lnzjs8 -ln8 -lnl8 -lsql8 -lsql8
    /usr//bin/ld: /apps/oracle/product/8.1.7/rdbms/lib/oracle: hidden symbol `__fixunssfdi' in /usr//bin/../lib/gcc-lib/i586-mandrake-linux-gnu/3.3.1/libgcc.a(_fixunssfdi.oS) is referenced by DSO
    collect2: ld returned 1 exit status
    make: *** [apps/oracle/product/8.1.7/rdbms/lib/oracle] Error 1
    ---cut---
    Any comments ?

  • Mandrake

    hey all
    i have found an easy installer called mandrake and it has auto partitoning would that erase windows xp home if i did linux in madnrake auto partition? :?:

    You'll probably get better answers relating to Mandrake/Mandriva from their own forums.  I'd suggest trying one of these:
    http://forum.mandrivaclub.com/index.php?op=Int
    http://www.mandrakeusers.org/

  • Installing SunOne Appserver 8 on Trustix

    If possible, I would like to install SunOne Appserver 8 on a Linux server running Truxtix 2.0. This is a Redhat-based distribution, but it does not have XFree86 installed. I followed the instructions given in another topic regarding installation on Mandrake 10 - unzipped the download bundle in a temporary directory, changed some permissions and executed:
    package/jre/bin/java -cp .:package/PackageFormat.jar -Xmx256m appservI got an error:
    java.lang.UnsatisfiedLinkError: /home/users/andy/temp/package/jre/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
    This is most likely because X11 is not installed.
    The instructions say that you can add the "-console" option to run the installer without the GUI. I tried that but got the same error.
    Is it possible to install SunONE Appserver 8 on a server that does not have X11 installed, and manage it using just the config files and/or Web-based admin toosl?
    Thanks.
    Andy Seila

    Thank you for your help!
    I had tried running the <distribution_name> -console command, and got an error indicating that the libs needed to uncompress the binary package and start the installation could not be found. I found a fix to this problem in an earler post.
    I tried your other suggestion:
    package/jre/bin/java -cp .:package/PackageFormat.jar -Djava.awt.headless=true -Djava.library.path=package appserv -nodisplay
    and got the following error:
    Unexpected Signal : 11 occurred at PC=0x40417B05
    Function=(null)+0x40417B05
    Library=/home/users/andy/temp/package/jre/lib/i386/client/libjvm.so
    NOTE: We are unable to locate the function name symbol for the error
    just occurred. Please refer to release documentation for possible
    reason and solutions.
    Current Java thread:
    at java.lang.StringBuffer.<init>(StringBuffer.java:115)
    at java.lang.StringBuffer.<init>(StringBuffer.java:103)
    at com.sun.wizards.core.ArchiveReader.callObjectMethod(ArchiveReader.java:1378)
    at com.sun.wizards.core.ArchiveReader.registerClasses(ArchiveReader.java:1145)
    at com.sun.wizards.core.ArchiveReader.<init>(ArchiveReader.java:125)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
    at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
    at appserv.instantiateArchiveReader(ArchiveClassLoader.java:203)
    at appserv.<init>(ArchiveClassLoader.java:143)
    at appserv.main(ArchiveClassLoader.java:1271)
    Dynamic libraries:
    08048000-0804e000 r-xp 00000000 08:06 79897 /home/users/andy/temp/package/jre/bin/java
    0804e000-0804f000 rw-p 00005000 08:06 79897 /home/users/andy/temp/package/jre/bin/java
    40000000-40014000 r-xp 00000000 08:03 3918 /lib/ld-2.3.2.so
    40014000-40015000 rw-p 00013000 08:03 3918 /lib/ld-2.3.2.so
    40016000-4001a000 rw-s 00000000 08:03 19128 /tmp/hsperfdata_andy/17731
    4001a000-40027000 r-xp 00000000 08:03 3936 /lib/libpthread-0.10.so
    40027000-40028000 rw-p 0000d000 08:03 3936 /lib/libpthread-0.10.so
    4006a000-4006c000 r-xp 00000000 08:03 3923 /lib/libdl-2.3.2.so
    4006c000-4006d000 rw-p 00001000 08:03 3923 /lib/libdl-2.3.2.so
    4006d000-40191000 r-xp 00000000 08:03 41 /lib/libc-2.3.2.so
    40191000-40195000 rw-p 00124000 08:03 41 /lib/libc-2.3.2.so
    40198000-40593000 r-xp 00000000 08:06 79758 /home/users/andy/temp/package/jre/lib/i386/client/libjvm.so
    40593000-405ae000 rw-p 003fa000 08:06 79758 /home/users/andy/temp/package/jre/lib/i386/client/libjvm.so
    405c1000-405d2000 r-xp 00000000 08:03 3928 /lib/libnsl-2.3.2.so
    405d2000-405d3000 rw-p 00010000 08:03 3928 /lib/libnsl-2.3.2.so
    405d5000-405f7000 r-xp 00000000 08:03 3925 /lib/libm-2.3.2.so
    405f7000-405f8000 rw-p 00021000 08:03 3925 /lib/libm-2.3.2.so
    405f8000-40600000 r-xp 00000000 08:06 79780 /home/users/andy/temp/package/jre/lib/i386/native_threads/libhpi.so
    40600000-40601000 rw-p 00007000 08:06 79780 /home/users/andy/temp/package/jre/lib/i386/native_threads/libhpi.so
    40601000-4060a000 r-xp 00000000 08:03 3931 /lib/libnss_files-2.3.2.so
    4060a000-4060b000 rw-p 00008000 08:03 3931 /lib/libnss_files-2.3.2.so
    4060b000-4061b000 r-xp 00000000 08:06 79778 /home/users/andy/temp/package/jre/lib/i386/libverify.so
    4061b000-4061d000 rw-p 0000f000 08:06 79778 /home/users/andy/temp/package/jre/lib/i386/libverify.so
    4061d000-4063d000 r-xp 00000000 08:06 79772 /home/users/andy/temp/package/jre/lib/i386/libjava.so
    4063d000-4063f000 rw-p 0001f000 08:06 79772 /home/users/andy/temp/package/jre/lib/i386/libjava.so
    4063f000-40653000 r-xp 00000000 08:06 79773 /home/users/andy/temp/package/jre/lib/i386/libzip.so
    40653000-40656000 rw-p 00013000 08:06 79773 /home/users/andy/temp/package/jre/lib/i386/libzip.so
    40656000-41ff6000 r--s 00000000 08:06 79797 /home/users/andy/temp/package/jre/lib/rt.jar
    42040000-42056000 r--s 00000000 08:06 79847 /home/users/andy/temp/package/jre/lib/sunrsasign.jar
    42056000-42131000 r--s 00000000 08:06 79816 /home/users/andy/temp/package/jre/lib/jsse.jar
    42131000-42142000 r--s 00000000 08:06 79851 /home/users/andy/temp/package/jre/lib/jce.jar
    42142000-4269b000 r--s 00000000 08:06 79835 /home/users/andy/temp/package/jre/lib/charsets.jar
    44743000-44746000 r--s 00000000 08:06 79815 /home/users/andy/temp/package/jre/lib/ext/dnsns.jar
    4c7d0000-4c7ec000 r--s 00000000 08:06 79812 /home/users/andy/temp/package/jre/lib/ext/sunjce_provider.jar
    4c7ec000-4c7f9000 r--s 00000000 08:06 79813 /home/users/andy/temp/package/jre/lib/ext/ldapsec.jar
    4c7f9000-4c8b5000 r--s 00000000 08:06 79814 /home/users/andy/temp/package/jre/lib/ext/localedata.jar
    Heap at VM Abort:
    Heap
    def new generation total 576K, used 63K [0x44750000, 0x447f0000, 0x44c30000)
    eden space 512K, 0% used [0x44750000, 0x44750000, 0x447d0000)
    from space 64K, 99% used [0x447e0000, 0x447efff0, 0x447f0000)
    to space 64K, 0% used [0x447d0000, 0x447d0000, 0x447e0000)
    tenured generation total 24936K, used 24853K [0x44c30000, 0x4648a000, 0x48750000)
    the space 24936K, 99% used [0x44c30000, 0x46475568, 0x44deb200, 0x4648a000)
    compacting perm gen total 4096K, used 1135K [0x48750000, 0x48b50000, 0x4c750000)
    the space 4096K, 27% used [0x48750000, 0x4886bd48, 0x48830000, 0x48b50000)
    Local Time = Sun May 30 14:25:10 2004
    Elapsed Time = 1
    # HotSpot Virtual Machine Error : 11
    # Error ID : 4F530E43505002EF
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Client VM (1.4.2_04-b04 mixed mode)
    # An error report file has been saved as hs_err_pid17731.log.
    # Please refer to the file for further information.
    I'm not sure what is going on here.
    Is there a place where all of the command line options for this installation are detailed?
    Thanks again.
    Andy Seila

  • Installation problem with Oracle 8.1.7 on Mandrake 8.1

    Hi all,
    I am trying to install Oracle 8.1.7 (Rel 3) on Mandrake Linux 8.1. I changed all the parameters, tested everything, created the users (oracle & apache) and groups (oinstall & dba) as per the documentation. I downloaded the Oracle's "tar" file from the Oracle's web site. I unzipped that in "/shared" directory on my PC. I changed to "/shared/Disk1" directory and gave "./runInstaller". A window is opening with the following buttons.
    About
    Deinstall products
    Exit
    Help
    Installed products
    Previous (disabled)
    Next
    Only "About" and "Deinstall products" buttons are working. None of the other buttons are working. When I press "Next" nothing is happening.
    Could anybody help with this problem. I really appreciate it.
    Thank you very much in advance,
    Murali.

    Hi all,
    This problem got solved. Its very silly thing. Number lock should be off, when you are running Oracle Installer. It worked for me. (This is for Mandrake Linux 8.1)
    Regards,
    Murali.

  • Mandrake Linux 8.0 - can't get Oracle Universal Installer to run

    Hi all.
    I'm having trouble getting Oracle's Universal Installer to run.
    I'm trying to become DBA certified, so I went and purchased
    (among
    other materials) a book titled "Oracle8i for LINUX Starter Kit",
    authored by Steve Bobrowski, published by Oracle Press / Osborne
    McGraw-Hill, ISBN 0-07-212442-3.
    The book includes a CD-ROM with Oracle8i Enterprise Edition,
    Release 2, version 8.1.6 for LINUX.
    I'm running an Intel P-III 500 MHz with 512MB RAM, 30GB hard disk
    exclusively configured for Linux (no other O/S on it) and Oracle
    (so LOTS of hard disk space is available), Matrox Millennium G400
    video card (32MB).
    My hardware exceeds all requirements listed in aforementioned
    book, and also in Oracle's own documentation (from their web
    site).
    I'm running Mandrake's Linux 8.0, PowerPack Edition, with:
    kernel = 2.4.3
    XFree 4.0.3 (and I've also tried 3.3.6, with identical results
    to those listed below)
    glibc 2.2.2
    I've followed the book's instructions to the letter, and set up
    the environment variables, oracle user, and subdirectories as
    required.
    So far, so good.
    OK. Now, here's where the problem appears:
    I log in as the oracle user, and try to start the Oracle
    Universal Installer (following the instructions in the book)
    as follows:
    cd /mnt/cdrom
    ./runInstaller
    The computer tries to do some stuff, then spews the information
    listed at the bottom of this posting to the screen. I press
    <ENTER> after "OK" and get dumped back to the bash prompt.
    That's it. I can't go any further. No Oracle Universal
    Installer.
    By the way, I've also downloaded Oracle8i Enterprise Edition
    Release 3, version 8.1.7 from Oracle's website, and tried to
    install that, too. Exactly same results.
    The nice folks at Oracle have politely told me to get lost,
    and not bug them for unpaid support.
    I'd really like to get this stuff up and running, so I can
    start studying and practicing for DBA, but I need help 'cause
    this problem is beyond me.
    So... can anyone help??
    Thanks in advance.
    [email protected]
    [email protected]
    =================================================================
    =========
    Here's what shows up when I try to start the Oracle Universal
    Installer:
    [oracle@localhost cdrom]$ ./runInstaller
    [oracle@localhost cdrom]$ Initializing Java Virtual Machine
    from ../stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expande
    d/linux/bin/jre. Please wait...
    SIGSEGV received at bfffedac
    in /mnt/cdrom/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/E
    xpanded/linux/lib/linux/native_threads/libjava.so. Processing
    terminated
    Sat Sep 29 12:58:56 2001
    jre full version "JDK 1.1.8 IBM build l118-20000429 (JIT
    enabled: jitc)"
    Operating Environment
    Host : localhost.localdomain.localdomain
    OS Level : 2.4.3-20mdk.#1 Sun Apr 15 23:03:10 CEST 2001
    glibc Version : 2.2.2
    No. of Procs : 1
    Memory Info:
    total: used: free: shared: buffers: cached:
         Mem: 525901824 116862976 409038848 0 6377472
    61140992
         Swap: 1069244416 0 1069244416
         MemTotal: 513576 kB
         MemFree: 399452 kB
         MemShared: 0 kB
         Buffers: 6228 kB
         Cached: 59708 kB
         Active: 63740 kB
         Inact_dirty: 2196 kB
         Inact_clean: 0 kB
         Inact_target: 1072 kB
         HighTotal: 0 kB
         HighFree: 0 kB
         LowTotal: 513576 kB
         LowFree: 399452 kB
         SwapTotal: 1044184 kB
         SwapFree: 1044184 kB
         User Limits (in bytes except for NOFILE and NPROC) -
         RLIMIT_FSIZE : infinity
         RLIMIT_DATA : infinity
         RLIMIT_STACK : 2093056
         RLIMIT_CORE : 0
         RLIMIT_NOFILE : 1024
         RLIMIT_NPROC : 16383
    Application Environment
    Signal Handlers -
    SIGQUIT : ignored
    SIGILL : sysThreadIDump (libjava.so)
    SIGABRT : sysThreadIDump (libjava.so)
    SIGFPE : sysThreadIDump (libjava.so)
    SIGBUS : sysThreadIDump (libjava.so)
    SIGSEGV : sysThreadIDump (libjava.so)
    SIGPIPE : ignored
    SIGUSR1 : doSuspendLoop (libjava.so)
    Environment Variables -
    PWD=/mnt/cdrom/install
    LTDL_LIBRARY_PATH=/usr/lib
    ORACLE_SID=oralin
    TMPDIR=/usr/oracle/tmp
    XAUTHORITY=/usr/oracle/.Xauthority
    mc=
    LC_MESSAGES=en_US
    HOSTNAME=localhost.localdomain
    LD_LIBRARY_PATH=/mnt/cdrom/stage/Components/oracle.swd.jre/1.1.8/
    1/DataFiles/Expanded/linux/lib/linux/native_threads:/lib:/usr/lib
    :/usr/lib
    NLSPATH=/usr/share/locale/%l/%N
    CLASSPATH=/usr/oracle/tmp/OraInstall:../stage/Components/oracle.s
    wd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/OraInstaller.jar:../s
    tage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/l
    ib/InstImages.jar:../stage/Components/oracle.swd.oui/1.7.0.18.0A/
    1/DataFiles/Expanded/lib/InstHelp.jar:../stage/Components/oracle.
    swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/oracleice.jar:../sta
    ge/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib
    /help.jar:../stage/Components/oracle.swd.oui/1.7.0.18.0A/1/DataFi
    les/Expanded/lib/ewt.jar:../stage/Components/oracle.swd.oui/1.7.0
    .18.0A/1/DataFiles/Expanded/lib/xmlparser.jar:../stage/Components
    /oracle.swd.oui/1.7.0.18.0A/1/DataFiles/Expanded/lib/swingaccess.
    jar:/mnt/cdrom/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/
    Expanded/linux/lib/rt.jar:/mnt/cdrom/stage/Components/oracle.swd.
    jre/1.1.8/1/DataFiles/Expanded/linux/lib/i18n.jar:/mnt/cdrom/stag
    e/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/
    math.jar:/mnt/cdrom/stage/Components/oracle.swd.jre/1.1.8/1/DataF
    iles/Expanded/linux/lib/classes.zip
    LESSKEY=/etc/.less
    LANGUAGE=en_US:en
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    BROWSER=kfmclient openProfile webbrowsing
    LESS=-MM
    USER=oracle
    LC_TIME=en_US
    LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;3
    3;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;
    32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32:*.tar=01;31:*.
    tgz=01;31:*.tbz2=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lzh=
    01;31:*.lha=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz
    2=01;31:*.bz=01;31:*.tz=01;31:*.rpm=01;31:*.jpg=01;35:*.jpeg=01;3
    5:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.t
    if=01;35:*.tiff=01;35:
    THREADS_TYPE=native_threads
    MACHTYPE=i586-mandrake-linux-gnu
    KDE_MULTIHEAD=f
    KDE_MULTIHEAD=false
    HELP_BROWSER=kfmclient openProfile webbrowsing
    THREADS_FLAG=native
    MAIL=/var/spool/mail/oracle
    INPUTRC=/etc/inputrc
    GTK_RC_FILES=/etc/gtk/gtkrc:/usr/oracle/.gtkrc
    XMODIFIERS=@im=none
    LANG=en
    JAVA_HOME=/mnt/cdrom/stage/Components/oracle.swd.jre/1.1.8/1/Data
    Files/Expanded/linux
    ORACLE_BASE=/usr/oraInventory
    LC_NUMERIC=en_US
    COLORTERM=
    ORACLE_HOME=/usr/oracle
    TMP=/usr/oracle/tmp
    DISPLAY=localhost:0.0
    LOGNAME=oracle
    SHLVL=3
    LC_CTYPE=en_US
    SESSION_MANAGER=local/localhost.localdomain:/tmp/.ICE-
    unix/1074
    SHELL=/bin/bash
    HOSTTYPE=i586
    QT_XFT=0
    OSTYPE=linux-gnu
    HISTSIZE=1000
    HOME=/usr/oracle
    TERM=xterm
    PATH=/bin:/usr/bin:/bin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/u
    sr/X11R6/bin:/usr/games:/usr/oracle/bin
    SECURE_LEVEL=3
    LC_MONETARY=en_US
    RPM_INSTALL_LANG=en_US:en
    LC_COLLATE=en_US
    LIBPATH=/mnt/cdrom/stage/Components/oracle.swd.jre/1.1.8/1/DataFi
    les/Expanded/linux/lib/linux/native_threads
    Libraries Loaded by the JVM
    <main>
    libjitc.so
    libzip.so
    Current Thread Details
    "main" (TID:0x4032a2d8, sys_thread_t:0x804de98)
    Native Thread State: ThreadID: 00000400 Reuse: 1 USER
    PRIMORDIAL RUNNING
    Native Stack Data : base: bfffef08 pointer bffdf764 used
    (128932) free(-12196)
    ----- Monitors held -----
    ----- Native stack -----
    Java_java_lang_System_initProperties_stub
    invokeNativeMethod
    invokeLazyNativeMethod
    __irem_trap6
    ------ Java stack ------ () prio=5 *current
    thread*
    java.lang.System.initializeSystemClass(System.java)
    Total Thread Count: 3
    Active Thread Count: 3
    JNI Thread Count: 0
    Full thread dump:
    "Async Garbage Collector" (TID:0x4032a238,
    sys_thread_t:0x80dca78)
    Native Thread State: ThreadID: 00000803 Reuse: 1 DAEMON
    MONITOR WAIT
    Native Stack Data : base: bf5ffb20 pointer bf5ff914 used
    (524) free(116212)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait
    sysThreadSleep
    threadSleep
    SetOrigArgs
    sysThread_shell
    pthread_detach
    __clone
    ------ Java stack ------ () prio=1
    "Finalizer thread" (TID:0x4032a288, sys_thread_t:0x80dc7f8)
    Native Thread State: ThreadID: 00000402 Reuse: 1 DAEMON
    MONITOR WAIT
    Native Stack Data : base: bf7ffb20 pointer bf7ff988 used
    (408) free(116328)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait - waiting on Finalize me queue lock
    finalizeOnExit
    sysThread_shell
    pthread_detach
    __clone
    ------ Java stack ------ () prio=1
    "main" (TID:0x4032a2d8, sys_thread_t:0x804de98)
    Native Thread State: ThreadID: 00000400 Reuse: 1 USER
    PRIMORDIAL RUNNING
    Native Stack Data : base: bfffef08 pointer bffdf758 used
    (128944) free(-12208)
    ----- Monitors held -----
    ----- Native stack -----
    Java_java_lang_System_initProperties_stub
    invokeNativeMethod
    invokeLazyNativeMethod
    __irem_trap6
    ------ Java stack ------ () prio=5 *current
    thread*
    java.lang.System.initializeSystemClass(System.java)
    System Monitor Status
    Thread queue lock: unowned.
    Name and type hash table lock: unowned.
    String intern lock: unowned.
    JNI pinning lock: unowned.
    JNI global reference lock: unowned.
    Zip lock: unowned.
    BinClass lock: unowned.
    Class loading lock: unowned.
    Java stack lock: unowned.
    Code rewrite lock: unowned.
    Heap Lock: unowned.
    Has finalization queue lock: unowned.
    Finalize me queue lock: unowned.
    Integer lock access-lock: unowned.
    Monitor cache lock: unowned.
    Monitor registry: unowned.
    Object Monitor Status
    OK
    [oracle@localhost cdrom]$
    =================================================================
    =========
    [email protected]
    [email protected]

    I have Mandrake 8.0 on PII-600, 256 RAM. I used the downloaded
    8.1.7. Edit JRE_LOCATION in Disk1/install/oraparam.ini to point
    to your version of JRE 1.1.8 v3 (JRE from
    http://www.backdown.org). Then try with NUMLOCK=OFF.
    I just clicked the 'typical' installation. It failed at the end
    and did not install the database manager. The error message was:
    SIGGEV received at bfffea90 in
    /u01/app/oracle/jre/1.1.8/lib/linux/native_threads/libjava.so
    Process terminated
    Writing stack trace to javacore30299.txt... OK
    /u01/app/oracle/product/8.1.7/bin/dbassist: line 103: 30229
    Segmentation fault $JRE_EXEC -Duser.dir=$USER_DIR -classpath
    $CLASSPATH DBCreateWizard $ARGUMENTS
    If you get beyond this point, let me know. Good luck!

  • Installation sun one studio ver. 5 fail in mandrake

    I download sun one studio ver.5 in my mandrake linux ver. 9.0 and I have jsdk1.4.1_03. When I tried install it I received this message:
    To install sun one studio 5 you need to log in a superuser or a user with administrator privileges.
    I login in a term with root user and also start X session with root user but received this error also.
    any sugestion??

    I finally solved the problem by modifying the java source code of the installer. It did unnecessary checks for supported distributions and their versions. After removing these checks, SUN ONE Studio 5 installed and ran properly.
    Here is how to do it in short:
    1. Unzip the downloaded binary installation file into some folder. I will refer to this folder as "setuproot".
    2. Starting from the "setuprot" folder, find the file com/ibm/wizard/platform/linux/LinuxRedHatCommands.class.
    3. Decompile this file using the "Jad" Java decompiler. You can find it at http://kpdus.tripod.com/jad.html .
    4. Rename the resulting LinuxRedHatCommands.jad file to LinuxRedHatCommands.java.
    5. Modify LinuxRedHatCommands.java in the following way: Find the method "isValidDistribution()" and replace its whole body with the following line: "return true;" Save the modified file.
    5. Compile the modified java file by executing the following command from the "setuproot" folder: "javac com/ibm//wizard/platform/linux/LinuxRedHatCommands.java"
    6. Now start the installation with the "java run" command from the "setuproot" folder.
    Now it should not complain about insufficient administrative privileges.
    (A properly installed java1.4.1_02 or above SDK is a requirement for both the Studio5 and for the above instructions to work.)
    I still was not able to install the bundled Application Server7, because it's check box was disabled with a comment about my incompatible platform. I guess this will be the next step to resolve...
    Cheers,
    George

  • Mandrake 8.0 Installer dosn't run

    I am try to installer under the new Mandrake release and have setup unix groups, env.
    when I try "./runInstaller", i tget some output in thw window but then nothing happens, ie the installer does not launch.
    Ideas anyone ?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by ian sparkes ([email protected]):
    I am try to installer under the new Mandrake release and have setup unix groups, env.
    when I try "./runInstaller", i tget some output in thw window but then nothing happens, ie the installer does not launch.
    Ideas anyone ?<HR></BLOCKQUOTE>
    Get a knew glibc package from Mandrake cooker (glibc-2.2.2-5mdk.i586.rpm) to get the installer and other Java progs working.
    You will also need the package glibc-2.1.3-stubs.tar.gz e.g. from http://www.suse.de/en/support/oracle/db/817_71.html to run Oracle.
    null

  • Oracle 8i on Mandrake 6.1 - Installation Fails

    I have recently upgraded one of my Mandrake 6.0 boxes to Mandrake
    6.1 (plus all updates available as of 9/29/1999). I am now
    unable to run Oracle's 8i Installation Program. I have tested
    running this same program on my Mandrake 6.0 server, and I do not
    encounter the problem listed below. Here is a transcript of the
    encountered problem:
    [oracle@by-tor /cdrom]$ ./runInstaller
    Initializing Java Virtual Machine from /usr/local/jre/bin/jre.
    Please
    wait...
    Error in CreateOUIProcess(): -1
    : Argument list too long
    Craig
    null

    I ran into the same problem an a Mandrake 6.1 box (worked fine
    under 6.0 and 6.1b) using jre116_v5. I tried to get around the
    problem by changing to the install/linux directory and running
    runIns.sh, this started up the installer and I went through
    accepting the defaults, but when it got to the installation step,
    hung on "Copying swingall.jar" with the progress bar at 0%. I
    was able to cancel and exit out, but could not get it to install.
    I tried installing both the client and the server with the same
    result. Any help would be greatly appreciated.
    -cp
    Craig McElroy (guest) wrote:
    : I have recently upgraded one of my Mandrake 6.0 boxes to
    Mandrake
    : 6.1 (plus all updates available as of 9/29/1999). I am now
    : unable to run Oracle's 8i Installation Program. I have tested
    : running this same program on my Mandrake 6.0 server, and I do
    not
    : encounter the problem listed below. Here is a transcript of
    the
    : encountered problem:
    : [oracle@by-tor /cdrom]$ ./runInstaller
    : Initializing Java Virtual Machine from /usr/local/jre/bin/jre.
    : Please
    : wait...
    : Error in CreateOUIProcess(): -1
    : : Argument list too long
    : Craig
    null

  • Oracle8i installer crashed on start (Linux Mandrake 7.0)

    I was attempted to install Oracle 8i (8.1.6) on Linux Mandrake 7.0 (based on RedHat6.2). So, when I done all pre-installation tasks and run ./runInstaller from cdrom, I see the start window and immediately crash of JRE1.1.8 that was started from this CD. Any attempts to use JRE1.2.2 already installed on my system was failed. What may I do to run installer?

    I was attempted to install Oracle 8i (8.1.6) on Linux Mandrake 7.0 (based on RedHat6.2). So, when I done all pre-installation tasks and run ./runInstaller from cdrom, I see the start window and immediately crash of JRE1.1.8 that was started from this CD. Any attempts to use JRE1.2.2 already installed on my system was failed. What may I do to run installer?

  • Installation problem od Oracle 1.8.7.0.1 on Mandrake 7.2

    When attempting to launch ./runInstaller from the command line I get the following:
    SIGSEGV received at bfffece8 in /mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libawt.so. Processing terminated
    Thu Mar 29 22:11:20 2001
    jre full version "JDK 1.1.8 IBM build l118-20000713 (JIT enabled: jitc)"
    Operating Environment
    Host : janek.test.pl.
    OS Level : 2.2.17-21mdk.#12 6ro mar 28 21:01:20 CEST 2001
    glibc Version : 2.1.3
    No. of Procs : 1
    Memory Info:
    total: used: free: shared: buffers: cached:
    Mem: 133795840 131465216 2330624 0 35364864 50978816
    Swap: 625078272 18141184 606937088
    MemTotal: 130660 kB
    MemFree: 2276 kB
    MemShared: 0 kB
    Buffers: 34536 kB
    Cached: 49784 kB
    BigTotal: 0 kB
    BigFree: 0 kB
    SwapTotal: 610428 kB
    SwapFree: 592712 kB
    User Limits (in bytes except for NOFILE and NPROC) -
    RLIMIT_FSIZE : infinity
    RLIMIT_DATA : infinity
    RLIMIT_STACK : 2088960
    RLIMIT_CORE : 0
    RLIMIT_NOFILE : 1024
    RLIMIT_NPROC : 2048
    Application Environment
    Signal Handlers -
    SIGQUIT : ignored
    SIGILL : sysThreadIDump (libjava.so)
    SIGABRT : sysThreadIDump (libjava.so)
    SIGFPE : sysThreadIDump (libjava.so)
    SIGBUS : sysThreadIDump (libjava.so)
    SIGSEGV : sysThreadIDump (libjava.so)
    SIGPIPE : ignored
    SIGUSR1 : doSuspendLoop (libjava.so)
    Environment Variables -
    PWD=/mnt/vol/Disk1/install
    LTDL_LIBRARY_PATH=/home/oracle/.kde/lib:/usr/lib
    ORACLE_SID=ORCL
    XAUTHORITY=/home/oracle/.Xauthority
    WINDOWID=8388622
    LC_MESSAGES=pl
    HOSTNAME=janek.test.pl
    LD_LIBRARY_PATH=/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads:/lib:/usr/lib:/home/oracle/.kde/lib:/usr/lib
    CLASSPATH=/tmp/OraInstall:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/OraInstaller.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/l ib/InstImages.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/InstHelp.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/oracleice .jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/help.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/ewt.jar:../stage/Component s/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/xmlparser.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/swingaccess.jar:/mnt/vol/Disk1/stage/Compone nts/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/rt.jar:/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/i18n.jar:/mnt/vol/Disk1/stage/Com ponents/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/math.jar:/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/classes.zip
    LESSKEY=/etc/.less
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    LANGUAGE=pl
    KDEDIR=/usr
    LESS=-MM
    BROWSER=/usr/bin/netscape
    USER=oracle
    LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32 :*.tar=01;31:*.tgz=01;31:*.tbz2=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lha=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm =01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:*.tiff=01;35:
    LC_TIME=pl
    THREADS_TYPE=native_threads
    MACHTYPE=i586-mandrake-linux-gnu
    HELP_BROWSER=kfmclient openProfile webbrowsing
    THREADS_FLAG=native
    MAIL=/var/spool/mail/oracle
    INPUTRC=/etc/inputrc
    BASH_ENV=/home/oracle/.bashrc
    XMODIFIERS=@im=none
    LANG=pl
    ORACLE_BASE=/mnt/vol/ora1/app/oracle
    JAVA_HOME=/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux
    LC_NUMERIC=pl
    ORACLE_HOME=/mnt/vol/ora1/app/oracle/product/8.1.7
    DISPLAY=144.144.2.79:0.0
    LOGNAME=oracle
    SHLVL=5
    LC_CTYPE=pl
    SESSION_MANAGER=local/janek.optimus.pl:/tmp/.ICE-unix/3662
    SHELL=/bin/bash
    USERNAME=oracle
    HOSTTYPE=i586
    OSTYPE=linux-gnu
    HISTSIZE=1000
    HOME=/home/oracle
    TERM=xterm
    PGDATA=/var/lib/pgsql/data
    PATH=/bin:/usr/bin:/mnt/vol/ora1/app/oracle/product/8.1.7/bin:/usr/local/bin:/mnt/vol/ora1/app/oracle/product/8.1.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11R6/bin: /usr/games:/home/oracle/bin:/usr/X11R6/bin:/usr/games:/usr/X11R6/bin:/usr/games:/home/oracle/bin:/usr/X11R6/bin:/usr/games:/usr/X11R6/bin:/usr/games
    SECURE_LEVEL=3
    LC_MONETARY=pl
    RPM_INSTALL_LANG=pl
    ORACLE_DOC=/mnt/vol/oracle/doc
    SSH_TTY=/dev/ttyp4
    LC_COLLATE=pl
    LIBPATH=/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads
    Libraries Loaded by the JVM
    <main>
    libjitc.so
    libzip.so
    libsysresource.so
    libawt.so
    Current Thread Details
    "main" (TID:0x402da2d8, sys_thread_t:0x804dfb0)
    Native Thread State: Pid: 3803 ThreadID: 00000400 Reuse: 1 USER PRIMORDIAL RUNNING
    Native Stack Data : base: bfffee40 pointer bffdf954 used(128236) free(-11500)
    ----- Monitors held -----
    java.lang.Object@402f01d0
    java.lang.Object@40402bc8
    AWT Lock
    ----- Native stack -----
    Java_sun_awt_motif_X11FontMetrics_init_stub
    invokeNativeMethod
    invokeLazyNativeMethod
    __irem_trap5
    ------ Java stack ------ () prio=5 current thread
    sun.awt.motif.X11FontMetrics.<init>(X11FontMetrics.java:99)
    sun.awt.motif.X11FontMetrics.getFontMetrics(X11FontMetrics.java:257)
    sun.awt.motif.MToolkit.getFontMetrics(MToolkit.java:243)
    java.awt.Component.getFontMetrics(Component.java:1210)
    oracle.ewt.lwAWT.LWComponent$PaintCtxt.getFontMetrics(Unknown Source)
    oracle.ewt.painter.TextPainter._getSize(Unknown Source)
    oracle.ewt.painter.TextPainter.getPreferredSize(Unknown Source)
    oracle.ewt.painter.AbstractWrappingPainter.getPreferredSize(Unknown Source)
    oracle.ewt.lwAWT.AbstractPainterComponent.getPreferredSize(Unknown Source)
    java.awt.GridLayout.preferredLayoutSize(GridLayout.java:264)
    java.awt.Container.preferredSize(Container.java:558)
    java.awt.Container.getPreferredSize(Container.java:541)
    java.awt.GridBagLayout.GetLayoutInfo(GridBagLayout.java:713)
    java.awt.GridBagLayout.preferredLayoutSize(GridBagLayout.java:469)
    java.awt.Container.preferredSize(Container.java:558)
    java.awt.Container.getPreferredSize(Container.java:541)
    java.awt.BorderLayout.layoutContainer(BorderLayout.java:433)
    java.awt.Container.layout(Container.java:453)
    java.awt.Container.doLayout(Container.java:443)
    oracle.ewt.lwAWT.LWComponent.doLayout(Unknown Source)
    Total Thread Count: 10
    Active Thread Count: 10
    JNI Thread Count: 0
    Full thread dump:
    "Image Fetcher 2" (TID:0x402d9e70, sys_thread_t:0x82bc360)
    Native Thread State: Pid: 3816 ThreadID: 0000240a Reuse: 1 DAEMON MONITOR WAIT
    Native Stack Data : base: be7ffd70 pointer be7ffaac used(708) free(116028)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait
    monitorWait - waiting on java.util.Vector@402e49b8
    java_lang_Object_wait
    Java_java_lang_Object_wait_stub
    invokeNativeMethod
    __irem_trap5
    ------ Java stack ------ () prio=8
    sun.awt.image.ImageFetcher.nextImage(ImageFetcher.java:94)
    sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:131)
    sun.awt.image.ImageFetcher.run(ImageFetcher.java:112)
    "Image Fetcher 1" (TID:0x402d9fb0, sys_thread_t:0x82bc098)
    Native Thread State: Pid: 3815 ThreadID: 00002009 Reuse: 1 DAEMON MONITOR WAIT
    Native Stack Data : base: be9ffd70 pointer be9ffaac used(708) free(116028)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait
    monitorWait - waiting on java.util.Vector@402e49b8
    java_lang_Object_wait
    Java_java_lang_Object_wait_stub
    invokeNativeMethod
    __irem_trap5
    ------ Java stack ------ () prio=8
    OK
    Does this mean anything to anyone?
    Thanks.

    When attempting to launch ./runInstaller from the command line I get the following:
    SIGSEGV received at bfffece8 in /mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads/libawt.so. Processing terminated
    Thu Mar 29 22:11:20 2001
    jre full version "JDK 1.1.8 IBM build l118-20000713 (JIT enabled: jitc)"
    Operating Environment
    Host : janek.test.pl.
    OS Level : 2.2.17-21mdk.#12 6ro mar 28 21:01:20 CEST 2001
    glibc Version : 2.1.3
    No. of Procs : 1
    Memory Info:
    total: used: free: shared: buffers: cached:
    Mem: 133795840 131465216 2330624 0 35364864 50978816
    Swap: 625078272 18141184 606937088
    MemTotal: 130660 kB
    MemFree: 2276 kB
    MemShared: 0 kB
    Buffers: 34536 kB
    Cached: 49784 kB
    BigTotal: 0 kB
    BigFree: 0 kB
    SwapTotal: 610428 kB
    SwapFree: 592712 kB
    User Limits (in bytes except for NOFILE and NPROC) -
    RLIMIT_FSIZE : infinity
    RLIMIT_DATA : infinity
    RLIMIT_STACK : 2088960
    RLIMIT_CORE : 0
    RLIMIT_NOFILE : 1024
    RLIMIT_NPROC : 2048
    Application Environment
    Signal Handlers -
    SIGQUIT : ignored
    SIGILL : sysThreadIDump (libjava.so)
    SIGABRT : sysThreadIDump (libjava.so)
    SIGFPE : sysThreadIDump (libjava.so)
    SIGBUS : sysThreadIDump (libjava.so)
    SIGSEGV : sysThreadIDump (libjava.so)
    SIGPIPE : ignored
    SIGUSR1 : doSuspendLoop (libjava.so)
    Environment Variables -
    PWD=/mnt/vol/Disk1/install
    LTDL_LIBRARY_PATH=/home/oracle/.kde/lib:/usr/lib
    ORACLE_SID=ORCL
    XAUTHORITY=/home/oracle/.Xauthority
    WINDOWID=8388622
    LC_MESSAGES=pl
    HOSTNAME=janek.test.pl
    LD_LIBRARY_PATH=/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads:/lib:/usr/lib:/home/oracle/.kde/lib:/usr/lib
    CLASSPATH=/tmp/OraInstall:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/OraInstaller.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/l ib/InstImages.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/InstHelp.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/oracleice .jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/help.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/ewt.jar:../stage/Component s/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/xmlparser.jar:../stage/Components/oracle.swd.oui/1.7.1.8.0/1/DataFiles/Expanded/lib/swingaccess.jar:/mnt/vol/Disk1/stage/Compone nts/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/rt.jar:/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/i18n.jar:/mnt/vol/Disk1/stage/Com ponents/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/math.jar:/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/classes.zip
    LESSKEY=/etc/.less
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    LANGUAGE=pl
    KDEDIR=/usr
    LESS=-MM
    BROWSER=/usr/bin/netscape
    USER=oracle
    LS_COLORS=no=00:fi=00:di=01;34:ln=01;36:pi=40;33:so=01;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=01;32:*.cmd=01;32:*.exe=01;32:*.com=01;32:*.btm=01;32:*.bat=01;32 :*.tar=01;31:*.tgz=01;31:*.tbz2=01;31:*.arc=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lha=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.bz=01;31:*.tz=01;31:*.rpm =01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.xbm=01;35:*.xpm=01;35:*.png=01;35:*.tif=01;35:*.tiff=01;35:
    LC_TIME=pl
    THREADS_TYPE=native_threads
    MACHTYPE=i586-mandrake-linux-gnu
    HELP_BROWSER=kfmclient openProfile webbrowsing
    THREADS_FLAG=native
    MAIL=/var/spool/mail/oracle
    INPUTRC=/etc/inputrc
    BASH_ENV=/home/oracle/.bashrc
    XMODIFIERS=@im=none
    LANG=pl
    ORACLE_BASE=/mnt/vol/ora1/app/oracle
    JAVA_HOME=/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux
    LC_NUMERIC=pl
    ORACLE_HOME=/mnt/vol/ora1/app/oracle/product/8.1.7
    DISPLAY=144.144.2.79:0.0
    LOGNAME=oracle
    SHLVL=5
    LC_CTYPE=pl
    SESSION_MANAGER=local/janek.optimus.pl:/tmp/.ICE-unix/3662
    SHELL=/bin/bash
    USERNAME=oracle
    HOSTTYPE=i586
    OSTYPE=linux-gnu
    HISTSIZE=1000
    HOME=/home/oracle
    TERM=xterm
    PGDATA=/var/lib/pgsql/data
    PATH=/bin:/usr/bin:/mnt/vol/ora1/app/oracle/product/8.1.7/bin:/usr/local/bin:/mnt/vol/ora1/app/oracle/product/8.1.7/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/X11R6/bin: /usr/games:/home/oracle/bin:/usr/X11R6/bin:/usr/games:/usr/X11R6/bin:/usr/games:/home/oracle/bin:/usr/X11R6/bin:/usr/games:/usr/X11R6/bin:/usr/games
    SECURE_LEVEL=3
    LC_MONETARY=pl
    RPM_INSTALL_LANG=pl
    ORACLE_DOC=/mnt/vol/oracle/doc
    SSH_TTY=/dev/ttyp4
    LC_COLLATE=pl
    LIBPATH=/mnt/vol/Disk1/stage/Components/oracle.swd.jre/1.1.8/1/DataFiles/Expanded/linux/lib/linux/native_threads
    Libraries Loaded by the JVM
    <main>
    libjitc.so
    libzip.so
    libsysresource.so
    libawt.so
    Current Thread Details
    "main" (TID:0x402da2d8, sys_thread_t:0x804dfb0)
    Native Thread State: Pid: 3803 ThreadID: 00000400 Reuse: 1 USER PRIMORDIAL RUNNING
    Native Stack Data : base: bfffee40 pointer bffdf954 used(128236) free(-11500)
    ----- Monitors held -----
    java.lang.Object@402f01d0
    java.lang.Object@40402bc8
    AWT Lock
    ----- Native stack -----
    Java_sun_awt_motif_X11FontMetrics_init_stub
    invokeNativeMethod
    invokeLazyNativeMethod
    __irem_trap5
    ------ Java stack ------ () prio=5 current thread
    sun.awt.motif.X11FontMetrics.<init>(X11FontMetrics.java:99)
    sun.awt.motif.X11FontMetrics.getFontMetrics(X11FontMetrics.java:257)
    sun.awt.motif.MToolkit.getFontMetrics(MToolkit.java:243)
    java.awt.Component.getFontMetrics(Component.java:1210)
    oracle.ewt.lwAWT.LWComponent$PaintCtxt.getFontMetrics(Unknown Source)
    oracle.ewt.painter.TextPainter._getSize(Unknown Source)
    oracle.ewt.painter.TextPainter.getPreferredSize(Unknown Source)
    oracle.ewt.painter.AbstractWrappingPainter.getPreferredSize(Unknown Source)
    oracle.ewt.lwAWT.AbstractPainterComponent.getPreferredSize(Unknown Source)
    java.awt.GridLayout.preferredLayoutSize(GridLayout.java:264)
    java.awt.Container.preferredSize(Container.java:558)
    java.awt.Container.getPreferredSize(Container.java:541)
    java.awt.GridBagLayout.GetLayoutInfo(GridBagLayout.java:713)
    java.awt.GridBagLayout.preferredLayoutSize(GridBagLayout.java:469)
    java.awt.Container.preferredSize(Container.java:558)
    java.awt.Container.getPreferredSize(Container.java:541)
    java.awt.BorderLayout.layoutContainer(BorderLayout.java:433)
    java.awt.Container.layout(Container.java:453)
    java.awt.Container.doLayout(Container.java:443)
    oracle.ewt.lwAWT.LWComponent.doLayout(Unknown Source)
    Total Thread Count: 10
    Active Thread Count: 10
    JNI Thread Count: 0
    Full thread dump:
    "Image Fetcher 2" (TID:0x402d9e70, sys_thread_t:0x82bc360)
    Native Thread State: Pid: 3816 ThreadID: 0000240a Reuse: 1 DAEMON MONITOR WAIT
    Native Stack Data : base: be7ffd70 pointer be7ffaac used(708) free(116028)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait
    monitorWait - waiting on java.util.Vector@402e49b8
    java_lang_Object_wait
    Java_java_lang_Object_wait_stub
    invokeNativeMethod
    __irem_trap5
    ------ Java stack ------ () prio=8
    sun.awt.image.ImageFetcher.nextImage(ImageFetcher.java:94)
    sun.awt.image.ImageFetcher.fetchloop(ImageFetcher.java:131)
    sun.awt.image.ImageFetcher.run(ImageFetcher.java:112)
    "Image Fetcher 1" (TID:0x402d9fb0, sys_thread_t:0x82bc098)
    Native Thread State: Pid: 3815 ThreadID: 00002009 Reuse: 1 DAEMON MONITOR WAIT
    Native Stack Data : base: be9ffd70 pointer be9ffaac used(708) free(116028)
    ----- Monitors held -----
    ----- Native stack -----
    sysMonitorWait
    monitorWait - waiting on java.util.Vector@402e49b8
    java_lang_Object_wait
    Java_java_lang_Object_wait_stub
    invokeNativeMethod
    __irem_trap5
    ------ Java stack ------ () prio=8
    OK
    Does this mean anything to anyone?
    Thanks.

  • Installation problems on Mandrake 10

    Hi,
    My first attempt to install was failing due to the "id" problem. Did the soft link from /bin to /usr/bin and the install starts, but it fails after a while (the install.log contents are at the end of this message).
    I nevertheless tried to start the Creator and it starts all right, but I cannot help feeling that there might be critical parts missing (since the installation didn't finish). Anyone has any idea why this happens and what (if anything critical) is missing?
    Thanks,
    Jean
    install.log contents:
    (Apr 13, 2004 2:58:24 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, msg1, installing Files (bean46)
    (Apr 13, 2004 3:01:11 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, msg1, installing Files (bean176)
    (Apr 13, 2004 3:01:34 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, msg1, installing Install Application Server Action (bean3)
    (Apr 13, 2004 3:01:35 AM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Installing Sun Java(TM) System Application Server...
    exitcode = 127
    (Apr 13, 2004 3:01:35 AM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, err, Error occured while installing [127] -> /opt/Creator/_uninst/install.sh /opt/Creator/_uninst statefile ../install.log /tmp
    (Apr 13, 2004 3:01:35 AM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, err, Error occured while Installing Sun Java(TM) System Application Server....
    (Apr 13, 2004 3:01:36 AM), Setup.product.install, com.sun.installer.InstallApplicationServerAction, msg1, Finished
    (Apr 13, 2004 3:01:37 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, msg1, installing Post Install Core Action (PostInstallCoreAction)
    (Apr 13, 2004 3:01:49 AM), Setup.product.install, com.sun.installer.PostInstallCoreAction, err, Cannot update Config Files successfully
    (Apr 13, 2004 3:01:49 AM), Setup.product.install, com.sun.installer.PostInstallCoreAction, msg1, Sun Java(TM) Studio Creator Error encountered while installing Sun Java(TM) Studio Creator. Please review the logfile under this directory: /opt/Creator
    (Apr 13, 2004 3:01:52 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, wrn, The installer could not successfully add the product information into the RPM database. Installation will continue as this is not critical to the installation of the product.
    (Apr 13, 2004 3:01:55 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, wrn, The installer could not successfully add the product information into the RPM database. Installation will continue as this is not critical to the installation of the product.
    (Apr 13, 2004 3:01:58 AM), Setup.product.install, com.ibm.wizard.platform.linux.LinuxProductServiceImpl, wrn, The installer could not successfully add the product information into the RPM database. Installation will continue as this is not critical to the installation of the product.
    (Apr 13, 2004 3:02:15 AM), Setup.product.install, com.sun.installer.PostInstallWizardAction, err, Error setting pointbase port
    (Apr 13, 2004 3:02:16 AM), Setup.product.install, com.sun.installer.PostInstallWizardAction, err, Skipping PostInstall actions due to Application Server installation failure with exitcode: -500
    -----------------------------------------------------------------------------------

    I have uninstalled and reinstalled three times. Two of the times I had items that were missing.
    When you look at your start/program menu and choose Sun Microsystems/J2EE1.4 sdk you should have the ability to start your pointbase database and start the application server. If those options are not on the menu then your install did not finish. I have had one install where the "Start Application Server" did not show on the menu. Also I found that when you start the IDE at the end of the install you are less likely to have problems getting your application server to run.

  • Need help on installation of 8.0.5 on rh 6.1 and mandrake 7.0

    have anyone successfully installed oracle 8.0.5 on redhat 6.1 or mandrake 7.0? i can only installed on rh6.0.... any idea?

    For RH 6.1, I'm guessing you're having problems when it tries to compile/link the Oracle code. This is because Oracle needs a different set of libraries that do not exist on RH 6.1 (glibc). There are RPM's that you need to install on RH 6.1 to get the compile/links to work (About 6 of them). To find these RPM's go to the page where you would download the Oracle Server for Linux. There is a README file for Oracle on RH 6.1 (And other Linux distributions as well). I think this will help.
    I currently have Oracle 8.0.5 on RH 6.1 and am having no problems. However, I was running RH 5.2, and then upgraded to 6.1. Therefor I didn't have to deal with the install problems.
    -Jim Wartnick
    [email protected]

  • Installation of Oracle Applicatoin server 10g on Mandrake

    hi all,
    Can anyone have any experience in installing Oracle Application Server 10g on Mandrake linux 10.1 ?
    regards,
    vijay

    I just de installed the Infrastructure and Mid tier & again reinstalliing. Before that i checked the Oracle Database 10g its connecting well. Now i am installing the Oracle Infrastructure. Here i would like to know which option can i select
    1. Identity Management & Metadata Repository
    2. Identity Management
    3. Metadata Repository
    Note: I am planning to use Business Intelligence (Forms & Reports) with existing 3 databases on the Server.
    Could u give some steps to Install & Configure

Maybe you are looking for