KVM学习笔记(virt-install 安装虚拟机)
1、通过本地ISO文件进行安装
创建虚拟机磁盘文件
用法:qemu-img create [-q] [-f fmt] [-o options] filename [size]
命令:qemu-img create -f qcow2 vm1-disk1.qcow2 10G
创建虚拟机
virt-install \
--name Centos6b \
--memory 1024 --vcpus 1 \
--cdrom /iso/CentOS-6.10-x86_64-minimal.iso \
--disk /vm/centos6b-disk0.qcow2 \
--graphics vnc,listen=0.0.0.0 \
--network network=default \
--os-variant rhel6 \
--os-type linux
参数解释:
--name 虚拟机名字
--memory 内存大小
--vcpus cpu个数
--cdrom 安装光盘位置
--disk 虚拟机磁盘文件
--graphics 显示类型
--network 网卡模式,default是默认的NAT模式
--os-variant 操作系统种类
--os-type 操作系统类型
如果使用Kickstart安装,不能用cdrom参数,需要使用location参数
virt-install \
--name Centos6b \
--memory 1024 --vcpus 1 \
--disk /vm/centos6b-disk0.qcow2 \
--graphics vnc,listen=0.0.0.0 \
--network network=default \
--os-variant rhel6 \
--os-type linux \
--location /iso/CentOS-6.10-x86_64-minimal.iso \
--extra-args="ks=http://192.168.234.22/ks.cfg"
评论
发表评论