Update virtualbox-iso.html.md.erb

remove cpus/memory flags due to their property implementation, add vram for example
This commit is contained in:
Tony 2019-05-20 10:09:45 -04:00 committed by GitHub
parent 13a6420eb8
commit b72a55a3fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 4 deletions

View File

@ -402,14 +402,12 @@ interface to VirtualBox where you can completely control VirtualBox. It can be
used to do things such as set RAM, CPUs, etc. used to do things such as set RAM, CPUs, etc.
Extra VBoxManage commands are defined in the template in the `vboxmanage` Extra VBoxManage commands are defined in the template in the `vboxmanage`
section. An example is shown below that sets the memory and number of CPUs section. An example is shown below that sets the VRAM within the virtual machine:
within the virtual machine:
``` json ``` json
{ {
"vboxmanage": [ "vboxmanage": [
["modifyvm", "{{.Name}}", "--memory", "1024"], ["modifyvm", "{{.Name}}", "--vram", "64"]
["modifyvm", "{{.Name}}", "--cpus", "2"]
] ]
} }
``` ```