Merge pull request #5272 from mitchellh/sethvargo/remove_box

Do not encourage users to download a box directly
This commit is contained in:
Seth Vargo 2015-02-02 11:09:56 -05:00
commit f0284d000b
1 changed files with 23 additions and 4 deletions

View File

@ -15,10 +15,29 @@ Fusion, and `vmware_workstation` for VMware Workstation.
The Vagrant VMware provider does not support parallel execution at this time.
Specifying the `--parallel` option will have no effect.
<p>
To get started, a 64-bit Ubuntu 12.04 LTS VMware box is available at:
<a href="http://files.vagrantup.com/precise64_vmware.box">http://files.vagrantup.com/precise64_vmware.box</a>
</p>
To get started, create a new `Vagrantfile` that points to a VMware box:
```ruby
# vagrant init hashicorp/precise64
Vagrant.configure(2) do |config|
config.vm.box = "hashicorp/precise64"
end
```
VMware Fusion users should then run:
```shell
$ vagrant up --provider vmware_fusion
```
VMware Workstation users should then run:
```shell
$ vagrant up --provider vmware_workstation
```
This will download and bring up a new VMware Fusion/Workstation virtual machine
in Vagrant.
<div class="alert alert-info">
<p>