Difference between revisions of "Install KVM in an Ubuntu Server"

From wikieduonline
Jump to navigation Jump to search
Line 1: Line 1:
 
Install [[KVM]] in an [[Ubuntu]] Server following https://help.ubuntu.com/community/KVM/Installation instructions for [[Ubuntu 18.10 LTS]]:
 
Install [[KVM]] in an [[Ubuntu]] Server following https://help.ubuntu.com/community/KVM/Installation instructions for [[Ubuntu 18.10 LTS]]:
 +
 +
*Check processor supports virtualisation:
 +
<code>egrep -c '(vmx|svm)' /proc/cpuinfo</code>
 +
If output is 0 it means that your CPU doesn’t support hardware virtualization.
 +
If output is 1 or more it support hardware virtualisation ( NOTE: virtualisation should be enabled in the system BIOS)
  
 
* Execute:  
 
* Execute:  

Revision as of 09:51, 23 January 2020

Install KVM in an Ubuntu Server following https://help.ubuntu.com/community/KVM/Installation instructions for Ubuntu 18.10 LTS:

  • Check processor supports virtualisation:

egrep -c '(vmx|svm)' /proc/cpuinfo If output is 0 it means that your CPU doesn’t support hardware virtualization. If output is 1 or more it support hardware virtualisation ( NOTE: virtualisation should be enabled in the system BIOS)

  • Execute:

sudo apt-get -y install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils virtinst && virsh list --all

virsh list --all
 Id    Name                           State
----------------------------------------------------


And create your fist guest machine from command line using virt-install python script.

virt-install --virt-type kvm --name buster-amd64 --memory 1G --cdrom ~/iso/Debian/debian-10.0.0-amd64-netinst.iso --disk size=10G --os-variant debian10


Optional software to install:


Related commands

Packages

See also

Advertising: