<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Spind.net Blog &#187; VMWare</title>
	<atom:link href="http://blog.spind.net/tag/vmware/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.spind.net</link>
	<description>Stories from the trenches of System Administration</description>
	<lastBuildDate>Mon, 19 Dec 2011 09:21:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Moving disk images from VMWare to VirtualBox</title>
		<link>http://blog.spind.net/2009/07/02/moving-disk-images-from-vmware-to-virtualbox/</link>
		<comments>http://blog.spind.net/2009/07/02/moving-disk-images-from-vmware-to-virtualbox/#comments</comments>
		<pubDate>Thu, 02 Jul 2009 14:34:39 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Fedora11]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=153</guid>
		<description><![CDATA[I couldn&#8217;t find any updated information on this online, so this is my ultra short guide to converting VMWare disk images to VirtualBox. This is tested with VirtualBox 3.0.0 under Fedora 11. Step one is to concatenate fragmented VMWare images. This might not me necessary in your case, but we&#8217;ll do it anyway. Let&#8217;s assume [...]]]></description>
			<content:encoded><![CDATA[<p>I couldn&#8217;t find any updated information on this online, so this is my ultra short guide to converting VMWare disk images to VirtualBox. This is tested with VirtualBox 3.0.0 under Fedora 11.</p>
<p>Step one is to concatenate fragmented VMWare images. This might not me necessary in your case, but we&#8217;ll do it anyway. Let&#8217;s assume the image you want to convert is called <tt>leopard-fragmented.vmdk</tt>:</p>
<div class="codebox">
vdiskmanager -r leopard-fragmented.vmdk leopard.vmdk
</div>
<p>Now you&#8217;re got a rather huge VMWare disk image file, and we&#8217;ll use <tt>qemu</tt> to convert it into a raw disk image:</p>
<div class="codebox">
qemu-img convert leopard.vmdk leopard.bin
</div>
<p>This will take a while, and you&#8217;ll probably end up with a less-than-huge file since this is the raw file, without any fancy compression. Now you&#8217;ll want to convert this to the VirtualBox disk format, <tt>vdi</tt>:</p>
<div class="codebox">
VBoxManage convertfromraw leopard.bin leopard.vdi
</div>
<p>The <tt>vdi</tt> ended up being around 7GB &#8211; more or less the exact size of the <tt>vmdk</tt> file. The temporary <tt>bin</tt> file was 32GB though. Be sure you&#8217;re got enough room on your disk for this job.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2009/07/02/moving-disk-images-from-vmware-to-virtualbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VMWare vs Paranoia</title>
		<link>http://blog.spind.net/2009/03/10/vmware-vs-paranoia/</link>
		<comments>http://blog.spind.net/2009/03/10/vmware-vs-paranoia/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 10:58:08 +0000</pubDate>
		<dc:creator>hc</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Fedora]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Paranoia]]></category>
		<category><![CDATA[VMWare]]></category>

		<guid isPermaLink="false">http://blog.spind.net/?p=102</guid>
		<description><![CDATA[As a website developer, I unfortunately need to test everything in Microsoft&#8217;s dreaded Internet Explorer. For this, I&#8217;ve got a Windows XP running on an installation of VMware® Workstation on my Linux desktop. It works like a charm, except when the kernel is updated. Aside from being a website developer, I&#8217;m also a paranoid system [...]]]></description>
			<content:encoded><![CDATA[<p>As a website developer, I unfortunately need to test everything in Microsoft&#8217;s dreaded Internet Explorer. For this, I&#8217;ve got a Windows XP running on an installation of <a href="http://www.vmware.com/">VMware® Workstation</a> on my Linux desktop. It works like a charm, except when the kernel is updated.</p>
<p>Aside from being a website developer, I&#8217;m also a paranoid system administrator. One of the first thing I add to my login scripts, is <tt>umask 077</tt> &#8211; the command that sets the permission mask for newly created files. Setting this to <tt>077</tt> prevents anyone but the current user from being granted any rights &#8211; read, write or execution. It&#8217;s a sane thing to do, but unfortunately a lot of scripts fail to explicitly grant access to other users, especially when installing RPM packages or &#8211; in this case &#8211; running VMWare after a kernel upgrade to build new VMWare-specific kernel modules.</p>
<p>In this specific case, VMWare kernel modules were built by the <tt>root</tt> user, and ended up in <tt>/lib/modules/2.6.27.19-170.2.35.fc10.x86_64/misc/</tt> which was created by the build process. Read permissions were not explicitly granted to everyone, so when running <tt>vmware</tt> as a mortal user, it was unable to actually read and verify the newly built kernel modules. The natural response to the user wasn&#8217;t <em>&#8220;Unable to read kernel module files&#8221;</em>, but instead <em>&#8220;You need to build kernel modules for your specific kernel&#8221;</em>. Makes a lot of sense, eh? <img src='http://blog.spind.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>Manually granting read and execution rights on the <tt>/misc</tt> directory and the files in it fixed the issue.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.spind.net/2009/03/10/vmware-vs-paranoia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

