How to Migrate Physical Machines and Virtual Machines with VMware vCenter Converter Boot CD 4.1.1
I've been looking for it as well. My 4.1 converter got all scratched up and won't boot now. Unlike you, I don't have a backup .iso on the network (I know, bad me).I've been searching for a few hours and can't find anywhere to download it so I think we're probably not going to.
Vmware Vcenter Converter Boot Cd 4.1.1 Download
Here's a link to the actual download. Again, sign into VMware.com first then follow the link: =VC40U2&vmware=downloadBinary&file=VMware-convertercd-4.1.1-206170.zip&pot=1&code=FC41274396633949&hashKey=6d05f5a91b4972167be4f383d0c19574&tranId=64928048
Obtain a version of "Coldclone" from VMware, it is a bootable ISO image that will do the heavy liftingwhen it comes to migrating the source system. After Coldclone converted, I found I had to do a LOT of manual steps to get the Solaris 10 X86/64 environment to successfully recognize it's new environment and run cleanly. The majority of this document details the steps I found necessary in order to properly get the Solaris 10 systems to run correctly under VMware. I did search the web, and found several entries that were Extremely helpful, but incomplete. Get the "coldclone.iso" which is aptly named: VMware vCenter Converter BootCD. I found it in a zip file named "VMware-convertercd-4.1.1-206170.zip" which is a individual item/part of "VMware vCenter Server 4 Update 2" At the time of this writing, it was located in my.vmware.com/web/vmware/details/vc40u2/ZHcqYmRoZXRiZHR3ZA==This was a chore all in it's own, but well worth the quest to find. Now that you hopefully have the image, you need to burn a copy, or use the iso as a file in the hypervisor to be able to boot the Solaris system with it. Get started: 1. Gracefully shutdown Solaris 10 on the system you are sourcing the conversion to VMware. Plan on it being down for a while. Size of the original system will determine how long it will take. 2. Boot the system from the ISO/CD/DVD that has the "coldclone" package on it. 3. start the networking and make sure you have a network path to the VMware server that will host the new guest Solaris image. 4. Start a new task to import, select the drives you want copied overmost likely all of them. There may be an error message that pops up, about not finding the source system, that is okay. Make sure it finds the drive(s)after clicking Ok. 5. Answer the rest of the task's questions, remember you'll need the credentials of the VMware host server to be able to add it to the guests on that system.I chose not to have the machine boot automatically. There are some pre-start steps to be taken. 6. Start the task and wait for the conversion to take place. 7. Once 100% complete with the conversion, log on to the VMware server with the Vi-Client and notice the new machine name you just created from the cold clone process.8. Edit the virtual machine properties, and go to the options tab on the top of the panel. Choose "other" and then sub-select Oracle Solaris 10 - 64 or 32 bit depending on source system'sinstallation type. The Solaris boot up banner will tell you if it's 64 or 32 bit. This is critical to get right. 9. Under Hardware properties: If you selected 64 bit Solaris, change the Bus Logic SCSI controller to be LSI Parallel, Bus Logic is not supported in 64 bit mode. 10. Adjust your network adapters as appropriate for the networks the system is attached to. By default, ours came up inside Solaris as a type of "pcn". If delete them, we had the option to add them as "e1000". Depends on what hardware you actually have and what VMware offers. You need to adjust accordingly inside Solaris to address the right hardware. Now the hard work starts and the following steps are crucial to have a properly booted and running system. 11. Start the guest and select to boot to failsafe mode. It will start up, and give you a message similar to the following: Solaris 10 * X86 was found on /dev/dsk/cXtXdXsX Do you wish to have it mounted read-write on /a? Choose "y" for yes. Take note of where the system identified "/a" as being mounted on, this is important information for later. Once you get a command prompt, I like to do the following to help with getting the system usable for editing. # stty rows 24 cols 80# exec /bin/ksh -o emacs ## optional choice - handles backspace well. personal preference# TERM=ansi # Acceptable emulation for console in vmware. Not perfect. # export TERM # So "vi" editor can see the variable. # cd /a/etc# cp path_to_inst path_to_inst.save# cp /etc/path_to_inst path_to_inst # Roughly an empty file, it gets rebuilt later from scratch. # cd /a/boot/solaris # cp bootenv.rc bootenv.rc.saveUsing the value noted on where "/a" is mounted do: # ls -l /dev/dsk/cXtXdXsX cut -c89- This should yield a value similar to /pci@0,0/pci15ad,1976@10/sd@0,0:a [ yours most likely will vary]Next Store the string on the bottom of the bootenv.rc file so we can have it handy to use inside the vi editor. # ls -l /dev/dsk/cXtXdXsX cut -c89- >> bootenv.rc # Remember append mode with '>>' This will put the text you need at the bottom of the file. Use 'vi' to edit the /a/boot/solaris/bootenv.rc file and fix the "setprop bootpath 'your value goes here' line. Goal here is to remove the old device path, and put in the current correct one. Save the file and you may want to do a diff on the two files just to ensure only that one line has changed. This is most critical to be able to boot the system with the appropriate kernel. Next you'll need to fix the vfstab file to reflect current and correct cXtXdXsX devices. The individual slices should be the same as before. Please keep in mind, that once Solaris knows of a controller, it doesn't want to let go of it. This may result in your controller being labeled as "c1" now instead of "c0". Remember we changed it in the properties field of VMware earlier. Also, depending on system was first built, you may have to introduce a target component to each device name.Every line in vfstab that references /dev/dsk and /dev/rdsk (usually two places each line) will need to be modifiedto reference the correct device name in the new operating environment. "c0d0s0" will most likely be "c1t0d0s0" now. Please note the two core changes in the previous names. It most likely will be "c1" and need a target component, most likely "t0". Solaris doesn't give up known contollers very well, it increments the controller number. Part of the persistent binding built into the system. Be careful here, if it's not right, you'll need to reboot the system to failsafe modeto fix it. Sorry for the complexity here, no easy way to state it otherwise. Save off the file, and again do a "diff" command on it to verify the changes you made. Next fix up the networking files: Rename your /a/etc/hostname.* files to reflect the proper network device. PCN* was on the device type on our systems. # cd /a/etc/# mv hostname.rstl0 hostname.pcn0 # Your device types may vary - but do for all interfaces connected to your system. Next, clean up old entries so they can be regenerated properly: # rm /a/etc/devices/* # rm /a/dev/rdsk/c* # rm /a/dev/dsk/c* # rm /a/dev/cfg/c* The next two lines will regenerate the entries we previously generated and update the boot archive appropriately. # devfsadm -v -r /a # reboot /w -arvsIf everything went well, the system should come up cleanly and you should be back in business. Verify your network assignments to make sure everything is connected properly, and you should be in a good workable state. Hope this help! - RSHRe:Solaris 10 X86/64 conversion to VMware - Howto Thank you for the excellent post and detailed instructions. You saved me many hours of frustration. The only difference I saw was that my vfstab didn't have the /dev/dsk or /dev/rdsk references. I had to reboot once and let it run fsck before that file was updated. But once it was, I made all the modifications to the controller name and everything came up fine on the next reboot.Once again, thanks for the great post.MattRe:Solaris 10 X86/64 conversion to VMware - HowtoYou're very welcome! I'm glad it helped out.... halls Re:Solaris 10 X86/64 conversion to VMware - Howto 7 Years, 11 Months ago Karma: 0 Hi,This is an old post I know, but I was wondering if anyone has done this with vCenter 5.0? And if so, where is the converter boot iso? Will the 4.1 converter work on a physical host if vCenter is 5.0? liam Re:Solaris 10 X86/64 conversion to VMware - HowtoI can't think of any reason why it would not work just fine. If you can get past the initial connection cleanly, and it can attachto vCenter - it should start pushing the virtual image just fine. I have not tried this, but would believe it should work just fine.
Im Gegensatz zu Cold Clone: Bis Version 4 hat es eine VMware vCenter Converter BootCD geben: die im Paket "VMware-convertercd-4.1.1-206170.zip enthaltene "coldclone.iso" gibt es auf der VMware Seite nicht mehr direkt zum Download. die BootCD ist aber im VMWare vCenter Server 4 Update 2 enthalten, welches noch heruntergeladen werden kann.