OVM 2.2.2 import VirtualBox OVA

[root@ovm]# cat /etc/ovs-release
Oracle VM server release 2.2.2
Unpack OVA,
[root@ovm]# file VB.ova
VB.ova: POSIX tar archive
[root@ovm]# tar tvf VB.ova
-rw------- someone/someone 15691 2011-12-08 20:32:29 VB.ovf
-rw------- someone/someone 2917182464 2011-12-08 20:36:53 disk1.vmdk
-rw------- someone/someone 11493981184 2011-12-08 20:54:21 disk2.vmdk
[root@ovm]# tar xvf VB.ova
VB.ovf
VB-disk1.vmdk
VB-disk2.vmdk
VMDK details using "qemu-img",
[root@ovm]# ls -l *vmdk
-rw------- 1 root root 2917182464 Dec 8 20:36 VB-disk1.vmdk
-rw------- 1 root root 11493981184 Dec 8 20:54 VB-disk2.vmdk
[root@ovm ]# qemu-img info -f vmdk VB-disk1.vmdk
disk1.vmdk
file format: vmdk
virtual size: 10G (10737418240 bytes)
disk size: 2.7G
[root@ovm]# qemu-img info -f vmdk VB-disk2.vmdk
image: disk2.vmdk
file format: vmdk
virtual size: 60G (64424509440 bytes)
disk size: 11G
Attempt using "qemu-img" to convert VMDK to raw,
[root@ovm# qemu-img convert -f vmdk -O raw VB-disk1.vmdk disk1.img
qemu-img: error while reading
Install VirtualBox on WinXP 32-bit laptop. Share the VMDK files using Samba.
Attempt "VBoxManage clonehd" of "VB-disk1.vmdk",
V:\>"C:\Program Files\Oracle\VirtualBox\VboxManage" clonehd VB-disk1.vmdk disk1.img --format raw
VBoxManage.exe: error: The medium 'V:\VB-disk1.vmdk' can't be used as the requested device type
VBoxManage.exe: error: Details: code E_FAIL (0x80004005), component Medium, interface IMedium, callee IUnknown
Context: "OpenMedium(Bstr(pszFilenameOrUuid).raw(), enmDevType, AccessMode_ReadWrite, fForceNewUuidOnOpen, pMedium.asOutParam())" at line 210 of file VBoxManageDisk.cpp
Update UUID of VMDK,
V:\>"C:\Program Files\Oracle\VirtualBox\VboxManage" internalcommands sethduuid VB-disk1.vmdk
UUID changed to: 73a7de22-6846-4868-9cd3-94bbf589d940
V:\>"C:\Program Files\Oracle\VirtualBox\VboxManage" clonehd VB-disk1.vmdk disk1.img --format raw
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Clone hard disk created in format 'raw'. UUID: faf96692-93ed-477e-9d52-1ade05009
b60
V:\>"C:\Program Files\Oracle\VirtualBox\VboxManage" internalcommands listpartitions -rawdisk disk1.img
Number Type StartCHS EndCHS Size (MiB) Start (Sect)
1 0x83 0 /1 /1 12 /254/63 101 63
2 0x8e 13 /0 /1 1023/254/63 10134 208845
[root@ovm]# file disk1.img
disk1.img: x86 boot sector; partition 1: ID=0x83, active, starthead 1, startsector 63, 208782 sectors; partition 2: ID=0x8e, starthead 0, startsector 208845, 20755980 sectors, code offset 0x48
[root@ovm]# fdisk -l disk1.img
last_lba(): I don't know how to handle files with mode 8180
You must set cylinders.
You can do this from the extra functions menu.
Disk disk1.img: 0 MB, 0 bytes
255 heads, 63 sectors/track, 0 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
disk1.img1 * 1 13 104391 83 Linux
disk1.img2 14 1305 10377990 8e Linux LVM
Partition 2 has different physical/logical endings:
phys=(1023, 254, 63) logical=(1304, 254, 63)
No UUID issues with "VB-disk2.vmdk" proceed with "clonehd",
V:\>"C:\Program Files\Oracle\VirtualBox\VboxManage" clonehd VB-disk2.vmdk disk2.img --format raw
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Clone hard disk created in format 'raw'. UUID: de21cd38-494d-49df-81b4-c3fd3c8c67ae
V:\>"C:\Program Files\Oracle\VirtualBox\VboxManage" internalcommands listpartitions -rawdisk disk2.img
Number Type StartCHS EndCHS Size (MiB) Start (Sect)
1 0x8e 0 /0 /2 1023/254/63 61439 1
[root@ovm]# file disk2.img
disk2.img: LVM2 (Linux Logical Volume Manager) , UUID: VbrZ2qmX6kQU2os4ye7xncrd4y4NEe5
[root@ovm]# fdisk -l disk2.img
last_lba(): I don't know how to handle files with mode 81e4
You must set cylinders.
You can do this from the extra functions menu.
Disk disk2.img: 0 MB, 0 bytes
255 heads, 63 sectors/track, 0 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
disk2.img1 1 7833 62914559+ 8e Linux LVM
Partition 1 has different physical/logical endings:
phys=(1023, 254, 63) logical=(7832, 127, 39)
Configure HVM "vm.cfg",
# (H)ardware (V)irtual (M)achine configuration
# /etc/xen/xmexample.hvm
kernel = '/usr/lib/xen/boot/hvmloader'
builder = 'hvm'
memory = '4096'
device_model ='/usr/lib/xen/bin/qemu-dm'
# PXE boot
#bootloader = '/usr/bin/pypxeboot'
#bootloader = '/usr/bin/pygrub'
# Virtual block device configuration using file:
# dd if=/dev/zero of=/$VM_PATH/$VM_NAME/System.img bs=1M count=$MB
# disk = [ 'file:/$VM_PATH/$VM_NAME/System.img,ioemu:hda,w', ]
# Configuration using physical disk logical volume:
# lvcreate --size ${GB}G --name $VM_NAME $VG_NAME
# disk = [ 'phy:/dev/$VG_NAME/$VM_NAME,xvda,w',]
# CDROM configuration using file:
# disk = [ 'file:/$BOOT_ISO_NAME,hdc:cdrom,r', ]
disk = [ 'file:/OVS/disk1.img,ioemu:hda,w', 'file:/OVS/disk2.img,ioemu:hdb,w', ]
# Domain name
name = "foobar"
# Networking
# Network bridge status:
# /etc/xen/scripts/network-bridge status
# 'bridge' should be proper interface e.g. xenbr0
vif = ['type=ioemu, bridge=xenbr0']
# boot on floppy (a), hard disk (c), Network (n) or CD-ROM (d)
# default: hard disk, cd-rom, floppy
boot = "cdn"
# Enable HV VNC console
vnc=1
vncunused=1
vnclisten="0.0.0.0"
vncpasswd=''
sdl=0
Update "grub.conf" and "device.map" using loopback mount of "disk1.img" boot partition,
[root@ovm]# mkdir boot
[root@ovm]# lomount -diskimage disk1.img -partition 1 boot
Excerpt "grub.conf",
[root@ovm]# cat boot/grub/grub.conf
title Oracle Linux Server (2.6.32-200.13.1.el5uek)
root (hd0,0)
kernel /vmlinuz-2.6.32-200.13.1.el5uek ro root=/dev/VolGroup00/LogVol00
Excerpt "Oracle Linux 5.7 Release Notes",
"Oracle Linux 5.7 ships with the following kernel packages
Unbreakable Enterprise kernel [kernel-uek-2.6.32-200.13.1.el5uek
Installed and booted by default"
Excerpt "Oracle Linux 5.7 Release Notes",
"Known Issues
Hardware virtualized (HVM) guests with Unbreakable Enterprise Kernel always use paravirtualized (PV) drivers
Unbreakable Enterprise Kernel version kernel-uek-2.6.32-100.34.1 adds support for paravirtualized drivers in a HVM guest on Oracle VM. Starting with this kernel version, the default is to present only paravirtualized drivers when running in a hardware virtualized guest. To run kernel-uek --including the drivers-- fully hardware virtualized, an additional kernel boot parameter "xen_emul_unplug=never" must be added to the boot parameters in /etc/grub.conf:
kernel /vmlinuz-2.6.32-100.34.1.el5uek ro root=/dev/VolGroup00/LogVol00 xen_emul_unplug=never
Adding this kernel boot parameter makes the kernel also present the emulated drivers as it did before (e.g. the 8139cp network driver). "
Update "grub.conf" to boot non-UEK kernel,
[root@ovm]# grep ^default boot/grub/grub.conf
default=1
[root@ovm# cat boot/grub/device.map
# this device map was generated by anaconda
(hd0) /dev/sda
[root@ovm]# cat boot/grub/device.map
# this device map was generated by anaconda
(hd0) /dev/hda

I have had success importing VirtualBox images of OEL 6.4, but I am unable to import Solaris 11 VMs to OVM. When I import a Solaris 11 VM, the grub menu comes up. I select Solaris 11 and press enter. The OS begins to boot and progresses through to this point:
SunOS Release 5.11 Version 11.1 64-bit
Copyright (c) 1983, 2012, Oracle and/or its affiliates. All rights reserved.
It is at this point that console window in OVM goes black and OVM registers the shutdown of the VM. I have not been able to get the VM to boot any further through the sequence.
Can you give me some grub configuration changes to try?

Similar Messages

  • OVM 3.0.3 import VirtualBox OVM Manager 3.0.3 OVA template

    VirtualBox Template for Oracle VM Manager 3.0.3,
    http://www.oracle.com/technetwork/server-storage/vm/template-1482544.html
    The OVM 3.0.3 host should be configured with enough space to accommodate import of OVA template. In
    this case 36G was allocated for "sda",
    [root@ovm303 ~]# fdisk -l /dev/sda
    Disk /dev/sda: 38.6 GB, 38654705664 bytes
    255 heads, 63 sectors/track, 4699 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    /dev/sda1 * 1 4189 33648111 83 Linux
    /dev/sda2 4190 4699 4096575 82 Linux swap / Solaris
    Post OVA import disk usage,
    [root@ovm303 ~]# df -T -t ext3
    Filesystem Type 1K-blocks Used Available Use% Mounted on
    /dev/sda1 ext3 32594216 24105604 6806208 78% /.
    [root@ovm303 ~]# cat /etc/motd
    Warning: making manual modifications in the management domain
    might cause inconsistencies between Oracle VM Manager and the server.
    [root@ovm303 ~]# head -4 /etc/ovs-info
    OVS summary
    release: 3.0.3
    date: 201111300901
    build: 123
    The contents of "ovs-info" also include package information.
    The "vbox-img" package is something new in OVM 3.0.3,
    [root@ovm303 ~]# grep vbox-img /etc/ovs-info
    vbox-img-1.0-2
    [root@ovm303 ~]# rpm -ql vbox-img
    /usr/bin/vbox-img
    /usr/share/doc/vbox-img-1.0
    /usr/share/doc/vbox-img-1.0/COPYING
    [root@ovm303 ~]# vbox-img --help
    Oracle VM VirtualBox Disk Utility 4.1.3
    (C) 2005-2011 Oracle Corporation
    All rights reserved.
    Usage: vbox-img
    setuuid --filename <filename>
    [--format VDI|VMDK|VHD|...]
    [--uuid <uuid>]
    [--parentuuid <uuid>]
    [--zeroparentuuid]
    convert --srcfilename <filename>
    --dstfilename <filename>
    [--stdin]|[--stdout]
    [--srcformat VDI|VMDK|VHD|RAW|..]
    [--dstformat VDI|VMDK|VHD|RAW|..]
    [--variant Standard,Fixed,Split2G,Stream,ESX]
    info --filename <filename>
    compact --filename <filename>
    createcache --filename <filename>
    --size <cache size>
    Download "OracleVMManager3" OVA,
    [root@ovm303 xen]# mkdir /etc/xen/ovm303-m
    [root@ovm303 ~]# cd /etc/xen/ovm303-m
    [root@ovm303 xen]# wget http://download.oracle.com/otn-pub/otn_software/OracleVMManager3.ova
    --2012-03-14 17:06:01-- http://download.oracle.com/otn-pub/otn_software/OracleVMManager3.ova
    Length: 4234452992 (3.9G) [text/plain]
    Saving to: `OracleVMManager3.ova'
    100%[====================================>] 4,234,452,992 834K/s in 55m 36s
    2012-03-14 18:01:38 (1.21 MB/s) - `OracleVMManager3.ova' saved [4234452992/4234452992]
    [root@ovm303 xen]# md5sum OracleVMManager3.ova
    75fc334422eda6c3425a2f09fb88f9e0 OracleVMManager3.ova
    Unpack OVA,
    [root@ovm303 xen]# tar tvf OracleVMManager3.ova
    -rw------- someone/someone 59626 2012-01-12 17:42:49 OracleVMManager3.ovf
    -rw------- someone/someone 1987182592 2012-01-12 17:48:06 OracleVMManager3-disk1.vmdk
    -rw------- someone/someone 2247208960 2012-01-12 17:51:24 OracleVMManager3-disk2.vmdk
    [root@ovm303 ovm303-m]# tar xvf OracleVMManager3.ova
    OracleVMManager3.ovf
    OracleVMManager3-disk1.vmdk
    OracleVMManager3-disk2.vmdk
    Use "vbox-img" to show "OracleVMManager3-disk1.vmdk",
    [root@ovm303 ovm303-m]# vbox-img info --filename OracleVMManager3-disk1.vmdk
    --- Dumping VD Disk, Images=1
    Dumping VD image "OracleVMManager3-disk1.vmdk" (Backend=VMDK)
    Header: Geometry PCHS=16383/16/63 LCHS=1024/255/63 cbSector=52428800
    Header: uuidCreation={f3859e00-962c-440f-a63d-feb7b731d5da}
    Header: uuidModification={00000000-0000-0000-0000-000000000000}
    Header: uuidParent={00000000-0000-0000-0000-000000000000}
    Header: uuidParentModification={00000000-0000-0000-0000-000000000000}
    Convert "OracleVMManager3-disk1.vmdk" to RAW,
    [root@ovm303 ovm303-m]# vbox-img convert srcfilename OracleVMManager3-disk1.vmdk dstfilename OracleVMManager3-disk1.img srcformat VMDK dstformat RAW
    Converting image "OracleVMManager3-disk1.vmdk" with size 26843545600 bytes (25600MB)...
    [root@ovm303 ovm303-m]# file OracleVMManager3-disk1.img
    OracleVMManager3-disk1.img: x86 boot sector; partition 1: ID=0x83, active, starthead 1, startsector 63, 208782 sectors; partition 2: ID=0x8e, starthead 0, startsector 208845, 52211250 sectors, code offset 0x48
    [root@ovm303 ovm303-m]# fdisk -l OracleVMManager3-disk1.img
    last_lba(): I don't know how to handle files with mode 8180
    You must set cylinders.
    You can do this from the extra functions menu.
    Disk OracleVMManager3-disk1.img: 0 MB, 0 bytes
    255 heads, 63 sectors/track, 0 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    OracleVMManager3-disk1.img1 * 1 13 104391 83 Linux
    OracleVMManager3-disk1.img2 14 3263 26105625 8e Linux LVM
    Partition 2 has different physical/logical endings:
    phys=(1023, 254, 63) logical=(3262, 254, 63)
    Use "vbox-img" to show "OracleVMManager3-disk2.vmdk",
    [root@ovm303 ovm303-m]# vbox-img info --filename OracleVMManager3-disk2.vmdk
    --- Dumping VD Disk, Images=1
    Dumping VD image "OracleVMManager3-disk2.vmdk" (Backend=VMDK)
    Header: Geometry PCHS=16383/16/63 LCHS=1024/255/63 cbSector=20971520
    Header: uuidCreation={abc43be0-7a43-4ba2-a205-eaf37184a4d3}
    Header: uuidModification={00000000-0000-0000-0000-000000000000}
    Header: uuidParent={00000000-0000-0000-0000-000000000000}
    Header: uuidParentModification={00000000-0000-0000-0000-000000000000}
    Convert "OracleVMManager3-disk2.vmdk" to RAW,
    [root@ovm303 ovm303-m]# vbox-img convert srcfilename OracleVMManager3-disk2.vmdk dstfilename OracleVMManager3-disk2.img srcformat VMDK dstformat RAW
    Converting image "OracleVMManager3-disk2.vmdk" with size 10737418240 bytes (10240MB)...
    [root@ovm303 ovm303-m]# file OracleVMManager3-disk2.img
    OracleVMManager3-disk2.img: x86 boot sector; partition 1: ID=0x83, starthead 1, startsector 63, 20964762 sectors, extended partition table (last)\011
    [root@ovm303 ovm303-m]# fdisk -l OracleVMManager3-disk2.img
    last_lba(): I don't know how to handle files with mode 8180
    You must set cylinders.
    You can do this from the extra functions menu.
    Disk OracleVMManager3-disk2.img: 0 MB, 0 bytes
    255 heads, 63 sectors/track, 0 cylinders
    Units = cylinders of 16065 * 512 = 8225280 bytes
    Device Boot Start End Blocks Id System
    OracleVMManager3-disk2.img1 1 1305 10482381 83 Linux
    Partition 1 has different physical/logical endings:
    phys=(1023, 254, 63) logical=(1304, 254, 63)
    Update disk image "/boot" configuration using loopback mount,
    [root@ovm303 ovm303-m]# mkdir boot
    [root@ovm303 ovm303-m]# kpartx -l OracleVMManager3-disk1.img
    loop1p1 : 0 208782 /dev/loop1 63
    loop1p2 : 0 52211250 /dev/loop1 208845
    loop deleted : /dev/loop1
    [root@ovm303 ovm303-m]# kpartx -a OracleVMManager3-disk1.img
    [root@ovm303 ovm303-m]# mount /dev/mapper/loop1p1 boot
    Update "/boot/grub/device.map",
    [root@ovm303 ovm303-m]# cat boot/grub/device.map
    # this device map was generated by anaconda
    (hd0) /dev/hda
    Update "/boot/grub/grub.conf" to use non-UEK kernel to avoid issues with OL5u7 default UEK boot and HVM,
    [root@ovm303 ovm303-m]# grep default boot/grub/grub.conf
    default=1
    Mount "/" logical volume,
    [root@ovm303 ovm303-m]# vgscan
    Reading all physical volumes. This may take a while...
    Found volume group "VolGroup00" using metadata type lvm2
    [root@ovm303 ovm303-m]# vgchange -ay VolGroup00
    2 logical volume(s) in volume group "VolGroup00" now active
    [root@ovm303 ovm303-m]# lvs
    LV VG Attr LSize Origin Snap% Move Log Copy% Convert
    LogVol00 VolGroup00 -wi-a- 19.06G
    LogVol01 VolGroup00 -wi-a- 5.81G
    [root@ovm303 ovm303-m]# mkdir root
    [root@ovm303 ovm303-m]# ls /dev/VolGroup00/
    LogVol00 LogVol01
    [root@ovm303 ovm303-m]# mount /dev/VolGroup00/LogVol00 root
    Update "/etc/inittab" to boot single user,
    [root@ovm303 ovm303-m]# grep id root/etc/inittab
    id:1:initdefault:
    Update "/etc/fstab" to ignore "/u01" block device mount,
    [root@ovm303 ovm303-m]# grep sdb root/etc/fstab
    #/dev/sdb1 /u01 ext3 defaults 1 1
    Unmount "/boot" and "/",
    [root@ovm303 ovm303-m]# umount boot
    [root@ovm303 ovm303-m]# umount root
    [root@ovm303 ovm303-m]# vgchange -an VolGroup00
    0 logical volume(s) in volume group "VolGroup00" now active
    [root@ovm303 ovm303-m]# kpartx -d OracleVMManager3-disk1.img
    loop deleted : /dev/loop1
    The OVM 3.0.3 network bridge configuration uses "bond0" vs "xenbr0".
    Configure "vm.cfg",
    [root@ovm303 ovm303-m]# cat vm.cfg
    # (H)ardware (V)irtual (M)achine configuration
    # /etc/xen/xmexample.hvm
    kernel = 'hvmloader'
    builder = 'hvm'
    memory = '4096'
    # The number of cpus guest platform has, default=1
    #vcpus=1
    # PXE boot
    #bootloader = '/usr/bin/pypxeboot'
    #bootloader = '/usr/bin/pygrub'
    # Virtual block device configuration using file:
    # dd if=/dev/zero of=/$VM_PATH/$VM_NAME/System.img bs=1M count=$MB
    # disk = [ 'file:/$VM_PATH/$VM_NAME/System.img,ioemu:hda,w', ]
    # Configuration using physical disk logical volume:
    # lvcreate --size ${GB}G --name $VM_NAME $VG_NAME
    # disk = [ 'phy:/dev/$VG_NAME/$VM_NAME,xvda,w',]
    # CDROM configuration using file:
    # disk = [ 'file:/$BOOT_ISO_NAME,hdc:cdrom,r', ]
    disk = [ 'file:/etc/xen/ovm303-m/OracleVMManager3-disk1.img,ioemu:hda,w', 'file:/etc/xen/ovm303-m/OracleVMManager3-disk2.img,ioemu:hdb,w', ]
    # Domain name
    name = "ovm303-m"
    # Networking
    # Network bridge status:
    # /etc/xen/scripts/network-bridge status
    # 'bridge' should be proper interface e.g. xenbr0
    vif = ['type=ioemu, bridge=bond0']
    # boot on floppy (a), hard disk (c), Network (n) or CD-ROM (d)
    # default: hard disk, cd-rom, floppy
    boot = "cdn"
    # Enable HV VNC console
    # Uses avaiablle next VNC port $OVM_SERVER_HOST:0 == 5900, :1 == 5901 etc
    # Use "xm list -l" to determince VNC port "location"
    vnc=1
    vncunused=1
    vnclisten="0.0.0.0"
    vncpasswd=''
    sdl=0
    # Set the real time clock to local time [default=0 i.e. set to utc]
    # Allows Win VM clock to work with UTC on OVM host system.
    #localtime=1
    Start VM,
    [root@ovm303 ovm303-m]# xm create vm.cfg
    Using config file "./vm.cfg".
    Error: Device 0 (vif) could not be connected. Hotplug scripts not working.
    Current bridge,
    [root@ovm303 ~]# brctl show
    bridge name bridge id STP enabled interfaces
    Update "/etc/xen/xend-config.sxp" to enable "network-bridge",
    [root@ovm303 ovm303-m]# cp /etc/xen/xend-config.sxp /etc/xen/xend-config.sxp.orig
    [root@ovm303 ovm303-m]# diff /etc/xen/xend-config.sxp /etc/xen/xend-config.sxp.orig
    165,167d164
    < # Enable network-bridge, JAP 20120322
    < (network-script network-bridge)
    <
    [root@ovm303 ~]# service xend restart
    Restarting xend...
    xend daemon (pid 8848) is running...
    [root@ovm303 ~]# brctl show
    bridge name bridge id STP enabled interfaces
    bond0 8000.002128d5ce86 no pbond0
    Start VM,
    [root@ovm303 ovm303-m]# xm create vm.cfg
    Using config file "./vm.cfg".
    Started domain ovm303-m (id=1)
    Determine VNC console session,
    [root@ovm303 ovm303-m]# xm list -l ovm303-m | grep location
    (location 0.0.0.0:5900)
    (location 3)
    VNC console session. The "oraclevm-template" tools are not run in single user so hostname is "localhost",
    [root@localhost ~]# who -r
    run-level S 2012-03-23 09:09 last=1
    Update "/etc/fstab" for "/u01" mount to use label,
    [root@localhost ~]# grep /u01 /etc/fstab
    #/dev/sdb1 /u01 ext3 defaults 1 1
    [root@localhost ~]# blkid
    /dev/mapper/VolGroup00-LogVol01: TYPE="swap"
    /dev/mapper/VolGroup00-LogVol00: UUID="2751f1b2-836b-4786-ae71-8b402e0f8503" TYPE="ext3"
    /dev/VolGroup00/LogVol00: UUID="2751f1b2-836b-4786-ae71-8b402e0f8503" SEC_TYPE="ext2" TYPE="ext3"
    /dev/VolGroup00/LogVol01: TYPE="swap"
    /dev/hda1: LABEL="/boot" UUID="8701866e-5ed5-49f7-9597-bb9709d22359" TYPE="ext3"
    /dev/hdb1: UUID="5f9a7bef-3a6d-4a83-b288-638537424fa7" SEC_TYPE="ext2" TYPE="ext3"
    [root@localhost ~]# e2label /dev/hdb1 u01
    [root@localhost ~]# grep u01 /etc/fstab
    LABEL=u01 /u01 ext3 defaults 1 1
    [root@localhost ~]# mount /u01
    [root@localhost ~]# df /u01
    Filesystem 1K-blocks Used Available Use% Mounted on
    /dev/hdb1 10317828 4250832 5542880 44% /u01
    As configured the default run level will be elevated to "5" by the "/etc/rc.local" script. This enables a
    console desktop for user "ovm". This is unneeded and will be implemented by VNC session for user
    "ovm".
    Update "/etc/inittab" to enable full multiuser mode run level 3,
    [root@localhost ~]# grep id /etc/inittab
    id:3:initdefault:
    Disable "/etc/rc.local" run level elevation,
    [root@localhost ~]# tail -2 /etc/rc.local
    # Disable local forced runlevel 5, JAP 20120404
    #telinit 5
    Disable firewall to allow VNC connections,
    [root@localhost ~]# chkconfig --list iptables
    iptables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
    [root@localhost ~]# chkconfig iptables off
    [root@localhost ~]# chkconfig --list ip6tables
    ip6tables 0:off 1:off 2:on 3:on 4:on 5:on 6:off
    [root@localhost ~]# chkconfig ip6tables off
    Reboot,
    [root@localhost ~]# reboot
    Broadcast message from root (pts/0) (Mon Apr 2 09:22:17 2012):
    The system is going down for reboot NOW!
    Post "oraclevm-template" configuration e.g. defining FQDN and static IP addresss etc. OVM Manager 3.0.3 is up.
    Configure VNC for "ovm",
    [root@ovm303-m ~]# su - ovm
    [ovm@ovm303-m ~]$ vncserver
    You will require a password to access your desktops.
    Password: Welcome1
    Verify: Welcome1
    xauth: creating new authority file /home/ovm/.Xauthority
    New 'ovm303-m:1 (ovm)' desktop is ovm303-m:1
    Creating default startup script /home/ovm/.vnc/xstartup
    Starting applications specified in /home/ovm/.vnc/xstartup
    Log file is /home/ovm/.vnc/ovm303-m:1.log
    [ovm@ovm303-m ~]$ vncserver -kill :1
    Killing Xvnc process ID 12499
    Update "xstartup",
    [ovm@ovm303-m ~]$ cat /home/ovm/.vnc/xstartup
    #!/bin/sh
    # Uncomment the following two lines for normal desktop:
    unset SESSION_MANAGER
    exec /etc/X11/xinit/xinitrc
    #[ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup
    #[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
    #xsetroot -solid grey
    #vncconfig -iconic &
    #xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
    #twm &
    [ovm@ovm303-m ~]$ vncserver
    New 'ovm303-m:1 (ovm)' desktop is ovm303-m :1
    Starting applications specified in /home/ovm/.vnc/xstartup
    Log file is /home/ovm/.vnc/ovm303-m:1.log
    Configure "/etc/sysconfig/vncservers",
    [root@ovm303-m ~]# chkconfig --list vncserver
    vncserver 0:off 1:off 2:off 3:off 4:off 5:off 6:off
    [root@ovm303-m ~]# chkconfig vncserver on
    [root@ovm303-m ~]# chkconfig --list vncserver
    vncserver 0:off 1:off 2:on 3:on 4:on 5:on 6:off
    [root@ovm303-m ~]# tail -2 /etc/sysconfig/vncservers
    # Start VNC session for ovm, JAP 20120404
    VNCSERVERS="1:ovm"

    Thanks Jim - looks great!

  • Anyone tried the Virtualbox OVA's in Linux OS Host?

    Hi, I'm asking these because I only receive VERROR_ZIP's for the FSCM92 853 when I try to import the OVA in a Virtualbox for Linux , I checked the MD5 of each zip file and were correct. Also I unpacked the OVA to check the OVF file and open it and same error , and lastly I created a similar machine as the OVF and point the disks to the VMDK's and it booted but when starts the SES configuration shows errors of disk as if the vmdk is corrupted .
    Any ideas? I'm using VBox 4.2.12.
    best regards
    Edited by: 1002933 on Apr 27, 2013 8:15 PM

    Hi, Thanks for answering ..
    I tried first with Arch Linux 64bits, now I'm going to try in a OEL6 box.
    The command to extract is just an : unzip FSCMDB-SES-85302d_ova_?of?.zip for each file
    Concat as the Guide PDF mentions :
    cat FSCMDB-SES-85302d.ova_1of7 FSCMDB-SES-85302d.ova_2of7 FSCMDB-SES-85302d.ova_3of7 FSCMDB-SES-85302d.ova_4of7 FSCMDB-SES-85302d.ova_5of7 FSCMDB-SES-85302d.ova_6of7 FSCMDB-SES-85302d.ova_7of7 > FSCMDB-SES-85302d.ova .

  • How can I convert an OVM vm (.img) to VDI (virtualbox)?

    Hi,
    how can I convert an OVM vm (.img) to VDI (virtualbox)?
    Is .img format a raw image? If yes can I use "VBoxManage convertdd" to convert from .img to vdi?
    tnx & regards,
    S.

    Hi,
    "VBoxManage convertdd" solved.
    Regards,
    S.

  • Automatic/scripted port forwarding during import of ova/ovf

    Dear all,
    I'm a little newish to the VM world so forgive me if I've said something wrong. What I'm trying to do is to import a ova file into workstation on many different workstation installs. However, this VM guest needs to have some ports forwarded for it to work correctly. My users don't feel happy to do this themselves and I would like to automate it or script it. Is this possible?
    Cheers,
    Paul

    To setup Port Mapping/Forwarding on the 802.11n AirPort Extreme Base Station (AEBSn):
    1. Assign a manual IP to the host device.
    System Preferences > Network > Show > AirPort > TCP/IP
    - Configure IPv4: Manually
    - IP Address: <enter the desired IP address for your host server>
    - Subnet Mask: 255.255.255.0
    - Router: 10.0.1.1
    - DNS Servers <your ISP DNS server IPs>
    2. Setup Port Mapping on the AEBSn.
    To setup port mapping on an AEBSn, connect wirelessly or directly, using an Ethernet cable, to one of the LAN port of the AEBSn, and then use the AirPort Utility to make these settings:
    Advanced - Port Mapping tab
    - Click the + (Add) button
    - Service: <choose the appropriate service from the Service pop-up menu>
    - Public UDP Port(s): <enter the appropriate UDP port values>
    - Public TCP Port(s): <enter the appropriate TCP port values>
    - Private IP Address: <enter the IP address of the host server>
    - Private UDP Port(s): <enter the same as Public UDP Ports or your choice>
    - Private TCP Port(s): <enter the same as Public TCP Ports or your choice>
    - Click "Continue"

  • Can't start imported VirtualBox appliance on Arch host with errors

    (I have been referred here from this thread in the VirtualBox forums because it is suspected that the problem is Arch-specific)
    I've installed latest VirtualBox 4.0.4 via pacman in a fully updated Arch Linux system.
    Then, I successfully imported the Zero Effort Groupware (ZEG) 1.3.5 appliance (which is an Ubuntu guest virtual machine) into VirtualBox. I followed all the instructions on the appliance's website to do so.
    When I try to start the virtual machine I get:
    VBoxManage startvm ZEG-1.3.5
    Waiting for the VM to power on...
    VBoxManage: error: The virtual machine 'ZEG-1.3.5' has terminated unexpectedly during startup with exit code 1
    VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component Machine, interface IMachine, callee
    I also tried running it headless and got:
    VBoxHeadless --startvm "ZEG-1.3.5" &
    [1] 1073
    [penyuan@nycticebus ~]$ Oracle VM VirtualBox Headless Interface 4.0.4_OSE
    (C) 2008-2011 Oracle Corporation
    All rights reserved.
    VRDE server is listening on port 3389.
    Error: failed to start machine. Error message: Failed to open/create the internal network 'HostInterfaceNetworking-en0: Ethernet' (VERR_INTNET_FLT_IF_NOT_FOUND).
    Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND).
    Unknown error creating VM (VERR_INTNET_FLT_IF_NOT_FOUND)
    [1]+ Done VBoxHeadless --startvm "ZEG-1.3.5"
    I don't know what to make of it, I would appreciate any help you can provide as soon as possible. Thanks!
    P.S. Here is what "VBoxManage showvminfo ZEG-1.3.5" shows:
    BoxManage showvminfo ZEG-1.3.5
    Name: ZEG-1.3.5
    Guest OS: Ubuntu
    UUID: 506a8072-2b85-4ac6-bd91-ff37406ebe73
    Config file: /home/penyuan/VirtualBox VMs/ZEG-1.3.5/ZEG-1.3.5.vbox
    Snapshot folder: /home/penyuan/VirtualBox VMs/ZEG-1.3.5/Snapshots
    Log folder: /home/penyuan/VirtualBox VMs/ZEG-1.3.5/Logs
    Hardware UUID: 506a8072-2b85-4ac6-bd91-ff37406ebe73
    Memory size: 1024MB
    Page Fusion: off
    VRAM size: 12MB
    HPET: off
    Chipset: piix3
    Firmware: BIOS
    Number of CPUs: 1
    Synthetic Cpu: off
    CPUID overrides: None
    Boot menu mode: message and menu
    Boot Device (1): DVD
    Boot Device (2): HardDisk
    Boot Device (3): Not Assigned
    Boot Device (4): Not Assigned
    ACPI: on
    IOAPIC: off
    PAE: on
    Time offset: 0 ms
    RTC: UTC
    Hardw. virt.ext: on
    Hardw. virt.ext exclusive: off
    Nested Paging: on
    Large Pages: off
    VT-x VPID: on
    State: powered off (since 2011-04-04T01:37:14.000000000)
    Monitor count: 1
    3D Acceleration: off
    2D Video Acceleration: off
    Teleporter Enabled: off
    Teleporter Port: 0
    Teleporter Address:
    Teleporter Password:
    Storage Controller Name (0): IDE Controller
    Storage Controller Type (0): PIIX4
    Storage Controller Instance Number (0): 0
    Storage Controller Max Port Count (0): 2
    Storage Controller Port Count (0): 2
    Storage Controller Bootable (0): on
    Storage Controller Name (1): SATA Controller
    Storage Controller Type (1): IntelAhci
    Storage Controller Instance Number (1): 0
    Storage Controller Max Port Count (1): 30
    Storage Controller Port Count (1): 1
    Storage Controller Bootable (1): on
    IDE Controller (1, 0): Empty
    SATA Controller (0, 0): /home/penyuan/VirtualBox VMs/ZEG-1.3.5/ZEG-1.3.5-disk1.vmdk (UUID: 7046c046-ae41-4bfe-9a52-9dd389bb8cf2)
    NIC 1: MAC: 080027CC69E3, Attachment: Bridged Interface 'en0: Ethernet', Cable connected: on, Trace: off (file: none), Type: 82540EM, Reported speed: 0 Mbps, Boot priority: 0
    NIC 2: disabled
    NIC 3: disabled
    NIC 4: disabled
    NIC 5: disabled
    NIC 6: disabled
    NIC 7: disabled
    NIC 8: disabled
    Pointing Device: PS/2 Mouse
    Keyboard Device: PS/2 Keyboard
    UART 1: disabled
    UART 2: disabled
    Audio: disabled
    Clipboard Mode: Bidirectional
    VRDE: disabled
    USB: disabled
    USB Device Filters:
    <none>
    Available remote USB devices:
    <none>
    Currently Attached USB Devices:
    <none>
    Shared folders: <none>
    VRDE Connection: not active
    Clients so far: 0
    Guest:
    OS type: Ubuntu
    Additions run level: 0
    Configured memory balloon size: 0 MB

    skunktrader wrote:The error message seems to suggest that the module vboxnetflt is not loaded
    1. I added vboxnetflt to the modules list in rc.conf, is there somewhere else I should add it?
    2. Just to be sure, I did "modprobe vboxnetflt" then tried to run the virtual machine, but still got:
    Oracle VM VirtualBox Headless Interface 4.0.4_OSE
    (C) 2008-2011 Oracle Corporation
    All rights reserved.
    VRDE server is listening on port 3389.
    Error: failed to start machine. Error message: Failed to open/create the internal network 'HostInterfaceNetworking-en0: Ethernet' (VERR_INTNET_FLT_IF_NOT_FOUND).
    Failed to attach the network LUN (VERR_INTNET_FLT_IF_NOT_FOUND).
    Unknown error creating VM (VERR_INTNET_FLT_IF_NOT_FOUND)
    What could be the problem? Thanks.

  • Importing Virtualbox VM into pool fails with any errors VDI 3.0

    I'm at the last stage of importing my VM's into mypool which I created and the importing fails with Job failed. I do not have large space /var/tmp and have setup a link to the VM's
    FINER: THROW
    com.sun.vda.service.api.ServiceException: File copy failed for server 192.168.0.25.
    at com.sun.vda.service.vbox.Storage.copyFileToVolume(Storage.java:396)
    at com.sun.vda.service.vbox.VBDesktopProvider.importImage(VBDesktopProvider.java:1300)
    at com.sun.vda.service.vbox.VBDesktopProvider.newDesktopInstance(VBDesktopProvider.java:225)
    at com.sun.vda.service.core.jobs.ImportJob.runJob(ImportJob.java:49)
    at com.sun.vda.service.core.jobs.Job.run(Job.java:122)
    at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:417)
    at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:269)
    at java.util.concurrent.FutureTask.run(FutureTask.java:123)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:650)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:675)
    at java.lang.Thread.run(Thread.java:595)
    Caused by: java.io.FileNotFoundException: (No such file or directory)
    at java.io.RandomAccessFile.open(Native Method)
    at java.io.RandomAccessFile.<init>(RandomAccessFile.java:212)
    at com.sun.vda.service.vbox.Storage.copy(Storage.java:773)
    at com.sun.vda.service.vbox.Storage.copyFileToVolume(Storage.java:386)
    ... 10 more
    Apr 4, 2009 1:40:15 PM com.sun.vda.service.persistence.PersistentJob commit

    Thomas,
    Thanks for your reply. I have finished the VDI 3.0 Install and everything works fine now. For some reason even though the Storage OS was opensolaris 2008.11 but running on a VM it did not like that and once I dedicated a seperate box, then things worked fine. I just redid the install of the VM to try if it goes through and this time it works well. So my setup as of now has everything running on a ASUS MBD whitebox with Open Solaris running as a VM in Virtual Box and acting as a ZFS Storage (Virtualbox is running inside the GA release. However I would like to run everything in one OS which would be the GA. I tried setting up the iSCSI interface in GA and it did not work. Any ideas on how I can make this work on just one platform ?

  • OVM 3.0.3 importing templates issue

    We are doing some testing with the JD Edwards EnterpriseOne environment and Oracle provides templates to use for Oracle VM. The instructions are a bit confusing but I am stuck at trying to import these templates.
    Here are the templates I have hosted on a web server so I can import them into OVM.
    http://<server>/templates2/E1_EL5U5_X86_64_PVM_10GB.tar.bz2 --> This is the only one I can import successfully. When completed it shows a system.img file and I can actually setup a VM and it boots up fine. (Oracle Linux 5 OS)
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.0 (2.0 GB)          
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.1 (2.0 GB)     
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.2 (2.0 GB)     
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.3 (2.0 GB)     
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.4 (2.0 GB)     
    http://<server>/templates2/E1_ENT_898.4.1_X86_64.tar.bz2     (2.0 GB)
    http://<server>/templates2/E1_HTML_898.4.1_WLS_X86_64.tar.bz2 (700 MB)
    All the other templates I get an error when it is unpacking the template. The error reads
    "Server error message: Template import error: Cannot find disk file: system.img
    on server "44:45:4c:4c:52:00:10:48:80:51:ca:c0:4f:42:46:31" associated with object "cfgFile_0004fb000014000024d7f889441e1672""
    Why is it looking for this system.img file? These other templates contain *.img files they just are not called system.img (ex E1_HTML.img, ...)
    I should note I am using local storage for my repository (1 TB drive) but I haven't had any issues with that so far.
    Thanks
    Troy

    user5933938 wrote:
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.0 (2.0 GB)          
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.1 (2.0 GB)     
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.2 (2.0 GB)     
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.3 (2.0 GB)     
    http://<server>/templates2/E1_DB_898.4.1_11GR2_X86_64.tar.bz2.part.4 (2.0 GB)     
    You need to combine all these files into a single .tar.gz file first -- follow the README on E-Delivery for the template to recombine and unpack the template. Unfortunately, OVM3 can't do the recombination for you.

  • Oracle VM 3 with VM Manager

    Hello,
    As virt-install is not available in Oracle VM 3.0, I would like to know if there is any another way to create VMs manually in Oracle VM 3.0 (we dont want to get Oracle VM Manager)
    Thank you!!!

    Trivial modification to configure the network bridge,
    Excerpt Re: OVM 3.0.3 import VirtualBox OVM Manager 3.0.3 OVA template
    "Start VM,
    [root@ovm303 ovm303-m]# xm create vm.cfg
    Using config file "./vm.cfg".
    Error: Device 0 (vif) could not be connected. Hotplug scripts not working.
    Current bridge,
    [root@ovm303 ~]# brctl show
    bridge name bridge id STP enabled interfaces
    Update "/etc/xen/xend-config.sxp" to enable "network-bridge",
    [root@ovm303 ovm303-m]# cp /etc/xen/xend-config.sxp /etc/xen/xend-config.sxp.orig
    [root@ovm303 ovm303-m]# diff /etc/xen/xend-config.sxp /etc/xen/xend-config.sxp.orig
    165,167d164
    < # Enable network-bridge, JAP 20120322
    < (network-script network-bridge)
    <
    [root@ovm303 ~]# service xend restart
    Restarting xend...
    xend daemon (pid 8848) is running...
    [root@ovm303 ~]# brctl show
    bridge name bridge id STP enabled interfaces
    bond0 8000.002128d5ce86 no pbond0"

  • Changing Hypervisor IP Addresses

    Hi Everybody-
    We set up our OVM cluster's networking, initially, in a very simple "get it working for testing" setup and need to make it more robust, utilizing all four network interfaces. We want to use two ports for management and migration and two ports for production traffic. In order to do this, the management interface has to be moved to a different subnet with different IP addresses. Currently the hypervisors are in DNS.
    How can we safely make the change (downtime is acceptable for this) without losing other configurations? Our biggest concern is the hypervisor IP address change, both how to make the change itself and how to then get the pool back in order with the new IPs.
    Thoughts? Documentation links (I'd like to RTFM this one, but haven't found it yet)? Thanks!
    Rob

    The default OVM Manager 3.1.1 install uses Oracle XE database.
    Changing the hostname of the OVM Manager will require update of "HOST" in "listener.ora" and "tnsnames.ora",
    [root@ovms311-m admin]# pwd
    /u01/app/oracle/product/11.2.0/xe/network/admin
    [root@ovms311-m admin]# grep HOST *.ora
    listener.ora: (ADDRESS = (PROTOCOL = TCP)(HOST = ovm311-m)(PORT = 1521))
    tnsnames.ora: (ADDRESS = (PROTOCOL = TCP)(HOST = ovms311-m)(PORT = 1521))
    I do this for deployment of OVM Manager using a tar archive of a undiscovered Manager installed directly on OVM 3.1.1 host.
    Similar to prior posting "OVM 3.0.3 import VirtualBox OVM Manager 3.0.3 OVA template",
    Re: OVM 3.0.3 import VirtualBox OVM Manager 3.0.3 OVA template
    In this deployment I installed OL6 then OVM Manager 3.1.1 vs import of the OVA. I then do an archive of the Manager VM
    and copy it to other OVM hosts to self manage e.g. DMZ hosts which are islands to themselves.
    I am currently playing with upgrade of this OVM Manager 3.1.1 to OVM Manager 3.2.1.

  • Failed to start vm by imported ova in OVM

    Hi,
    I am new in ovm, I have a .ova file which is exported from virtual box vm manager. I have sucessfully imported the .ova file and created a template also.
    The exported .ova file is linux image along with 3 number of harddisk (.vdmk) . the imported template in ovm is converted those in .img file and also created a vm.cfg file. But I found the OS is not showing there, thats why I edited the template and choose Red Hat Linux, other options also there like oracle linux,Microsoft Windows 7. I have sucessfully created a vm from that template.
    but when I start the vm, I got error e2fsck failed and asking for root password to recover.
    Please help and correct me if any thing wrong in my process.
    Thanks,
    Debashish Dey

    Hi,
    Yes, you are right. I compared the fstab in both devices ( Virtual box and ovm) and found the device name is different.
    in virtual box it was /dev/sdc where in OVM it is /dev/xvdc. I changed in fstab and its works for me.
    Thanks,
    Debashish

  • OVM 3.1.1 vhd import

    Hi,
    I have VHD disks, working well in Virtualbox for Windows. When I import them into OVM 3 (3.0.3 or 3.1.1) they are correctly converted into IMG files but they are not bootable.
    That process was working (with th exact same VHDs) in OVM 2.2

    Same situation here...but I've solved importing VHDs to VM Virtualbox then exporting the VM created (File->Export Appliance)
    In VM Manager import the .ova file generated by VirtualBox as an assembly. Clone the assembly to a template then deploy the VMs by that template.
    Hope this helps!!
    Greets!!

  • Error starting VM imported from VMWare

    Hi,
    I have installed OVM Server 3.0.3 to evaluate the impact of virtualice almost all our systems to OVM. Actually we are experiencing an error importing to OVM Server a VM running in VMWare.
    We have tried two methods:
    1 - Use WMWare OVFTool to create an OVA. Import this OVA to an assembly. Create a template first and a VM after that from this assembly.
    2 - Running P2V in the Vmware VM and import it to OVM Server.
    The result is the same with both methods. We get a VM that seems to be correct (there are no errors in all the steps) but when we try to run this VM in 3 seconds more or less it goes from stopped to running and finally to stopped again.
    The job "start Virtual Machine" has the status completed and he Details button doesnt show any error so i dont know what is failing...
    Any idea?
    Thanks

    Look in /var/log/xen/ on the VM server it's being created on. There will be a file named qemu-dm-<name of your vm>.log. It uses the long alphanumeric name of the vm, not the nice short name, unfortunately. That file might give some clue.
    My best guess is that it's not finding the disk to boot off of.
    Jim

  • Importing Oracle Virtual Box VM into OVS 2.2

    Hi All,
    1] We bought a New Dell PowerEdge Server. we installed the OVS 2.2 onto the same.
    2] Now I have couple of VM that are riunning inside VirtualBox S/w. I created these m/c for POC's.
    3] I want to move these machines to OVS 2.2 server so that it will be run by OVS and managed by OVM.
    There is no clear documentation regarding the same. There is no vm.cfg file for the Virtual Box.
    For a Std VirtualBox machine; we have .ovf and couple of .vmdk files. I have multiple .vmdk file for my single VM.
    Can you point me to docs/procedure on how to migrate these machines from VirtualBox env(which is 2008 server running virtualBox Client) to OVS server 2.2??
    Regards
    Sushil

    I executed the V2V process for converting the VMWare Images to OVM but mine are Oracle VirtualBox Images
    To import VMware VMDK images using Oracle VM Manager, follow the same process you would to import any other virtual machine image resource, generally
    from an external source (HTTP or FTP location), using the Import wizard. Or you can copy the VMDK image files manually into /OVS/running_pool directory.
    Oracle VM will automatically detect that the image is in the VMDK format and convert the image file to an Oracle VM format and deploy it to the specified
    Server Pool.
    The OVS is detecting the directory containing the files for my VM. After importing the manager UI is failing with "OVM-5004 Invalid virtual machine config file." error
    Sushil
    Edited by: Sushil Deshpande on Jul 25, 2011 7:15 AM

  • Please help about OVM network configuration

    I have ready RAC OVM templates and below is the instructions.
    Can someone explain this to me?
    I want to create a OVM server and OVM manager on virtualbox. But I couldnt und network configurations.
    Following are the non-standard requirements for your OVM setup:
    The VMs must be able to interact with the OVM server (Dom0) at IP address 192.0.2.1
    The OPVM server (Dom0) must supply NTP and DNS services to the DB VMs
    The OVM server must be configured with 3 virtual bridges (virbr0, virbr1, virbr2) to support the different Database Machine networks.
    Here are some notes, assumptions and requirements associated with these VMs:
    1. The public network interfaces on all the VMs occupy addresses in the 192.0.2.X range. The private storage network and cluster interconnect on all the VMs occupy addresses in the 192.168.1.X range.
    2. All the VMs assume access to NTP and DNS services provided by servers at 192.0.2.1. One way to provide these services is to configure a bridged network interface on 192.0.2.1 under Dom0 and to configure NTP and DNS services on Dom0. Another way is to create an additional VM with a primary network interface on 192.0.2.1 which offers the required services.

    986330 wrote:
    I have 16gn memory on my laptop and I want to create an OVM server and OVM manager on virtual box. Is it possible?
    Then I will import some OVM templates to that system.
    No - not possible using Virtualbox - as noted, OVM and Virtualbox are different technologies and an OVM install will destroy the native OS.
    I believe you are confusing technologies and terms. If I understand your needs, you are wanting to install Virtualbox on your OS, then create VMs using Virtualbox and/or import Virtualbox VM templates. Note that Virtualbox VM templates are different than OVM VM templates - the latter can only be installed on OVM Server.
    1.1 Installing Oracle VM
    HTH
    Srini

Maybe you are looking for