virtualbox.rst
author Oleksandr Gavenko <gavenkoa@gmail.com>
Thu, 25 Apr 2024 22:33:14 +0300
changeset 2593 f0ab046a080f
parent 2255 d284bcd5a8c3
permissions -rw-r--r--
Installing Android SDK from command line tools.

.. -*- 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