How convert physical windows 2003 server to virtual machine on box running ESXi for free?

26,555

Solution 1

You want to use either VMware Converter Standalone or Visioncore vConverter to P2V your current boxes. The process isn't all that difficult - you'll need to:

  • Install ESXi on a decent brand-name server (not all white boxes are compatible).
  • Install the converter of your choice on your workstation.
  • Walk through the conversion.
  • Power off the physical server.
  • Power up the new Virtual server.
A few notes:
  • The conversion is run completely from your workstation. This is important, because the better your workstation the faster the conversion. It's all about the amount of data, but a decent estimation is about 5-10 minutes per gig of data on the physical server. That might even be a little high actually.
  • It's rare that a conversion is perfect. Generally, you will need to reconfigure the networking once you've powered up the virtual guest. If at all possible, I recommend the E1000 network adapter in the virtual machine - I've found that to be the most reliable. You get some goofy issues with the Flexible adapter, which I think is the default.
  • Don't forget to install the VMware tools! These are a must for decent UI performance on the new VM guest.
I could go into much more detail, but really before you do any of this, hop into VMware's site and dig around for infomration in the knowledgbase and communities - there's a ton of good info up there.

Best of luck!
Jes

Solution 2

I think that VMware vCenter Converter Standalone 4.0.1 is free (have to admit I've only used the spendy one sorry).

Share:
26,555

Related videos on Youtube

User
Author by

User

Updated on September 17, 2022

Comments

  • User
    User over 1 year

    I have a windows server 2003 box that I want to virtualize for free if possible. My understanding is that VMware's ESXi is free. Is there a free way to create the image? What are the steps necessary to do this?

  • Spence
    Spence about 14 years
    +1 - It is free. Personally, though, I prefer a box loaded natively as a VM rather than converted. Its just cleaner that way, IMO.
  • xeon
    xeon about 14 years
    Here are the docs and other information: vmware.com/support/pubs/converter_pubs.html
  • Chopper3
    Chopper3 about 14 years
    @Evan, I could not agree with you more - converting is a short term thing in my mind, a quick win but not a strategy.
  • user1364702
    user1364702 about 14 years
    While it may work, virtualbox isn't really quite as suited for running servers 24/7 as VMWare or other server VM tools are. VirtualBox is fantastic for virtualizing testbeds and workstations, for things like having to run Visual Studio or Outlook on an Ubuntu workstation. For a mail server, I wouldn't do it.
  • intuited
    intuited about 14 years
    I also realized — after I wrote that answer — that it's not really the same class of app as ESXi, in that ESXi alleviates the need for a host OS. I actually voted to delete my answer but I guess I don't have the unilateral power to do that. Thanks for the tip.. I've mostly used VMs as a development tool when debugging device drivers, and also to have access to windows apps or linux under the other host OS.
  • Joe Internet
    Joe Internet about 14 years
    I don't think this needs to be closed. VirtualBox can be configured to run in a headless mode, with CLI. If installed on top of a lightweight server install such as Arch or Debian, it may provide a very similar experience to ESXi. Also, the full ESX actually includes a very light Redhat-based linux distro as a management interface. I'm not sure how the HW abstrations would differ, but I think it's a valid possible solution.
  • Jes
    Jes about 14 years
    If I may humbly disagree - I've converted several servers with the VMware Converter (Visioncore also makes a free converter BTW), and all of my P2V's running in production are as stable if not more so than when they were physical. I know it 'feels weird' to do this, but in my experience it's a solid and viable solution, and is a long term strategy for my company.
  • EEAA
    EEAA about 14 years
    Joe Internet - I'm not sure how much you've worked with ESX or ESXi, but I'm guessing not very much. I use both VirtualBox and a couple HA ESX clusters daily, and I can say, while VirtualBox is awesome for desktop virtualization, even in headless mode, it is an incredibly immature product when compared to ESX or ESXi. For the most very basic virtualization needs, yes, VirtualBox will probably work OK. One will run into the bounds of its ability very quickly, though.
  • Chopper3
    Chopper3 about 14 years
    Sorry, I can't have been clear, what I (and possibly Evan) mean is that I'd rather have my VMs built from scratch than from a P2V conversion. I fully support that conversions can often be more stable than physicals. Hope this clarifies.
  • intuited
    intuited about 14 years
    @ErikA : are you comparing it to the full or free version of ESXi? What are some examples of features that are lacking in VirtualBox?
  • EEAA
    EEAA about 14 years
    ESXi, the free version. Well for one, performance. ESXi runs on bare metal, so you're removed one level of abstraction from the equation versus VirtualBox. Also, VirtualBox is pretty limited when it comes to networking things like 802.1q, softswitching, etc are just not supported with VBox. The last item is that VMware ESX lets you provision user accounts and grant fine-grained access control over what each account is allowed to do on each VM.
  • User
    User about 14 years
    is powering off the physical server a necessary step?
  • Jes
    Jes about 14 years
    Keep in mind that your conversion is a clone. You can't have both on the network at the same time or you get name and possibly IP conflicts. After the conversion, you need to disconnect the physical server from the network, whether or not you power it down. Alternatively, you can rename and re-IP it so there are no conflicts, but that's potentially risky...