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