Forrest logo
back to context overview

vboxmanage

List of commands for vboxmanage:

  • vboxmanage:tldr:2f1db vboxmanage: Start a virtual machine in headless mode.
    $ VBoxManage startvm ${select} --type headless
    try on your machine
    explain this command
  • vboxmanage:tldr:3862c vboxmanage: List all VirtualBox virtual machines.
    $ VBoxManage list vms
    try on your machine
    explain this command
  • vboxmanage:tldr:5088a vboxmanage: Update VBox extension packs.
    $ VBoxManage extpack install --replace ${VboxExtensionPackFileName}
    try on your machine
    explain this command
  • vboxmanage:tldr:7d8ab vboxmanage: Start a virtual machine.
    $ VBoxManage startvm ${select}
    try on your machine
    explain this command
  • vboxmanage:tldr:8a961 vboxmanage: Shutdown down the virtual machine without saving its state.
    $ VBoxManage controlvm ${select} poweroff
    try on your machine
    explain this command
  • vboxmanage:tldr:a1a59 vboxmanage: Shutdown the virtual machine and save its current state.
    $ VBoxManage controlvm ${select} savestate
    try on your machine
    explain this command
  • vboxmanage:tldr:d9fda vboxmanage: Show information about a particular virtual machine.
    $ VBoxManage showvminfo ${select}
    try on your machine
    explain this command
back to context overview