2013-09-02 23:23:52 -04:00
|
|
|
---
|
2015-07-22 22:31:00 -04:00
|
|
|
layout: docs
|
2017-03-25 18:13:52 -04:00
|
|
|
sidebar_current: docs-builders-qemu
|
|
|
|
page_title: QEMU - Builders
|
|
|
|
description: |-
|
|
|
|
The Qemu Packer builder is able to create KVM and Xen virtual machine images.
|
|
|
|
Support for Xen is experimental at this time.
|
|
|
|
---
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2013-11-05 18:34:09 -05:00
|
|
|
# QEMU Builder
|
2013-09-02 23:23:52 -04:00
|
|
|
|
|
|
|
Type: `qemu`
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The Qemu Packer builder is able to create [KVM](http://www.linux-kvm.org) and
|
|
|
|
[Xen](http://www.xenproject.org) virtual machine images. Support for Xen is
|
|
|
|
experimental at this time.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The builder builds a virtual machine by creating a new virtual machine from
|
|
|
|
scratch, booting it, installing an OS, rebooting the machine with the boot media
|
|
|
|
as the virtual hard drive, provisioning software within the OS, then shutting it
|
|
|
|
down. The result of the Qemu builder is a directory containing the image file
|
|
|
|
necessary to run the virtual machine on KVM or Xen.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
|
|
|
## Basic Example
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Here is a basic example. This example is functional so long as you fixup paths
|
|
|
|
to files, URLS for ISOs and checksums.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
```json
|
2013-09-02 23:23:52 -04:00
|
|
|
{
|
|
|
|
"builders":
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"type": "qemu",
|
2016-12-20 07:56:25 -05:00
|
|
|
"iso_url": "http://mirror.raystedman.net/centos/6/isos/x86_64/CentOS-6.8-x86_64-minimal.iso",
|
|
|
|
"iso_checksum": "0ca12fe5f28c2ceed4f4084b41ff8a0b",
|
2013-09-02 23:23:52 -04:00
|
|
|
"iso_checksum_type": "md5",
|
|
|
|
"output_directory": "output_centos_tdhtest",
|
|
|
|
"shutdown_command": "shutdown -P now",
|
|
|
|
"disk_size": 5000,
|
|
|
|
"format": "qcow2",
|
|
|
|
"headless": false,
|
|
|
|
"accelerator": "kvm",
|
2013-11-05 18:34:09 -05:00
|
|
|
"http_directory": "httpdir",
|
2013-09-02 23:23:52 -04:00
|
|
|
"http_port_min": 10082,
|
|
|
|
"http_port_max": 10089,
|
|
|
|
"ssh_host_port_min": 2222,
|
|
|
|
"ssh_host_port_max": 2229,
|
|
|
|
"ssh_username": "root",
|
|
|
|
"ssh_password": "s0m3password",
|
|
|
|
"ssh_port": 22,
|
2015-10-02 01:52:06 -04:00
|
|
|
"ssh_wait_timeout": "30s",
|
2013-09-02 23:23:52 -04:00
|
|
|
"vm_name": "tdhtest",
|
2013-10-09 08:11:10 -04:00
|
|
|
"net_device": "virtio-net",
|
2013-09-03 11:08:04 -04:00
|
|
|
"disk_interface": "virtio",
|
2014-06-20 08:14:15 -04:00
|
|
|
"boot_wait": "5s",
|
2017-03-25 18:13:52 -04:00
|
|
|
"boot_command": [
|
2014-06-20 08:14:15 -04:00
|
|
|
"<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/centos6-ks.cfg<enter><wait>"
|
2013-09-02 23:23:52 -04:00
|
|
|
]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
A working CentOS 6.x kickstart file can be found [at this
|
|
|
|
URL](https://gist.github.com/mitchellh/7328271/#file-centos6-ks-cfg), adapted
|
|
|
|
from an unknown source. Place this file in the http directory with the proper
|
|
|
|
name. For the example above, it should go into "httpdir" with a name of
|
|
|
|
"centos6-ks.cfg".
|
2013-09-02 23:23:52 -04:00
|
|
|
|
|
|
|
## Configuration Reference
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
There are many configuration options available for the Qemu builder. They are
|
|
|
|
organized below into two categories: required and optional. Within each
|
|
|
|
category, the available options are alphabetized and described.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2015-06-23 17:44:57 -04:00
|
|
|
In addition to the options listed here, a
|
2015-07-22 22:31:00 -04:00
|
|
|
[communicator](/docs/templates/communicator.html) can be configured for this
|
|
|
|
builder.
|
2015-06-23 17:44:57 -04:00
|
|
|
|
2016-05-20 13:01:41 -04:00
|
|
|
Note that you will need to set `"headless": true` if you are running Packer
|
|
|
|
on a Linux server without X11; or if you are connected via ssh to a remote
|
|
|
|
Linux server and have not enabled X11 forwarding (`ssh -X`).
|
|
|
|
|
2014-05-04 13:47:40 -04:00
|
|
|
### Required:
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_checksum` (string) - The checksum for the OS ISO file. Because ISO
|
2015-07-22 23:25:58 -04:00
|
|
|
files are so large, this is required and Packer will verify it prior to
|
|
|
|
booting a virtual machine with the ISO attached. The type of the checksum is
|
2016-02-08 09:51:43 -05:00
|
|
|
specified with `iso_checksum_type`, documented below. At least one of
|
|
|
|
`iso_checksum` and `iso_checksum_url` must be defined. This has precedence
|
|
|
|
over `iso_checksum_url` type.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_checksum_type` (string) - The type of the checksum specified in
|
2016-02-08 09:51:43 -05:00
|
|
|
`iso_checksum`. Valid values are "none", "md5", "sha1", "sha256", or
|
|
|
|
"sha512" currently. While "none" will skip checksumming, this is not
|
|
|
|
recommended since ISO files are generally large and corruption does happen
|
|
|
|
from time to time.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_checksum_url` (string) - A URL to a GNU or BSD style checksum file
|
2016-02-08 09:51:43 -05:00
|
|
|
containing a checksum for the OS ISO file. At least one of `iso_checksum`
|
|
|
|
and `iso_checksum_url` must be defined. This will be ignored if
|
|
|
|
`iso_checksum` is non empty.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_url` (string) - A URL to the ISO containing the installation image.
|
2015-07-22 23:25:58 -04:00
|
|
|
This URL can be either an HTTP URL or a file URL (or path to a file). If
|
|
|
|
this is an HTTP URL, Packer will download it and cache it between runs.
|
2016-11-24 14:18:38 -05:00
|
|
|
This can also be a URL to an IMG or QCOW2 file, in which case QEMU will
|
2017-03-25 18:13:52 -04:00
|
|
|
boot directly from it. When passing a path to an IMG or QCOW2 file, you
|
2016-11-24 14:18:38 -05:00
|
|
|
should set `disk_image` to "true".
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `ssh_username` (string) - The username to use to SSH into the machine once
|
2015-07-22 23:25:58 -04:00
|
|
|
the OS is installed.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2014-05-04 13:47:40 -04:00
|
|
|
### Optional:
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `accelerator` (string) - The accelerator type to use when running the VM.
|
2016-05-20 01:54:08 -04:00
|
|
|
This may be `none`, `kvm`, `tcg`, or `xen`. The appropriate software must
|
|
|
|
already been installed on your build machine to use the accelerator you
|
|
|
|
specified. When no accelerator is specified, Packer will try to use `kvm`
|
|
|
|
if it is available but will default to `tcg` otherwise.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `boot_command` (array of strings) - This is an array of commands to type
|
2015-07-22 23:25:58 -04:00
|
|
|
when the virtual machine is first booted. The goal of these commands should
|
|
|
|
be to type just enough to initialize the operating system installer. Special
|
|
|
|
keys can be typed as well, and are covered in the section below on the
|
|
|
|
boot command. If this is not specified, it is assumed the installer will
|
|
|
|
start itself.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `boot_wait` (string) - The time to wait after booting the initial virtual
|
2015-07-22 23:25:58 -04:00
|
|
|
machine before typing the `boot_command`. The value of this should be
|
|
|
|
a duration. Examples are "5s" and "1m30s" which will cause Packer to wait
|
|
|
|
five seconds and one minute 30 seconds, respectively. If this isn't
|
|
|
|
specified, the default is 10 seconds.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `disk_cache` (string) - The cache mode to use for disk. Allowed values
|
2015-07-22 23:25:58 -04:00
|
|
|
include any of "writethrough", "writeback", "none", "unsafe"
|
|
|
|
or "directsync". By default, this is set to "writeback".
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `disk_compression` (boolean) - Apply compression to the QCOW2 disk file
|
2016-02-03 11:16:40 -05:00
|
|
|
using `qemu-img convert`. Defaults to `false`.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `disk_discard` (string) - The discard mode to use for disk. Allowed values
|
2015-07-22 23:25:58 -04:00
|
|
|
include any of "unmap" or "ignore". By default, this is set to "ignore".
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `disk_image` (boolean) - Packer defaults to building from an ISO file, this
|
2015-07-22 23:25:58 -04:00
|
|
|
parameter controls whether the ISO URL supplied is actually a bootable
|
|
|
|
QEMU image. When this value is set to true, the machine will clone the
|
|
|
|
source, resize it according to `disk_size` and boot the image.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `disk_interface` (string) - The interface to use for the disk. Allowed
|
2017-01-13 06:06:46 -05:00
|
|
|
values include any of "ide", "scsi", "virtio" or "virtio-scsi"^* . Note also
|
2016-02-03 11:16:40 -05:00
|
|
|
that any boot commands or kickstart type scripts must have proper
|
|
|
|
adjustments for resulting device names. The Qemu builder uses "virtio" by
|
|
|
|
default.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-01-13 06:06:46 -05:00
|
|
|
^* Please be aware that use of the "scsi" disk interface has been disabled
|
|
|
|
by Red Hat due to a bug described
|
|
|
|
[here](https://bugzilla.redhat.com/show_bug.cgi?id=1019220).
|
|
|
|
If you are running Qemu on RHEL or a RHEL variant such as CentOS, you
|
|
|
|
*must* choose one of the other listed interfaces. Using the "scsi"
|
|
|
|
interface under these circumstances will cause the build to fail.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `disk_size` (integer) - The size, in megabytes, of the hard disk to create
|
2015-07-22 23:25:58 -04:00
|
|
|
for the VM. By default, this is 40000 (about 40 GB).
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `floppy_files` (array of strings) - A list of files to place onto a floppy
|
2015-07-22 23:25:58 -04:00
|
|
|
disk that is attached when the VM is booted. This is most useful for
|
|
|
|
unattended Windows installs, which look for an `Autounattend.xml` file on
|
|
|
|
removable media. By default, no floppy will be attached. All files listed in
|
|
|
|
this setting get placed into the root directory of the floppy and the floppy
|
|
|
|
is attached as the first floppy device. Currently, no support exists for
|
|
|
|
creating sub-directories on the floppy. Wildcard characters (\*, ?,
|
|
|
|
and \[\]) are allowed. Directory names are also allowed, which will add all
|
2017-03-06 13:25:32 -05:00
|
|
|
the files found in the directory to the floppy. The summary size of the
|
|
|
|
listed files must not exceed 1.44 MB. The supported ways to move large
|
|
|
|
files into the OS are using `http_directory` or [the file provisioner](
|
|
|
|
https://www.packer.io/docs/provisioners/file.html).
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `floppy_dirs` (array of strings) - A list of directories to place onto
|
2016-04-05 19:14:20 -04:00
|
|
|
the floppy disk recursively. This is similar to the `floppy_files` option
|
|
|
|
except that the directory structure is preserved. This is useful for when
|
2016-11-21 14:50:26 -05:00
|
|
|
your floppy disk includes drivers or if you just want to organize it's
|
2017-03-06 13:25:32 -05:00
|
|
|
contents as a hierarchy. Wildcard characters (\*, ?, and \[\]) are allowed.
|
|
|
|
The maximum summary size of all files in the listed directories are the
|
|
|
|
same as in `floppy_files`.
|
2016-04-05 19:14:20 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `format` (string) - Either "qcow2" or "raw", this specifies the output
|
2016-02-09 14:44:24 -05:00
|
|
|
format of the virtual machine image. This defaults to `qcow2`.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `headless` (boolean) - Packer defaults to building QEMU virtual machines by
|
2015-07-22 23:25:58 -04:00
|
|
|
launching a GUI that shows the console of the machine being built. When this
|
|
|
|
value is set to true, the machine will start without a console.
|
|
|
|
|
2016-05-20 13:01:41 -04:00
|
|
|
You can still see the console if you make a note of the VNC display
|
|
|
|
number chosen, and then connect using `vncviewer -Shared <host>:<display>`
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `http_directory` (string) - Path to a directory to serve using an
|
2015-07-22 23:25:58 -04:00
|
|
|
HTTP server. The files in this directory will be available over HTTP that
|
|
|
|
will be requestable from the virtual machine. This is useful for hosting
|
|
|
|
kickstart files and so on. By default this is "", which means no HTTP server
|
|
|
|
will be started. The address and port of the HTTP server will be available
|
|
|
|
as variables in `boot_command`. This is covered in more detail below.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `http_port_min` and `http_port_max` (integer) - These are the minimum and
|
2015-07-22 23:25:58 -04:00
|
|
|
maximum port to use for the HTTP server started to serve the
|
|
|
|
`http_directory`. Because Packer often runs in parallel, Packer will choose
|
|
|
|
a randomly available port in this range to run the HTTP server. If you want
|
|
|
|
to force the HTTP server to be on one port, make this minimum and maximum
|
|
|
|
port the same. By default the values are 8000 and 9000, respectively.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_skip_cache` (boolean) - Use iso from provided url. Qemu must support
|
2016-02-09 14:44:24 -05:00
|
|
|
curl block device. This defaults to `false`.
|
2016-01-25 04:01:37 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_target_extension` (string) - The extension of the iso file after
|
2016-12-17 05:49:54 -05:00
|
|
|
download. This defaults to "iso".
|
2016-01-25 04:01:37 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_target_path` (string) - The path where the iso should be saved after
|
2015-08-20 07:37:24 -04:00
|
|
|
download. By default will go in the packer cache, with a hash of the
|
|
|
|
original filename as its name.
|
2016-01-25 04:01:37 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `iso_urls` (array of strings) - Multiple URLs for the ISO to download.
|
2015-07-22 23:25:58 -04:00
|
|
|
Packer will try these in order. If anything goes wrong attempting to
|
|
|
|
download or while downloading a single URL, it will move on to the next. All
|
|
|
|
URLs must point to the same file (same checksum). By default this is empty
|
|
|
|
and `iso_url` is used. Only one of `iso_url` or `iso_urls` can be specified.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `machine_type` (string) - The type of machine emulation to use. Run your
|
2015-07-22 23:25:58 -04:00
|
|
|
qemu binary with the flags `-machine help` to list available types for
|
|
|
|
your system. This defaults to "pc".
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `net_device` (string) - The driver to use for the network interface. Allowed
|
2016-02-03 11:16:40 -05:00
|
|
|
values "ne2k\_pci", "i82551", "i82557b", "i82559er", "rtl8139", "e1000",
|
|
|
|
"pcnet", "virtio", "virtio-net", "virtio-net-pci", "usb-net", "i82559a",
|
|
|
|
"i82559b", "i82559c", "i82550", "i82562", "i82557a", "i82557c", "i82801",
|
|
|
|
"vmxnet3", "i82558a" or "i82558b". The Qemu builder uses "virtio-net" by
|
|
|
|
default.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `output_directory` (string) - This is the path to the directory where the
|
2015-07-22 23:25:58 -04:00
|
|
|
resulting virtual machine will be created. This may be relative or absolute.
|
|
|
|
If relative, the path is relative to the working directory when `packer`
|
|
|
|
is executed. This directory must not exist or be empty prior to running
|
|
|
|
the builder. By default this is "output-BUILDNAME" where "BUILDNAME" is the
|
|
|
|
name of the build.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `qemu_binary` (string) - The name of the Qemu binary to look for. This
|
2015-07-22 23:25:58 -04:00
|
|
|
defaults to "qemu-system-x86\_64", but may need to be changed for
|
|
|
|
some platforms. For example "qemu-kvm", or "qemu-system-i386" may be a
|
|
|
|
better choice for some systems.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `qemuargs` (array of array of strings) - Allows complete control over the
|
2015-07-22 23:25:58 -04:00
|
|
|
qemu command line (though not, at this time, qemu-img). Each array of
|
|
|
|
strings makes up a command line switch that overrides matching default
|
|
|
|
switch/value pairs. Any value specified as an empty string is ignored. All
|
|
|
|
values after the switch are concatenated with no separator.
|
2013-10-09 08:11:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `use_default_display` (boolean) - If true, do not pass a `-display` option
|
2016-12-16 20:33:33 -05:00
|
|
|
to qemu, allowing it to choose the default. This may be needed when running
|
|
|
|
under OS X.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
~> **Warning:** The qemu command line allows extreme flexibility, so beware
|
2015-07-22 22:31:00 -04:00
|
|
|
of conflicting arguments causing failures of your run. For instance, using
|
2014-10-20 13:55:16 -04:00
|
|
|
--no-acpi could break the ability to send power signal type commands (e.g.,
|
2015-07-22 22:31:00 -04:00
|
|
|
shutdown -P now) to the virtual machine, thus preventing proper shutdown. To see
|
|
|
|
the defaults, look in the packer.log file and search for the qemu-system-x86
|
|
|
|
command. The arguments are all printed for review.
|
2013-10-09 08:11:10 -04:00
|
|
|
|
2015-07-22 23:25:58 -04:00
|
|
|
The following shows a sample usage:
|
2013-10-07 21:58:08 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
```json
|
|
|
|
{
|
2013-10-07 21:58:08 -04:00
|
|
|
"qemuargs": [
|
Fix the value for the QEMU size parameter in the documentation
Instead of 1024m it shoud be 1024M. Using 1024m as value does not work:
---snip---
2014/10/27 10:21:41 packer-builder-qemu: 2014/10/27 10:21:41 Executing
/usr/bin/qemu-system-x86_64: []string{"-m", "1024m", "-redir",
"tcp:3213::22", "-device", "virtio-net,netdev=user.0", "-cdrom",
"/home/berendt/B1-Systems/openstack-appliance/packer_cache/436c246ce08d768bbacce00e39c11ecd09071565542788d08b3120de0228c9eb.iso",
"-machine", "type=pc-1.0,accel=kvm", "-vnc", "0.0.0.0:47", "-netdev",
"user,id=user.0", "-name", "openstack", "-drive",
"file=openstack/openstack.qcow2,if=virtio", "-boot", "once=d"}
2014/10/27 10:21:41 packer-builder-qemu: 2014/10/27 10:21:41 Started
Qemu. Pid: 2618
2014/10/27 10:21:41 packer-builder-qemu: 2014/10/27 10:21:41 Qemu
stderr: qemu-system-x86_64: -m 1024m: Parameter 'size' expects a size
==> qemu: Error launching VM: Qemu failed to start. Please run with logs
to get more info.
---snap---
2014-10-27 05:34:41 -04:00
|
|
|
[ "-m", "1024M" ],
|
2013-10-07 21:58:08 -04:00
|
|
|
[ "--no-acpi", "" ],
|
|
|
|
[
|
|
|
|
"-netdev",
|
|
|
|
"user,id=mynet0,",
|
|
|
|
"hostfwd=hostip:hostport-guestip:guestport",
|
|
|
|
""
|
|
|
|
],
|
|
|
|
[ "-device", "virtio-net,netdev=mynet0" ]
|
|
|
|
]
|
2017-03-25 18:13:52 -04:00
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2013-10-07 21:58:08 -04:00
|
|
|
|
2015-07-22 23:25:58 -04:00
|
|
|
would produce the following (not including other defaults supplied by the
|
|
|
|
builder and not otherwise conflicting with the qemuargs):
|
2013-10-07 21:58:08 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
```text
|
|
|
|
qemu-system-x86 -m 1024m --no-acpi -netdev user,id=mynet0,hostfwd=hostip:hostport-guestip:guestport -device virtio-net,netdev=mynet0"
|
|
|
|
```
|
2016-02-07 21:55:35 -05:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
~> **Windows Users:** [QEMU for Windows](https://qemu.weilnetz.de/) builds are available though an environmental variable does need
|
2016-08-23 17:53:56 -04:00
|
|
|
to be set for QEMU for Windows to redirect stdout to the console instead of stdout.txt.
|
|
|
|
|
|
|
|
The following shows the environment variable that needs to be set for Windows QEMU support:
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
```text
|
|
|
|
setx SDL_STDIO_REDIRECT=0
|
2016-08-23 17:53:56 -04:00
|
|
|
```
|
|
|
|
|
2016-02-07 21:55:35 -05:00
|
|
|
You can also use the `SSHHostPort` template variable to produce a packer
|
|
|
|
template that can be invoked by `make` in parallel:
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
```json
|
|
|
|
{
|
2016-02-07 21:55:35 -05:00
|
|
|
"qemuargs": [
|
2017-03-25 18:13:52 -04:00
|
|
|
[ "-netdev", "user,hostfwd=tcp::{{ .SSHHostPort }}-:22,id=forward"],
|
|
|
|
[ "-device", "virtio-net,netdev=forward,id=net0"]
|
|
|
|
]
|
|
|
|
}
|
2016-02-07 21:55:35 -05:00
|
|
|
```
|
|
|
|
`make -j 3 my-awesome-packer-templates` spawns 3 packer processes, each of which
|
|
|
|
will bind to their own SSH port as determined by each process. This will also
|
|
|
|
work with WinRM, just change the port forward in `qemuargs` to map to WinRM's
|
|
|
|
default port of `5985` or whatever value you have the service set to listen on.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `shutdown_command` (string) - The command to use to gracefully shut down the
|
2015-07-22 23:25:58 -04:00
|
|
|
machine once all the provisioning is done. By default this is an empty
|
2016-02-16 17:10:02 -05:00
|
|
|
string, which tells Packer to just forcefully shut down the machine unless a
|
|
|
|
shutdown command takes place inside script so this may safely be omitted. If
|
|
|
|
one or more scripts require a reboot it is suggested to leave this blank
|
|
|
|
since reboots may fail and specify the final shutdown command in your
|
|
|
|
last script.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `shutdown_timeout` (string) - The amount of time to wait after executing the
|
2015-07-22 23:25:58 -04:00
|
|
|
`shutdown_command` for the virtual machine to actually shut down. If it
|
|
|
|
doesn't shut down in this time, it is an error. By default, the timeout is
|
2016-02-16 17:10:02 -05:00
|
|
|
`5m`, or five minutes.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `skip_compaction` (boolean) - Packer compacts the QCOW2 image using `qemu-img convert`.
|
2016-02-03 11:16:40 -05:00
|
|
|
Set this option to `true` to disable compacting. Defaults to `false`.
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `ssh_host_port_min` and `ssh_host_port_max` (integer) - The minimum and
|
2015-07-22 23:25:58 -04:00
|
|
|
maximum port to use for the SSH port on the host machine which is forwarded
|
|
|
|
to the SSH port on the guest machine. Because Packer often runs in parallel,
|
|
|
|
Packer will choose a randomly available port in this range to use as the
|
2016-02-16 17:10:02 -05:00
|
|
|
host port. By default this is 2222 to 4444.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `vm_name` (string) - This is the name of the image (QCOW2 or IMG) file for
|
2015-08-21 20:10:56 -04:00
|
|
|
the new virtual machine. By default this is "packer-BUILDNAME", where
|
|
|
|
`BUILDNAME` is the name of the build. Currently, no file extension will be
|
|
|
|
used unless it is specified in this option.
|
2015-07-22 23:25:58 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `vnc_bind_address` (string / IP address) - The IP address that should be binded
|
2016-05-25 05:10:12 -04:00
|
|
|
to for VNC. By default packer will use 127.0.0.1 for this. If you wish to bind
|
|
|
|
to all interfaces use 0.0.0.0
|
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `vnc_port_min` and `vnc_port_max` (integer) - The minimum and maximum port
|
2016-02-16 16:02:33 -05:00
|
|
|
to use for VNC access to the virtual machine. The builder uses VNC to type
|
|
|
|
the initial `boot_command`. Because Packer generally runs in parallel,
|
|
|
|
Packer uses a randomly chosen port in this range that appears available. By
|
|
|
|
default this is 5900 to 6000. The minimum and maximum ports are inclusive.
|
2014-05-04 13:47:40 -04:00
|
|
|
|
2013-09-02 23:23:52 -04:00
|
|
|
## Boot Command
|
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The `boot_command` configuration is very important: it specifies the keys to
|
|
|
|
type when the virtual machine is first booted in order to start the OS
|
|
|
|
installer. This command is typed after `boot_wait`, which gives the virtual
|
|
|
|
machine some time to actually load the ISO.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
As documented above, the `boot_command` is an array of strings. The strings are
|
|
|
|
all typed in sequence. It is an array only to improve readability within the
|
|
|
|
template.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
The boot command is "typed" character for character over a VNC connection to the
|
2017-01-14 20:56:04 -05:00
|
|
|
machine, simulating a human actually typing the keyboard.
|
|
|
|
|
|
|
|
-> Keystrokes are typed as separate key up/down events over VNC with a
|
|
|
|
default 100ms delay. The delay alleviates issues with latency and CPU
|
|
|
|
contention. For local builds you can tune this delay by specifying
|
2017-01-14 23:14:41 -05:00
|
|
|
e.g. `PACKER_KEY_INTERVAL=10ms` to speed through the boot command.
|
2017-01-14 20:56:04 -05:00
|
|
|
|
|
|
|
There are a set of special keys available. If these are in your boot
|
|
|
|
command, they will be replaced by the proper key:
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<bs>` - Backspace
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<del>` - Delete
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<enter>` and `<return>` - Simulates an actual "enter" or "return" keypress.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<esc>` - Simulates pressing the escape key.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<tab>` - Simulates pressing the tab key.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<f1>` - `<f12>` - Simulates pressing a function key.
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<up>` `<down>` `<left>` `<right>` - Simulates pressing an arrow key.
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<spacebar>` - Simulates pressing the spacebar.
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<insert>` - Simulates pressing the insert key.
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<home>` `<end>` - Simulates pressing the home and end keys.
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<pageUp>` `<pageDown>` - Simulates pressing the page up and page down keys.
|
2014-10-14 18:45:34 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftAlt>` `<rightAlt>` - Simulates pressing the alt key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftCtrl>` `<rightCtrl>` - Simulates pressing the ctrl key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftShift>` `<rightShift>` - Simulates pressing the shift key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftAltOn>` `<rightAltOn>` - Simulates pressing and holding the alt key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftCtrlOn>` `<rightCtrlOn>` - Simulates pressing and holding the ctrl key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftShiftOn>` `<rightShiftOn>` - Simulates pressing and holding the shift key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftAltOff>` `<rightAltOff>` - Simulates releasing a held alt key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftCtrlOff>` `<rightCtrlOff>` - Simulates releasing a held ctrl key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<leftShiftOff>` `<rightShiftOff>` - Simulates releasing a held shift key.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<wait>` `<wait5>` `<wait10>` - Adds a 1, 5 or 10 second pause before
|
2015-07-22 23:25:58 -04:00
|
|
|
sending any additional keys. This is useful if you have to generally wait
|
|
|
|
for the UI to update before typing more.
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `<waitXX> ` - Add user defined time.Duration pause before sending any
|
2016-01-29 16:47:36 -05:00
|
|
|
additional keys. For example `<wait10m>` or `<wait1m20s>`
|
|
|
|
|
2017-03-06 13:25:32 -05:00
|
|
|
When using modifier keys `ctrl`, `alt`, `shift` ensure that you release them,
|
|
|
|
otherwise they will be held down until the machine reboots. Use lowercase
|
|
|
|
characters as well inside modifiers. For example: to simulate ctrl+c use
|
|
|
|
`<leftCtrlOn>c<leftCtrlOff>`.
|
2016-07-31 14:05:10 -04:00
|
|
|
|
2013-09-02 23:23:52 -04:00
|
|
|
In addition to the special keys, each command to type is treated as a
|
2017-03-28 18:28:34 -04:00
|
|
|
[template engine](/docs/templates/engine.html). The
|
2015-07-22 22:31:00 -04:00
|
|
|
available variables are:
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
- `HTTPIP` and `HTTPPort` - The IP and port, respectively of an HTTP server
|
2015-07-22 23:25:58 -04:00
|
|
|
that is started serving the directory specified by the `http_directory`
|
|
|
|
configuration parameter. If `http_directory` isn't specified, these will be
|
|
|
|
blank!
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2015-07-22 22:31:00 -04:00
|
|
|
Example boot command. This is actually a working boot command used to start an
|
|
|
|
CentOS 6.4 installer:
|
2013-09-02 23:23:52 -04:00
|
|
|
|
2017-03-25 18:13:52 -04:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"boot_command": [
|
|
|
|
"<tab><wait>",
|
|
|
|
" ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/centos6-ks.cfg<enter>"
|
|
|
|
]
|
|
|
|
}
|
2014-10-20 13:55:16 -04:00
|
|
|
```
|
2016-12-20 20:22:47 -05:00
|
|
|
|
|
|
|
### Troubleshooting
|
|
|
|
|
|
|
|
Some users have experienced errors complaining about invalid keymaps. This
|
|
|
|
seems to be related to having a `common` directory or file in the directory
|
|
|
|
they've run Packer in, like the packer source directory. This appears to be an
|
|
|
|
upstream bug with qemu, and the best solution for now is to remove the
|
|
|
|
file/directory or run in another directory.
|