前言
cirros作为openstack常用的测试云镜像,基于busybox打包,体积小巧好用,只有14M,启动速度快,且包含常用的cli工具,比如ping,nc,ip等等。
但我在使用过程种,萌发了cirros定制的一些需求,比如:
- 关闭cirros中的cloud-init功能。cloud-init功能主要是访问 169 网段,获取metadata信息,但我没部署nova的metadata服务,导致cloud-init会重试20秒,影响cirros的开机速度。
- 放置脚本文件在cirros镜像中。测试过程中有些常用的脚本需要预先放置在cirros中,方便使用,甚至包括定制cirros的启机脚本rc.local。
- 自定义密码。cirros默认的密码比较复杂,那就自定义一个简单的密码。
busybox最小系统的特点
- 其终端shell是ash,而不是bash。ash的功能有限,不支持bash的很多语法。比如不支持bash的花括号{1…5},等等。
开发环境配置
我是在wsl ubt20上配置开发环境
sudo apt install qemu-kvm libvirt-daemon-system libvirt-clients bridge-utils
sudo apt install linux-image-generic-hwe-20.04
sudo adduser 'root' libvirt
sudo chmod go+r /boot/vmlinuz-*
sudo systemctl restart libvirtd
操作cirros镜像
我这里采用cirros 0.3.6 ,比这高的版本难以直接操作cirros中的文件系统。
guestfish --rw -a cirros-z.qcow2
><fs> run100% ⟦▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒▒⟧ 00:00
><fs> list-filesystems
/dev/sda1: ext3
/dev/sda15: vfat
><fs> mount /dev/sda1 / # 挂载文件系统
><fs> touch /etc/rc.local
><fs> chmod 0777 /etc/rc.local # 这里必须有先导0,表明是8进制。参考[guestfish](https://www.libguestfs.org/guestfish.1.html )
><fs> quit
openstack导入cirros镜像
openstack image create "cirros" --file cirros.img --disk-format qcow2 --container-format bare --public
导入成功后,创建虚机的时候就可以指定这个镜像名了。
参考
openstack镜像配置root密码远程ssh登录
windows - Resize qcow2 image on Ubuntu via WSL2? Kernel cannot be read by libguestfs-tools virt-resize - Stack Overflow
Install KVM on Ubuntu 20.04 {+ Create a Virtual Machine}