Tag Archives: kvm

Centos6.5安装kvm虚拟化

KVM简介: 1.KVM是开源软件,全称是kernel-based virtual machine(基于内核的虚拟机)。 2.是x86架构且硬件支持虚拟化技术(如 intel VT 或 AMD-V)的Linux全虚拟化解决方案。 3.KVM能在不改变linux或windows镜像的情况下同时运行多个虚拟机,(它的意思是多个虚拟机使用同一镜像)并为每一个虚拟机配置个性化硬件环境(网卡、磁盘、图形适配器……) 一、设置虚拟机支持虚拟化 二、先关闭防火墙和selinux [root@cany ~]<span class="hljs-comment"># service iptables stop    关闭防火墙</span> [root@cany ~]<span class="hljs-comment"># setenforce 0                关闭selinux(临时生效)</span> setenforce: SELinux <span class="hljs-keyword">is</span> disabled 永久生效方法 [root@cany ~]<span class="hljs-comment"># vim /etc/sysconfig/selinux   SELINUX=enforcing 改为disabled 并reboot生效</span> 三、检查服务器是否支持虚拟化 [root@cany ~]<span class="hljs-comment"># grep -E -o… Read More »