VirtualBox import error Cannot register the DVD image

前端 未结 4 1756
南方客
南方客 2021-02-05 00:33

I\'m running v 4.2.6. Starting this morning, I can\'t import some VMs, and some of my existing VMs are showing up as inaccessible and have the following error showing in the UI,

相关标签:
4条回答
  • 2021-02-05 01:06

    It is because there is a conflict with the existing inserted media. Ejecting the existing drive via Virtual Media Manager might solve it.

    Ref: https://forums.virtualbox.org/viewtopic.php?f=8&t=51911

    0 讨论(0)
  • 2021-02-05 01:08

    I solved it by open the file win 7 64.vbox with text editor and remove the tag:

    <DVDImages>
       <Image uuid="{fd686a98-c1a6-42d9-82aa-67728b524d53}" location="C:/Program Files/Oracle/VirtualBox/VBoxGuestAdditions.iso"/>
    </DVDImages>
    

    Know that by removing the tag it will be added as empty tag. and reopent the vm of virtual box again. and it worked

    0 讨论(0)
  • 2021-02-05 01:08

    I had 2 virtual machines XP-x86 and Win7-x64 and precisely removing tag image uuid the issue got fixed and was able to add the new pre-created VM.

    0 讨论(0)
  • 2021-02-05 01:19

    Open the .VBOX file in any text editor of your choice.
    find the following lines:

    [...]
    <DVDImages>
            <Image uuid="{b058bc48-c451-4cff-9db0-d01c70e99c28}"
    location="/usr/share/virtualbox/VBoxGuestAdditions.iso"/>
    
    [...]
    

    Delete all entries between and section. After deleting the contents, your .VBOX file will look like below.

    <DVDImages>
    </DVDImages>
    

    Save and close the file.

    That’s it. Now, you can load the virtual machine without any issues.

    0 讨论(0)
提交回复
热议问题