GUIDE: Oracle VM VirtualBox and Oracle Linux NIC bonding

Author: Dude
Date: 01-Jun-2013
Version: B
Last updates:
23-Jul-2013, changes required due to forum upgrade
The following  is provided in the hope that it might be useful. If you wish to use it for the purpose of reference, presentation or education, please include the link or information to this forum posting. Thank you!
What is Linux network interface bonding? Simply put, the Linux system provides a kernel driver, which can create a logical network device (bond) using 2 or more Network Interface Controllers (NIC) to accomplish link-aggregation and adapter fault-tolerance. For more information, please see the Deployment Guide at https://linux.oracle.com/documentation/
The channel bonding interface supports several modes of operation. In a typical active-backup set up for fault-tolerance, the system performs MII-based health monitoring of the network interface slaves (eth0, eth1) and assigns them according to bond options and interface availability. In active-backup mode (mode 1), only the current active network device is seen externally.
Linux bonding for fault-tolerance under Oracle VM VirtualBox does not seem to function as advertised. Searching the Internet for more information shows that other people have tried to set up Linux bonding using various virtualization products, virtual host network adapter and bonding options, but without success.
It appears the management of Media Access Control addresses (MAC) interferes with internal routing methods between the host and the virtual machine guest. Using the modinfo bonding command (fig. 1) shows a listing of available parameters for the bonding kernel module. The fail_over_mac parameter addresses the Mac address issue in VirtualBox.
Fig.1
# modinfo bonding
filename:       /lib/modules/2.6.39-400.17.1.el6uek.x86_64
                /kernel/drivers/net/bonding/bonding.ko
parm:           fail_over_mac:For active-backup,
                do not set all slaves to the same MAC;
                0 for none (default), 1 for active, 2 for follow (charp)
Configuration Example
Virtualization Product: Oracle VM VirtualBox 4.2.10
VM Guest OS: Oracle Linux 6.4 (x64)
VM adapter settings: Bridged Adapter, Paravirtualized Network (virtio-net)
Adapter1 (eth0): 080027436617, en0, Ethernet 1
Adapter2 (eth1): 08002708F36A, en0, Ethernet 1
Note: If you wish to reset the network adapter names and MAC addresses used by the Oracle Linux guest system, erase the content of /etc/udev/rules.d/70-persistent-net.rules and restart the virtual machine.
1. Create or modify the following configuration files:
/etc/modprobe.d/bonding-eth0_eth1.conf
alias bond0 bonding
/etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
IPADDR=10.0.2.12
NETMASK=255.0.0.0
GATEWAY=10.0.0.138
DNS1=10.0.0.138
DNS2=8.8.8.8
ONBOOT=yes
BOOTPROTO=none
USERCTL=no
BONDING_OPTS="mode=1 miimon=100 fail_over_mac=1"
/etc/sysconfig/network-scripts/ifcfg-eth0
DEVICE=eth0
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
USERCTL=no
/etc/sysconfig/network-scripts/ifcfg-eth1
DEVICE=eth1
BOOTPROTO=none
ONBOOT=yes
MASTER=bond0
SLAVE=yes
USERCTL=no
2. Restart the system or network services (root):
Fig. 2
# service network restart
Configuration Test
Enter the following commands as user root to verify proper operation of NIC bonding:
Fig. 3
# tail /var/log/messages
bond0: setting mode to active-backup (1).
bond0: Setting MII monitoring interval to 100.
bond0: Setting fail_over_mac to active (1).
bond0: Adding slave eth0.
bond0: making interface eth0 the new active one.
bond0: first active interface up!
bond0: enslaving eth0 as an active interface with an up link.
bond0: Adding slave eth1.
bond0: enslaving eth1 as a backup interface with an up link.
Fig. 4
# ifconfig
bond0     Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
          inet addr:10.0.2.12  Bcast:10.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::a00:27ff:fe43:6617/64 Scope:Link
          UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
eth0      Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
          UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
eth1      Link encap:Ethernet  HWaddr 08:00:27:08:F3:6A 
          UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
Fig. 5
# netstat -rn
Kernel IP routing table
Destination     Gateway         Genmask         Flags   MSS Window  irtt Iface
0.0.0.0         10.0.0.138      0.0.0.0         UG        0 0          0 bond0
10.0.0.0        0.0.0.0         255.0.0.0       U         0 0          0 bond0
169.254.0.0     0.0.0.0         255.255.0.0     U         0 0          0 bond0
Fig. 6
# ifconfig eth0 down
# tail /var/log/messages
bond0: link status definitely down for interface eth0, disabling it
bond0: making interface eth1 the new active one.
# ifconfig
bond0     Link encap:Ethernet  HWaddr 08:00:27:08:F3:6A 
          inet addr:10.0.2.12  Bcast:10.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::a00:27ff:fe43:6617/64 Scope:Link
          UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
eth1      Link encap:Ethernet  HWaddr 08:00:27:08:F3:6A 
          UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
Fig. 7
# ifconfig eth0 up
# ifconfig eth1 down
# tail /var/log/messages
bond0: link status definitely up for interface eth0, 4294967295 Mbps full duplex.
bond0: link status definitely down for interface eth1, disabling it
bond0: making interface eth0 the new active one.
# ifconfig
bond0     Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
          inet addr:10.0.2.12  Bcast:10.255.255.255  Mask:255.0.0.0
          inet6 addr: fe80::a00:27ff:fe43:6617/64 Scope:Link
          UP BROADCAST RUNNING MASTER MULTICAST  MTU:1500  Metric:1
eth0      Link encap:Ethernet  HWaddr 08:00:27:43:66:17 
          UP BROADCAST RUNNING SLAVE MULTICAST  MTU:1500  Metric:1
During the above test, the client network connection from host 10.0.0.1 (ssh) was maintained without any noticeable interruption. As it can be seen from the syslog and ifconfig command output, the bond0 interface was automatically assigned either the MAC address of eth0 or eth1 and the fail-over worked as advertised.
Good luck!

Please see these docs/links.
Using Oracle VM with Oracle E-Business Suite Release 11i or Release 12 [ID 465915.1]
Certified Software on Oracle VM [ID 464754.1]
Oracle VM Templates -- Oracle E-Business Suite 12.1.3 (32-bit), Oracle E-Business Suite 12.1.1 (64-bit and 32-bit) and Oracle E-Business Suite Release 12.X Sparse Middle Tier (32-bit)
http://www.oracle.com/technetwork/server-storage/vm/ebs-093153.html
E-Business Suite 12.1.3 Templates for Oracle VM Now Available
http://blogs.oracle.com/stevenChan/2010/11/ebs1213_oraclevm.html
Live Migration of EBS Services Using Oracle VM
http://blogs.oracle.com/stevenChan/2010/01/ebs_live_migration_ovm.html
Using Oracle VM with Oracle E-Business Suite Virtualization Kit
http://blogs.oracle.com/stevenChan/2009/12/oracle_vm_ebs_virtualization_kit.html
New Oracle® VM Templates for Oracle Applications Now Available
http://www.oracle.com/us/corporate/press/068341
Very Cool! New Oracle VM Templates for Oracle E-Business Suite
http://blogs.oracle.com/virtualization/2010/11/very_cool_new_oracle_vm_templa.html
Thanks,
Hussein

Similar Messages

  • Oracle Linux 6 - stuck on Welcome Setup Screen, black screen on CTRL+ALT+F*

    Oracle Linux 6 DVD x64.
    Installed fine. I selected gnome for UI + all dev packages as I will be doing some dev work on the box.
    After install it boots okay and the Welcome setup screen shows up. It allows me to setup connection to ULN, create a user, enable kdump etc. These functions work fine, but right after I finish setting it all up (i.e. the last setting I see is the kdump enable/disable screen), the box goes into limbo state after pressing [Finish] button.
    The screen turns black and that's it.
    Also when I tried to switch from the Welcome setup screen to a terminal mode, i.e. by pressing CTRL+ALT+F1 (tried ...+F2 also) the box gets stuck too. There is no way to go back to the X session, i.e. CTRL+ALT+F6 (F7, F8). It is just stuck on the black screen.
    Here's some specs:
    Motherboard: ASUS P8H67-M Pro (with B3 revision of Sandy Bridge)
    CPU: Intel I5-2500 (VPRO) (BX80623I52500)
    Memory: Kingston HyperX 8GB (compatible with m/b + run memtest86 for hours without error)
    Video: using built in Intel HD (could this be the issue?)
    After re-boot I'm back to Welcome setup screen.
    Notes:
    1. Boots fine if 'singleuser' is appended to the kernel boot line in GRUB, but that's not the point. I would like to run UI.
    2. I have tried removing 'rhgb' and 'quiet' kernel boot parameters to no avail. I have actually stripped the kernel boot line in GRUB down to 'ro' and that would not help either.
    3. Ubuntu 10.10 x64 runs fine.
    4. Windows 7 x64 runs fine.

    You may have a hardware or system bios issue in combination with the existing drivers. Have you checked the vendors home page for your system? What clues exit in the log files in /var/log?
    It sounds like you are using a Latop. Oracle Linux, like RHEL is not designed for desktop and mobile computers. Installation success will depend on your hardware compatibility, but you will very likely be missing appropriate drivers for wireless, video and power management.
    If Enterprise Linux is a requirement and you are not using it as the primary OS, or if the computer hardware lacks support, how about installing Oracle Virtualbox and install Linux as a guest OS - I'm pretty sure this should work.

  • How to install GCC and DKMS on Oracle Linux?

    Hello,
    I am a newbie to Oracle Linux. I installed Oracle Linux on a virtual machine using Oracle VirtualBox. Now I need to install the packages DKMS and GCC in order to share drives between the host and the ghost.
    Here is what is happening:
    # yum install dkms
    Setting up Install Process
    Setting up repositories
    No Repositories Available to Set Up
    Reading repository metadata in from local files
    Parsing paskage install arguments
    No Match for afgument: dkms
    Nothing to do
    Please, advice what to do.
    Thanks in advance.

    Here is what you need to install under Oracle Linux or Red Hat Enterprise Linux to install the VirtualBox Guest Additions:
    <pre>yum -y install gcc kernel-uek-devel-$(uname -r)</pre>
    The packages are available from the Oracle public yum repository as already mentioned, or on the installation DVD in the server directory.

  • Oracle Linux 6.4 installs, runs, and manual shutdown OK ...  but restarts itself after 10 minutes or so

    Hi Guys
    Successfully installed Oracle Linux 6.4 operating system , which subsequently runs as expected.
    When Oracle Linux 6.4 is shutdown using  standard GUI  system/shutdown ,
    it does a clean shutdown and power-off as expected  ....
    UNTIL some 10 minutes or so later , when Oracle Linux 6.4 reboots all by itself from a fully powered-down state.
    Likewise when Oracle Linux 6.4 is shutdown using  standard command line " shutdown -h now" ,
    it does a clean shutdown and power-off as expected  ....
    UNTIL some 10 minutes or so later , when Oracle Linux 6.4 reboots all by itself from a fully powered-down state.
    Clearly it is NOT desirable to have the operating system able  restart of it's own accord.
    A manual shutdown is typically  done for good reason , and the server should remain shutdown.
    The previous version, ie Oracle Linux 6.3 did not exhibit this behavior.
    When Oracle Linux 6.3 was shutdown, it stayed shutdown
    Question
    ======
    Does anyone know how to STOP Oracle Linux 6.4 from restarting itself after a successful shutdown ?
    Thanks
    Bruce

    Does anyone know how to STOP Oracle Linux 6.4 from restarting itself after a successful shutdown ?
    Assuming your network interface is eth0, execute "$ ethtool eth0", like below, and indicate what you get for the lines "Supports Wake-on" and "Wake-on.
    lx04:/root $ ethtool eth0
    Settings for eth0:
            Supported ports: [ TP ]
            Supported link modes:   10baseT/Half 10baseT/Full
                                    100baseT/Half 100baseT/Full
                                    1000baseT/Full
            Supported pause frame use: No
            Supports auto-negotiation: Yes
            Advertised link modes:  Not reported
            Advertised pause frame use: No
            Advertised auto-negotiation: Yes
            Speed: 1000Mb/s
            Duplex: Full
            Port: Twisted Pair
            PHYAD: 0
            Transceiver: internal
            Auto-negotiation: on
            MDI-X: Unknown
            Supports Wake-on: pg
            Wake-on: d
            Current message level: 0x0000003f (63)
                                   drv probe link timer ifdown ifup
            Link detected: yes
    Then check in your BIOS (usually under APM) for any enabled power-on settings associated with PCI or PCIe bus (your NIC will use one or the other).

  • Gnome automount and media.repo under Oracle Linux 6.3

    Hello,
    I experiencing a strange behavior testing the following under Oracle Linux 6.3 (x86-64-bit) UEK2 with all latest updates. I selected the Gnome desktop packages using the "customize now" ratio button when installing the OS
    * Log in to a graphical shell such as GNOME
    * Insert addition media disk into the computer
    * Observe the media is mounted by the session
    * Wait a couple of seconds
    * Observe the /etc/yum.repos.d/packagekit-media.repo now exists
    The above is explained in more details at http://people.redhat.com/rhughes/media-repo.txt
    I don't know what the "addition media disk" is, but inserted the Oracle Linux 6.3 x86_64 binary distribution DVD, which also has media.repo file in the root directory. And btw, I'm using VirtualBox and the DVD is an .iso disk image.
    I'm experiencing the following:
    Gnome automount works and automatically opens the DVD when inserted.
    It does not create the /etc/yum.repos.d/packagekit-media.repo file.
    It actually does create the named repo file, but only after one waits about 15 minutes. Perhaps this has anything to do with gpk-update-icon, but when run manually it hangs.
    With the packagekit-media.repo file finally created. The gpk-application however complains: "The group list was invalid".
    I know how to create a yum configuration file pointing to a local repository, which is also coverd in the Oracle Linux 6.3 distribution readme. I just wonder about the problem. Th automatic business with the media.repo file seems broken and useless. I did one more test using the original RHEL kernel which, as expected, did not make a difference.
    Does anyone know more about it?
    Thanks!

    I cannot create an SR, but I did some more tests creating my own DVD, playing with the info in the media.repo file. It seems matching the mediaid and .discinfo information alone doesn't fix it.
    Actually some of the stuff is explained in the link I already used: http://people.redhat.com/rhughes/media-repo.txt. The problem seems that it doesn't work as advertised.
    It takes exactly 15 min. before the system (gnome) automatically copies the media.repo file from DVD to /etc/packagekit-media.repo. If the file already exists it gets overwritten.
    I think it might be a good idea to make an entry in the media.repo file on the DVD, such as:
    baseurl=file:///media/<disklabel>
    skip_if_unavailable=True
    Then when inserting the DVD under gnome it would not be necessary to create a yum repository configuration file to use the DVD. The 15 min. delay will have to be fixed, which is only supposed to take a couple of seconds.
    Edited by: Dude on Aug 27, 2012 5:51 PM

  • Failed to install VirtualBox Guest Addition on Oracle Linux 6.1

    I can successfully install Oracle Linux 6.1 on VirtualBox 4.1. But failed to install VirtualBox Guest Additions with the following message: Building the main Guest Additions module [FAILED]. All other modules installed ok.

    Actually you don't have do install the developer version. According to the documentation http://www.virtualbox.org/manual/ch04.html you will need to install gcc and kernel-devel packages. In case Oracle Enterprise Linux does not find the required packages, you either have to install them from a different source (e.g. DVD) or use Oracle's public Yum server located at http://public-yum.oracle.com.

  • Oracle Linux Administrator Certified Associate: 1Z0-402 and 1Z0-403

    Hi
    there is a study guide available soon Oracle Enterprise Linux Administrator Certified Associate Exam Guide (Exams 1z0-402 and 1z0-403), that why I will take exam ;-)

    Unfortunately LPIC expires after 5 years unless you take a higher level or retake same level .....
    RHCT similarly.
    The Oracle exam certification relates to OEL/RHEL 4 ... which is a bit oldhat rather than redht nowadays. The advantage for you is it is an easy win, the disadavantage is it doen't really say much mor eabout yourself. RHSA on RHEL 6 might suit and say more .... but might be harder to gain. Any it wouldn't help any Oracle Partnership points iof that was important. However as pointed out you should be able to waiver 1z0-402

  • Which NIC should I buy for Oracle Linux Server 6.4

    Hi,
    I am trying to install Oracle RAC 11g R2 onto my laptop PC - Lenovo T400s. I have installed Oracle Linux Server 6.4. The OOTB NIC was recognized by OS and eth0 is fine but I need one more NIC for RAC. RAC needs two NIC for public IP and private IP. Now I want to buy NIC for either USB or express card for the second NIC but I don't know which one to buy. Most of NICs that I find on the Internet is supported by Windows or Mac but I could not find any that says it is supported by Linux. Could someone tell me which one I should buy so  I can download driver from the company website and compile from source hopefully..
    Thanks,

    hello,
    you can build a rac on 2 laptos, sure
    are some requirments , like shared storage
    RAC will take, RAW device, block device, that can be SCSI, SAS, iSCSI, or lun by fiber channel, here in your setup, you wioll need to read about iscsi and use an storage
    other option is use NFS, this will be more easy to implement.. if you have a 3rd machine you can setup it as NFS and mount the NFS int he 2 laptos
    Good luck, is a doable task

  • Install questions on OVM Manager  and Oracle Linux

    I installed OVM Server 3.0.3 on a 64-bit server class box.
    Getting tight with a spare box, I tried to install OVM Manager on the Oracle VirtualBox as a VM and also to install it on the top of OVM Server on the same hardware box but neither has been successful.
    So, I'm thinking of rather installing OVM Manager on one of my laptops.
    Before proceeding to wipe out the data on my laptop, I'd like to check couple of things:
    1. I take it that the 32-bit OVM Manager should have no problem working with 64-bit OVM Server, correct?
    2. The OVM Manager itself doesn't include with a bootable Linux image and should be installed on the top of a pre-installed Linux (e.g., Oracle Linux), so I need to install Oracle Linux first on my laptop and install OVM Manager on top of it, right?
    Thanks for your help in advance!
    - Young

    user7259518 wrote:
    1. I take it that the 32-bit OVM Manager should have no problem working with 64-bit OVM Server, correct?That's fine.
    2. The OVM Manager itself doesn't include with a bootable Linux image and should be installed on the top of a pre-installed Linux (e.g., Oracle Linux), so I need to install Oracle Linux first on my laptop and install OVM Manager on top of it, right?Correct. You'll need at least 4GB of RAM for the Manager for a test/development environment, with 8GB+ recommended for Production, to cover both Oracle Database SE and Oracle WebLogic.

  • Virtualbox ORACLE Linux not installing

    Not sure what the issue is. I have Virtual box - upgraded to today's version
    I got a copy of Oracle linux (6) at a seminar today. The goal is to install Oracle Linux on the Virtual box to test it.
    During the install the keyboard commands (options?) flash by too fast to read.
    Installation says the kernel is not right "This kernel requires x8-64 CPU, but only detected an i686CPU."
    Well it is a 64 bit CPU.
    I tried it on a 32 bit CPU box and got the same result.
    alas. is this a bust?

    Here's some additional information that seems relevant to your problem: http://www.virtualbox.org/ticket/2061
    You could also check your VBox.log file, which contains, among a lot of other things, detailed information about the host CPU type and supported features.
    I suggest to check if there is a BIOS update available for your computer, or try to use a 32-bit Oracle Linux distribution, which you can download for free from https://edelivery.oracle.com/linux
    Regarding your hardware upgrade question, check the following: http://en.wikipedia.org/wiki/X86_virtualization
    +As of 2009[update] not all Intel processors supported VT-x, which Intel uses to segment its market.[20] Support for VT-x may even vary between different versions (as identified by Intel's sSpec Number) of the same model number.[21] [22] For a complete and up-to-date list see the Intel website.[23] Even in May, 2011, the Intel CPU P6100 which is in laptops does not support hardware virtualization [1].+
    Edited by: Dude on Aug 11, 2011 6:01 PM

  • CVE-2014-6271 and CVE-2014-7169 / Oracle Linux

    Hi ,
    patches required to resolve the vulnerabilities described in CVE-2014-6271 and CVE-2014-7169 in Oracle linux 5 (x86) is "bash-3.2-33.el5_11.4.x86_64.rpm "
    from where i can get this patch, its not availible on support.oracle/patches !!
    Thanks,
    Thamer

    Your Oracle Linux system should be configured to automatically install packages either from the Unbreakable Linux Network or public-yum.oracle.com. You might want to ask your Linux sysadmin for assistance if your servers aren't already configured for updates.
    You can also check Chapter 1 and Chapter 2 of the Oracle Linux Administrator's Guide for more details on using ULN or public-yum: Oracle® Linux (it's for OL6 but the concepts are the same for OL5).

  • Oracle Linux and SSH

    Hallo!
    I have a MacBook Pro 64 bit Version: 10.8.5 .
    I installed VirtualBox 4.3.4 on it.
    I used to install Debian Guest OSs.
    I used under Network 'NAT' with Port Forwarding
    There I mapped the Port 22 of the Guest OS with 60xx Ports.
    Then I opened the shell on my Mac and did a ssh connection for example in the following way:
    ssh -p 6011 root@localhost
    And it worked always fine.
    Then I installed Oracle Linux6 on my VirtualBox.
    And I did a Port Mapping: Port 22 on Oracle Linux with 6017 on my Mac.
    When I do
    ssh -p 6017 root@localhost
    it comes
    ssh_exchange_identification: Connection closed by remote host
    I think that has anything to do with the configuration of /etc/ssh/sshd_config?!
    Can anybody show me how this file should look like?
    Or do I have another problem?
    Thanks for any help!
    Gerhard

    Hi Dude!
    Thanks for your comments!
    I use 'bridged network adapter' if I want to connect from my 'Guest'-OS to the Internet.
    In my case I want to configure my Mac with its OSes as a 'Stand-Alone' Machine
    (I live in Mexiko on the Countryside and often I don't have connection to the Internet).
    That means, that my Mac is my Client and my Host-Server at the same time.
    I install a database on my 'Guest OS', start my 'Guest OS' and that all.
    All the rest I want to do, is to access to my 'Guest OS' from my Mac.
    I do all my SQL, PL/SQL and DBA stuff from Oracle SQL Developer installed on my Mac.
    I work with APEX and I access to the Database installed on my OS via my Browser installed on my Mac.
    And for any work on my Guest Linux OS, I do that with my Mac Shell.
    I did the same for many time with my Linux Guest OSes Debian and Ubuntu.
    And it worked always fine.
    But I never tried it with RedHat Systems.
    I compared my /etc/ssh/sshd_config of my Oracle Linux OS with /etc/ssh/sshd_config of my Debian OS.
    And the configuration is very different.
    So I don't think, that it is a problem of my VirtualBox Network Configuration.
    If it would be a problem of my VirtualBox Network Configuration, why does it run with my Debian OSes without problems?
    Thanks for any help!
    Gerhard

  • Oracle Linux HCL. Support of Intel Core i3 and H55 chipset

    Dear Colleagues.
    I'm going to purchase the new desktop for home use and the question which bothers me is the compatiblity of new hardware system with Oracle Linux 5.6.
    The system platform supposed to be purchased consists of "Intel Core i3-560" CPU, "ASUS P7H55D-M EVO" motherboard, 4Gb DDR3 1333 MHz and other components. No descrete graphical card is supposed to be purchased since CPU integrated graphical card will be used.
    The questions are:
    Did somebody installed Intel Core + H55 chipset motherboards?
    Was that successfull?
    Do you have some hints, good notices regarding Linux installation on such system?
    The OS version planned to be installed is ORacle Linux 5.6.
    Thank you for your time and assistance!
    Best Regards,
    Ilya.

    Tommy and Dude,
    The main reasons of installing Oracle Linux are:
    1) Learning administering Oracle Database installed on Linux systems environment.
    2) Oracle Linux is supported by Oracle Database 10g.
    3) It is free.
    There were not much alternatives to choose from. Below you can see the list of supported OSes by Oracle Database 10g:
    Asianux 1,2,3. <-- Never heard of this OS before.
    Oracle Linux 4,5 <-- My choice. It is free and it uses stable Red Hat kernel (2.6.18 for Oracle Linux 5, 2.6.32 for Oracle Unbreakable Linux.; by the way, i read in some internet article that Linux kernel 2.6.32 contains some code for supporting Intel Core processors (at least theirs old versions which use socket LGA1156), but probably it is not completely right information).
    Red Hat Enterprise Linux 4, 5 <-- they are not free of charge.
    SUSE Linux Enterprise Server 9 SP2 or later, 10, 11 <-- Seems like they are not free of charge either. 60 days trial is not good option for me.
    Oracle VM <-- Probably, it is also a good choice. I'll study this option.Unfortunately, both Ubuntu and Fedora are not in the list and Windows is no good choice for me since Oracle Database is different in the administration under UNIX and Windows environment.
    I've got questions regarding the use of VirtualBox and other VM software:
    - Would i have the ability to install, run and administer Oracle Database 10g within VirtualBox?
    - Is there much differences in administering Oracle Database under real standalone OS and under VM software (VirtlBox, for instance)?
    Thank you very much for participation and usefull suggestions!
    Best Regards,
    Ilya.

  • Differences between Oracle Linux and CentOS

    Dear ALL
    I need differences between Oracle Linux and Cent OS, which is the better OS to install Oracle11gR2.
    Kindly send me the benefits and percentage if anybody can...
    Thanks.

    11gR2 is not certified to be installed on CentOS, so from that perspective alone, OEL is the only choice.
    http://docs.oracle.com/cd/E11882_01/install.112/e24321/pre_install.htm#CIHFICFD
    HTH
    Srini

  • Where to download and how to install X Window System for Oracle Linux 5 ?

    Folks,
    Hello. I am using Oracle Linux 5 and Oracle Database 11g for PIA.
    Before install Oracle DB 11g into Oracle Linux 5, we need to install X Window System according to the document page 2 http://download.oracle.com/docs/cd/B28359_01/install.111/b32285.pdf
    But I don't know where to download and how to install X Window System for Oracle Linux 5.
    Can any folk provide a link to download X Window System and tutorial to install it for Oracle Linux 5 ?

    You can address the problem in a number of different ways.
    You can install X-windows from the installation DVD or setup access to the Oracle public software repository as described in http://public-yum.oracle.com. In which case, the command to install X-windows is: yum groupinstall "X Window System"
    Or, you login remotely and and use SSH with X-forwarding, in which case the software on the server will use the X-Windows server on your client system. This is probably the preferred way since you do not have X-windows installed on the server. For more details about SSH forwarding and howto, please see Install Oracle 11gR2 on Ubuntu Linux 11.04 (64-bit) Howto part 2 Oracle Universal Installer.

Maybe you are looking for

  • Is there any way to recover photos if you didn't back up using iTunes or Photostream?

    I'm really really hoping there is a way around this... I tried to update my iPhone 4S to the iOS6 operating system and when it restarted it went into recovery mode. I've only had this phone for a few months but never turned on Photostream (never knew

  • Can't get 1532i to associate to 5508 WLC running 7.6.130.0

    Greetings, I've got 20 or so APs on a 5508 WLC.  Most of the APs are 1242, one is 3602.  I'm now trying to get a 1532i to associate to the 5508 and it's not happening.  This is the first 1532 on this controller. Also, I got this 1532 AP from a sister

  • I have got a new computer how do I transfer Photoshop Elements to my new computer

    Having bought a new computer I am trying to reinstall the programs I have on the old computer on my new computer. I have although problems identifying how to get this done with my Adobe Photoshop Elements 11 that I bought in 2011. It is hard to ident

  • Got iTunes 6 installed... but it wiped my whole library!

    Oh my God....... I install iTunes 6.0, and after several attempts to get it to open at all, it finally opens and poof, my library is gone. I was able to recover about half of my songs, but I'm wondering is there anyway how I can set it back to the wa

  • Kanban with MRP

    Hi, We are operating on Kanban for in house manufactured items.We run monthly MRP by which all our production requirements are getting planned. For In house manufactured kanban materials we use replenishment strategy 0005 by which a planned order is