kvm 에서 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 <

KVM 에 ubuntu cloud image 가 져 오기
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

좋은 웹페이지 즐겨찾기