<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/4.0.3" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>IT Professionals - Author(s): Axel Achten (axel8s)</title>
		<link>http://blogs.lessthandot.com/index.php/ITProfessionals/</link>
		<atom:link rel="self" type="application/rss+xml" href="http://blogs.lessthandot.com/index.php/ITProfessionals/?tempskin=_rss2" />
		<description></description>
		<language>en-GB</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=4.0.3"/>
		<ttl>60</ttl>
				<item>
			<title>Converting a Virtualbox VDI to a VMWare VMDK file</title>
			<link>http://blogs.lessthandot.com/index.php/ITProfessionals/other/converting-a-virtualbox-vdi-to</link>
			<pubDate>Wed, 27 Jun 2012 11:46:00 +0000</pubDate>			<dc:creator>Axel Achten (axel8s)</dc:creator>
			<category domain="main">Other</category>			<guid isPermaLink="false">1763@http://blogs.lessthandot.com/</guid>
						<description>&lt;p&gt;Today I was &quot;gifted&quot; a Virtualbox VDI file with a setup I need to use to give some custom training. I tried Virtualbox once but it was not a success and also this time the machine failed to boot. It kept complaining about some video settings and the boot sequence was interrupted. Time to convert the VDI to a good old VMWare VMDK, but how? The first hit in Google showed me an easy way to do this on a Linux, the second showed a complex one with third party tools on Windows. So here&#039;s the easy one on Windows:&lt;br /&gt;
First of all you need to have &lt;a href=&quot;https://www.virtualbox.org/wiki/Downloads&quot;&gt;VirtualBox&lt;/a&gt; installed. Now open a command prompt and use the following VboxManage syntax:&lt;/p&gt;
&lt;div class=&quot;codebox&quot;&gt;&lt;div class=&quot;codeheader&quot;&gt;Code: &lt;span&gt;cmd&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;codeholder&quot;&gt;&lt;div class=&quot;cmd&quot; id=&quot;cb22796&quot; style=&quot;display: block; color: rgb(0, 0, 0);&quot;&gt;%program files\Oracle\VirtualBox\VBoxManage clonehd &#039;sourcefile&#039;.vdi &#039;destinationfile&#039;.vmdk --format VMDK&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div id=&quot;cb19887&quot; style=&quot;display: none; color: red;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;The result looks like this:&lt;/p&gt;
&lt;div class=&quot;image_block&quot;&gt;&lt;a href=&quot;http://blogs.lessthandot.com/media/users/axel8s/VDI2VMDK.png?mtime=1340804694&quot;&gt;&lt;img alt=&quot;&quot; src=&quot;http://blogs.lessthandot.com/media/users/axel8s/VDI2VMDK.png?mtime=1340804694&quot; width=&quot;676&quot; height=&quot;102&quot; /&gt;&lt;/a&gt;&lt;/div&gt;
&lt;p&gt;Now I can create a new VMWare virtual machine, replace the blank VMDK with the converted VMDK from the VDI file and start working.&lt;br /&gt;
Sometimes it&#039;s good to see you can still rely on older technology.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://blogs.lessthandot.com/index.php/ITProfessionals/other/converting-a-virtualbox-vdi-to&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://lessthandot.com/&quot;&gt;LessThanDot&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Today I was "gifted" a Virtualbox VDI file with a setup I need to use to give some custom training. I tried Virtualbox once but it was not a success and also this time the machine failed to boot. It kept complaining about some video settings and the boot sequence was interrupted. Time to convert the VDI to a good old VMWare VMDK, but how? The first hit in Google showed me an easy way to do this on a Linux, the second showed a complex one with third party tools on Windows. So here's the easy one on Windows:<br />
First of all you need to have <a href="https://www.virtualbox.org/wiki/Downloads">VirtualBox</a> installed. Now open a command prompt and use the following VboxManage syntax:</p>
<div class="codebox"><div class="codeheader"><span>cmd</span><div class="codebox_javascript_links"><a href="http://blogs.lessthandot.com" onclick="linenumberOnOff('cb80245'); return false;">Line number Off</a> | <a href="http://blogs.lessthandot.com#" onclick="expandCode('cb80245','cb32983'); return false;">Hide</a> | <a href="http://blogs.lessthandot.com#" onclick="selectCode(this); return false;">Select all</a></div></div><!-- we need this dummy div to fix a firefox bug when selecting code lines --><div class="codeholder"><div class="cmd" id="cb80245" style="display: block; color: rgb(0, 0, 0);"><ol><li style="" class="li1">%program files\Oracle\VirtualBox\VBoxManage clonehd 'sourcefile'.vdi 'destinationfile'.vmdk --format VMDK</li></ol></div><div id="cb32983" style="display: none; color: red;"></div></div></div>
<p>The result looks like this:</p>
<div class="image_block"><a href="http://blogs.lessthandot.com/media/users/axel8s/VDI2VMDK.png?mtime=1340804694"><img alt="" src="http://blogs.lessthandot.com/media/users/axel8s/VDI2VMDK.png?mtime=1340804694" width="676" height="102" /></a></div>
<p>Now I can create a new VMWare virtual machine, replace the blank VMDK with the converted VMDK from the VDI file and start working.<br />
Sometimes it's good to see you can still rely on older technology.</p><div class="item_footer"><p><small><a href="http://blogs.lessthandot.com/index.php/ITProfessionals/other/converting-a-virtualbox-vdi-to">Original post</a> blogged on <a href="http://lessthandot.com/">LessThanDot</a>.</small></p></div>]]></content:encoded>
								<comments>http://blogs.lessthandot.com/index.php/ITProfessionals/other/converting-a-virtualbox-vdi-to#comments</comments>
			<wfw:commentRss>http://blogs.lessthandot.com/index.php/ITProfessionals/?tempskin=_rss2&#38;disp=comments&#38;p=1763</wfw:commentRss>
		</item>
			</channel>
</rss>
