https://github.com/mitchellh/vagrant/issues/1755有的时候,VM 是存在的,但是在 vagrant status 里显示 not created。这个可能是因为 id 文件(手工编辑过)的末尾有一个 newline。
修复方法:
1. VBoxManage list vms 得到有问题的 VM 的 UUID
2. echo -n UUID > .vagrant/machines/default/virtualbox/id
然后再看 vagrant status,问题修复。