16
6
I want to know that is it possible to create a fully portable virtual machine using any of the VMWare like products? My objective is to create a virtual machine (XP as guest OS), install some app in it, put the vm in a usb2 drive (performance is not a matter), and run it in any windows host os (xp, vista, 7) without installing anything in host, using any host account (admin, guest, limited). Is it possible to do that using any vmware like product? If possible then which one is my best bet?
PS : I found a closest match : Qemu; but its lot slower. Doing any real work (coding stuff on .net) in a XP os running on qemu is virtually impossible. Is there any better one than Qemu or is there anyway I can make Qemu faster? But one restriction, I do not have admin privilege to all the machines, so the solution should be literally portable on any Windows based system.
From an answer by the OP
Guys,
Thanks for your valuable responses. I have been hacking with Qemu a lot, coz it is kind of promising and it conforms to the definition of portability (what I want actually); you need not install anything to the host. I found out a tweak (though all of you may know it) and like to share with you guys. If you use
-no-acpi
option for Qemu, it is lot faster, not nearly vmware/virtualbox, but that's the performance I can live with. I used the following command for Qemu
"J:\Virtualization\QEMU\qmqemu0-12-3\qemu.exe" -L "J:\Virtualization\QEMU\qmqemu0-12-3" -M "pc" -m 512 -cpu "qemu32" -vga cirrus -serial vc -parallel vc -name "MinXP" -drive "file=J:\Virtualization\QEMU\Store\MinXP.qcow2,index=0,media=disk" -boot order=dc,menu=on -net nic,vlan=0,macaddr=52-54-00-F3-27-A6,model=rtl8139 -net user,vlan=0 -win2k-hack -no-acpi -hwnd 722498 -localtime
With this option it will take long time to install XP, but once up it is faster.
3It is possible to execute a VM with no administrative permission or hardware support, and qemu does it. What does require administrative privileges is running a VM fast — but often fast here means “not impractically slow”. – Gilles 'SO- stop being evil' – 2010-08-14T10:22:37.510