<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/"><channel><title>Virtualization on SSD AI</title><link>https://blog.ssd-ai.com/tags/virtualization/</link><description>Recent content in Virtualization on SSD AI</description><generator>Hugo</generator><language>en</language><lastBuildDate>Mon, 20 Jul 2026 10:00:00 +0800</lastBuildDate><atom:link href="https://blog.ssd-ai.com/tags/virtualization/index.xml" rel="self" type="application/rss+xml"/><item><title>Building a KVM Virtual Environment on Ubuntu 20.04/22.04</title><link>https://blog.ssd-ai.com/posts/ubuntu20-04-building-kvm-virtual-environment/</link><pubDate>Mon, 20 Jul 2026 10:00:00 +0800</pubDate><guid>https://blog.ssd-ai.com/posts/ubuntu20-04-building-kvm-virtual-environment/</guid><description>&lt;p>Building a KVM virtual environment on Ubuntu generally involves the following core steps: &lt;strong>Hardware Check ➔ Component Installation ➔ User Rights Configuration ➔ Network Setup ➔ Creating VMs&lt;/strong>.&lt;/p>
&lt;p>This guide applies to Ubuntu 20.04, 22.04, and 24.04 LTS (both Desktop and Server editions).&lt;/p>
&lt;hr>
&lt;h2 id="1-confirm-cpu-hardware-virtualization-support">1. Confirm CPU Hardware Virtualization Support&lt;/h2>
&lt;p>First, check if your CPU supports hardware virtualization (Intel &lt;code>vmx&lt;/code> or AMD &lt;code>svm&lt;/code>):&lt;/p>
&lt;div class="highlight">&lt;pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;">&lt;code class="language-bash" data-lang="bash">&lt;span style="display:flex;">&lt;span>egrep -c &lt;span style="color:#e6db74">&amp;#39;(vmx|svm)&amp;#39;&lt;/span> /proc/cpuinfo
&lt;/span>&lt;/span>&lt;/code>&lt;/pre>&lt;/div>&lt;ul>
&lt;li>&lt;strong>Output &amp;gt; 0&lt;/strong>: Your CPU supports virtualization.&lt;/li>
&lt;li>&lt;strong>Output = 0&lt;/strong>: Enable &lt;code>Intel VT-x&lt;/code> or &lt;code>AMD-V&lt;/code> in your BIOS/UEFI settings (note that some cloud servers do not support nested virtualization).&lt;/li>
&lt;/ul>
&lt;p>Verify that your system architecture is 64-bit (required by KVM):&lt;/p></description></item></channel></rss>