Installation ============ Install Debian 12 on your host system. If you want use virtual machine as host make sure that nested virtualization is enabled. 1. Download or build ``compute`` DEB packages. 2. Install packages:: apt-get install -y --no-install-recommends ./compute* apt-get install -y --no-install-recommends dnsmasq 3. Make sure that ``libvirtd`` and ``dnsmasq`` are enabled and running:: systemctl enable --now libvirtd.service systemctl enable --now dnsmasq.service 4. Prepare storage pools. You need storage pool for images and for instance volumes. :: for pool in images volumes; do virsh pool-define-as $pool dir - - - - "/$pool" virsh pool-build $pool virsh pool-start $pool virsh pool-autostart $pool done 5. Setup configration if you want create another storage pools. See `Configuration `_ You can use configuration file :file:`/etc/compute/computed.toml` or environment variables. You can set environment variables in your :file:`~/.profile`, :file:`~/.bashrc` or globally in :file:`/etc/profile.d/compute` or :file:`/etc/bash.bashrc`. For example: .. code-block:: sh export CMP_LIBVIRT_URI=qemu:///system export CMP_IMAGES_POOL=images export CMP_VOLUMES_POOL=volumes Make sure the variables are exported to the environment:: printenv | grep CMP_ 6. Prepare network:: virsh net-start default virsh net-autostart default 7. Done. Now you can follow `CLI instructions `_