Install VMWARE Workstation on Oracle Enterprise Linux 5.2

Hi,
I installed Oracle Enterprise Linux 5.2 and then i want to install Vmware Workstation 6.5. But the kernel pre-configured is installed with XEN option into kernel. And the Vmware package is not compatible with.
So i must to desinstall Xen option from the kernel.
Is someone can explain to me how to do ?
Regards.
Stéphane.

There are several variations on the kernel RPM package. Some have XEN support and some do not.
1) Make sure you have the simple kernel-<version> RPM package installed:
# rpm -q kernel-$(uname -r)
and install it if you don't:
# up2date --install kernel
2) Remove the kernel-xen RPM package:
# rpm -e kernel-xen
3) Reboot into your vanilla kernel installed in step #1

Similar Messages

  • How to install Oracle Enterprised Linux on VMware PLayer 4

    Hi Everyone,
    My name is John and I've a small issue which I would like to share with you and hopefully, you are able to assist.
    My laptop is installed with a Window 7 Home Edition operating system and I've installed VMware-player-4.0.2. After reboot, I've also downloaded the file - V29609-01 which is the ISO file of Oracle Enterprise Linux 6.2.
    After that, I've tried to create a Virtual Machine - Oracle Enterprise Linux using the VMware Player by specifying the path and file name of the V29609-01.iso file on my local c:\ drive. I've tried it several times, but every time it just returns the message - 'pxe-e53 no boot filename received' and it just hangs there without proceeding further. Please let me know what I've done wrong and the correct steps and procedures to solve this problem as this is my first time installing a Linux operating system. Thank you for your assistance.
    Regards,
    John

    Hi,
    Can you clarify and explain what is your exact meaning of 'Are you sure you've added the ISO to the VM to boot from?'? Because the following is what I did:
    1.) Click the Create A New Virtual Machine.
    2.) Select the 'Install disc image file (iso):' option and enter the full path of the V29609-01.iso (Oracle Enterprise Linux 6.2) file that I've downloaded from https://edelivery.oracle.com/. But underneath it, that is a message saying - 'Could not detect which operating systems is in this dsic image. You will need to specify which operating system will be installed.'
    3.) Click 'Next'.
    4.) I chose "Linux' under the Guest operating system and chose 'Oracle Enterprise Linux' under the Version drop down.
    5.) Click 'Next'.
    6.) I left the Virtual machine name as 'Oracle Enterprise Linux' and click 'Next'.
    7.) I set the Maximum disk size to 300 GB and have the 'Split virtual disk into multiple files' option selected and click 'Next'.
    8.) I have the 'Power on this virtual machine after creation' checked and click 'Finish'.
    9.) A black screen displayed inside the VMware Player saying:
    'CLIENT MAC ADDR: 00 0C 289 ......
    PXE-E53: No Boot filename received
    PXE-M0F: Exiting Intel PXE ROM.
    Operating System not found
    10.) And the process just hangs there.
    Regards,
    John

  • Install Oracle Enterprise Linux

    We have an old workstation (Dell Precision WorkStation 530 with 2.40 GHz Intel Xeon processor, 2 GB RAM, and 3 36-GB hard dirves) and I would like to use it as a test box for Oracle on Linux. I tried to install Oracle Enterprise Linux, but it stuck at the some point every time, either during installing libraries/modules or formatting disk. The place the installation stuck varies. It does give any error message, but the installation just stops there fore hours or days. I tried Oracle Enterprise Linux 4 DVD, Oracle Enterprise Linux 5 DVD, and latest image CDs downloaded form metalink. All have the same issue. That installation starts as normal, then slow down, then freeze. I tried installing Fedora Core on the box using CDs from a Linux book yesterday, but it was successful and worked fine. I am wondering where there are some hardware incompatibility or other issues associated with the box. Any suggestions are greatly appreciated. Thanks.
    George

    Hi, George.
    I think you'll have to determine the motherboard and other periferals in your machine to find out which one is incompatible with OEL. The most probable culprit is the motherboard. Find out which model it is and Google, using the model and the term "Enterprise Linux" (or RHEL or Centos, they are all the same).
    There may be workarounds, if it's indeed an incompatibility issue: settings in the CMOS Setup or advanced parameters for booting the installation -- usually related to the drives (HD, DVD, SATA mode etc) or to P'n'P periferals (USB, for instance).
    Regards,
    Marcio

  • 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

  • Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110

    eth0      Link encap:Ethernet  HWaddr 00:15:17:F7:81:53 
              inet addr:192.1.1.11  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::215:17ff:fef7:8153/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:0 errors:0 dropped:0 overruns:0 frame:0
              TX packets:220 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:100
              RX bytes:0 (0.0 b)  TX bytes:15868 (15.4 KiB)
              Memory:dfcc0000-dfce0000
    eth1      Link encap:Ethernet  HWaddr B8:AC:6F:92:C2:0C 
              inet addr:192.1.1.9  Bcast:192.1.1.255  Mask:255.255.255.0
              inet6 addr: fe80::baac:6fff:fe92:c20c/64 Scope:Link
              UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
              RX packets:263812 errors:0 dropped:0 overruns:0 frame:0
              TX packets:58 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:1000
              RX bytes:18959341 (18.0 MiB)  TX bytes:9476 (9.2 KiB)
              Interrupt:169 Memory:dfbf0000-dfc00000
    lo        Link encap:Local Loopback 
              inet addr:127.0.0.1  Mask:255.0.0.0
              inet6 addr: ::1/128 Scope:Host
              UP LOOPBACK RUNNING  MTU:16436  Metric:1
              RX packets:1393 errors:0 dropped:0 overruns:0 frame:0
              TX packets:1393 errors:0 dropped:0 overruns:0 carrier:0
              collisions:0 txqueuelen:0
              RX bytes:4035655 (3.8 MiB)  TX bytes:4035655 (3.8 MiB)Any help please. I am a first time Linux user.
    Thanks
    A/A

    This looks like a follow up of Re: Error after installing Oracle Enterprise Linux (Release 5) on Dell T 110
    Can you give more details what you are trying to do or trying to accomplish. Where are you trying to ping to?
    It could be that you have not defined your gateway or DNS server for name to IP mapping. What is the output of
    # netstat -rn
    # cat /etc/resolv.conf

  • How to install and use the Gnome-DO application in oracle enterprise Linux

    My Oracle Enterprise linux is 5.3,
    I want to install and use the Gnome-Do(http://do.davebsd.com) in my box.
    Please help me regarding this.
    With Regards
    DSK

    According to Google, Gnome-Do has known issues about CPU bugs and hogs and the latest incarnation does not seem to be available for RHEL and clones. You should have more luck with Linux Desktop distributions like Fedora and Ubuntu. Or you could try to build from source using the info at: http://do.davebsd.com/wiki/Installing_Do. Good luck - I wouldn't bother.

  • 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

  • Oracle Enterprise Linux 5u5 install issue

    Please help.
    I'm trying to install Oracle Enterprise Linux 5u5 on a desktop computer.
    In GUI mode, after the network adapter settings screen i press Next, and the system hangs.
    In Text mode, after the network adapter settings screen i press Next, and the following error is displayed.
    ------------------| Exception Occurred |------------------
    Traceback (most recent call first):
    File
    "/usr/lib/anaconda/textw/timezone_text.py",
    line 33, in getTimezoneList
    zt = zonetab.ZoneTab()
    File
    "/usr/lib/anaconda/textw/timezone_text.py",
    line 61, in __call__
    timezones = self.getTimesoneList()
    File "/usr/lib/anaconda/text.py", line
    582, in run
    rc = win(self.screen, instance)
    File "/usr/bin/anaconda", line 955, in
    <module>
    anaconda.intf.run(anaconda)
    AttributeError: 'module' object has no attribute 'ZoneTab'
    I've tried different languages and different network adapter settings, but I don't think it has something to do with the problem.
    Can anyone tell me what to do to continue the installation?
    Thanks in advance

    Can you provide more information, like what is your desktop system?
    Besides, Enterprise Linux is not designed to work on Desktop or other portable computers. Your Ethernet may not be the only issue.
    You may check the following link:
    https://bugzilla.redhat.com/show_bug.cgi?id=247399
    " I am seeing this behaviour as well on installing Fedora 9 Beta on an older Dell Latitude C840 laptop. I was able to get this error in a subsequent install by skipping the network
    configuration."
    "This really seems like something that could be caused by errors reading the CD media. Could someone who is seeing this take a look at tty4 or /tmp/syslog and see if there are kernel read error messages?"
    Edited by: waldorfm on Nov 1, 2010 11:27 AM

  • Installing Oracle 9iR2 on Oracle Enterprise Linux

    Hi.
    Has anyone had success in installing oracle 9iR2 on Oracle Enterprise Linux release 5? I found some sites such as http://www.puschitz.com/InstallingOracle9i.shtml
    and http://www.oracle.com/technology/tech/linux/install/files/oracle9r2installonrh9.txt. I followed these but since they are not specific to oracle enterprise linux installs, i think there is stuff missing. I loaded all the libraries they reccommended, but when i run the installer, i get Exception in thread "main" java.lang.NoClassDefFoundError: oracle.sysman.oii.oiic.OiicInstaller at java.lang.Class.initializeClass(libgcj.so.7rh)
    caused by: java.lang.ClassNotFoundException: oracle.ewt.lwAWT.BufferedFrame not found in gnu.gcj.runtime.SystemClassLoader
    Can someone assist?

    That's right. OEL5 has to be verified against the supported versions and workarounds and or patches will be released by Oracle so these issues can be solved. In the mean time, OEL4 has to be used.
    ~ Madrid.

  • Oracle Enterprise Linux - Installing Oracle

    Hi everyone,
    I am trying to install Oracle on Oracle Enterprise Linux. I know, I know...it seems silly to install Oracle on Oracle enterprise Linux. What seems even more ridiculous is that the default install does not include everything you'd need to install Oracle. Here's the error...it's all over Google, but none of the solutions are working for me. Looks like I just need a package, but where do I get it?
    Preparing to launch Oracle Universal Installer from /tmp/OraInstall2011-05-04_10-53-00AM. Please wait ...oracle@ots-corp-lxtest: lxtest : /u01/orainst/database > Exception in thread "main" java.lang.UnsatisfiedLinkError: /tmp/OraInstall2011-05-04_10-53-00AM/jre/1.4.2/lib/i386/libawt.so: libXp.so.6: cannot open shared object file: No such file or directory
         at java.lang.ClassLoader$NativeLibrary.load(Native Method)
         at java.lang.ClassLoader.loadLibrary0(Unknown Source)
         at java.lang.ClassLoader.loadLibrary(Unknown Source)
         at java.lang.Runtime.loadLibrary0(Unknown Source)
         at java.lang.System.loadLibrary(Unknown Source)
         at sun.security.action.LoadLibraryAction.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
    Thanks in advance!

    There was a very similar question a few hours ago. You may want to check the answer:
    Packages error while installing Oracle Management Agent.
    Please always post the 4 digit version of Oracle you are trying to install and also the Oracle Linux version / distribution you are using.
    Since you are using Oracle Linux you can use Oracle public yum. Details are here:
    http://public-yum.oracle.com/
    Then all you need to do as root or superuser is:
    yum install libXp.i386
    You may also want to install:
    yum install oracle-validated
    which will also setup the account, kernel parameters, etc.
    Oracle Enterprise Linux is a clone of Red Hat Enterprise Linux, which should explain why it does not include everything you'd need to install Oracle database. As of Oracle Linux 5.5 the product was renamed from OEL to OL and since 5.6 the default kernel is Oracle Linux UEK, which is Oracle customized.

  • Guide For Installing  Oracle Enterprise Linux in Virtual Box

    Hello,
    Any good tutorial available for installation of Oracle Enterprise Linux in Virtual Box?
    Regards

    Installing Oracle on Virtual box is similar to the one you install on regular Linux box.
    just make sure u have enough memory assigned for VMbox..
    create user, group, directories and change permissions
    change profile
    change all the kernal options listed in install guide and ur good

  • How to install ASM on Oracle Enterprise Linux 6.3

    I am a bit lost .. I have Oracle Enterprise Linux 6.3 and ULN subscription:
    The only package available through yum is oracleasm-support.x86_64
    I have downloaded http://download.oracle.com/otn_software/asmlib/oracleasmlib-2.0.4-1.el6.x86_64.rpm but i am still missing the kernel drivers i guess:
    [root@testdb1 user]# uname -r
    2.6.32-279.5.2.el6.x86_64
    [root@testdb1 user]# cat /etc/redhat-release
    Red Hat Enterprise Linux Server release 6.3 (Santiago)
    [root@testdb1 user]# cat /etc/oracle-release
    Oracle Linux Server release 6.3
    [root@testdb1 user]# yum repolist
    Loaded plugins: rhnplugin, security
    repo id repo name status
    ol6_x86_64_UEK_latest Latest Unbreakable Enterprise Kernel for Oracle Linux 6 (x86_64) 64
    ol6_x86_64_latest Oracle Linux 6 Latest (x86_64) 17,685
    repolist: 17,749
    [root@testdb1 user]# yum list updates
    Loaded plugins: rhnplugin, security
    [root@testdb1 user]# oracleasm
    oracleasm oracleasm-discover
    [root@testdb1 user]# oracleasm update-driver
    Kernel:          2.6.32-279.5.2.el6.x86_64 x86_64
    Driver name:     oracleasm-2.6.32-279.5.2.el6.x86_64
    Driver for kernel 2.6.32-279.5.2.el6.x86_64 does not exist
    [root@testdb1 user]# yum search oracleasm
    Loaded plugins: rhnplugin, security
    ========================================================================================================== N/S Matched: oracleasm ===========================================================================================================
    oracleasm-support.x86_64 : The Oracle Automatic Storage Management support programs.
    oracleasmlib.x86_64 : The Oracle Automatic Storage Management library userspace code.
    What am i missing ?

    953423 wrote:
    Sys admins say they have kernel panics and issues with current hardware and UEK. :( Yet another problem...What hardware are you using? The UEK that ships with 6.3 is based on a Linux 3.0.16 kernel so it should have much better hardware support than the original Red Hat kernel. Though, if you have ULN access, you should open an SR for this.

  • How to install application server (10.1.3.x) on Oracle enterprise linux 4

    the installer said that
    ===============================
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be redhat-Red Hat Enterprise Linux AS release 3, redhat-Red Hat Enterprise Linux AS release 4, redhat-Red Hat Enterprise Linux ES release 3, redhat-Red Hat Enterprise Linux ES release 4 or SuSE-9
    Failed <<<<
    =================================
    application server (10.1.3.x) do not support Oracle enterprise linux 4 update 5, right?

    Hi James,
    Oracle Enterprise Linux 4 is supported, but not yet in the oraparam.ini
    You can either comment the OS line in oraparam.ini, to prevent OS checking.
    Or run runInstaller -ignoreSysPrereqs if you're sure all other prerequisites are met.
    The first option is preferable, since the second will ignore all prerequisites.
    The installer should run fine.
    Greetings
    Jaap

  • Oracle 11gr2 in Oracle Enterprise Linux 64 bit

    Hi,
    I am installing Oracle 11G(11.2.0.1) in Oracle Enterprise Linux 64 bit(VM ware workstation). I have installed all the rpm's and prerequsites but when i run ./runInstaller and start the installation the GUI screen is very slow in response and screens are flickering. What could be the possible reason for this?
    Regards,
    007

    Hi Srini,
    plz find the install log below
    oracle_install_db_LoadExampleSchemas false
    oracle_install_db_MountPointLocation
    oracle_install_db_QuickInstallOption false
    oracle_install_db_ReceiveEmailNotification false
    oracle_install_db_RecoveryBackUpLocation
    oracle_install_db_RecoveryBackUpPassword Protected value, not to be logged
    oracle_install_db_RecoveryBackUpUsername
    oracle_install_db_SID
    oracle_install_db_SecureConfigDisabled false
    oracle_install_db_SetOracleBase false
    oracle_install_db_StarterDatabaseType GENERAL_PURPOSE
    oracle_install_db_StorageType 0
    oracle_install_db_SuperAdminPasswords Protected value, not to be logged
    oracle_install_db_SuperAdminSamePasswdForAll Protected value, not to be logged
    oracle_install_db_SystemClass DESKTOP_CLASS
    oracle_install_db_Type 1
    oracle_install_db_UseDBControl true
    oracle_install_db_UseFileSystemForRecovery false
    oracle_install_db_UseSamePassword false
    INFO: Launching Oracle Database 11g Release 2 Installer
    INFO: Started executing the flow in INTERACTIVE mode
    INFO: Waiting for completion of background operations
    INFO: Finishing all forked tasks at state prepInstall
    INFO: Waiting for completion all forked tasks at state prepInstall
    INFO: All forked task are completed at state prepInstall
    INFO: Completed background operations
    INFO: Executing action at state prepInstall
    INFO: Completed executing action at state <prepInstall>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <prepInstall>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <prepInstall>
    INFO: Completed validating view at state <prepInstall>
    INFO: Validating state <prepInstall>
    WARNING: Validation disabled for the state prepInstall
    INFO: Completed validating state <prepInstall>
    INFO: Verifying route success
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state decideOCMInstall
    INFO: Completed executing action at state <decideOCMInstall>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <decideOCMInstall>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <decideOCMInstall>
    INFO: Completed validating view at state <decideOCMInstall>
    INFO: Validating state <decideOCMInstall>
    WARNING: Validation disabled for the state decideOCMInstall
    INFO: Completed validating state <decideOCMInstall>
    INFO: Verifying route requireOCM
    INFO: Get view named [OCMDetailsUI]
    INFO: View for [OCMDetailsUI] is oracle.install.ivw.common.view.OCMDetailsGUI@2dd1282d
    INFO: Initializing view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Completed initializing view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Displaying view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Completed displaying view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Loading view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Completed loading view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Localizing view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Completed localizing view <OCMDetailsUI> at state <getOCMDetails>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state getOCMDetails
    INFO: Completed executing action at state <getOCMDetails>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <getOCMDetails>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <getOCMDetails>
    INFO: Completed validating view at state <getOCMDetails>
    INFO: Validating state <getOCMDetails>
    SEVERE: You have not provided an email address.
    Do you wish to remain uninformed of critical security issues in your configuration?
    INFO: Completed validating state <getOCMDetails>
    INFO: Verifying route success
    INFO: Get view named [InstallOptionsUI]
    INFO: InstallOptionsUI Entering Constructor
    INFO: InstallOptionsUI Exiting Constructor
    INFO: View for [InstallOptionsUI] is oracle.install.ivw.db.view.InstallOptionsUI@62892cc5
    INFO: Initializing view <InstallOptionsUI> at state <installOptions>
    INFO: Completed initializing view <InstallOptionsUI> at state <installOptions>
    INFO: Displaying view <InstallOptionsUI> at state <installOptions>
    INFO: Completed displaying view <InstallOptionsUI> at state <installOptions>
    INFO: Loading view <InstallOptionsUI> at state <installOptions>
    INFO: Completed loading view <InstallOptionsUI> at state <installOptions>
    INFO: Localizing view <InstallOptionsUI> at state <installOptions>
    INFO: Completed localizing view <InstallOptionsUI> at state <installOptions>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state installOptions
    INFO: Completed executing action at state <installOptions>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <installOptions>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: InstallOptions UI Entering & Exiting processInput
    INFO: Validating view at state <installOptions>
    INFO: Completed validating view at state <installOptions>
    INFO: Validating state <installOptions>
    INFO: Completed validating state <installOptions>
    INFO: InstallOptionsAction Actions.transition called
    INFO: selectedInstallOption is :INSTALL_DB_AND_CONFIG
    INFO: launchNETCA = true
    INFO: Verifying route system_class
    INFO: Get view named [SystemClassUI]
    INFO: SystemClassUI Entering Constructor
    INFO: SystemClassUI Exiting Constructor
    INFO: View for [SystemClassUI] is oracle.install.ivw.db.view.SystemClassUI@1e38d900
    INFO: Initializing view <SystemClassUI> at state <getSystemClass>
    INFO: Completed initializing view <SystemClassUI> at state <getSystemClass>
    INFO: Displaying view <SystemClassUI> at state <getSystemClass>
    INFO: Completed displaying view <SystemClassUI> at state <getSystemClass>
    INFO: Loading view <SystemClassUI> at state <getSystemClass>
    INFO: Completed loading view <SystemClassUI> at state <getSystemClass>
    INFO: Localizing view <SystemClassUI> at state <getSystemClass>
    INFO: Completed localizing view <SystemClassUI> at state <getSystemClass>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state getSystemClass
    INFO: Completed executing action at state <getSystemClass>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <getSystemClass>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: SystemClassUI Entering & Exiting processInput
    INFO: Validating view at state <getSystemClass>
    INFO: Completed validating view at state <getSystemClass>
    INFO: Validating state <getSystemClass>
    INFO: Completed validating state <getSystemClass>
    INFO: selectedSystemClass is :SERVER_CLASS
    INFO: Verifying route server_class_yes
    INFO: Get view named [NodeSelectionUI]
    INFO: NodeSelectionUI Entering Constructor
    INFO: strColHeader[0]:
    INFO: strColHeader[1]:Node Name
    INFO: View for [NodeSelectionUI] is oracle.install.ivw.db.view.NodeSelectionUI@1777f5b2
    INFO: Initializing view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Completed initializing view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Displaying view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Completed displaying view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Loading view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Completed loading view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Localizing view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: strColHeader[0]:
    INFO: strColHeader[1]:Node Name
    INFO: Completed localizing view <NodeSelectionUI> at state <nodeSelectionPage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state nodeSelectionPage
    INFO: Completed executing action at state <nodeSelectionPage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <nodeSelectionPage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <nodeSelectionPage>
    INFO: Completed validating view at state <nodeSelectionPage>
    INFO: Validating state <nodeSelectionPage>
    INFO: Completed validating state <nodeSelectionPage>
    INFO: NodeSelectionAction Actions.transition called
    INFO: selectedInstallOption is :INSTALL_DB_AND_CONFIG
    INFO: Verifying route create_and_configureDB
    INFO: Get view named [installTypeUI]
    INFO: View for [installTypeUI] is oracle.install.ivw.db.view.InstallTypeGUI@141ba1f1
    INFO: Initializing view <installTypeUI> at state <installType>
    INFO: Completed initializing view <installTypeUI> at state <installType>
    INFO: Displaying view <installTypeUI> at state <installType>
    INFO: Completed displaying view <installTypeUI> at state <installType>
    INFO: Loading view <installTypeUI> at state <installType>
    INFO: Completed loading view <installTypeUI> at state <installType>
    INFO: Localizing view <installTypeUI> at state <installType>
    INFO: Completed localizing view <installTypeUI> at state <installType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state installType
    INFO: Completed executing action at state <installType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <installType>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Validating view at state <installType>
    INFO: Completed validating view at state <installType>
    INFO: Validating state <installType>
    WARNING: Validation disabled for the state installType
    INFO: Completed validating state <installType>
    INFO: Verifying route basic_yes
    INFO: Get view named [QuickInstallUI]
    INFO: inventory location is/data/u01/app/oraInventory
    INFO: inventory location is/data/u01/app/oraInventory
    WARNING: SRVCTL not found as there is no Grid Infrastructure home on the box
    WARNING: KFOD not found at
    INFO: inventory location is/data/u01/app/oraInventory
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: View for [QuickInstallUI] is oracle.install.ivw.db.view.QuickInstallUI@211fc4dd
    INFO: Initializing view <QuickInstallUI> at state <quickInstallPage>
    INFO: Completed initializing view <QuickInstallUI> at state <quickInstallPage>
    INFO: Displaying view <QuickInstallUI> at state <quickInstallPage>
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: Completed displaying view <QuickInstallUI> at state <quickInstallPage>
    INFO: Loading view <QuickInstallUI> at state <quickInstallPage>
    INFO: Completed loading view <QuickInstallUI> at state <quickInstallPage>
    INFO: Localizing view <QuickInstallUI> at state <quickInstallPage>
    INFO: Completed localizing view <QuickInstallUI> at state <quickInstallPage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state quickInstallPage
    INFO: Completed executing action at state <quickInstallPage>
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Moved to state <quickInstallPage>
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    INFO: size estimation for SEinstall is 4324.242483139038
    INFO: size estimation for EEinstall is 4397.013998031616
    regards,
    007

  • P2V of Oracle Enterprise Linux Release 4 32 Bit

    Hello All, Using VMware Converter can we do P2V of Oracle Enterprise Linux Release 4 32 Bit? -Suresh

    We made some changes and P2V worked. 1. Installed VMware converter on Local Network 2. Started P2V and Selected supported VM Hardware Version to 4 or 7 3. Provided IP address manually and removed the Data disk for migration. 4. Migration was successful

Maybe you are looking for

  • Asking for system password

    We recently bought 3 new Intel Core Duo running 10.4.8 but we have to downgrade to 10.4.7 since our POS manufacturer informs us that there are some issues with 10.4.8. The downgrade seems okay but when we try to change the date in the Point of Sale s

  • Can't use Blend with Z10

    Tried opening Blackberry Blend with my Z10 connected to the computer - it tells me I need version 10.3 of the BB OS, but when I try to update the phone OS it tells me my current version (10.2.1.3062) is the latest version.

  • Can EXIF (or metadata) data be manipulated in LR?

    Can EXIF (or metadata) data be manipulated in LR?

  • Any known spyware/bot issues for Macs?

    Hi, I have been experiencing a drastic slowdown in the speed that internet pages load, for about a week now. They used to appear almost instantly after hitting the reload button. Now most, but strangely not all, will take 10 to 20 seconds to load and

  • Restoring Oracle 11g backup to 10g (or XE)

    Is there a way to restore the Oracle 11g backup to 10g (or XE). - impdp/expdp will be helpful for this exercise. - or i have to use some other utility. Please let me know. w\