<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://staging.projecthomelab.org/index.php?action=history&amp;feed=atom&amp;title=KVM</id>
	<title>KVM - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://staging.projecthomelab.org/index.php?action=history&amp;feed=atom&amp;title=KVM"/>
	<link rel="alternate" type="text/html" href="https://staging.projecthomelab.org/index.php?title=KVM&amp;action=history"/>
	<updated>2026-04-24T01:08:44Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://staging.projecthomelab.org/index.php?title=KVM&amp;diff=168&amp;oldid=prev</id>
		<title>Travis: 1 revision imported</title>
		<link rel="alternate" type="text/html" href="https://staging.projecthomelab.org/index.php?title=KVM&amp;diff=168&amp;oldid=prev"/>
		<updated>2020-07-31T17:01:04Z</updated>

		<summary type="html">&lt;p&gt;1 revision imported&lt;/p&gt;
&lt;table style=&quot;background-color: #fff; color: #202122;&quot; data-mw=&quot;interface&quot;&gt;
				&lt;tr class=&quot;diff-title&quot; lang=&quot;en&quot;&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;← Older revision&lt;/td&gt;
				&lt;td colspan=&quot;1&quot; style=&quot;background-color: #fff; color: #202122; text-align: center;&quot;&gt;Revision as of 17:01, 31 July 2020&lt;/td&gt;
				&lt;/tr&gt;&lt;tr&gt;&lt;td colspan=&quot;2&quot; class=&quot;diff-notice&quot; lang=&quot;en&quot;&gt;&lt;div class=&quot;mw-diff-empty&quot;&gt;(No difference)&lt;/div&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;</summary>
		<author><name>Travis</name></author>
	</entry>
	<entry>
		<id>https://staging.projecthomelab.org/index.php?title=KVM&amp;diff=167&amp;oldid=prev</id>
		<title>openhomelab&gt;Ksketch927 at 11:06, 28 March 2017</title>
		<link rel="alternate" type="text/html" href="https://staging.projecthomelab.org/index.php?title=KVM&amp;diff=167&amp;oldid=prev"/>
		<updated>2017-03-28T11:06:47Z</updated>

		<summary type="html">&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== &amp;#039;&amp;#039;&amp;#039;Introduction&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Kernel-based Virtual Machine (KVM), is a hypervisor built into the Linux kernel. KVM can run a wide range of GNU/Linux, Windows and &lt;br /&gt;
other operating systems. For more information check out [http://www.linux-kvm.org/page/Guest_Support_Status Guest Support Status]. KVM is &lt;br /&gt;
similar to Xen with couple of important differences. First, since KVM is part of the Linux kernel it uses the regular Linux scheduler and memory &lt;br /&gt;
management, resulting in it being smaller and more featureful. On the other hand, KVM relies on a processor that supports x86 hardware virtual &lt;br /&gt;
machine (HVM) CPU extensions, whereas Xen allows running modified operating systems on non-HVM x86 processors using paravirtualization. HVM is &lt;br /&gt;
also referred to as hardware-assisted virtualization or native virtualization. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;Check for KVM Support&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039;NOTE:&amp;#039;&amp;#039;&amp;#039;&amp;#039;&amp;#039; Before proceeding you should ensure that virtualization is enabled in your BIOS. This process will vary slightly depending on your system. Refer to your &lt;br /&gt;
system documentation or perform a web search for specific steps on enabling virtualization in your system BIOS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
As mentioned previously, KVM requires the virtual machine (VM) host processor has hardware virtualization support. For Intel processors, this is VT-x, and AMD-V for AMD. &lt;br /&gt;
Two methods can be used to verify this capability. The first is with the &amp;lt;code&amp;gt;lscpu&amp;lt;/code&amp;gt; command.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;$ lscpu &amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
If your machine supports hardware virtualization it will be identified in the output. Since &amp;lt;code&amp;gt;lscpu&amp;lt;/code&amp;gt; gathers information from sysfs and &amp;lt;code&amp;gt;/proc/cpuinfo&amp;lt;/code&amp;gt;, &lt;br /&gt;
another approach is to grep the &amp;lt;code&amp;gt;/proc/cpuinfo&amp;lt;/code&amp;gt; file as follows&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;$egrep &amp;#039;vmx|svm|0xc0f&amp;#039; /proc/cpuinfo&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
If nothing is displayed then your CPU does not support hardware virtualization.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;Host Setup&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
== &amp;#039;&amp;#039;&amp;#039;Guest Setup&amp;#039;&amp;#039;&amp;#039; ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Category:Hypervisors]]&lt;br /&gt;
{{Wikimedia-stub}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Hypervisors]]&lt;br /&gt;
{{Wikimedia-stub}}&lt;/div&gt;</summary>
		<author><name>openhomelab&gt;Ksketch927</name></author>
	</entry>
</feed>