Detect changes made in virtual machine ovf

101 Views Asked by At

How I Can Detect Ovf File Moved Or Copied? I built a software engine that is inside a virtual machine and I want to prevent it from copying or transferring it. How can i do this? My software is in PHP and ovf is Linux Cent OS 7.

1

There are 1 best solutions below

0
On

You can get the UUID BIOS with the following code:

dmidecode | grep -i uuid | awk '{print $2}' | tr '[:upper:]' '[:lower:]'

After Change OVF, BIOS UUID changing.