Vagrant 从主机(windows)漫游访问来宾计算机

Vagrant 从主机(windows)漫游访问来宾计算机,vagrant,vagrantfile,Vagrant,Vagrantfile,我在Windows中安装了一个vagrant虚拟机,它工作正常,我正在尝试从Windows连接到来宾机,但一旦我取消vagrant文件中的某些注释,如: config.vm.network "private_network", ip: "192.168.33.10" 或 在重新加载vagrant时,我遇到以下错误: The guest machine entered an invalid state while waiting for it to boot. Valid states are

我在Windows中安装了一个vagrant虚拟机,它工作正常,我正在尝试从Windows连接到来宾机,但一旦我取消vagrant文件中的某些注释,如:

config.vm.network "private_network", ip: "192.168.33.10"

在重新加载vagrant时,我遇到以下错误:

The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.

If the provider you're using has a GUI that comes with it,
 it is often helpful to open that and watch the machine, since the
GUI often has more helpful error messages than Vagrant can retrieve.
For example, if you're using VirtualBox, run `vagrant up` while the
 VirtualBox GUI is open.

The primary issue for this error is that the provider you're using
is not properly configured. This is very rarely a Vagrant issue.

我个人从未遇到过这个错误,也从未在windows上使用过Wagrant。这个问题已经讨论过了

我知道这没有意义,但我只是打开了
VirtualBox
,右键点击进入创建的流浪机器图像和diable
音频的
设置
,在保存并运行
vagrant up
后它就开始工作了。你看过VirtualBox gui了吗?
The guest machine entered an invalid state while waiting for it
to boot. Valid states are 'starting, running'. The machine is in the
'poweroff' state. Please verify everything is configured
properly and try again.

If the provider you're using has a GUI that comes with it,
 it is often helpful to open that and watch the machine, since the
GUI often has more helpful error messages than Vagrant can retrieve.
For example, if you're using VirtualBox, run `vagrant up` while the
 VirtualBox GUI is open.

The primary issue for this error is that the provider you're using
is not properly configured. This is very rarely a Vagrant issue.