Linux

CentOS6.7のKVMにCentOS7を導入

ファイルフォーマットはqcow2を使います

isoイメージは/var/tmp/CentOS-7-x86_64-Minimal-1804.isoを使います

ゲストOSのイメージは/var/lib/libvirt/images/centos7_1_qcow2.imgとします

 

 

isoイメージのダウンロード

cd /var/tmp
wget http://ftp.iij.ad.jp/pub/linux/centos/7/isos/x86_64/CentOS-7-x86_64-Minimal-1804.iso

 

 

イメージの作成

cd /var/lib/libvirt/images
qemu-img create -f qcow2 centos7_1_qcow2.img 10G

 

 

CentOSのインストール

virt-install \
--name centos7_1 \
--ram 512 \
--disk path=/var/lib/libvirt/images/centos7_1_qcow2.img \
--vcpus 1 \
--os-type linux \
--os-variant rhel7 \
--network bridge=br1 \
--graphics none \
--console pty,target_type=serial \
--location '/var/tmp/CentOS-7-x86_64-Minimal-1804.iso' \
--extra-args 'console=ttyS0,115200n8 serial'

 

テキストコンソールでセットアップを行います