github.com/kikitux/packer@v0.10.1-0.20160322154024-6237df566f9f/website/source/docs/builders/qemu.html.md (about) 1 --- 2 description: | 3 The Qemu Packer builder is able to create KVM and Xen virtual machine images. 4 Support for Xen is experimental at this time. 5 layout: docs 6 page_title: QEMU Builder 7 ... 8 9 # QEMU Builder 10 11 Type: `qemu` 12 13 The Qemu Packer builder is able to create [KVM](http://www.linux-kvm.org) and 14 [Xen](http://www.xenproject.org) virtual machine images. Support for Xen is 15 experimental at this time. 16 17 The builder builds a virtual machine by creating a new virtual machine from 18 scratch, booting it, installing an OS, rebooting the machine with the boot media 19 as the virtual hard drive, provisioning software within the OS, then shutting it 20 down. The result of the Qemu builder is a directory containing the image file 21 necessary to run the virtual machine on KVM or Xen. 22 23 ## Basic Example 24 25 Here is a basic example. This example is functional so long as you fixup paths 26 to files, URLS for ISOs and checksums. 27 28 ``` {.javascript} 29 { 30 "builders": 31 [ 32 { 33 "type": "qemu", 34 "iso_url": "http://mirror.raystedman.net/centos/6/isos/x86_64/CentOS-6.5-x86_64-minimal.iso", 35 "iso_checksum": "0d9dc37b5dd4befa1c440d2174e88a87", 36 "iso_checksum_type": "md5", 37 "output_directory": "output_centos_tdhtest", 38 "shutdown_command": "shutdown -P now", 39 "disk_size": 5000, 40 "format": "qcow2", 41 "headless": false, 42 "accelerator": "kvm", 43 "http_directory": "httpdir", 44 "http_port_min": 10082, 45 "http_port_max": 10089, 46 "ssh_host_port_min": 2222, 47 "ssh_host_port_max": 2229, 48 "ssh_username": "root", 49 "ssh_password": "s0m3password", 50 "ssh_port": 22, 51 "ssh_wait_timeout": "30s", 52 "vm_name": "tdhtest", 53 "net_device": "virtio-net", 54 "disk_interface": "virtio", 55 "boot_wait": "5s", 56 "boot_command": 57 [ 58 "<tab> text ks=http://{{ .HTTPIP }}:{{ .HTTPPort }}/centos6-ks.cfg<enter><wait>" 59 ] 60 } 61 ] 62 } 63 ``` 64 65 A working CentOS 6.x kickstart file can be found [at this 66 URL](https://gist.github.com/mitchellh/7328271/#file-centos6-ks-cfg), adapted 67 from an unknown source. Place this file in the http directory with the proper 68 name. For the example above, it should go into "httpdir" with a name of 69 "centos6-ks.cfg". 70 71 ## Configuration Reference 72 73 There are many configuration options available for the Qemu builder. They are 74 organized below into two categories: required and optional. Within each 75 category, the available options are alphabetized and described. 76 77 In addition to the options listed here, a 78 [communicator](/docs/templates/communicator.html) can be configured for this 79 builder. 80 81 ### Required: 82 83 - `iso_checksum` (string) - The checksum for the OS ISO file. Because ISO 84 files are so large, this is required and Packer will verify it prior to 85 booting a virtual machine with the ISO attached. The type of the checksum is 86 specified with `iso_checksum_type`, documented below. At least one of 87 `iso_checksum` and `iso_checksum_url` must be defined. This has precedence 88 over `iso_checksum_url` type. 89 90 - `iso_checksum_type` (string) - The type of the checksum specified in 91 `iso_checksum`. Valid values are "none", "md5", "sha1", "sha256", or 92 "sha512" currently. While "none" will skip checksumming, this is not 93 recommended since ISO files are generally large and corruption does happen 94 from time to time. 95 96 - `iso_checksum_url` (string) - A URL to a GNU or BSD style checksum file 97 containing a checksum for the OS ISO file. At least one of `iso_checksum` 98 and `iso_checksum_url` must be defined. This will be ignored if 99 `iso_checksum` is non empty. 100 101 - `iso_url` (string) - A URL to the ISO containing the installation image. 102 This URL can be either an HTTP URL or a file URL (or path to a file). If 103 this is an HTTP URL, Packer will download it and cache it between runs. 104 105 - `ssh_username` (string) - The username to use to SSH into the machine once 106 the OS is installed. 107 108 ### Optional: 109 110 - `accelerator` (string) - The accelerator type to use when running the VM. 111 This may have a value of either "none", "kvm", "tcg", or "xen" and you must 112 have that support in on the machine on which you run the builder. By default 113 "kvm" is used. 114 115 - `boot_command` (array of strings) - This is an array of commands to type 116 when the virtual machine is first booted. The goal of these commands should 117 be to type just enough to initialize the operating system installer. Special 118 keys can be typed as well, and are covered in the section below on the 119 boot command. If this is not specified, it is assumed the installer will 120 start itself. 121 122 - `boot_wait` (string) - The time to wait after booting the initial virtual 123 machine before typing the `boot_command`. The value of this should be 124 a duration. Examples are "5s" and "1m30s" which will cause Packer to wait 125 five seconds and one minute 30 seconds, respectively. If this isn't 126 specified, the default is 10 seconds. 127 128 - `disk_cache` (string) - The cache mode to use for disk. Allowed values 129 include any of "writethrough", "writeback", "none", "unsafe" 130 or "directsync". By default, this is set to "writeback". 131 132 - `disk_compression` (boolean) - Apply compression to the QCOW2 disk file 133 using `qemu-img convert`. Defaults to `false`. 134 135 - `disk_discard` (string) - The discard mode to use for disk. Allowed values 136 include any of "unmap" or "ignore". By default, this is set to "ignore". 137 138 - `disk_image` (boolean) - Packer defaults to building from an ISO file, this 139 parameter controls whether the ISO URL supplied is actually a bootable 140 QEMU image. When this value is set to true, the machine will clone the 141 source, resize it according to `disk_size` and boot the image. 142 143 - `disk_interface` (string) - The interface to use for the disk. Allowed 144 values include any of "ide", "scsi", "virtio" or "virtio-scsi". Note also 145 that any boot commands or kickstart type scripts must have proper 146 adjustments for resulting device names. The Qemu builder uses "virtio" by 147 default. 148 149 - `disk_size` (integer) - The size, in megabytes, of the hard disk to create 150 for the VM. By default, this is 40000 (about 40 GB). 151 152 - `floppy_files` (array of strings) - A list of files to place onto a floppy 153 disk that is attached when the VM is booted. This is most useful for 154 unattended Windows installs, which look for an `Autounattend.xml` file on 155 removable media. By default, no floppy will be attached. All files listed in 156 this setting get placed into the root directory of the floppy and the floppy 157 is attached as the first floppy device. Currently, no support exists for 158 creating sub-directories on the floppy. Wildcard characters (\*, ?, 159 and \[\]) are allowed. Directory names are also allowed, which will add all 160 the files found in the directory to the floppy. 161 162 - `format` (string) - Either "qcow2" or "raw", this specifies the output 163 format of the virtual machine image. This defaults to `qcow2`. 164 165 - `headless` (boolean) - Packer defaults to building QEMU virtual machines by 166 launching a GUI that shows the console of the machine being built. When this 167 value is set to true, the machine will start without a console. 168 169 - `http_directory` (string) - Path to a directory to serve using an 170 HTTP server. The files in this directory will be available over HTTP that 171 will be requestable from the virtual machine. This is useful for hosting 172 kickstart files and so on. By default this is "", which means no HTTP server 173 will be started. The address and port of the HTTP server will be available 174 as variables in `boot_command`. This is covered in more detail below. 175 176 - `http_port_min` and `http_port_max` (integer) - These are the minimum and 177 maximum port to use for the HTTP server started to serve the 178 `http_directory`. Because Packer often runs in parallel, Packer will choose 179 a randomly available port in this range to run the HTTP server. If you want 180 to force the HTTP server to be on one port, make this minimum and maximum 181 port the same. By default the values are 8000 and 9000, respectively. 182 183 - `iso_skip_cache` (boolean) - Use iso from provided url. Qemu must support 184 curl block device. This defaults to `false`. 185 186 - `iso_target_path` (string) - The path where the iso should be saved after 187 download. By default will go in the packer cache, with a hash of the 188 original filename as its name. 189 190 - `iso_urls` (array of strings) - Multiple URLs for the ISO to download. 191 Packer will try these in order. If anything goes wrong attempting to 192 download or while downloading a single URL, it will move on to the next. All 193 URLs must point to the same file (same checksum). By default this is empty 194 and `iso_url` is used. Only one of `iso_url` or `iso_urls` can be specified. 195 196 - `machine_type` (string) - The type of machine emulation to use. Run your 197 qemu binary with the flags `-machine help` to list available types for 198 your system. This defaults to "pc". 199 200 - `net_device` (string) - The driver to use for the network interface. Allowed 201 values "ne2k\_pci", "i82551", "i82557b", "i82559er", "rtl8139", "e1000", 202 "pcnet", "virtio", "virtio-net", "virtio-net-pci", "usb-net", "i82559a", 203 "i82559b", "i82559c", "i82550", "i82562", "i82557a", "i82557c", "i82801", 204 "vmxnet3", "i82558a" or "i82558b". The Qemu builder uses "virtio-net" by 205 default. 206 207 - `output_directory` (string) - This is the path to the directory where the 208 resulting virtual machine will be created. This may be relative or absolute. 209 If relative, the path is relative to the working directory when `packer` 210 is executed. This directory must not exist or be empty prior to running 211 the builder. By default this is "output-BUILDNAME" where "BUILDNAME" is the 212 name of the build. 213 214 - `qemu_binary` (string) - The name of the Qemu binary to look for. This 215 defaults to "qemu-system-x86\_64", but may need to be changed for 216 some platforms. For example "qemu-kvm", or "qemu-system-i386" may be a 217 better choice for some systems. 218 219 - `qemuargs` (array of array of strings) - Allows complete control over the 220 qemu command line (though not, at this time, qemu-img). Each array of 221 strings makes up a command line switch that overrides matching default 222 switch/value pairs. Any value specified as an empty string is ignored. All 223 values after the switch are concatenated with no separator. 224 225 \~> **Warning:** The qemu command line allows extreme flexibility, so beware 226 of conflicting arguments causing failures of your run. For instance, using 227 --no-acpi could break the ability to send power signal type commands (e.g., 228 shutdown -P now) to the virtual machine, thus preventing proper shutdown. To see 229 the defaults, look in the packer.log file and search for the qemu-system-x86 230 command. The arguments are all printed for review. 231 232 The following shows a sample usage: 233 234 ``` {.javascript} 235 // ... 236 "qemuargs": [ 237 [ "-m", "1024M" ], 238 [ "--no-acpi", "" ], 239 [ 240 "-netdev", 241 "user,id=mynet0,", 242 "hostfwd=hostip:hostport-guestip:guestport", 243 "" 244 ], 245 [ "-device", "virtio-net,netdev=mynet0" ] 246 ] 247 // ... 248 ``` 249 250 would produce the following (not including other defaults supplied by the 251 builder and not otherwise conflicting with the qemuargs): 252 253 <pre class="prettyprint"> 254 qemu-system-x86 -m 1024m --no-acpi -netdev user,id=mynet0,hostfwd=hostip:hostport-guestip:guestport -device virtio-net,netdev=mynet0" 255 </pre> 256 257 You can also use the `SSHHostPort` template variable to produce a packer 258 template that can be invoked by `make` in parallel: 259 260 ``` {.javascript} 261 // ... 262 "qemuargs": [ 263 [ "-netdev", "user,hostfwd=tcp::{{ .SSHHostPort }}-:22,id=forward"], 264 [ "-device", "virtio-net,netdev=forward,id=net0"], 265 ... 266 ] 267 // ... 268 ``` 269 `make -j 3 my-awesome-packer-templates` spawns 3 packer processes, each of which 270 will bind to their own SSH port as determined by each process. This will also 271 work with WinRM, just change the port forward in `qemuargs` to map to WinRM's 272 default port of `5985` or whatever value you have the service set to listen on. 273 274 - `shutdown_command` (string) - The command to use to gracefully shut down the 275 machine once all the provisioning is done. By default this is an empty 276 string, which tells Packer to just forcefully shut down the machine unless a 277 shutdown command takes place inside script so this may safely be omitted. If 278 one or more scripts require a reboot it is suggested to leave this blank 279 since reboots may fail and specify the final shutdown command in your 280 last script. 281 282 - `shutdown_timeout` (string) - The amount of time to wait after executing the 283 `shutdown_command` for the virtual machine to actually shut down. If it 284 doesn't shut down in this time, it is an error. By default, the timeout is 285 `5m`, or five minutes. 286 287 - `skip_compaction` (boolean) - Packer compacts the QCOW2 image using `qemu-img convert`. 288 Set this option to `true` to disable compacting. Defaults to `false`. 289 290 - `ssh_host_port_min` and `ssh_host_port_max` (integer) - The minimum and 291 maximum port to use for the SSH port on the host machine which is forwarded 292 to the SSH port on the guest machine. Because Packer often runs in parallel, 293 Packer will choose a randomly available port in this range to use as the 294 host port. By default this is 2222 to 4444. 295 296 - `vm_name` (string) - This is the name of the image (QCOW2 or IMG) file for 297 the new virtual machine. By default this is "packer-BUILDNAME", where 298 `BUILDNAME` is the name of the build. Currently, no file extension will be 299 used unless it is specified in this option. 300 301 - `vnc_port_min` and `vnc_port_max` (integer) - The minimum and maximum port 302 to use for VNC access to the virtual machine. The builder uses VNC to type 303 the initial `boot_command`. Because Packer generally runs in parallel, 304 Packer uses a randomly chosen port in this range that appears available. By 305 default this is 5900 to 6000. The minimum and maximum ports are inclusive. 306 307 ## Boot Command 308 309 The `boot_command` configuration is very important: it specifies the keys to 310 type when the virtual machine is first booted in order to start the OS 311 installer. This command is typed after `boot_wait`, which gives the virtual 312 machine some time to actually load the ISO. 313 314 As documented above, the `boot_command` is an array of strings. The strings are 315 all typed in sequence. It is an array only to improve readability within the 316 template. 317 318 The boot command is "typed" character for character over a VNC connection to the 319 machine, simulating a human actually typing the keyboard. There are a set of 320 special keys available. If these are in your boot command, they will be replaced 321 by the proper key: 322 323 - `<bs>` - Backspace 324 325 - `<del>` - Delete 326 327 - `<enter>` and `<return>` - Simulates an actual "enter" or "return" keypress. 328 329 - `<esc>` - Simulates pressing the escape key. 330 331 - `<tab>` - Simulates pressing the tab key. 332 333 - `<f1>` - `<f12>` - Simulates pressing a function key. 334 335 - `<up>` `<down>` `<left>` `<right>` - Simulates pressing an arrow key. 336 337 - `<spacebar>` - Simulates pressing the spacebar. 338 339 - `<insert>` - Simulates pressing the insert key. 340 341 - `<home>` `<end>` - Simulates pressing the home and end keys. 342 343 - `<pageUp>` `<pageDown>` - Simulates pressing the page up and page down keys. 344 345 - `<wait>` `<wait5>` `<wait10>` - Adds a 1, 5 or 10 second pause before 346 sending any additional keys. This is useful if you have to generally wait 347 for the UI to update before typing more. 348 349 - `<waitXX> ` - Add user defined time.Duration pause before sending any 350 additional keys. For example `<wait10m>` or `<wait1m20s>` 351 352 In addition to the special keys, each command to type is treated as a 353 [configuration template](/docs/templates/configuration-templates.html). The 354 available variables are: 355 356 - `HTTPIP` and `HTTPPort` - The IP and port, respectively of an HTTP server 357 that is started serving the directory specified by the `http_directory` 358 configuration parameter. If `http_directory` isn't specified, these will be 359 blank! 360 361 Example boot command. This is actually a working boot command used to start an 362 CentOS 6.4 installer: 363 364 ``` {.javascript} 365 "boot_command": 366 [ 367 "<tab><wait>", 368 " ks=http://10.0.2.2:{{ .HTTPPort }}/centos6-ks.cfg<enter>" 369 ] 370 ```