Importing an OVA Virtual Machine
Example OVA: Wazuh make sure you execute using sudo mode and in the home directory (or other you know well)
Preparation
Section titled “Preparation”# make a working directorymkdir ova_import && cd ova_import# download the ova - this example is using Wazuh OVAwget -O wazuh-4.7.3.ova https://packages.wazuh.com/4.x/vm/wazuh-4.7.3.ova# extract the downloaded ovatar xvf wazuh-4.7.3.ovaImport Execution
Section titled “Import Execution”### Import the OVF# create a new vm from the ova# usage# qm importovf <unused vmid> <path to ova> <destination storage pool name> [OPTIONS]qm importovf 300 ./wazuh-4.7.3.ovf local --format qcow2You will see the VM with the VMID you already decide. Review and adjust the setting as needed.
Clean Up
Section titled “Clean Up”cd ..rm ova_import/ -rReference: link