Ubuntu 12.04安装KVM

为了在一台服务器上虚拟出多个Ubuntu server,用于集群。考虑了几个方案,Vmware因为价格被排除,VirtualBox不错,不过KVM由于是Linux内核层的,性能更好。优先考虑使用。

首先在一台实验机器上安装Ubuntu 12.04 amd64 server。升级系统补丁以及内核。hostname是kvmhost. IP是10.112.18.177. 主板上已经打开了虚拟化功能。

好。现在开始安装kvm。

sudo -s 切换到root权限。

用下面的命令检查cpu是否支持虚拟化:

  1. root@kvmhost:~# egrep '(vmx|svm)' --color=always /proc/cpuinfo  
  2. flags       : fpu vme de pse tsc msr pae mce cx8 apic sep 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 nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm dts tpr_shadow vnmi flexpriority ept vpid  
  3. flags       : fpu vme de pse tsc msr pae mce cx8 apic sep 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 nopl xtopology nonstop_tsc aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm dts tpr_shadow vnmi flexpriority ept vpid  
什么都不显示的话,就不能玩了。还好,我可以继续了。

现在安装kvm和kvmbuilder脚本。这个脚本用来创建基于Ubuntu的虚拟机。

  1. apt-get install ubuntu-virt-server Python-vm-builder kvm-ipxe  

将当前用户加入到kvm和libvirtd组

  1. adduser `id -un` libvirtd  
  2. adduser `id -un` kvm  
退出后,再登录。

运行下面的命令检查kvm是否安装成功。

  1. root@kvmhost:~# virsh -c qemu:///system list  
  2.  Id Name                 State  
  3. ----------------------------------  
没有错误信息。安装没问题。

下面设置网络,保证网络中的其他主机能够访问到kvm管理的虚拟机。

可能需要安装bridge-utils,我的实验机安装完操作系统的时候已经有了。没有的运行命令:

  1. apt-get install bridge-utils  

编辑/etc/network/interface文件,编辑前我的文件如下:

  1. # This file describes the network interfaces available on your system  
  2. # and how to activate them. For more information, see interfaces(5).  
  3.   
  4. # The loopback network interface  
  5. auto lo  
  6. iface lo inet loopback  
  7.   
  8. # The primary network interface  
  9. auto eth0  
  10. iface eth0 inet dhcp  
修改为:
  1. # This file describes the network interfaces available on your system  
  2. # and how to activate them. For more information, see interfaces(5).  
  3.   
  4. # The loopback network interface  
  5. auto lo  
  6. iface lo inet loopback  
  7.   
  8. # The primary network interface (disable)  
  9. #auto eth0  
  10. #iface eth0 inet dhcp  
  11.   
  12. # The primary network interface for kvm  
  13. auto eth0  
  14. iface eth0 inet manual  
  15.   
  16.   
  17. auto br0  
  18. iface br0 inet static  
  19.     address 10.112.18.177  
  20.     network 10.112.18.0  
  21.     netmask 255.255.255.0  
  22.     broadcast 10.112.18.255  
  23.     gateway 10.112.18.1  
  24.     dns-nameservers 8.8.8.8 8.8.4.4  
  25.     bridge_ports eth0  
  26.     bridge_fd 9  
  27.     bridge_hello 2  
  28.     bridge_maxage 12  
  29.     bridge_stp off  
重新启动网络服务

/etc/init.d/networking restart

然后检查一下网络配置

  1. root@kvmhost:/etc/network# ifconfig  
  2. br0       Link encap:Ethernet  HWaddr d0:67:e5:ef:5a:0a  
  3.           inet addr:10.112.18.177  Bcast:10.112.18.255  Mask:255.255.255.0  
  4.           inet6 addr: fe80::d267:e5ff:feef:5a0a/64 Scope:Link  
  5.           UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
  6.           RX packets:58 errors:0 dropped:0 overruns:0 frame:0  
  7.           TX packets:30 errors:0 dropped:0 overruns:0 carrier:0  
  8.           collisions:0 txqueuelen:0  
  9.           RX bytes:5961 (5.9 KB)  TX bytes:3662 (3.6 KB)  
  10.   
  11. eth0      Link encap:Ethernet  HWaddr d0:67:e5:ef:5a:0a  
  12.       UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1  
  13.       RX packets:67318 errors:0 dropped:0 overruns:0 frame:0  
  14.       TX packets:33515 errors:0 dropped:0 overruns:0 carrier:0  
  15.       collisions:0 txqueuelen:1000  
  16.       RX bytes:91560174 (91.5 MB)  TX bytes:2626976 (2.6 MB)  
  17.       Interrupt:17  
  18.   
  19. lo        Link encap:Local Loopback  
  20.       inet addr:127.0.0.1  Mask:255.0.0.0  
  21.           inet6 addr: ::1/128 Scope:Host  
  22.           UP LOOPBACK RUNNING  MTU:16436  Metric:1  
  23.           RX packets:0 errors:0 dropped:0 overruns:0 frame:0  
  24.           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0  
  25.           collisions:0 txqueuelen:0  
  26.           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)  
  27.   
  28. virbr0    Link encap:Ethernet  HWaddr 56:21:fd:02:02:35  
  29.           inet addr:192.168.122.1  Bcast:192.168.122.255  Mask:255.255.255.0  
  30.           UP BROADCAST MULTICAST  MTU:1500  Metric:1  
  31.           RX packets:0 errors:0 dropped:0 overruns:0 frame:0  
  32.           TX packets:0 errors:0 dropped:0 overruns:0 carrier:0  
  33.           collisions:0 txqueuelen:0  
  34.           RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)  
重新启动计算机.

reboot

重新登录上去。第一部分结束。

kvm

相关推荐