mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* VBoxManage-unregistervm : create & write markdown * VBoxManage-clonevm : create & write markdown * VBoxManage-createvm : create & write markdown * VBoxManage-export : create & write markdown * VBoxManage-import : create & write markdown * VBoxManage-registervm : create & write markdown * VBoxManage-registervm : add Title * VBoxManage-unregistervm : add Title * vboxmamange : correct typo * Update pages/common/vboxmanage-clonevm.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * vboxmamange-* : rewrite to infinitive tense + change name exemple * vboxmamange-* : change name exemple * vboxmamange-* : add colon + add empty line * Update pages/common/vboxmanage-import.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/vboxmanage-import.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/vboxmanage-import.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/vboxmanage-import.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * Update pages/common/vboxmanage-import.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * vboxmanage-createvm : fix typo * vboxmanage-export/import/clonevm : fix typo * Update pages/common/vboxmanage-clonevm.md Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * vboxmanage-registervm/createVM/cloneVM : correct password option error + correct typo * VBoxManage-export : correct page * vboxmanage-createvm : correct typo ostype * vboxmanage-* : fix typo * Update vboxmanage-registervm.md --------- Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
32 lines
947 B
Markdown
32 lines
947 B
Markdown
# vboxmanage-createvm
|
|
|
|
> Create a new virtual machine.
|
|
> More information: <https://www.virtualbox.org/manual/ch08.html#vboxmanage-createvm>.
|
|
|
|
- Create a new VM with default settings:
|
|
|
|
`VBoxManage createvm --name {{vm_name}}`
|
|
|
|
- Set the base folder where the VM configuration will be stored:
|
|
|
|
`VBoxManage createvm --name {{vm_name}} --basefolder {{path/to/directory}}`
|
|
|
|
- Set the guest OS type (one of `VBoxManage list ostypes`) for the imported VM:
|
|
|
|
`VBoxManage createvm --name {{vm_name}} --ostype {{ostype}}`
|
|
|
|
- Register the created VM in VirtualBox:
|
|
|
|
`VBoxManage createvm --name {{vm_name}} --register`
|
|
|
|
- Set the VM to the specified groups:
|
|
|
|
`VBoxManage createvm --name {{vm_name}} --group {{group1,group2,...}}`
|
|
|
|
- Set the Universally Unique Identifier (UUID) of the VM:
|
|
|
|
`VBoxManage createvm --name {{vm_name}} --uuid {{uuid}}`
|
|
|
|
- Set the cipher to use for encryption:
|
|
|
|
`VBoxManage createvm --name {{vm_name}} --cipher {{AES-128|AES-256}}`
|