virtualbox.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 03 Jan 2019 22:13:18 +0200
changeset 2334 c44e4331713c
parent 2255 d284bcd5a8c3
permissions -rw-r--r--
merged

.. -*- coding: utf-8; -*-

=============
 VirtualBox.
=============
.. contents::
   :local:

Supported guests.
=================

* https://www.virtualbox.org/wiki/Guest_OSes

TODO: which guests have Additions

TODO: which guests allow window resizing

Managing VirtualBox guests from command line
============================================

List of known guests::

  $ VBoxManage list vms

Start guest by name::

  $ VBoxManage startvm $NAME

Resize box
==========
::

   $ vboxmanage list -l hdds
   $ vboxmanage modifyhd $UUID --resize $SIZE

Resizing of VMDK image isn't supported, convert to VDI first::

  $ vboxmanage clonehd $MY.vmdk $MY.vdi --format vdi
  $ vboxmanage modifyhd $MY.vdi --resize $SIZE
  $ vboxmanage clonehd $MY.vdi $MY.new.vmdk --format vmdk