website/docs: update vmx wordings

This commit is contained in:
Mitchell Hashimoto 2013-09-05 14:34:43 -07:00
parent be57271b23
commit 933fd8b397
1 changed files with 10 additions and 1 deletions

View File

@ -78,4 +78,13 @@ that Vagrant has set up itself.
VMX is an undocumented format and there is no official reference for
the available keys and values. This customization option is exposed for
people who have knowledge of exactly what they want.
That said, the most awaited keys are "memsize" and "numvcpus".
The most common keys people look for are setting memory and CPUs.
The example below sets both:
```ruby
config.vm.provider "vmware_fusion" do |v|
v.vmx["memsize"] = "1024"
v.vmx["numvcpus"] = "2"
end
```