Qual é a diferença entre um arquivo * .ova e um arquivo * .ovf ao exportar do VirtualBox?

6

Eu estou tentando exportar uma máquina virtual que tenho no VirtualBox para que eu possa fazer o backup, e quando fui exportá-lo, fui solicitado com um diálogo "Salvar como ..." que me pergunta se eu quero para salvá-lo como arquivo .ovf ou .ova.

Qual é a diferença entre esses dois formatos?

    
por leeand00 26.10.2011 / 20:20

1 resposta

6

Conforme especificado no Manual do VirtualBox: 1.13. Importando e exportando máquinas virtuais :

Appliances in OVF format can appear in two variants:

  1. They can come in several files, as one or several disk images, typically in the widely-used VMDK format (see the section called “Disk image files (VDI, VMDK, VHD, HDD)”) and a textual description file in an XML dialect with an .ovf extension. These files must then reside in the same directory for VirtualBox to be able to import them.
  2. Alternatively, the above files can be packed together into a single archive file, typically with an .ova extension. (Such archive files use a variant of the TAR archive format and can therefore be unpacked outside of VirtualBox with any utility that can unpack standard TAR files.)

Portanto, escolher .ovf exportará vários arquivos para uma única pasta. A seleção de .ova empacota todos os itens que acabariam na pasta .ovf em um único arquivo (geralmente bastante grande). O que você prefere ter é com você.

    
por 26.10.2011 / 20:58