Just to go over a few things to let people know more about tohe potential of this. whilst the software here has to have a pre-made VM to run, it is totally possible to make your OWN vm's with just a few other apps. For example you can use QEmu to make a virtual disk for vmware, under windows this would apparently be:
Code:
"C:\Program Files\Qemu\qemu-img.exe" create -f vmdk c:\linux\gentoo.vmdk 10G
and i'd assume an obvious replacement for linux would be fine:
Code:
qemu-img create -f vmdk /home/user/gentoo.vmdk 10G
and then all you need after that is a .vmx config file:
Code:
config.version = "8"
virtualHW.version = "4"
memsize = "256"
ide0:0.present = "TRUE"
ide0:0.fileName = "c:\linux\gentoo.vmdk"
ide1:0.present = "TRUE"
ide1:0.fileName = "c:\linux\install-x86-minimal-2005.1.iso"
ide1:0.deviceType = "cdrom-image"
ethernet0.present = "TRUE"
ethernet0.connectionType = "nat"
usb.present = "TRUE"
sound.present = "TRUE"
sound.virtualDev = "es1371"
displayName = "Gentoo Linux"
guestOS = "other26xlinux"
nvram = "gentoo.nvram"
scsi0:0.redo = ""
ethernet0.addressType = "generated"
uuid.location = "56 4d d9 96 08 47 ef ee-bf f2 48 a8 ce 89 7f 68"
uuid.bios = "56 4d d9 96 08 47 ef ee-bf f2 48 a8 ce 89 7f 68"
ide1:0.autodetect = "TRUE"
ethernet0.generatedAddress = "00:0c:29:89:7f:68"
ethernet0.generatedAddressOffset = "0"
checkpoint.vmState = "gentoo.vmss"
tools.remindInstall = "TRUE"
ide0:0.redo = ""
as you'll see tis info is largely taken from this page:
http://fucoder.com/2005/10/install-g...re-windows-xp/
There's also reference here to an exhaustive set of predefined images:
http://www.brunofreitas.com/portal/viewtopic.php?t=41 so t's easier still... so basically you can legitimately get a near full on vmware experience without it costing a penny.