标签:style http color io os ar for 文件 sp
目的:
在centos6.5操作系统环境下制作一个centos6.5的kvm镜像,安装cloud-init,能自动扩展根分区
一、制作环境:
操作环境是在openstack平台开一个实例,装的是centos6.5,镜像来自:http://cloud.centos.org/centos/6.5/images/CentOS-6-x86_64-GenericCloud-20140929_01.qcow2
centos社区制作的镜像,不支持自动扩展根分区,导致创建实例时不论你指定硬盘大小是多大,它都是7G多点。
二、安装软件:
qemu-img create -f qcow2 centos-6.5.qcow2 5G
3、创建命令:
virt-install --name centos-6.5 --ram 1024 --cdrom=CentOS-6.5-x86_64-minimal.iso --disk centos-6.5.qcow2,format=qcow2 --grap hics vnc,listen=0.0.0.0 —noautoconsole --os-type=linux --os-variant=rhel64、系统安装过程:
/boot/grub/menu.lst
中kernel参数中增加下面的内容:
kernel
...(省略n个参数)...
console=tty0 console=ttyS0,115200n8(4)修改网络信息 /etc/sysconfig/network-scripts/ifcfg-eth0 (删掉mac信息)如下:TYPE=Ethernet DEVICE=eth0 ONBOOT=yes BOOTPROTO=dhcp NM_CONTROLLED=no增加一行到/etc/sysconfig/network :NOZERCONF=yes
(5)增加epel源、更新系统,安装git:yum install -y http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
yum -y distro-sync
yum -y git
(6)安装ACPI服务,能让宿主机对虚拟机进行开关机等电源管理操作yum install acpidchkconfig acpid on
(7)安装linux rootfs resize,使得实例启动时可以自动扩展根分区cd /tmp git clone https://github.com/flegmatik/linux-rootfs-resize.git cd linux-rootfs-resize ./install(8)安装cloud-inityum install -y cloud-utils cloud-init parted修改配置文件/etc/cloud/cloud.cfg ,在cloud_init_modules 下面增加:- resolv-conf
(9)关机:
poweroff
6、善后操作
(1)清除网络相关硬件生成信息virt-sysprep -d centos-6.5
(2)压缩镜像
virt-sparsify --compress /tmp/centos-6.5.qcow2 centos-6.5-cloud.qcow2镜像制作到此结束
标签:style http color io os ar for 文件 sp
原文地址:http://blog.csdn.net/yanheven1/article/details/40041849