我有Mac OS X Capitan和Virtualbox 5.0.24版。当尝试运行vagrant时,我收到错误
A VirtualBox machine with the name 'xxxx' already exists
所以我检查全局状态,我发现它已经存在但处于'poweroff'状态。当我尝试恢复时,我收到错误。
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'restoring, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.
我已经重新安装了不同版本的虚拟机,但它无法解决问题。我试图破坏虚拟机但是当我运行流浪汉时,我又遇到了同样的问题。另外,我去了Virtualbox的GUI,那里没有vm(就像它不存在一样)。知道为什么以及如何解决这个问题?
答案 0 :(得分:0)
运行vboxmanage list vms
正如vagrant给你的名字一样,你可以做以下
vboxmanage showvminfo 'xxxx'
vboxmanage unregistervm 'xxxx'
第1个命令将告诉您与VM关联的文件在哪里。取消注册VM后,可以将其从磁盘中删除。
您现在应该可以再次运行vagrant up