This tutorial describes how to install the KVM hypervisor and libvirt virtualization library on Linux CentOS 6.2. At the end of this guide you will have a CentOS box (name it host) with the following capabilities:
- virtualization capacity: chance for multiple guests (Linux/Windows) running and sharing the host's hardware
- bridge network configuration: you'll be able to directly access to the guests as if they were physical machines on the same LAN and viceversa.
- visual management: using virt-manager (I use Ubuntu 11.10 in this howto) you will be able to remotely admin the virtual machines on the CentOS host.
What's what?
KVM:
"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...""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."
libvirt:
- "A toolkit to interact with the virtualization capabilities of recent versions of Linux... "
- "A Free software available under the GNU Lesser General Public License."
- "A long term stable C API"
- "A set of bindings for common languages"
Intel-VT and AMD-V
Requirements
- Hardware:
- Software:
- A previosly installed Linux CentOS 6.2 with a recent Linux kernel. On this how to:$ uname -r2.6.32-220.2.1.el6.x86_64$ lsb_release -aLSB Version: :core-4.0-amd64:core-4.0-noarch:graphics-4.0-amd64:graphics-4.0-noarch:printing-4.0-amd64:printing-4.0-noarch
Distributor ID: CentOS
Description: CentOS release 6.2 (Final)
Release: 6.2
Codename: Final - A Linux client with a Desktop environment installed
- An available CentOS mirror/repository
- A previosly installed Linux CentOS 6.2 with a recent Linux kernel. On this how to:
Installation Steps
- Log into the CentOS as bozz user (a sudoer user) and check if your hardware support for virtualization extensions, on my hardware it was:
- Install kvm and libvirt packages:$ sudo yum install kvm libvirt
- Update both packages to the latest version available on repositories/mirrors:$ sudo yum update libvirt kvm$ yum info libvirtInstalled Packages
Name : libvirt
Arch : x86_64
Version : 0.9.4
Release : 23.el6_2.4$ yum info qemu-kvmInstalled Packages
Name : qemu-kvm
Arch : x86_64
Epoch : 2
Version : 0.12.1.2
Release : 2.209.el6_2.1 - Restart the libvirtd daemon:$ sudo service libvirtd restart
- Verify if the kvm module is loaded, you should see amd or intel depending on the hardware:$ lsmod | grep kvmkvm_intel 50380 0
kvm 305113 1 kvm_intel - Issue a virsh command to ensure local root connectivity first:$ sudo virsh sysinfo
... - [OPTIONAL] To use KVM by a non-root user verify if kvm group was created on installation: $ cat /etc/group | grep kvmkvm:x:36:qemuThen add the bozz user to kvm group, so it can gain access to hypervisor:
$ sudo usermod -a -G kvm bozzLogin again as the bozz user and verify kvm's membership:
$ logout
$ iduid=500(bozz) gid=500(bozz) groups=500(bozz),10(wheel),36(kvm) context=...and verify if /dev/kvm is owned by group kvm:
$ ls -l /dev/kvmcrw-rw-rw-. 1 root kvm 10, 232 Jan 17 14:50 /dev/kvmOn a system that runs udev, you will probably need to add the following line in your udev configuration so it will automatically give the right group to the newly created device:
$ cat /etc/udev/rules.d/80-kvm.rulesKERNEL=="kvm", GROUP="kvm", MODE="0666" - To manage libvirt with a non-root account you should use PolicyKit. Define access control for a libvirt group: $ sudo groupadd libvirt
$ sudo usermod -a -G libvirt bozz
$ logoutLogin again as bozz user and edit a new archive:
$ sudo nano /etc/polkit-1/localauthority/50-local.d/50-libvirt-remote-access.pklawith this content:
[libvirt Management Access] # For allowing access to specific user only: #Identity=unix-user:bozz # For allowing access to a group (like this guide): Identity=unix-group:libvirt Action=org.libvirt.unix.manage ResultAny=yes ResultInactive=yes ResultActive=yes
Restart libvirtd daemon:
$ sudo service libvirtd restartVerify if bozz user can locally access to qemu:///system (NOTE: the use of qemu:///session is discouraged):
$ virsh -c qemu:///system sysinfoVerify if bozz user can remotely access to qemu+ssh://bozz@SERVER/system too. So on the Linux client issue:
...
For Ubuntu client (like in this guide):
$ sudo apt-get install libvirt-binFor CentOS client:
$ sudo yum install libvirtThen:
$ virsh -c qemu+ssh://bozz@SERVER/system sysinfoChange group ownership and permissions on the default images directory:
...
$ sudo chown root:libvirt /var/lib/libvirt/images
$ sudo chmod g+rw /var/lib/libvirt/images - [OPTIONAL] When libvirtd (>= 0.9.3) is running as non-root it tries to read ~/.libvirt/libvirtd.conf (see here). A workaround is: $ mkdir -p ~/.libvirtThen issue a virsh command as bozz user:
$ touch ~/.libvirt/libvirtd.conf
$ virsh listId Name State
---------------------------------- - Configure Bridged Network by creating a new network script at /etc/sysconfig/network-scripts/ifcfg-br0: $ sudo nano /etc/sysconfig/network-scripts/ifcfg-br0and configuring the parameters according to your LAN settings (NOTE: options are case sensitive i.e. Bridge and bridge are two different options):
DEVICE="br0" TYPE=Bridge DELAY=0 ONBOOT="yes" BOOTPROTO=static IPADDR=192.168.11.12 NETMASK=255.255.255.0 NETWORK=192.168.11.0 GATEWAY=192.168.11.1 DNS1=192.168.11.2 PEERDNS="yes" NM_CONTROLLED=no
Then edit the Ethernet network script /etc/sysconfig/network-scripts/ifcfg-eth0:
$ sudo nano /etc/sysconfig/network-scripts/ifcfg-eth0with the following content (NOTE: the hardware address depends on your NIC, an arbitrary MAC address is used here):
DEVICE="eth0" HWADDR="00:2C:C2:85:29:A3" ONBOOT="yes" BRIDGE=br0 NM_CONTROLLED=no
Restart the networking service:
$ sudo service network restartand verify the bridge config:
$ brctl showbridge name bridge id STP enabled interfacesConfigure iptables to allow all traffic to be forwarded across the bridge:
br0 8000.002cc28529a3 no eth0
...
$ sudo iptables -I FORWARD -m physdev --physdev-is-bridged -j ACCEPTPrevent bridged traffic from being processed by iptables rules, this improves the bridge’s performance. In /etc/sysctl.conf append the following lines:
$ sudo service iptables save
$ sudo service iptables restart
net.bridge.bridge-nf-call-ip6tables = 0 net.bridge.bridge-nf-call-iptables = 0 net.bridge.bridge-nf-call-arptables = 0
Reload the kernel parameters configured with sysctl:
$ sudo sysctl -p /etc/sysctl.confRestart the libvirt daemon:
$ sudo service libvirtd reload
Post-install Steps
For Ubuntu client (like in this guide):
$ sudo apt-get install virt-managerFor CentOS client:
$ sudo yum install virt-managerThen download oneiric-server-amd64.iso from the Ubuntu site on the Linux client:
$ wget http://releases.ubuntu.com/11.10/ubuntu-11.10-server-amd64.isoCopy the downloaded ISO to SERVER:
$ scp ubuntu-11.10-server-amd64.iso bozz@SERVER:/var/lib/libvirt/images/On the Linux client run virt-manager:
$ virt-manager &Go to "File" / "Add Connection..." with these settings:
- Hypervisor: QEMU/KVM
- Method: ssh
- Username: bozz
- Host: SERVER
- Set the name to ubuntu-oneiric and choose "Local install media (ISO image or CDROM)":
- Browse and select the ISO located at /var/lib/libvirt/images/ubuntu-11.10-server-amd64.iso, OS type "Linux" and Version "Ubuntu 11.10 (Oneiric Ocelot)":
- Choose memory and CPU setting as you wish:
- Choose storage settings:
- Choose the previously created bridge network device "Host device eth0 (Bridge 'br0')", Virt type "kvm" and Architecture "x86_64":
Press "Finish" button and install the guest OS.
References
- KVM
- KVM FAQ
- libvirt
- CentOS / Redhat: KVM Bridged Network Configuration
- HowTos/KVM
- Bridged networking with libvirt
$ egrep '^flags.*(vmx|svm)' /proc/cpuinfo
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
flags : fpu vme de pse tsc msr pae mce cx8 apic mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm sse4_1 sse4_2 popcnt lahf_lm ida dts tpr_shadow vnmi flexpriority ept vpid
No comments:
Post a Comment