February 2017
Intermediate to advanced
440 pages
8h 45m
English
We want to access and use an Ubuntu Xenial system (16.04 LTS) as quickly as possible.
To do that, Vagrant uses a file named Vagrantfile to describe the Vagrant infrastructure. This file is in fact pure Ruby that Vagrant reads to manage your environment. Everything related to Vagrant is done inside a block such as the following:
Vagrant.configure("2") do |config|
# all your Vagrant configuration here
endTo step through this recipe, you will need the following:
$ mkdir vagrant_ubuntu_xenial_1 && cd $_
Read now
Unlock full access