github.com/daniellockard/packer@v0.7.6-0.20141210173435-5a9390934716/website/source/docs/builders/parallels-iso.html.markdown (about) 1 --- 2 layout: "docs" 3 page_title: "Parallels Builder (from an ISO)" 4 description: |- 5 The Parallels Packer builder is able to create Parallels Desktop for Mac virtual machines and export them in the PVM format, starting from an ISO image. 6 --- 7 8 # Parallels Builder (from an ISO) 9 10 Type: `parallels-iso` 11 12 The Parallels Packer builder is able to create 13 [Parallels Desktop for Mac](http://www.parallels.com/products/desktop/) virtual 14 machines and export them in the PVM format, starting from an 15 ISO image. 16 17 The builder builds a virtual machine by creating a new virtual machine 18 from scratch, booting it, installing an OS, provisioning software within 19 the OS, then shutting it down. The result of the Parallels builder is a directory 20 containing all the files necessary to run the virtual machine portably. 21 22 ## Basic Example 23 24 Here is a basic example. This example is not functional. It will start the 25 OS installer but then fail because we don't provide the preseed file for 26 Ubuntu to self-install. Still, the example serves to show the basic configuration: 27 28 ```javascript 29 { 30 "type": "parallels-iso", 31 "guest_os_type": "ubuntu", 32 "iso_url": "http://releases.ubuntu.com/12.04/ubuntu-12.04.3-server-amd64.iso", 33 "iso_checksum": "2cbe868812a871242cdcdd8f2fd6feb9", 34 "iso_checksum_type": "md5", 35 "parallels_tools_flavor": "lin" 36 "ssh_username": "packer", 37 "ssh_password": "packer", 38 "ssh_wait_timeout": "30s", 39 "shutdown_command": "echo 'packer' | sudo -S shutdown -P now" 40 } 41 ``` 42 43 It is important to add a `shutdown_command`. By default Packer halts the 44 virtual machine and the file system may not be sync'd. Thus, changes made in a 45 provisioner might not be saved. 46 47 ## Configuration Reference 48 49 There are many configuration options available for the Parallels builder. 50 They are organized below into two categories: required and optional. Within 51 each category, the available options are alphabetized and described. 52 53 ### Required: 54 55 * `iso_checksum` (string) - The checksum for the OS ISO file. Because ISO 56 files are so large, this is required and Packer will verify it prior 57 to booting a virtual machine with the ISO attached. The type of the 58 checksum is specified with `iso_checksum_type`, documented below. 59 60 * `iso_checksum_type` (string) - The type of the checksum specified in 61 `iso_checksum`. Valid values are "none", "md5", "sha1", "sha256", or 62 "sha512" currently. While "none" will skip checksumming, this is not 63 recommended since ISO files are generally large and corruption does happen 64 from time to time. 65 66 * `iso_url` (string) - A URL to the ISO containing the installation image. 67 This URL can be either an HTTP URL or a file URL (or path to a file). 68 If this is an HTTP URL, Packer will download it and cache it between 69 runs. 70 71 * `ssh_username` (string) - The username to use to SSH into the machine 72 once the OS is installed. 73 74 * `parallels_tools_flavor` (string) - The flavor of the Parallels Tools ISO to 75 install into the VM. Valid values are "win", "lin", "mac", "os2" and "other". 76 This can be ommited only if `parallels_tools_mode` is "disable". 77 78 ### Optional: 79 80 * `boot_command` (array of strings) - This is an array of commands to type 81 when the virtual machine is first booted. The goal of these commands should 82 be to type just enough to initialize the operating system installer. Special 83 keys can be typed as well, and are covered in the section below on the boot 84 command. If this is not specified, it is assumed the installer will start 85 itself. 86 87 * `boot_wait` (string) - The time to wait after booting the initial virtual 88 machine before typing the `boot_command`. The value of this should be 89 a duration. Examples are "5s" and "1m30s" which will cause Packer to wait 90 five seconds and one minute 30 seconds, respectively. If this isn't specified, 91 the default is 10 seconds. 92 93 * `disk_size` (integer) - The size, in megabytes, of the hard disk to create 94 for the VM. By default, this is 40000 (about 40 GB). 95 96 * `floppy_files` (array of strings) - A list of files to place onto a floppy 97 disk that is attached when the VM is booted. This is most useful 98 for unattended Windows installs, which look for an `Autounattend.xml` file 99 on removable media. By default, no floppy will be attached. All files 100 listed in this setting get placed into the root directory of the floppy 101 and the floppy is attached as the first floppy device. Currently, no 102 support exists for creating sub-directories on the floppy. Wildcard 103 characters (*, ?, and []) are allowed. Directory names are also allowed, 104 which will add all the files found in the directory to the floppy. 105 106 * `guest_os_type` (string) - The guest OS type being installed. By default 107 this is "other", but you can get _dramatic_ performance improvements by 108 setting this to the proper value. To view all available values for this 109 run `prlctl create x --distribution list`. Setting the correct value hints to 110 Parallels Desktop how to optimize the virtual hardware to work best with 111 that operating system. 112 113 * `hard_drive_interface` (string) - The type of controller that the 114 hard drives are attached to, defaults to "sata". Valid options are 115 "sata", "ide", and "scsi". 116 117 * `host_interfaces` (array of strings) - A list of which interfaces on the 118 host should be searched for a IP address. The first IP address found on 119 one of these will be used as `{{ .HTTPIP }}` in the `boot_command`. 120 Defaults to ["en0", "en1", "en2", "en3", "en4", "en5", "en6", "en7", "en8", 121 "en9", "ppp0", "ppp1", "ppp2"]. 122 123 * `http_directory` (string) - Path to a directory to serve using an HTTP 124 server. The files in this directory will be available over HTTP that will 125 be requestable from the virtual machine. This is useful for hosting 126 kickstart files and so on. By default this is "", which means no HTTP 127 server will be started. The address and port of the HTTP server will be 128 available as variables in `boot_command`. This is covered in more detail 129 below. 130 131 * `http_port_min` and `http_port_max` (integer) - These are the minimum and 132 maximum port to use for the HTTP server started to serve the `http_directory`. 133 Because Packer often runs in parallel, Packer will choose a randomly available 134 port in this range to run the HTTP server. If you want to force the HTTP 135 server to be on one port, make this minimum and maximum port the same. 136 By default the values are 8000 and 9000, respectively. 137 138 * `iso_urls` (array of strings) - Multiple URLs for the ISO to download. 139 Packer will try these in order. If anything goes wrong attempting to download 140 or while downloading a single URL, it will move on to the next. All URLs 141 must point to the same file (same checksum). By default this is empty 142 and `iso_url` is used. Only one of `iso_url` or `iso_urls` can be specified. 143 144 * `output_directory` (string) - This is the path to the directory where the 145 resulting virtual machine will be created. This may be relative or absolute. 146 If relative, the path is relative to the working directory when `packer` 147 is executed. This directory must not exist or be empty prior to running the builder. 148 By default this is "output-BUILDNAME" where "BUILDNAME" is the name 149 of the build. 150 151 * `parallels_tools_guest_path` (string) - The path in the VM to upload Parallels 152 Tools. This only takes effect if `parallels_tools_mode` is not "disable". 153 This is a [configuration template](/docs/templates/configuration-templates.html) 154 that has a single valid variable: `Flavor`, which will be the value of 155 `parallels_tools_flavor`. By default the upload path is set to 156 `prl-tools-{{.Flavor}}.iso`. 157 158 * `parallels_tools_mode` (string) - The method by which Parallels Tools are 159 made available to the guest for installation. Valid options are "upload", 160 "attach", or "disable". The functions of each of these should be 161 self-explanatory. The default value is "upload". 162 163 * `prlctl` (array of array of strings) - Custom `prlctl` commands to execute in 164 order to further customize the virtual machine being created. The value of 165 this is an array of commands to execute. The commands are executed in the order 166 defined in the template. For each command, the command is defined itself as an 167 array of strings, where each string represents a single argument on the 168 command-line to `prlctl` (but excluding `prlctl` itself). Each arg is treated 169 as a [configuration template](/docs/templates/configuration-templates.html), 170 where the `Name` variable is replaced with the VM name. More details on how 171 to use `prlctl` are below. 172 173 * `prlctl_version_file` (string) - The path within the virtual machine to upload 174 a file that contains the `prlctl` version that was used to create the machine. 175 This information can be useful for provisioning. By default this is 176 ".prlctl_version", which will generally upload it into the home directory. 177 178 * `shutdown_command` (string) - The command to use to gracefully shut down 179 the machine once all the provisioning is done. By default this is an empty 180 string, which tells Packer to just forcefully shut down the machine. 181 182 * `shutdown_timeout` (string) - The amount of time to wait after executing 183 the `shutdown_command` for the virtual machine to actually shut down. 184 If it doesn't shut down in this time, it is an error. By default, the timeout 185 is "5m", or five minutes. 186 187 * `ssh_key_path` (string) - Path to a private key to use for authenticating 188 with SSH. By default this is not set (key-based auth won't be used). 189 The associated public key is expected to already be configured on the 190 VM being prepared by some other process (kickstart, etc.). 191 192 * `ssh_password` (string) - The password for `ssh_username` to use to 193 authenticate with SSH. By default this is the empty string. 194 195 * `ssh_port` (integer) - The port that SSH will be listening on in the guest 196 virtual machine. By default this is 22. 197 198 * `ssh_wait_timeout` (string) - The duration to wait for SSH to become 199 available. By default this is "20m", or 20 minutes. Note that this should 200 be quite long since the timer begins as soon as the virtual machine is booted. 201 202 * `vm_name` (string) - This is the name of the PVM directory for the new 203 virtual machine, without the file extension. By default this is 204 "packer-BUILDNAME", where "BUILDNAME" is the name of the build. 205 206 ## Boot Command 207 208 The `boot_command` configuration is very important: it specifies the keys 209 to type when the virtual machine is first booted in order to start the 210 OS installer. This command is typed after `boot_wait`, which gives the 211 virtual machine some time to actually load the ISO. 212 213 As documented above, the `boot_command` is an array of strings. The 214 strings are all typed in sequence. It is an array only to improve readability 215 within the template. 216 217 The boot command is "typed" character for character (using the Parallels 218 Virtualization SDK, see [Parallels Builder](/docs/builders/parallels.html)) 219 simulating a human actually typing the keyboard. There are a set of special 220 keys available. If these are in your boot command, they will be replaced by 221 the proper key: 222 223 * `<bs>` - Backspace 224 225 * `<del>` - Delete 226 227 * `<enter>` and `<return>` - Simulates an actual "enter" or "return" keypress. 228 229 * `<esc>` - Simulates pressing the escape key. 230 231 * `<tab>` - Simulates pressing the tab key. 232 233 * `<f1>` - `<f12>` - Simulates pressing a function key. 234 235 * `<up>` `<down>` `<left>` `<right>` - Simulates pressing an arrow key. 236 237 * `<spacebar>` - Simulates pressing the spacebar. 238 239 * `<insert>` - Simulates pressing the insert key. 240 241 * `<home>` `<end>` - Simulates pressing the home and end keys. 242 243 * `<pageUp>` `<pageDown>` - Simulates pressing the page up and page down keys. 244 245 * `<wait>` `<wait5>` `<wait10>` - Adds a 1, 5 or 10 second pause before sending any additional keys. This 246 is useful if you have to generally wait for the UI to update before typing more. 247 248 In addition to the special keys, each command to type is treated as a 249 [configuration template](/docs/templates/configuration-templates.html). 250 The available variables are: 251 252 * `HTTPIP` and `HTTPPort` - The IP and port, respectively of an HTTP server 253 that is started serving the directory specified by the `http_directory` 254 configuration parameter. If `http_directory` isn't specified, these will 255 be blank! 256 257 Example boot command. This is actually a working boot command used to start 258 an Ubuntu 12.04 installer: 259 260 ```javascript 261 [ 262 "<esc><esc><enter><wait>", 263 "/install/vmlinuz noapic ", 264 "preseed/url=http://{{ .HTTPIP }}:{{ .HTTPPort }}/preseed.cfg ", 265 "debian-installer=en_US auto locale=en_US kbd-chooser/method=us ", 266 "hostname={{ .Name }} ", 267 "fb=false debconf/frontend=noninteractive ", 268 "keyboard-configuration/modelcode=SKIP keyboard-configuration/layout=USA ", 269 "keyboard-configuration/variant=USA console-setup/ask_detect=false ", 270 "initrd=/install/initrd.gz -- <enter>" 271 ] 272 ``` 273 274 ## prlctl Commands 275 In order to perform extra customization of the virtual machine, a template can 276 define extra calls to `prlctl` to perform. 277 [prlctl](http://download.parallels.com/desktop/v9/ga/docs/en_US/Parallels%20Command%20Line%20Reference%20Guide.pdf) 278 is the command-line interface to Parallels Desktop. It can be used to configure 279 the virtual machine, such as set RAM, CPUs, etc. 280 281 Extra `prlctl` commands are defined in the template in the `prlctl` section. 282 An example is shown below that sets the memory and number of CPUs within the 283 virtual machine: 284 285 ```javascript 286 { 287 "prlctl": [ 288 ["set", "{{.Name}}", "--memsize", "1024"], 289 ["set", "{{.Name}}", "--cpus", "2"] 290 ] 291 } 292 ``` 293 294 The value of `prlctl` is an array of commands to execute. These commands are 295 executed in the order defined. So in the above example, the memory will be set 296 followed by the CPUs. 297 298 Each command itself is an array of strings, where each string is an argument to 299 `prlctl`. Each argument is treated as a 300 [configuration template](/docs/templates/configuration-templates.html). The only 301 available variable is `Name` which is replaced with the unique name of the VM, 302 which is required for many `prlctl` calls.