流浪错误,需要第二个流浪汉

时间:2012-10-09 15:02:29

标签: vagrant

问题: vagrant up第一次失败并出现以下错误,vagrant up再次成功启动了流浪者框。我在Windows 7上运行vagrant,基本框是来自here的Ubuntu 12.04

导致错误的原因是什么,以及如何解决?

输出(使用VAGRANT_LOG = DEBUG)

C:/vagrant/vagrant/bin//../embedded/bin/vagrant:19:in `load'
C:/vagrant/vagrant/bin//../embedded/bin/vagrant:19:in `<main>'
 INFO interface: error: There was an error executing the following command with VBoxManage:

["modifyvm", "1a08aaf5-f8b5-4e1e-a773-a91fdec7a6b6", "--name", "test_1349794733"]

For more information on the failure, enable detailed logging with VAGRANT_LOG.
There was an error executing the following command with VBoxManage:

["modifyvm", "1a08aaf5-f8b5-4e1e-a773-a91fdec7a6b6", "--name", "test_1349794733"]

For more information on the failure, enable detailed logging with VAGRANT_LOG.

为什么要求我启用详细日志记录? VAGRANT_LOG=DEBUG不是最高级别吗?

1 个答案:

答案 0 :(得分:1)

我认为无论您是否启用了详细日志记录,都会显示有关如何启用详细日志记录的信息。我不会太担心它。

您可以尝试自己运行命令,看看是否可以获取更多信息。应该像

VBoxManage modifyvm 1a08aaf5-f8b5-4e1e-a773-a91fdec7a6b6 --name test_1349794733
相关问题