diff --git a/ubuntu-generic/README.md b/ubuntu-generic/README.md index 93c4747..715b44a 100644 --- a/ubuntu-generic/README.md +++ b/ubuntu-generic/README.md @@ -16,9 +16,9 @@ These files were created to allow users to use Vagrant ([http://www.vagrantup.co 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. -1. Use `vagrant box add` to add an Ubuntu 14.04 base box to be used by this `Vagrantfile`. 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). +1. Use `vagrant box add` to add an Ubuntu 14.04 base box to be used by this `Vagrantfile`. The "bento" box for Ubuntu 14.04 ("bento/ubuntu-14.04") offers support for both VirtualBox and VMware Fusion/Workstation. -2. 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.yml` file and make the desired changes. +2. Edit the `machines.yml` file to specify the Vagrant box you added in step 1. You can also edit this file to change the amount of RAM allocated or the number of virtual CPUs assigned. 3. Run `vagrant up`, and when the VM is up use `vagrant ssh` to access the generic Ubuntu 14.04 installation. diff --git a/ubuntu-generic/machines.yml b/ubuntu-generic/machines.yml index 09bd889..791039e 100644 --- a/ubuntu-generic/machines.yml +++ b/ubuntu-generic/machines.yml @@ -1,7 +1,7 @@ --- - name: "trusty" box: - vmw: "slowe/ubuntu-trusty-x64" + vmw: "bento/ubuntu-14.04" vb: "ubuntu/trusty64" ram: "1024" vcpu: "1" diff --git a/vagrant-json/machines.json b/vagrant-json/machines.json index e0e8439..5696564 100644 --- a/vagrant-json/machines.json +++ b/vagrant-json/machines.json @@ -1,7 +1,7 @@ [ { "name": "jessie", - "vmw_box": "slowe/debian-81-x64", + "vmw_box": "bento/debian-8.6", "vb_box": "debian/jessie64", "ram": 512, "vcpu": 1, @@ -11,7 +11,7 @@ { "name": "trusty", - "vmw_box": "slowe/ubuntu-trusty-x64", + "vmw_box": "bento/ubuntu-14.04", "vb_box": "ubuntu/trusty64", "ram": 512, "vcpu": 1, @@ -21,7 +21,7 @@ { "name": "precise", - "vmw_box": "slowe/ubuntu-precise-x64", + "vmw_box": "bento/ubuntu-12.04", "vb_box": "ubuntu/precise64", "ram": 512, "vcpu": 1,