VirtualBox 5.0.0 RC1 crashes Solaris 11.3 beta

Discussions related to using VirtualBox on Solaris hosts.
Locked
kloczek
Posts: 14
Joined: 9. Sep 2015, 15:35

VirtualBox 5.0.0 RC1 crashes Solaris 11.3 beta

Post by kloczek »

I'm trying to create and start some VBox in batch mode on Solaris 11.3 beta and on start VM whole system reboots.

Here is what exactly I'm doing:

- creating VNIC for bridge interface by "dladm create-vnic -l net0 oss-spoke0"
- using this VNIC I'm creating my VBox using script:

VM=oss-spoke

echo "Unregister $VM"
VBoxManage unregistervm $VM \
--delete

echo "Create $VM.vmdk image"
VBoxManage createmedium disk \
--size 5120 \
--format VMDK \
--filename $VM.vmdk

echo "Register $VM.vmdk image as Linux_64 VM"
VBoxManage createvm \
--name $VM \
--ostype "Linux_64" \
--register

echo "Add SATA controller to $VM"
VBoxManage storagectl $VM \
--name "SATA Controller" \
--add sata \
--controller IntelAHCI

VBoxManage storageattach $VM \
--storagectl "SATA Controller" \
--port 0 \
--device 0 \
--type hdd \
--medium $VM.vmdk

echo "Add APIC"
VBoxManage modifyvm $VM --ioapic on

echo "Add boot sequence order"
VBoxManage modifyvm $VM --boot1 net --boot2 disk

echo "Add RAM and VRAM"
VBoxManage modifyvm $VM --memory 4096 --vram 128

echo "Network card"
VBoxManage modifyvm $VM \
--nic1 bridged \
--bridgeadapter1 oss_spoke0 \
--macaddress1 auto

After start above:

# ./create
Unregister oss-spoke
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Create oss-spoke.vmdk image
0%...10%...20%...30%...40%...50%...60%...70%...80%...90%...100%
Medium created. UUID: 34a1b646-8e48-4da0-840d-4aae0ec67d34
Register oss-spoke.vmdk image as Linux_64 VM
Virtual machine 'oss-spoke' is created and registered.
UUID: eb164de9-5da6-47ad-b622-4b4059fe1899
Settings file: '/root/VirtualBox VMs/oss-spoke/oss-spoke.vbox'
Add SATA controller to oss-spoke
Add APIC
Add boot sequence order
Add RAM and VRAM
Network card

# VBoxManage list vms
"oss-spoke" {eb164de9-5da6-47ad-b622-4b4059fe1899}

So seems everything is OK. On start VBox by "VBoxHeadless -v on -s oss-spoke" however whole system is crashing.
In messages logs I see only:

Sep 9 13:29:03 bootstrap pseudo: [ID 129642 kern.info] pseudo-device: vboxusbmon0
Sep 9 13:29:03 bootstrap genunix: [ID 936769 kern.info] vboxusbmon0 is /pseudo/vboxusbmon@0
Sep 9 13:29:04 bootstrap pseudo: [ID 129642 kern.info] pseudo-device: devinfo0
Sep 9 13:29:04 bootstrap genunix: [ID 936769 kern.info] devinfo0 is /pseudo/devinfo@0
Sep 9 13:29:04 bootstrap vboxdrv: [ID 702911 kern.notice] vboxdrv: fffffffff7fe4020 VMMR0.r0
Sep 9 13:29:05 bootstrap vboxdrv: [ID 702911 kern.notice] vboxdrv: fffffffff80ce020 VBoxDDR0.r0
Sep 9 13:29:05 bootstrap vboxdrv: [ID 702911 kern.notice] vboxdrv: fffffffff8257020 VBoxDD2R0.r0
Sep 9 13:32:45 bootstrap genunix: [ID 540533 kern.notice] ^MSunOS Release 5.11 Version 11.3 64-bit
noteirak
Site Moderator
Posts: 5229
Joined: 13. Jan 2012, 11:14
Primary OS: Debian other
VBox Version: OSE Debian
Guest OSses: Debian, Win 2k8, Win 7
Contact:

Re: VirtualBox 5.0.0 RC1 crashes Solaris 11.3 beta

Post by noteirak »

VirtualBox is not in Beta anymore, please use the latest stable version and the regular forums. Locking this.
Hyperbox - Virtual Infrastructure Manager - https://apps.kamax.lu/hyperbox/
Manage your VirtualBox infrastructure the free way!
Locked