Centos6.5 x86_64系统安装kvm虚拟机—基础篇

KVM简介:

KVM是开源软件,全称是kernel-based virtual machine(基于内核的虚拟机)。

是x86架构且硬件支持虚拟化技术(如 intel VT 或 AMD-V)的Linux全虚拟化解决方案。

它包含一个为处理器提供底层虚拟化 可加载的核心模块kvm.ko(kvm-intel.ko或kvm-AMD.ko)。

KVM还需要一个经过修改的QEMU软件(qemu-kvm),作为虚拟机上层控制和界面。

KVM能在不改变linux或windows镜像的情况下同时运行多个虚拟机,(它的意思是多个虚拟机使用同一镜像)并为每一个虚拟机配置个性化硬件环境(网卡、磁盘、图形适配器……)。

在主流的Linux内核,如2.6.20以上的内核均已包含了KVM核心。

安装kvm虚拟机之前准备工作:

1.关闭iptables防火墙和selinux。

[[email protected] ~]# /etc/init.d/iptables stop
[[email protected] ~]# chkconfig iptables off
[[email protected] ~]# chkconfig --list iptables
iptables        0:off   1:off   2:off   3:off   4:off   5:off   6:off
[[email protected] ~]# vim /etc/sysconfig/selinux
SELINUX=disabled
[[email protected] ~]# setenforce 0

2.vmware workstation安装kvm的时候,需要开启CPU支持虚拟化。

下边开始介绍Centos6.5 x86_64系统安装kvm虚拟机

一、安装kvm虚拟机

1.查看CPU是否支持kvm完全虚拟机。

[[email protected] ~]# grep "flags" /proc/cpuinfo
flags           : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts mmx fxsr sse sse2 ss syscall nx rdtscp lm constant_tsc up arch_perfmon pebs bts xtopology tsc_reliable nonstop_tsc aperfmperf unfair_spinlock pni pclmulqdq vmx ssse3 cx16 pcid sse4_1 sse4_2 x2apic popcnt xsave avx hypervisor lahf_lm arat epb xsaveopt pln pts dts tpr_shadow vnmi ept vpid

注释:如果输出的信息中有vmx,说明intel处理器支持完全虚拟化。如果显示svm,说明是AMD的处理器支持虚拟化。

2.安装kvm和其他虚拟化所需管理软件包。

[[email protected] ~]# yum install -y kvm virt-* libvirts bridge-utils qemu-img

软件包名称介绍:

Kvm:软件包中含有KVM内核模块,它在默认linux内核中提供kvm管理程序

Libvirts:安装虚拟机管理工具,使用virsh等命令来管理和控制虚拟机。

Bridge-utils:设置网络网卡桥接。

Virt-*:创建、克隆虚拟机命令,以及图形化管理工具virt-manager

Qemu-img:安装qemu组件,使用qemu命令来创建磁盘等。

3.加载kvm模块,查看kvm模块是否被加载

[[email protected] ~]# modprobe kvm-intel
[[email protected] ~]# lsmod | grep kvm
kvm_intel              54285  0 
kvm                   333172  1 kvm_intel

4.重启确实KVM是否被加载

[[email protected] ~]# reboot          
[[email protected] ~]# lsmod | grep kvm
kvm_intel              54285  0 
kvm                   333172  1 kvm_intel

5.查看已打开虚拟机列表

[[email protected] ~]# virsh list
 Id    Name                           State
----------------------------------------------------

6.配置eth0、br0网卡

[[email protected] ~]# more /etc/sysconfig/network-scripts/ifcfg-eth0     
DEVICE=eth0
HWADDR=00:0C:29:33:B3:E5
TYPE=Ethernet
UUID=142284ae-3173-4b0a-80d8-437c26a96719
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=none
BRIDGE=br0
[[email protected] ~]# more /etc/sysconfig/network-scripts/ifcfg-br0     
DEVICE=br0
HWADDR=00:0C:29:33:B3:E5
TYPE=Bridge
UUID=142284ae-3173-4b0a-80d8-437c26a96719
ONBOOT=yes
NM_CONTROLLED=yes
BOOTPROTO=static
IPADDR=10.0.1.149
NETMASK=255.255.255.0
GATEWAY=10.0.1.1
[[email protected] ~]# /etc/init.d/network restart

7.查看目前所有的网桥接口

[[email protected] ~]# brctl show
bridge name     bridge id               STP enabled     interfaces
br0             8000.000c2933b3e5       no              eth0
virbr0          8000.525400d969b8       yes             virbr0-nic

8.修改VNC服务端的配置文件

[[email protected] ~]# vim /etc/libvirt/qemu.conf  
vnc_listen = "0.0.0.0"   第十二行,把vnc_listen前面的#号去掉。

9.重启libvirtd和messagebus服务

[[email protected] ~]# /etc/init.d/libvirtd restart
Stopping libvirtd daemon:                                  [  OK  ]
Starting libvirtd daemon: libvirtd: initialization failed  [FAILED]
解决办法:
[[email protected] libvirt]# echo "export LC_ALL=en_US.UTF-8"  >>  /etc/profile
[[email protected] libvirt]# source /etc/profile
[[email protected] libvirt]# /etc/init.d/libvirtd restart
Stopping libvirtd daemon:                                  [FAILED]
Starting libvirtd daemon: 2014-08-15 16:14:18.595+0000: 2429: info : libvirt version: 0.10.2, package: 29.el6_5.11 (CentOS BuildSystem <http://bugs.centos.org>, 2014-07-31-18:52:08, c6b8.bsys.dev.centos.org)
2014-08-15 16:14:18.595+0000: 2429: warning : virGetHostname:2294 : getaddrinfo failed for ‘taokey‘: Name or service not known
                                                           [  OK  ]
[[email protected] ~]# /etc/init.d/messagebus restart
Stopping system message bus:                               [  OK  ]
Starting system message bus:                               [  OK  ]

二、在宿主机上创建、安装kvm虚拟机

  1. 创建镜像文件目录和虚拟磁盘存放目录
[[email protected] ~]# mkdir /iso
[[email protected] ~]# mkdir -p /data/kvmdisk

2.把Centos6.5系统的镜像文件拷贝到iso目录下

[[email protected] ~]# dd if=/dev/cdrom of=/iso/Centos6.iso
8726528+0 records in
8726528+0 records out
4467982336 bytes (4.5 GB) copied, 298.268 s, 15.0 MB/s

3.创建kvm虚拟机的磁盘文件

[[email protected] ~]# cd /etc/libvirt/
[[email protected] libvirt]# qemu-img create -f qcow2 -o preallocation=metadata kvm_mode.img 10G        
Formatting ‘kvm_mode.img‘, fmt=qcow2 size=10737418240 encryption=off cluster_size=65536 preallocation=‘metadata‘

4.安装虚拟机

[[email protected] libvirt]# virt-install --name=kvm_mode_5566 --ram 1024 --vcpus=1 -f /etc/libvirt/kvm_mode.img --cdrom=/iso/Centos6.iso --graphics vnc,listen=0.0.0.0,port=7788 --force --autostart

Starting install...
ERROR    internal error Process exited while reading console log output: char device redirected to /dev/pts/2
qemu-kvm: -drive file=/etc/libvirt/kvm_mode.img,if=none,id=drive-ide0-0-0,format=raw,cache=none: could not open disk image /etc/libvirt/kvm_mode.img: Permission denied

Domain installation does not appear to have been successful.
If it was, you can restart your domain by running:
  virsh --connect qemu:///system start kvm_mode_5566
otherwise, please restart your installation.

解决办法:
[[email protected] libvirt]# chmod -R 777 /etc/libvirt
[[email protected] libvirt]# virt-install --name=kvm_mode_5566 --ram 1024 --vcpus=1 -f /etc/libvirt/kvm_mode.img --cdrom=/iso/Centos6.iso --graphics vnc,listen=0.0.0.0,port=7788 --force --autostart

Starting install...
Creating domain...                                                                                           |    0 B     00:00     
Cannot open display: 
Run ‘virt-viewer --help‘ to see a full list of available command line options
Domain installation still in progress. You can reconnect to 
the console to complete the installation process.

三、VNC客户端连接KVM虚拟机,设置IP地址。

  1. 用VNC连接,进行创建kvm虚拟机(VNC连上之后,跟安装linux Centos 6.5系统一样,重新装一次)

2.在宿主机上列出创建的kvm虚拟机,手动开启新创建的虚拟机

[[email protected] ~]# virsh 
Welcome to virsh, the virtualization interactive terminal.

Type:  ‘help‘ for help with commands
       ‘quit‘ to quit

virsh # list --all
 Id    Name                           State
----------------------------------------------------
 -     kvm_mode_5566                  shut off  

virsh # start kvm_mode_5566
Domain kvm_mode_5566 started

3.设置静态IP地址

重启网卡会报错。

解决办法:

eth0网卡配置文件中的

HWADDR=00:0C:29:33:B3:E5修改成MACADDR=00:0C:29:33:B3:E5

rm -rf /etc/udev/rules.d/70-persistent-net.rules

如图所示:

reboot新创建的kvm_mode_5566虚拟机,重启network服务就可以配置上IP地址了。

[[email protected] ~]# more /etc/sysconfig/network-scripts/ifcfg-eth0

DEVICE=eth0

MACADDR=52:54:00:80:7E:A5

TYPE=Ethernet

UUID=7d042162-53e9-4ef1-ba2f-bf3b892bb353

ONBOOT=yes

NM_CONTROLLED=yes

BOOTPROTO=static

IPADDR=10.0.1.228

NETMASK=255.255.255.0

GATEWAY=10.0.1.1

[[email protected] ~]# ping www.baidu.com

PING www.a.shifen.com (119.75.218.77) 56(84) bytes of data.

64 bytes from www.baidu.com (119.75.218.77): icmp_seq=1 ttl=54 time=3.05 ms

64 bytes from www.baidu.com (119.75.218.77): icmp_seq=2 ttl=54 time=4.82 ms

64 bytes from www.baidu.com (119.75.218.77): icmp_seq=3 ttl=54 time=3.72 ms

^C

--- www.a.shifen.com ping statistics ---

3 packets transmitted, 3 received, 0% packet loss, time 2252ms

rtt min/avg/max/mdev = 3.055/3.866/4.822/0.730 ms

4.查看下宿主机上的虚拟机。

[[email protected] ~]# virsh 
Welcome to virsh, the virtualization interactive terminal.

Type:  ‘help‘ for help with commands
       ‘quit‘ to quit

virsh # list --all
 Id    Name                           State
----------------------------------------------------
 1     kvm_mode_5566                  running

virsh #

到此为止,试验完毕。

下一篇会介绍通过命令克隆虚拟机和修改配置文件创建虚拟机。

Centos6.5 x86_64系统安装kvm虚拟机—基础篇,布布扣,bubuko.com

时间: 2024-10-03 16:40:40

Centos6.5 x86_64系统安装kvm虚拟机—基础篇的相关文章

Centos6.5系统安装kvm虚拟机之克隆、拷贝文件安装新虚拟机

Centos 6.5 x86_64系统安装kvm虚拟机-克隆.拷贝xml文件安装新虚拟机 一.通过模板虚拟机克隆新虚拟机 IP规划: 宿主机:10.0.1.149 模板虚拟机:10.0.1.228 克隆虚拟机:10.0.1.100 关闭或者暂停模板虚拟机,再进行克隆安装新虚拟机. [[email protected] ~]# virt-clone -o kvm_mode_5566 -n mysql-server -f /data/kvmdisk/mysql-server.qcow2 ERROR 

Windows Azure系列公开课 - 第三课:创建虚拟机 (基础篇)

Windows Azure微软智能云平台主要提供四大类服务:计算服务(Compute),数据服务 (Data Services) ,应用服务 (App Services) ,网络服务(Network).在这一课中我们会为大家着重介绍计算服务中的虚拟机 (Virtual Machines). 云计算模型和选择 在之前的课程中,我们已经向大家介绍过,Windows Azure主要提供三大类云计算服务:基础结构即服务(IaaS),平台即服务(PaaS),软件即服务(SaaS). 接下来需要对映像进行配

KVM虚拟机基本操作命令

KVM虚拟机基础操作命令 1)查看虚拟机列表 virsh list 2)查看正在运行的虚拟机列表 virsh list --all 3)查看所有虚拟机 virsh list --all 4)查看虚拟机详细信息 域 virsh dominfo 虚拟机名称 5)虚拟机域的开关机操作 virsh start 虚拟机名称 (开机) virsh shutdown 虚拟机名称 (温柔的关机) virsh shutdown ID号 (关机) virsh destroy 虚拟机名称 (强制关机,相当于拔电源)

53 kvm及libvirt、使用virsh管理kvm虚拟机、网络虚拟化技术基础、网络名称空间netns用法详解

01 kvm及libvirt [[email protected] ~]# yum install libvirt libvirt-client python-virtinst virt-manager virt-install -y [[email protected] ~]# yum -y install qemu-kvm [[email protected] ~]# systemctl start libvirtd.service #创建桥 [[email protected] ~]# v

51 kvm技术基础、使用qemu-kvm管理kvm虚拟机

01 kvm技术基础 配置环境: node1 192.168.1.121 CentOS release 6.7 1.KVM安装 #确保CPU支持HVM [[email protected] ~]# grep -E --color=auto "(vmx|svm)" /proc/cpuinfo #装载模块 [[email protected] ~]# modprobe kvm [[email protected] ~]# modprobe kvm-intel [[email protect

CentOS6.3下安装kvm和创建kvm虚拟机

一.安装kvm 1 在安装CentOS6.3时可以选择安装好kvm 2 如果未安装好kvm,请按照下列方式安装 [创建本地yum源] 挂载iso文件mount -o loop -t iso9660 CentOS-6.3-x86_64-bin-DVD1.iso /mnt 设置本地yum源在/etc/yum.repos.d/创建   "任意文件名.repo"    文件  vi 刚才新建的文件名编辑[localyum]任意名称 ,不能有空格.name= local yum  任意名称bas

003.KVM虚拟机部署-CentOS6.8

一 实验说明 CentOS 7的KVM虚拟机推荐使用qcow2磁盘格式,本实验在KVM中安装CentOS 6.8 64虚拟机. 二 命令部署过程 2.1 上传镜像 使用winscp上传至/data/iso/ 2.2 格式化磁盘 1 virt-install --network bridge=br0,model=virtio --name=vm01-centos6.8 --ram=1024 --vcpus=2 --disk path=/data/images/vm01-centos6.8.img,

Windows Azure系列 -《基础篇》- 如何创建虚拟机

首先,使用自己的windows azure账号登陆管理平台manage.windowsazure.cn,找到并点击"虚拟机"标签,即可看到目前云平台中你所拥有的虚机实例,在我的环境中现在没有任何的虚机,所以我们可以通过点击图示的新建按钮进行选择或直接点击"创建虚拟机"进行创建: 点击"创建虚拟机",在DNS名称位置填写所建虚机的主机名,并选择映像和虚机大小(可选单核至8核,内存从768M至56G),这里说明一下,处于用户名不可以设置为常用的adm

CENTOS6.4上KVM虚拟机环境搭建

关键词: KVM,虚拟机,windows7, VNC, 桥接网络,br0, SCSI, IDE 环境: host: CENTOS6.4 guest: windows 7 sp1 主要步骤: 安装软件包 配置桥接网络 配置VNC 安装虚拟机 1.安装软件包 yum install qemu-kvm yum install libvirt   yum install libvirt-python 其实CENTOS6.4上已经安装了这三个软件包,不用再装了. rpm -qa | grep qumu-k