Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to check the uuid of a virtualbox vdi?

How can I check the uuid of a vdi or vmdk?

There should be some command line on VBoxManage to show it.

I know I read it some place in the docs, but now for some reason I can't find it...

like image 906
Radagast the Brown Avatar asked Mar 21 '11 15:03

Radagast the Brown


People also ask

How do I find my VDI UUID?

Run the command on CLI, to find the UUID of the SR and the VDI you just created: xe vdi-list name-label=test. Run the command on CLI: xe vdi-forget uuid=<uuid of VDI you just did the list in Step 1. c>. Check the XenCenter Storage tab to ensure that the VDI appears.

What is a VirtualBox UUID?

The UUID is generated when you power on or reset the virtual machine. As long as you do not move or copy the virtual machine to another location, the UUID remains constant. Fore more read the documentation. You can use: VBoxManage list vms. to list all currently registered VMs with their settings, names and UUIDs.

How do I fix VirtualBox UUID already exists?

Open up the Command Prompt. In both Windows 8 and Windows 7, it can be found by typing “cmd” into the Start Menu search box. If everything worked, you should see a message saying “UUID change to: …” and then the VirtualBox should work. All fixed!


1 Answers

Run VBoxManage and pass it showhdinfo and your VDI:

VBoxManage.exe showhdinfo "c:\MyMachine.vdi" 
like image 156
Chris Haas Avatar answered Sep 23 '22 05:09

Chris Haas