在kvm中使用ubuntu cloud image

相关文档

  • ubuntu cloud image 下载 = https://cloud-images.ubuntu.com
  • ubuntu 社区相关文档 = https://help.ubuntu.com/community/UEC/Images
  • cloud init 官方文档 = http://cloudinit.readthedocs.io/en/latest

制作 cloud init 初始化镜像

cat > cloud-config <

导入 ubuntu cloud image 到 KVM

wget https://cloud-images.ubuntu.com/releases/16.04/release/ubuntu-16.04-server-cloudimg-amd64-disk1.img #下载 img 文件
cp ubuntu-16.04-server-cloudimg-amd64-disk1.img ubuntu.img #复制一份
qemu-img resize ubuntu.img +10G #增加磁盘大小

#导入
virt-install --connect=qemu:///system \
 --name ubuntu \
 --ram 2048 \
 --vcpus=2 \
 --os-type=linux \
 --os-variant=ubuntu16.04 \
 --disk ubuntu.img,device=disk,bus=virtio \
 --disk cloud-config.img,device=cdrom \
 --graphics none \
 --import

导入后可使用用户名 ubuntu 密码 x 登陆

弹出 cloud init 初始化镜像

virsh change-media ubuntu hda --eject --config

你可能感兴趣的:(在kvm中使用ubuntu cloud image)