2

问题: vagrant up第一次失败并出现以下错误,然后vagrant up再次成功启动 vagrant box。我在 Windows 7 上运行 vagrant,基本框是 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最高等级吗?

4

1 回答 1

1

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

您可以尝试自己运行该命令,看看是否可以获得更多信息。应该是这样的

VBoxManage modifyvm 1a08aaf5-f8b5-4e1e-a773-a91fdec7a6b6 --name test_1349794733
于 2012-10-09T15:14:43.187 回答