Quick Emulator (QEMU) is the main component of the QEMU/KVM virtualization technology suit. It provides hardware virtualization and processor emulation. QEMU runs in userspace and, without the need for kernel, drivers can still provide fast system emulation. The hardware acceleration support provided by the Kernel-based Virtual Machine (KVM) hypervisor.
Perform the following steps to install QEMU from packages on Ubuntu/Debian and RHEL/CentOS distributions:
- On Ubuntu/Debian distributions, update your packages index:
root@kvm:~# apt-get update
- Install the package:
root@kvm:~# apt-get install -y qemu-kvm
- On CentOS/RHEL distributions execute:
root@kvm:~# yum install qemu-kvm
Installing QEMU is quite trivial, as we just saw. Let's have a look at what the QEMU metapackage installed on Ubuntu looks like:
root@kvm:~# dpkg --list | grep qemu
From the preceding output, we can see that there are few packages involved
Comments
Post a Comment