Dobrica Pavlinušić's random unstructured stuff
VirtualBox: Revision 2
Seems to be best supported right now (package in Debian, optional drivers for Windows, starting unmodified VMWare machines -- after you guess right settings that is!)

^ Links

* "Windows ACPI problem"<http://www.virtualbox.org/ticket/995> - `agp440.sys` problem
* "How to migrate existing Windows installations to VirtualBox"<http://www.virtualbox.org/wiki/Migrate_Windows> - it's applicable to other emulators as well!
* "Creating and Configuring Headless VMs in VirtualBox"<http://vmetc.com/2008/07/12/creating-and-configuring-headless-vms-in-virtualbox/>

^ Debian Install

OSE version (no USB!) comes in Debian, compile `vboxdrv` with:

.pre
root@llin:~# module-assistant a-i virtualbox-ose
.pre

^ Command line VM creation

.pre
VBoxManage createvm -name "VirtWorkshop" -register
VBoxManage modifyvm VirtWorkshop -memory 512Mb -acpi on -boot1 dvd -nic1 nat -dvd /rest/iso/ScummVM\ Launcher\ 2.iso
VBoxManage createvdi -filename hda-8Gb.vdi -size 8Mb -register
VBoxManage modifyvm VirtWorkshop -hda hda-8Gb.vdi
VBoxHeadless -startvm VirtWorkshop
.pre