KVM安装这里就不做介绍了,我们直接进入主题。
在使用console来连接虚拟机进行安装操作前,我们先将serial-getty@ttyS0.service 服务打开(串口服务)
开启服务:
[root@localhost ~]# systemctl start serial-getty@ttyS0.service
设置为开机启动:
[root@localhost ~]# systemctl enable serial-getty@ttyS0.service
创建磁盘:
[root@localhost images]# pwd
/var/lib/libvirt/images #默认虚拟机磁盘存放路径
[root@localhost images]# qemu-img create -f qcow2 kvmtest.qcow2 20G
使用工具将ISO系统镜像文件上传到宿主主机上,例如winSCP工具。
前期工作准备完成后,现在开始安装:
virt-install --virt-type kvm --name kvmtest --ram 1024 --vcpus 2 --location=/kvm/iso/CentOS-7.2-x86_64-DVD-1511.iso --disk path=/var/lib/libvirt/images/kvmtest.qcow2 --network bridge=br0 --graphics none --extra-args "console=ttyS0"
注:
--name:虚拟机名
--ram:内存
--vcpus: cpu个数
-