Update the README.md file for multiple learning environments to reflect file name changes, changes in the process for using the learning environment, and changes in the supported/tested software versions. |
||
|---|---|---|
| .. | ||
| machines.yml | ||
| README.md | ||
| Vagrantfile | ||
Generic Ubuntu 14.04 VM
These files were created to allow users to use Vagrant (http://www.vagrantup.com) to quickly and easily spin up a generic Ubuntu 14.04 64-bit VM. The configuration was tested using Vagrant 1.8.1 and 1.8.5, VMware Fusion 8.1.0 (with the Vagrant VMware plugin), and VirtualBox 5.1.
NOTE: There's really nothing special here; I created these files because I often had a need to quickly and easily spin up a generic Ubuntu VM for some purpose (building a package or testing a command). I'm including them here just for the sake of completeness.
Contents
-
machines.yml: This YAML file contains a list of VM definitions and associated configuration data. It is referenced by
Vagrantfilewhen Vagrant instantiates the VMs. -
README.md: This file you're currently reading.
-
Vagrantfile: This file is used by Vagrant to spin up the virtual machines. This file is fairly extensively commented to help explain what's happening. You should be able to use this file unchanged; all the VM configuration options are stored outside this file.
Instructions
These instructions assume you've already installed your virtualization provider (VMware Fusion/Workstation or VirtualBox), Vagrant, and any necessary plugins (such as the Vagrant VMware plugin). Please refer to the documentation for those products for more information on installation or configuration.
-
Use
vagrant box addto add an Ubuntu 14.04 base box to be used by thisVagrantfile. If you are using a VMware virtualization provider, you can use my base box ("slowe/ubuntu-trusty-x64"; it should work with either VMware Workstation or VMware Fusion but has only been tested on Fusion). -
If you are using a box other than my Ubuntu 14.04 base box, or if you want to change the default amount of RAM or number of vCPUs assigned to the VM, edit the
machines.ymlfile and make the desired changes. -
Run
vagrant up, and when the VM is up usevagrant sshto access the generic Ubuntu 14.04 installation.
Enjoy!