Ask Slashdot: Which Virtual Machine Software For a Beginner?
An anonymous reader writes "I am getting ready to start learning the use of virtual machines. What VM software would you recommend? This is for personal use. It would be good to run both Windows VMs and Linux VMs. Early use would be maintaining multiple Windows installs using only one desktop computer with plenty of cores and memory. I would be starting with a Windows host, but probably later switching to a Linux host after I learn more about it. Free is good, but reliability and ease of use are better. What is your preferred choice for a VM beginner? VMware? Xen? VirtualBox? Something else?"
It may also be helpful if you can recommend particular VM software for particular uses, or provide some insight on different hosting options.
I honestly just used VMware for the first time today but it was very easy to use and booted up in seconds. You can add virtual drives with a click and if you are anywhere familiar with the operating system you are attempting to emulate, I'd say it's a safe bet. Maybe the community can offer a few free options for you to try out as well.
VirtualBox is the best for a beginner. User-friendly GUI, sane defaults, it Just Works.
Easy to set up (I walked my brother through it over the phone) easy to use (ditto) and fairly full featured.
Virtualbox is pretty reliable and includes acceleration on 64 bit systems along with an extremely simple to use GUI and easy to install guest additions that allow your display to easily scale. It's the one thing from Oracle that I actually use and recommend to others. For your requirements, it's licensed under the GPL v2 and works on Windows, Linux, and Mac.
VMWare is probably the best beginner VM package due to its documentation, support, and polish. But as others have said, they are all pretty good.
To start, virtualbox.
Its free, supports linux and windows and freebsd. (And Solaris!! Oh boy!!!) It's also easy to use and works well. For desktop use I'd choose it over whatever desktop product vmware is selling, even if I got it for free.
Microsoft has a free desktop visualization product too but it's documentation is sparse, and it has wierd limitations. It also pretty much only runs windows.
Vmware ESX is a damn nice piece of software, but it required dedicated hardware (hypervisor only! Local console is config and diagnostics only. Can't see your VM's on the local monitor) They have a free version and I use it for everything from my router software to windows instances to a minecraft server.. All on one phisical machine.
There's a free version of hyper-v (The microsoft coutnerpart to esx) but it's setup is downright difficult if you're not in a domain environment.
+1.
Really? A discussion is not required for this
VirtualBox is the easiest free option to get started.
It can run inside a host OS, so you don't need a bare metal install, and don't need a web interface to use it.
It has easy to install and operate clients in Windows and Linux (can't speak for Mac).
It can build VM's easily. (VMWare free options cannot create VM's)
If you are willing to spend a little money, the VMWare Workstation is more powerful and offers similar features to those above, but better resource management in general.
I've been working with VMware since ESX 3.5. It's still my virtualization platform of choice, but on my desktop, I now run Hyper-v. It's included as a role in Windows 8, and is painless to install and configure.
Reminds me of all the Indians on software dev forums asking for questions that could be determined with 5 minutes of work, or worse, Googling. This thread will feature no consensus and probably will do more harm to an opinion than good.
VMware tends to be fussy about the hardware. I had a non-descript Athlon dual core that ran VMware just fine but lacked horsepower and wa maxed out on RAM at 4GB. I decided to buy a 6 core Athlon, new motherboard and 16 GB of RAM. VMware installed just fine but the clock drifted all over the place (several seconds per minute). Finally gave up on VMware and went Xen. Xen worked just fine but lacked all of the nice management tools and virtual networking stuff that VMware had. SIGH.
Also, it will only install if you have a supported network card in your target box. Check the hardware requirements.
If you want to try VMware, there is a free version: http://www.vmware.com/products/vsphere-hypervisor/overview.html
Oh yeah, one other downside of VMware is the management console only runs on Windoze (at least when I was using it about a year or so ago). You will still need a separate, standalone Windows box
Cheers,
Dave
They that can give up essential liberty to obtain a little temporary safety deserve neither safety nor liberty.
Ben
Now it isn't.
All of the above work well and stuff like virtualbox is a free download away.
In some cases I've migrated live systems to virtual with nothing more than clonezilla and virtualbox on what must have been close to the default settings.
The free hypervisor is here: http://www.vmware.com/products/vsphere-hypervisor/overview.html
You'll need a license key, which you can also get (for free of course) on that website.
vSphere/ESXi is not the type of hypervisor he is seeking. It takes complete control over the hardware and it is picky on hardware, for an example it will not work with Realtek network cards. There is a HCL that you can refer to to get best results. I have built a whitebox ESXi hypervisor by replacing the network card on a desktop machine, and using a standard sata controller.
For what he's looking for, vmware-server or vmware-workstation is recommended as both run on top of an existing OS. I remember vmware-server being free, I'm not sure about vmware-workstation.
I ran a command line tool to increase the size of the disk image, but this didn't show up as extra disk space inside the OS.
Likely this only increased the size of the virtual disk, but not the partition that the OS lives on. Partition resizing is file-system-dependent as it requires understanding the FS layout. gparted can do the job if you boot from a live CD, but it'd be simpler to just start over since the OS is screwed up anyway.
BTW, VirtualBox defaults to dynamically sized disks that only take up as much physical space as is actually used by the guest OS. The allocation size is more of a maximum size, so you can safely set it higher than you think you'll need and not waste space.
VirtualBox runs OS/2 as guest!!! that's a must for VM engine :)
Virtualbox is a great starting point since he's looking for something to run on windows. I have found it's performance to be lacking, but it's a good way to cut your teeth. Once you cut your teeth on the concepts of virtualization and get a bit of Linux experience, move on to something that can run on a headless machine and save resources. Virtualbox can do that, but it's actually a bigger headache to setup in headless mode than kvm or xen. KVM is super easy to set up on most distros, and there's some great guides on howtoforge.net. The trickiest part about setting up most of the hypervisors on Linux is creating a bridged network interface, which is only necessary to get the machines out of nat mode and give them IPs on the public network. It's still not that hard to set up the bridged interface, it's just that the rest of the set up is so ridiculously easy, just apt-get/yum intsall the packages with virt-manager to manage it all and you're set. At least in my situation KVM guests required less resources to get the same performance as a virtualbox guest. It wasn't too hard to convert a virtual box VM to a qcow image KVM could use, either, so you're not locked into one hypervisor.