Virtual Hardware

Virtual Hardware

Virtual Machines and Hypervisor

  • KVM

  • LXD

Flavors

user@workstation:~$ wget http://cdimage.debian.org/cdimage/openstack/current/debian-9.4.0-openstack-arm64.qcow2
$ openstack flavor list
+-----+-----------+-------+------+-----------+-------+-----------+
| ID  | Name      |   RAM | Disk | Ephemeral | VCPUs | Is_Public |
+-----+-----------+-------+------+-----------+-------+-----------+
| 1   | m1.tiny   |   512 |    1 |         0 |     1 | True      |
| 2   | m1.small  |  2048 |   20 |         0 |     1 | True      |
| 3   | m1.medium |  4096 |   40 |         0 |     2 | True      |
| 4   | m1.large  |  8192 |   80 |         0 |     4 | True      |
| 5   | m1.xlarge | 16384 |  160 |         0 |     8 | True      |
+-----+-----------+-------+------+-----------+-------+-----------+
VBoxManage createvm --name Titanium --ostype Linux_64 --register
VBoxManage modifyvm Titanium --memory 2048

Last updated