Where to download OEL 5.6 with kernel Red Hat that supports the ACFS RAC?

People,

Hello. I want to install Oracle 11 g RAC 2 with 2 Virtual Machines whose BONES are Oracle Linux 5.6 in VMPlayer.

I downloaded Oracle Linux 5.6 Media Pack for x86_64 (name of file V24479-01) of https://edelivery.oracle.com/linux.

But when I install Oracle 11 g RAC 2 and run the root.sh script, it displays "ACFS is not supported on oracle-linux-version-5 - 6.0.1.

Some people said that 5.6 OEL comes with 2 nuclei: the original Red Hat and Oracle UEK.
We can choose not not to use the UEK. This means media Original Red Hat that ACFS RAC UEK and GR 11, 2 does not work.

My questions are:

First of all, where download OEL 5.6 with the original kernel Red Hat takes supported ACFS of GR 11, 2 CARS?

Second, how to recognize the 2 nuclei (Red Hat and UEK) comes from the file V24479-01 of https://edelivery.oracle.com/?


Thank you.

the steps are:

1. install the operating system, it will use the default UEK
2 - Edit/etc/grub.conf, as described above
3 - reboot
4 - Check the kernel version in a terminal:

uname -r

If you did it right, IIT should be something like:

2.6.18-238.el5

but certainly not something like this:

2.6.32-200.13.1.el5uek

5 install the grid Infrastructure, then the database

According to what you say, steps 1 to 3 are already done, all you have to do is to check the version of the kernel running and continue with the installation

Tags: Database

Similar Questions

  • I am not able to download apps for my iPhone on the App Store. He just 'waiting '. But never starts the download. I tried with wifi and mobile data. The two are not download apps

    I am not able to download apps for my iPhone on the App Store. He just 'waiting '. But never starts the download. I tried with wifi and mobile data. The two are not downloading the applications Can u find out what's wrong? I use iPhone 5s

    I had the same problem. At the same time hold the screen lock button and the home button until your iPhone restarts. That solved the problem for me.

  • I downloaded version 5.7 of Lightroom in order to support the captive capture on my Nikon D750 and its still does not. More when I was invited to give my serial number for the update that was not the case that are on my Adobe profile, although I purchas

    I downloaded version 5.7 of Lightroom in order to support the captive capture on my Nikon D750 and its still does not. More when I was not invited to give my serial number for update is no where on my Adobe profile, although I bought and pays every month for my creative cloud for photography. Help, please

    Your subscription to cloud shows correctly on your account page?

    If you have more than one email, you will be sure that you use the right Adobe ID?

    https://www.adobe.com/account.html for subscriptions on your page from Adobe

    If Yes

    Some general information for a subscription of cloud

    Cloud programs don't use serial... numbers you, connect you to your cloud account paying to download & install & activate... you may need to sign out of the cloud and restart your computer and log into the cloud for things to work

    Sign out of your account of cloud... Restart your computer... Connect to your paid account of cloud

    -Connect using http://helpx.adobe.com/x-productkb/policy-pricing/account-password-sign-faq.html

    -http://helpx.adobe.com/creative-cloud/kb/sign-in-out-creative-cloud-desktop-app.html

    -http://helpx.adobe.com/x-productkb/policy-pricing/activation-network-issues.html

    -http://helpx.adobe.com/creative-suite/kb/trial--1-launch.html

    -ID help https://helpx.adobe.com/contact.html?step=ZNA_id-signing_stillNeedHelp

    -http://helpx.adobe.com/creative-cloud/kb/license-this-software.html

    If no

    This is an open forum, Adobe support... you need Adobe personnel to help

    Adobe contact information - http://helpx.adobe.com/contact.html

    -Select your product and what you need help with

    -Click on the blue box "still need help? Contact us. "

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • When I connect to my Photo CC account it says "unable to download certain applications now, but it is said that all the time.

    When I connect to my Photo CC account it says "unable to download certain applications now, but it is said that all the time.

    No one can tell you anything without the proper system or other technical details info.

    Mylenium

  • WHERE CAN I DOWNLOAD ORACLE 6I FORMS SERVER FOR RED HAT LINUX

    I HAVE A REQUIREMENT TO INSTALL OFSA 4.5 AND I NEED ORACLE 6I FORMS SERVER FOR RED HAT LINUX.


    CAN ANYONE HELP?

    THANKS IN ADVANCE

    Kind regards
    CESAR ALVAREZ

    Developer 6i is no longer available for download (at least not that I can find: it is not available in the usual places [e-Delivery, OTN, My Oracle Support]). The only way I can think of that you can get the version you need for Red Hat is to contact the Oracle Support and submit a special request to the software or if you know someone who has a copy of the software - ask them to make you a copy.

    @BelMan, your link to http://www.cedet.dk/ours/otndownloads.html is no longer valid.

    Hope this helps,
    Craig B-)

    If someone useful or appropriate, please mark accordingly.

  • Windows media player 11 on downloaded videos error "cannot read drive file does not support the file type or does not take in charge the codec used to compress the file.

    • now that the full version of k'lite seems to stop what is happening why hasent windows incorporated something similar in the windows media player 11, or they have another type of codec full, we can use to make this.only so many people have the same problem .please can help you.

    Hi bbdunford,

    Windows Media Player cannot play the file. The player might not support the file type or does not support the codec used to compress the file.

     

    You may encounter this error message for the following reasons:

    (a) the file type is supported by the drive, but the file was compressed by using a codec that is not supported by the player.

    (b) the file might have been encoded with a codec that is not supported by Windows Media Player. If this is the case, Windows Media Player cannot play the file.

    Windows media player will play only the files and videos only if it supports this type of file.

    Method 1

    Check if the video file format is supported by Windows media player using the link below.

    Information on the types of media files that supports Windows Media Player

    http://support.Microsoft.com/kb/316992

    If the files are not supported by Windows media player, then you will need to use a few players from third party that supports this file format.

    Method 2

    See the link below for more information on the codec.

    Codecs: Frequently asked questions

    http://Windows.Microsoft.com/en-us/Windows7/codecs-frequently-asked-questions

    I hope this helps!

    Halima S - Microsoft technical support.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Where to get the authentec fingerprint drivers for various computers laptops hp that supports the functionality of the biometric device in windows 7?

    Hello

    We build a Windows 7 SOE for a large company that takes care of many models of computers laptops hp. Each of these laptops comes with a fingerprint reader, and we would like to use the built in support of fingerprint (biometric devices) reader that is running windows 7. The models that we support are as follows:

    • HP 6910P
    • HP 6930p
    • HP 8510w
    • HP 8530w

    We tried using the drivers of fingerprint Authentec (aes2501a) on the hp website, but after the installation, the biometric device option is not in windows 7. We contacted HP about this and they said that we must use the driver coming from windows update before this option appears. After installing the driver from windows update, the option of the biometric device seemed that hp said. Therefore, because of the way that our SOE is built, we demand that the executable that is identical to that on windows update. Anyone know where we can find packages both x 64 and x 86 for this device driver, which are the same as those found when you go to update windows on these machines running windows 7? Let me know if you need any clarification.

    Thank you

    Hi Mustapha ETS.

    Step 1: Locate the stand-alone file by inserting the device model number
    a. visit http://catalog.update.microsoft.com/v7/site/Home.aspx
    in the search box, enter the model number of the perimeter search of the driver.
    c. download the right driver for your windows and install it successfully on all computers.

    Note: If there is no available stand-alone file, I'm afraid you'll have to visit update of Windows on all computers and the installation of the update done or contact the device manufacturer to obtain the driver.

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • Firefox4 didn't transfer my identity safe for logons. Is there a way to replace Firefox4 with an earlier version that allows the secure identity?

    I use the secure identity with Explorer, and I was able to use it with an earlier version of Firefox that I had downloaded.

    You can download the previous version at this url:

    http://www.Mozilla.com/en-us/Firefox/all-older.html

    Use Add and remove programs control panel to uninstall FF4. Then reinstall FF36.

  • my itunes does not like the computor it will leave not with a forthcoming box that says "the EXECUTION of PREVENTION" (DEP) HOW DO I GET around THIS PROBLEM of DATA ".

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • Programs that you have problems with ITUNES
    • DEB DATA EXECUTION PREVENTION error messages
    • Recent changes made to your computer NO
    • What have you tried the fix NOTHING

    Hello

    EricLaw IEInternals - a peek at Internet Explorer from inside. -Understanding DEP/NX
    http://blogs.msdn.com/ieinternals/archive/2009/10/10/understanding-data-execution-prevention-crashes-in-IE8.aspx

    The problem might actually be an addon or another program causing the problem and you
    must verify that 1.

    What antivirus/antispyware/security products do you have on the machine? Be one you have
    EVER had on this machine, including those you have uninstalled (they leave leftovers behind which)
    may cause strange problems).

    Start - all programs - Accessores - system tools - IE with no Addons - does this work better?

    IE - Tools - Internet Options - Advanced - tab click on restore, and then click Reset - apply / OK

    IE - Tools - Internet Options - Security - reset all Zones by default level - apply / OK

    not better?

    Close IE and try again IE or IE with no Addons

    IE - tools - manage Addons (for sure disable SSV2 if she's here, is no longer necessary, but)
    Java always install it and it causes problems - you never update Java to go back in and turn it off again.)
    Search for other possible problems.

    Windows Defender - tools - software explore - look for problems with programs that do not look
    right. Allowed are usually OK and "unauthorized" are not always bad. If a doubt
    program to ask about it here.

    Could be a free - BHOremover - BHO - standalone program, needs no installation, download and
    run - not all are bad but some can cause your question. (Toolbars are BHO)
    http://securityxploded.com/bhoremover.php

    Startup programs (Vista)
    http://www.Vistax64.com/tutorials/79612-startup-programs-enable-disable.html

    How to change, add or remove startup programs in Windows 7
    http://www.SevenForums.com/tutorials/1401-startup-programs-change.html

    Also get Malwarebytes - free - use as scanner only. If you ever think malware and which would be
    stands with Prevx running except for a cookie of occasional low level (not a big deal), the update
    and then execute it as a scanner.

    http://www.Malwarebytes.org/

    I would add prevx so.

    Prevx - home - free small, fast, exceptional protection CLOUD, working with other security
    programs. It is a single scanner, VERY EFFICIENT, if it finds something come back here
    or use Google to see how to remove.
    http://www.prevx.com/

    PCmag - Prevx - Editor's choice
    http://www.PCMag.com/Article2/0, 2817,2346862,00.asp

    -------------------------------------------------------------------

    Do yourself a big favor and work through 1 above.

    Data execution prevention Internet Explorer Windows 7 included - several methods here difficult
    http://HubPages.com/hub/data-execution-prevention-Internet-Explorer

    Feature Data Execution Prevention, or DEP in Windows Vista & Windows 7 - see also the links to the
    at the bottom of this page.
    http://www.WinVistaClub.com/F33.html

    How control DEP but I don't recommend turning it off and certainly not to let power off.

    How to enable DEP on or off for a program of Vista (and Windows 7)
    http://www.Vistax64.com/tutorials/65790-DEP-turn-off-programs.html

    How to enable or disable DEP in Vista (and Windows 7)
    http://www.Vistax64.com/tutorials/120778-DEP-enable-disable.html

    ====================================

    If nothing else works you can try this however I would use as a last resort.

    IE - Tools - Options - Advanced Options - Internet Security Section - clear the check box enable memory
    Protection to mitigate the attacks online - APPLY - OK close and restart IE

    I hope this helps and happy holidays!

    Rob Brown - MS MVP - Windows Desktop Experience: Bike - Mark Twain said it right.

  • Problem with drop-down list that prevents the use of the functions, will not go away.

    Hello

    I have Windows 7.  I could not afford MS Office, so I downloaded OpenOffice and, later, LibreOffice.  My problem is, when I open a document to write in a program, a drop-down list (formatting) is displayed.  It starts with "Default" at the top.  The box does not work, if I click on anything that it just flashes.  Or it will disappear.  I tried everything I can think of to get rid of him.  And, as long as it's here, I can't write to a document.  I can close, but only by closing the program.

    Is this problem only with free Office programs.  Sometimes when I am looking for a program in Windows 7, or if I'm looking for the Help menu in 7.

    I'm not very savvy computer.  If you would be interested to help me, thank you very much, but please don't expect me to know some thing on anything whatsoever.  I used to use the mode BACK back in the day, but the subterrain of computers is a subject that I've lost contact with long ago.

    You can also try to test with another Windows user, in case you have a corrupt user profile.

    If things were OK and then maybe a few days ago, System Restore is an option.

    How to repair the operating system and how to restore the configuration of the operating system to an earlier point in time in Windows Vista (or 7)
    http://support.Microsoft.com/kb/936212/#appliesTo

    Don't you see the same problems in Mode safe?

    Startup options (including safe mode)
    http://Windows.Microsoft.com/en-us/Windows7/advanced-startup-options-including-safe-mode

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/default.aspx/KB/929135

  • There a small white box with a black box with a point in that, near the button firefox orange. It is not very distracting but kind of annoying too watch. So what the hell is this and why is this?

    I think it's self-explanatory.

    This will be caused by a problem with an add-on. An add-on that has caused this is the complement of FoxTab, if you have this a try disabling or uninstalling it.

    If you do not have this Add - you follow the procedure described in the following link to identify the culprit - https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • Portege M100 with PM 1, 2 processors, but the only race on 598 MHz

    Please help, I have 10 pcs M100 and 7 of them have no setting in the Bios to "Dynamic CPU frequency setting" (all the CPU speed, still weak, still strong, dynamic). The laptop which do not have this setting to always operate at 598 MHz I have already check with Sisoft Sandra and in windows system properties. Properties always show that computers laptops Pentium-M 1, 2 GHz 598 MHz. no different between running with the mains or battery adapter.

    Other one with dynamic CPU frequency setting, can dynamically adjust processor clock. They can function normally to 1200 MHz.

    Hello

    The dynamic mode of the CPU frequency is available in Toshiba HWSetup.
    There you can switch between mode dynamically switchable, still high and low fashion.

    Please check!

  • When I try to download explorer8 to windows xp I get error that says: (the procedure entry point shreggetvaluew is not found in the library of dynamic links SHLWAPI.dll)

    Remember - this is a public forum so never post private information such as numbers of mail or telephone!

    Ideas:

    • You have problems with programs
    • Error messages
    • Recent changes to your computer
    • What you have already tried to solve the problem

    Quote your full version of Windows (for example, WinXP SP3;) Windows XP 64 - bit SP2) when you post in a forum or a newsgroup. Please do it in your next reply.

    What application or antivirus security suite is installed and your current subscription?  What anti-spyware (other than Defender) applications?  What third-party firewall (if applicable)?  Who were these applications that run in the background when you tried to install IE8?

    A (another) Norton or McAfee application has already been installed on this machine (for example, a free trial version which is preinstalled when you bought it)?

    How TO solve IE8 installation problems
    http://support.Microsoft.com/kb/949220

    Visit the Microsoft Solution Center and antivirus security for resources and tools to keep your PC safe and healthy. If you have problems with the installation of the update itself, visit the Microsoft Update Support for resources and tools to keep your PC updated with the latest updates.

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Cannot access internet on an android with WiFi Hotspot phone that uses the proxy.

    Original title: HotSpot WiFi Windows 7

    I have a LAN connection and connect to the internet via an address proxy and port on my Windows 7 PC. I want my laptop to a Wi - Fi hotspot so that I can connect with internet on my phone android too.

    Earlier, when I was not using proxy, I used the following command

    netsh wlan set hostednetwork mode = allow ssid = = key

    netsh wlan start hostednetwork

    netsh wlan hostednetwork stop

    Now when I use the proxy, and I use these commands, with success, he created the hotspot and also my phone connects as usual, but it does not load a Web page.

    Help, please.

    Thank you.

    Kind regards

    Aditya

    Hi Aditya,

    Thanks for posting your query in Microsoft Community. According to my research Internet on android apps may not work if the proxy is enabled.

    The browser you use to access the internet on your mobile phone?

    The information of IP address, gateway, subnet mask of your operating system to Windows 7 and configure the internet manually using this information (on your android phone) and check if the internet works fine.

    For assistance to the configuration or to find the settings, contact support android.

    https://support.Google.com/Android/?hl=en

    Hope that the information provided is useful. Do not respond if you need more help.

Maybe you are looking for