[root@Linux01 ~]# mount /dev/cdrom /mnt //挂载
安装KVM需要的软件
[root@Linux01 ~]# yum -y install qemu-kvm-tools
[root@Linux01 ~]# yum -y install qemu-kvm
[root@Linux01 ~]# yum -y install virt-install
[root@Linux01 ~]# yum -y install qemu-img
[root@Linux01 ~]# yum -y install bridge-utils
[root@Linux01 ~]# yum -y install libvirt
[root@Linux01 ~]# yum -y install virt-manager
——————————————————————————————————————
(2〉验证。重启系统后.查看CPU是否支持虚拟化,对于Intel 的服务器可以通过以下命令查看,只要有输出就说明CPU支持虚拟化:AMD服务器可用cat/proc/cpuinfo / grep srnv命令查看。
[root@Linux01 ~]# cat /proc/cpuinfo | grep vmx
——————————————————————————————————————————
检查KVM? 模块是否安装
———————————————————————————————————————————
(3〉开启服务。安装完成后还需要开启libvirtd服务,以开启相关支持。
[root@Linux01 ~]# systemctl start libvirtd
[root@Linux01 ~]# systemctl enable libvirtd
——————————————————————————————————————————
设置KVM 网络
[root@Linux01 ~]# cd /etc/sysconfig/network-scripts/
[root@Linux01 network-scripts]# vim ifcfg-ens33
[root@Linux01 network-scripts]# cp ifcfg-ens33 ifcfg-br0
[root@Linux01 network-scripts]# vim ifcfg-br0
TYPE=Bridge //更改成 Bridge
//增加这几项
IPADDR=192.168.9.100
NETMASK=255.255.255.0
GATEWAY=192.168.9.2
————————————————————————————————————————
从启 network 服务
?——————————————————————————————————————————
确认ip 地址
出现以上信息说明网卡桥接成功了
——————————————————————————————————————————
创建文件夹data_kvm iso storage
[root@Linux01 ~]# mkdir data_kvm
[root@Linux01 ~]# cd data_kvm/
[root@Linux01 data_kvm]# mkdir iso
[root@Linux01 data_kvm]# mkdir storage
在FTP 下载镜像