A VirtualBox's newbie here. I created a snapshot of a VM by using this command line:
VBoxManage snapshot VMName take BackupName
Then I used this to check:
VBoxManage showvminfo VMName
and I saw a snapshot was created with the name BackupName. I didn't find an "actual" snapshot BackupName, I found a file filename.sav in SnapShots folder.
My intention was to create a snapshot of this VM, copy it to another host machine and restore it there. Since I couldn't find the "snapshot" BackupName, so I copied sav file to new host and used this command:
VBoxManage adoptsate filename.sav
But it didn't work. Can anyone help me how to copy that "snapshot" and restore it in a new host. Thanks a lot
File
menu and useExport Appliance
. A snapshot is only a differences file realtive to another file on the same machine, not a complete image of a VM that may be transported around. – Mark Setchell