Virtualization With KVM On Ubuntu 9.10
|
Submitted by falko (Contact Author) (Forums) on Thu, 2009-12-17 17:56. :: KVM | Ubuntu | Virtualization
Virtualization With KVM On Ubuntu 9.10Version 1.0 This guide explans how you can install and use KVM for creating and running virtual machines on an Ubuntu 9.10 server. I will show how to create image-based virtual machines and also virtual machines that use a logical volume (LVM). KVM is short for Kernel-based Virtual Machine and makes use of hardware virtualization, i.e., you need a CPU that supports hardware virtualization, e.g. Intel VT or AMD-V. I do not issue any guarantee that this will work for you!
1 Preliminary NoteI'm using a machine with the hostname server1.example.com and the IP address 192.168.0.100 here as my KVM host. Because we will run all the steps from this tutorial with root privileges, we can either prepend all commands in this tutorial with the string sudo, or we become root right now by typing sudo su
2 Installing KVM And vmbuilderFirst check if your CPU supports hardware virtualization - if this is the case, the command egrep '(vmx|svm)' --color=always /proc/cpuinfo should display something, e.g. like this: root@server1:~# egrep '(vmx|svm)' --color=always /proc/cpuinfo If nothing is displayed, then your processor doesn't support hardware virtualization, and you must stop here. To install KVM and vmbuilder (a script to create Ubuntu-based virtual machines), we run aptitude install ubuntu-virt-server python-vm-builder General type of mail configuration: <-- Internet Site Afterwards we must add the user as which we're currently logged in (root) to the group libvirtd: adduser `id -un` libvirtd You need to log out and log back in for the new group membership to take effect. To check if KVM has successfully been installed, run virsh -c qemu:///system list It should display something like this: root@server1:~# virsh -c qemu:///system list If it displays an error instead, then something went wrong. Next we need to set up a network bridge on our server so that our virtual machines can be accessed from other hosts as if they were physical systems in the network. To do this, we install the package bridge-utils... aptitude install bridge-utils ... and configure a bridge. Open /etc/network/interfaces: vi /etc/network/interfaces Before the modification, my file looks as follows:
I change it so that it looks like this:
(Make sure you use the correct settings for your network!) Restart the network... /etc/init.d/networking restart ... and run ifconfig It should now show the network bridge (br0): root@server1:~# ifconfig
3 Creating An Image-Based VMWe can now create our first VM - an image-based VM (if you expect lots of traffic and many read- and write operations for that VM, use an LVM-based VM instead as shown in chapter 6 - image-based VMs are heavy on hard disk IO). We will create a new directory for each VM that we want to create, e.g. ~/vm1, ~/vm2, ~/vm3, and so on, because each VM will have a subdirectory called ubuntu-kvm, and obviously there can be just one such directory in ~/vm1, for example. If you try to create a second VM in ~/vm1, for example, you will get an error message saying ubuntu-kvm already exists (unless you run vmbuilder with the --dest=DESTDIR argument): root@server1:~/vm1# vmbuilder kvm ubuntu -c vm2.cfg We will use the vmbuilder tool to create VMs. (You can learn more about vmbuilder here.) vmbuilder uses a template to create virtual machines - this template is located in the /etc/vmbuilder/libvirt/ directory. First we create a copy: mkdir -p ~/vm1/mytemplates/libvirt Now we come to the partitioning of our VM. We create a file called vmbuilder.partition... vi ~/vm1/vmbuilder.partition ... and define the desired partitions as follows:
This defines a root partition (/) with a size of 8000MB, a swap partition of 4000MB, and a /var partition of 20000MB. The --- line makes that the following partition (/var in this example) is on a separate disk image (i.e., this would create two disk images, one for root and swap and one for /var). Of course, you are free to define whatever partitions you like (as long as you also define root and swap), and of course, they can be in just one disk image - this is just an example. I want to install openssh-server in the VM. To make sure that each VM gets a unique OpenSSH key, we cannot install openssh-server when we create the VM. Therefore we create a script called boot.sh that will be executed when the VM is booted for the first time. It will install openssh-server (with a unique key) and also force the user (I will use the default username administrator for my VMs together with the default password howtoforge) to change the password when he logs in for the first time: vi ~/vm1/boot.sh
Make sure you replace the username administrator with your default login name. (You can find more about this here: https://help.ubuntu.com/community/JeOSVMBuilder#First%20boot) (You can also define a "first login" script as described here: https://help.ubuntu.com/community/JeOSVMBuilder#First%20login) Whenever vmbuilder builds a new VM, it has to download all packages from an Ubuntu mirror which can take quite some time. To speed this up, we install apt-proxy... aptitude install apt-proxy ... to cache the downloaded packages so that subsequent VM installations will be a lot faster. Now open /etc/apt-proxy/apt-proxy-v2.conf... vi /etc/apt-proxy/apt-proxy-v2.conf ... and replace the default Ubuntu mirror with a mirror close to you (e.g. http://de.archive.ubuntu.com/ubuntu if you are in Germany):
Then we restart apt-proxy: /etc/init.d/apt-proxy restart apt-proxy listens on port 9999, so we can pass our local apt-proxy "mirror" as an argument to the vmbuilder script. Now take a look at vmbuilder kvm ubuntu --help to learn about the available options. To create our first VM, vm1, we go to the VM directory... cd ~/vm1/ ... and run vmbuilder, e.g. as follows: vmbuilder kvm ubuntu --suite=karmic --flavour=virtual --arch=amd64 --mirror=http://192.168.0.100:9999/ubuntu -o --libvirt=qemu:///system --tmpfs=- --ip=192.168.0.101 --part=vmbuilder.partition --templates=mytemplates --user=administrator --name=Administrator --pass=howtoforge --addpkg=vim-nox --addpkg=unattended-upgrades --addpkg=acpid --firstboot=boot.sh --mem=256 --hostname=vm1 --bridge=br0 Most of the options are self-explanatory. --part specifies the file with the partitioning details, relative to our working directory (that's why we had to go to our VM directory before running vmbuilder), --templates specifies the directory that holds the template file (again relative to our working directory), and --firstboot specifies the firstboot script. --libvirt=qemu:///system tells KVM to add this VM to the list of available virtual machines. --addpkg allows you to specify Ubuntu packages that you want to have installed during the VM creation (see above why you shouldn't add openssh-server to that list and use the firstboot script instead). --bridge sets up a bridged network; as we have created the bridge br0 in chapter 2, we specify that bridge here. In the --mirror line I have specified my local apt-proxy mirror (http://192.168.0.100:9999/ubuntu) - I have used my publically accessible IP address instead of localhost or 127.0.0.1 because this mirror will be used in the VM's /etc/apt/sources.list file as well, and of course, the VM won't be able to connect to 127.0.0.1 on the host. Of course, you can as well specify an official Ubuntu repository in --mirror, e.g. http://de.archive.ubuntu.com/ubuntu. If you leave out --mirror, then the default Ubuntu repository (http://archive.ubuntu.com/ubuntu) will be used. The build process can take a few minutes. Afterwards, you can find an XML configuration file for the VM in /etc/libvirt/qemu/ (=> /etc/libvirt/qemu/vm1.xml): ls -l /etc/libvirt/qemu/ root@server1:~/vm1# ls -l /etc/libvirt/qemu/ The disk images are located in the ubuntu-kvm/ subdirectory of our VM directory: ls -l ~/vm1/ubuntu-kvm/ root@server1:~/vm1# ls -l ~/vm1/ubuntu-kvm/
|




Recent comments
2 days 17 hours ago
3 days 2 hours ago
3 days 5 hours ago
3 days 6 hours ago
3 days 8 hours ago
3 days 9 hours ago
3 days 11 hours ago
3 days 12 hours ago
4 days 4 hours ago
4 days 5 hours ago