Timeout 漫游超时虚拟箱

Timeout 漫游超时虚拟箱,timeout,vagrant,virtualbox,Timeout,Vagrant,Virtualbox,我对virtualbo有一个问题,我试着在我的电脑上运行vagrant,但我得到了错误。我试图解决这个问题,我正在网上寻找解决方案,但仍然不起作用。有人能帮我解决这个问题吗 Bringing machine 'default' up with 'virtualbox' provider... default: Box 'laravel/homestead' could not be found. Attempting to find and install... default:

我对virtualbo有一个问题,我试着在我的电脑上运行vagrant,但我得到了错误。我试图解决这个问题,我正在网上寻找解决方案,但仍然不起作用。有人能帮我解决这个问题吗

Bringing machine 'default' up with 'virtualbox' provider...
default: Box 'laravel/homestead' could not be found. Attempting to        find and install...
default: Box Provider: virtualbox
default: Box Version: >= 0
default: Loading metadata for box 'laravel/homestead'
default: URL: https://atlas.hashicorp.com/laravel/homestead
default: Adding box 'laravel/homestead' (v0.4.0) for provider: virtualbox
default: Downloading:  https://atlas.hashicorp.com/laravel/boxes/homestead/versions/0.4.0/providers/virtualbox.box
default: Successfully added box 'laravel/homestead' (v0.4.0) for 'virtualbox'!
default: Importing base box 'laravel/homestead'...
default: Matching MAC address for NAT networking...
default: Checking if box 'laravel/homestead' is up to date...
default: Setting the name of the VM: homestead-7
default: Clearing any previously set network interfaces...
default: Preparing network interfaces based on configuration...
default: Adapter 1: nat
default: Adapter 2: hostonly
default: Forwarding ports...
default: 80 (guest) => 8000 (host) (adapter 1)
default: 443 (guest) => 44300 (host) (adapter 1)
default: 3306 (guest) => 33060 (host) (adapter 1)
default: 5432 (guest) => 54320 (host) (adapter 1)
default: 22 (guest) => 2222 (host) (adapter 1)
default: Running 'pre-boot' VM customizations...
default: Booting VM...
default: Waiting for machine to boot. This may take a few minutes...
default: SSH address: 127.0.0.1:2222
default: SSH username: vagrant
default: SSH auth method: private key

Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period.

If you look above, you should be able to see the error(s) that 
Vagrant had when attempting to connect to the machine. These errors
are usually good hints as to what may be wrong.

If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.

If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.
我尝试在Ubuntu 15.10和VirtualBox 5.0.12上运行。在我的上网本上所有的工作都很好,但我想在台式电脑上与这个项目的工作


Ps:我的bios中没有任何虚拟化选项

有几个类似的问题,但这里有一个答案最多的问题:,您可能会在那里找到解决方案


在我的例子中,问题是64位Debian In box for Vagrant-Virtual box将其视为32位,我必须在设置中手动更改它。您可以在上面的链接中找到更精确的描述。

有几个类似的问题,但这里有一个答案最多的问题:,您可能会在那里找到解决方案


在我的例子中,问题是64位Debian In box for Vagrant-Virtual box将其视为32位,我必须在设置中手动更改它。您将在上面的链接中找到更精确的描述。

结果表明,在Windows 10机器上对该问题进行了几天的故障排除后,BIOS中的虚拟化设置被关闭,需要打开

一旦我明白了这一点并打开了这两个虚拟化设置,我就没有在虚拟机中进行SSHing的问题。我还遇到过一些其他的问题,但这些问题与我的Vagrant文件或配置文件有关,这只是我自己的定制

请参见此处的答案:

事实证明,在Windows 10机器上对该问题进行了几天的故障排除后,BIOS中的虚拟化设置被关闭,需要打开

一旦我明白了这一点并打开了这两个虚拟化设置,我就没有在虚拟机中进行SSHing的问题。我还遇到过一些其他的问题,但这些问题与我的Vagrant文件或配置文件有关,这只是我自己的定制

请参见此处的答案: