This may be a stupid question, but it's not in the new v1.1. documentation anywhere, nor in the vmware fusion provider information:
How do I change memory settings for the fusion vm? I tried the same recipe that worked (1.0) for virtualbox using the: config.vm.customize ["modifyvm", :id, "--memory", "2048"] and that gives me an error that the customize method is not found. Thanks, -Gaige You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
Gaige, You do this: config.vm.provider :vmware_fusion do |v| v.vmx["memsize"] = "2048" I'll add memory and CPUs as main examples in the docs because that is so common. Best, Mitchell
On Sat, Mar 16, 2013 at 4:13 PM, Gaige B. Paulsen <[hidden email]> wrote: This may be a stupid question, but it's not in the new v1.1. documentation anywhere, nor in the vmware fusion provider information: You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
Did those examples ever make it? I am not seeing any obvious machine settings in the docs. Am I missing something?
Thanks, Martin
-- On Saturday, March 16, 2013 7:23:29 PM UTC-7, Mitchell Hashimoto wrote:
You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
Martin, They're staged for deploy, but a new deploy won't go out until 1.2.0. Best, Mitchell On Wed, Apr 10, 2013 at 3:18 PM, Martin Rhoads <[hidden email]> wrote: Did those examples ever make it? I am not seeing any obvious machine settings in the docs. Am I missing something? You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
what is the best way to see what the vmx options are? Can I take a look at the staging docs or something? Specifically just looking for cpu and mem. On Wed, Apr 10, 2013 at 3:19 PM, Mitchell Hashimoto <[hidden email]> wrote:
You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
Martin, VMX is an undocumented format. You'll have to google, unfortunately. :) Best, Mitchell
On Wed, Apr 10, 2013 at 3:26 PM, Martin Rhoads <[hidden email]> wrote:
You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
I just bought the Fusion Provider and went looking to the Vagrant Docs (because I recalled the VirtualBox example in there) and it wasn't there. I assumed it was a VMX setting and then got to this thread from lord google search. Just figured I would mention that I agree that Fusion Provider examples for setting CPU and Memory would be of value. Thanks, Brandon P.S. The new AWS and Fusion Provider are great. On Wednesday, April 10, 2013 3:27:22 PM UTC-7, Mitchell Hashimoto wrote:
You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
Here are some examples:
f.vmx["memsize"] = "512" f.vmx["numvcpus"] = "1" f.vmx["displayName"] = "v_general" f.vmx["annotation"] = "a general vagrant vm"
You received this message because you are subscribed to the Google Groups "Vagrant" group. To unsubscribe from this group and stop receiving emails from it, send an email to [hidden email]. For more options, visit https://groups.google.com/groups/opt_out. |
Free forum by Nabble | Edit this page |