{"id":76209,"date":"2026-03-16T18:51:22","date_gmt":"2026-03-16T15:51:22","guid":{"rendered":"https:\/\/cloudspinx.com\/?p=76209"},"modified":"2026-03-16T18:51:22","modified_gmt":"2026-03-16T15:51:22","slug":"install-kvm-with-virt-manager-on-linux-mint","status":"publish","type":"post","link":"https:\/\/computingforgeeks.com\/install-kvm-with-virt-manager-on-linux-mint\/","title":{"rendered":"Install KVM with Virt-Manager on Linux Mint 22"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">Features of KVM<\/h4>\n\n\n\n<p>The features below describe why KVM would be preferred as an enterprise hypervisor:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Security &#8211; KVM uses both security-enhanced Linux (SElinux) and secure virtualization (sVirt) to ensure VMs security.<\/li>\n\n\n\n<li>Storage &#8211; KVM uses any storage supported by Linux. This includes local disks and network-attached storage. Multiple I\/O can also be used to enhance storage and redundancy. It also supports shared filesystems enabling VM images to be shared by multiple hosts. Thin provisioning, where resources are allocated in demand.<\/li>\n\n\n\n<li>Hardware support &#8211; KVM can use wide ranges of Linux supported hardware since latest hardware features are quickly adopted in the Linux kernel.<\/li>\n\n\n\n<li>KVM inherits Linux memory management features.<\/li>\n\n\n\n<li>Supports live migration<\/li>\n\n\n\n<li>Performance and scalability &#8211; Scaling to match demand if the number of VMs or workload increased.<\/li>\n\n\n\n<li>Scheduling and resource control.<\/li>\n\n\n\n<li>Lower latency and higher prioritization.<\/li>\n<\/ul>\n\n\n\n<h4 class=\"wp-block-heading\">Install KVM on Linux Mint<\/h4>\n\n\n\n<p>I am going to be installing KVM on a virtual machine. To be able to this, we are going to use nested virtualization. We need to ensure our host system supports nested virtualization, which enables running a virtual machine inside another virtual machine.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Enabling nested virtualization on KVM<\/h4>\n\n\n\n<p>First check if nested virtualization is enabled on the host, depending on whether you are running on intel or AMD. Run the commands below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">cat \/sys\/module\/kvm_intel\/parameters\/nested<\/mark>\nY\n$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">cat \/sys\/module\/kvm_amd\/parameters\/nested<\/mark>\nY<\/code><\/pre>\n\n\n\n<p>If you get an output as \u2018Y\u2019 or \u20181\u2019,nested virtualization is enabled, otherwise it is not. To enable, follow the procedures below: <\/p>\n\n\n\n<p>Shut down all running VMs and unload the kvm_probe module: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo modprobe -r kvm_intel <\/code><\/pre>\n\n\n\n<p>Activate the nesting feature: <\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo modprobe kvm_intel nested=1<\/code><\/pre>\n\n\n\n<p>To permanently enable, add the following line to the <code>\/etc\/modprobe.d\/kvm.conf<\/code> file and add the following line:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">sudo vim \/etc\/modprobe.d\/kvm.conf<\/mark>\noptions kvm_intel nested=1<\/code><\/pre>\n\n\n\n<p>Do the  same for AMD processors, replacing <strong>intel<\/strong> with <strong>AMD<\/strong> in the above commands.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Enable Nested Virtualization on Virtualbox<\/h4>\n\n\n\n<p>From virtualbox 6.1 nested virtualization is supported for host systems running AMD and Intel CPUs. To enable nested virtualization from command line, we run the following commands:<\/p>\n\n\n\n<p>First list the available VMs with the following command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">vboxmanage list vms<\/mark>\n\u201cLinux Mint\u201d {c7be48bc-5f91-4371-9533-940aee57da83}<\/code><\/pre>\n\n\n\n<p>Enable nested virtualization specifying the VM you want to use. In this case, I only have Linux Mint VM.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>vboxmanage modifyvm \"Linux Mint\" --nested-hw-virt on<\/code><\/pre>\n\n\n\n<p>To enable nested virtualization from UI, Open VirtualBox manager, choose the VM you want to work with then open <strong>Settings\u2192 System\u2192 Processor.<\/strong> Check the box for &#8216;<strong>Enable Nested VT-x\/AMD-V&#8217;.<\/strong><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Install KVM on Linux Mint<\/h4>\n\n\n\n<p>To install KVM with virtualization manager on Linux Mint, run the below command on the terminal:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt-get update\nsudo apt-get install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virt-manager<\/code><\/pre>\n\n\n\n<p>Once installation is complete, we need to add the user to libvirt and kvm groups. Run the commands below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo usermod -aG libvirt $USER\nsudo usermod -aG kvm $USER\nsudo reboot<\/code><\/pre>\n\n\n\n<p>After adding the user, log out and back in to allow the changes to take effect. The user will then be able to run and manage virtual machines.<\/p>\n\n\n\n<p>You can verify your KVM installation with the below command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">sudo virsh -c qemu:\/\/\/system list<\/mark>\nId\tName\t\tState\n------------------------------------<\/code><\/pre>\n\n\n\n<p>The above output signifies a successful installation, otherwise it would throw an error. Go ahead and check virtual machine manager from your system applications and click to open it:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1601\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1.png\" alt=\"\" class=\"wp-image-86936\" style=\"border-radius:10px\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-300x188.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-1024x640.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-768x480.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-1536x961.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-2048x1281.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-672x420.png 672w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-696x435.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-01-scaled-1-1068x668.png 1068w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h4 class=\"wp-block-heading\">How To Create a VM with KVM on Linux Mint<\/h4>\n\n\n\n<p>With KVM, there are two ways of creating virtual machines. We can create from the command line as well as from the graphical interface. To create from the graphical interface, we use virtual machine manager. <\/p>\n\n\n\n<p>To create a new virtual machine, click on <strong>file \u2192 new virtual machine<\/strong>. &#8220;<strong>Local Install Media<\/strong>&#8221; should be selected. Click <strong>&#8220;forward<\/strong>&#8220;.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1601\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1.png\" alt=\"\" class=\"wp-image-86944\" style=\"border-radius:10px\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-300x188.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-1024x640.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-768x480.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-1536x961.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-2048x1281.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-672x420.png 672w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-696x435.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-02-scaled-1-1068x668.png 1068w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n\n<p>In the next page, browse to the downloaded iso file, and choose the operating system you are installing, then click &#8220;<strong>forward<\/strong>&#8220;. In my case I am installing a Rocky Linux 10 VM, which I&#8217;ll select RHEL 10 as the OS since Rocky 10 is not listed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1601\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1.png\" alt=\"\" class=\"wp-image-86949\" style=\"border-radius:10px\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-300x188.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-1024x640.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-768x480.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-1536x961.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-2048x1281.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-672x420.png 672w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-696x435.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-05-scaled-1-1068x668.png 1068w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n\n<p>In the next page, set memory and CPU for your VM then click &#8220;<strong>forward<\/strong>&#8220;.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1601\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1.png\" alt=\"\" class=\"wp-image-86950\" style=\"border-radius:10px\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-300x188.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-1024x640.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-768x480.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-1536x961.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-2048x1281.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-672x420.png 672w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-696x435.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-06-scaled-1-1068x668.png 1068w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n\n<p>Next, enable storage and click &#8220;<strong>forward&#8221;.<\/strong><\/p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1601\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1.png\" alt=\"\" class=\"wp-image-86951\" style=\"border-radius:10px\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-300x188.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-1024x640.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-768x480.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-1536x961.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-2048x1281.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-672x420.png 672w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-696x435.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-07-scaled-1-1068x668.png 1068w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n\n<p>Next, give your VM a name and make any other configurations you may need. After that click <strong>finish<\/strong>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1601\" src=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1.png\" alt=\"\" class=\"wp-image-86954\" style=\"border-radius:10px\" title=\"\" srcset=\"https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1.png 2560w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-300x188.png 300w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-1024x640.png 1024w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-768x480.png 768w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-1536x961.png 1536w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-2048x1281.png 2048w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-672x420.png 672w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-696x435.png 696w, https:\/\/computingforgeeks.com\/wp-content\/uploads\/2025\/07\/Install-KVM-with-Virt-Manager-on-Linux-Mint-22-08-scaled-1-1068x668.png 1068w\" sizes=\"auto, (max-width: 2560px) 100vw, 2560px\" \/><\/figure>\n\n\n\n<p>You should notice VM creation process begins.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">KVM create VM command line<\/h4>\n\n\n\n<p>To create a VM from command line, we input a command specifying all the requirements for the VM to be created. For example, to create Ubuntu 20.04 VM, I use the below command:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo virt-install \\\n  --name rocky10 \\\n  --ram 4096 \\\n  --vcpus 2 \\\n  --disk path=\/var\/lib\/libvirt\/images\/rocky10.qcow2,size=20 \\\n  --os-type linux \\\n  --os-variant rhel10 \\\n  --cdrom \/path\/to\/Rocky-10-x86_64-dvd.iso \\\n  --network network=default,model=virtio \\\n  --graphics spice \\\n  --console pty,target_type=serial \\\n  --noautoconsole<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">The Virsh Utility<\/h4>\n\n\n\n<p>Virsh is a utility used to interact with the virtual machines. For example, you can list all the configured guests by running the command below:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">virsh list --all<\/mark>\n Id   Name     State\n------------------------\n 1    rhel10   running<\/code><\/pre>\n\n\n\n<p>You can also use edit guest parameters by running the command below and specifying VM name:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>$ <mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-luminous-vivid-amber-color\">virsh edit rhel10<\/mark>\nSelect an editor. To change later, run 'select-editor'.\n  1. \/bin\/nano\n  2. \/usr\/bin\/vim.tiny\n  3. \/bin\/ed\nchoose 1-3 &#91;1]: 2<\/code><\/pre>\n\n\n\n<p>The output is an xml file of the VM configuration which you can edit as you like and save the file.<\/p>\n\n\n\n<p>That&#8217;s it. You have successfully installed KVM with virtualization manager on Linux Mint. You have also learnt how to enable nested virtualization for host and VirtualBox. We have seen how to create a virtual machine both using the KVM virtual machine manager and using the command line. I hope the guide has been useful. Check below more interesting Linux guides:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/computingforgeeks.com\/how-to-configure-samba-file-sharing-on-linux-mint\/\">How To Configure Samba File Sharing on Linux Mint 22<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/computingforgeeks.com\/wp-admin\/post.php?post=83590&#038;action=edit\">Install Visual Studio Code on Linux Mint 22|21<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Features of KVM The features below describe why KVM would be preferred as an enterprise hypervisor: Install KVM on Linux Mint I am going to be installing KVM on a virtual machine. To be able to this, we are going to use nested virtualization. We need to ensure our host system supports nested virtualization, which &#8230; <a title=\"Install KVM with Virt-Manager on Linux Mint 22\" class=\"read-more\" href=\"https:\/\/computingforgeeks.com\/install-kvm-with-virt-manager-on-linux-mint\/\" aria-label=\"Read more about Install KVM with Virt-Manager on Linux Mint 22\">Read more<\/a><\/p>\n","protected":false},"author":3,"featured_media":86572,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[299,49,50],"tags":[],"class_list":["post-76209","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-how-to","category-linux-mint","category-linux-tutorials"],"_links":{"self":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/76209","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/comments?post=76209"}],"version-history":[{"count":0,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/posts\/76209\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media\/86572"}],"wp:attachment":[{"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/media?parent=76209"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/categories?post=76209"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/computingforgeeks.com\/wp-json\/wp\/v2\/tags?post=76209"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}