Starting up the KVM error occurred Error starting domain: Requested operation is not valid: network 'default' is not active Locate the default.xml file $ locate default.xml /etc/vic/default/network/default.xml Review the file $ cat /etc/vic/default/network/default.xml <network> <name>default</name> <uuid>1b9cd3e0-b7f9-4220-97e0-e1b4483ac2d8</uuid> <forward mode='nat'/> <bridge name='virbr0'…

VirtualBox: Create vm from script
Edit a few variables prior to kicking off the script, for instance the host name in the variable VM='RHEL_6_5_5' to whatever your new vm host name will be. VM='RHEL_6_5_5' VBoxManage createhd --filename $VM.vdi --size 80000 VBoxManage createvm --name $VM --ostype "RedHat_64" --register VBoxManage storagectl $VM --name "SATA Controller" --add sata…