<?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 &#038; 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>
	<pubDate>Sat, 10 Jan 2009 01:23:08 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<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>## 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 '/^Name/!d'
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" onclick="javascript:pageTracker._trackPageview('a/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>*** 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>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


&#60;&#60; 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" onclick="javascript:pageTracker._trackPageview('a/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>zypper ar http://download.opensuse.org/repositories/Virtualization:/Qemu/openSUSE_11.0/ “QEMU Virtualization”

Seems not to work until you remove the space in "QEMU Virtualisation"...
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/" onclick="javascript:pageTracker._trackPageview('a/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>Fixed the command now. Should have been "ar"</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>Uh...

zypper am http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0/ “KVM Virtualization”
Unknown command 'am'</description>
		<content:encoded><![CDATA[<p>Uh&#8230;</p>
<p>zypper am <a href="http://download.opensuse.org/repositories/Virtualization:/KVM/openSUSE_11.0/" onclick="javascript:pageTracker._trackPageview('a/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>Great article, thanks!</description>
		<content:encoded><![CDATA[<p>Great article, thanks!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
