Templates to create Vagrant boxes for Debian 8.6 (amd64).
- Packer v0.8.6+
- Vagrant v1.7.3+
- VirtualBox
- Version 4.3.28+ for Windows
- Version 4.3.28+ for Mac OS X (You may want to stay with 4.3.28 which allows HAXM to work in parallel.)
- VMware Workstation v11.1.0+ / VMware Fusion v8.0+
- ESXi (vSphere Hypervisor) v5.5+
- VirtualBox Guest Additions or open-vm-tools
- curl
- sshd
- sudo
- rsync
vagrant
user and its insecure public key
From the terminal, invoke the following command for VirtualBox provider:
packer build -only=virtualbox-iso debian-8.6-amd64-minimal.json
or:
packer build -only=vmware-iso debian-8.6-amd64-minimal.json
for VMware provider.
You will find a vagrant box file named Debian-8-amd64-minimal-v8.6.0-virtualbox.box
or Debian-8-amd64-minimal-v8.6.0-vmware.box
in the same directory after the command has succeeded.
Then you can add the box named Debian-8-amd64-minimal-v8.6.0-virtualbox
to your box list
by the following command:
vagrant box add Debian-8-amd64-minimal-v8.6.0-virtualbox.box --name Debian-8-amd64-minimal-v8.6.0-virtualbox
In order to build a VM image on ESXi, you need to provide the following environment variables:
REMOTE_HOST
- ESXi host name or IP addressREMOTE_USERNAME
- ESXi login user nameREMOTE_PASSWORD
- ESXi login passwordREMOTE_DATASTORE
- ESXi datastore name where a VM image will be created
You also have to enable SSH and VNC on ESXi host.
The following command will build a VM image on your ESXi (Created VM will be unregistered from your Inventory):
packer build -only=esxi-iso debian-8.6-amd64-minimal.json
debian-8.6-amd64-minimal.json
- Debian 8.6 minimal installationdebian-8.6-amd64-ansible.json
- Debian 8.6 with Ansible + Testinfra.debian-8.6-amd64-docker.json
- Debian 8.6 with Docker + Docker Compose.debian-8.6-amd64-xfce.json
- Debian 8.6 with Xfce + xrdp.debian-8.6-amd64-xorg.json
- Debian 8.6 with X.org, SLiM, suckless tools, ARandR, and xrdp.
Optional var files are provided to instruct to use alternative installer CD images, i.e.,
vars-debian-8.6-amd64-full.json
instructs to use debian-8.6.0-amd64-CD-1.iso
while
vars-debian-8.6-amd64-netinst.json
does debian-8.6.0-amd64-netinst.iso
respectively.
Without using these var files, debian-8.6.0-amd64-*.json
templates use mini.iso
.
Depending on situation you can specify either of var files on the command line:
packer build -var-file=vars-debian-8.6-amd64-full.json debian-8.6-amd64-minimal.json
The following parameters can be set at build time by supplying -var
or -var-file
command line options to packer
:
vm_name
- VM name. This also affects box file name and output directory name.mem_size
- RAM size of the created VM. Default value is512
which means 512MB.disk_size
- Disk size of the created VM. Default value is51200
which means 50GB.root_password
- Password forroot
user. Default value isvagrant
.vagrant_username
- User name used for run time. Vagrant box is set for this user. Default value isvagrant
.vagrant_password
- Password forvagrant_username
. Default value isvagrant
.
Copyright © 2016 Upper Stream Software.