Misc.
This page contains general information about Virtual Machines in REVEN that can be useful at various stages when using the product.
VM storage location
For certain operations on this page, you need to know where the Project Manager stores the virtual machine's disks.
By default, this path is ~/VMs
.
You can find it either:
- By starting the registration of a QEMU VM. In the 2nd step, where the Wizard asks you to select which disk to import, you can find the VM disk path on the label "Select a VM file from the existing files".
- Alternatively, in your settings file as
QUASAR_QEMU_SCAN_PATH
.
Supported disk formats
Note that the native disk image format REVEN supports is qcow2
.
That being said, the VM provisioning step in the Project Manager can convert the disk image from multiple formats for you. It uses the tool qemu-img
to do so, and so supports all formats this tool does. They include:
qcow
(version 1)vdi
vmdk
vhdx
These formats are listed by the QUASAR_QEMU_SCAN_FORMATS
variable in your settings, see the documentation of this variable in settings.py
for more information.
Note: the ova
format is not in this list because it is not directly a disk image, see below for how to work with this format.
Adding a VM in OVA format
To use a VM in Open Virtual Appliance (OVA) format with REVEN, please follow the steps below:
- Unzip the OVA archive.
- Use the VM preparation Wizard to upload the
.vmdk
or.vdi
(depending on the OVA) file contained in the archive from your disk to the server. - Let the VM Wizard guide you through the next steps.
Archiving and importing VMs back
While the Project Manager does not provide an explicit VM export functionality, you can manually archive VM disks & snapshots in the VM storage location.
To export a VM, you can:
- Open a shell to the server and change your current directory to the VM storage location.
- Compress a VM along with all its snapshots with a command such as
tar -czf myVmArchive.tar.gz MyVmDiskName.qcow2*
. Note the*
at the end of the command to include disk snapshots. - You can now move the archive
myVmArchive.tar.gz
to any location you want.
To import a VM archived with the above method, you must now provision the VM manually and register it:
- Open a shell to the server and change your current directory to the VM storage location.
- Extract the VM disk files with a command such as
tar -xf myVmArchive.tar.gz
- Now open the Project Manager's VM import Wizard, and select the VM disk
MyVmDiskName.qcow2
- Fill the VM Setup page and click Next
- At this point the Wizard will detect that the VM already comes with a set of disk snapshots. Click on "Importing".
Your VM is ready to use.
NOTE: when importing an archived VM, you should not use the Wizard's provisioning step: the latter would not upload the disk snapshots along the disk image, and you would then have to recreate them from scratch.