alpine-make-vm-image/README.adoc

65 lines
2.9 KiB
Plaintext
Raw Normal View History

2017-08-29 18:01:51 +00:00
= Make Alpine Linux VM Image
2017-08-29 22:54:42 +00:00
:script-name: alpine-make-vm-image
2017-10-18 00:20:44 +00:00
:script-sha1: 81be93448aef28eb30f723307cde30ea442d166a
2017-08-29 22:54:42 +00:00
:gh-name: jirutka/{script-name}
2017-10-18 00:20:44 +00:00
:version: 0.2.1
2017-08-29 22:54:42 +00:00
ifdef::env-github[]
image:https://travis-ci.org/{gh-name}.svg?branch=master["Build Status", link="https://travis-ci.org/{gh-name}"]
endif::env-github[]
2017-10-11 19:36:32 +00:00
This project provides script for making customized https://alpinelinux.org/[Alpine Linux] disk images for virtual machines.
Its quite simple (250 LoC of shell), fast (~40 seconds on Travis CI including Travis VM initialization) and requires minimum dependencies (QEMU and filesystem tools).
2017-08-29 22:54:42 +00:00
2017-10-13 17:10:23 +00:00
TIP: Dont need VM, just want to chroot into Alpine Linux (e.g. on CI)?
Try https://github.com/alpinelinux/alpine-chroot-install[alpine-chroot-install]!
2017-08-29 22:54:42 +00:00
== Requirements
* Linux system with common userland (Busybox or GNU coreutils)
2017-08-29 22:54:42 +00:00
* POSIX-sh compatible shell (e.g. Busybox ash, dash, Bash, ZSH)
* qemu-img and qemu-nbd (automatically installed by the script if running on Alpine)
* e2fsprogs (for ext4), btrfs-progs (for Btrfs), or xfsprogs (for XFS) (automatically installed by the script if running on Alpine)
2017-08-29 22:54:42 +00:00
== Usage
Read documentation in link:{script-name}[{script-name}].
See link:.travis.yml[.travis.yml] for Travis example.
You can copy link:{script-name}[{script-name}] into your repository or download it on demand, e.g.:
[source, sh, subs="+attributes"]
wget https://raw.githubusercontent.com/{gh-name}/v{version}/{script-name} \
&& echo '{script-sha1} {script-name}' | sha1sum -c \
|| exit 1
== Pitfalls
=== Creating Image for VMware (ESXi)
VMware and disk images (virtual disks) is one big mess.
You can find that VMware uses format VMDK, but the problem is that this is not a single format.
Actually it has many subformats with very different structure and various (in)compatibility with VMware hypervisors.
When I created disk image using `qemu-img create -f vmdk` or converted Qcow2 to VMDK using `qemu-img convert -O vmdk`, vSphere client loaded this image without any problem, but data was corrupted.
Eventually I found in some old documentation that ESXi does not support “sparse” disks…
So after many trials I found out that the least bad and functional solution is to create Qcow2 image and then convert it to VMDK using:
[source, sh]
qemu-img convert -f qcow2 -O vmdk -o adapter_type=lsilogic,subformat=monolithicFlat alpine.qcow2 alpine.vmdk
Unfortunately this creates a “thick” image, i.e. its size equals the “provisioned space”, not actually used space as in Qcow2.
However, you can compress it with gzip to avoid transferring multiple gigabytes of zeros over network.
Also note that VMware has some problem with hardened kernel, so you have to boot it with `pax_nouderef` (read more https://wiki.alpinelinux.org/wiki/Install_Alpine_on_VMware[here]).
2017-08-29 22:54:42 +00:00
== License
This project is licensed under http://opensource.org/licenses/MIT/[MIT License].
For the full text of the license, see the link:LICENSE[LICENSE] file.