Thanks for the help. There were a couple of other things that I needed to do in order for this to work on VirtualBox. The first is that on Virtualbox the processor extensions are not passed through and you have to force it to qemu from kvm.
/etc/one/oned.conf
From this:
VM_MAD = [
NAME = “kvm”,
SUNSTONE_NAME = “KVM”,
EXECUTABLE = “one_vmm_exec”,
ARGUMENTS = “-t 15 -r 0 kvm”,
DEFAULT = “vmm_exec/vmm_exec_kvm.conf”,
TYPE = “kvm”,
KEEP_SNAPSHOTS = “no”,
IMPORTED_VMS_ACTIONS = “terminate, terminate-hard, hold, release, suspend,
resume, delete, reboot, reboot-hard, resched, unresched, disk-attach,
disk-detach, nic-attach, nic-detach, snap-create, snap-delete”
]
To this
VM_MAD = [
NAME = “kvm”,
SUNSTONE_NAME = “KVM”,
EXECUTABLE = “one_vmm_exec”,
ARGUMENTS = “-t 15 -r 0 kvm”,
DEFAULT = “vmm_exec/vmm_exec_kvm.conf”,
TYPE = “qemu”,
KEEP_SNAPSHOTS = “no”,
IMPORTED_VMS_ACTIONS = “terminate, terminate-hard, hold, release, suspend,
resume, delete, reboot, reboot-hard, resched, unresched, disk-attach,
disk-detach, nic-attach, nic-detach, snap-create, snap-delete”
]
Notice that type was changed. Restart open nebula from there.
The second thing is that it it would not boot the cdrom on the SCSI bus but would with the IDE one.
Now I do have a second problem. I’m not exactly a network engineer. I basically just want to be able to have the vm sit on the same network as my home LAN. I can’t even get any sort of network to work at all though. I have followed this guide to set up a bridge:
https://wiki.centos.org/Cloud/OpenNebula/QuickStart
Using the interface I have created a network with these options:
bridge = br0
address start: 10.175.100.60 (my home network is on 10.175.100.0/24)
size: 20
When I boot the CentOS installation cd (using a network install iso), and I attempt to enable the network either by not configuring the network (should be picked up by the dhcp server), or manually configuring the address, it does not work. The funny thing is that it even wants to default to a 100Mps card.
Anyway, I’m getting no connectivity at all. Any help or advice here would be really appreciated.