<?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: HowTo: Install configure KVM Virtualization &amp; run Guest OSes in openSUSE</title>
	<atom:link href="http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/</link>
	<description>Tips,Tricks, Tutorials,How Tos and Troubleshooting suse linux</description>
	<lastBuildDate>Thu, 24 Jan 2013 21:01:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: mtrifo</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-3004</link>
		<dc:creator>mtrifo</dc:creator>
		<pubDate>Tue, 26 Jan 2010 14:37:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-3004</guid>
		<description><![CDATA[I&#039;ve just tried:
1) installed kvm and qemu through Yast (they are already available in the distribution, i.e. no zypper commands required).
I was not able to find “kqemu-kmp-default&quot;, hence I didn&#039;t install kqemu.
3) checked for the modules with &quot;lsmod &#124; grep kvm&quot;   
3) with Yast, added “kvm kvm-amd kqemu” in /etc/sysconfig  (although kqemu is missing !!)
4) created the image
mkdir /vms
cd /vms
qemu-img create -f qcow xp_disk.img 10G
5) installed XP
qemu-system-x86_64 -hda /home/vms/xp_disk.img -cdrom /home/iso/WinXP_Pro_SP2_IT.iso -boot d  -m 512
6) started XP, with either:
qemu-system-x86_64 -hda /home/vms/xp_disk.img 
or
qemu-kvm -hda /home/vms/kubu_disk.img
Both commands work. With the latter, XP seems to be faster, BUT not as faster as expected !!

I guess that with kqemu it should be faster !
Could someone tell me where can I retrieve it for OpenSUSE 11.2 ?

Thanks]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve just tried:<br />
1) installed kvm and qemu through Yast (they are already available in the distribution, i.e. no zypper commands required).<br />
I was not able to find “kqemu-kmp-default&#8221;, hence I didn&#8217;t install kqemu.<br />
3) checked for the modules with &#8220;lsmod | grep kvm&#8221;<br />
3) with Yast, added “kvm kvm-amd kqemu” in /etc/sysconfig  (although kqemu is missing !!)<br />
4) created the image<br />
mkdir /vms<br />
cd /vms<br />
qemu-img create -f qcow xp_disk.img 10G<br />
5) installed XP<br />
qemu-system-x86_64 -hda /home/vms/xp_disk.img -cdrom /home/iso/WinXP_Pro_SP2_IT.iso -boot d  -m 512<br />
6) started XP, with either:<br />
qemu-system-x86_64 -hda /home/vms/xp_disk.img<br />
or<br />
qemu-kvm -hda /home/vms/kubu_disk.img<br />
Both commands work. With the latter, XP seems to be faster, BUT not as faster as expected !!</p>
<p>I guess that with kqemu it should be faster !<br />
Could someone tell me where can I retrieve it for OpenSUSE 11.2 ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dj</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-2990</link>
		<dc:creator>dj</dc:creator>
		<pubDate>Wed, 20 Jan 2010 23:19:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-2990</guid>
		<description><![CDATA[Have you tried kvm virtualization on OpenSuSE 11.2?  TU]]></description>
		<content:encoded><![CDATA[<p>Have you tried kvm virtualization on OpenSuSE 11.2?  TU</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nettezzaumana</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1601</link>
		<dc:creator>nettezzaumana</dc:creator>
		<pubDate>Sun, 09 Nov 2008 01:33:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1601</guid>
		<description><![CDATA[## so i will again write a steps ::

zypper ar http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0 KVM
zypper refresh
zypper in -r KVM kvm
zypper in qemu
modprobe kmp
modprobe kmp-amd ## owners of intel need to load kmp-intel instead
lsmod &#124; grep kmp ## check if loaded 
usermod -A kvm username ## need to reload user if active to make changes affect
qemu-img create -f raw /path/to/disk.img 2G
qemu-kvm -hda /path/to/disk.img -cdrom /path/to/bootable.iso -boot d -m 128 -cpu athlon -localtime

## you can order these modules be loaded during boot by editing /etc/sysconfig/kernel in variable MODULES_LOADED_ON_BOOT=foo ..

## JFYI :: qemu-system-x86_64 binary used in article above is provided by package:

# rpm -qif `which qemu-system-x86_64` &#124; sed &#039;/^Name/!d&#039;
Name        : qemu

## and have nothing to do with KVM based virtualization ..

regards]]></description>
		<content:encoded><![CDATA[<p>## so i will again write a steps ::</p>
<p>zypper ar <a href="http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0" rel="nofollow">http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0</a> KVM<br />
zypper refresh<br />
zypper in -r KVM kvm<br />
zypper in qemu<br />
modprobe kmp<br />
modprobe kmp-amd ## owners of intel need to load kmp-intel instead<br />
lsmod | grep kmp ## check if loaded<br />
usermod -A kvm username ## need to reload user if active to make changes affect<br />
qemu-img create -f raw /path/to/disk.img 2G<br />
qemu-kvm -hda /path/to/disk.img -cdrom /path/to/bootable.iso -boot d -m 128 -cpu athlon -localtime</p>
<p>## you can order these modules be loaded during boot by editing /etc/sysconfig/kernel in variable MODULES_LOADED_ON_BOOT=foo ..</p>
<p>## JFYI :: qemu-system-x86_64 binary used in article above is provided by package:</p>
<p># rpm -qif `which qemu-system-x86_64` | sed &#8216;/^Name/!d&#8217;<br />
Name        : qemu</p>
<p>## and have nothing to do with KVM based virtualization ..</p>
<p>regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nettezzaumana</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1600</link>
		<dc:creator>nettezzaumana</dc:creator>
		<pubDate>Sun, 09 Nov 2008 01:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1600</guid>
		<description><![CDATA[*** sorry .. 
modprobe kmp-amd ## should be there ^^ .. not `modprobe kmp-pae`]]></description>
		<content:encoded><![CDATA[<p>*** sorry ..<br />
modprobe kmp-amd ## should be there ^^ .. not `modprobe kmp-pae`</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nettezzaumana</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1599</link>
		<dc:creator>nettezzaumana</dc:creator>
		<pubDate>Sun, 09 Nov 2008 01:15:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1599</guid>
		<description><![CDATA[NO .. there is major disinfo .. steps in this article does not lead to run KVM based guest, but pure software based quest based on qemu..

to run machine under KVM, proceed as follows ::

## add with alias KVM needed repo and install packages
zypper ar http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0 KVM
zypper refresh
zypper in -r KVM kvm
zypper in qemu

## load and check modules .. in my case amd
modprobe kmp
modprobe kmp-pae
lsmod &#124; grep kmp

## add suggested user into kvm group to can use kvm as non-root
usermod -A kvm 

## create disk and run guest .. 
qemu-img create -f raw /path/to/disk.img 2G
qemu-kvm -hda /path/to/disk.img -cdrom /path/to/bootable.iso -boot d -m 128 -cpu athlon -localtime


&lt;&lt; package qemu is needed only for qemu-img binary .. it is not necessary to add qemu repo as well as installing qemu-modules 

please fix it in article ..

regards by nettezzaumana]]></description>
		<content:encoded><![CDATA[<p>NO .. there is major disinfo .. steps in this article does not lead to run KVM based guest, but pure software based quest based on qemu..</p>
<p>to run machine under KVM, proceed as follows ::</p>
<p>## add with alias KVM needed repo and install packages<br />
zypper ar <a href="http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0" rel="nofollow">http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0</a> KVM<br />
zypper refresh<br />
zypper in -r KVM kvm<br />
zypper in qemu</p>
<p>## load and check modules .. in my case amd<br />
modprobe kmp<br />
modprobe kmp-pae<br />
lsmod | grep kmp</p>
<p>## add suggested user into kvm group to can use kvm as non-root<br />
usermod -A kvm </p>
<p>## create disk and run guest ..<br />
qemu-img create -f raw /path/to/disk.img 2G<br />
qemu-kvm -hda /path/to/disk.img -cdrom /path/to/bootable.iso -boot d -m 128 -cpu athlon -localtime</p>
<p>&lt;&lt; package qemu is needed only for qemu-img binary .. it is not necessary to add qemu repo as well as installing qemu-modules </p>
<p>please fix it in article ..</p>
<p>regards by nettezzaumana</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Arnold van Kampen</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1405</link>
		<dc:creator>Arnold van Kampen</dc:creator>
		<pubDate>Sun, 12 Oct 2008 08:57:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1405</guid>
		<description><![CDATA[zypper ar http://download.opensuse.org/repositories/Virtualization:/Qemu/openSUSE_11.0/ “QEMU Virtualization”

Seems not to work until you remove the space in &quot;QEMU Virtualisation&quot;...
The alias it seems has to be one word only.
This is true in Yast and at the command prompt.]]></description>
		<content:encoded><![CDATA[<p>zypper ar <a href="http://download.opensuse.org/repositories/Virtualization:/Qemu/openSUSE_11.0/" rel="nofollow">http://download.opensuse.org/repositories/Virtualization:/Qemu/openSUSE_11.0/</a> “QEMU Virtualization”</p>
<p>Seems not to work until you remove the space in &#8220;QEMU Virtualisation&#8221;&#8230;<br />
The alias it seems has to be one word only.<br />
This is true in Yast and at the command prompt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1319</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 02 Oct 2008 21:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1319</guid>
		<description><![CDATA[Fixed the command now. Should have been &quot;ar&quot;]]></description>
		<content:encoded><![CDATA[<p>Fixed the command now. Should have been &#8220;ar&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CyBrChRsT</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1318</link>
		<dc:creator>CyBrChRsT</dc:creator>
		<pubDate>Thu, 02 Oct 2008 21:41:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1318</guid>
		<description><![CDATA[Uh...

zypper am http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0/ “KVM Virtualization”
Unknown command &#039;am&#039;]]></description>
		<content:encoded><![CDATA[<p>Uh&#8230;</p>
<p>zypper am <a href="http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0/" rel="nofollow">http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0/</a> “KVM Virtualization”<br />
Unknown command &#8216;am&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Konstantin Burov</title>
		<link>http://www.susegeek.com/virtualization/howto-install-configure-kvm-virtualization-run-guest-oses-in-opensuse/comment-page-1/#comment-1316</link>
		<dc:creator>Konstantin Burov</dc:creator>
		<pubDate>Thu, 02 Oct 2008 11:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.susegeek.com/?p=916#comment-1316</guid>
		<description><![CDATA[Great article, thanks!]]></description>
		<content:encoded><![CDATA[<p>Great article, thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
