Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions pages/common/vboxmanage-import.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@

- Set the guest OS type (one of `VBoxManage list ostypes`) for the imported VM:

`VBoxManage import {{path/to/file.ovf}} --ostype={{ostype}}`
`VBoxManage import {{path/to/file.ovf}} --ostype {{ostype}}`

- Set the memory (in megabytes) for the imported VM:

`VBoxManage import {{path/to/file.ovf}} --memory={{1}}`
`VBoxManage import {{path/to/file.ovf}} --memory {{1}}`

- Set the number of CPUs for the imported VM:

`VBoxManage import {{path/to/file.ovf}} --cpus={{1}}`
`VBoxManage import {{path/to/file.ovf}} --cpus {{1}}`
2 changes: 1 addition & 1 deletion pages/common/vboxmanage-startvm.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,4 @@

- Start a virtual machine with an environment variable pair name value:

`VBoxManage startvm {{vm_name|uuid}} --put-env={{name}}={{value}}`
`VBoxManage startvm {{vm_name|uuid}} --putenv {{name}}={{value}}`