Tricks for getting a VM to boot from CD - bios.bootDelay
May 15th, 2008 by A. MikkelsenToday i came accross a cool article about how to easy get your VM to boot from CD.
Read the full story here:
In summery:
add the following line anyware to your VM’s .vmx file.
bios.bootDelay = “boot delay in milliseconds”
Ex. Setting the boot delay to 15000 gives you 15 sec. to hit the F2.
Upgrading to ESX 3.5.x and VC 2.5.x - Read this guide
May 15th, 2008 by A. MikkelsenLooking for a guide to upgrade your VMware ESX enviroment to ESX 3.5 and VC 2.5, then this guide from RTFM Education is a must read.
Free ESXi quick guide
May 15th, 2008 by A. MikkelsenRTFM Education has released a quick guide for ESXi
Get it here
http://www.rtfm-ed.co.uk/?p=476
New website will lanch soon
April 11th, 2008 by A. MikkelsenA new website will lanch soon http://govirtual.tv/
It will feature premire video tutorials and educational screencasts related to enterprise virtualization technology.
I’m looking forward to see what they can cook up.
Undocumented VCB config.js feature
April 11th, 2008 by A. MikkelsenDuncan over at YellowBricks.com found a undocumented fearure in the VCB config.js file
One of my customers wanted to use the default VCB framework but did not want to quiesce the VM for several reasons. (Databases, Active Directory etc.) I could not find an option in the config.js file but noticed the following in the file glue.js:
// A fallback to be able to switch to non-quiesced snapshots
if (typeof(NO_QUIESCE) != "undefined") {
cmd +="-Q 0 ";
}
In other words, setting the option “NO_QUIESCE” with no value in config.js results in the VM not being quiesced, default it will quiesce the VM! I added the following line to the config.js file to accomplish this:
NO_QUIESCE=”";
Quick rename of VM
April 11th, 2008 by A. MikkelsenDuncan over at YelloBricks.com posted a nice easy howto on renaming a VM from within VC and from the service console.
There are a couple of ways to rename a Virtual Machine, but there are two in my opinion that stand out:
- Shutdown the VM
- Rename the VM in VirtualCenter
- Migrate the VM and move it to another Datastore
- done!
And from the service console:
- vmware-cmd -s unregister /vmfs/volumes/datastore/vm/vmold.vmx
- mv /vmfs/volumes/datastore/vm-old /vmfs/volumes/datastore/vm-new
- cd /vmfs/volumes/datastore/vm-new
- vmkfstools -E vm-old.vmdk vm-new.vmdk
- find . -name ‘*.vmx*’ -print -exec sed -e ’s/vm-old/vm-new/g’ {} \;
- mv vm-old.vmx vm-new.vmx
for every file that hasn’t been renamed (.vmsd etc.) - vmware-cmd -s register /vmfs/volumes/datastore/vm-new/vm-new.vmx
Upgraded this site to Wordpress 2.5
April 10th, 2008 by A. MikkelsenToday i finally got time to upgrade this site to Wordpress version 2.5.
And i must say that i’m impressed with this new version.
It has a few new cool features and the admin pages design has changed alot - AND I LIKE IT. It is easier to find your way around the menus.
I can only say if you don’t already use Wordpress get your copy today - www.wordpress.org
The ultimate plugin to VC 2.5 - SVmotion
February 14th, 2008 by A. MikkelsenThe people over at Lostcrations have created the first known third party plugin to VC 2.5.
It enables you to SVmotion your VM’s VMDK’s between different storage locations
Take a look at it
http://www.lostcreations.com/code/wiki/vmware/viplugins/svmotion
Free Disaster Recovery for physical servers
February 14th, 2008 by A. MikkelsenFrane Borozan has created a automated script based on VMware Converter to take a physical server and make fresh replica of it on VMware Server.
It is worth a look.
http://www.p2vbackup.com
A. Mikkelsen