Installing LIS 2.1 on SUSE Enterprise Linux 11

I try install LIS 2.1 on SUSE Enterprise Linux and I have received the next error:
whdvlxdisney07:/opt/linux_ic_v21_rtm # make
Building all modules...
make -C /lib/modules/2.6.32.24-0.2-pae/build SUBDIRS=/opt/linux_ic_v21_rtm/src modules
make[1]: Entering directory `/usr/src/linux-2.6.32.24-0.2-obj/i386/pae'
make -C ../../../linux-2.6.32.24-0.2 O=/usr/src/linux-2.6.32.24-0.2-obj/i386/pae/. modules
CC [M] /opt/linux_ic_v21_rtm/src/BlkVsc.o
CC [M] /opt/linux_ic_v21_rtm/src/osd.o
/opt/linux_ic_v21_rtm/src/osd.c:469:41: error: macro "INIT_WORK" passed 3 arguments, but takes just 2
/opt/linux_ic_v21_rtm/src/osd.c: In function âWorkQueueQueueWorkItemâ:
/opt/linux_ic_v21_rtm/src/osd.c:469: error: âINIT_WORKâ undeclared (first use in this function)
/opt/linux_ic_v21_rtm/src/osd.c:469: error: (Each undeclared identifier is reported only once
/opt/linux_ic_v21_rtm/src/osd.c:469: error: for each function it appears in.)
/opt/linux_ic_v21_rtm/src/osd.c:487:41: error: macro "INIT_WORK" passed 3 arguments, but takes just 2
/opt/linux_ic_v21_rtm/src/osd.c: In function âQueueWorkItemâ:
/opt/linux_ic_v21_rtm/src/osd.c:487: error: âINIT_WORKâ undeclared (first use in this function)
make[4]: *** [/opt/linux_ic_v21_rtm/src/osd.o] Error 1
make[3]: *** [_module_/opt/linux_ic_v21_rtm/src] Error 2
make[2]: *** [sub-make] Error 2
make[1]: *** [all] Error 2
make[1]: Leaving directory `/usr/src/linux-2.6.32.24-0.2-obj/i386/pae'
make: *** [all] Error 2
Can you help me?

Are you sure? SP1 is not in this list: http://technet.microsoft.com/en-us/library/dn531027.aspx
I am seeing the same issue on SUSE 11 sp1 on HyperV 2012 R2, HyperV prompts me to install an Integration Disk:
"The mouse in unavailable in the Remote Desktop Session when virtual guest services are not installed in the guest operating system."

Similar Messages

  • Guide to installing XE and Apex on Oracle Enterprise Linux 5.3 (64 bit)

    I have just been through a time consuming and frustrating process of installing Oracle XE 10gR2 on Oracle Enterprise Linux 5.3 x86-64 and I want to share my experience so that others can benefit from it and overcome the same problems more quickly.
    Prior to starting I had installed OEL 5.3 and been using it for a few days. The system I am using is a home built box with an AMD Phenom X4 955 Black Edition, 8 Gb RAM, Highpoint RR2680 RAID controller with 4 1TB disks in a RAID5 array and an additional 320Gb HDD storing the OS. I am using KDE3.5 on the desktop.
    The main problem I encountered was with SELinux. As I eventually intend to have this system exposed on the Internet I was reluctant to switch it off despite having read extensively about the issues surrounding it and Oracle. I had several failed attempts at the installation process before succumbing to the reality that SELinux and Oracle are not happy bedfellows. I decided to switch SELinux to permissive mode having followed the advice here.
    I found a very helpful guide to installing XE on Linux here as part of the installation of an application called Spacewalk. Note that you do not need to complete the whole Spacewalk installation, but just follow the instructions in the linked page.
    Before you start you need to ensure that the UID of your oracle user is less than 500. Mine was 500, so I used the following commands to fix this:
    usermod -u 250 oracle
    find / -uid 500 -exec chown oracle {} \;
    These change the oracle UID to 250 (but check that isn't already used first!) and the find command searches for all files that were owned by oracle (but weren't after the usermod cmd) and changes them back to oracle's ownership.
    Now follow the Spacewalk instructions until you reach the Server Setup section. Before you do this you need to make a couple of changes to the script /etc/init.d/oracle-xe. I found these changes in various places, such as [link(1)|http://forums.oracle.com/forums/thread.jspa?messageID=1345771&#1345771] and [link(2)|http://dbataj.blogspot.com/2008/08/lblibrarypath-is-not-set-on-startup.html].
    Note that in link(1) the oracle-xe-selinux packages installed have the same effect as the chcon command on the shared libraries so it isn't necessary to perform this step.
    Open /etc/init.d/oracle-xe in vi (or your favourite editor) and do the following:
    line 49: change /bin/su to /sbin/runuser
    after line 52 (export PATH...) add the following lines:
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    There are further changes recommended to /etc/init.d/oracle-xe in [this post|http://forums.oracle.com/forums/thread.jspa?messageID=3201491&#3201491] but I haven't done them yet.
    Having done the above changes you can now configure Oracle XE by running /etc/init.d/oracle-xe configure (as root!). As I have Apache Tomcat running on port 8080 I changed the default HTTP port to 8500 but kept the listener on its default port of 1521. Once the confuration script is done you will need to change the ports SELinux uses for Oracle as follows:
    semanage port -d -t oracle_port_t -p tcp 9000 - deletes port 9000, which is the SELinux default port for Apex
    semanage port -a -t oracle_port_t -p tcp 1521 - ensure that listener port is OK (assuming you used default of 1521, change accordingly if you didn't)
    semanage port -a -t oracle_port_t -p tcp 8500 - add the new Apex HTTP port to SELinux
    After all this running:
    semanage port -l | grep oracle
    should show you:
    oracle_port_t tcp 1521, 8500
    I ignored the TNSNAMES.ORA part of the Spacewalk instructions and proceeded with the 'Client setup on 64bit platform' and 'Configuring sqlplus' sections.
    For the latter I created a bash script which I have made available in the oracle user and my own user's home directories:
    cat > configure_oracle_10g_xe.sh
    ORACLE_HOME=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    PATH=$PATH:$ORACLE_HOME/bin
    ORACLE_SID=XE
    export ORACLE_HOME ORACLE_SID PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH
    export LD_LIBRARY_PATH
    I did this as I intend to install other Oracle databases, e.g. 11gR2, on this box later so I didn't want to put the above in .bashrc.
    Having done the above you should be able to log into the database using sqlplus and the XE setup is complete.
    The upgrade of Apex 2.2 to Apex 3.2.1 was fairly painless so I won't go into much detail about it - just follow the instructions provided by Oracle.
    The only issue I had was right at the end of the process and is documented and answered in [this thread|http://forums.oracle.com/forums/thread.jspa?threadID=958611&tstart=0].
    That's it - I hope somebody will find this useful.

    On Oracle Metalink site, there are many documents which says that Oracle 32 bit software works on 32 bits OS and 64 bits software works on 64 bits OS. Official support is only in those combination....
    So there is no good way to help you in your case-XE is 32 bit application with hard codded compiled libraries which most of them would not work on 64 bit OS.
    Sorry
    8(
    Hope this helps

  • Patches for Installing Oracle 9i on Red Hat Enterprise LINUX 3.0 AS

    I recently purchased An Oracle Database Enterprise Edition � Trial License.
    I am attempting to install Oracle 9i on Red Hat Enterprise Linux Advanced Server 3 (RHEL AS 3).
    After several unsuccessful attempts and consultation with the FAQs available on the Oracle site I have discovered
    that it can not be installed without the following patches.
    P3095277_9204_LINUX.zip
    P3238244_9204_LINUX.zip
    P2617419_210_GENERIC.zip
    P3006854_9204_LINUX.zip
    P3119415_9204_LINUX.zip
    Can anyone tell me how I can aquire these patches?
    This is for an eval of the product on the platform mentioned above. If I can not complete a successful install,
    there is no way for my company to evaluate the product
    and eventually purchase it.
    You can contact me at this email address [email protected]

    Daer suneetkapoor:
    I am looking for P3006854_9204_LINUX.zip in order that can be properly able to install oracle9i on Linux AS 3. And I saw you to reply the message on forum that you can share the patch. Would you mind if you can send an email with the patch for me immediately, I will greatly appreciate it.
    thanks you
    regards
    ellery
    PS: My email address is [email protected]

  • Installing 11.5.8 on REDHAT ENTERPRISE LINUX ADVANCED SERVER 3

    Hi all,
    I am trying to install 11.5.8 on Red Hat Enterprise Linux Advanced Server 3..
    Everything is going fine till the system check like space check and JDK availablity check...
    After that when RAPID INSTALL is tryig to install...it is giving error...
    When I checked in the log..I found the following lines..
    ===================================================================
    Processing DriverFile = /tmp/RapidInstall/template/adridb.drv
    Running Instantiation Drivers for /tmp/RapidInstall/template/adridb.drv
    Invalid target file name in driver file: <s_com>/admin/out
    instantiate file:
    source : /tmp/RapidInstall/template/adrun8i.sh
    dest : /d02/oracle/proddb/8.1.7/temp/PROD/adrun8i.sh
    backup : /d02/oracle/proddb/8.1.7/temp/PROD/adrun8i.sh to /tmp/templbac/adrun8i.sh
    Command: su oraprod -c "cp /tmp/adrun8i.sh /d02/oracle/proddb/8.1.7/temp/PROD/adrun8i.sh" FAILED
    Creating File /d02/oracle/proddb/8.1.7/temp/PROD/adrun8i.sh FAILED
    setting permissions: 755
    setting permissions FAILED
    setting ownership: oraprod:dba
    setting ownership FAILED
    instantiate file:
    source : /tmp/RapidInstall/template/adrundb.sh
    dest : /d02/oracle/proddb/8.1.7/temp/PROD/adrundb.sh
    backup : /d02/oracle/proddb/8.1.7/temp/PROD/adrundb.sh to /tmp/templbac/adrundb.sh
    Command: su oraprod -c "cp /tmp/adrundb.sh /d02/oracle/proddb/8.1.7/temp/PROD/adrundb.sh" FAILED
    Creating File /d02/oracle/proddb/8.1.7/temp/PROD/adrundb.sh FAILED
    setting permissions: 755
    setting permissions FAILED
    setting ownership: oraprod:dba
    setting ownership FAILED
    Step 0 of 2
    Command: /d02/oracle/proddb/8.1.7/temp/PROD/adrun8i.sh
    Step 1 of 2: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has suceeded
    Processing Step 1 of 2
    Step 1 of 2
    Command: /d02/oracle/proddb/8.1.7/temp/PROD/adrundb.sh
    Step 2 of 2: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has suceeded
    Processing Step 2 of 2
    Processing DriverFile = /tmp/RapidInstall/template/adriapps.drv
    Running Instantiation Drivers for /tmp/RapidInstall/template/adriapps.drv
    instantiate file:
    source : /tmp/RapidInstall/template/adrunias.sh
    dest : /d01/oracle/prodcomn/temp/adrunias.sh
    backup : /d01/oracle/prodcomn/temp/adrunias.sh to /tmp/templbac/adrunias0.sh
    setting permissions: 755
    setting ownership: applprod:dba
    setting ownership FAILED
    instantiate file:
    source : /tmp/RapidInstall/template/adrunat.sh
    dest : /d01/oracle/prodcomn/temp/adrunat.sh
    backup : /d01/oracle/prodcomn/temp/adrunat.sh to /tmp/templbac/adrunat0.sh
    setting permissions: 755
    setting ownership: applprod:dba
    setting ownership FAILED
    Step 0 of 2
    Command: /d01/oracle/prodcomn/temp/adrunias.sh
    Step 1 of 2: Doing UNIX preprocessing
    Executing: chmod -R 777 /etc/oraInventory
    chmod -R 777 /etc/oraInventory has suceeded
    Processing Step 1 of 2
    Executing: su applprod -c "/d01/oracle/prodcomn/temp/adrunias.sh APPS APPS"
    Statusstring Installing iAS - InstantiateFile -d /tmp/RapidInstall/driver/ias/driver/gias.drv
    Error occurred during initialization of VM
    Unable to load native library: /tmp/RapidInstall/jre/Linux/1.3.1/lib/i386/libjava.so: symbol __libc_wait, version GLIBC_2.0 not defined in file libc.so.6 with link time reference
    Cannot execute install of iAS ORACLE_HOME
    Error - script has returned an error: 1
    Error Code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for PROD instance
    Database Availability Check
    ========================================================
    Can anyone pls help me.
    Ajoy Kumar Thapa

    Do you have experience installing Oracle db on UNIX? It seems to me that you did not even create a group and user with proper rights. Those shell scripts couldn't run.

  • How do i install firefox into my Red Hat Enterprise Linux Professional Work Station 3

    I do not know how to install firefox. To my Red Hat Enterprise Linux Professional Work Station 3.

    First make sure that you meet the System Requirements (GTK+ and GLib) for the current Firefox version.
    *http://www.mozilla.org/en-US/firefox/23.0/system-requirements/
    *http://kb.mozillazine.org/Installing_Firefox#Linux
    *https://support.mozilla.org/kb/Installing+Firefox+on+Linux

  • Installing AS 10.1.3 on Enterprise Linux

    Hi,
    I got Enterprise Linux installed and running on a new quad core server.
    Now I'm trying to install Oracle SOA Suite 10.1.3.x on this server.
    Whenever I run the /opt/oracle/runInstaller it errors...
    The Java RunTime Environment was not found at /bin/java. Hence, the Oracle Universal Installer cannot be run.
    Please visit http://www.javasoft.com and install JRE version 1.3.1 or higher an try again.
    : No such file or directory
    I did downlad and install a newer version of JRE, and also tried installing the j2sdk on the linux server - still, it doesn't seem to find it.
    Any suggestions?
    here's my env:
    PATH=/usr/kerb.........etc.....:/usr/java/j2re1.4.2_16
    JAVA_HOME=/usr/java/j2re1.4.2_16
    Thanks,
    Botzy

    try logging into you server and call: which java . Next create a symbolic link to /bin/java using "ln -s path_to_java /bin/java" and you should be ok.

  • Steps to install Oracle 10g on Red Hat Enterprise Linux 4 AS

    Hi Friends,
    I want to install oracle 10g on Red Hat Enterprise Lnux 4 AS. Can anyone give me steps how to install oracle 10g on it? My machine configuration Processor 2.66ghz Intel, Memory 1024 MB , HDD 160 GB, 845 mother board.

    In addition to the excellent suggestion by Paul, you may want to look at the internet resources such as
    http://www.puschitz.com
    http://ivan.kartik.sk
    http://www.dizwell.com
    each of which as Oracle install on Linux cookbooks.

  • Installing OBIEE on 64 bit Redhat Enterprise Linux 5

    Hello,
    We have a 64 bit Redhat Enterptise Linux 5 box, and I installed on it the 32 bit Oracle Database client as well as the OBIEE software.
    The 64 bit installation requirements state: "For 64-bit Linux system installations, you must use the Oracle Database Client 32-bit libraries."
    However, the installer never prompted me for the location of the 32 bit Oracle Database Client libraries.
    How can I make sure that these libraries were indeed used during the installation?
    Thank you very much.
    -sb

    The installer does not reference any libraries. You will need to place them in the correct or refer to the Database client libraries via your system path for your Server to work correctly.
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/b31765.pdf
    Configuring Oracle Databases BI Server Under UNIX (page 135)

  • Problem when install oracle 10g client on whitebox enterprise Linux 3

    I download oracle-client-10103.tar.bz2 and unzip.
    After set environment variable follow instruction
    I run runmefirst.sh, system cannot recognize the .o file.

    It is possible that you did not download the correct client.
    The file name for the 10.1.0.3 client for Linux x86 is ship.client.lnx32.cpio.gz. The Linux x86_64 client name is ship.client.lnxx86-64.cpio.gz .

  • Oracle 8.1.7 install fails on RH Enterprise Linux  3

    Hi!
    I've been desperately trying to install Oracle 8i database to RedHat Enterprise Linux 3 (actually it's Whitebox 3.0 that is exactly the same as RH but the logos and other RH stuff stripped), with no luck. I tried to follow the numerous instructions I've found on the net for RH 7.x versions.
    I've installed the glibc compat rpm's and jdk 1.1.8 from blackdown.org and the installer itself starts fine. First problem is that the installer can't detect the ip address of the host. After ignoring that, the install part goes fine but I get a lot of errors about makefiles during the linking. After ignoring the errors and fixing the buggy root.sh script, the Net8 assistant starts, and stops giving out error about missing java .so file in $ORACLE_HOME/lib directory. I checked it, but I can't find the .so file anywhere.
    I've tried to exit the installer, apply the stub patch from oracle and the run dbassist which starts fine but quits after a java error.
    Any ideas what should I do?

    This web site can help you:
    http://www.puschitz.com/
    Joel Pèrez

  • Installing Oracle 10g in Enterprise Linux 4

    Hi friends,
    I dont know how to install oracle 10g express edition in Enterprise linux 4.
    Am new to linux environment.
    And i have downloaded the rpm file from oracle website.
    Please help me...
    thanks in advance....

    Hi Sunil
    Please find the below link
    http://www.oracle.com/technology/pub/articles/smiley_10gdb_install.html
    you can install by these steps.
    Regards
    Khan

  • Installing Oracle 11g R 2 on Oracle Enterprise Linux 5.0 32 bit

    Hello All,
    I am installing the oracle 11g on Oracle Enterprise Linux 5.0 32 bit, when i modified the bash_profile. i am facing the below error:
    Please can you help to solve the issue
    the error i am facing while trying to switch to oracle user (su - oracle) is
    -bash: ulimit: open files: cannot modify limit: Operation not permitted
    new bash_profile:
    # .bash_profile
    # Get the aliases and functions
    if [ -f ~/.bashrc ]; then
         . ~/.bashrc
    fi
    # User specific environment and startup programs
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
    ORACLE_SID=DB11G; export ORACLE_SID
    ORACLE_TERM=xterm; export ORACLE_TERM
    PATH=/usr/sbin:$PATH; export PATH
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    # Oracle Settings
    #TMP=/tmp; export TMP
    #TMPDIR=$TMP; export TMPDIR
    #ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    #ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
    #ORACLE_SID=TSH1; export ORACLE_SID
    #ORACLE_TERM=xterm; export ORACLE_TERM
    #PATH=/usr/sbin:$PATH; export PATH
    #PATH=$ORACLE_HOME/bin:$PATH; export PATH
    LD_LIBRARY_PATH=$ORACLE_HOME/lib:/lib:/usr/lib; export LD_LIBRARY_PATH
    CLASSPATH=$ORACLE_HOME/JRE:$ORACLE_HOME/jlib:$ORACLE_HOME/rdbms/jlib;
    export CLASSPATH
    if [ $USER = "oracle" ]; then
    if [ $SHELL = "/bin/ksh" ]; then
    ulimit -p 16384
    ulimit -n 65536
    else
    ulimit -u 16384 -n 65536
    fi
    fi
    export PATH

    Hi;
    Please check below link, and compare your steps wiht it
    http://www.oracle-base.com/articles/11g/OracleDB11gR2InstallationOnEnterpriseLinux5.php
    By the way did you try to put only this to your .bash_profile
    # Oracle Settings
    TMP=/tmp; export TMP
    TMPDIR=$TMP; export TMPDIR
    ORACLE_HOSTNAME=oel5-11gr2.localdomain; export ORACLE_HOSTNAME
    ORACLE_UNQNAME=DB11G; export ORACLE_UNQNAME
    ORACLE_BASE=/u01/app/oracle; export ORACLE_BASE
    ORACLE_HOME=$ORACLE_BASE/product/11.2.0/db_1; export ORACLE_HOME
    ORACLE_SID=DB11G; export ORACLE_SID
    ORACLE_TERM=xterm; export ORACLE_TERM
    PATH=/usr/sbin:$PATH; export PATH
    PATH=$ORACLE_HOME/bin:$PATH; export PATH
    Regard
    Helios

  • RedHat Enterprise Linux 6.x

    Hello,
    Was thinking of purchasing a TS130, 1105-1AU. Does anyone know if RHEL 6.x is compatible with this server?
    TIA,
    Eddie
    Solved!
    Go to Solution.

    Linux OS'es are supported on the TS430 and not the TS130. The OS support is as follows:
    Supported operating systems for ThinkServer TS130:
    Microsoft Server 2008 R2 Foundation (64 Bit)
    Microsoft Server 2008 R2 Standard (64 Bit)
    Microsoft Server 2008 R2 Enterprise (64 Bit)
    Microsoft Server 2008 R2 Foundation SP1(64 Bit)
    Microsoft Server 2008 R2 Standard SP1 (64 Bit)
    Microsoft Server 2008 R2 Enterprise SP1(64 Bit)
    Microsoft Windows Small Business Server 2011 Standard (SBS7)
    Supported operating systems for ThinkServer TS430:
    Windows Server 2008 Foundation (64 Bit)
    Windows Server 2008 Standard (32 & 64Bit)
    Windows Server 2008 Enterprise (32 & 64Bit)
    Windows Server 2008 R2 Foundation (64 Bit)
    Windows Server 2008 R2 Standard (64 Bit)
    Windows Server 2008 R2 Enterprise (64 Bit)
    Windows Server 2008 R2 Foundation SP1 (64 Bit)
    Windows Server 2008 R2 Standard SP1 (64 Bit)
    Windows Server 2008 R2 Enterprise SP1(64 Bit)
    Windows Small Business Server 2011 Standard (SBS7)
    SUSE Enterprise Linux 10.3 (32 & 64 Bit)
    SUSE Enterprise Linux 11.1 (32 & 64 Bit)
    Red Hat Enterprise Linux 5.6 (32 & 64 Bit)
    Red Hat Enterprise Linux 6.0 (32 & 64 Bit)

  • I installed Oracle database 10g on SuSE Linux Enterprise Server 8 edition.

    I installed Oracle database 10g on SuSE Linux Enterprise Server 8 edition.
    But this massage pop up when I used my browser first time before start database.
    Actually when I clicks on yes to start database.
    The web browser you are using is not optimized for this release of Oracle enterprise manager. It is recommended that you use one of the following:
    * Microsoft Internet Explorer version 5.5, 6.0 or higher
    * Netscape Navigator version 7 and higher
    *Mozilla version 1.3.1 and higher
    Dose any one know hoe to upgrade mozilla or install internet explorer 5.5, 6.0 or higher or SLES 8.
    Regards,
    D

    You can download package for your distribution (for example) from http://www.mozilla.org or directly from SuSE ftp server ftp://ftp.suse.com/pub/suse/i386/9.1/suse/i586
    IE for linux does not exist.

  • Help: can not install ODI on SuSE Enterprise 10

    I'm trying to install ODI 10.1.3.2.0 on SuSE Enterprise 10
    Linux bottrop 2.6.16.21-0.8-smp #1 SMP Mon Jul 3 18:25:39 UTC 2006 i686 i686 i386 GNU/Linux
    but i get the following error:
    oracle@bottrop:~/tmp/setup/linux_i386> ./setup.bin
    Preparing to install...
    Extracting the JRE from the installer archive...
    Unpacking the JRE...
    Extracting the installation resources from the installer archive...
    Configuring the installer for this system's environment...
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    Launching installer...
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /tmp/install.dir.17655/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    If i activate the LAX_DEBUG environment variable i get
    oracle@bottrop:~/tmp/setup/linux_i386> LAX_DEBUG=TRUE ./setup.bin
    Preparing to install...
    Checking for POSIX df.
    Found POSIX df.
    Checking tail options...
    Using tail -n 1.
    True location of the self extractor: /home/oracle/tmp/setup/linux_i386/setup.bin
    Creating installer data directory: /tmp/install.dir.17799
    Creating installer data directory: /tmp/install.dir.17799/InstallerData
    Gathering free-space information...
    Space needed to complete the self-extraction: 620529 blocks
    Available space: 162608560 blocks
    Available blocks: 162608560 Needed blocks: 620529 (block = 512 bytes)
    Computed number of blocks to extract: 1025
    Extracting the JRE from the installer archive...
    Extracting JRE from ./setup.bin to /tmp/install.dir.17799/Linux/resource/jre_padded ...
    Extracting done, exit code = 0
    Extracting JRE from /tmp/install.dir.17799/Linux/resource/jre_padded to /tmp/install.dir.17799/Linux/resource/vm.tar.Z ...
    Extracting done, exit code = 0
    Unpacking the JRE...
    Unpacking the JRE...
    gzip is /usr/bin/gzip
    GZIP done.
    TAR done.
    Extracting the installation resources from the installer archive...
    Extracting install.zip from ./setup.bin to /tmp/install.dir.17799/InstallerData/installer.padded ...
    Extracting to padded done, exit code = 0
    Extracting from padded to zip done, exit code = 0
    Creating disk1 data directory: /tmp/install.dir.17799/InstallerData/Disk1
    Creating instdata data directory: /tmp/install.dir.17799/InstallerData/Disk1/InstData
    Extracting resources from ./setup.bin to /tmp/install.dir.17799/InstallerData/Disk1/InstData/Resource1.zip ...
    Extracting done, exit code = 0
    Configuring the installer for this system's environment...
    ========= Analyzing UNIX Environment =================================
    Setting UNIX (linux) flavor specifics.
    Importing UNIX environment into LAX properties.
    Checking for POSIX awk.
    ========= Analyzing LAX ==============================================
    LAX found............................ OK.
    LAX properties read.................. OK.
    ========= Finding VM =================================================
    Valid VM types.......................... J2
    Absolute LAX_VM path.................... /tmp/install.dir.17799/Linux/resource/jre/bin/java
    Expanded Valid VM types................. JRE_J2 JDK_J2
    * Using VM.....(lax.nl.current.vm)...... /tmp/install.dir.17799/Linux/resource/jre/bin/java
    checking for NPTL + JVM vulernability...
    NPTL detected! checking for vulnerable JVM....
    awk: error while loading shared libraries: libdl.so.2: cannot open shared object file: No such file or directory
    major :
    minor :
    patch :
    vendor:
    Vulnerable JVM detected... implementing workaround
    ========= Virtual Machine Options ====================================
    LAX properties incorporated............. OK.
    classpath............................... "/tmp/install.dir.17799/InstallerData:/tmp/install.dir.17799/InstallerData/installer.zip"
    main class.............................. "com.zerog.ia.installer.Main"
    .lax file path.......................... "/tmp/install.dir.17799/temp.lax"
    user directory.......................... "/tmp/install.dir.17799"
    stdout to............................... "console"
    sterr to................................ "console"
    install directory....................... ""
    JIT..................................... none
    option (verify)......................... off
    option (verbosity)...................... none
    option (garbage collection extent)...... none
    option (garbage collection thread)...... none
    option (native stack max size).......... none
    option (java stack max size)............ none
    option (java heap max size)............. 50331648
    option (java heap initial size)......... 16777216
    option (lax.nl.java.option.additional).. none
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    /bin/ls: error while loading shared libraries: librt.so.1: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    dirname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    basename: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    ========= Display settings ===========================================
    hostname: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    X display............................... remote
    WARNING: The name of this host () and the setting
    of this shell's DISPLAY (localhost:10.0) variable do not match.
    If this launcher is being displayed to a Microsoft Windows desktop
    through X Windows the Java Virtual Machine might abort. Try running
    this installer locally on the target system or through X Windows to
    another UNIX host if the installer unexpectedly fails.
    UI mode................................. gui
    Launching installer...
    ========= VM Command Line ============================================
    options: -Djava.compiler=NONE -Xmx50331648 -Xms16777216
    CLASSPATH:/tmp/install.dir.17799/InstallerData:/tmp/install.dir.17799/InstallerData/installer.zip:
    grep: error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
    ========= Forking JAVA =============================================
    /tmp/install.dir.17799/Linux/resource/jre/bin/java: error while loading shared libraries: libpthread.so.0: cannot open shared object file: No such file or directory
    Did not found any information/help about this issue! Can somebody help?

    i am getting the same thing but with my ipad. i've successfully downloaded the siriusxm internet radio app to my iphone, but i can't to my ipad. just like you, the app is greyed out on my ipad. any suggestions?

Maybe you are looking for

  • Qosmio F60 keeps freezing up

    Ok Im getting desperate here, I really dont want to get my F60 repaired. Ive had it for about 2 weeks now, and it constantly freezes. It freezes mainly when I put the thing to sleep. It also freezes sometimes when booting up, waking up, switching use

  • Dynamic attach RTF in AfterReport Trigger

    Hi all, I have a concurrent program where i want in runtime to attach RTF template based on some logic. I placed my code in After Report Trigger but i receive error when submitting the concurrent request: REP-1401: 'afterreport': Fatal PL/SQL error o

  • Add multiple selection screen

    Hi! I've set up an initial screen (selection screen) in my dynpro-program, with company code (BUKRS) as input field. This screen has been developed using the Screen Painter and is of the screen type 'Normal'. I have managed to add a search help to th

  • Preview icon for DV video files is blank

    I have just installed OSX 10.9 and I find that the preview icon in the Finder for a DV tape file is blank. This is in the column mode. Before Mavericks a small video window was displayed that I could click to get a miniature video preview. Any sugges

  • I can't open & install update for FlashPlayer

    I successfully downloaded the update for Flash Player. I was prompted to choose a way to open it. I chose Adobe Download Assistant. That didn't work. Can I change my choice, and if so what should I choose. JodiGirl