KVM virtualization part 1/3 – Installing KVM and running virtual machine

KVM virtualization part 1/3 – Installing KVM and running virtual machine

KVM (Kernel-Based Virtual Machine) virtualization part 1 – Installing KVM and running virtual machine.
1. Verify virtualization support # 0:16
2. Installation KVM # 0:38
3. Download image iso livecd # 2:00
4. Creating virtual disks # 4:08
5. Run virtual machine with command line # 5:15
6. Run virtual machine with script # 9:35
7. Run virtual machine with script and screen # 12:22

KVM (for Kernel-based Virtual Machine) is a full virtualization solution for Linux on x86 hardware containing virtualization extensions (Intel VT or AMD-V). It consists of a loadable kernel module, kvm.ko, that provides the core virtualization infrastructure and a processor specific module, kvm-intel.ko or kvm-amd.ko. KVM also requires a modified QEMU. The KVM project is maintaining a fork of qemu called qemu-kvm. Using KVM, one can run multiple virtual machines running unmodified Linux or Windows images. Each virtual machine has private virtualized hardware: a network card, disk, graphics adapter, etc. KVM is open source software.

QEMU is a generic and open source machine emulator and virtualizer. When used as a machine emulator, QEMU can run OSes and programs made for one machine (e.g. an ARM board) on a different machine (e.g. your own PC). When used as a virtualizer, QEMU achieves near native performances by executing the guest code directly on the host CPU. QEMU supports virtualization when executing under the Xen hypervisor or using the KVM kernel module in Linux. QEMU is open source software.

http://www.linux-kvm.org
http://wiki.qemu.org/

Add Comment