<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
	
	>
<channel>
	<title>
	Comments on: Virtualization with KVM under Redhat Linux, Migrate VMware virtual images to KVM	</title>
	<atom:link href="https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/feed/" rel="self" type="application/rss+xml" />
	<link>https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/</link>
	<description>Arun&#039;s blog</description>
	<lastBuildDate>Mon, 23 Oct 2023 18:30:49 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.4.2</generator>
	<item>
		<title>
		By: Arun N S		</title>
		<link>https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-52</link>

		<dc:creator><![CDATA[Arun N S]]></dc:creator>
		<pubDate>Mon, 16 May 2011 06:39:13 +0000</pubDate>
		<guid isPermaLink="false">http://arunnsblog.com/?p=278#comment-52</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-51&quot;&gt;surya&lt;/a&gt;.

Not sure, might work. try with vmware player/server and KVM on a 64 bit OS with full virtualization. But might have reliability issues, not recommended for production use. Can you please let me know the hardware specification?

 In my opinion it is not a good idea to run both in the same machine. You could convert the vmware images to raw format and use it with KVM, or the other way around. 

./arun]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-51">surya</a>.</p>
<p>Not sure, might work. try with vmware player/server and KVM on a 64 bit OS with full virtualization. But might have reliability issues, not recommended for production use. Can you please let me know the hardware specification?</p>
<p> In my opinion it is not a good idea to run both in the same machine. You could convert the vmware images to raw format and use it with KVM, or the other way around. </p>
<p>./arun</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: surya		</title>
		<link>https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-51</link>

		<dc:creator><![CDATA[surya]]></dc:creator>
		<pubDate>Mon, 16 May 2011 06:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://arunnsblog.com/?p=278#comment-51</guid>

					<description><![CDATA[Hi Arun,
         I have a doubt regarding virtualisation.can i use VMware and KVM in a single host? will it work without any problems?




Thanks, 
Surya]]></description>
			<content:encoded><![CDATA[<p>Hi Arun,<br />
         I have a doubt regarding virtualisation.can i use VMware and KVM in a single host? will it work without any problems?</p>
<p>Thanks,<br />
Surya</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Arun N S		</title>
		<link>https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-50</link>

		<dc:creator><![CDATA[Arun N S]]></dc:creator>
		<pubDate>Sat, 31 Jul 2010 05:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://arunnsblog.com/?p=278#comment-50</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-49&quot;&gt;yogesh&lt;/a&gt;.

Hi Yogesh,
 Yes you can convert the vmware images(VMDK) from a windows host as well, Bonding is used if you have multiple network interfaces doing failover/loadbalancing etc. It will simply work with bridging or nating on a single interface. Instead of creating bridge with bond interface, do it with the physical interface (like eth0 or eth1).
&lt;code&gt;$ cat /etc/sysconfig/network-scripts/ifcfg-br0&lt;/code&gt;

&lt;em&gt;DEVICE=br0
ONBOOT=yes
TYPE=Bridge
IPADDR=11.11.11.11
NETMASK=255.0.0.0
GATEWAY=1.1.1.1
&lt;/em&gt;

- Configure the physical interface:
&lt;code&gt;$ cat /etc/sysconfig/network-scripts/ifcfg-eth0&lt;/code&gt;

&lt;em&gt;DEVICE=eth0
BRIDGE=br0
ONBOOT=yes&lt;/em&gt;

./arun]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-49">yogesh</a>.</p>
<p>Hi Yogesh,<br />
 Yes you can convert the vmware images(VMDK) from a windows host as well, Bonding is used if you have multiple network interfaces doing failover/loadbalancing etc. It will simply work with bridging or nating on a single interface. Instead of creating bridge with bond interface, do it with the physical interface (like eth0 or eth1).<br />
<code>$ cat /etc/sysconfig/network-scripts/ifcfg-br0</code></p>
<p><em>DEVICE=br0<br />
ONBOOT=yes<br />
TYPE=Bridge<br />
IPADDR=11.11.11.11<br />
NETMASK=255.0.0.0<br />
GATEWAY=1.1.1.1<br />
</em></p>
<p>&#8211; Configure the physical interface:<br />
<code>$ cat /etc/sysconfig/network-scripts/ifcfg-eth0</code></p>
<p><em>DEVICE=eth0<br />
BRIDGE=br0<br />
ONBOOT=yes</em></p>
<p>./arun</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: yogesh		</title>
		<link>https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-49</link>

		<dc:creator><![CDATA[yogesh]]></dc:creator>
		<pubDate>Fri, 30 Jul 2010 23:47:53 +0000</pubDate>
		<guid isPermaLink="false">http://arunnsblog.com/?p=278#comment-49</guid>

					<description><![CDATA[Hi Arun,

Thanks for nice explanation. Does it also apply to VMWare guest images of Windows XP (x86) on Windows-7 (x64) host installation? Whats the purpose of the bonding? Under single NIC can one use NAT instead of bridging?

Thanks,
Yogesh]]></description>
			<content:encoded><![CDATA[<p>Hi Arun,</p>
<p>Thanks for nice explanation. Does it also apply to VMWare guest images of Windows XP (x86) on Windows-7 (x64) host installation? Whats the purpose of the bonding? Under single NIC can one use NAT instead of bridging?</p>
<p>Thanks,<br />
Yogesh</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Tweets that mention Virtualization with KVM under Redhat Linux, Migrate VMware virtual images to KVM - $ Arun's Technical Blog - arun@arunnsblog [~]$ -- Topsy.com		</title>
		<link>https://arunns.net/virtualization-with-kvm-under-redhat-linux-migrate-vmware-virtual-images-to-kvm/#comment-48</link>

		<dc:creator><![CDATA[Tweets that mention Virtualization with KVM under Redhat Linux, Migrate VMware virtual images to KVM - $ Arun's Technical Blog - arun@arunnsblog [~]$ -- Topsy.com]]></dc:creator>
		<pubDate>Fri, 09 Apr 2010 22:17:40 +0000</pubDate>
		<guid isPermaLink="false">http://arunnsblog.com/?p=278#comment-48</guid>

					<description><![CDATA[[...] This post was mentioned on Twitter by Fynali Iladijas, Arun Natarajan S. Arun Natarajan S said: Virtualization with KVM under Redhat Linux, Migrate VMware virtual images to KVM: KVM (Kernel Based Virtual Machin... http://bit.ly/9RE7OP [...]]]></description>
			<content:encoded><![CDATA[<p>[&#8230;] This post was mentioned on Twitter by Fynali Iladijas, Arun Natarajan S. Arun Natarajan S said: Virtualization with KVM under Redhat Linux, Migrate VMware virtual images to KVM: KVM (Kernel Based Virtual Machin&#8230; <a href="http://bit.ly/9RE7OP" rel="nofollow ugc">http://bit.ly/9RE7OP</a> [&#8230;]</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
